From af72f2e17cdf4392f5d3c214ec865ffa434f8c18 Mon Sep 17 00:00:00 2001 From: Jezithyr Date: Sat, 12 Oct 2024 22:21:44 -0700 Subject: [PATCH 001/171] Applying Fix from #32764 to staging --- Content.Server/Thief/Systems/ThiefBeaconSystem.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Content.Server/Thief/Systems/ThiefBeaconSystem.cs b/Content.Server/Thief/Systems/ThiefBeaconSystem.cs index 80471b64279..4c65ba5c449 100644 --- a/Content.Server/Thief/Systems/ThiefBeaconSystem.cs +++ b/Content.Server/Thief/Systems/ThiefBeaconSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Foldable; using Content.Shared.Popups; using Content.Shared.Verbs; +using Content.Shared.Roles; using Robust.Shared.Audio.Systems; namespace Content.Server.Thief.Systems; @@ -18,7 +19,7 @@ public sealed class ThiefBeaconSystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly MindSystem _mind = default!; - + [Dependency] private readonly SharedRoleSystem _roles = default!; public override void Initialize() { base.Initialize(); @@ -37,7 +38,7 @@ private void OnGetInteractionVerbs(Entity beacon, ref GetV return; var mind = _mind.GetMind(args.User); - if (!HasComp(mind)) + if (mind == null || !_roles.MindHasRole(mind.Value)) return; var user = args.User; From 30effd5ccd898bd4745e9e30640d08515c978ffa Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Fri, 11 Oct 2024 21:17:01 +0200 Subject: [PATCH 002/171] Fix random test fail in DeleteAllThenGhost (#32753) It's simple. We kill the heisentest --- Content.Shared/Roles/SharedRoleSystem.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Roles/SharedRoleSystem.cs b/Content.Shared/Roles/SharedRoleSystem.cs index cd3fe141b2b..925f61e7c75 100644 --- a/Content.Shared/Roles/SharedRoleSystem.cs +++ b/Content.Shared/Roles/SharedRoleSystem.cs @@ -478,7 +478,13 @@ public bool MindIsExclusiveAntagonist(EntityUid? mindId) var exclusiveAntag = false; foreach (var role in mind.MindRoles) { - var roleComp = Comp(role); + if (!TryComp(role, out var roleComp)) + { + //If this ever shows up outside of an integration test, then we need to look into this further. + Log.Warning($"Mind Role Entity {role} does not have MindRoleComponent!"); + continue; + } + if (roleComp.Antag || exclusiveAntag) antagonist = true; if (roleComp.ExclusiveAntag) From e5ad32fe9388db4cf970eb7ba650a711a6560b74 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Fri, 11 Oct 2024 21:17:01 +0200 Subject: [PATCH 003/171] Fix random test fail in DeleteAllThenGhost (#32753) It's simple. We kill the heisentest --- Content.Shared/Roles/SharedRoleSystem.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Roles/SharedRoleSystem.cs b/Content.Shared/Roles/SharedRoleSystem.cs index cd3fe141b2b..925f61e7c75 100644 --- a/Content.Shared/Roles/SharedRoleSystem.cs +++ b/Content.Shared/Roles/SharedRoleSystem.cs @@ -478,7 +478,13 @@ public bool MindIsExclusiveAntagonist(EntityUid? mindId) var exclusiveAntag = false; foreach (var role in mind.MindRoles) { - var roleComp = Comp(role); + if (!TryComp(role, out var roleComp)) + { + //If this ever shows up outside of an integration test, then we need to look into this further. + Log.Warning($"Mind Role Entity {role} does not have MindRoleComponent!"); + continue; + } + if (roleComp.Antag || exclusiveAntag) antagonist = true; if (roleComp.ExclusiveAntag) From 796764d755186195541756b056f16a835c499cca Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sun, 13 Oct 2024 23:00:40 +0200 Subject: [PATCH 004/171] Fix some rounds failing to end due to mind roles (#32792) (#32793) * Fix some rounds failing to end due to mind roles Fixes #32791 This is caused by ShowRoundEndScoreboard running into a bug trying to display antags: some player is showing up as antag with MindIsAntagonist(), but has no antag roles listed in MindGetAllRoleInfo(). This was caused by one of the roles of the player having the Antag boolean set, but having no AntagPrototype set. The responsible mind role appeared to be MindRoleSubvertedSilicon which is missing a set for the SubvertedSilicon antag prototype. I also added resilience to the round-end code to make it so that an exception showing the scoreboard (and sending the Discord message) would not cause the round end logic to completely abort from an exception. I am planning to add an integration test to cover this bug (no prototype in mind roles), but I'll leave that for not-the-immediate-hotfix. * At least one maintainer approved this tiny PR without reading it, not naming names. --- .../GameTicking/GameTicker.RoundFlow.cs | 19 +++++++++++++++++-- .../Prototypes/Roles/MindRoles/mind_roles.yml | 2 ++ 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index 683061d8edc..e544870bd27 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -341,8 +341,23 @@ public void EndRound(string text = "") RunLevel = GameRunLevel.PostRound; - ShowRoundEndScoreboard(text); - SendRoundEndDiscordMessage(); + try + { + ShowRoundEndScoreboard(text); + } + catch (Exception e) + { + Log.Error($"Error while showing round end scoreboard: {e}"); + } + + try + { + SendRoundEndDiscordMessage(); + } + catch (Exception e) + { + Log.Error($"Error while sending round end Discord message: {e}"); + } } public void ShowRoundEndScoreboard(string text = "") diff --git a/Resources/Prototypes/Roles/MindRoles/mind_roles.yml b/Resources/Prototypes/Roles/MindRoles/mind_roles.yml index eb92fa51ae9..926ce512b41 100644 --- a/Resources/Prototypes/Roles/MindRoles/mind_roles.yml +++ b/Resources/Prototypes/Roles/MindRoles/mind_roles.yml @@ -46,6 +46,8 @@ description: components: - type: SubvertedSiliconRole + - type: MindRole + antagPrototype: SubvertedSilicon # Dragon - type: entity From 519a6b24749e284df3e9aaaf8bab5f96d597fe8e Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Mon, 14 Oct 2024 11:41:31 +0200 Subject: [PATCH 005/171] HOTFIX: Fix tech anomaly nexttimer (#32805) (#32807) Fix tech anomaly nexttimer (#32805) Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> --- Content.Server/Anomaly/Effects/TechAnomalySystem.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs index 3e4d101f4fd..9f81c64dbc1 100644 --- a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs +++ b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs @@ -22,11 +22,17 @@ public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnTechMapInit); SubscribeLocalEvent(OnPulse); SubscribeLocalEvent(OnSupercritical); SubscribeLocalEvent(OnStabilityChanged); } + private void OnTechMapInit(Entity ent, ref MapInitEvent args) + { + ent.Comp.NextTimer = _timing.CurTime; + } + public override void Update(float frameTime) { base.Update(frameTime); From e04e3a625056df9b335419508a51dfe8d70c85b7 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Fri, 18 Oct 2024 15:17:18 +0200 Subject: [PATCH 006/171] HOTFIX spider clan charges can be armed again (#32866) * fix ninja bomb component check * remove TryGetRole --- Content.Server/Ninja/Systems/SpiderChargeSystem.cs | 10 ++++++---- Content.Shared/Mind/SharedMindSystem.cs | 13 ------------- 2 files changed, 6 insertions(+), 17 deletions(-) diff --git a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs index c916d568d5f..6594d7883bc 100644 --- a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs +++ b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs @@ -1,14 +1,12 @@ using Content.Server.Explosion.EntitySystems; -using Content.Server.GameTicking.Rules.Components; using Content.Server.Mind; using Content.Server.Objectives.Components; using Content.Server.Popups; using Content.Server.Roles; -using Content.Shared.Interaction; using Content.Shared.Ninja.Components; using Content.Shared.Ninja.Systems; +using Content.Shared.Roles; using Content.Shared.Sticky; -using Robust.Shared.GameObjects; namespace Content.Server.Ninja.Systems; @@ -19,6 +17,7 @@ public sealed class SpiderChargeSystem : SharedSpiderChargeSystem { [Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly SharedRoleSystem _role = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SpaceNinjaSystem _ninja = default!; @@ -41,7 +40,10 @@ private void OnAttemptStick(EntityUid uid, SpiderChargeComponent comp, ref Attem var user = args.User; - if (!_mind.TryGetRole(user, out var _)) + if (!_mind.TryGetMind(args.User, out var mind, out _)) + return; + + if (!_role.MindHasRole(mind)) { _popup.PopupEntity(Loc.GetString("spider-charge-not-ninja"), user, user); args.Cancelled = true; diff --git a/Content.Shared/Mind/SharedMindSystem.cs b/Content.Shared/Mind/SharedMindSystem.cs index 162bca495ca..bf0b5f650ad 100644 --- a/Content.Shared/Mind/SharedMindSystem.cs +++ b/Content.Shared/Mind/SharedMindSystem.cs @@ -483,19 +483,6 @@ public bool TryGetMind( return false; } - /// - /// Gets a role component from a player's mind. - /// - /// Whether a role was found - public bool TryGetRole(EntityUid user, [NotNullWhen(true)] out T? role) where T : IComponent - { - role = default; - if (!TryComp(user, out var mindContainer) || mindContainer.Mind == null) - return false; - - return TryComp(mindContainer.Mind, out role); - } - /// /// Sets the Mind's UserId, Session, and updates the player's PlayerData. This should have no direct effect on the /// entity that any mind is connected to, except as a side effect of the fact that it may change a player's From b137b0caa2adf80e963b77214e9d89be94d68137 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Fri, 18 Oct 2024 16:59:50 +0200 Subject: [PATCH 007/171] HOTFIX Plushies no longer delete items when recycled (#32882) Fix: Plushies no longer delete items when recycled (#32838) fix Co-authored-by: beck-thompson <107373427+beck-thompson@users.noreply.github.com> --- .../EntitySystems/SecretStashSystem.cs | 28 +++++++++++++++---- 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs index 08a69c345f0..af9b768e98b 100644 --- a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs @@ -14,6 +14,8 @@ using Content.Shared.IdentityManagement; using Content.Shared.Tools.EntitySystems; using Content.Shared.Whitelist; +using Content.Shared.Materials; +using Robust.Shared.Map; namespace Content.Shared.Storage.EntitySystems; @@ -35,6 +37,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnDestroyed); + SubscribeLocalEvent(OnReclaimed); SubscribeLocalEvent(OnInteractUsing, after: new[] { typeof(ToolOpenableSystem) }); SubscribeLocalEvent(OnInteractHand); SubscribeLocalEvent>(OnGetVerb); @@ -47,12 +50,12 @@ private void OnInit(Entity entity, ref ComponentInit args) private void OnDestroyed(Entity entity, ref DestructionEventArgs args) { - var storedInside = _containerSystem.EmptyContainer(entity.Comp.ItemContainer); - if (storedInside != null && storedInside.Count >= 1) - { - var popup = Loc.GetString("comp-secret-stash-on-destroyed-popup", ("stashname", GetStashName(entity))); - _popupSystem.PopupEntity(popup, storedInside[0], PopupType.MediumCaution); - } + DropContentsAndAlert(entity); + } + + private void OnReclaimed(Entity entity, ref GotReclaimedEvent args) + { + DropContentsAndAlert(entity, args.ReclaimerCoordinates); } private void OnInteractUsing(Entity entity, ref InteractUsingEvent args) @@ -211,5 +214,18 @@ private bool HasItemInside(Entity entity) return entity.Comp.ItemContainer.ContainedEntity != null; } + /// + /// Drop the item stored in the stash and alert all nearby players with a popup. + /// + private void DropContentsAndAlert(Entity entity, EntityCoordinates? cords = null) + { + var storedInside = _containerSystem.EmptyContainer(entity.Comp.ItemContainer, true, cords); + if (storedInside != null && storedInside.Count >= 1) + { + var popup = Loc.GetString("comp-secret-stash-on-destroyed-popup", ("stashname", GetStashName(entity))); + _popupSystem.PopupPredicted(popup, storedInside[0], null, PopupType.MediumCaution); + } + } + #endregion } From 928877f0ef7d16120843228ed619242acdc4feab Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 19 Oct 2024 18:05:48 +0200 Subject: [PATCH 008/171] HOTFIX (stable) submodule update (#32900) Update submodule This fixes an important memory leak. --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index d1d43f834b8..32bca7cfd41 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit d1d43f834b8845da698ef1898e8191ab159ee367 +Subproject commit 32bca7cfd417edcad9a60c2b1703eba8675f56af From 2b02545f97d06d9ce6f4dba38921ee10dda268b2 Mon Sep 17 00:00:00 2001 From: nikthechampiongr <32041239+nikthechampiongr@users.noreply.github.com> Date: Wed, 23 Oct 2024 01:34:11 +0300 Subject: [PATCH 009/171] Hotfix server config changes for playercap and Levi bunker (#32925) Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Resources/ConfigPresets/WizardsDen/leviathan.toml | 4 ---- Resources/ConfigPresets/WizardsDen/wizardsDen.toml | 4 ++-- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Resources/ConfigPresets/WizardsDen/leviathan.toml b/Resources/ConfigPresets/WizardsDen/leviathan.toml index 7560833f13a..a1a0e5b704d 100644 --- a/Resources/ConfigPresets/WizardsDen/leviathan.toml +++ b/Resources/ConfigPresets/WizardsDen/leviathan.toml @@ -4,10 +4,6 @@ [game] hostname = "[EN] Wizard's Den Leviathan [US East 1]" -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/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml index 077ff3fe40a..2b059ca40e3 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -4,12 +4,12 @@ [game] desc = "Official English Space Station 14 servers. Vanilla, roleplay ruleset." lobbyenabled = true -soft_max_players = 80 +soft_max_players = 70 panic_bunker.enabled = true panic_bunker.disable_with_admins = true panic_bunker.enable_without_admins = true panic_bunker.show_reason = true -panic_bunker.custom_reason = "You have not played on a Wizard's Den server long enough to connect to this server. Please play on Wizard's Den Lizard, Leviathan, or Farm Grass Hopper until you have more playtime." +panic_bunker.custom_reason = "You have not played on a Wizard's Den server long enough to connect to this server. Please play on Wizard's Den Lizard or Farm Grass Hopper until you have more playtime." [infolinks] bug_report = "https://github.com/space-wizards/space-station-14/issues/new/choose" From ae1c5572fcda25e159a1c9762e2d71b0d7ec9c2b Mon Sep 17 00:00:00 2001 From: Jezithyr Date: Sat, 12 Oct 2024 22:21:44 -0700 Subject: [PATCH 010/171] Applying Fix from #32764 to staging --- Content.Server/Thief/Systems/ThiefBeaconSystem.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Content.Server/Thief/Systems/ThiefBeaconSystem.cs b/Content.Server/Thief/Systems/ThiefBeaconSystem.cs index de1c3d2e6d1..4c65ba5c449 100644 --- a/Content.Server/Thief/Systems/ThiefBeaconSystem.cs +++ b/Content.Server/Thief/Systems/ThiefBeaconSystem.cs @@ -20,7 +20,6 @@ public sealed class ThiefBeaconSystem : EntitySystem [Dependency] private readonly SharedPopupSystem _popup = default!; [Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly SharedRoleSystem _roles = default!; - public override void Initialize() { base.Initialize(); From 4fbe50ab28be11c89c6d11684e0908d2309f2ce1 Mon Sep 17 00:00:00 2001 From: Thomas <87614336+Aeshus@users.noreply.github.com> Date: Sun, 27 Oct 2024 13:41:29 -0500 Subject: [PATCH 011/171] Fix Bug With Uppercase Radio Keys (#32997) --- Content.Shared/Chat/SharedChatSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Chat/SharedChatSystem.cs b/Content.Shared/Chat/SharedChatSystem.cs index 84b0e2266ec..e5f3d469974 100644 --- a/Content.Shared/Chat/SharedChatSystem.cs +++ b/Content.Shared/Chat/SharedChatSystem.cs @@ -106,7 +106,7 @@ public void GetRadioKeycodePrefix(EntityUid source, if (!(input.StartsWith(RadioChannelPrefix) || input.StartsWith(RadioChannelAltPrefix))) return; - if (!_keyCodes.TryGetValue(input[1], out _)) + if (!_keyCodes.TryGetValue(char.ToLower(input[1]), out _)) return; prefix = input[..2]; From a4717556e196d0e6997ba9a672e1a7237509b7aa Mon Sep 17 00:00:00 2001 From: BramvanZijp <56019239+BramvanZijp@users.noreply.github.com> Date: Sat, 26 Oct 2024 04:16:45 +0200 Subject: [PATCH 012/171] Fix loneop spawnrate by reverting it to not use the shuttle event system. (#32942) Fix loneop spawnrate by reverting it to not use the custom shuttle event system. --- Resources/Prototypes/GameRules/events.yml | 3 ++- Resources/Prototypes/GameRules/unknown_shuttles.yml | 5 ++--- Resources/Prototypes/Shuttles/shuttle_incoming_event.yml | 5 ----- 3 files changed, 4 insertions(+), 9 deletions(-) diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index e5e1192fc68..08218accede 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -35,6 +35,7 @@ - id: RevenantSpawn - id: SleeperAgents - id: ZombieOutbreak + - id: LoneOpsSpawn - type: entity id: BaseStationEvent @@ -451,7 +452,7 @@ duration: 1 - type: RuleGrids - type: LoadMapRule - preloadedGrid: ShuttleStriker + mapPath: /Maps/Shuttles/ShuttleEvent/striker.yml - type: NukeopsRule roundEndBehavior: Nothing - type: AntagSelection diff --git a/Resources/Prototypes/GameRules/unknown_shuttles.yml b/Resources/Prototypes/GameRules/unknown_shuttles.yml index afbd552af3f..f3391333b53 100644 --- a/Resources/Prototypes/GameRules/unknown_shuttles.yml +++ b/Resources/Prototypes/GameRules/unknown_shuttles.yml @@ -20,7 +20,6 @@ - id: UnknownShuttleMeatZone - id: UnknownShuttleMicroshuttle - id: UnknownShuttleSpacebus - - id: UnknownShuttleInstigator - type: entityTable id: UnknownShuttlesFreelanceTable @@ -32,9 +31,9 @@ id: UnknownShuttlesHostileTable table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp children: - - id: LoneOpsSpawn + - id: UnknownShuttleInstigator -# Shuttle Game Rules +# Shuttle Game Rules - type: entity abstract: true diff --git a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml index a5269a73dae..1703e0c6980 100644 --- a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml +++ b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml @@ -1,8 +1,3 @@ -- type: preloadedGrid - id: ShuttleStriker - path: /Maps/Shuttles/ShuttleEvent/striker.yml - copies: 2 - - type: preloadedGrid id: ShuttleCargoLost path: /Maps/Shuttles/ShuttleEvent/lost_cargo.yml From 0468c0f6bb3dbd10e4c7e2c5d1909ed87ca4eb64 Mon Sep 17 00:00:00 2001 From: Stalen <33173619+stalengd@users.noreply.github.com> Date: Mon, 28 Oct 2024 21:00:00 +0300 Subject: [PATCH 013/171] Fix playtime formatting (#32974) --- .../Info/PlaytimeStats/PlaytimeStatsEntry.cs | 3 ++- .../Info/PlaytimeStats/PlaytimeStatsWindow.cs | 3 +-- .../ContentLocalizationManager.cs | 21 +++++++++++++++++++ .../DepartmentTimeRequirement.cs | 3 ++- .../OverallPlaytimeRequirement.cs | 3 ++- .../JobRequirement/RoleTimeRequirement.cs | 3 ++- Resources/Locale/en-US/_lib.ftl | 3 +++ .../Locale/en-US/info/playtime-stats.ftl | 3 +-- .../Locale/en-US/job/role-requirements.ftl | 1 - 9 files changed, 34 insertions(+), 9 deletions(-) diff --git a/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs b/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs index 16e8f55a7e2..632ad8de4ac 100644 --- a/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs +++ b/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs @@ -1,3 +1,4 @@ +using Content.Shared.Localizations; using Robust.Client.AutoGenerated; using Robust.Client.Graphics; using Robust.Client.UserInterface.Controls; @@ -16,7 +17,7 @@ public PlaytimeStatsEntry(string role, TimeSpan playtime, StyleBox styleBox) RoleLabel.Text = role; Playtime = playtime; // store the TimeSpan value directly - PlaytimeLabel.Text = playtime.ToString(Loc.GetString("ui-playtime-time-format")); // convert to string for display + PlaytimeLabel.Text = ContentLocalizationManager.FormatPlaytime(playtime); // convert to string for display BackgroundColorPanel.PanelOverride = styleBox; } diff --git a/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.cs b/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.cs index 1a530d950f9..98241b2ccab 100644 --- a/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.cs +++ b/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.cs @@ -104,8 +104,7 @@ private void PopulatePlaytimeData() { var overallPlaytime = _jobRequirementsManager.FetchOverallPlaytime(); - var formattedPlaytime = overallPlaytime.ToString(Loc.GetString("ui-playtime-time-format")); - OverallPlaytimeLabel.Text = Loc.GetString("ui-playtime-overall", ("time", formattedPlaytime)); + OverallPlaytimeLabel.Text = Loc.GetString("ui-playtime-overall", ("time", overallPlaytime)); var rolePlaytimes = _jobRequirementsManager.FetchPlaytimeByRoles(); diff --git a/Content.Shared/Localizations/ContentLocalizationManager.cs b/Content.Shared/Localizations/ContentLocalizationManager.cs index ad8890ae0fd..e60ca74a37f 100644 --- a/Content.Shared/Localizations/ContentLocalizationManager.cs +++ b/Content.Shared/Localizations/ContentLocalizationManager.cs @@ -36,6 +36,7 @@ public void Initialize() _loc.AddFunction(culture, "LOC", FormatLoc); _loc.AddFunction(culture, "NATURALFIXED", FormatNaturalFixed); _loc.AddFunction(culture, "NATURALPERCENT", FormatNaturalPercent); + _loc.AddFunction(culture, "PLAYTIME", FormatPlaytime); /* @@ -141,6 +142,16 @@ public static string FormatDirection(Direction dir) return Loc.GetString($"zzzz-fmt-direction-{dir.ToString()}"); } + /// + /// Formats playtime as hours and minutes. + /// + public static string FormatPlaytime(TimeSpan time) + { + var hours = (int)time.TotalHours; + var minutes = time.Minutes; + return Loc.GetString($"zzzz-fmt-playtime", ("hours", hours), ("minutes", minutes)); + } + private static ILocValue FormatLoc(LocArgs args) { var id = ((LocValueString) args.Args[0]).Value; @@ -229,5 +240,15 @@ private static ILocValue FormatUnits(LocArgs args) return new LocValueString(res); } + + private static ILocValue FormatPlaytime(LocArgs args) + { + var time = TimeSpan.Zero; + if (args.Args is { Count: > 0 } && args.Args[0].Value is TimeSpan timeArg) + { + time = timeArg; + } + return new LocValueString(FormatPlaytime(time)); + } } } diff --git a/Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs b/Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs index 78c6bd25177..8c862992103 100644 --- a/Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs +++ b/Content.Shared/Roles/JobRequirement/DepartmentTimeRequirement.cs @@ -1,4 +1,5 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared.Localizations; using Content.Shared.Preferences; using JetBrains.Annotations; using Robust.Shared.Prototypes; @@ -49,7 +50,7 @@ public override bool Check(IEntityManager entManager, var deptDiffSpan = Time - playtime; var deptDiff = deptDiffSpan.TotalMinutes; - var formattedDeptDiff = deptDiffSpan.ToString(Loc.GetString("role-timer-time-format")); + var formattedDeptDiff = ContentLocalizationManager.FormatPlaytime(deptDiffSpan); var nameDepartment = "role-timer-department-unknown"; if (protoManager.TryIndex(Department, out var departmentIndexed)) diff --git a/Content.Shared/Roles/JobRequirement/OverallPlaytimeRequirement.cs b/Content.Shared/Roles/JobRequirement/OverallPlaytimeRequirement.cs index ed985cadfba..67b3938e1a7 100644 --- a/Content.Shared/Roles/JobRequirement/OverallPlaytimeRequirement.cs +++ b/Content.Shared/Roles/JobRequirement/OverallPlaytimeRequirement.cs @@ -1,4 +1,5 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared.Localizations; using Content.Shared.Players.PlayTimeTracking; using Content.Shared.Preferences; using JetBrains.Annotations; @@ -27,7 +28,7 @@ public override bool Check(IEntityManager entManager, var overallTime = playTimes.GetValueOrDefault(PlayTimeTrackingShared.TrackerOverall); var overallDiffSpan = Time - overallTime; var overallDiff = overallDiffSpan.TotalMinutes; - var formattedOverallDiff = overallDiffSpan.ToString(Loc.GetString("role-timer-time-format")); + var formattedOverallDiff = ContentLocalizationManager.FormatPlaytime(overallDiffSpan); if (!Inverted) { diff --git a/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs b/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs index 23498ab91ad..e75a18f011d 100644 --- a/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs +++ b/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs @@ -1,4 +1,5 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared.Localizations; using Content.Shared.Players.PlayTimeTracking; using Content.Shared.Preferences; using Content.Shared.Roles.Jobs; @@ -36,7 +37,7 @@ public override bool Check(IEntityManager entManager, playTimes.TryGetValue(proto, out var roleTime); var roleDiffSpan = Time - roleTime; var roleDiff = roleDiffSpan.TotalMinutes; - var formattedRoleDiff = roleDiffSpan.ToString(Loc.GetString("role-timer-time-format")); + var formattedRoleDiff = ContentLocalizationManager.FormatPlaytime(roleDiffSpan); var departmentColor = Color.Yellow; if (entManager.EntitySysManager.TryGetEntitySystem(out SharedJobSystem? jobSystem)) diff --git a/Resources/Locale/en-US/_lib.ftl b/Resources/Locale/en-US/_lib.ftl index c901d0f461e..5c6f73af66f 100644 --- a/Resources/Locale/en-US/_lib.ftl +++ b/Resources/Locale/en-US/_lib.ftl @@ -31,3 +31,6 @@ zzzz-fmt-power-joules = { TOSTRING($divided, "F1") } { $places -> [4] TJ *[5] ??? } + +# Used internally by the PLAYTIME() function. +zzzz-fmt-playtime = {$hours}H {$minutes}M \ No newline at end of file diff --git a/Resources/Locale/en-US/info/playtime-stats.ftl b/Resources/Locale/en-US/info/playtime-stats.ftl index 85508c1d09c..b4925176a76 100644 --- a/Resources/Locale/en-US/info/playtime-stats.ftl +++ b/Resources/Locale/en-US/info/playtime-stats.ftl @@ -2,9 +2,8 @@ ui-playtime-stats-title = User Playtime Stats ui-playtime-overall-base = Overall Playtime: -ui-playtime-overall = Overall Playtime: {$time} +ui-playtime-overall = Overall Playtime: {PLAYTIME($time)} ui-playtime-first-time = First Time Playing ui-playtime-roles = Playtime per Role -ui-playtime-time-format = %h\H\ %m\M ui-playtime-header-role-type = Role ui-playtime-header-role-time = Time diff --git a/Resources/Locale/en-US/job/role-requirements.ftl b/Resources/Locale/en-US/job/role-requirements.ftl index 79a216fccaf..686fcb93cb1 100644 --- a/Resources/Locale/en-US/job/role-requirements.ftl +++ b/Resources/Locale/en-US/job/role-requirements.ftl @@ -4,7 +4,6 @@ role-timer-overall-insufficient = You require [color=yellow]{$time}[/color] more role-timer-overall-too-high = You require [color=yellow]{$time}[/color] less overall playtime to play this role. (Are you trying to play a trainee role?) role-timer-role-insufficient = You require [color=yellow]{$time}[/color] more playtime with [color={$departmentColor}]{$job}[/color] to play this role. role-timer-role-too-high = You require[color=yellow] {$time}[/color] less playtime with [color={$departmentColor}]{$job}[/color] to play this role. (Are you trying to play a trainee role?) -role-timer-time-format = %h\H\ %m\M role-timer-age-too-old = Your character must be under the age of [color=yellow]{$age}[/color] to play this role. role-timer-age-too-young = Your character must be over the age of [color=yellow]{$age}[/color] to play this role. role-timer-whitelisted-species = Your character must be one of the following species to play this role: From a399c1ec7cdd0f7aa86577d2a813ed04a845edda Mon Sep 17 00:00:00 2001 From: deathride58 Date: Thu, 31 Oct 2024 17:30:58 -0400 Subject: [PATCH 014/171] Fixes tailthump breaking positional audio by making it mono (#33092) --- .../Voice/Reptilian/reptilian_tailthump.ogg | Bin 31956 -> 9215 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Audio/Voice/Reptilian/reptilian_tailthump.ogg b/Resources/Audio/Voice/Reptilian/reptilian_tailthump.ogg index e4bf25f7b8d1e743e34826b343f33e41e9298e16..fff0a8728a7d7123dc4d9b89f23603f677396a34 100644 GIT binary patch delta 8227 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 Hm4W{O+Q|*_ literal 31956 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 Date: Sat, 2 Nov 2024 17:49:44 +0100 Subject: [PATCH 015/171] Hotfix add debug info to traitor activation (#33119) * Add debug messages to traitor activation * more debug --- Content.Server/Antag/AntagSelectionSystem.cs | 4 +++ .../GameTicking/Rules/TraitorRuleSystem.cs | 31 +++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/Content.Server/Antag/AntagSelectionSystem.cs b/Content.Server/Antag/AntagSelectionSystem.cs index 224629ff2e5..610c0ad182a 100644 --- a/Content.Server/Antag/AntagSelectionSystem.cs +++ b/Content.Server/Antag/AntagSelectionSystem.cs @@ -55,6 +55,8 @@ public override void Initialize() { base.Initialize(); + Log.Level = LogLevel.Debug; + SubscribeLocalEvent(OnTakeGhostRole); SubscribeLocalEvent(OnObjectivesTextGetInfo); @@ -360,6 +362,8 @@ public void MakeAntag(Entity ent, ICommonSession? sessi _role.MindAddRoles(curMind.Value, def.MindRoles, null, true); ent.Comp.SelectedMinds.Add((curMind.Value, Name(player))); SendBriefing(session, def.Briefing); + + Log.Debug($"Selected {ToPrettyString(curMind)} as antagonist: {ToPrettyString(ent)}"); } var afterEv = new AfterAntagEntitySelectedEvent(session, player, ent, def); diff --git a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs index 1987613763b..bc6a8e9395f 100644 --- a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs @@ -41,6 +41,8 @@ public override void Initialize() { base.Initialize(); + Log.Level = LogLevel.Debug; + SubscribeLocalEvent(AfterEntitySelected); SubscribeLocalEvent(OnObjectivesTextPrepend); } @@ -53,6 +55,7 @@ protected override void Added(EntityUid uid, TraitorRuleComponent component, Gam private void AfterEntitySelected(Entity ent, ref AfterAntagEntitySelectedEvent args) { + Log.Debug($"AfterAntagEntitySelected {ToPrettyString(ent)}"); MakeTraitor(args.EntityUid, ent); } @@ -78,14 +81,22 @@ public string[] GenerateTraitorCodewords(TraitorRuleComponent component) public bool MakeTraitor(EntityUid traitor, TraitorRuleComponent component) { + Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - start"); + //Grab the mind if it wasn't provided if (!_mindSystem.TryGetMind(traitor, out var mindId, out var mind)) + { + Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - failed, no Mind found"); return false; + } var briefing = ""; if (component.GiveCodewords) + { + Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - added codewords flufftext to briefing"); briefing = Loc.GetString("traitor-role-codewords-short", ("codewords", string.Join(", ", component.Codewords))); + } var issuer = _random.Pick(_prototypeManager.Index(component.ObjectiveIssuers).Values); @@ -94,6 +105,7 @@ public bool MakeTraitor(EntityUid traitor, TraitorRuleComponent component) if (component.GiveUplink) { + Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - Uplink start"); // Calculate the amount of currency on the uplink. var startingBalance = component.StartingBalance; if (_jobs.MindTryGetJob(mindId, out var prototype)) @@ -105,18 +117,27 @@ public bool MakeTraitor(EntityUid traitor, TraitorRuleComponent component) } // Choose and generate an Uplink, and return the uplink code if applicable + Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - Uplink request start"); var uplinkParams = RequestUplink(traitor, startingBalance, briefing); code = uplinkParams.Item1; briefing = uplinkParams.Item2; + Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - Uplink request completed"); } string[]? codewords = null; if (component.GiveCodewords) + { + Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - set codewords from component"); codewords = component.Codewords; + } if (component.GiveBriefing) + { _antag.SendBriefing(traitor, GenerateBriefing(codewords, code, issuer), null, component.GreetSoundNotification); + Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - Sent the Briefing"); + } + Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - Adding TraitorMind"); component.TraitorMinds.Add(mindId); // Assign briefing @@ -126,9 +147,14 @@ public bool MakeTraitor(EntityUid traitor, TraitorRuleComponent component) _roleSystem.MindHasRole(mindId, out var traitorRole); if (traitorRole is not null) { + Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - Add traitor briefing components"); AddComp(traitorRole.Value.Owner); Comp(traitorRole.Value.Owner).Briefing = briefing; } + else + { + Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - did not get traitor briefing"); + } // Send codewords to only the traitor client var color = TraitorCodewordColor; // Fall back to a dark red Syndicate color if a prototype is not found @@ -137,9 +163,11 @@ public bool MakeTraitor(EntityUid traitor, TraitorRuleComponent component) _roleCodewordSystem.SetRoleCodewords(codewordComp, "traitor", component.Codewords.ToList(), color); // Change the faction + Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - Change faction"); _npcFaction.RemoveFaction(traitor, component.NanoTrasenFaction, false); _npcFaction.AddFaction(traitor, component.SyndicateFaction); + Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - Finished"); return true; } @@ -148,10 +176,12 @@ public bool MakeTraitor(EntityUid traitor, TraitorRuleComponent component) var pda = _uplink.FindUplinkTarget(traitor); Note[]? code = null; + Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - Uplink add"); var uplinked = _uplink.AddUplink(traitor, startingBalance, pda, true); if (pda is not null && uplinked) { + Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - Uplink is PDA"); // Codes are only generated if the uplink is a PDA code = EnsureComp(pda.Value).Code; @@ -163,6 +193,7 @@ public bool MakeTraitor(EntityUid traitor, TraitorRuleComponent component) } else if (pda is null && uplinked) { + Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - Uplink is implant"); briefing += "\n" + Loc.GetString("traitor-role-uplink-implant-short"); } From 69c0f8773f05e12b78bf45303a0ec99bfeced773 Mon Sep 17 00:00:00 2001 From: cohanna Date: Mon, 4 Nov 2024 03:10:29 -0700 Subject: [PATCH 016/171] we hate powergaming --- .../Recipes/Construction/Graphs/structures/window.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/window.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/window.yml index b9e6eae0815..1782c5924bf 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/window.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/window.yml @@ -223,11 +223,6 @@ - material: Uranium amount: 2 doAfter: 1 - - to: shuttleWindow - steps: - - material: Plasteel - amount: 2 - doAfter: 3 - node: reinforcedPlasmaWindow entity: ReinforcedPlasmaWindow From 3972a252581aaa6dd6f022eb09b6c2faf903da3c Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Tue, 5 Nov 2024 19:03:14 +0100 Subject: [PATCH 017/171] HOTFIX latejoin traitor activations (#33180) --- Resources/Prototypes/GameRules/roundstart.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index cec5c9ee093..6ca322d0d5f 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -191,12 +191,17 @@ - type: entity id: TraitorReinforcement - parent: Traitor + parent: BaseTraitorRule components: - type: TraitorRule giveUplink: false giveCodewords: false # It would actually give them a different set of codewords than the regular traitors, anyway giveBriefing: false + - type: AntagSelection + definitions: + - prefRoles: [ Traitor ] + mindRoles: + - MindRoleTraitor - type: entity id: Revolutionary @@ -280,7 +285,6 @@ tableId: CalmPestEventsTable - !type:NestedSelector tableId: SpicyPestEventsTable - - type: entityTable id: SpaceTrafficControlTable From 18971f270539a69c54b203a87b40573eacbbabaa Mon Sep 17 00:00:00 2001 From: cohanna Date: Wed, 6 Nov 2024 21:39:02 -0700 Subject: [PATCH 018/171] Reverted #31978 --- .../Entities/Structures/Windows/clockwork.yml | 20 +-- .../Entities/Structures/Windows/mining.yml | 4 +- .../Entities/Structures/Windows/plasma.yml | 25 +-- .../Structures/Windows/plastitanium.yml | 8 +- .../Structures/Windows/reinforced.yml | 35 +++- .../Entities/Structures/Windows/rplasma.yml | 14 +- .../Entities/Structures/Windows/ruranium.yml | 16 +- .../Entities/Structures/Windows/shuttle.yml | 4 +- .../Entities/Structures/Windows/uranium.yml | 24 +-- .../Entities/Structures/Windows/window.yml | 30 +--- .../Construction/Graphs/structures/window.yml | 170 +++++++----------- .../Graphs/structures/window_diagonal.yml | 146 ++++++--------- .../Graphs/structures/windowdirectional.yml | 146 ++++----------- .../Recipes/Construction/structures.yml | 42 ++--- ...ageOverlay_20.png => DamageOverlay_12.png} | Bin ...amageOverlay_5.png => DamageOverlay_4.png} | Bin ...mageOverlay_10.png => DamageOverlay_8.png} | Bin .../Structures/Windows/cracks.rsi/meta.json | 6 +- ...ageOverlay_20.png => DamageOverlay_12.png} | Bin ...amageOverlay_5.png => DamageOverlay_4.png} | Bin ...mageOverlay_10.png => DamageOverlay_8.png} | Bin .../Windows/cracks_diagonal.rsi/meta.json | 6 +- ...ageOverlay_20.png => DamageOverlay_12.png} | Bin ...amageOverlay_5.png => DamageOverlay_4.png} | Bin ...mageOverlay_10.png => DamageOverlay_8.png} | Bin .../Windows/cracks_directional.rsi/meta.json | 6 +- 26 files changed, 247 insertions(+), 455 deletions(-) rename Resources/Textures/Structures/Windows/cracks.rsi/{DamageOverlay_20.png => DamageOverlay_12.png} (100%) rename Resources/Textures/Structures/Windows/cracks.rsi/{DamageOverlay_5.png => DamageOverlay_4.png} (100%) rename Resources/Textures/Structures/Windows/cracks.rsi/{DamageOverlay_10.png => DamageOverlay_8.png} (100%) rename Resources/Textures/Structures/Windows/cracks_diagonal.rsi/{DamageOverlay_20.png => DamageOverlay_12.png} (100%) rename Resources/Textures/Structures/Windows/cracks_diagonal.rsi/{DamageOverlay_5.png => DamageOverlay_4.png} (100%) rename Resources/Textures/Structures/Windows/cracks_diagonal.rsi/{DamageOverlay_10.png => DamageOverlay_8.png} (100%) rename Resources/Textures/Structures/Windows/cracks_directional.rsi/{DamageOverlay_20.png => DamageOverlay_12.png} (100%) rename Resources/Textures/Structures/Windows/cracks_directional.rsi/{DamageOverlay_5.png => DamageOverlay_4.png} (100%) rename Resources/Textures/Structures/Windows/cracks_directional.rsi/{DamageOverlay_10.png => DamageOverlay_8.png} (100%) diff --git a/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml b/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml index 3449d1d11a0..992dfcda1cb 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml @@ -47,8 +47,8 @@ node: clockworkWindow - type: Appearance - type: DamageVisuals - thresholds: [5, 10, 20] - damageDivisor: 3 + thresholds: [4, 8, 12] + damageDivisor: 4 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi @@ -74,8 +74,8 @@ node: windowClockworkDirectional - type: Appearance - type: DamageVisuals - thresholds: [5, 10, 20] - damageDivisor: 1.5 + thresholds: [4, 8, 12] + damageDivisor: 10 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_directional.rsi @@ -85,17 +85,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 75 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - !type:PlaySoundBehavior - sound: - collection: WindowShatter - - trigger: - !type:DamageTrigger - damage: 37 - behaviors: + damage: 150 - !type:PlaySoundBehavior sound: collection: WindowShatter diff --git a/Resources/Prototypes/Entities/Structures/Windows/mining.yml b/Resources/Prototypes/Entities/Structures/Windows/mining.yml index f0b77e66893..82d11b732b6 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/mining.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/mining.yml @@ -43,8 +43,8 @@ base: mwindow - type: Appearance - type: DamageVisuals - thresholds: [5, 10, 20] - damageDivisor: 4 + thresholds: [4, 8, 12] + damageDivisor: 6 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi diff --git a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml index 58991b92869..66fac515a77 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml @@ -10,12 +10,12 @@ sprite: Structures/Windows/plasma_window.rsi - type: Damageable damageContainer: StructuralInorganic - damageModifierSet: Glass + damageModifierSet: RGlass - type: Destructible thresholds: - trigger: !type:DamageTrigger - damage: 150 + damage: 120 behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] @@ -24,7 +24,7 @@ collection: WindowShatter - trigger: !type:DamageTrigger - damage: 75 + damage: 60 behaviors: - !type:PlaySoundBehavior sound: @@ -43,8 +43,8 @@ node: plasmaWindow - type: Appearance - type: DamageVisuals - thresholds: [5, 10, 20] - damageDivisor: 3 + thresholds: [4, 8, 12] + damageDivisor: 3.333 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi @@ -74,8 +74,8 @@ node: plasmaWindowDirectional - type: Appearance - type: DamageVisuals - thresholds: [5, 10, 20] - damageDivisor: 1.5 + thresholds: [4, 8, 12] + damageDivisor: 3.333 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_directional.rsi @@ -83,16 +83,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 75 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - !type:PlaySoundBehavior - sound: - collection: WindowShatter - - trigger: - !type:DamageTrigger - damage: 37 + damage: 200 behaviors: - !type:PlaySoundBehavior sound: diff --git a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml index e7af4b6c677..2134cfe8927 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml @@ -98,8 +98,8 @@ - !type:DoActsBehavior acts: [ "Destruction" ] - type: DamageVisuals - thresholds: [5, 10, 20] - damageDivisor: 20 + thresholds: [4, 8, 12] + damageDivisor: 28 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi @@ -185,8 +185,8 @@ - !type:DoActsBehavior acts: [ "Destruction" ] - type: DamageVisuals - thresholds: [5, 10, 20] - damageDivisor: 20 + thresholds: [4, 8, 12] + damageDivisor: 28 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_diagonal.rsi diff --git a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml index 9e80d46e649..503d2eec6e3 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml @@ -50,12 +50,31 @@ node: reinforcedWindow - type: Appearance - type: DamageVisuals - thresholds: [5, 10, 20] - damageDivisor: 3 + thresholds: [4, 8, 12] + damageDivisor: 4 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi +- type: entity + parent: ReinforcedWindow + id: TintedWindow + name: tinted window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/tinted_window.rsi + - type: Icon + sprite: Structures/Windows/tinted_window.rsi + - type: IconSmooth + base: twindow + - type: Construction + graph: Window + node: tintedWindow + - type: Occluder + - type: StaticPrice + price: 45 + - type: entity id: WindowReinforcedDirectional parent: WindowDirectional @@ -77,8 +96,8 @@ node: windowReinforcedDirectional - type: Appearance - type: DamageVisuals - thresholds: [5, 10, 20] - damageDivisor: 1.5 + thresholds: [4, 8, 12] + damageDivisor: 10 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_directional.rsi @@ -92,16 +111,16 @@ thresholds: - trigger: !type:DamageTrigger - damage: 75 + damage: 150 #excess damage (nuke?). avoid computational cost of spawning entities. behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - !type:PlaySoundBehavior sound: collection: WindowShatter + - !type:DoActsBehavior + acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 37 + damage: 50 behaviors: - !type:PlaySoundBehavior sound: diff --git a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml index 0dfe893a5c3..0940ac308a5 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml @@ -17,7 +17,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 300 + damage: 200 behaviors: #excess damage, don't spawn entities. - !type:DoActsBehavior acts: [ "Destruction" ] @@ -26,7 +26,7 @@ collection: WindowShatter - trigger: !type:DamageTrigger - damage: 150 + damage: 100 behaviors: - !type:PlaySoundBehavior sound: @@ -48,7 +48,7 @@ node: reinforcedPlasmaWindow - type: Appearance - type: DamageVisuals - thresholds: [5, 10, 20] + thresholds: [4, 8, 12] damageDivisor: 6 trackAllDamage: true damageOverlay: @@ -77,8 +77,8 @@ node: plasmaReinforcedWindowDirectional - type: Appearance - type: DamageVisuals - thresholds: [5, 10, 20] - damageDivisor: 3 + thresholds: [4, 8, 12] + damageDivisor: 36 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_directional.rsi @@ -88,13 +88,13 @@ thresholds: - trigger: !type:DamageTrigger - damage: 150 + damage: 1000 behaviors: #excess damage, don't spawn entities. - !type:DoActsBehavior acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 75 + damage: 600 behaviors: - !type:PlaySoundBehavior sound: diff --git a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml index 2231ab6a497..b9b47c00ea9 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml @@ -43,7 +43,7 @@ node: reinforcedUraniumWindow - type: Appearance - type: DamageVisuals - thresholds: [5, 10, 20] + thresholds: [4, 8, 12] damageDivisor: 6 trackAllDamage: true damageOverlay: @@ -74,8 +74,8 @@ node: uraniumReinforcedWindowDirectional - type: Appearance - type: DamageVisuals - thresholds: [5, 10, 20] - damageDivisor: 3 + thresholds: [4, 8, 12] + damageDivisor: 3.333 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_directional.rsi @@ -83,13 +83,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 150 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - trigger: - !type:DamageTrigger - damage: 75 + damage: 200 behaviors: - !type:PlaySoundBehavior sound: @@ -99,7 +93,7 @@ ShardGlassUranium: min: 1 max: 2 - PartRodMetal: + PartRodMetal1: min: 1 max: 2 - !type:DoActsBehavior diff --git a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml index 659f5b8a20e..1b4c96c1709 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml @@ -46,8 +46,8 @@ node: shuttleWindow - type: Appearance - type: DamageVisuals - thresholds: [5, 10, 20] - damageDivisor: 20 + thresholds: [4, 8, 12] + damageDivisor: 28 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi diff --git a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml index 514463f1d32..c7b7312a709 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml @@ -11,18 +11,18 @@ state: full - type: Damageable damageContainer: StructuralInorganic - damageModifierSet: Glass + damageModifierSet: RGlass - type: Destructible thresholds: - trigger: !type:DamageTrigger - damage: 150 + damage: 100 behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 75 + damage: 60 behaviors: - !type:PlaySoundBehavior sound: @@ -41,8 +41,8 @@ node: uraniumWindow - type: Appearance - type: DamageVisuals - thresholds: [5, 10, 20] - damageDivisor: 3 + thresholds: [4, 8, 12] + damageDivisor: 3.333 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi @@ -72,8 +72,8 @@ node: uraniumWindowDirectional - type: Appearance - type: DamageVisuals - thresholds: [5, 10, 20] - damageDivisor: 1.5 + thresholds: [4, 8, 12] + damageDivisor: 3.333 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_directional.rsi @@ -81,13 +81,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 75 - behaviors: - - !type:DoActsBehavior - acts: [ "Destruction" ] - - trigger: - !type:DamageTrigger - damage: 37 + damage: 200 behaviors: - !type:PlaySoundBehavior sound: @@ -96,7 +90,7 @@ spawn: ShardGlassUranium: min: 1 - max: 1 + max: 2 - !type:DoActsBehavior acts: [ "Destruction" ] - type: StaticPrice diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml index fdf4c2ccead..56a38f82fcf 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/window.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml @@ -84,8 +84,8 @@ node: window - type: Appearance - type: DamageVisuals - thresholds: [5, 10, 20] - damageDivisor: 2 + thresholds: [4, 8, 12] + damageDivisor: 3.333 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi @@ -93,25 +93,6 @@ price: 100 - type: BlockWeather -- type: entity - parent: Window - id: TintedWindow - name: tinted window - components: - - type: Sprite - drawdepth: WallTops - sprite: Structures/Windows/tinted_window.rsi - - type: Icon - sprite: Structures/Windows/tinted_window.rsi - - type: IconSmooth - base: twindow - - type: Construction - graph: Window - node: tintedWindow - - type: Occluder - - type: StaticPrice - price: 70 - - type: entity id: WindowRCDResistant parent: Window @@ -177,7 +158,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 50 #excess damage (nuke?). avoid computational cost of spawning entities. + damage: 150 #excess damage (nuke?). avoid computational cost of spawning entities. behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] @@ -207,7 +188,8 @@ node: windowDirectional - type: Appearance - type: DamageVisuals - thresholds: [5, 10, 20] + thresholds: [4, 8, 12] + damageDivisor: 3.333 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_directional.rsi @@ -238,8 +220,6 @@ - type: Icon sprite: Structures/Windows/directional.rsi state: frosted_window - - type: StaticPrice - price: 35 - type: entity parent: Window diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/window.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/window.yml index 1782c5924bf..37682eb0913 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/window.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/window.yml @@ -4,63 +4,61 @@ graph: - node: start edges: - - to: window # 50 hp + - to: plasmaWindow steps: - - material: Glass + - material: PlasmaGlass amount: 2 doAfter: 2 - - to: tintedWindow # 50 hp + - to: reinforcedWindow steps: - - material: Glass + - material: ReinforcedGlass amount: 2 - - material: Plastic + doAfter: 2 + + - to: tintedWindow + steps: + - material: ReinforcedGlass amount: 2 doAfter: 2 - - to: plasmaWindow # 75 hp + - to: reinforcedPlasmaWindow steps: - - material: PlasmaGlass + - material: ReinforcedPlasmaGlass amount: 2 doAfter: 3 - - to: uraniumWindow # 75 hp + - to: uraniumWindow steps: - material: UraniumGlass amount: 2 - doAfter: 3 + doAfter: 2 - - to: clockworkWindow # 75 hp reinforced damage mod + - to: reinforcedUraniumWindow steps: - - material: ClockworkGlass + - material: ReinforcedUraniumGlass amount: 2 doAfter: 3 - - to: reinforcedWindow # 75 hp reinforced damage mod + - to: window steps: - - material: ReinforcedGlass + - material: Glass amount: 2 doAfter: 3 - - to: reinforcedPlasmaWindow # 150 hp reinforced damage mod + - to: shuttleWindow steps: - - material: ReinforcedPlasmaGlass + - material: Plasteel amount: 2 - doAfter: 4 - - - to: reinforcedUraniumWindow # 150 hp reinforced damage mod - steps: - - material: ReinforcedUraniumGlass + - material: ReinforcedGlass amount: 2 doAfter: 4 - - - to: shuttleWindow # 500 hp reinforced damage mod (wow) + + - to: clockworkWindow steps: - - material: Plasteel - amount: 2 - - material: ReinforcedGlass + - material: ClockworkGlass amount: 2 - doAfter: 6 + doAfter: 3 - node: window entity: Window @@ -76,81 +74,56 @@ doAfter: 1 - tool: Anchoring doAfter: 2 - - to: tintedWindow - steps: - - material: Plastic - amount: 2 - doAfter: 0.5 - - to: plasmaWindow - steps: - - material: Plasma - amount: 2 - doAfter: 1 - - to: uraniumWindow - steps: - - material: Uranium - amount: 2 - doAfter: 1 - - to: clockworkWindow - steps: - - material: Brass - amount: 2 - doAfter: 2 - - to: reinforcedWindow - steps: - - material: MetalRod - amount: 2 - doAfter: 2 - - node: tintedWindow - entity: TintedWindow + - node: reinforcedWindow + entity: ReinforcedWindow edges: - to: start completed: - !type:SpawnPrototype - prototype: SheetGlass1 - amount: 2 - - !type:SpawnPrototype - prototype: SheetPlastic1 + prototype: SheetRGlass1 amount: 2 - !type:DeleteEntity {} steps: + - tool: Welding + doAfter: 5 + - tool: Screwing + doAfter: 1 + - tool: Prying + doAfter: 2 + - tool: Welding + doAfter: 5 - tool: Screwing doAfter: 1 - tool: Anchoring doAfter: 2 - - node: plasmaWindow - entity: PlasmaWindow + - node: tintedWindow + entity: TintedWindow edges: - to: start completed: - !type:SpawnPrototype - prototype: SheetPGlass1 + prototype: SheetRGlass1 amount: 2 - !type:DeleteEntity {} steps: - tool: Screwing - doAfter: 2 + doAfter: 1 - tool: Prying - doAfter: 3 - - tool: Screwing doAfter: 2 - - tool: Anchoring - doAfter: 3 - - to: reinforcedPlasmaWindow - steps: - - material: MetalRod - amount: 2 + - tool: Screwing doAfter: 1 + - tool: Anchoring + doAfter: 2 - - node: uraniumWindow - entity: UraniumWindow + - node: plasmaWindow + entity: PlasmaWindow edges: - to: start completed: - !type:SpawnPrototype - prototype: SheetUGlass1 + prototype: SheetPGlass1 amount: 2 - !type:DeleteEntity {} steps: @@ -162,19 +135,14 @@ doAfter: 2 - tool: Anchoring doAfter: 3 - - to: reinforcedUraniumWindow - steps: - - material: MetalRod - amount: 2 - doAfter: 1 - - node: clockworkWindow - entity: ClockworkWindow + - node: reinforcedPlasmaWindow + entity: ReinforcedPlasmaWindow edges: - to: start completed: - !type:SpawnPrototype - prototype: SheetClockworkGlass1 + prototype: SheetRPGlass1 amount: 2 - !type:DeleteEntity {} steps: @@ -191,46 +159,32 @@ - tool: Anchoring doAfter: 3 - - node: reinforcedWindow - entity: ReinforcedWindow + - node: uraniumWindow + entity: UraniumWindow edges: - to: start completed: - !type:SpawnPrototype - prototype: SheetRGlass1 + prototype: SheetUGlass1 amount: 2 - !type:DeleteEntity {} steps: - - tool: Welding - doAfter: 5 - tool: Screwing - doAfter: 1 - - tool: Prying doAfter: 2 - - tool: Welding - doAfter: 5 + - tool: Prying + doAfter: 3 - tool: Screwing - doAfter: 1 - - tool: Anchoring doAfter: 2 - - to: reinforcedPlasmaWindow - steps: - - material: Plasma - amount: 2 - doAfter: 1 - - to: reinforcedUraniumWindow - steps: - - material: Uranium - amount: 2 - doAfter: 1 + - tool: Anchoring + doAfter: 3 - - node: reinforcedPlasmaWindow - entity: ReinforcedPlasmaWindow + - node: reinforcedUraniumWindow + entity: ReinforcedUraniumWindow edges: - to: start completed: - !type:SpawnPrototype - prototype: SheetRPGlass1 + prototype: SheetRUGlass1 amount: 2 - !type:DeleteEntity {} steps: @@ -247,13 +201,13 @@ - tool: Anchoring doAfter: 3 - - node: reinforcedUraniumWindow - entity: ReinforcedUraniumWindow + - node: clockworkWindow + entity: ClockworkWindow edges: - to: start completed: - !type:SpawnPrototype - prototype: SheetRUGlass1 + prototype: SheetClockworkGlass1 amount: 2 - !type:DeleteEntity {} steps: @@ -299,4 +253,4 @@ - tool: Welding doAfter: 4 - tool: Anchoring - doAfter: 1 + doAfter: 1 \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/window_diagonal.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/window_diagonal.yml index 63788ae5ad0..1efe1a8eac8 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/window_diagonal.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/window_diagonal.yml @@ -4,45 +4,45 @@ graph: - node: start edges: - - to: windowDiagonal - steps: - - material: Glass - amount: 2 - doAfter: 2 - - to: plasmaWindowDiagonal steps: - material: PlasmaGlass amount: 2 doAfter: 2 - - to: uraniumWindowDiagonal + - to: reinforcedWindowDiagonal steps: - - material: UraniumGlass + - material: ReinforcedGlass amount: 2 doAfter: 2 - - to: clockworkWindowDiagonal + - to: reinforcedPlasmaWindowDiagonal steps: - - material: ClockworkGlass + - material: ReinforcedPlasmaGlass amount: 2 doAfter: 3 - - to: reinforcedWindowDiagonal + - to: uraniumWindowDiagonal steps: - - material: ReinforcedGlass + - material: UraniumGlass amount: 2 doAfter: 2 - - to: reinforcedPlasmaWindowDiagonal + - to: reinforcedUraniumWindowDiagonal steps: - - material: ReinforcedPlasmaGlass + - material: ReinforcedUraniumGlass amount: 2 doAfter: 3 - - to: reinforcedUraniumWindowDiagonal + - to: clockworkWindowDiagonal steps: - - material: ReinforcedUraniumGlass + - material: ClockworkGlass + amount: 2 + doAfter: 3 + + - to: windowDiagonal + steps: + - material: Glass amount: 2 doAfter: 3 @@ -60,74 +60,29 @@ doAfter: 1 - tool: Anchoring doAfter: 2 - - to: plasmaWindowDiagonal - steps: - - material: Plasma - amount: 2 - doAfter: 1 - - to: uraniumWindowDiagonal - steps: - - material: Uranium - amount: 2 - doAfter: 1 - - to: clockworkWindowDiagonal - steps: - - material: Brass - amount: 2 - doAfter: 2 - - to: reinforcedWindowDiagonal - steps: - - material: MetalRod - amount: 2 - doAfter: 2 - - node: plasmaWindowDiagonal - entity: PlasmaWindowDiagonal + - node: reinforcedWindowDiagonal + entity: ReinforcedWindowDiagonal edges: - to: start completed: - !type:SpawnPrototype - prototype: SheetPGlass1 + prototype: SheetRGlass1 amount: 2 - !type:DeleteEntity {} steps: + - tool: Welding + doAfter: 5 - tool: Screwing - doAfter: 2 - - tool: Prying - doAfter: 3 - - tool: Screwing - doAfter: 2 - - tool: Anchoring - doAfter: 3 - - to: reinforcedPlasmaWindowDiagonal - steps: - - material: MetalRod - amount: 2 doAfter: 1 - - - node: uraniumWindowDiagonal - entity: UraniumWindowDiagonal - edges: - - to: start - completed: - - !type:SpawnPrototype - prototype: SheetUGlass1 - amount: 2 - - !type:DeleteEntity {} - steps: - - tool: Screwing - doAfter: 2 - tool: Prying - doAfter: 3 - - tool: Screwing doAfter: 2 - - tool: Anchoring - doAfter: 3 - - to: reinforcedUraniumWindowDiagonal - steps: - - material: MetalRod - amount: 2 + - tool: Welding + doAfter: 5 + - tool: Screwing doAfter: 1 + - tool: Anchoring + doAfter: 2 - node: clockworkWindowDiagonal entity: ClockworkWindowDiagonal @@ -152,38 +107,24 @@ - tool: Anchoring doAfter: 2 - - node: reinforcedWindowDiagonal - entity: ReinforcedWindowDiagonal + - node: plasmaWindowDiagonal + entity: PlasmaWindowDiagonal edges: - to: start completed: - !type:SpawnPrototype - prototype: SheetRGlass1 + prototype: SheetPGlass1 amount: 2 - !type:DeleteEntity {} steps: - - tool: Welding - doAfter: 5 - tool: Screwing - doAfter: 1 - - tool: Prying doAfter: 2 - - tool: Welding - doAfter: 5 + - tool: Prying + doAfter: 3 - tool: Screwing - doAfter: 1 - - tool: Anchoring doAfter: 2 - - to: reinforcedPlasmaWindowDiagonal - steps: - - material: Plasma - amount: 2 - doAfter: 1 - - to: reinforcedUraniumWindowDiagonal - steps: - - material: Uranium - amount: 2 - doAfter: 1 + - tool: Anchoring + doAfter: 3 - node: reinforcedPlasmaWindowDiagonal entity: ReinforcedPlasmaWindowDiagonal @@ -208,6 +149,25 @@ - tool: Anchoring doAfter: 3 + - node: uraniumWindowDiagonal + entity: UraniumWindowDiagonal + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetUGlass1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Screwing + doAfter: 2 + - tool: Prying + doAfter: 3 + - tool: Screwing + doAfter: 2 + - tool: Anchoring + doAfter: 3 + - node: reinforcedUraniumWindowDiagonal entity: ReinforcedUraniumWindowDiagonal edges: @@ -229,4 +189,4 @@ - tool: Screwing doAfter: 2 - tool: Anchoring - doAfter: 3 + doAfter: 3 \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/structures/windowdirectional.yml b/Resources/Prototypes/Recipes/Construction/Graphs/structures/windowdirectional.yml index 7d3ace33c7f..dc10ce9ecbb 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/structures/windowdirectional.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/structures/windowdirectional.yml @@ -4,55 +4,47 @@ graph: - node: start edges: - - to: windowDirectional # 25 hp - steps: - - material: Glass - amount: 1 - doAfter: 1 - - to: windowFrostedDirectional # 25 hp + - to: windowDirectional steps: - material: Glass amount: 1 - - material: Plastic - amount: 1 - doAfter: 1 + doAfter: 2 - - to: plasmaWindowDirectional # 37 hp + - to: windowReinforcedDirectional steps: - - material: PlasmaGlass + - material: ReinforcedGlass amount: 1 - doAfter: 1.5 + doAfter: 3 - - to: uraniumWindowDirectional # 37 hp + - to: plasmaWindowDirectional steps: - - material: UraniumGlass + - material: PlasmaGlass amount: 1 - doAfter: 1.5 + doAfter: 2 - - to: windowClockworkDirectional # 37 hp reinforced damage mod + - to: plasmaReinforcedWindowDirectional steps: - - material: ClockworkGlass + - material: ReinforcedPlasmaGlass amount: 1 - doAfter: 1.5 - - - to: windowReinforcedDirectional # 37 hp reinforced damage mod + doAfter: 3 + - to: uraniumWindowDirectional steps: - - material: ReinforcedGlass + - material: UraniumGlass amount: 1 - doAfter: 1.5 + doAfter: 2 - - to: plasmaReinforcedWindowDirectional # 75 hp reinforced damage mod + - to: uraniumReinforcedWindowDirectional steps: - - material: ReinforcedPlasmaGlass + - material: ReinforcedUraniumGlass amount: 1 - doAfter: 2 + doAfter: 3 - - to: uraniumReinforcedWindowDirectional # 75 hp reinforced damage mod + - to: windowClockworkDirectional steps: - - material: ReinforcedUraniumGlass + - material: ClockworkGlass amount: 1 - doAfter: 2 + doAfter: 3 - node: windowDirectional entity: WindowDirectional @@ -68,45 +60,21 @@ doAfter: 1 - tool: Anchoring doAfter: 2 - - to: windowFrostedDirectional - steps: - - material: Plastic - amount: 1 - doAfter: 0.5 - - to: plasmaWindowDirectional - steps: - - material: Plasma - amount: 1 - doAfter: 0.5 - - to: uraniumWindowDirectional - steps: - - material: Uranium - amount: 1 - doAfter: 0.5 - - to: windowClockworkDirectional - steps: - - material: Brass - amount: 1 - doAfter: 1 - - to: windowReinforcedDirectional - steps: - - material: MetalRod - amount: 1 - doAfter: 1 - - node: windowFrostedDirectional - entity: WindowFrostedDirectional + - node: windowReinforcedDirectional + entity: WindowReinforcedDirectional edges: - to: start completed: - !type:SpawnPrototype - prototype: SheetGlass1 - amount: 1 - - !type:SpawnPrototype - prototype: SheetPlastic1 + prototype: SheetRGlass1 amount: 1 - !type:DeleteEntity {} steps: + - tool: Screwing + doAfter: 1 + - tool: Prying + doAfter: 2 - tool: Screwing doAfter: 1 - tool: Anchoring @@ -130,19 +98,14 @@ doAfter: 2 - tool: Anchoring doAfter: 3 - - to: plasmaReinforcedWindowDirectional - steps: - - material: MetalRod - amount: 1 - doAfter: 0.5 - - node: uraniumWindowDirectional - entity: UraniumWindowDirectional + - node: windowClockworkDirectional + entity: WindowClockworkDirectional edges: - to: start completed: - !type:SpawnPrototype - prototype: SheetUGlass1 + prototype: SheetClockworkGlass1 amount: 1 - !type:DeleteEntity {} steps: @@ -154,19 +117,14 @@ doAfter: 2 - tool: Anchoring doAfter: 3 - - to: uraniumReinforcedWindowDirectional - steps: - - material: MetalRod - amount: 1 - doAfter: 0.5 - - node: windowClockworkDirectional - entity: WindowClockworkDirectional + - node: plasmaReinforcedWindowDirectional + entity: PlasmaReinforcedWindowDirectional edges: - to: start completed: - !type:SpawnPrototype - prototype: SheetClockworkGlass1 + prototype: SheetRPGlass1 amount: 1 - !type:DeleteEntity {} steps: @@ -178,43 +136,13 @@ doAfter: 2 - tool: Anchoring doAfter: 3 - - - node: windowReinforcedDirectional - entity: WindowReinforcedDirectional - edges: - - to: start - completed: - - !type:SpawnPrototype - prototype: SheetRGlass1 - amount: 1 - - !type:DeleteEntity {} - steps: - - tool: Screwing - doAfter: 1 - - tool: Prying - doAfter: 2 - - tool: Screwing - doAfter: 1 - - tool: Anchoring - doAfter: 2 - - to: plasmaReinforcedWindowDirectional - steps: - - material: Plasma - amount: 1 - doAfter: 0.5 - - to: uraniumReinforcedWindowDirectional - steps: - - material: Uranium - amount: 1 - doAfter: 0.5 - - - node: plasmaReinforcedWindowDirectional - entity: PlasmaReinforcedWindowDirectional + - node: uraniumWindowDirectional + entity: UraniumWindowDirectional edges: - to: start completed: - !type:SpawnPrototype - prototype: SheetRPGlass1 + prototype: SheetUGlass1 amount: 1 - !type:DeleteEntity {} steps: @@ -244,4 +172,4 @@ - tool: Screwing doAfter: 2 - tool: Anchoring - doAfter: 3 + doAfter: 3 \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 71fdbeedafd..31e1264ab08 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -455,7 +455,7 @@ startNode: start targetNode: tintedWindow category: construction-category-structures - description: Not clear, but lasers still pass through. + description: Not clear but tough. canBuildInImpassable: true conditions: - !type:EmptyOrWindowValidInTile @@ -512,7 +512,7 @@ targetNode: plasmaWindow category: construction-category-structures canBuildInImpassable: true - description: Clear, with a purple tint. + description: Clear and even tougher, with a purple tint. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -531,7 +531,7 @@ targetNode: reinforcedPlasmaWindow category: construction-category-structures canBuildInImpassable: true - description: Clear and even tougher, with a purple tint. + description: Fire resistant and even tougher, with a purple tint. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -569,7 +569,7 @@ targetNode: plasmaWindowDiagonal category: construction-category-structures canBuildInImpassable: true - description: Clear, with a purple tint. + description: Clear and even tougher, with a purple tint. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -587,7 +587,7 @@ targetNode: reinforcedPlasmaWindowDiagonal category: construction-category-structures canBuildInImpassable: true - description: Clear and even tougher, with a purple tint. + description: Fire resistant and even tougher, with a purple tint. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -659,7 +659,7 @@ targetNode: plasmaWindowDirectional category: construction-category-structures canBuildInImpassable: true - description: Clear, with a purple tint. + description: Clear and even tougher, with a purple tint. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -677,7 +677,7 @@ targetNode: plasmaReinforcedWindowDirectional category: construction-category-structures canBuildInImpassable: true - description: Clear and even tougher, with a purple tint. + description: Fire resistant and even tougher, with a purple tint. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -695,7 +695,7 @@ targetNode: uraniumWindow category: construction-category-structures canBuildInImpassable: true - description: Clear, with added RadAbsorb to protect you from deadly radiation. + description: Clear and much tougher than regular glass, with added RadAbsorb to protect you from deadly radiation. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -714,7 +714,7 @@ targetNode: reinforcedUraniumWindow category: construction-category-structures canBuildInImpassable: true - description: Clear and even tougher, with added RadAbsorb to protect you from deadly radiation. + description: Clear and much tougher than regular glass, with added RadAbsorb to protect you from deadly radiation. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -733,7 +733,7 @@ targetNode: uraniumWindowDiagonal category: construction-category-structures canBuildInImpassable: true - description: Clear, with added RadAbsorb to protect you from deadly radiation. + description: Clear and much tougher than regular glass, with added RadAbsorb to protect you from deadly radiation. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -751,7 +751,7 @@ targetNode: reinforcedUraniumWindowDiagonal category: construction-category-structures canBuildInImpassable: true - description: Clear and even tougher, with added RadAbsorb to protect you from deadly radiation. + description: Clear and much tougher than regular glass, with added RadAbsorb to protect you from deadly radiation. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -1456,24 +1456,6 @@ # Same here. - 20kdc - !type:TileNotBlocked -- type: construction - name: emergency light - id: EmergencyLightFixture - graph: LightFixture - startNode: start - targetNode: emergencyLight - category: construction-category-structures - description: An emergency light. - icon: - sprite: Structures/Wallmounts/Lighting/emergency_light.rsi - state: base - objectType: Structure - placementMode: SnapgridCenter - canRotate: true - canBuildInImpassable: false - conditions: - - !type:TileNotBlocked - - type: construction name: ground light post id: LightGroundFixture @@ -1746,4 +1728,4 @@ sprite: Structures/Doors/secret_door.rsi state: closed conditions: - - !type:TileNotBlocked + - !type:TileNotBlocked \ No newline at end of file diff --git a/Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_20.png b/Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_12.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_20.png rename to Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_12.png diff --git a/Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_5.png b/Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_4.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_5.png rename to Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_4.png diff --git a/Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_10.png b/Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_8.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_10.png rename to Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_8.png diff --git a/Resources/Textures/Structures/Windows/cracks.rsi/meta.json b/Resources/Textures/Structures/Windows/cracks.rsi/meta.json index ca012e8fc5c..9d0cc9a505d 100644 --- a/Resources/Textures/Structures/Windows/cracks.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/cracks.rsi/meta.json @@ -7,8 +7,8 @@ "license": "CC-BY-SA-3.0", "copyright": "Taken from https://github.com/tgstation/tgstation at commit e06b82a7f4b2b09216fb28fd384c95a2e1dc50e5", "states": [ - {"name": "DamageOverlay_5", "directions": 1}, - {"name": "DamageOverlay_10", "directions": 1}, - {"name": "DamageOverlay_20", "directions": 1} + {"name": "DamageOverlay_4", "directions": 1}, + {"name": "DamageOverlay_8", "directions": 1}, + {"name": "DamageOverlay_12", "directions": 1} ] } diff --git a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_20.png b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_12.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_20.png rename to Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_12.png diff --git a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_5.png b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_4.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_5.png rename to Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_4.png diff --git a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_10.png b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_8.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_10.png rename to Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_8.png diff --git a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/meta.json index ca012e8fc5c..9d0cc9a505d 100644 --- a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/meta.json @@ -7,8 +7,8 @@ "license": "CC-BY-SA-3.0", "copyright": "Taken from https://github.com/tgstation/tgstation at commit e06b82a7f4b2b09216fb28fd384c95a2e1dc50e5", "states": [ - {"name": "DamageOverlay_5", "directions": 1}, - {"name": "DamageOverlay_10", "directions": 1}, - {"name": "DamageOverlay_20", "directions": 1} + {"name": "DamageOverlay_4", "directions": 1}, + {"name": "DamageOverlay_8", "directions": 1}, + {"name": "DamageOverlay_12", "directions": 1} ] } diff --git a/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_20.png b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_12.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_20.png rename to Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_12.png diff --git a/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_5.png b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_4.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_5.png rename to Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_4.png diff --git a/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_10.png b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_8.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_10.png rename to Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_8.png diff --git a/Resources/Textures/Structures/Windows/cracks_directional.rsi/meta.json b/Resources/Textures/Structures/Windows/cracks_directional.rsi/meta.json index 9555aa5ab35..df077f67d2b 100644 --- a/Resources/Textures/Structures/Windows/cracks_directional.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/cracks_directional.rsi/meta.json @@ -8,15 +8,15 @@ "copyright": "Adapted from https://github.com/space-wizards/space-station-14/ at commit f57e8ec6b9b4b72ef56c8146be0bc159ed2691ee, originally added by Zumorica, and modified for directional use by Darkie", "states": [ { - "name": "DamageOverlay_5", + "name": "DamageOverlay_4", "directions": 4 }, { - "name": "DamageOverlay_10", + "name": "DamageOverlay_8", "directions": 4 }, { - "name": "DamageOverlay_20", + "name": "DamageOverlay_12", "directions": 4 } ] From 6c7336b0a8330369f8a96bff752dda570e3ffb59 Mon Sep 17 00:00:00 2001 From: cohanna Date: Wed, 6 Nov 2024 22:01:10 -0700 Subject: [PATCH 019/171] oops reverted too much --- Resources/Prototypes/Entities/Structures/Windows/clockwork.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml b/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml index 992dfcda1cb..6abeae5760b 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml @@ -86,6 +86,7 @@ - trigger: !type:DamageTrigger damage: 150 + behaviors: - !type:PlaySoundBehavior sound: collection: WindowShatter @@ -142,4 +143,4 @@ sprite: Structures/Windows/cracks_diagonal.rsi - type: Construction graph: WindowDiagonal - node: clockworkWindowDiagonal + node: clockworkWindowDiagonal \ No newline at end of file From fea5769cc5064e6ad5d51afbcdcdbe0d6575a221 Mon Sep 17 00:00:00 2001 From: Boaz1111 <149967078+Boaz1111@users.noreply.github.com> Date: Fri, 8 Nov 2024 15:50:14 +0100 Subject: [PATCH 020/171] dark green jumpsuit recolor, casual green jumpsuits added (#31710) * green * fix material arbitrage * lighter --- .../Catalog/Cargo/cargo_vending.yml | 2 +- .../Inventories/clothesmate.yml | 2 ++ .../Clothing/Uniforms/color_jumpskirts.yml | 8 ++--- .../Clothing/Uniforms/color_jumpsuits.yml | 8 ++--- .../Entities/Clothing/Uniforms/jumpskirts.yml | 30 +++++++++++++++++++ .../Entities/Clothing/Uniforms/jumpsuits.yml | 30 +++++++++++++++++++ 6 files changed, 71 insertions(+), 9 deletions(-) diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml index 5dae53f8ede..86da8fb940e 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml @@ -33,7 +33,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockClothesFilled - cost: 2400 + cost: 2440 category: cargoproduct-category-name-service group: market diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml index 54a6ae2a194..a069833759d 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml @@ -53,6 +53,8 @@ ClothingUniformJumpskirtCasualPurple: 2 ClothingUniformJumpsuitCasualRed: 2 ClothingUniformJumpskirtCasualRed: 2 + ClothingUniformJumpsuitCasualGreen: 2 + ClothingUniformJumpskirtCasualGreen: 2 # DO NOT ADD MORE, USE UNIFORM DYING ClothingShoesColorBlack: 8 ClothingShoesColorBrown: 4 diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml index a2bf6b687a9..3f48b0260fc 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpskirts.yml @@ -222,24 +222,24 @@ sprite: Clothing/Uniforms/Jumpskirt/color.rsi layers: - state: icon - color: "#79CC26" + color: "#007923" - state: trinkets-icon - type: Item inhandVisuals: left: - state: inhand-left - color: "#79CC26" + color: "#007923" - state: trinkets-inhand-left right: - state: inhand-right - color: "#79CC26" + color: "#007923" - state: trinkets-inhand-right - type: Clothing sprite: Clothing/Uniforms/Jumpskirt/color.rsi clothingVisuals: jumpsuit: - state: equipped-INNERCLOTHING - color: "#79CC26" + color: "#007923" - state: trinkets-equipped-INNERCLOTHING # Orange Jumpskirt diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpsuits.yml index f56afabeac1..7a44409079b 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/color_jumpsuits.yml @@ -222,24 +222,24 @@ sprite: Clothing/Uniforms/Jumpsuit/color.rsi layers: - state: icon - color: "#79CC26" + color: "#007923" - state: trinkets-icon - type: Item inhandVisuals: left: - state: inhand-left - color: "#79CC26" + color: "#007923" - state: trinkets-inhand-left right: - state: inhand-right - color: "#79CC26" + color: "#007923" - state: trinkets-inhand-right - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/color.rsi clothingVisuals: jumpsuit: - state: equipped-INNERCLOTHING - color: "#79CC26" + color: "#007923" - state: trinkets-equipped-INNERCLOTHING # Orange Jumpsuit diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml index 9a91f927157..c4850954cd7 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml @@ -822,6 +822,36 @@ - state: equipped-INNERCLOTHING-shirt color: "#b30000" +- type: entity + parent: ClothingUniformSkirtBase + id: ClothingUniformJumpskirtCasualGreen + name: casual green jumpskirt + description: A loose worn green shirt with a grey skirt, perfect for someone looking to relax. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/casual.rsi + layers: + - state: icon-jumpskirt + - state: icon-shirt + color: "#00661D" + - type: Item + inhandVisuals: + left: + - state: inhand-left-jumpskirt + - state: inhand-left-shirt + color: "#00661D" + right: + - state: inhand-right-jumpskirt + - state: inhand-right-shirt + color: "#00661D" + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/casual.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING-jumpskirt + - state: equipped-INNERCLOTHING-shirt + color: "#00661D" + - type: entity parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtOldDress diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index 42a0b7069d1..ef5c1164cfd 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -1347,6 +1347,36 @@ - state: equipped-INNERCLOTHING-shirt color: "#b30000" +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitCasualGreen + name: casual green jumpsuit + description: A loose worn green shirt with a grey pants, perfect for someone looking to relax. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/casual.rsi + layers: + - state: icon-jumpsuit + - state: icon-shirt + color: "#00661D" + - type: Item + inhandVisuals: + left: + - state: inhand-left-jumpsuit + - state: inhand-left-shirt + color: "#00661D" + right: + - state: inhand-right-jumpsuit + - state: inhand-right-shirt + color: "#00661D" + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/casual.rsi + clothingVisuals: + jumpsuit: + - state: equipped-INNERCLOTHING-jumpsuit + - state: equipped-INNERCLOTHING-shirt + color: "#00661D" + - type: entity parent: ClothingUniformBase id: ClothingUniformJumpsuitFamilyGuy From 6ed2ab9e85bd0321dc22ea92725d32f9b1b951d5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 8 Nov 2024 14:51:26 +0000 Subject: [PATCH 021/171] 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 34a2d143584..485cad8e96d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: LeoSantich - changes: - - message: Updated 'narsie' and 'ratvar' to 'Nar'Sie' and 'Ratvar' in randomly generated - storybook content. - type: Tweak - id: 7099 - time: '2024-08-12T23:20:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30954 - author: pigeonpeas changes: - message: Added non command mantle into the winterdrobe @@ -3949,3 +3941,10 @@ id: 7598 time: '2024-11-07T22:02:25.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33065 +- author: Boaz1111 + changes: + - message: Added casual green jumpsuits and skirts to the clothesmate. + type: Add + id: 7599 + time: '2024-11-08T14:50:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31710 From 41b84fc29dbca40704627cbe6eb44a1d8791d30b Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Fri, 8 Nov 2024 22:59:27 +0100 Subject: [PATCH 022/171] Label workflow - stable (#33220) --- .github/workflows/labeler-stable.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/labeler-stable.yml diff --git a/.github/workflows/labeler-stable.yml b/.github/workflows/labeler-stable.yml new file mode 100644 index 00000000000..491d6a76fad --- /dev/null +++ b/.github/workflows/labeler-stable.yml @@ -0,0 +1,16 @@ +name: "Labels: Branch stable" + +on: + pull_request_target: + types: + - opened + branches: + - 'stable' + +jobs: + add_label: + runs-on: ubuntu-latest + steps: + - uses: actions-ecosystem/action-add-labels@v1 + with: + labels: "Branch: stable" From b9685850faaa1a14f8340cb44e7c48a7d8d13fb6 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Fri, 8 Nov 2024 22:59:38 +0100 Subject: [PATCH 023/171] Label workflow - staging (#33221) --- .github/workflows/labeler-staging.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/labeler-staging.yml diff --git a/.github/workflows/labeler-staging.yml b/.github/workflows/labeler-staging.yml new file mode 100644 index 00000000000..e31a5a482f2 --- /dev/null +++ b/.github/workflows/labeler-staging.yml @@ -0,0 +1,16 @@ +name: "Labels: Branch staging" + +on: + pull_request_target: + types: + - opened + branches: + - 'staging' + +jobs: + add_label: + runs-on: ubuntu-latest + steps: + - uses: actions-ecosystem/action-add-labels@v1 + with: + labels: "Branch: staging" From 1e368ae30076606501332f34ab786c14e25c477a Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Sat, 9 Nov 2024 01:28:24 +0100 Subject: [PATCH 024/171] Add a Walking alert (#32954) * Initial commit * Review feedback changes * ProtoId * TempCommit * First attempt to have client alerts * Review changes --- Content.Client/Alerts/ClientAlertsSystem.cs | 15 ++++++++++----- .../Physics/Controllers/MoverController.cs | 16 ++++++++++++++++ Content.Server/Alert/ServerAlertsSystem.cs | 12 ++++++++++++ Content.Shared/Alert/AlertsComponent.cs | 16 ++++++++++++++-- .../Systems/SharedMoverController.Input.cs | 6 +++++- Resources/Locale/en-US/alerts/alerts.ftl | 3 +++ Resources/Prototypes/Alerts/alerts.yml | 9 +++++++++ .../Interface/Alerts/walking.rsi/meta.json | 14 ++++++++++++++ .../Interface/Alerts/walking.rsi/walking.png | Bin 0 -> 15838 bytes 9 files changed, 83 insertions(+), 8 deletions(-) create mode 100644 Resources/Textures/Interface/Alerts/walking.rsi/meta.json create mode 100644 Resources/Textures/Interface/Alerts/walking.rsi/walking.png diff --git a/Content.Client/Alerts/ClientAlertsSystem.cs b/Content.Client/Alerts/ClientAlertsSystem.cs index 525ef1f018f..c5ec254c0cc 100644 --- a/Content.Client/Alerts/ClientAlertsSystem.cs +++ b/Content.Client/Alerts/ClientAlertsSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.Alert; using JetBrains.Annotations; using Robust.Client.Player; +using Robust.Shared.GameStates; using Robust.Shared.Player; using Robust.Shared.Prototypes; @@ -24,8 +25,7 @@ public override void Initialize() SubscribeLocalEvent(OnPlayerAttached); SubscribeLocalEvent(OnPlayerDetached); - - SubscribeLocalEvent(ClientAlertsHandleState); + SubscribeLocalEvent(OnHandleState); } protected override void LoadPrototypes() { @@ -47,17 +47,22 @@ public IReadOnlyDictionary? ActiveAlerts } } - protected override void AfterShowAlert(Entity alerts) + private void OnHandleState(Entity alerts, ref ComponentHandleState args) { + if (args.Current is not AlertComponentState cast) + return; + + alerts.Comp.Alerts = cast.Alerts; + UpdateHud(alerts); } - protected override void AfterClearAlert(Entity alerts) + protected override void AfterShowAlert(Entity alerts) { UpdateHud(alerts); } - private void ClientAlertsHandleState(Entity alerts, ref AfterAutoHandleStateEvent args) + protected override void AfterClearAlert(Entity alerts) { UpdateHud(alerts); } diff --git a/Content.Client/Physics/Controllers/MoverController.cs b/Content.Client/Physics/Controllers/MoverController.cs index c97110b208e..d2ac0cdefdc 100644 --- a/Content.Client/Physics/Controllers/MoverController.cs +++ b/Content.Client/Physics/Controllers/MoverController.cs @@ -1,9 +1,12 @@ +using Content.Shared.Alert; +using Content.Shared.CCVar; using Content.Shared.Movement.Components; using Content.Shared.Movement.Pulling.Components; using Content.Shared.Movement.Systems; using Robust.Client.GameObjects; using Robust.Client.Physics; using Robust.Client.Player; +using Robust.Shared.Configuration; using Robust.Shared.Physics.Components; using Robust.Shared.Player; using Robust.Shared.Timing; @@ -14,6 +17,8 @@ public sealed class MoverController : SharedMoverController { [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly AlertsSystem _alerts = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; public override void Initialize() { @@ -135,4 +140,15 @@ protected override bool CanSound() { return _timing is { IsFirstTimePredicted: true, InSimulation: true }; } + + public override void SetSprinting(Entity entity, ushort subTick, bool walking) + { + // Logger.Info($"[{_gameTiming.CurTick}/{subTick}] Sprint: {enabled}"); + base.SetSprinting(entity, subTick, walking); + + if (walking && _cfg.GetCVar(CCVars.ToggleWalk)) + _alerts.ShowAlert(entity, WalkingAlert, showCooldown: false, autoRemove: false); + else + _alerts.ClearAlert(entity, WalkingAlert); + } } diff --git a/Content.Server/Alert/ServerAlertsSystem.cs b/Content.Server/Alert/ServerAlertsSystem.cs index b7b80f73210..5af2b062188 100644 --- a/Content.Server/Alert/ServerAlertsSystem.cs +++ b/Content.Server/Alert/ServerAlertsSystem.cs @@ -1,7 +1,19 @@ using Content.Shared.Alert; +using Robust.Shared.GameStates; namespace Content.Server.Alert; internal sealed class ServerAlertsSystem : AlertsSystem { + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGetState); + } + + private void OnGetState(Entity alerts, ref ComponentGetState args) + { + args.State = new AlertComponentState(alerts.Comp.Alerts); + } } diff --git a/Content.Shared/Alert/AlertsComponent.cs b/Content.Shared/Alert/AlertsComponent.cs index 05b11e19efb..16827e9cdff 100644 --- a/Content.Shared/Alert/AlertsComponent.cs +++ b/Content.Shared/Alert/AlertsComponent.cs @@ -1,4 +1,5 @@ using Robust.Shared.GameStates; +using Robust.Shared.Serialization; namespace Content.Shared.Alert; @@ -6,12 +7,23 @@ namespace Content.Shared.Alert; /// Handles the icons on the right side of the screen. /// Should only be used for player-controlled entities. /// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] +// Component is not AutoNetworked due to supporting clientside-only alerts. +// Component state is handled manually to avoid the server overwriting the client list. +[RegisterComponent, NetworkedComponent] public sealed partial class AlertsComponent : Component { [ViewVariables] - [AutoNetworkedField] public Dictionary Alerts = new(); public override bool SendOnlyToOwner => true; } + +[Serializable, NetSerializable] +public sealed class AlertComponentState : ComponentState +{ + public Dictionary Alerts { get; } + public AlertComponentState(Dictionary alerts) + { + Alerts = alerts; + } +} diff --git a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs index 9dda249423e..c11df709f63 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs @@ -1,4 +1,5 @@ using System.Numerics; +using Content.Shared.Alert; using Content.Shared.CCVar; using Content.Shared.Follower.Components; using Content.Shared.Input; @@ -8,6 +9,7 @@ using Robust.Shared.Input; using Robust.Shared.Input.Binding; using Robust.Shared.Player; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -21,6 +23,8 @@ public abstract partial class SharedMoverController { public bool CameraRotationLocked { get; set; } + public static ProtoId WalkingAlert = "Walking"; + private void InitializeInput() { var moveUpCmdHandler = new MoverDirInputCmdHandler(this, Direction.North); @@ -460,7 +464,7 @@ private void ResetSubtick(InputMoverComponent component) component.LastInputSubTick = 0; } - public void SetSprinting(Entity entity, ushort subTick, bool walking) + public virtual void SetSprinting(Entity entity, ushort subTick, bool walking) { // Logger.Info($"[{_gameTiming.CurTick}/{subTick}] Sprint: {enabled}"); diff --git a/Resources/Locale/en-US/alerts/alerts.ftl b/Resources/Locale/en-US/alerts/alerts.ftl index 37af416c3a1..1748798beae 100644 --- a/Resources/Locale/en-US/alerts/alerts.ftl +++ b/Resources/Locale/en-US/alerts/alerts.ftl @@ -27,6 +27,9 @@ alerts-weightless-desc = Gravity has ceased affecting you, and you're floating around aimlessly. Find something sturdy to hold onto, or throw or shoot something in a direction opposite of you. Mag-boots or jetpacks would help you move with more control. +alerts-walking-name = Walking +alerts-walking-desc = You are walking, moving at a slow pace. + alerts-stunned-name = [color=yellow]Stunned[/color] alerts-stunned-desc = You're [color=yellow]stunned[/color]! Something is impairing your ability to move or interact with objects. diff --git a/Resources/Prototypes/Alerts/alerts.yml b/Resources/Prototypes/Alerts/alerts.yml index 80fcc44a559..859f223730b 100644 --- a/Resources/Prototypes/Alerts/alerts.yml +++ b/Resources/Prototypes/Alerts/alerts.yml @@ -13,6 +13,7 @@ - alertType: Ensnared - category: Buckled - alertType: Pulling + - alertType: Walking - category: Piloting - alertType: Corporeal - alertType: Stun @@ -126,6 +127,14 @@ name: alerts-weightless-name description: alerts-weightless-desc +- type: alert + id: Walking + icons: + - sprite: /Textures/Interface/Alerts/walking.rsi + state: walking + name: alerts-walking-name + description: alerts-walking-desc + - type: alert id: Stun icons: diff --git a/Resources/Textures/Interface/Alerts/walking.rsi/meta.json b/Resources/Textures/Interface/Alerts/walking.rsi/meta.json new file mode 100644 index 00000000000..88238a60e32 --- /dev/null +++ b/Resources/Textures/Interface/Alerts/walking.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by SlamBamActionman", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "walking" + } + ] +} diff --git a/Resources/Textures/Interface/Alerts/walking.rsi/walking.png b/Resources/Textures/Interface/Alerts/walking.rsi/walking.png new file mode 100644 index 0000000000000000000000000000000000000000..a0169368a6051afd1675f6f2cd17a06b7dfa3d4e GIT binary patch literal 15838 zcmeI3e~c968OPtlXwN%ABcx}W8rJ0`2+q#0ox9uV?vm^6;hwN~Jr?eWY3l6EySGzz zXV#tB+vQ5r<45sKt08JCA=*&*qZ%8qS|SPrilSmF#r9eXE!NhW6tO@oDTT(`clPJp zdwXwawQ1VCo9vJ0ectc$%zU2reP;HLd9Z)^T{Bxg-vR)b*%yrrpl^@!ZoUqETBD;E z(bx6a=xPgq*4fUx32b}f7687uRgVwZL$PJDYG!R~+MWa) z){T(&{Jw);kFJHhgHnu(WqV*skB;WxiqYk9b##py(7cPoEy1FU0%V}Ac#4^{Vadgi zw-i@Kznx*$>nTmK*Mz*?PD0O6tl!gP=AcLNbucQ|(dp?7_;{(a)8BcgN8osgaT2dZ}EUBbJR>+&O?X1kQg+jqs5PfEDnB@b30LuxiATVeK zW34r8rN|i8ymF9goCvhkoSwCH)9^TPm4unMLtd|wsP?LyS0-CaWLOn;h$355vMlf8 z*hV5vt!c9PT)K2K1u22x2 ztK5@=if!iNrkM_xS6P1*p{J*(w5mJ{26aO-3)US$7MIlPU5^GMiVed8C-@m2Ek+^E zcgegYOMyk4Aak56NO>j}BW7xPa&3bc5-0P5JBDi}9s}(kO|g}$isGK@ileD=(#&NP zJFI7vVaR5U;UHTdbj_@-D!Io@n>ln?Ff0byM#C;uX{E`1hGi>;3i~2qG~m;9O%?<` zA&F`y6X26cMoaqrOhOS=rb7@FG091iUx6ivv6x#vC3M78^UiLmgw{}KuFKC!9cqFR z{er}ZUH&en3kH%5pMXh;gOKY`%Jo5^UGgcR@5$+?(rsxTv~y)eb-Gztbv6Xlg6yQx z`eD_S6`4M@fLBMk9N#6MK1U%14bp}xhbqmQK8R%|?Shhn-NR^2T+LoDN1ZIg!v|TX z`=|B)Kp`w;X}ss{+B9ubsg}NZJ;v~OzojT=SD(C{TKBD zrPTNMAUkEOzGlkvhnzl|&X?wQ3LJW|yz^O+y4|>RHCgI*tlp^^<7cB!1Z zo${r41-dbZ;SNa>r67wBSy$6M#W;$Bp48~NpX?+U|xy~141?_E;1j?OL1X9 z$R@=_=7V`DE({3Sq`1g@FfYZ00U?_d7nu*{rMNI4WRv0|^TE6n7Y2lEQe0#{n3v+h zfRIg!i_8b}Qd}4ivPp4~`Cwj(3j;znDK0V}%u8`$K*%P=MdpKfDJ~2M*`&D0d@wJ? zg#jU(6c?Ef=B2nWAY_x`BJ;t#6c+}BY*JigKA4x{!hn!Xii^w#^HN+G5VA>ek@;X= ziVFimHYqMLAIwW}VL-?x#YN_Wc_}Uo2-zg!YN(@YrOZ@mFPiSj~X3_ z0Wf+y0Am{gxco8tJ_A6W1K|Dp0Fbu=&}KgJ)gwy)Xgbsv>5dmqeJ~g@H}ua5`EP9= zITUT5H7kE+;``Q#f6TbxE(qBq~Y{&s!c?73~{e*d<0>>JISZu;Yk#+JXlG~@MK4>9LAZc`rl`vb3CSa*El z+V5Rz4ldk&wD-)c9dQ8CgRQ=se#?x{|Jk>$(cABNXww59oim%3z1DNvg#+AW<>RBV z!;yu@?>)WcNAV`Bu=z}J!G%?0tFIk>=IibI{?xMW##Or+?N>9l1uulsgWsNeY0)oF zeL4N(fv4|(=h@%=(6&T){?r&%m7CQF5ek706Lbt_iVm&;>yXJSM)!( z;}36M@jSO9xpTv@)Xn#6`2cLcGh1a(~-MYVhS+Mou zs>kOneQ%y;zcu!oajo~r$e!k-^A~+BdibYJbCyDID0$$OI(DdY6 z?IT9}cW?VM`^-ctcy=uD;razfhsIKy`-V<$IXUisxjk;|-}U&ZU4OeWd~r8eHxslQ Y?{3(5<%x0U3GBY!<&j-qx^Kfj0jgnaeE Date: Fri, 8 Nov 2024 23:56:16 -0600 Subject: [PATCH 025/171] The Jumpsuit Re-Detailening (#33096) * jumpsuit detailening * jumpskirt stuff * meta.json * update meta.json * meta.json fix fix * meta.json fix fix fix --- .../color.rsi/equipped-INNERCLOTHING.png | Bin 518 -> 1068 bytes .../Uniforms/Jumpskirt/color.rsi/icon.png | Bin 300 -> 429 bytes .../Jumpskirt/color.rsi/inhand-left.png | Bin 391 -> 435 bytes .../Jumpskirt/color.rsi/inhand-right.png | Bin 408 -> 424 bytes .../Uniforms/Jumpskirt/color.rsi/meta.json | 2 +- .../color.rsi/prisoner-inhand-left.png | Bin 258 -> 221 bytes .../color.rsi/prisoner-inhand-right.png | Bin 259 -> 232 bytes .../trinkets-equipped-INNERCLOTHING.png | Bin 274 -> 292 bytes .../color.rsi/equipped-INNERCLOTHING.png | Bin 540 -> 1314 bytes .../Uniforms/Jumpsuit/color.rsi/icon.png | Bin 293 -> 387 bytes .../Jumpsuit/color.rsi/inhand-left.png | Bin 391 -> 451 bytes .../Jumpsuit/color.rsi/inhand-right.png | Bin 408 -> 437 bytes .../Uniforms/Jumpsuit/color.rsi/meta.json | 2 +- .../prisoner-equipped-INNERCLOTHING.png | Bin 365 -> 413 bytes .../Jumpsuit/color.rsi/prisoner-icon.png | Bin 232 -> 188 bytes .../color.rsi/prisoner-inhand-left.png | Bin 258 -> 221 bytes .../trinkets-equipped-INNERCLOTHING.png | Bin 265 -> 295 bytes .../Jumpsuit/color.rsi/trinkets-icon.png | Bin 235 -> 206 bytes .../color.rsi/trinkets-inhand-left.png | Bin 245 -> 198 bytes .../color.rsi/trinkets-inhand-right.png | Bin 251 -> 212 bytes 20 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/equipped-INNERCLOTHING.png index 3faba7285ff1b3898e47a23c7299d33e20a05c0c..4df4336458d688a519f10685058a3b070ab2c6a3 100644 GIT binary patch delta 1058 zcmV+-1l{|F1gr><8Gi-<0063Kaozv`00DDSM?wIu&K&6g00ZVpL_t(|ob8%1Z=*aM z#-BUA%Gg|^h=C={X@)R{&K)B14Kj4B1YNsiB6C-$)GqLZmZq4(dzbh8TS{!~=kXtGQ`>+*AP@)y0)gP~s;UA2PESu++2wMX z0)X%PxV*gNs*_irUYn-L(jCWP*Sz}w@QCZW4gl~x58LgQnOQ6r&~+WMECWE=L=X(a zV8NGVIoD`i*AYb#yYJ@are1y9w$m)D)he}ZJKb)#scqZoYPHJcXP;CP`jmeODNL_b zpNhY2Bn?7QdVifJK5BfCrz%1CUe<``c_4(a--@C@*L5h0!qNyK@H~&BdF62&C#PQo zAtcu|%CL6~ux&dvO_NpX`#v;HWBJ*}(|l_7Wsv&PctFRUtUjZl<93 z*7+sUqOq<-nHYQ0o?c6J5;?`8qubzrhAtM-3}n$qVsYVC1;Mjsfj8E zsz9}7vsvo8ZrbbhFdmOlH3+3K3?p@2H@6K!043-|u5Ooubp}u+5O{nS`vzGH{Op*>!okG_7eGG)>Fx5I02> zMNBX2;jOo_aBYrK16h(JLA%}N7OsONN!T?#B*6=J0DRxa-Q694U4Oi~xL@c;k-07*qoM6N<$f(GCBdjJ3c delta 503 zcmV3N*fjv{wa9X60AS-DhUkUyv!VvT=5P>efR2AM1$530cm~jt5pnRIZs|4gTo^ZaviP69J# z%$V`t@snb#wf0g<09LD2?|VERJ%DqL&1RDn^EV~AQVJmi&VM<&uJhq@&LM0~Ihd}5gvsj>%0!bwR*b+pKp}Aed&(1#(l2T$4FQI4x!06nk=qD4{7KN8m(zfl}F+814ESF2R zMG;+v=x!};LD%awz{3;(91e$I8yz?4=^PSyp-YZ8V;9DZ3q&>o*Z1rrWdHyG07*qo IM6N<$f?D0eqyPW_ delta 284 zcmZ3>yoPClWIZzj1B1(wu46!ou{g-xiDBJ2nU_EgOS+@4BLl<6e(pbstU$hKfKQ0) zlqpj#UcC7K|Nk2|ZiI%0zIgEhC=>HgiU~-umjw9*1Eqj~LCTxi4JgD};1OBOz`%D9 zgc)~C%zg_L?DceU46*Qk+waJCRDq-3W#X#u_C@S1`b$iFr~Cff!7zti=`8!-#--s5 zro6hQtxdC{#A2+~)7o5l4Yx&x#B+R97G(I!x0H*ad`sH`*_(M^UYx(JB);Ig9K%W< zd!a+@NAKTV#Ij>em}&ygG0Adi}P8aP|Rg;0-=rVd}}Vrjq^N}vFcIn#u5h`b^!KZ_X%MDM$-*1LKdVVlb%0ssI2 z000000Du_A7~eFFpIVR28?QA@<74v+kLwcitMd6VP=X5&i6(*7~_q zVg0Z3=6vl9$n*Szh&&OI*81i5vMh)HJ3Vg=%Lxd>jCUt|-#RRJ-jdxXAb30;)V3`p zNkUncQB_sc_kTUrb$yAvLn)=6FR7_drPQVu7I)r~-B&;<<{7;&u^zP8yd24oG zfubnFeViR=%bn%U0{{R3000000D%8ts*S#Ed(3UFjgD!L*}B2AjoawUw#VGK+vD4w z0Iv3!ts6WGcYA!x6TsOX-|hqiw`z~Makj^|y8_(p@g4210NP^!;PedyoxtVqGpvyS O0000AKt5&T#cI?=!S+jsjrc_^<1f;l1g8YL2!vMpkGdkyi zqMQXDk;M!Qe1}1p@p%4<6rkW8&w3ZfkO=p;Q!ny0EAY5>uaN%#|8Vxglxz1?%c^I3 z`YWB&wr~Okiws(4PNrU-+R_;Wth&tcxkht)|MVYiG~HIyp~EiK8>At zRzy5-ZH|V`zW9YXOe{td|0l56&2DhH_IPVwe!#K?8BcdE*T46Df73~M*5xNPq<`cT zEIzpGJku!=l?R(YrLx)uA6U0-uH2T}J2j*iB)57vaGXlTFs`|H7<^X{$x>J)ojohz*4*wwnLrWNQ=44wf1mMO^02{? z6Ed+^_C&otUaz?6`>L&ej~KqZdvZ62aqZU0LG%7CoFcSRD%MXn%j6s?N~TVE~8&U=ZpQn*i<`(cFbptFP;tzeFjfgKbLh*2~7Y<8o3$( delta 393 zcmZ3%JcD_HWIZzj1H;_yjcNS%G|&0G|-o z-Me?+xpU|K{rms^{kwVd=KT5dXU&?mYSpS^$Bupa^y%EWb3la)=GzGZDV~xbzu^A} zz#w!VEX`Tq5n0T@z;_sg8IRZJuSfx^e(LGs7!u+BcIs`uW(5J4=}KF#{{Mgfoziqy z;kmu~W;Z8`OyN@(kZ-#-d&dFRChiyo8@CC|8*XYmF|@xvGwybWgx9LHZiP)#omyA| z{cdflTqIFx`k^BCMtZk{*bjaWgS68cab+~T}>{$}Uqx80$QI#De3y1UPI zng!KatM6^k5&bat2RrAn981qxFP)7y)z3e=t`=k&(9T1fS$;~cdC}Gtt+i`0Yg^a5 zFI$!_5{)`Adw+zhc1T24IivQj#g}XTvF6@5rZD3jr;g}dNtO!N@-L0LqIV7M{Wx)- d``TCb|8dKCXYUd31^Sr5)78&qofA_+6982YvkCwJ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/meta.json index 7e6832bd12c..82edfe13a02 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 and modified by Flareguy for Space Station 14", + "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/993de554ecfc30cc45f8340819c5a60ef1eee7e1 and modified by Flareguy & P3MOIRA, with the lower half of the jumpskirt taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 and modified by Flareguy for SS14.", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/prisoner-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/prisoner-inhand-left.png index f6ff6866ffc359196192cec6c75f0631f2a399a3..6b40ed5af0ec63d3f482b5c3e6a081aa1a2c7e7a 100644 GIT binary patch delta 180 zcmZo-y307huztFyi(^Q|oVPa*ayC1Nuw39=BA|P8_0ot1Z!^@N2{6T_+D|(Aol7F| z|ASN^1`wF{I8@Yx=kP?8#};Yxp09a5EBE#!mEZf~|M`{PTRSb)@}K4VH?g86`ywX! zTrLSQU7++n%+_?lANdJ2>%Z*|yL7E#l?~XOhU2fx5?|_8*{-{`Np{-W!{x6*%u5Y< e@u#YI7|z-~NsBsI%(`PSNU^7@pUXO@geCwL#Zun@ delta 217 zcmcc1*u*r!u%0E|(btiIVPik{pF~y$1_sUokH}&M2EM}}%y>M1MG8=Gx~Gd{NJZS+ zn;UtX4Fp&(oK_2{5_L;-2wQk$wu+J0k}aI#Dv!R;($<-)`?K60sDXiDf&BL8HaQY) z)w3U495eCVsNRxE*0`eH>RB!N(B= OQtIjI=d#Wzp$PyZ8d#eE diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/prisoner-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/prisoner-inhand-right.png index 45393e81a66103898d2e33673dc0c227824b4f29..e43a9b42dbcce7413e0191765e4d201a3f8cf80e 100644 GIT binary patch delta 191 zcmZo>dciosuzr!Ji(^Q|oVPa*axxi;xL(wb@K`qGrk|#!!CRHNM_M`bc#N{#gx}w+ zW9mPzKAU}#iYEvy`CpjD>%<|N5Gl4TS9z(+Imw0~ug`b4mzo!*R?=B2D>@s&$ugou^%X1y*>9(emq0Z#Bhj77L!z77VMUqd{OH0I=9!{(X-xu qP+n|$EcR>>qyAsU1ZHi|ODuYMrcnpqS4)O40D-5gpUXO@geCwN{!(QC delta 218 zcmaFC*vvG+u%0E|(btiIVPik{pF~y$1_sUokH}&M2EM}}%y>M1MG8=GhNp{TNJZS+ zn;UtX4Fp&(oK_2{5_L;-2wP|}TgAw06^Eva;>phMv$S=h)nAv}19dPkJh0LG{&UIe zUD>m1?;khdG4u_-5_NrZYNXlwzo!=d?t8q$Zr;&(wZZXT4w|aZD*Yxm^uMou#bWX{ zTz>z}KgCS5cz!d1&8fM&?%0zHY-Y1_Y9CJ9E<9nOq1~00!WS|U7*FUuV%s|_u2lKd QbX|~APgg&ebxsLQ0Bzt{bN~PV diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/trinkets-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/color.rsi/trinkets-equipped-INNERCLOTHING.png index cee5a50d2caea42b0fc53599a92a1cc8be1a8d72..bb9dd4f505ee4ad6cf2969435ae4333f48849290 100644 GIT binary patch delta 276 zcmbQlw1jDbWIY=L1H-D!!h1l9u{g-xiDBJ2nU_G$Jx>?Mkcv5PZ|(1GHV`@f@xE(j z=6u(qOg;~~WFt=4Zr;F_#2~i7sq8evzE?{oE4g|$xZJ6=?@c{fKR-6&(`29t4ee`R z&w79L{FB#L`}Uj1iX1)tc+Rbv{&LkXcD?&z{$SJ6&lY{v^=ls|o3S3S+K_~WIZzj1H;_yjcNS%G}%0G|-o z8#iufYinm_W@cq&1qB67nKC6fIN09a9w_f;tS1koI7@>3g8xGSL$H5^5J<4VBeIx* zf$tCqGm2_>H2?*(JzX3_BC6cqUbx8BV8GG(aOUQp|NLe2@`c#)L|x|W=ayXEzv0DM z28Im`dl-D0KQe!ssmCjKdtlh%?=+^wxwSSs{4&DGoHM|SrCM!lQ nnfw07&0jb9rZF)%gnngcR;-t?v9eYM+RNbS>gTe~DWM4fWsO~T diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/equipped-INNERCLOTHING.png index 5c333dfc11811bc991f2cd4e82637351c4ead25c..2d86990cb8bf89056064b448cdff4458e5caa870 100644 GIT binary patch delta 1306 zcmV+#1?Bpj1fmL%8Gi-<0063Kaozv`00DDSM?wIu&K&6g00i7gL_t(|ob8%HZ`w!{ z$Nyce=xQs4234%;L$Oj$2^Y493it%bd;<Ep}8(Ab2rP^|tJ&>8&1QL&JSnbxo(|GK8@6Gefn}4z201*)p5fKp)5fR@f zPedNpb)9CjSpYzxP~dGloel*6(=@TWyDKD9R6i?gn#Swv^*S$$>i{A?)dmPT>ZMPQzyM%kLtQk$Kx^8 zb)EKlJ=cBbn}1q{e#SW=bL&IZ&y>%0k~v{seV9fp>ij&L{5atUuZ9?g0YV7BmSq`= zqCl2qUPlOlVHg74^G>~9cj=!8A;dK`yzpQQ&~=?^n#P5iripw$&+j`s&+ap0?}AjI zc);S0Q$H|`0Z!fhejkIuz@`5#UOlS+(Gk$^_W^v1u7B*>?{lJbIvtnX;c&=1zrMZ> zVEQ74!=dXr*6uML908VP!Llq@-C!`d_vTssL+$+FSB6Nt2OThPIgum@gb>$MAcR1Y zBt8VgT80+MA%tLSYYPA{8jWyydFiR$JUs6MoJf-78sc~B|H>E+hd4Vs3q_WY18mzy zqtOUOv40T+9DwQGgazc^-@o@I&sPj!8xj`u0Jt2nOn!O!63u24-EJ3?$pp1p z4e4~+H4;Sdyc3*-efc?^unJ^ZMtWld0C0GC_n#)nudc4pY&KnWVQqW8Fqus7+q-x7>P}BjSE4^6A|fIpA|fIpA|m4Z zMpf0&Gr&R6b)BlJ>dPMC{{gD1(qgfQR4Rp5t3@l73S~z4F~AQ@XQfi1tyYVsQYjRR zMSu8pf@f4!rL9)Wm4;?c2t6;q0H%v|e%2OICkTyzWHO0TsRUs92c}-HBa_J>m&-xZ zw3YlAxw*N4rfJCKa>!&dsMqWKZ&0aJLNb{Yk|*SV7cXA$vSAp=X0woG8Hq#!<#HLD zo0~$){UE=3g>t!!L?QuMmXXb7U1t)UHh+3SI0nqi3Fh;8H!lv3Jmw^#Qu1i0tAd2xYQEapc{ zAY!o?%!`Y;Hi_Wtgb3r04n zFhle&`lPKt0e_?fu=?KubXhDpK$pd{*ntjw4KFXTR-aUwjRI(pdP>suzv`trmx*a_}2NwTeOjugLpl_Vxu)T zB(VLNa>>=Xq{EH@T+gO;e*$3Rj+Zo!pBXU#cDAu-h=2HZ5#ItjzX9+=bam}Jz5^$j zl*N<>V2-%|S-c1%U`7m}o9vAMoEagY%i=|5ha+frZ(-b7Trvqsdn35^9&oh0{YmgU zpHELGky;aGfPch`)`SHR&jH0(% zQ%EEd|DBa3*f|&SJO`jCiui5YwgJFoIjT0s)~r{69PZ9nL>^wn@pv@lOe7MC#2?WJs_uX+ Riy;62002ovPDHLkV1n?ywvqq< delta 277 zcmZo>Udl8}{CC_9?}s@uur)p&YgYr>Yh7;uTF6Z^&~zn61oN z<`{D&TUn&Z{y@xX=(@y0foC-g(bFU)n&dsJOAbr#*WpAD%l@by zKtx1DL_|bHL_{HsF}`hEe{MZAZ@JdCtq;w6DPxRx&UtI?$$#dYa}RHN%3H2mYkf%G zHJ?&JS(YKsbIcFHIp?!13(lJ#g0pB2G zH&>SB?@dkX|DAWq*RugtReb>P08p0Y$?v<}ZvMZw=iMSQ0n=udw=+FIx>@PGYs5Z* zSc#luQ561oJbz-d*&s<0Y`0tN_j?S(fN8yHn!Dd6op+7c1Zb^M*EN(AKt5&T#cI?=!S+jsjrc_^<1f;l1g8YL2!vMpkGdkyi zqMQXDk;M!Qe1}1p@p%4<6rkW8&w3ZfkO=p;Q!ny0EAY5>uaN%#|8Vxglxz1?%c^I3 z`YWB&wr~Okiws(4PNrU-+R_;Wth&tcxkht)|MVYiG~HIyp~EiK8>At zRzy5-ZH|V`zW9YXOe{td|0l56&2DhH_IPVwe!#K?8BcdE*T46Df73~M*5xNPq<`cT zEIzpGJku!=l?R(YrLx)uA6U0-uH2T}J2j*iB)57va$0mHa*dK}bYr?KLvAHku<0L=mF^JR&a*(o@@bEKN6SMc)%VvGx!*9>BJ|kV;Mk5;s}z>rk@+FI zWXg(Fubv%SyH(F>z2ULmpTb+N-CMKVh&B52I==%yYuG-NZi;&Se)jj*D=SUjA1`@W zV6lg>fMLPbd9@2)@A|kee!J=WM=U?iUcUT!esE=FzW2SW`w!G_tS~B#-F^9G%O;&b z5!P?NZGY`MZopIj;dSn9HDlK3PwV^|g1CGyJ8(2U{>Y)oGHY35(5uq?O$QfOhUafw zmmMy`+9Gh{ZP|_(y&ZAuCE65M-u_;6+S>&RrZnG?dc6G9T0=h3(4HsPBNS%G|&0G|-o z-Me?+xpU|K{rms^{kwVd=KT5dXU&?mYSpS^$Bupa^y%EWb3la)=GzGZDV~xbzu^A} zz#w!VEX`Tq5n0T@z;_sg8IRZJuSfx^e(LGs7!u+BcIs`uW(5J4=}KF#{{Mgfoziqy z;kmu~W;Z8`OyN@(kZ-#-d&dFRChiyo8@CC|8*XYmF|@xvGwybWgx9LHZiP)#omyA| z{cdflTqIFx`k^BCMtZk{*bjaWgS68cab+~T}>{$}Uqx80$QI#De3y1UPI zng!KatM6^k5&bat2RrAn981qxFP)7y)z3e=t`=k&(9T1fS$;~cdC}Gtt+i`0Yg^a5 zFI$!_5{)`Adw+zhc1T24IivQj#g}XTvF6@5rZD3jr;g}dNtO!N@-L0LqIV7M{Wx)- d``TCb|8dKCXYUd31^Sr5)78&qofA_+698!hvljpW diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/meta.json index 7e6832bd12c..797ea180d8e 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 and modified by Flareguy for Space Station 14", + "copyright": "Taken from vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/993de554ecfc30cc45f8340819c5a60ef1eee7e1 and modified for SS14 by Flareguy & P3MOIRA", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/prisoner-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/prisoner-equipped-INNERCLOTHING.png index 320db64b5794a279427cd43b16b4839490b43800..ef35d8c80c579f45bbf65b60c2d209d5fd24af5b 100644 GIT binary patch delta 398 zcmV;90dfBA0-Xbp8Gi-<0063Kaozv`00DDSM?wIu&K&6g00CD?L_t(|obB4Zje{^0 z2k?h97j2QwryLxpN}?w2yjPPmVJB%d~NwMV}I=FhRd>Cv&n-3Uc z(s7*M{b3kL-9Iw^LXsrc&VVS2WK~rZ1OXLAVX31{w9E=2gvB|RbzM^!hLq>I_J~aV z%;Ue40qS|W@&9!B3{btB0edfME&hDORj1DZ0001RAB-^>MUkAgL_e>~^Y$yp2LJ#7 z0001hXMNwF_J3Ra%vf-ByXt7K{(?HXHfJK{rEPw4j4`>kUcgiaOltxT&j!xNS%G}T0G|-o z?(S{{1%=??U?U@=tgI|wUtbp&m+0u|f`WpUmKLC@mrpK~0x9m2Aiv=MaKPZ@&-e)_ z%vskvb7Fd0ANMfN*Wb()@%ZRL1-?BS zYxX~ycwa_A>8?yed$Z9DS(EGnDbXL+jX%_H?pT&vsyOvil#3_>(5wf)Sqj2Tu5H_r zv}rx_Hx7T9AHSCED&@_cl(>@lkU{gyUCq`K%V#DYv*|TzS$JW4$NL3Ls*SI-7%GiK lC-5!syk_^OM$kEeA-;QdO7yZX`almdc)I$ztaD0e0stA8jer0E diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/prisoner-icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/prisoner-icon.png index faebe0e0550c4a7a41276f787c0f1496dbd6276e..819e7ac9d9c978d7fd87bba47ffbd86bb505a79b 100644 GIT binary patch delta 171 zcmV;c0960z0lWc_8Gi-<0047(dh`GQ00DDSM?wIu&K&6g004GLL_t(oh3(S83BVu> z1<2WLL1_OwNl2o6Bm#iH+oFT5HM`C^=kT6AI>^jq zX2i_V74uZp-n+i6);gWQ;b~4O-7XZ7N3HiB{*Z2^l(h+rY9!tSTn`v5x7o;-CjbBd Z04F$kDR^N;oe%&3002ovPDHLkV1m{Eak-;h&tK%-|;K5WujKOG4s8>4J}vk`fDbBpj|c==twbp1Ht8MnOA) zjY&*^@o6*TF3vRpQhXPD6PE7flt>6+WVsN-C@sy<^hCTPt&SCBJAM1MG8=Gx~Gd{NJZS+ zn;UtX4Fp&(oK_2{5_L;-2wQk$wu+J0k}aI#Dv!R;($<-)`?K60sDXiDf&BL8HaQY) z)w3U495eCVsNRxE*0`eH>RB!N(B= OQtIjI=d#Wzp$PyZ8d#eE diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-equipped-INNERCLOTHING.png index e21afe8d4eb1d95295728d41429e90b26765ade0..c97a78f047727a2fd76b4e841b0bbf7a7dc86edc 100644 GIT binary patch delta 279 zcmV+y0qFjT0;d9y8Gi-<0063Kaozv`00DDSM?wIu&K&6g007}hL_t(|obB2%ii9u} z#_?~LZEat$@&cY9m3Qz$={<|r5D(x5tR!hYK(<&G1_qXyQAb?ze=SU&+U-6K^+N6vfNmxwI>vJoeCa-Q{n<=a$LiIDhUH$7wbtz&W>99H-fo zfd7C5oE^Z~zMdKEz0YM?$~h-9Q`0muvz$^=j8V(7Xc&gWeu}*Jxvp!?^Q@|>?%HXZ z4qYDr000000002|cxSBubqN3f>|*m4CfZ<;A-bkPrXMsm#F#`kN zVGw3Kp1&dmD46Ey;usR){`TC(Laqh_j@HD|mGA!_TUaq!Ajegt@Lz1lhT5J#X$%Z5 z3~~(94*qM%_Pfrw((>;4hJ#Mhoc*_|wWhgepZ~=_jhR7#34%VDHkcS$x_auYmyx@= hM}~pn;_Zgtd{=kmM{Uq*yb83E!PC{xWt~$(69DR)T2BA~ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-icon.png index c9e8398b47d94679bfbec574bbdd8c639bb7064b..683e91de958724384d033fbd3ada13b6aed64281 100644 GIT binary patch delta 165 zcmV;W09ya+0nP!CF@K0jL_t(oh3(X_4Fe$z1<;=;D`0AN@Bl2~C0NaiumwE~;j40O zB9r8b_*H;x^CcvJ5W>H^c^g&Lo@)_t&$)XWnHgpVX7-NQH^#8nRbSLv+YaD<0sttb z?B2f@p!a@lfSmKS0X`uDJl-u75lbnZdm=)u6+~on&hvb&1s+v(|BNAo5W>$LuxTA5 Tk@>Vl00000NkvXXu0mjfyxvEy delta 194 zcmV;z06qWC0qX&fF@FSSK}|sb0I`n?{9y$E000SaNLh0L01mxv2);fCe6Ku)6I^ w&iQ=zeyp|Ry{A_1r`7A06mLcV0DzAX9sAlK?eLYNg#Z8m07*qoM6N<$f(-CcVgLXD diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-inhand-left.png index 9bbcac8268ab5a6466b66447666b6542c66ca9bc..b0e2998c0d42d5c7316397736533bb4c7ba9a464 100644 GIT binary patch delta 157 zcmey$c#Ls^VSR(Ai(^Q|oVPa@N;Vsav|hYkcV>d+qQ#r!s~6s6n6Dbt&A&zDoa6)X z>-RVqKp^3W&H2Bl_U`>Ic`^64-rd{QsSWj?elRXu?6h>syyCtoL06)bmtKj^-ncGX z=k%vvrTk!B4b~Es{rMkx`}Q2)E|GBLF}uYZ*?(s54H?89+jZz0pXWL}T^^*+)78&q Iol`;+0Kxl4oB#j- delta 204 zcmX@c_?2;jVLeN_qpu?a!^VE@KZ&di3=EtF9+AZi419+{nDKc2iWHz=m#2$kNJZS+ zn;Uss40u=r?)x58&`?gXVM}6}A}FB{UEs?VH6?~|&-EKuw?FyD4%ETGa3M8v+Tyj& zJ?E@{Z?n9z?|rUxa>>1$@p1*~>+26JKbxnyGkhJ?3cgD`)$kdTMy0RUvJZ0{Y|1FPS8F!&+OQQB{Nk(syto&T-G@yGywo; Cc~MvZ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/color.rsi/trinkets-inhand-right.png index cfd725831525040c80289ad5c787cadc64f573c4..ec1962dde48680be042df398a89787a6dcfa40dc 100644 GIT binary patch delta 171 zcmey(c!hC-VSS&ci(^Q|oVPbO@-`cYxL%yEVO+tNrS<-J+?AXM^He>&1-)k|ohb0j z77yQFE64x>2kx2p-oDDK8&!4R-EL~ox$7|tmVUp$`0mX|_8(W|juqZ%OYE2u^kk0m z(k*LWOP$_y#OD0^dN;X?(fVNR4)#^iJ=uQw&3ko^nX2^5yUW)%yt4Y!%_`PV{gdh2 WJmd46Z*LcZlzO`QxvXBuz}nOWd*kchHVYUd_@E&noK-feRlsdmDe% zw|?c@y%7ChGnN|u+bO+ft)bmwS-r~W_^r#NA{e5C3K`ZdFg}*GB=$K-ou{jx%Q~lo FCIG9?Q%(Q? From 287a9a07de9911ac2f32edc4058b5330c89136df Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Sat, 9 Nov 2024 20:29:29 +0100 Subject: [PATCH 026/171] Intellicards now have a doAfter. (#33198) * init * cleanup * Oops! Forgot something * addressing changes * guh * guh 2.0 * some cleanup * all bless the intellicard * Yippee * small locale thing * changes + small bugfix --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Silicons/StationAi/StationAiSystem.cs | 20 ++++- .../Components/IntellicardComponent.cs | 39 ++++++++++ .../StationAi/SharedStationAiSystem.Held.cs | 20 ++++- .../StationAi/SharedStationAiSystem.cs | 75 ++++++++++++++++++- .../Locale/en-US/intellicard/intellicard.ftl | 3 + .../Locale/en-US/silicons/station-ai.ftl | 2 + .../Entities/Mobs/Player/silicon.yml | 1 + 7 files changed, 153 insertions(+), 7 deletions(-) create mode 100644 Content.Shared/Intellicard/Components/IntellicardComponent.cs create mode 100644 Resources/Locale/en-US/intellicard/intellicard.ftl diff --git a/Content.Server/Silicons/StationAi/StationAiSystem.cs b/Content.Server/Silicons/StationAi/StationAiSystem.cs index 846497387d2..a10833dc63b 100644 --- a/Content.Server/Silicons/StationAi/StationAiSystem.cs +++ b/Content.Server/Silicons/StationAi/StationAiSystem.cs @@ -1,10 +1,11 @@ using System.Linq; using Content.Server.Chat.Managers; -using Content.Server.Chat.Systems; using Content.Shared.Chat; +using Content.Shared.Mind; +using Content.Shared.Roles; using Content.Shared.Silicons.StationAi; using Content.Shared.StationAi; -using Robust.Shared.Audio.Systems; +using Robust.Shared.Audio; using Robust.Shared.Map.Components; using Robust.Shared.Player; @@ -14,6 +15,8 @@ public sealed class StationAiSystem : SharedStationAiSystem { [Dependency] private readonly IChatManager _chats = default!; [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly SharedMindSystem _mind = default!; + [Dependency] private readonly SharedRoleSystem _roles = default!; private readonly HashSet> _ais = new(); @@ -43,6 +46,19 @@ public override bool SetWhitelistEnabled(Entity ent return true; } + public override void AnnounceIntellicardUsage(EntityUid uid, SoundSpecifier? cue = null) + { + if (!TryComp(uid, out var actor)) + return; + + var msg = Loc.GetString("ai-consciousness-download-warning"); + var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", msg)); + _chats.ChatMessageToOne(ChatChannel.Server, msg, wrappedMessage, default, false, actor.PlayerSession.Channel, colorOverride: Color.Red); + + if (cue != null && _mind.TryGetMind(uid, out var mindId, out _)) + _roles.MindPlaySound(mindId, cue); + } + private void AnnounceSnip(EntityUid entity) { var xform = Transform(entity); diff --git a/Content.Shared/Intellicard/Components/IntellicardComponent.cs b/Content.Shared/Intellicard/Components/IntellicardComponent.cs new file mode 100644 index 00000000000..e27174977fb --- /dev/null +++ b/Content.Shared/Intellicard/Components/IntellicardComponent.cs @@ -0,0 +1,39 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Intellicard; + +/// +/// Allows this entity to download the station AI onto an AiHolderComponent. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class IntellicardComponent : Component +{ + /// + /// The duration it takes to download the AI from an AiHolder. + /// + [DataField, AutoNetworkedField] + public int DownloadTime = 15; + + /// + /// The duration it takes to upload the AI to an AiHolder. + /// + [DataField, AutoNetworkedField] + public int UploadTime = 3; + + /// + /// The sound that plays for the AI + /// when they are being downloaded + /// + [DataField, AutoNetworkedField] + public SoundSpecifier? WarningSound = new SoundPathSpecifier("/Audio/Misc/notice2.ogg"); + + /// + /// The delay before allowing the warning to play again in seconds. + /// + [DataField, AutoNetworkedField] + public TimeSpan WarningDelay = TimeSpan.FromSeconds(8); + + [ViewVariables] + public TimeSpan NextWarningAllowed = TimeSpan.Zero; +} diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs index e067cf3efad..c9279b02151 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs @@ -54,7 +54,7 @@ private void OnCoreJump(Entity ent, ref JumpToCoreEvent } /// - /// Tries to get the entity held in the AI core. + /// Tries to get the entity held in the AI core using StationAiCore. /// private bool TryGetHeld(Entity entity, out EntityUid held) { @@ -71,6 +71,24 @@ private bool TryGetHeld(Entity entity, out EntityUid he return true; } + /// + /// Tries to get the entity held in the AI using StationAiHolder. + /// + private bool TryGetHeldFromHolder(Entity entity, out EntityUid held) + { + held = EntityUid.Invalid; + + if (!Resolve(entity.Owner, ref entity.Comp)) + return false; + + if (!_containers.TryGetContainer(entity.Owner, StationAiHolderComponent.Container, out var container) || + container.ContainedEntities.Count == 0) + return false; + + held = container.ContainedEntities[0]; + return true; + } + private bool TryGetCore(EntityUid ent, out Entity core) { if (!_containers.TryGetContainingContainer(ent, out var container) || diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs index f88df9eea6b..189515635a8 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs @@ -4,7 +4,9 @@ using Content.Shared.Containers.ItemSlots; using Content.Shared.Database; using Content.Shared.Doors.Systems; +using Content.Shared.DoAfter; using Content.Shared.Electrocution; +using Content.Shared.Intellicard; using Content.Shared.Interaction; using Content.Shared.Item.ItemToggle; using Content.Shared.Mind; @@ -15,6 +17,7 @@ using Content.Shared.Power.EntitySystems; using Content.Shared.StationAi; using Content.Shared.Verbs; +using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Containers; using Robust.Shared.Map.Components; @@ -40,6 +43,7 @@ public abstract partial class SharedStationAiSystem : EntitySystem [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedContainerSystem _containers = default!; [Dependency] private readonly SharedDoorSystem _doors = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; [Dependency] private readonly SharedElectrocutionSystem _electrify = default!; [Dependency] private readonly SharedEyeSystem _eye = default!; [Dependency] protected readonly SharedMapSystem Maps = default!; @@ -87,6 +91,7 @@ public override void Initialize() SubscribeLocalEvent(OnHolderMapInit); SubscribeLocalEvent(OnHolderConInsert); SubscribeLocalEvent(OnHolderConRemove); + SubscribeLocalEvent(OnIntellicardDoAfter); SubscribeLocalEvent(OnAiInsert); SubscribeLocalEvent(OnAiRemove); @@ -197,15 +202,22 @@ private void OnAiInRange(Entity ent, ref InRangeOverr args.InRange = _vision.IsAccessible((targetXform.GridUid.Value, broadphase, grid), targetTile); } - private void OnHolderInteract(Entity ent, ref AfterInteractEvent args) + + private void OnIntellicardDoAfter(Entity ent, ref IntellicardDoAfterEvent args) { - if (!TryComp(args.Target, out StationAiHolderComponent? targetHolder)) + if (args.Cancelled) + return; + + if (args.Handled) + return; + + if (!TryComp(args.Args.Target, out StationAiHolderComponent? targetHolder)) return; // Try to insert our thing into them if (_slots.CanEject(ent.Owner, args.User, ent.Comp.Slot)) { - if (!_slots.TryInsert(args.Target.Value, targetHolder.Slot, ent.Comp.Slot.Item!.Value, args.User, excludeUserAudio: true)) + if (!_slots.TryInsert(args.Args.Target.Value, targetHolder.Slot, ent.Comp.Slot.Item!.Value, args.User, excludeUserAudio: true)) { return; } @@ -215,7 +227,7 @@ private void OnHolderInteract(Entity ent, ref AfterInt } // Otherwise try to take from them - if (_slots.CanEject(args.Target.Value, args.User, targetHolder.Slot)) + if (_slots.CanEject(args.Args.Target.Value, args.User, targetHolder.Slot)) { if (!_slots.TryInsert(ent.Owner, ent.Comp.Slot, targetHolder.Slot.Item!.Value, args.User, excludeUserAudio: true)) { @@ -226,6 +238,55 @@ private void OnHolderInteract(Entity ent, ref AfterInt } } + private void OnHolderInteract(Entity ent, ref AfterInteractEvent args) + { + if (args.Handled || !args.CanReach || args.Target == null) + return; + + if (!TryComp(args.Target, out StationAiHolderComponent? targetHolder)) + return; + + //Don't want to download/upload between several intellicards. You can just pick it up at that point. + if (HasComp(args.Target)) + return; + + if (!TryComp(args.Used, out IntellicardComponent? intelliComp)) + return; + + var cardHasAi = _slots.CanEject(ent.Owner, args.User, ent.Comp.Slot); + var coreHasAi = _slots.CanEject(args.Target.Value, args.User, targetHolder.Slot); + + if (cardHasAi && coreHasAi) + { + _popup.PopupClient(Loc.GetString("intellicard-core-occupied"), args.User, args.User, PopupType.Medium); + args.Handled = true; + return; + } + if (!cardHasAi && !coreHasAi) + { + _popup.PopupClient(Loc.GetString("intellicard-core-empty"), args.User, args.User, PopupType.Medium); + args.Handled = true; + return; + } + + if (TryGetHeldFromHolder((args.Target.Value, targetHolder), out var held) && _timing.CurTime > intelliComp.NextWarningAllowed) + { + intelliComp.NextWarningAllowed = _timing.CurTime + intelliComp.WarningDelay; + AnnounceIntellicardUsage(held, intelliComp.WarningSound); + } + + var doAfterArgs = new DoAfterArgs(EntityManager, args.User, cardHasAi ? intelliComp.UploadTime : intelliComp.DownloadTime, new IntellicardDoAfterEvent(), args.Target, ent.Owner) + { + BreakOnDamage = true, + BreakOnMove = true, + NeedHand = true, + BreakOnDropItem = true + }; + + _doAfter.TryStartDoAfter(doAfterArgs); + args.Handled = true; + } + private void OnHolderInit(Entity ent, ref ComponentInit args) { _slots.AddItemSlot(ent.Owner, StationAiHolderComponent.Container, ent.Comp.Slot); @@ -378,6 +439,8 @@ private void UpdateAppearance(Entity entity) _appearance.SetData(entity.Owner, StationAiVisualState.Key, StationAiState.Occupied); } + public virtual void AnnounceIntellicardUsage(EntityUid uid, SoundSpecifier? cue = null) { } + public virtual bool SetVisionEnabled(Entity entity, bool enabled, bool announce = false) { if (entity.Comp.Enabled == enabled) @@ -419,6 +482,10 @@ public sealed partial class JumpToCoreEvent : InstantActionEvent } +[Serializable, NetSerializable] +public sealed partial class IntellicardDoAfterEvent : SimpleDoAfterEvent; + + [Serializable, NetSerializable] public enum StationAiVisualState : byte { diff --git a/Resources/Locale/en-US/intellicard/intellicard.ftl b/Resources/Locale/en-US/intellicard/intellicard.ftl new file mode 100644 index 00000000000..aed155a1202 --- /dev/null +++ b/Resources/Locale/en-US/intellicard/intellicard.ftl @@ -0,0 +1,3 @@ +# General +intellicard-core-occupied = The AI core is already occupied by another digital consciousness. +intellicard-core-empty = The AI core has no digital consciousness to download. \ No newline at end of file diff --git a/Resources/Locale/en-US/silicons/station-ai.ftl b/Resources/Locale/en-US/silicons/station-ai.ftl index 7d9db3f6dc5..76c30eb1018 100644 --- a/Resources/Locale/en-US/silicons/station-ai.ftl +++ b/Resources/Locale/en-US/silicons/station-ai.ftl @@ -20,3 +20,5 @@ electrify-door-off = Disable overcharge toggle-light = Toggle light ai-device-not-responding = Device is not responding + +ai-consciousness-download-warning = Your consciousness is being downloaded. diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 39750b470f5..e787ef59f00 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -301,6 +301,7 @@ unshaded: Empty: { state: empty } Occupied: { state: full } + - type: Intellicard - type: entity id: PlayerStationAiEmpty From 675e42df2446855694359bbcd9298ac6af3e0e48 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 9 Nov 2024 19:30:38 +0000 Subject: [PATCH 027/171] 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 485cad8e96d..a1a17548d48 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: pigeonpeas - changes: - - message: Added non command mantle into the winterdrobe - type: Add - id: 7100 - time: '2024-08-13T09:20:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29774 - author: TheShuEd changes: - message: change the way food is sliced - food is now sliced whole after a small @@ -3948,3 +3941,14 @@ id: 7599 time: '2024-11-08T14:50:17.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31710 +- author: ScarKy0 + changes: + - message: Intellicarding the AI is now a doAfter. + type: Tweak + - message: AI now gets notified when someone tries to intellicard it. + type: Add + - message: You can no longer exchange the AI between intellicards. + type: Fix + id: 7600 + time: '2024-11-09T19:29:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33198 From d1c66d71e7e554cc194f6bc1b4e197b35d3b202a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 10 Nov 2024 01:46:58 +0100 Subject: [PATCH 028/171] Update Credits (#33237) 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 8c2ad5f5b0f..362b82c63f4 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, Afrokada, AftrLite, Agoichi, Ahion, aiden, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, avghdev, Awlod, AzzyIsNotHere, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, benev0, benjamin-burges, BGare, bhenrich, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, d4kii, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gaxeer, gbasood, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, Magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, MilenVolf, MilonPL, Minemoder5000, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onoira, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, RiceMar1244, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceyLady, Spanky, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, theOperand, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, TyAshley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, Unkn0wnGh0st333, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, waylon531, weaversam8, wertanchik, whateverusername0, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, Zonespace27, Zylofan, Zymem, zzylex +0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, Afrokada, AftrLite, Agoichi, Ahion, aiden, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, avghdev, Awlod, AzzyIsNotHere, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, benev0, benjamin-burges, BGare, bhenrich, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, BombasterDS, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, d4kii, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, Gaxeer, gbasood, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, Magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, MilenVolf, MilonPL, Minemoder5000, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, Sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, Spanky, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, theOperand, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, TyAshley, Tyler-IN, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, Unkn0wnGh0st333, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, VigersRay, violet754, Visne, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, waylon531, weaversam8, wertanchik, whateverusername0, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, WTCWR68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, Zonespace27, Zylofan, Zymem, zzylex From d939e991bba188b6a37e11f402537a93363b278e Mon Sep 17 00:00:00 2001 From: Armok <155400926+ARMOKS@users.noreply.github.com> Date: Sat, 9 Nov 2024 20:32:54 -0700 Subject: [PATCH 029/171] Removed bola stam damage (#32989) --- .../Prototypes/Entities/Objects/Weapons/Throwable/bola.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml index a4441b18f7f..f8d5efb8c68 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml @@ -42,9 +42,9 @@ - type: Ensnaring freeTime: 2.0 breakoutTime: 3.5 #all bola should generally be fast to remove - walkSpeed: 0.7 #makeshift bola shouldn't slow too much - sprintSpeed: 0.7 - staminaDamage: 55 # Sudden weight increase sapping stamina + walkSpeed: 0.5 #makeshift bola shouldn't slow too much + sprintSpeed: 0.5 + staminaDamage: 0 # anything but this is gamebreaking canThrowTrigger: true canMoveBreakout: true - type: LandAtCursor From 33b780fd1fb853220ddda96fdd19339c30477016 Mon Sep 17 00:00:00 2001 From: IProduceWidgets <107586145+IProduceWidgets@users.noreply.github.com> Date: Sat, 9 Nov 2024 23:26:51 -0500 Subject: [PATCH 030/171] tweak: weather command tooltip (#33130) clear weather tip --- Content.Server/Weather/WeatherSystem.cs | 4 +++- Resources/Locale/en-US/weather/weather.ftl | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Content.Server/Weather/WeatherSystem.cs b/Content.Server/Weather/WeatherSystem.cs index dbee62a72fc..ec377809133 100644 --- a/Content.Server/Weather/WeatherSystem.cs +++ b/Content.Server/Weather/WeatherSystem.cs @@ -4,6 +4,7 @@ using Robust.Shared.Console; using Robust.Shared.GameStates; using Robust.Shared.Map; +using System.Linq; namespace Content.Server.Weather; @@ -85,6 +86,7 @@ private CompletionResult WeatherCompletion(IConsoleShell shell, string[] args) return CompletionResult.FromHintOptions(CompletionHelper.MapIds(EntityManager), "Map Id"); var a = CompletionHelper.PrototypeIDs(true, ProtoMan); - return CompletionResult.FromHintOptions(a, Loc.GetString("cmd-weather-hint")); + var b = a.Concat(new[] { new CompletionOption("null", Loc.GetString("cmd-weather-null")) }); + return CompletionResult.FromHintOptions(b, Loc.GetString("cmd-weather-hint")); } } diff --git a/Resources/Locale/en-US/weather/weather.ftl b/Resources/Locale/en-US/weather/weather.ftl index 67e6eec35f2..0c67b6f66bf 100644 --- a/Resources/Locale/en-US/weather/weather.ftl +++ b/Resources/Locale/en-US/weather/weather.ftl @@ -1,6 +1,7 @@ cmd-weather-desc = Sets the weather for the current map. cmd-weather-help = weather cmd-weather-hint = Weather prototype +cmd-weather-null = Clears the weather cmd-weather-error-no-arguments = Not enough arguments! cmd-weather-error-unknown-proto = Unknown Weather prototype! From 9396ce302aed7b1cfbe9995c9214ed8ee7cd49fc Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 10 Nov 2024 04:27:57 +0000 Subject: [PATCH 031/171] 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 a1a17548d48..9b8052d835a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: TheShuEd - changes: - - message: change the way food is sliced - food is now sliced whole after a small - doafter than requires multiple clicks on a single entity - type: Tweak - id: 7101 - time: '2024-08-13T10:54:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30824 - author: Ubaser changes: - message: Add two gatfruit mutations, one fake and one real capfruit which spawns @@ -3952,3 +3944,10 @@ id: 7600 time: '2024-11-09T19:29:29.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33198 +- author: IProduceWidgets + changes: + - message: weather now has a completion result for how to unset the weather. + type: Tweak + id: 7601 + time: '2024-11-10T04:26:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33130 From 1c8992ffbe1dc596ef377e52c3ec13d8d5ab4d5c Mon Sep 17 00:00:00 2001 From: Shaddap1 <106589956+Shaddap1@users.noreply.github.com> Date: Sun, 10 Nov 2024 06:28:55 -0500 Subject: [PATCH 032/171] Goliath rebalance (#31492) Update asteroid.yml --- Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml b/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml index 877dd40cc38..270e20e5c52 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/asteroid.yml @@ -50,12 +50,12 @@ Dead: Base: goliath_dead - type: MovementSpeedModifier - baseWalkSpeed : 2.50 - baseSprintSpeed : 2.50 + baseWalkSpeed : 2.00 + baseSprintSpeed : 2.00 - type: MobThresholds thresholds: 0: Alive - 300: Dead + 250: Dead - type: MeleeWeapon soundHit: path: "/Audio/Weapons/smash.ogg" @@ -64,7 +64,7 @@ animation: WeaponArcPunch damage: types: - Slash: 15 + Slash: 10 Piercing: 10 - type: NpcFactionMember factions: From 9b7200607b28e0c8118e70554dc7cb586b6d63a1 Mon Sep 17 00:00:00 2001 From: scrivoy <179060466+scrivoy@users.noreply.github.com> Date: Sun, 10 Nov 2024 12:40:02 +0100 Subject: [PATCH 033/171] Omega Station: Fix Air Alarm in CMO office (#33216) move air alarm and link devices --- Resources/Maps/omega.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 7709234a6a1..31e3fc7392a 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -4648,9 +4648,13 @@ entities: - uid: 6692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-26.5 + rot: 3.141592653589793 rad + pos: -25.5,-29.5 parent: 4812 + - type: DeviceList + devices: + - 6253 + - 5033 - uid: 7234 components: - type: Transform @@ -54547,6 +54551,9 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-27.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 6692 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5222 @@ -55489,6 +55496,9 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-26.5 parent: 4812 + - type: DeviceNetwork + deviceLists: + - 6692 - type: AtmosPipeColor color: '#990000FF' - uid: 6417 From 63f7325bc0e6fe49cab4724e5d9588ce2f5b1f3b Mon Sep 17 00:00:00 2001 From: lastPechkin Date: Sun, 10 Nov 2024 17:40:22 +0300 Subject: [PATCH 034/171] [Maps] Astra Update (#2760) --- Resources/Maps/corvax_astra.yml | 108101 +++++++++++++++-------------- 1 file changed, 56414 insertions(+), 51687 deletions(-) diff --git a/Resources/Maps/corvax_astra.yml b/Resources/Maps/corvax_astra.yml index 97f0784c7fe..19f2e36d736 100644 --- a/Resources/Maps/corvax_astra.yml +++ b/Resources/Maps/corvax_astra.yml @@ -13,6 +13,7 @@ tilemap: 50: FloorAstroGrass 13: FloorAstroIce 49: FloorAstroSnow + 94: FloorBar 14: FloorBasalt 39: FloorBlue 17: FloorBlueCircuit @@ -125,7 +126,7 @@ entities: - uid: 1 components: - type: MetaData - name: map 1984 + name: Astra Draft - type: Transform - type: Map mapPaused: True @@ -156,15 +157,15 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: XQAAAAADTgAAAAACXQAAAAADXQAAAAABTgAAAAACXQAAAAADfgAAAAAAXQAAAAADHwAAAAABHwAAAAADHwAAAAACXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADfgAAAAAAXQAAAAADTQAAAAACXQAAAAAATwAAAAAAfgAAAAAAXQAAAAABTQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAANAAAAAABNAAAAAAANAAAAAACXQAAAAACfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAATQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAAAKAAAAAACHwAAAAABfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAADegAAAAAAegAAAAADegAAAAABHwAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAAAKAAAAAADHwAAAAABHwAAAAACKAAAAAACHwAAAAADHwAAAAADHwAAAAABfgAAAAAAXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFQAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADXwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABFQAAAAAEfgAAAAAATQAAAAAAXQAAAAACXQAAAAADXQAAAAACTQAAAAABHwAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACXwAAAAACHwAAAAADHwAAAAADfgAAAAAAXQAAAAAB + tiles: XQAAAAADTgAAAAACXQAAAAADXQAAAAABTgAAAAACXQAAAAADfgAAAAAAXQAAAAADHwAAAAABHwAAAAADHwAAAAACXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADfgAAAAAAXQAAAAADTQAAAAACXQAAAAAATwAAAAAAfgAAAAAAXQAAAAABTQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAVgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACVgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACVgAAAAAAVgAAAAAAVgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAANAAAAAABNAAAAAAANAAAAAACXQAAAAACfgAAAAAAXQAAAAABJgAAAAAAJgAAAAAAVgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAATQAAAAACJgAAAAAAJgAAAAAAVgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAASwAAAAAASwAAAAAASwAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAAAKAAAAAACHwAAAAABfgAAAAAAXQAAAAACSwAAAAAASwAAAAAASwAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAXQAAAAACSwAAAAAASwAAAAAASwAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAADegAAAAAAegAAAAADegAAAAABHwAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAAAKAAAAAADHwAAAAABHwAAAAACKAAAAAACHwAAAAADHwAAAAADHwAAAAABfgAAAAAAXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADXwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfgAAAAAATQAAAAAAXQAAAAACXQAAAAADXQAAAAACTQAAAAABHwAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAfgAAAAAAHwAAAAADHwAAAAACXwAAAAACHwAAAAADHwAAAAADfgAAAAAAXQAAAAAB version: 6 -1,-1: ind: -1,-1 - tiles: UQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAANAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAADwAAAAABfgAAAAAAOgAAAAABfgAAAAAAMgAAAAABfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAMgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAMgAAAAADMgAAAAAAUQAAAAAAOgAAAAABOgAAAAACOgAAAAACOgAAAAABMgAAAAAAMgAAAAADfgAAAAAAMgAAAAADUQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAMgAAAAACfgAAAAAAMgAAAAABMgAAAAABUQAAAAAAOgAAAAAAOgAAAAADOgAAAAACUQAAAAAAMgAAAAADMgAAAAAAMgAAAAAAUQAAAAAAfgAAAAAAHwAAAAABUQAAAAAAUQAAAAAAMgAAAAAAMgAAAAACUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAOAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAD + tiles: UQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAMgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAADwAAAAABfgAAAAAAOgAAAAABfgAAAAAAMgAAAAABfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAMgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAMgAAAAADMgAAAAAAUQAAAAAAOgAAAAABOgAAAAACOgAAAAACOgAAAAABMgAAAAAAMgAAAAADfgAAAAAAMgAAAAADUQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAMgAAAAACfgAAAAAAMgAAAAABMgAAAAABUQAAAAAAOgAAAAAAOgAAAAADOgAAAAACUQAAAAAAMgAAAAADMgAAAAAAMgAAAAAAUQAAAAAAfgAAAAAAHwAAAAABUQAAAAAAUQAAAAAAMgAAAAAAMgAAAAACUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAOAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAD version: 6 -1,1: ind: -1,1 - tiles: fgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAFQAAAAAFegAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADTQAAAAACXQAAAAADHwAAAAACXQAAAAAAfgAAAAAATQAAAAAATQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAXwAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADfgAAAAAAHwAAAAAATQAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAATQAAAAAATQAAAAAAHwAAAAAAegAAAAABegAAAAABegAAAAABegAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAADXQAAAAAATQAAAAADXQAAAAADXQAAAAACXQAAAAABfgAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAACKAAAAAACHwAAAAADHwAAAAADKAAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABTQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAABKAAAAAAAKAAAAAABKAAAAAABXQAAAAACXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAHwAAAAABKAAAAAADKAAAAAACKAAAAAABKAAAAAABHwAAAAADHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADKAAAAAABKAAAAAACKAAAAAAAHwAAAAABHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABTQAAAAABXQAAAAADHwAAAAADHwAAAAACfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAATQAAAAACXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: fgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAWgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADTQAAAAACXQAAAAADHwAAAAACXQAAAAAAfgAAAAAATQAAAAAATQAAAAAAHwAAAAAAfgAAAAAAWgAAAAAAGwAAAAAAGwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAXwAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADfgAAAAAAHwAAAAAATQAAAAAAHwAAAAAAfgAAAAAAGwAAAAAAWgAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAATQAAAAAATQAAAAAAHwAAAAAAWgAAAAAAGwAAAAAAWgAAAAAAGwAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAWgAAAAAAGwAAAAAAGwAAAAAAXQAAAAAATQAAAAADXQAAAAADXQAAAAACXQAAAAABfgAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAACKAAAAAACHwAAAAADHwAAAAADKAAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABTQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAABKAAAAAAAKAAAAAABKAAAAAABXQAAAAACXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAHwAAAAABKAAAAAADKAAAAAACKAAAAAABKAAAAAABHwAAAAADHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADKAAAAAABKAAAAAACKAAAAAAAHwAAAAABHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABTQAAAAABXQAAAAADHwAAAAADHwAAAAACfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAATQAAAAACXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 0,1: ind: 0,1 @@ -184,11 +185,11 @@ entities: version: 6 2,0: ind: 2,0 - tiles: JAAAAAACegAAAAADJAAAAAABGwAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAATgAAAAAAHwAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAJAAAAAACJAAAAAABJAAAAAADGwAAAAADJQAAAAADJQAAAAABfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAVQAAAAAAZAAAAAAAXQAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAABfgAAAAAAZAAAAAAAXQAAAAAAVQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAACGwAAAAADGwAAAAAAIQAAAAACIQAAAAADIQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAGwAAAAABGwAAAAABGwAAAAACNAAAAAACNAAAAAAANAAAAAACfgAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAVQAAAAAAXQAAAAAAXQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAIQAAAAAAIQAAAAADIQAAAAABfgAAAAAAZAAAAAAAXQAAAAAAVQAAAAAAHwAAAAAATgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAABGwAAAAAAfAAAAAABGwAAAAACfAAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAATgAAAAAAHwAAAAAAVQAAAAAAXQAAAAAAXQAAAAAAGwAAAAAAfAAAAAAAGwAAAAADfAAAAAAAGwAAAAACfAAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAPAAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAAAcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAPAAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAcAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANAAAAAADcAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAHwAAAAAAHwAAAAAANAAAAAACcAAAAAACcAAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAANAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAWgAAAAAAWgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWgAAAAAAegAAAAAA + tiles: JAAAAAACegAAAAADJAAAAAABGwAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAATgAAAAAAHwAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAJAAAAAACJAAAAAABJAAAAAADGwAAAAADJQAAAAADJQAAAAABfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAVQAAAAAAZAAAAAAAXQAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAABfgAAAAAAZAAAAAAAXQAAAAAAVQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAACGwAAAAADGwAAAAAAIQAAAAACIQAAAAADIQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAGwAAAAABGwAAAAABGwAAAAACNAAAAAACNAAAAAAANAAAAAACfgAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAVQAAAAAAXQAAAAAAXQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAIQAAAAAAIQAAAAADIQAAAAABfgAAAAAAZAAAAAAAXQAAAAAAVQAAAAAAHwAAAAAATgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAABGwAAAAAAfAAAAAABGwAAAAACfAAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAATgAAAAAAHwAAAAAAVQAAAAAAXQAAAAAAXQAAAAAAGwAAAAAAfAAAAAAAGwAAAAADfAAAAAAAGwAAAAACfAAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAPAAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAAAcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAPAAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAPAAAAAAAcAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANAAAAAADcAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAFwAAAAAAHwAAAAAAHwAAAAAANAAAAAACcAAAAAACcAAAAAAAcAAAAAADPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAANAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAWgAAAAAAWgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWgAAAAAAegAAAAAA version: 6 2,1: ind: 2,1 - tiles: fgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWgAAAAAAWgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAAcAAAAAACcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAFQAAAAAEegAAAAACegAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADPAAAAAAAcQAAAAADPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAfgAAAAAAfgAAAAAAHwAAAAADIAAAAAACIAAAAAADHwAAAAABfgAAAAAAcQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABFQAAAAAFfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACPAAAAAAAcQAAAAACPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAABFQAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAFQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAfQAAAAAAfQAAAAAAFQAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAKgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfQAAAAAAAAAAAAAA + tiles: fgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWgAAAAAAWgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAAcAAAAAACcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAFQAAAAAEegAAAAACegAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADPAAAAAAAcQAAAAADPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAfgAAAAAAfgAAAAAAHwAAAAADIAAAAAACIAAAAAADHwAAAAABPAAAAAAAcQAAAAABPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABFQAAAAAFfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACPAAAAAAAcQAAAAACPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAABFQAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAFQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAfQAAAAAAfQAAAAAAFQAAAAAEfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAKgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfQAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 @@ -300,7 +301,7 @@ entities: version: 6 5,-5: ind: 5,-5 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAAAEQAAAAAAHwAAAAABXQAAAAADAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAADEQAAAAAAHwAAAAABXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAABEQAAAAAAHwAAAAABXQAAAAABfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAACEQAAAAAAHwAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAACEQAAAAAAHwAAAAACXQAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAAAEQAAAAAAHwAAAAABXQAAAAADAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAADEQAAAAAAHwAAAAABXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAABEQAAAAAAHwAAAAABXQAAAAABfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAACEQAAAAAAHwAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAACEQAAAAAAHwAAAAACXQAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA version: 6 5,-4: ind: 5,-4 @@ -468,7 +469,7 @@ entities: version: 6 -2,0: ind: -2,0 - tiles: fgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABbAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAJgAAAAAAJgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfAAAAAABJgAAAAAAJgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAJgAAAAAAJgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAADegAAAAADegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABJgAAAAAAJgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfAAAAAADfAAAAAACfAAAAAABegAAAAADegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABJgAAAAAAJgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfAAAAAADfAAAAAAAfAAAAAADegAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAJgAAAAAAJgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfAAAAAACfAAAAAACfAAAAAABegAAAAACegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACJgAAAAAAJgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfAAAAAACfAAAAAAAfAAAAAAAegAAAAACegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAABegAAAAACegAAAAABfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAegAAAAAAegAAAAACfgAAAAAAfgAAAAAAeQAAAAADeQAAAAADcAAAAAABcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACJgAAAAAAJgAAAAAAJgAAAAAAegAAAAACegAAAAADfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACJgAAAAAAJgAAAAAAJgAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADJgAAAAAAJgAAAAAAJgAAAAAAegAAAAADegAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABbAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAJgAAAAAAJgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfAAAAAABJgAAAAAAJgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAABfgAAAAAAVgAAAAAAVgAAAAAAegAAAAAAJgAAAAAAJgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAADegAAAAADegAAAAACfgAAAAAAVgAAAAAAVgAAAAAAegAAAAABJgAAAAAAJgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfAAAAAADfAAAAAACfAAAAAABegAAAAADegAAAAADegAAAAAAfgAAAAAAVgAAAAAAVgAAAAAAegAAAAABJgAAAAAAJgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfAAAAAADfAAAAAAAfAAAAAADegAAAAAAegAAAAACegAAAAADfgAAAAAAVgAAAAAAJgAAAAAAegAAAAAAJgAAAAAAJgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfAAAAAACfAAAAAACfAAAAAABegAAAAACegAAAAACegAAAAAAfgAAAAAAVgAAAAAAJgAAAAAAegAAAAACJgAAAAAAJgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfAAAAAACfAAAAAAAfAAAAAAAegAAAAACegAAAAADegAAAAABfgAAAAAASwAAAAAASwAAAAAAfgAAAAAAegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAASwAAAAAAegAAAAADegAAAAABegAAAAABegAAAAABegAAAAACegAAAAABfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAegAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAegAAAAAAegAAAAACfgAAAAAAfgAAAAAAeQAAAAADeQAAAAADcAAAAAABcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACJgAAAAAAJgAAAAAAJgAAAAAAegAAAAACegAAAAADfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACJgAAAAAAJgAAAAAAJgAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADJgAAAAAAJgAAAAAAJgAAAAAAegAAAAADegAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -3,1: ind: -3,1 @@ -488,7 +489,7 @@ entities: version: 6 0,-3: ind: 0,-3 - tiles: fgAAAAAAfgAAAAAALAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABggAAAAACgQAAAAAAggAAAAABHwAAAAADHwAAAAAAfgAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAACKQAAAAACKQAAAAABKQAAAAAAKQAAAAACgQAAAAAAggAAAAABggAAAAAAgQAAAAAAHwAAAAADHwAAAAABfgAAAAAASAAAAAACSAAAAAAASAAAAAABSAAAAAACSAAAAAADSAAAAAABSAAAAAABSAAAAAADSAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAABSAAAAAADSwAAAAADSwAAAAABSwAAAAADSwAAAAADSwAAAAACSwAAAAAASwAAAAAAFQAAAAABFQAAAAAFFQAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAKQAAAAABSAAAAAABSwAAAAABfgAAAAAASwAAAAADSwAAAAABfgAAAAAASwAAAAADSwAAAAABFQAAAAAGFQAAAAAGFQAAAAACfgAAAAAAUwAAAAAAHwAAAAACfgAAAAAASAAAAAAASAAAAAABSwAAAAABSwAAAAACSwAAAAACSwAAAAACfgAAAAAASwAAAAABSwAAAAABFQAAAAABFQAAAAACFQAAAAAGFQAAAAADUwAAAAAAUwAAAAAAfgAAAAAASAAAAAABSAAAAAAASwAAAAADSwAAAAAAfQAAAAAASwAAAAACSwAAAAABfgAAAAAAfQAAAAAAFQAAAAAFFQAAAAADFQAAAAABfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAKQAAAAAASAAAAAAASwAAAAABSwAAAAACSwAAAAABSwAAAAABfQAAAAAASwAAAAAASwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAKQAAAAACSAAAAAADSwAAAAABSwAAAAABSwAAAAACSwAAAAADSwAAAAABSwAAAAADSwAAAAABFQAAAAACfgAAAAAAUwAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAASAAAAAADSAAAAAACSAAAAAACSAAAAAADSAAAAAADSAAAAAAASAAAAAADSAAAAAACSAAAAAADfgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAASwAAAAADSwAAAAADSwAAAAAASwAAAAAASwAAAAABSwAAAAACfgAAAAAAFQAAAAAEfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAQgAAAAAAQQAAAAAAFwAAAAACfgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAA + tiles: fgAAAAAAfgAAAAAALAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAACKQAAAAACKQAAAAABKQAAAAAAKQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAASAAAAAACSAAAAAAASAAAAAABSAAAAAACSAAAAAADSAAAAAABSAAAAAABSAAAAAADSAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAABSAAAAAADSwAAAAADSwAAAAABSwAAAAADSwAAAAADSwAAAAACSwAAAAAASwAAAAAAFQAAAAABFQAAAAAFFQAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAKQAAAAABSAAAAAABSwAAAAABfgAAAAAASwAAAAADSwAAAAABfgAAAAAASwAAAAADSwAAAAABFQAAAAAGFQAAAAAGFQAAAAACfgAAAAAAUwAAAAAAHwAAAAACfgAAAAAASAAAAAAASAAAAAABSwAAAAABSwAAAAACSwAAAAACSwAAAAACfgAAAAAASwAAAAABSwAAAAABFQAAAAABFQAAAAACFQAAAAAGFQAAAAADUwAAAAAAUwAAAAAAfgAAAAAASAAAAAABSAAAAAAASwAAAAADSwAAAAAAfQAAAAAASwAAAAACSwAAAAABfgAAAAAAfQAAAAAAFQAAAAAFFQAAAAADFQAAAAABfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAKQAAAAAASAAAAAAASwAAAAABSwAAAAACSwAAAAABSwAAAAABfQAAAAAASwAAAAAASwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAKQAAAAACSAAAAAADSwAAAAABSwAAAAABSwAAAAACSwAAAAADSwAAAAABSwAAAAADSwAAAAABFQAAAAACfgAAAAAAUwAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAASAAAAAADSAAAAAACSAAAAAACSAAAAAADSAAAAAADSAAAAAAASAAAAAADSAAAAAACSAAAAAADfgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAASwAAAAADSwAAAAADSwAAAAAASwAAAAAASwAAAAABSwAAAAACfgAAAAAAFQAAAAAEfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAQgAAAAAAQQAAAAAAFwAAAAACfgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -504,7 +505,7 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: EQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAFwAAAAACQQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASAAAAAAALAAAAAAALAAAAAAALAAAAAAAfgAAAAAAFwAAAAAANwAAAAAAMgAAAAADMgAAAAACFwAAAAADFwAAAAABIwAAAAACIwAAAAABIwAAAAACfgAAAAAAfgAAAAAASAAAAAABLAAAAAAALAAAAAAALAAAAAAAfgAAAAAAFwAAAAADNwAAAAACNwAAAAACNwAAAAACNwAAAAADNwAAAAADPQAAAAACPQAAAAACIwAAAAAASAAAAAADSAAAAAADSAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAACNwAAAAAAEgAAAAACEgAAAAADMgAAAAABNAAAAAADIwAAAAADIwAAAAACIwAAAAABfgAAAAAASAAAAAACfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAADQAAAAAANwAAAAAAFwAAAAACEgAAAAABEgAAAAACMgAAAAABNAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASAAAAAACfgAAAAAAfgAAAAAAMQAAAAAADQAAAAAADQAAAAAANwAAAAABFwAAAAABEgAAAAAAEgAAAAADMgAAAAADNAAAAAABSAAAAAACSAAAAAABSAAAAAAAfgAAAAAASAAAAAAAfgAAAAAAfgAAAAAAMQAAAAAADQAAAAAAMQAAAAAANwAAAAADNwAAAAACNwAAAAAANwAAAAAANwAAAAABNwAAAAABSAAAAAABSAAAAAABSAAAAAAASAAAAAAASAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAACFwAAAAAAFwAAAAABFwAAAAADFwAAAAADFwAAAAAASAAAAAADSAAAAAACSAAAAAAAfgAAAAAASAAAAAABfgAAAAAAfgAAAAAARgAAAAAERwAAAAAARgAAAAAENwAAAAACFwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMgAAAAAASAAAAAAASAAAAAACSAAAAAADfgAAAAAASAAAAAACSAAAAAABfgAAAAAARwAAAAABRwAAAAAARgAAAAAFNwAAAAACFwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAMgAAAAADSAAAAAABSAAAAAAASAAAAAABfgAAAAAASAAAAAAASAAAAAABfgAAAAAARgAAAAAFRwAAAAAARwAAAAAANwAAAAAANwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASAAAAAAAfgAAAAAASAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAAAMgAAAAADMgAAAAABDwAAAAACDwAAAAABDwAAAAADDwAAAAAADwAAAAABDwAAAAAAfgAAAAAAMgAAAAABOgAAAAAAMgAAAAACDwAAAAAAfgAAAAAAMgAAAAADfgAAAAAAfgAAAAAAMgAAAAAADwAAAAABDwAAAAACDwAAAAABPwAAAAADPwAAAAACOgAAAAAAOgAAAAADMgAAAAAAOgAAAAACOgAAAAABOgAAAAABfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAMgAAAAADDwAAAAABDwAAAAABDwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAABfgAAAAAAMgAAAAABMgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAAGQAAAAABGQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAMgAAAAADUQAAAAAAMgAAAAADMgAAAAACUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAGQAAAAAA + tiles: EQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAFwAAAAACQQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASAAAAAAALAAAAAAALAAAAAAALAAAAAAAfgAAAAAAFwAAAAAANwAAAAAAMgAAAAADMgAAAAACFwAAAAADFwAAAAABIwAAAAACIwAAAAABIwAAAAACfgAAAAAAfgAAAAAASAAAAAABLAAAAAAALAAAAAAALAAAAAAAfgAAAAAAFwAAAAADNwAAAAACNwAAAAACNwAAAAACNwAAAAADNwAAAAADPQAAAAACPQAAAAACIwAAAAAASAAAAAADSAAAAAADSAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAACNwAAAAAAEgAAAAACEgAAAAADMgAAAAABNAAAAAADIwAAAAADIwAAAAACIwAAAAABfgAAAAAASAAAAAACfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAADQAAAAAANwAAAAAAFwAAAAACEgAAAAABEgAAAAACMgAAAAABNAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASAAAAAACfgAAAAAAfgAAAAAAMQAAAAAADQAAAAAADQAAAAAANwAAAAABFwAAAAABEgAAAAAAEgAAAAADMgAAAAADNAAAAAABSAAAAAACSAAAAAABSAAAAAAAfgAAAAAASAAAAAAAfgAAAAAAfgAAAAAAMQAAAAAADQAAAAAAMQAAAAAANwAAAAADNwAAAAACNwAAAAAANwAAAAAANwAAAAABNwAAAAABSAAAAAABSAAAAAABSAAAAAAASAAAAAAASAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAACFwAAAAAAFwAAAAABFwAAAAADFwAAAAADFwAAAAAASAAAAAADSAAAAAACSAAAAAAAfgAAAAAASAAAAAABfgAAAAAAfgAAAAAARgAAAAAERwAAAAAARgAAAAAENwAAAAACFwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAMgAAAAAASAAAAAAASAAAAAACSAAAAAADfgAAAAAASAAAAAACSAAAAAABfgAAAAAARwAAAAABRwAAAAAARgAAAAAFNwAAAAACFwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAMgAAAAADSAAAAAABSAAAAAAASAAAAAABfgAAAAAASAAAAAAASAAAAAABfgAAAAAARgAAAAAFRwAAAAAARwAAAAAANwAAAAAANwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASAAAAAAAfgAAAAAASAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAAAMgAAAAADMgAAAAABDwAAAAACDwAAAAABDwAAAAADDwAAAAAADwAAAAABDwAAAAAAfgAAAAAAMgAAAAABOgAAAAAAMgAAAAACDwAAAAAAfgAAAAAAMgAAAAADfgAAAAAAfgAAAAAAMgAAAAAADwAAAAABDwAAAAACDwAAAAABMgAAAAAAMgAAAAAAOgAAAAAAMgAAAAAAMgAAAAAAOgAAAAACOgAAAAABOgAAAAABfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAMgAAAAADDwAAAAABDwAAAAABDwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAABfgAAAAAAMgAAAAABMgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAfgAAAAAAGQAAAAABGQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAMgAAAAADMgAAAAAAMgAAAAADMgAAAAACUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAGQAAAAAA version: 6 3,-7: ind: 3,-7 @@ -1475,7 +1476,6 @@ entities: color: '#9FED58B2' id: BrickTileSteelCornerNe decals: - 7414: 38,13 7420: 34,15 - node: color: '#FF5C5C99' @@ -2507,11 +2507,6 @@ entities: 9660: 5,-24 9663: 5,-20 9665: 5,-17 - - node: - color: '#FFFFFFFF' - id: BushAOne - decals: - 9610: 1,-30 - node: color: '#FFFFFFFF' id: BushCThree @@ -2522,23 +2517,13 @@ entities: id: BushCTwo decals: 9602: 3.0588236,-26.883121 - 9605: -1,-31 9752: -18.015484,-15.946213 9753: -13.921733,-17.946213 9754: -13.874858,-17.946213 - - node: - color: '#FFFFFFFF' - id: Busha1 - decals: - 9611: 2,-33 - node: color: '#FFFFFFFF' id: Busha3 decals: - 9603: -5.0974264,-31.008121 - 9607: 0,-30 - 9608: -2,-30 - 9609: 1,-31 9750: -11.909134,-12.836838 9751: -16.952984,-14.961838 9756: -16.046734,-17.852463 @@ -2546,7 +2531,6 @@ entities: color: '#FFFFFFFF' id: Bushb2 decals: - 9606: -1,-30 9755: -13.484233,-18.961838 - node: color: '#FFFFFFFF' @@ -2562,8 +2546,6 @@ entities: color: '#FFFFFFFF' id: Bushc3 decals: - 9612: -2,-32 - 9614: 1,-31 9722: -3.9110415,-30.916807 12184: 51.013447,21.053864 - node: @@ -2779,6 +2761,9 @@ entities: 7398: 37,12 7399: 38,12 7400: 38,11 + 13224: 37,13 + 13225: 38,13 + 13226: 36,13 - node: color: '#55391AFF' id: CheckerNESW @@ -4011,18 +3996,6 @@ entities: id: Dirt decals: 6932: -24,-96 - - node: - cleanable: True - color: '#FFFFFF2E' - id: Dirt - decals: - 4044: -10,14 - 4045: -11,13 - 4046: -10,16 - 4047: -11,15 - 4048: -10,15 - 4049: -10,15 - 4050: -10,16 - node: color: '#FFFFFF3E' id: Dirt @@ -4345,8 +4318,6 @@ entities: 4453: 3,26 4454: -6,20 4455: -3,26 - 4456: -10,14 - 4457: -11,15 4458: -9,11 4459: -13,2 4460: -12,-1 @@ -4940,47 +4911,8 @@ entities: 8252: -22,-102 8253: -20,-99 8254: -19,-100 - 10000: 17,-23 - 10001: 17,-23 - 10002: 17,-23 - 10003: 17,-25 - 10004: 17,-25 - 10005: 17,-26 - 10006: 19,-27 - 10007: 19,-26 - 10008: 19,-26 - 10009: 18,-26 - 10010: 18,-26 - 10011: 17,-26 - 10012: 17,-22 - 10013: 17,-20 - 10014: 17,-18 - 10015: 17,-19 - 10016: 17,-19 - 10017: 17,-18 - 10018: 17,-16 - 10019: 17,-16 - 10020: 15,-15 - 10021: 19,-15 - 10022: 20,-15 10023: 21,-15 - 10024: 19,-14 - 10025: 15,-14 - 10026: 15,-19 - 10027: 11,-21 - 10028: 10,-22 - 10029: 9,-24 - 10030: 9,-23 - 10031: 9,-19 - 10032: 11,-17 - 10033: 11,-29 - 10034: 10,-29 10035: 9,-30 - 10036: 15,-29 - 10037: 16,-31 - 10038: 16,-31 - 10039: 15,-31 - 10040: 15,-31 10041: 12,-34 10042: 13,-33 10043: 10,-33 @@ -4992,19 +4924,6 @@ entities: 10049: 6,-28 10050: 5,-25 10051: 5,-25 - 10052: 3,-25 - 10053: 3,-25 - 10054: 3,-25 - 10055: 1,-25 - 10056: 0,-25 - 10057: 1,-25 - 10058: 0,-25 - 10059: -1,-25 - 10060: -6,-31 - 10061: -6,-30 - 10062: -1,-31 - 10063: 0,-31 - 10064: 2,-32 10065: 5,-27 10066: 5,-24 10067: 6,-24 @@ -5024,40 +4943,11 @@ entities: 10081: 1,-14 10082: 3,-14 10083: -2,-16 - 10084: -4,-19 - 10085: -4,-19 - 10086: -4,-18 - 10087: -3,-14 - 10088: -3,-14 10089: -9,-17 - 10090: -12,-17 - 10091: -15,-19 - 10092: -16,-19 - 10093: -16,-19 - 10094: -16,-20 - 10095: -16,-20 10096: -16,-21 - 10097: -16,-23 - 10098: -16,-23 - 10099: -17,-23 - 10100: -17,-23 - 10101: -18,-24 - 10102: -19,-24 - 10103: -20,-24 - 10104: -20,-23 - 10105: -20,-23 - 10106: -20,-22 - 10107: -20,-21 - 10108: -19,-23 - 10109: -18,-24 10110: -17,-25 10111: -11,-28 10112: -11,-28 - 10113: -12,-28 - 10114: -12,-28 - 10115: -12,-27 - 10116: -12,-26 - 10117: -12,-24 10118: -11,-32 10119: -11,-33 10120: -10,-33 @@ -5092,6 +4982,142 @@ entities: 11676: 52,18 11677: 47,18 11678: 54,15 + 12806: 15,-15 + 12807: 15,-14 + 12808: 20,-15 + 12809: 19,-15 + 12810: 14,-15 + 12811: 15,-16 + 12812: 16,-17 + 12836: 18,-17 + 12837: 19,-17 + 12838: 19,-17 + 12839: 19,-19 + 12840: 15,-19 + 12841: 15,-19 + 12842: 16,-19 + 12843: 15,-20 + 12844: 16,-17 + 12845: 16,-18 + 12846: 15,-18 + 12847: 15,-18 + 12848: 15,-16 + 12849: 15,-16 + 12850: 18,-19 + 12851: 15,-23 + 12852: 14,-26 + 13028: -18,-29 + 13029: -19,-29 + 13030: -19,-30 + 13031: -15,-29 + 13032: -15,-28 + 13033: -14,-29 + 13034: -14,-30 + 13035: -16,-30 + 13036: -20,-30 + 13037: -16,-29 + 13038: -11,-29 + 13039: -12,-29 + 13040: -12,-28 + 13041: -12,-24 + 13042: -15,-24 + 13043: -18,-24 + 13044: -19,-23 + 13045: -19,-25 + 13046: -20,-23 + 13047: -20,-22 + 13048: -21,-21 + 13049: -16,-22 + 13050: -15,-19 + 13051: -16,-19 + 13052: -17,-18 + 13053: -11,-17 + 13054: -12,-17 + 13055: -17,-16 + 13056: -15,-16 + 13057: -3,-19 + 13058: -4,-19 + 13059: -4,-16 + 13060: -3,-15 + 13061: -3,-14 + 13062: -3,-13 + 13063: 1,-21 + 13064: 2,-21 + 13065: 3,-21 + 13066: 2,-21 + 13067: 1,-21 + 13068: 3,-16 + 13069: 3,-16 + 13070: 2,-32 + 13071: 2,-31 + 13072: 0,-31 + 13073: -2,-31 + 13074: -2,-32 + 13075: 1,-31 + 13076: 2,-33 + 13077: 0,-29 + 13078: 1,-30 + 13079: 0,-30 + 13080: -2,-30 + 13081: -4,-30 + 13082: -5,-30 + 13083: -5,-31 + 13084: -6,-31 + 13085: -6,-30 + 13086: 3,-25 + 13087: 2,-25 + 13088: 1,-25 + 13089: -1,-25 + 13090: -2,-25 + 13091: -4,-25 + 13092: -5,-24 + 13093: -5,-24 + 13094: -1,-31 + 13095: 10,-29 + 13096: 10,-28 + 13097: 9,-29 + 13098: 9,-30 + 13099: 11,-30 + 13100: 12,-28 + 13102: 9,-18 + 13103: 9,-16 + 13104: 9,-17 + 13105: 9,-26 + 13106: 11,-26 + 13107: 12,-26 + 13108: 8,-26 + 13109: 12,-15 + 13110: 8,-15 + 13111: 15,-24 + 13112: 15,-23 + 13113: 14,-22 + 13114: 15,-26 + 13115: 20,-26 + 13116: 19,-26 + 13117: 15,-28 + 13118: 14,-29 + 13119: 14,-28 + 13120: 17,-31 + 13203: 8,-44 + 13204: 8,-43 + 13205: 7,-44 + 13206: 15,-44 + 13207: 16,-44 + 13208: 18,-44 + 13209: 16,-45 + 13210: 19,-45 + 13211: 19,-41 + 13212: 19,-39 + 13213: 19,-37 + 13214: 12,-37 + 13215: 13,-37 + 13216: 14,-37 + 13217: 20,-36 + 13218: 20,-37 + 13219: 8,-37 + 13220: 8,-37 + 13221: 8,-39 + 13222: 8,-41 - node: cleanable: True color: '#FFFFFF8F' @@ -5188,9 +5214,6 @@ entities: 4027: -50,-89 4028: -51,-88 4033: -47,-92 - 4040: -12,14 - 4041: -10,15 - 4042: -9,16 4051: -64,-35 4055: -65,-33 4058: -66,-32 @@ -5202,7 +5225,6 @@ entities: 4643: 1,15 4644: -1,11 4645: 3,2 - 4646: -17,1 4647: -29,-8 4648: -28,-21 4649: -33,-32 @@ -5257,82 +5279,9 @@ entities: 8249: 34,21 8255: -27,-102 8256: -22,-104 - 10142: 15,-23 - 10143: 14,-23 - 10144: 14,-22 - 10145: 15,-22 - 10146: 15,-24 - 10158: 20,-26 - 10159: 20,-26 - 10160: 20,-26 - 10161: 20,-27 - 10162: 20,-27 10163: 20,-28 10164: 20,-28 - 10165: 20,-29 - 10166: 20,-30 - 10167: 20,-31 - 10168: 20,-31 - 10169: 19,-30 - 10170: 17,-31 - 10171: 17,-31 - 10172: 17,-30 - 10173: 15,-30 - 10174: 15,-30 - 10175: 16,-30 - 10176: 16,-30 10177: 13,-30 - 10178: 14,-31 - 10179: 14,-31 - 10180: 14,-30 - 10181: 17,-30 - 10182: 20,-23 - 10183: 19,-23 - 10184: 19,-24 - 10185: 19,-23 - 10186: 19,-23 - 10187: 19,-22 - 10188: 20,-22 - 10189: 20,-22 - 10190: 20,-24 - 10191: 20,-24 - 10192: 20,-22 - 10193: 21,-24 - 10194: 21,-23 - 10195: 21,-22 - 10196: 21,-22 - 10197: 21,-22 - 10198: 22,-22 - 10199: 22,-23 - 10200: 23,-23 - 10201: 23,-24 - 10202: 23,-24 - 10203: 23,-24 - 10204: 23,-22 - 10205: 23,-22 - 10206: 22,-22 - 10207: 22,-23 - 10208: 22,-24 - 10209: 22,-24 - 10210: 20,-23 - 10211: 20,-23 - 10212: 20,-23 - 10213: 17,-17 - 10214: 17,-17 - 10215: 17,-17 - 10216: 17,-17 - 10217: 17,-18 - 10218: 18,-15 - 10219: 18,-15 - 10220: 18,-15 - 10221: 16,-15 - 10222: 16,-15 - 10223: 15,-26 - 10224: 14,-26 - 10225: 14,-26 - 10226: 15,-26 - 10227: 15,-26 - 10228: 15,-25 10229: 12,-33 10230: 12,-33 10231: 4,-44 @@ -5370,6 +5319,122 @@ entities: 10910: 72,-12 10924: 87,-10 10925: 88,-10 + 12813: 17,-15 + 12814: 17,-15 + 12815: 17,-15 + 12816: 18,-15 + 12817: 16,-15 + 12818: 16,-15 + 12819: 16,-15 + 12821: 17,-17 + 12822: 17,-18 + 12823: 17,-19 + 12824: 17,-19 + 12825: 17,-20 + 12826: 17,-19 + 12827: 17,-18 + 12828: 17,-18 + 12829: 17,-17 + 12831: 17,-20 + 12863: 21,-24 + 12864: 21,-24 + 12865: 21,-24 + 12866: 21,-23 + 12867: 21,-23 + 12868: 21,-23 + 12869: 21,-22 + 12870: 22,-22 + 12871: 22,-22 + 12872: 22,-23 + 12873: 22,-23 + 12874: 22,-24 + 12875: 22,-24 + 12876: 23,-24 + 12877: 23,-24 + 12878: 23,-23 + 12879: 23,-23 + 12880: 23,-22 + 12881: 23,-22 + 12925: 16,-31 + 12926: 17,-30 + 12927: 17,-30 + 12928: 16,-30 + 12929: 16,-31 + 12930: 15,-31 + 12931: 15,-31 + 12932: 14,-30 + 12933: 14,-30 + 12934: 15,-30 + 12935: 17,-31 + 12936: 19,-30 + 12937: 15,-29 + 12938: 16,-29 + 12939: 16,-28 + 12940: 17,-28 + 12941: 14,-29 + 12942: 15,-29 + 12943: 15,-29 + 12944: 12,-28 + 12945: 12,-28 + 12946: 11,-30 + 12947: 10,-30 + 12948: 10,-30 + 12949: 9,-30 + 12950: 8,-28 + 12951: 9,-26 + 12952: 9,-25 + 12953: 11,-25 + 12954: 11,-25 + 12955: 11,-24 + 12956: 11,-23 + 12957: 11,-23 + 12958: 9,-22 + 12959: 9,-22 + 12960: 9,-21 + 12961: 9,-21 + 12962: 12,-21 + 12963: 12,-21 + 12964: 11,-18 + 12965: 11,-17 + 12966: 11,-16 + 12967: 9,-15 + 12968: 9,-14 + 12969: 9,-14 + 12970: 11,-13 + 12971: 11,-14 + 12972: 10,-13 + 12973: 11,-13 + 12974: 10,-13 + 12975: 11,-14 + 12976: 12,-15 + 12977: 8,-15 + 12978: 9,-19 + 12979: 9,-19 + 12980: 9,-20 + 12982: 8,-21 + 12983: 8,-21 + 12984: 11,-26 + 12985: 11,-26 + 12986: 12,-26 + 12987: 12,-26 + 12988: 9,-17 + 12989: 9,-18 + 12990: 10,-18 + 12991: 10,-18 + 12992: 1,-16 + 12993: 2,-16 + 12994: -3,-19 + 12995: -3,-19 + 12996: -4,-18 + 12997: -4,-17 + 12998: -16,-19 + 12999: -16,-20 + 13000: -15,-19 + 13001: -15,-18 + 13002: -16,-18 + 13003: -14,-19 + 13188: 8,-37 + 13189: 7,-37 - node: cleanable: True zIndex: -1 @@ -5404,7 +5469,6 @@ entities: 125: 8,-100 128: 3,-79 4029: -50,-88 - 4039: -12,14 4043: -9,15 4052: -64,-35 4078: -73,-31 @@ -5462,6 +5526,20 @@ entities: 10264: -7,-47 10265: -8,-47 10266: -9,-47 + 12903: 18,-26 + 12904: 19,-26 + 12905: 17,-26 + 12906: 19,-28 + 12907: 19,-29 + 12908: 20,-26 + 12909: 20,-26 + 12910: 20,-27 + 12911: 20,-29 + 12912: 20,-29 + 12913: 19,-30 + 12914: 20,-30 + 12915: 19,-31 + 12916: 20,-31 - node: color: '#FFFFFFFF' id: DirtLight @@ -5598,6 +5676,32 @@ entities: 10920: 77,-12 10922: 81,-10 10923: 76,-8 + 12882: 20,-23 + 12883: 19,-22 + 12884: 20,-23 + 12885: 19,-23 + 12886: 19,-24 + 12917: 20,-31 + 12918: 20,-31 + 12919: 20,-31 + 12920: 19,-31 + 12921: 19,-31 + 12922: 17,-31 + 12923: 17,-31 + 12924: 16,-31 + 13190: 19,-38 + 13191: 20,-37 + 13192: 20,-36 + 13193: 19,-45 + 13194: 18,-45 + 13195: 17,-47 + 13196: 19,-47 + 13197: 18,-47 + 13198: 20,-43 + 13199: 20,-44 + 13200: 9,-44 + 13201: 8,-44 + 13202: 8,-44 - node: cleanable: True zIndex: -1 @@ -5690,20 +5794,63 @@ entities: 7883: 43,28 8219: 37,33 8220: 38,34 - 10147: 15,-24 - 10148: 15,-23 - 10149: 17,-17 - 10150: 18,-15 - 10151: 16,-15 - 10152: 17,-15 - 10153: 17,-15 - 10154: 19,-30 - 10155: 20,-31 10156: 19,-31 10907: 71,-14 10908: 71,-13 10918: 78,-12 10919: 76,-11 + 12832: 17,-16 + 12833: 17,-16 + 12834: 17,-16 + 12835: 17,-16 + 12853: 15,-26 + 12854: 15,-26 + 12855: 14,-26 + 12856: 15,-23 + 12857: 14,-23 + 12858: 14,-22 + 12859: 15,-22 + 12860: 14,-23 + 12861: 15,-24 + 12862: 15,-24 + 12887: 20,-23 + 12888: 20,-22 + 12889: 19,-22 + 12890: 19,-23 + 12891: 19,-23 + 12892: 19,-24 + 12893: 20,-24 + 12894: 17,-26 + 12895: 17,-26 + 12896: 17,-24 + 12897: 17,-23 + 12898: 17,-21 + 12899: 17,-22 + 12900: 17,-22 + 12901: 17,-24 + 12902: 17,-24 + 13004: -17,-25 + 13005: -17,-24 + 13006: -19,-23 + 13007: -19,-24 + 13008: -20,-24 + 13009: -19,-25 + 13010: -12,-24 + 13011: -12,-23 + 13012: -12,-25 + 13013: -12,-27 + 13014: -12,-28 + 13015: -11,-30 + 13016: -11,-30 + 13017: -11,-23 + 13018: -16,-24 + 13019: -16,-25 + 13020: -16,-23 + 13021: -18,-23 + 13022: -18,-24 + 13023: -19,-23 + 13024: -20,-22 + 13025: -20,-21 - node: color: '#FFFFFFFF' id: FlowersBRTwo @@ -7215,7 +7362,6 @@ entities: 1406: -1,-81 1541: -75,-49 2029: 28,-10 - 3355: -16,1 3356: -21,-1 3357: -26,-5 3358: -27,-6 @@ -9885,7 +10031,6 @@ entities: 5066: -10,4 5067: -11,4 5069: -13,3 - 5073: -17,1 5074: -18,1 5075: -19,1 5076: -20,1 @@ -11962,29 +12107,16 @@ entities: id: Rock01 decals: 9161: 50.798992,-39.643646 - - node: - color: '#FFFFFFFF' - id: Rock01 - decals: - 9729: -2.964274,-15.013573 - - node: - color: '#FFFFFFFF' - id: Rock02 - decals: - 9693: -6.0508156,-24.73365 - node: color: '#FFFFFFFF' id: Rock03 decals: - 9694: -2.9726908,-26.004267 9695: -5.9101906,-22.988642 - 9696: -5.8320656,-24.113642 9731: 3.074894,-17.029198 - node: color: '#FFFFFFFF' id: Rock04 decals: - 9692: -5.9570656,-25.874275 9733: -0.8705876,-16.03638 - node: color: '#FED83DFF' @@ -11996,7 +12128,6 @@ entities: id: Rock05 decals: 9092: 55,-39 - 9691: -5.9570656,-28.968025 9730: -1.9486489,-15.997948 9732: -0.9876058,-17.107323 - node: @@ -12202,6 +12333,8 @@ entities: 12327: 62,-16 12465: 132,-39 12467: 132,-41 + 13223: 39,22 + 13227: 37,22 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -12539,7 +12672,6 @@ entities: decals: 5042: -1,17 5043: 1,17 - 5083: -16,1 5084: -21,1 5085: 15,1 5086: 16,1 @@ -13127,6 +13259,7 @@ entities: decals: 9190: -42,-84 12627: -24,1 + 13228: -15,7 - node: color: '#4B362BFF' id: WoodTrimThinCornerNeWhite @@ -13187,6 +13320,7 @@ entities: decals: 9178: -45,-84 12638: -31,1 + 13229: -17,7 - node: color: '#4B362BFF' id: WoodTrimThinCornerNwWhite @@ -13252,6 +13386,7 @@ entities: 9184: -42,-87 12628: -24,0 12630: -26,-1 + 13231: -15,6 - node: color: '#4B362BFF' id: WoodTrimThinCornerSeWhite @@ -13315,6 +13450,7 @@ entities: 9181: -45,-87 12632: -28,-1 12639: -31,0 + 13230: -17,6 - node: color: '#4B362BFF' id: WoodTrimThinCornerSwWhite @@ -13729,6 +13865,7 @@ entities: 12626: -25,1 12636: -29,1 12637: -30,1 + 13232: -16,7 - node: color: '#4B362BFF' id: WoodTrimThinLineNWhite @@ -13949,6 +14086,7 @@ entities: 12633: -27,-1 12640: -30,0 12641: -29,0 + 13233: -16,6 - node: color: '#4B362BFF' id: WoodTrimThinLineSWhite @@ -14155,6 +14293,89 @@ entities: 7028: -72.19701,-2.9617355 7029: -71.444824,-3.035119 7030: -70.72933,-3.053465 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt1 + decals: + 13149: -6,-52 + 13150: -6,-50 + 13151: -6,-50 + 13152: -6,-50 + 13153: -7,-50 + 13154: -8,-50 + 13155: -8,-48 + 13156: -8,-49 + 13157: -6,-48 + 13184: 13,-52 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt2 + decals: + 13121: 9,-24 + 13122: 9,-23 + 13125: 11,-21 + 13126: 11,-21 + 13127: 9,-13 + 13128: 9,-13 + 13129: 9,-13 + 13158: -7,-48 + 13159: -9,-50 + 13160: -9,-48 + 13161: -10,-48 + 13162: -4,-47 + 13163: -3,-47 + 13164: -3,-49 + 13165: -3,-49 + 13166: 1,-44 + 13167: 1,-44 + 13174: 1,-44 + 13175: 1,-44 + 13176: 2,-44 + 13177: 2,-44 + 13183: 14,-51 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt3 + decals: + 13130: 11,-14 + 13131: 11,-14 + 13132: 11,-13 + 13133: 10,-13 + 13134: 10,-13 + 13135: 9,-14 + 13136: 9,-14 + 13137: 9,-21 + 13138: -9,-55 + 13139: -9,-54 + 13140: -10,-54 + 13141: -10,-55 + 13142: -3,-54 + 13143: -4,-54 + 13144: -4,-55 + 13145: -3,-55 + 13146: -7,-53 + 13168: 2,-44 + 13169: 2,-44 + 13170: 3,-44 + 13171: 2,-45 + 13172: 1,-45 + 13178: 2,-45 + 13179: 1,-45 + 13180: 3,-44 + 13181: 14,-52 + 13185: 13,-51 + 13186: 13,-51 + 13187: 14,-52 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt4 + decals: + 13148: -6,-53 + 13173: 0,-44 - node: color: '#FED83DFF' id: bushsnowa1 @@ -14690,15 +14911,15 @@ entities: 0: 61440 1: 237 -5,0: - 0: 53503 + 0: 55551 -4,1: 0: 30577 -5,1: - 0: 56785 + 0: 56797 -4,2: - 0: 1907 + 0: 1905 -5,2: - 0: 7617 + 0: 7489 -4,3: 0: 3959 -5,3: @@ -14717,7 +14938,7 @@ entities: 0: 45056 1: 213 -3,4: - 0: 65038 + 0: 65262 -2,0: 0: 64767 -2,1: @@ -15008,7 +15229,7 @@ entities: 9,4: 0: 4080 9,5: - 0: 62959 + 0: 65535 9,6: 0: 61680 9,7: @@ -15187,7 +15408,8 @@ entities: 15,4: 0: 68 16,0: - 0: 45158 + 0: 45126 + 4: 32 16,1: 0: 45247 16,2: @@ -15213,7 +15435,8 @@ entities: 15,-2: 0: 56719 15,-5: - 0: 65535 + 0: 65533 + 5: 2 16,-4: 0: 45827 16,-3: @@ -15601,15 +15824,15 @@ entities: 3,-12: 0: 61671 4,-11: - 0: 65535 + 0: 47038 3,-11: - 0: 65535 + 0: 49151 4,-10: 1: 1 0: 65534 3,-10: 1: 40 - 0: 65495 + 0: 62359 4,-9: 0: 15 3,-9: @@ -15994,7 +16217,8 @@ entities: 1: 9143 3: 32768 22,-17: - 1: 45858 + 1: 45106 + 0: 768 3: 136 22,-20: 1: 30583 @@ -16098,28 +16322,28 @@ entities: 16,-22: 1: 30169 8,-24: - 4: 1 - 5: 4352 + 6: 1 + 7: 4352 1: 17476 8,-25: - 4: 4096 + 6: 4096 1: 17476 - 6: 17 + 8: 17 7,-24: - 4: 12 - 5: 52224 + 6: 12 + 7: 52224 1: 4369 8,-23: - 4: 272 + 6: 272 1: 17476 7,-23: - 4: 3264 + 6: 3264 1: 4369 8,-22: - 4: 17 + 6: 17 1: 21572 7,-22: - 4: 204 + 6: 204 1: 61713 9,-24: 0: 65535 @@ -16168,8 +16392,8 @@ entities: 1: 34952 7,-25: 1: 4369 - 4: 49152 - 6: 204 + 6: 49152 + 8: 204 0,-24: 0: 52509 0,-25: @@ -16417,8 +16641,7 @@ entities: 4,-26: 0: 8243 -4,-26: - 0: 52800 - 7: 8192 + 0: 60992 -5,-26: 0: 65297 -5,-25: @@ -16793,8 +17016,7 @@ entities: -14,-14: 0: 61916 -14,-13: - 0: 63247 - 8: 2048 + 0: 65295 -14,-17: 0: 65520 -14,-16: @@ -16908,8 +17130,7 @@ entities: -10,-9: 0: 61152 -10,-8: - 0: 61420 - 7: 2 + 0: 61422 -9,-11: 0: 47615 -9,-10: @@ -17457,7 +17678,6 @@ entities: 0: 8 -6,-9: 1: 30515 - 0: 8 -6,-6: 1: 8738 0: 34952 @@ -17473,7 +17693,7 @@ entities: 0: 52429 1: 4352 -5,-9: - 0: 65535 + 0: 65407 -4,-8: 0: 63235 -4,-7: @@ -17547,12 +17767,12 @@ entities: 1: 8192 -6,-10: 1: 13107 - 0: 34952 + 0: 34816 -5,-11: 0: 61686 1: 8 -5,-10: - 0: 65535 + 0: 40959 -4,-12: 0: 57553 -4,-11: @@ -17561,7 +17781,7 @@ entities: -4,-10: 0: 30583 -4,-9: - 0: 30583 + 0: 30548 -3,-15: 0: 65512 -3,-14: @@ -17584,7 +17804,7 @@ entities: -1,-15: 0: 65278 -1,-14: - 6: 816 + 8: 816 0: 2184 -1,-13: 0: 30583 @@ -17623,9 +17843,9 @@ entities: 2,-12: 0: 61695 2,-11: - 0: 65535 + 0: 65021 2,-10: - 0: 65527 + 0: 48119 1: 8 2,-9: 0: 63551 @@ -18252,10 +18472,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 293.14975 moles: - - 0 - - 0 + - 20.078888 + - 75.53487 - 0 - 0 - 0 @@ -18269,11 +18489,11 @@ entities: - volume: 2500 temperature: 293.15 moles: + - 21.6852 + - 81.57766 - 0 - 0 - 0 - - 6666.982 - - 0 - 0 - 0 - 0 @@ -18284,7 +18504,7 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 + - 0 - 0 - 0 - 0 @@ -18299,11 +18519,11 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.6852 - - 81.57766 - 0 - 0 - 0 + - 6666.982 + - 0 - 0 - 0 - 0 @@ -18314,8 +18534,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.813705 - - 82.06108 + - 6666.982 + - 0 - 0 - 0 - 0 @@ -18382,12 +18602,114 @@ entities: - type: ContainedSolution containerName: food container: 6 - - uid: 19649 + - uid: 19 + components: + - type: MetaData + name: solution - food + - type: Transform + parent: 18 + - type: Solution + solution: + maxVol: 1 + name: food + reagents: + - data: [] + ReagentId: Fiber + Quantity: 1 + - type: ContainedSolution + containerName: food + container: 18 + - uid: 22 + components: + - type: MetaData + name: solution - food + - type: Transform + parent: 21 + - type: Solution + solution: + maxVol: 1 + name: food + reagents: + - data: [] + ReagentId: Fiber + Quantity: 1 + - type: ContainedSolution + containerName: food + container: 21 + - uid: 27 + components: + - type: MetaData + name: solution - food + - type: Transform + parent: 26 + - type: Solution + solution: + maxVol: 1 + name: food + reagents: + - data: [] + ReagentId: Fiber + Quantity: 1 + - type: ContainedSolution + containerName: food + container: 26 + - uid: 32 + components: + - type: MetaData + name: solution - food + - type: Transform + parent: 31 + - type: Solution + solution: + maxVol: 1 + name: food + reagents: + - data: [] + ReagentId: Fiber + Quantity: 1 + - type: ContainedSolution + containerName: food + container: 31 + - uid: 37 + components: + - type: MetaData + name: solution - pen + - type: Transform + parent: 36 + - type: Solution + solution: + maxVol: 15 + name: pen + reagents: + - data: [] + ReagentId: Pax + Quantity: 15 + - type: ContainedSolution + containerName: pen + container: 36 + - uid: 53 + components: + - type: MetaData + name: solution - injector + - type: Transform + parent: 52 + - type: Solution + solution: + maxVol: 15 + name: injector + reagents: + - data: [] + ReagentId: Haloperidol + Quantity: 15 + - type: ContainedSolution + containerName: injector + container: 52 + - uid: 56 components: - type: MetaData name: solution - battery - type: Transform - parent: 19648 + parent: 55 - type: Solution solution: maxVol: 5 @@ -18398,8 +18720,25 @@ entities: Quantity: 5 - type: ContainedSolution containerName: battery - container: 19648 - - uid: 21045 + container: 55 + - uid: 60 + components: + - type: MetaData + name: solution - tank + - type: Transform + parent: 59 + - type: Solution + solution: + maxVol: 1500 + name: tank + reagents: + - data: [] + ReagentId: SpaceCleaner + Quantity: 1500 + - type: ContainedSolution + containerName: tank + container: 59 + - uid: 40666 components: - type: MetaData name: NT-SEC "Overseer" @@ -18629,7 +18968,7 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - - uid: 37884 + - uid: 40825 components: - type: MetaData name: Shedevrolet @@ -18667,7 +19006,7 @@ entities: version: 2 nodes: [] - type: RadiationGridResistance - - uid: 37887 + - uid: 40828 components: - type: MetaData name: Охранный пост ОБР @@ -19292,8 +19631,8 @@ entities: - type: Joint joints: docking407459: !type:WeldJoint - bodyB: 38722 - bodyA: 37887 + bodyB: 41669 + bodyA: 40828 id: docking407459 localAnchorB: 5.5,-13 localAnchorA: 1.5,1 @@ -19301,15 +19640,15 @@ entities: damping: 975.37714 stiffness: 8754.965 docking407458: !type:WeldJoint - bodyB: 38722 - bodyA: 37887 + bodyB: 41669 + bodyA: 40828 id: docking407458 localAnchorB: 3.5,-13 localAnchorA: -0.49999997,1 referenceAngle: 6.2831855 damping: 975.37714 stiffness: 8754.965 - - uid: 38722 + - uid: 41669 components: - type: MetaData name: NT-ERT-M0-R @@ -19721,8 +20060,8 @@ entities: - type: Joint joints: docking407459: !type:WeldJoint - bodyB: 38722 - bodyA: 37887 + bodyB: 41669 + bodyA: 40828 id: docking407459 localAnchorB: 5.5,-13 localAnchorA: 1.5,1 @@ -19730,156 +20069,183 @@ entities: damping: 975.37714 stiffness: 8754.965 docking407458: !type:WeldJoint - bodyB: 38722 - bodyA: 37887 + bodyB: 41669 + bodyA: 40828 id: docking407458 localAnchorB: 3.5,-13 localAnchorA: -0.49999997,1 referenceAngle: 6.2831855 damping: 975.37714 stiffness: 8754.965 - - uid: 41283 - components: - - type: MetaData - name: solution - tank - - type: Transform - parent: 41282 - - type: Solution - solution: - maxVol: 1500 - name: tank - reagents: - - data: [] - ReagentId: SpaceCleaner - Quantity: 1500 - - type: ContainedSolution - containerName: tank - container: 41282 - proto: AccessConfigurator entities: - - uid: 12 + - uid: 61 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.581434,23.587357 parent: 2 +- proto: ActionBibleSummon + entities: + - uid: 15 + components: + - type: Transform + parent: 14 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 14 - proto: ActionToggleInternals entities: - - uid: 17 + - uid: 63 components: - type: Transform - parent: 16 + parent: 62 - type: InstantAction - container: 16 - - uid: 2042 + container: 62 + - uid: 66 + components: + - type: Transform + parent: 65 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 65 + - uid: 70 + components: + - type: Transform + parent: 69 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 69 + - uid: 79 + components: + - type: Transform + parent: 78 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 78 + - uid: 88 components: - type: Transform - parent: 2038 + parent: 87 - type: InstantAction originalIconColor: '#FFFFFFFF' - container: 2038 + container: 87 - proto: ActionToggleJetpack entities: - - uid: 18 + - uid: 64 components: - type: Transform - parent: 16 + parent: 62 - type: InstantAction - container: 16 - - uid: 2039 + container: 62 + - uid: 67 components: - type: Transform - parent: 2038 + parent: 65 - type: InstantAction originalIconColor: '#FFFFFFFF' - container: 2038 + container: 65 - proto: ActionToggleLight entities: - - uid: 20 + - uid: 17 components: - type: Transform - parent: 19 + parent: 16 - type: InstantAction - container: 19 - - uid: 22 + originalIconColor: '#FFFFFFFF' + container: 16 + - uid: 57 components: - type: Transform - parent: 21 + parent: 54 - type: InstantAction - container: 21 - - uid: 24 + container: 54 + - uid: 58 components: - type: Transform - parent: 23 + parent: 54 - type: InstantAction - container: 23 - - uid: 26 + container: 54 + attachedEntity: 54 + - uid: 96 components: - type: Transform - parent: 25 + parent: 95 - type: InstantAction - container: 25 - - uid: 2880 + container: 95 + - uid: 98 components: - type: Transform - parent: 2879 + parent: 97 - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 2879 - - uid: 6216 + container: 97 + - uid: 100 components: - type: Transform - parent: 24188 + parent: 99 - type: InstantAction - container: 24188 - - uid: 6227 + container: 99 + - uid: 102 components: - type: Transform - parent: 24199 + parent: 101 - type: InstantAction - container: 24199 - - uid: 22381 + container: 101 + - uid: 104 components: - type: Transform - parent: 22380 + parent: 103 - type: InstantAction originalIconColor: '#FFFFFFFF' - container: 22380 - - uid: 24776 + container: 103 + - uid: 106 components: - type: Transform - parent: 24214 + parent: 105 - type: InstantAction - container: 24214 - - uid: 30295 + container: 105 + - uid: 108 + components: + - type: Transform + parent: 107 + - type: InstantAction + container: 107 + - uid: 110 components: - type: Transform - parent: 24201 + parent: 109 - type: InstantAction originalIconColor: '#FFFFFFFF' - container: 24201 - - uid: 37254 + container: 109 + - uid: 112 components: - type: Transform - parent: 37012 + parent: 111 - type: InstantAction - container: 37012 - - uid: 39562 + container: 111 + - uid: 114 components: - type: Transform - parent: 37707 + parent: 113 - type: InstantAction - container: 37707 - - uid: 39563 + originalIconColor: '#FFFFFFFF' + container: 113 + - uid: 117 + components: + - type: Transform + parent: 116 + - type: InstantAction + container: 116 + - uid: 121 components: - type: Transform - parent: 37707 + parent: 120 - type: InstantAction - container: 37707 - attachedEntity: 37707 + originalIconColor: '#FFFFFFFF' + container: 120 - proto: AdvMopItem entities: - - uid: 26247 + - uid: 122 components: - type: Transform rot: -1.5707963267948966 rad @@ -19887,7 +20253,7 @@ entities: parent: 2 - proto: AirAlarm entities: - - uid: 27 + - uid: 123 components: - type: Transform rot: 1.5707963267948966 rad @@ -19895,34 +20261,34 @@ entities: parent: 2 - type: DeviceList devices: - - 18075 - - 18076 - - 18259 - - 18039 - - 18038 - - 18037 - - 786 - - 21979 - - 22139 - - uid: 28 + - 19293 + - 19294 + - 19474 + - 19209 + - 19208 + - 19207 + - 935 + - 24376 + - 24623 + - uid: 124 components: - type: Transform pos: 55.5,-30.5 parent: 2 - type: DeviceList devices: - - 18126 - - 18127 - - 18128 - - 18251 - - 18250 - - 18252 - - 785 - - 21992 - - 22151 - - 18262 - - 18400 - - uid: 29 + - 19342 + - 19343 + - 19344 + - 19467 + - 19466 + - 19468 + - 934 + - 24387 + - 24633 + - 19477 + - 19574 + - uid: 125 components: - type: Transform rot: -1.5707963267948966 rad @@ -19930,13 +20296,13 @@ entities: parent: 2 - type: DeviceList devices: - - 790 - - 18266 - - 18268 - - 18267 - - 18262 - - 18400 - - uid: 30 + - 938 + - 19481 + - 19483 + - 19482 + - 19477 + - 19574 + - uid: 126 components: - type: Transform rot: 3.141592653589793 rad @@ -19944,37 +20310,37 @@ entities: parent: 2 - type: DeviceList devices: - - 18075 - - 18079 - - 18002 - - 791 - - 18376 - - uid: 31 + - 19293 + - 19295 + - 19155 + - 939 + - 19556 + - uid: 127 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-104.5 parent: 2 - - uid: 33 + - uid: 128 components: - type: Transform pos: 47.5,-76.5 parent: 2 - type: DeviceList devices: - - 21986 - - 794 - - 22146 - - 18243 - - 18244 - - 18245 - - 18007 - - 18008 - - 18006 - - 18005 - - 18003 - - 18004 - - uid: 34 + - 24381 + - 941 + - 24628 + - 19459 + - 19460 + - 19461 + - 19160 + - 19161 + - 19159 + - 19158 + - 19156 + - 19157 + - uid: 129 components: - type: Transform rot: 3.141592653589793 rad @@ -19982,30 +20348,30 @@ entities: parent: 2 - type: DeviceList devices: - - 21985 - - 793 - - 22145 - - 18007 - - uid: 35 + - 24380 + - 940 + - 24627 + - 19160 + - uid: 130 components: - type: Transform pos: -57.5,-41.5 parent: 2 - type: DeviceList devices: - - 18402 - - 18153 - - 18154 - - 18155 - - 18158 - - 18157 - - 18156 - - 18216 - - 887 - - 22229 - - 22078 - - 18062 - - uid: 36 + - 19576 + - 19369 + - 19370 + - 19371 + - 19374 + - 19373 + - 19372 + - 19432 + - 1017 + - 24700 + - 24460 + - 19281 + - uid: 131 components: - type: Transform rot: 1.5707963267948966 rad @@ -20013,53 +20379,53 @@ entities: parent: 2 - type: DeviceList devices: - - 22147 - - 21987 - - 18374 - - 795 - - uid: 37 + - 24629 + - 24382 + - 19554 + - 942 + - uid: 132 components: - type: Transform pos: 52.5,-67.5 parent: 2 - type: DeviceList devices: - - 796 - - 18243 - - 18244 - - 18245 - - 18373 - - 18242 - - 17992 - - 17993 - - 18374 - - 18246 - - 18247 - - uid: 38 + - 943 + - 19459 + - 19460 + - 19461 + - 19553 + - 19458 + - 19145 + - 19146 + - 19554 + - 19462 + - 19463 + - uid: 133 components: - type: Transform pos: 45.5,-61.5 parent: 2 - - uid: 39 + - uid: 134 components: - type: Transform pos: 47.5,-55.5 parent: 2 - type: DeviceList devices: - - 18372 - - 17993 - - 17992 - - 18248 - - 18249 - - 17994 - - 17995 - - 17996 - - 17997 - - 21988 - - 22148 - - 797 - - uid: 40 + - 19552 + - 19146 + - 19145 + - 19464 + - 19465 + - 19147 + - 19148 + - 19149 + - 19150 + - 24383 + - 24630 + - 944 + - uid: 135 components: - type: Transform rot: -1.5707963267948966 rad @@ -20067,13 +20433,13 @@ entities: parent: 2 - type: DeviceList devices: - - 17995 - - 17996 - - 18000 - - 17999 - - 17998 - - 798 - - uid: 41 + - 19148 + - 19149 + - 19153 + - 19152 + - 19151 + - 945 + - uid: 136 components: - type: Transform rot: -1.5707963267948966 rad @@ -20081,24 +20447,24 @@ entities: parent: 2 - type: DeviceList devices: - - 799 - - 18001 - - 18000 - - 18013 - - 18014 - - uid: 42 + - 946 + - 19154 + - 19153 + - 19166 + - 19167 + - uid: 137 components: - type: Transform pos: 49.5,-45.5 parent: 2 - type: DeviceList devices: - - 21990 - - 17997 - - 18016 - - 18015 - - 800 - - uid: 43 + - 24385 + - 19150 + - 19169 + - 19168 + - 947 + - uid: 138 components: - type: Transform rot: 1.5707963267948966 rad @@ -20106,12 +20472,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18018 - - 18017 - - 801 - - 21989 - - 22149 - - uid: 44 + - 19171 + - 19170 + - 948 + - 24384 + - 24631 + - uid: 139 components: - type: Transform rot: 1.5707963267948966 rad @@ -20119,11 +20485,11 @@ entities: parent: 2 - type: DeviceList devices: - - 17994 - - 18002 - - 39810 - - 39811 - - uid: 45 + - 19147 + - 19155 + - 24522 + - 24759 + - uid: 140 components: - type: Transform rot: 1.5707963267948966 rad @@ -20131,24 +20497,24 @@ entities: parent: 2 - type: DeviceList devices: - - 18376 - - 788 - - 18014 - - 18013 - - 17999 - - 17998 - - 18016 - - 18015 - - 18010 - - 18009 - - 18125 - - 18124 - - 18123 - - 18011 - - 18012 - - 22150 - - 21991 - - uid: 46 + - 19556 + - 936 + - 19167 + - 19166 + - 19152 + - 19151 + - 19169 + - 19168 + - 19163 + - 19162 + - 19341 + - 19340 + - 19339 + - 19164 + - 19165 + - 24632 + - 24386 + - uid: 141 components: - type: Transform rot: 3.141592653589793 rad @@ -20156,33 +20522,33 @@ entities: parent: 2 - type: DeviceList devices: - - 18377 - - 18011 - - 18012 - - uid: 48 + - 19557 + - 19164 + - 19165 + - uid: 142 components: - type: Transform pos: 42.5,-30.5 parent: 2 - type: DeviceList devices: - - 18126 - - 18127 - - 18128 - - 18125 - - 18124 - - 18123 - - 18089 - - 18071 - - 18072 - - 18272 - - 18120 - - 18121 - - 18122 - - 805 - - 21984 - - 22166 - - uid: 49 + - 19342 + - 19343 + - 19344 + - 19341 + - 19340 + - 19339 + - 19305 + - 19290 + - 19291 + - 19487 + - 19336 + - 19337 + - 19338 + - 950 + - 24379 + - 24640 + - uid: 143 components: - type: Transform rot: 3.141592653589793 rad @@ -20190,26 +20556,26 @@ entities: parent: 2 - type: DeviceList devices: - - 18255 - - 18254 - - 18253 - - 18256 - - 18257 - - 18259 - - 18260 - - 18261 - - 18263 - - 18264 - - 18082 - - 18081 - - 18080 - - 784 - - 22140 - - 21980 - - 36940 - - 919 - - 351 - - uid: 50 + - 19471 + - 19470 + - 19469 + - 19472 + - 19473 + - 19474 + - 19475 + - 19476 + - 19478 + - 19479 + - 19298 + - 19297 + - 19296 + - 933 + - 24624 + - 24377 + - 19669 + - 1047 + - 19244 + - uid: 144 components: - type: Transform rot: -1.5707963267948966 rad @@ -20217,15 +20583,15 @@ entities: parent: 2 - type: DeviceList devices: - - 18257 - - 18256 - - 18260 - - 18261 - - 18267 - - 806 - - 21993 - - 22152 - - uid: 51 + - 19473 + - 19472 + - 19475 + - 19476 + - 19482 + - 951 + - 24388 + - 24634 + - uid: 145 components: - type: Transform rot: 1.5707963267948966 rad @@ -20233,13 +20599,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18263 - - 18264 - - 807 - - 18266 - - 22161 - - 22003 - - uid: 52 + - 19478 + - 19479 + - 952 + - 19481 + - 24636 + - 24389 + - uid: 146 components: - type: Transform rot: 1.5707963267948966 rad @@ -20247,20 +20613,20 @@ entities: parent: 2 - type: DeviceList devices: - - 18082 - - 18081 - - 18080 - - 18083 - - 18084 - - 18085 - - 22164 - - 808 - - 22007 - - 18086 - - 18087 - - 18088 - - 18268 - - uid: 53 + - 19298 + - 19297 + - 19296 + - 19299 + - 19300 + - 19301 + - 24638 + - 953 + - 24392 + - 19302 + - 19303 + - 19304 + - 19483 + - uid: 147 components: - type: Transform rot: -1.5707963267948966 rad @@ -20268,16 +20634,16 @@ entities: parent: 2 - type: DeviceList devices: - - 18086 - - 18087 - - 18088 - - 18270 - - 809 - - 22165 - - 22008 - - 22009 - - 22010 - - uid: 54 + - 19302 + - 19303 + - 19304 + - 19485 + - 954 + - 24639 + - 24393 + - 24394 + - 24395 + - uid: 148 components: - type: Transform rot: -1.5707963267948966 rad @@ -20285,18 +20651,18 @@ entities: parent: 2 - type: DeviceList devices: - - 18083 - - 18084 - - 18085 - - 810 - - 18269 - - 22006 - - 18467 - - 18454 - - 18788 - - 40984 - - 40985 - - uid: 55 + - 19299 + - 19300 + - 19301 + - 955 + - 19484 + - 24391 + - 19631 + - 19624 + - 24363 + - 24791 + - 24792 + - uid: 149 components: - type: Transform rot: 1.5707963267948966 rad @@ -20304,9 +20670,9 @@ entities: parent: 2 - type: DeviceList devices: - - 22004 - - 18265 - - uid: 58 + - 24390 + - 19480 + - uid: 150 components: - type: Transform rot: 1.5707963267948966 rad @@ -20314,36 +20680,38 @@ entities: parent: 2 - type: DeviceList devices: - - 27795 - - 14824 - - 14805 - - 11845 - - 11768 - - 11765 - - 12988 - - 12083 - - 11910 - - 40447 - - uid: 65 + - 1072 + - 24601 + - 24351 + - 19261 + - 19260 + - 19259 + - 19264 + - 19263 + - 19262 + - 19688 + - 24575 + - 24816 + - uid: 151 components: - type: Transform pos: 31.5,-30.5 parent: 2 - type: DeviceList devices: - - 18129 - - 18130 - - 18131 - - 18101 - - 18100 - - 18099 - - 18089 - - 18071 - - 18072 - - 22011 - - 22144 - - 825 - - uid: 66 + - 19345 + - 19346 + - 19347 + - 19317 + - 19316 + - 19315 + - 19305 + - 19290 + - 19291 + - 24396 + - 24626 + - 957 + - uid: 152 components: - type: Transform rot: 1.5707963267948966 rad @@ -20351,40 +20719,40 @@ entities: parent: 2 - type: DeviceList devices: - - 18129 - - 18130 - - 18131 - - 18138 - - 18139 - - 18140 - - 826 - - 22168 - - 22013 - - uid: 67 + - 19345 + - 19346 + - 19347 + - 19354 + - 19355 + - 19356 + - 958 + - 24641 + - 24397 + - uid: 153 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-8.5 parent: 2 - - uid: 68 + - uid: 154 components: - type: Transform pos: 28.5,-3.5 parent: 2 - type: DeviceList devices: - - 18138 - - 18139 - - 18140 - - 827 - - 18333 - - 18134 - - 18133 - - 18132 - - 18309 - - 22014 - - 22169 - - uid: 69 + - 19354 + - 19355 + - 19356 + - 959 + - 19513 + - 19350 + - 19349 + - 19348 + - 19490 + - 24398 + - 24642 + - uid: 155 components: - type: Transform rot: 1.5707963267948966 rad @@ -20392,12 +20760,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18309 - - 18310 - - 828 - - 22170 - - 22015 - - uid: 70 + - 19490 + - 19491 + - 960 + - 24643 + - 24399 + - uid: 156 components: - type: Transform rot: -1.5707963267948966 rad @@ -20405,9 +20773,9 @@ entities: parent: 2 - type: DeviceList devices: - - 22016 - - 22171 - - uid: 71 + - 24400 + - 24644 + - uid: 157 components: - type: Transform rot: 1.5707963267948966 rad @@ -20415,25 +20783,35 @@ entities: parent: 2 - type: DeviceList devices: - - 18132 - - 18133 - - 18134 - - 18144 - - 18145 - - 18146 - - 18312 - - 18311 - - 18381 - - 18383 - - 18382 - - 18141 - - 18142 - - 18143 - - 829 - - 830 - - 22017 - - 22172 - - uid: 72 + - 19348 + - 19349 + - 19350 + - 19360 + - 19361 + - 19362 + - 19493 + - 19492 + - 19558 + - 19560 + - 19559 + - 19357 + - 19358 + - 19359 + - 961 + - 962 + - 24401 + - 24645 + - 24835 + - 24590 + - 24591 + - 24837 + - 19706 + - 19707 + - 19704 + - 19705 + - 24795 + - 24733 + - uid: 158 components: - type: Transform rot: 3.141592653589793 rad @@ -20441,9 +20819,9 @@ entities: parent: 2 - type: DeviceList devices: - - 22175 - - 22020 - - uid: 73 + - 24648 + - 24404 + - uid: 159 components: - type: Transform rot: -1.5707963267948966 rad @@ -20451,23 +20829,23 @@ entities: parent: 2 - type: DeviceList devices: - - 18144 - - 18145 - - 18146 - - 18315 - - 18314 - - 18313 - - 18318 - - 18319 - - 18320 - - 18321 - - 831 - - 22021 - - 22176 - - 18149 - - 18148 - - 18147 - - uid: 74 + - 19360 + - 19361 + - 19362 + - 19496 + - 19495 + - 19494 + - 19499 + - 19500 + - 19501 + - 19502 + - 963 + - 24405 + - 24649 + - 19365 + - 19364 + - 19363 + - uid: 160 components: - type: Transform rot: -1.5707963267948966 rad @@ -20475,23 +20853,23 @@ entities: parent: 2 - type: DeviceList devices: - - 18314 - - 18313 - - 832 - - 22018 - - 22173 - - uid: 75 + - 19495 + - 19494 + - 964 + - 24402 + - 24646 + - uid: 161 components: - type: Transform pos: -7.5,12.5 parent: 2 - type: DeviceList devices: - - 18316 - - 18315 - - 18317 - - 833 - - uid: 76 + - 19497 + - 19496 + - 19498 + - 965 + - uid: 162 components: - type: Transform rot: 1.5707963267948966 rad @@ -20499,12 +20877,12 @@ entities: parent: 2 - type: DeviceList devices: - - 834 - - 22177 - - 22023 - - 18320 - - 18321 - - uid: 77 + - 966 + - 24650 + - 24407 + - 19501 + - 19502 + - uid: 163 components: - type: Transform rot: -1.5707963267948966 rad @@ -20512,12 +20890,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18318 - - 18319 - - 835 - - 22178 - - 22022 - - uid: 78 + - 19499 + - 19500 + - 967 + - 24651 + - 24406 + - uid: 164 components: - type: Transform rot: 3.141592653589793 rad @@ -20525,19 +20903,27 @@ entities: parent: 2 - type: DeviceList devices: - - 18149 - - 18148 - - 18147 - - 18322 - - 837 - - 836 - - 18033 - - 18032 - - 18034 - - 18035 - - 18030 - - 18031 - - uid: 79 + - 19365 + - 19364 + - 19363 + - 19503 + - 969 + - 968 + - 19203 + - 19202 + - 19204 + - 19205 + - 19200 + - 19201 + - 19241 + - 24820 + - 24580 + - 24579 + - 24821 + - 24581 + - 24823 + - 24822 + - uid: 165 components: - type: Transform rot: -1.5707963267948966 rad @@ -20545,12 +20931,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18323 - - 18322 - - 838 - - 22181 - - 22026 - - uid: 80 + - 19504 + - 19503 + - 970 + - 24654 + - 24410 + - 24577 + - 24818 + - uid: 166 components: - type: Transform rot: 1.5707963267948966 rad @@ -20558,22 +20946,24 @@ entities: parent: 2 - type: DeviceList devices: - - 18141 - - 18142 - - 18143 - - 839 - - 18327 - - 18326 - - 18325 - - 18328 - - 18329 - - 18330 - - 18135 - - 18136 - - 18137 - - 22048 - - 22201 - - uid: 82 + - 19357 + - 19358 + - 19359 + - 971 + - 19507 + - 19506 + - 19505 + - 19508 + - 19509 + - 19510 + - 19351 + - 19352 + - 19353 + - 24431 + - 24673 + - 24589 + - 24836 + - uid: 167 components: - type: Transform rot: 1.5707963267948966 rad @@ -20581,20 +20971,20 @@ entities: parent: 2 - type: DeviceList devices: - - 18327 - - 18326 - - 18328 - - 18329 - - 18331 - - 18334 - - 18332 - - 841 - - 789 - - 22051 - - 22204 - - 22203 - - 22050 - - uid: 83 + - 19507 + - 19506 + - 19508 + - 19509 + - 19511 + - 19514 + - 19512 + - 972 + - 937 + - 24434 + - 24676 + - 24675 + - 24433 + - uid: 168 components: - type: Transform rot: -1.5707963267948966 rad @@ -20602,16 +20992,20 @@ entities: parent: 2 - type: DeviceList devices: - - 18135 - - 18136 - - 18137 - - 18152 - - 18151 - - 18150 - - 842 - - 22200 - - 22047 - - uid: 84 + - 19351 + - 19352 + - 19353 + - 19368 + - 19367 + - 19366 + - 973 + - 24672 + - 24430 + - 24739 + - 24587 + - 24588 + - 24834 + - uid: 169 components: - type: Transform rot: -1.5707963267948966 rad @@ -20619,20 +21013,20 @@ entities: parent: 2 - type: DeviceList devices: - - 18152 - - 18151 - - 18150 - - 18335 - - 18206 - - 18207 - - 18208 - - 18114 - - 18115 - - 18116 - - 843 - - 22141 - - 21981 - - uid: 85 + - 19368 + - 19367 + - 19366 + - 19515 + - 19422 + - 19423 + - 19424 + - 19330 + - 19331 + - 19332 + - 974 + - 24625 + - 24378 + - uid: 170 components: - type: Transform rot: 1.5707963267948966 rad @@ -20640,25 +21034,25 @@ entities: parent: 2 - type: DeviceList devices: - - 18206 - - 18207 - - 18208 - - 18209 - - 18210 - - 18211 - - 18213 - - 18212 - - 18214 - - 844 - - 22219 - - 22065 - - 22066 - - 22220 - - 18338 - - 18337 - - 18336 - - 18339 - - uid: 86 + - 19422 + - 19423 + - 19424 + - 19425 + - 19426 + - 19427 + - 19429 + - 19428 + - 19430 + - 975 + - 24691 + - 24448 + - 24449 + - 24692 + - 19518 + - 19517 + - 19516 + - 19519 + - uid: 171 components: - type: Transform rot: 1.5707963267948966 rad @@ -20666,46 +21060,48 @@ entities: parent: 2 - type: DeviceList devices: - - 18064 - - 18450 - - 22225 - - 22074 - - 846 - - 847 - - 18349 - - 18350 - - 18353 - - 18352 - - 18351 - - 18354 - - 18348 - - 18347 - - 18203 - - 18204 - - 18205 - - 18337 - - 18336 - - 18063 - - uid: 87 + - 19283 + - 19621 + - 24696 + - 24456 + - 977 + - 978 + - 19529 + - 19530 + - 19533 + - 19532 + - 19531 + - 19534 + - 19528 + - 19527 + - 19419 + - 19420 + - 19421 + - 19517 + - 19516 + - 19282 + - 24450 + - 24743 + - uid: 172 components: - type: Transform pos: -50.5,-26.5 parent: 2 - type: DeviceList devices: - - 18340 - - 18205 - - 18204 - - 18203 - - 18346 - - 18341 - - 18342 - - 18345 - - 18344 - - 848 - - 22068 - - 22221 - - uid: 88 + - 19520 + - 19421 + - 19420 + - 19419 + - 19526 + - 19521 + - 19522 + - 19525 + - 19524 + - 979 + - 24451 + - 24693 + - uid: 173 components: - type: Transform rot: 3.141592653589793 rad @@ -20713,10 +21109,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18346 - - 18384 - - 849 - - uid: 89 + - 19526 + - 19561 + - 980 + - 24364 + - 24824 + - 24360 + - 24825 + - uid: 174 components: - type: Transform rot: 1.5707963267948966 rad @@ -20724,16 +21124,16 @@ entities: parent: 2 - type: DeviceList devices: - - 851 - - 850 - - 18345 - - 18384 - - 22072 - - 22223 - - 22071 - - 36940 - - 919 - - uid: 90 + - 982 + - 981 + - 19525 + - 19561 + - 24454 + - 24694 + - 24453 + - 19669 + - 1047 + - uid: 175 components: - type: Transform rot: -1.5707963267948966 rad @@ -20741,12 +21141,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18341 - - 18342 - - 22069 - - 852 - - 18057 - - uid: 91 + - 19521 + - 19522 + - 24452 + - 983 + - 19276 + - 24829 + - 24830 + - uid: 176 components: - type: Transform rot: -1.5707963267948966 rad @@ -20754,18 +21156,18 @@ entities: parent: 2 - type: DeviceList devices: - - 18351 - - 18352 - - 18353 - - 18355 - - 18356 - - 18358 - - 18359 - - 18360 - - 853 - - 22075 - - 22226 - - uid: 92 + - 19531 + - 19532 + - 19533 + - 19535 + - 19536 + - 19538 + - 19539 + - 19540 + - 984 + - 24457 + - 24697 + - uid: 177 components: - type: Transform rot: -1.5707963267948966 rad @@ -20773,11 +21175,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22227 - - 22076 - - 854 - - 18355 - - uid: 93 + - 24698 + - 24458 + - 985 + - 19535 + - uid: 178 components: - type: Transform rot: -1.5707963267948966 rad @@ -20785,11 +21187,11 @@ entities: parent: 2 - type: DeviceList devices: - - 855 - - 18356 - - 18357 - - 22109 - - uid: 94 + - 986 + - 19536 + - 19537 + - 24481 + - uid: 179 components: - type: Transform rot: -1.5707963267948966 rad @@ -20797,12 +21199,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18360 - - 18359 - - 18358 - - 18361 - - 18362 - - uid: 95 + - 19540 + - 19539 + - 19538 + - 19541 + - 19542 + - uid: 180 components: - type: Transform rot: 1.5707963267948966 rad @@ -20810,12 +21212,12 @@ entities: parent: 2 - type: DeviceList devices: - - 857 - - 18215 - - 18202 - - 22206 - - 22053 - - uid: 96 + - 988 + - 19431 + - 19418 + - 24678 + - 24436 + - uid: 181 components: - type: Transform rot: 1.5707963267948966 rad @@ -20823,25 +21225,25 @@ entities: parent: 2 - type: DeviceList devices: - - 18197 - - 18196 - - 18198 - - 18199 - - 18200 - - 18201 - - 18202 - - 18195 - - 18194 - - 18192 - - 18193 - - 18385 - - 18386 - - 18387 - - 18191 - - 859 - - 22056 - - 22209 - - uid: 97 + - 19413 + - 19412 + - 19414 + - 19415 + - 19416 + - 19417 + - 19418 + - 19411 + - 19410 + - 19408 + - 19409 + - 19562 + - 19563 + - 19564 + - 19407 + - 990 + - 24439 + - 24681 + - uid: 182 components: - type: Transform rot: -1.5707963267948966 rad @@ -20849,13 +21251,13 @@ entities: parent: 2 - type: DeviceList devices: - - 22210 - - 22057 - - 18195 - - 18196 - - 18388 - - 860 - - uid: 98 + - 24682 + - 24440 + - 19411 + - 19412 + - 19565 + - 991 + - uid: 183 components: - type: Transform rot: 1.5707963267948966 rad @@ -20863,17 +21265,17 @@ entities: parent: 2 - type: DeviceList devices: - - 18190 - - 18385 - - 18386 - - 18387 - - 18187 - - 18188 - - 18189 - - 858 - - 22058 - - 22211 - - uid: 99 + - 19406 + - 19562 + - 19563 + - 19564 + - 19403 + - 19404 + - 19405 + - 989 + - 24441 + - 24683 + - uid: 184 components: - type: Transform rot: 1.5707963267948966 rad @@ -20881,11 +21283,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18189 - - 18229 - - 22126 - - 22271 - - uid: 100 + - 19405 + - 19445 + - 24496 + - 24732 + - uid: 185 components: - type: Transform rot: 1.5707963267948966 rad @@ -20893,11 +21295,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18188 - - 18187 - - 18228 - - 861 - - uid: 101 + - 19404 + - 19403 + - 19444 + - 992 + - uid: 186 components: - type: Transform rot: 3.141592653589793 rad @@ -20905,9 +21307,9 @@ entities: parent: 2 - type: DeviceList devices: - - 22060 - - 22214 - - uid: 102 + - 24443 + - 24686 + - uid: 187 components: - type: Transform rot: 3.141592653589793 rad @@ -20915,16 +21317,16 @@ entities: parent: 2 - type: DeviceList devices: - - 18192 - - 18193 - - 18194 - - 18225 - - 18222 - - 18227 - - 862 - - 22062 - - 22216 - - uid: 103 + - 19408 + - 19409 + - 19410 + - 19441 + - 19438 + - 19443 + - 993 + - 24445 + - 24688 + - uid: 188 components: - type: Transform rot: 1.5707963267948966 rad @@ -20932,24 +21334,24 @@ entities: parent: 2 - type: DeviceList devices: - - 863 - - 18226 - - 18225 - - 22061 - - 22215 - - uid: 104 + - 994 + - 19442 + - 19441 + - 24444 + - 24687 + - uid: 189 components: - type: Transform pos: -64.5,-63.5 parent: 2 - type: DeviceList devices: - - 18223 - - 18224 - - 22217 - - 865 - - 22063 - - uid: 105 + - 19439 + - 19440 + - 24689 + - 996 + - 24446 + - uid: 190 components: - type: Transform rot: -1.5707963267948966 rad @@ -20957,12 +21359,12 @@ entities: parent: 2 - type: DeviceList devices: - - 866 - - 22064 - - 22218 - - 18224 - - 18040 - - uid: 106 + - 997 + - 24447 + - 24690 + - 19440 + - 19210 + - uid: 191 components: - type: Transform rot: -1.5707963267948966 rad @@ -20970,12 +21372,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18227 - - 21976 - - 22247 - - 18060 - - 914 - - uid: 107 + - 19443 + - 24373 + - 24716 + - 19279 + - 1042 + - uid: 192 components: - type: Transform rot: 1.5707963267948966 rad @@ -20983,25 +21385,25 @@ entities: parent: 2 - type: DeviceList devices: - - 867 - - 22205 - - 22052 - - 18369 - - 18368 - - 18366 - - 18367 - - uid: 108 + - 998 + - 24677 + - 24435 + - 19549 + - 19548 + - 19546 + - 19547 + - uid: 193 components: - type: Transform pos: -36.5,-50.5 parent: 2 - type: DeviceList devices: - - 18198 - - 22207 - - 22054 - - 18366 - - uid: 109 + - 19414 + - 24679 + - 24437 + - 19546 + - uid: 194 components: - type: Transform rot: -1.5707963267948966 rad @@ -21009,19 +21411,19 @@ entities: parent: 2 - type: DeviceList devices: - - 18113 - - 18112 - - 18111 - - 18119 - - 18118 - - 18117 - - 18114 - - 18115 - - 18116 - - 868 - - 22199 - - 22046 - - uid: 110 + - 19329 + - 19328 + - 19327 + - 19335 + - 19334 + - 19333 + - 19330 + - 19331 + - 19332 + - 999 + - 24671 + - 24429 + - uid: 195 components: - type: Transform rot: -1.5707963267948966 rad @@ -21029,17 +21431,19 @@ entities: parent: 2 - type: DeviceList devices: - - 18113 - - 18112 - - 18111 - - 18108 - - 18109 - - 18110 - - 18365 - - 869 - - 22049 - - 22202 - - uid: 111 + - 19329 + - 19328 + - 19327 + - 19324 + - 19325 + - 19326 + - 19545 + - 1000 + - 24432 + - 24674 + - 24832 + - 24585 + - uid: 196 components: - type: Transform rot: -1.5707963267948966 rad @@ -21047,38 +21451,40 @@ entities: parent: 2 - type: DeviceList devices: - - 18110 - - 18109 - - 18108 - - 18105 - - 18106 - - 18107 - - 870 - - 22045 - - 22198 - - uid: 112 + - 19326 + - 19325 + - 19324 + - 19321 + - 19322 + - 19323 + - 1001 + - 24428 + - 24670 + - uid: 197 components: - type: Transform pos: -24.5,-68.5 parent: 2 - type: DeviceList devices: - - 18105 - - 18106 - - 18107 - - 18176 - - 18177 - - 18175 - - 18174 - - 18173 - - 18389 - - 18102 - - 18103 - - 18104 - - 871 - - 22196 - - 22043 - - uid: 113 + - 19321 + - 19322 + - 19323 + - 19392 + - 19393 + - 19391 + - 19390 + - 19389 + - 19566 + - 19318 + - 19319 + - 19320 + - 1002 + - 24586 + - 24833 + - 24369 + - 24741 + - uid: 198 components: - type: Transform rot: 1.5707963267948966 rad @@ -21086,31 +21492,31 @@ entities: parent: 2 - type: DeviceList devices: - - 22044 - - 872 - - 22197 - - 18364 - - 18177 - - 18176 - - uid: 114 + - 24427 + - 1003 + - 24669 + - 19544 + - 19393 + - 19392 + - uid: 199 components: - type: Transform pos: -31.5,-79.5 parent: 2 - type: DeviceList devices: - - 18180 - - 18179 - - 18178 - - 18181 - - 18182 - - 873 - - 22193 - - 22040 - - 22135 - - 22125 - - 18494 - - uid: 115 + - 19396 + - 19395 + - 19394 + - 19397 + - 19398 + - 1004 + - 24666 + - 24424 + - 24620 + - 24495 + - 19656 + - uid: 200 components: - type: Transform rot: 1.5707963267948966 rad @@ -21118,14 +21524,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18184 - - 18183 - - 874 - - 22194 - - 22041 - - 18181 - - 18182 - - uid: 116 + - 19400 + - 19399 + - 1005 + - 24667 + - 24425 + - 19397 + - 19398 + - uid: 201 components: - type: Transform rot: 1.5707963267948966 rad @@ -21133,14 +21539,14 @@ entities: parent: 2 - type: DeviceList devices: - - 875 - - 22042 - - 22195 - - 18186 - - 18183 - - 18184 - - 18185 - - uid: 117 + - 1006 + - 24426 + - 24668 + - 19402 + - 19399 + - 19400 + - 19401 + - uid: 202 components: - type: Transform rot: 1.5707963267948966 rad @@ -21148,16 +21554,16 @@ entities: parent: 2 - type: DeviceList devices: - - 877 - - 18164 - - 18163 - - 18162 - - 18395 - - 18394 - - 18232 - - 22032 - - 22186 - - uid: 118 + - 1008 + - 19380 + - 19379 + - 19378 + - 19572 + - 19571 + - 19448 + - 24416 + - 24659 + - uid: 203 components: - type: Transform rot: 1.5707963267948966 rad @@ -21165,16 +21571,16 @@ entities: parent: 2 - type: DeviceList devices: - - 18170 - - 18167 - - 18168 - - 18169 - - 22188 - - 22035 - - 879 - - 22240 - - 22094 - - uid: 119 + - 19386 + - 19383 + - 19384 + - 19385 + - 24661 + - 24419 + - 1010 + - 24709 + - 24472 + - uid: 204 components: - type: Transform rot: 1.5707963267948966 rad @@ -21182,27 +21588,27 @@ entities: parent: 2 - type: DeviceList devices: - - 22037 - - 18230 - - 18396 - - uid: 120 + - 24421 + - 19446 + - 19573 + - uid: 205 components: - type: Transform pos: 19.5,-70.5 parent: 2 - type: DeviceList devices: - - 18090 - - 18091 - - 18092 - - 18235 - - 18236 - - 18237 - - 18095 - - 18094 - - 18093 - - 880 - - uid: 121 + - 19306 + - 19307 + - 19308 + - 19451 + - 19452 + - 19453 + - 19311 + - 19310 + - 19309 + - 1011 + - uid: 206 components: - type: Transform rot: 1.5707963267948966 rad @@ -21210,18 +21616,18 @@ entities: parent: 2 - type: DeviceList devices: - - 18095 - - 18094 - - 18093 - - 18238 - - 18239 - - 18096 - - 18097 - - 18098 - - 881 - - 22183 - - 22028 - - uid: 122 + - 19311 + - 19310 + - 19309 + - 19454 + - 19455 + - 19312 + - 19313 + - 19314 + - 1012 + - 24656 + - 24412 + - uid: 207 components: - type: Transform rot: 1.5707963267948966 rad @@ -21229,23 +21635,23 @@ entities: parent: 2 - type: DeviceList devices: - - 882 - - 22184 - - 22029 - - 18241 - - 18238 - - 18239 - - uid: 123 + - 1013 + - 24657 + - 24413 + - 19457 + - 19454 + - 19455 + - uid: 208 components: - type: Transform pos: 37.5,-70.5 parent: 2 - type: DeviceList devices: - - 883 - - 18240 - - 18241 - - uid: 124 + - 1014 + - 19456 + - 19457 + - uid: 209 components: - type: Transform rot: 1.5707963267948966 rad @@ -21253,17 +21659,17 @@ entities: parent: 2 - type: DeviceList devices: - - 18371 - - 18096 - - 18097 - - 18098 - - 18099 - - 18100 - - 18101 - - 884 - - 22027 - - 22182 - - uid: 126 + - 19551 + - 19312 + - 19313 + - 19314 + - 19315 + - 19316 + - 19317 + - 1015 + - 24411 + - 24655 + - uid: 210 components: - type: Transform rot: 3.141592653589793 rad @@ -21271,12 +21677,12 @@ entities: parent: 2 - type: DeviceList devices: - - 22036 - - 878 - - 22189 - - 22091 - - 22239 - - uid: 127 + - 24420 + - 1009 + - 24662 + - 24469 + - 24708 + - uid: 211 components: - type: Transform rot: 3.141592653589793 rad @@ -21284,28 +21690,28 @@ entities: parent: 2 - type: DeviceList devices: - - 22089 - - 22237 - - 22238 - - 22090 - - 886 - - uid: 128 + - 24467 + - 24706 + - 24707 + - 24468 + - 1016 + - uid: 212 components: - type: Transform pos: 43.5,-91.5 parent: 2 - type: DeviceList devices: - - 22243 - - 22137 - - 22093 - - 22092 - - 18024 - - 18025 - - 18023 - - 18022 - - 22138 - - uid: 129 + - 24712 + - 24621 + - 24471 + - 24470 + - 19176 + - 19177 + - 19175 + - 19174 + - 24622 + - uid: 213 components: - type: Transform rot: 1.5707963267948966 rad @@ -21313,9 +21719,9 @@ entities: parent: 2 - type: DeviceList devices: - - 22241 - - 22095 - - uid: 131 + - 24710 + - 24473 + - uid: 214 components: - type: Transform rot: 3.141592653589793 rad @@ -21323,36 +21729,39 @@ entities: parent: 2 - type: DeviceList devices: - - 18158 - - 18157 - - 18156 - - 18220 - - 18219 - - 18218 - - 18401 - - 18217 - - 888 - - 22079 - - 22230 - - uid: 132 + - 19374 + - 19373 + - 19372 + - 19436 + - 19435 + - 19434 + - 19575 + - 19433 + - 1018 + - 24461 + - 24701 + - 19709 + - uid: 215 components: - type: Transform pos: -73.5,-34.5 parent: 2 - type: DeviceList devices: - - 18220 - - 18219 - - 18218 - - 18221 - - 18404 - - 18405 - - 18406 - - 18407 - - 889 - - 22232 - - 22080 - - uid: 133 + - 19436 + - 19435 + - 19434 + - 19437 + - 19578 + - 19579 + - 19580 + - 19581 + - 1019 + - 24703 + - 24462 + - 24831 + - 24584 + - uid: 216 components: - type: Transform rot: 3.141592653589793 rad @@ -21360,12 +21769,12 @@ entities: parent: 2 - type: DeviceList devices: - - 890 - - 18403 - - 18221 - - 22231 - - 22081 - - uid: 134 + - 1020 + - 19577 + - 19437 + - 24702 + - 24463 + - uid: 217 components: - type: Transform rot: -1.5707963267948966 rad @@ -21373,14 +21782,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18408 - - 18240 - - 18242 - - 18372 - - 18001 - - 18371 - - 892 - - uid: 135 + - 19582 + - 19456 + - 19458 + - 19552 + - 19154 + - 19551 + - 1022 + - uid: 218 components: - type: Transform rot: -1.5707963267948966 rad @@ -21388,14 +21797,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18408 - - 18237 - - 18410 - - 18375 - - 18235 - - 18409 - - 893 - - uid: 136 + - 19582 + - 19453 + - 19584 + - 19555 + - 19451 + - 19583 + - 1023 + - uid: 219 components: - type: Transform rot: -1.5707963267948966 rad @@ -21403,11 +21812,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18409 - - 18233 - - 18234 - - 894 - - uid: 137 + - 19583 + - 19449 + - 19450 + - 1024 + - uid: 220 components: - type: Transform rot: 1.5707963267948966 rad @@ -21415,33 +21824,33 @@ entities: parent: 2 - type: DeviceList devices: - - 18412 - - 18388 - - 18197 - - 18365 - - 895 - - uid: 138 + - 19585 + - 19565 + - 19413 + - 19545 + - 1025 + - uid: 221 components: - type: Transform pos: -43.5,-93.5 parent: 2 - type: DeviceList devices: - - 18364 - - 18412 - - 18229 - - 18186 - - 18414 - - 18415 - - 18413 - - 896 - - uid: 139 + - 19544 + - 19585 + - 19445 + - 19402 + - 19587 + - 19588 + - 19586 + - 1026 + - uid: 222 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-89.5 parent: 2 - - uid: 140 + - uid: 223 components: - type: Transform rot: 1.5707963267948966 rad @@ -21449,12 +21858,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18370 - - 18422 - - 18423 - - 18424 - - 18216 - - uid: 141 + - 19550 + - 19595 + - 19596 + - 19597 + - 19432 + - uid: 224 components: - type: Transform rot: 1.5707963267948966 rad @@ -21462,14 +21871,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18363 - - 18344 - - 18429 - - 18428 - - 18425 - - 18430 - - 900 - - uid: 142 + - 19543 + - 19524 + - 19602 + - 19601 + - 19598 + - 19603 + - 1030 + - uid: 225 components: - type: Transform rot: -1.5707963267948966 rad @@ -21477,28 +21886,28 @@ entities: parent: 2 - type: DeviceList devices: - - 18425 - - 18429 - - 18428 - - 18426 - - 18427 - - 18432 - - 901 - - 18065 - - 18067 - - uid: 143 + - 19598 + - 19602 + - 19601 + - 19599 + - 19600 + - 19604 + - 1031 + - 19284 + - 19286 + - uid: 226 components: - type: Transform pos: -62.5,-5.5 parent: 2 - type: DeviceList devices: - - 18433 - - 18426 - - 18427 - - 18434 - - 902 - - uid: 144 + - 19605 + - 19599 + - 19600 + - 19606 + - 1032 + - uid: 227 components: - type: Transform rot: 1.5707963267948966 rad @@ -21506,13 +21915,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18361 - - 18435 - - 18436 - - 18437 - - 903 - - 18463 - - uid: 145 + - 19541 + - 19607 + - 19608 + - 19609 + - 1033 + - 19627 + - uid: 228 components: - type: Transform rot: 1.5707963267948966 rad @@ -21520,13 +21929,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18435 - - 18331 - - 18357 - - 18330 - - 18438 - - 904 - - uid: 146 + - 19607 + - 19511 + - 19537 + - 19510 + - 19610 + - 1034 + - uid: 229 components: - type: Transform rot: -1.5707963267948966 rad @@ -21534,11 +21943,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18436 - - 18332 - - 18439 - - 906 - - uid: 147 + - 19608 + - 19512 + - 19611 + - 1036 + - uid: 230 components: - type: Transform rot: -1.5707963267948966 rad @@ -21546,22 +21955,22 @@ entities: parent: 2 - type: DeviceList devices: - - 18307 - - 18441 - - 912 - - 18440 - - 18333 - - uid: 148 + - 19488 + - 19613 + - 1041 + - 19612 + - 19513 + - uid: 231 components: - type: Transform pos: 33.5,-22.5 parent: 2 - type: DeviceList devices: - - 18272 - - 18443 - - 908 - - uid: 149 + - 19487 + - 19615 + - 1038 + - uid: 232 components: - type: Transform rot: 1.5707963267948966 rad @@ -21569,24 +21978,24 @@ entities: parent: 2 - type: DeviceList devices: - - 21974 - - 22242 - - 18006 - - 18005 - - 18024 - - 18025 - - uid: 150 + - 24372 + - 24711 + - 19159 + - 19158 + - 19176 + - 19177 + - uid: 233 components: - type: Transform pos: 26.5,26.5 parent: 2 - type: DeviceList devices: - - 18308 - - 18440 - - 907 - - 18442 - - uid: 151 + - 19489 + - 19612 + - 1037 + - 19614 + - uid: 234 components: - type: Transform rot: 1.5707963267948966 rad @@ -21594,45 +22003,47 @@ entities: parent: 2 - type: DeviceList devices: - - 22244 - - 22096 - - uid: 152 + - 24713 + - 24474 + - uid: 235 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-78.5 parent: 2 - - uid: 153 + - uid: 236 components: - type: Transform pos: -45.5,-41.5 parent: 2 - type: DeviceList devices: - - 18119 - - 18118 - - 18117 - - 18209 - - 18210 - - 18211 - - 18213 - - 18212 - - 18214 - - 18367 - - 18368 - - 18369 - - 18199 - - 18200 - - 18201 - - 18215 - - 18153 - - 18154 - - 18155 - - 856 - - 22077 - - 22228 - - 18491 - - uid: 154 + - 19335 + - 19334 + - 19333 + - 19425 + - 19426 + - 19427 + - 19429 + - 19428 + - 19430 + - 19547 + - 19548 + - 19549 + - 19415 + - 19416 + - 19417 + - 19431 + - 19369 + - 19370 + - 19371 + - 987 + - 24459 + - 24699 + - 19653 + - 24826 + - 24582 + - uid: 237 components: - type: Transform rot: 1.5707963267948966 rad @@ -21640,46 +22051,46 @@ entities: parent: 2 - type: DeviceList devices: - - 18375 - - 18008 - - 910 - - uid: 156 + - 19555 + - 19161 + - 1040 + - uid: 238 components: - type: Transform pos: -1.5,-73.5 parent: 2 - type: DeviceList devices: - - 18161 - - 18160 - - 18159 - - 876 - - 18171 - - 18390 - - 18172 - - 18102 - - 18103 - - 18104 - - 22038 - - 22191 - - 18092 - - 18091 - - 18090 - - 18234 - - 18466 - - uid: 160 + - 19377 + - 19376 + - 19375 + - 1007 + - 19387 + - 19567 + - 19388 + - 19318 + - 19319 + - 19320 + - 24422 + - 24664 + - 19308 + - 19307 + - 19306 + - 19450 + - 19630 + - uid: 239 components: - type: Transform pos: -66.5,8.5 parent: 2 - type: DeviceList devices: - - 18463 - - 18464 - - 18433 - - 924 - - 18070 - - uid: 161 + - 19627 + - 19628 + - 19605 + - 1048 + - 19289 + - uid: 240 components: - type: Transform rot: 1.5707963267948966 rad @@ -21687,10 +22098,10 @@ entities: parent: 2 - type: DeviceList devices: - - 925 - - 18465 - - 18464 - - uid: 162 + - 1049 + - 19629 + - 19628 + - uid: 241 components: - type: Transform rot: -1.5707963267948966 rad @@ -21698,12 +22109,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18448 - - 18447 - - 909 - - 21973 - - 22131 - - uid: 163 + - 19619 + - 19618 + - 1039 + - 24371 + - 24617 + - uid: 242 components: - type: Transform rot: 1.5707963267948966 rad @@ -21711,25 +22122,25 @@ entities: parent: 2 - type: DeviceList devices: - - 905 - - 18335 - - 18354 - - 18438 - - uid: 164 + - 1035 + - 19515 + - 19534 + - 19610 + - uid: 243 components: - type: Transform pos: -34.5,-27.5 parent: 2 - type: DeviceList devices: - - 18055 - - 18064 - - 18339 - - 18450 - - 18063 - - 845 - - 22073 - - uid: 165 + - 19274 + - 19283 + - 19519 + - 19621 + - 19282 + - 976 + - 24455 + - uid: 244 components: - type: Transform rot: -1.5707963267948966 rad @@ -21737,11 +22148,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18065 - - 18067 - - 18068 - - 926 - - uid: 166 + - 19284 + - 19286 + - 19287 + - 1050 + - uid: 245 components: - type: Transform rot: 3.141592653589793 rad @@ -21749,10 +22160,10 @@ entities: parent: 2 - type: DeviceList devices: - - 18066 - - 18069 - - 927 - - uid: 167 + - 19285 + - 19288 + - 1051 + - uid: 246 components: - type: Transform rot: 1.5707963267948966 rad @@ -21760,11 +22171,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18068 - - 18069 - - 18070 - - 928 - - uid: 168 + - 19287 + - 19288 + - 19289 + - 1052 + - uid: 247 components: - type: Transform rot: -1.5707963267948966 rad @@ -21772,35 +22183,39 @@ entities: parent: 2 - type: DeviceList devices: - - 21972 - - 22246 - - 824 - - 941 - - 18483 - - 18482 - - 18481 - - 18480 - - 18479 - - 18477 - - 18476 - - 18475 - - 18474 - - 18473 - - 18472 - - 18468 - - 18487 - - 18449 - - 18061 - - 18046 - - 18042 - - 18043 - - 18045 - - 22098 - - 18044 - - 18041 - - 18026 - - 18027 - - uid: 169 + - 24370 + - 24715 + - 956 + - 1065 + - 19647 + - 19646 + - 19645 + - 19644 + - 19643 + - 19641 + - 19640 + - 19639 + - 19638 + - 19637 + - 19636 + - 19632 + - 19651 + - 19620 + - 19280 + - 19216 + - 19212 + - 19213 + - 19215 + - 24476 + - 19214 + - 19211 + - 19178 + - 19179 + - 24807 + - 24573 + - 24808 + - 24812 + - uid: 248 components: - type: Transform rot: -1.5707963267948966 rad @@ -21808,15 +22223,17 @@ entities: parent: 2 - type: DeviceList devices: - - 18468 - - 18469 - - 18470 - - 18471 - - 18486 - - 916 - - 22128 - - 22100 - - uid: 170 + - 19632 + - 19633 + - 19634 + - 19635 + - 19650 + - 1044 + - 24810 + - 24477 + - 24809 + - 24813 + - uid: 249 components: - type: Transform rot: 1.5707963267948966 rad @@ -21824,21 +22241,23 @@ entities: parent: 2 - type: DeviceList devices: - - 18478 - - 18477 - - 18476 - - 18475 - - 18474 - - 18473 - - 18472 - - 18469 - - 18470 - - 18471 - - 18308 - - 915 - - 22127 - - 21977 - - uid: 171 + - 19642 + - 19641 + - 19640 + - 19639 + - 19638 + - 19637 + - 19636 + - 19633 + - 19634 + - 19635 + - 19489 + - 1043 + - 24815 + - 24374 + - 24735 + - 24814 + - uid: 250 components: - type: Transform rot: 1.5707963267948966 rad @@ -21846,9 +22265,9 @@ entities: parent: 2 - type: DeviceList devices: - - 22097 - - 22130 - - uid: 172 + - 24475 + - 24616 + - uid: 251 components: - type: Transform rot: 3.141592653589793 rad @@ -21856,18 +22275,19 @@ entities: parent: 2 - type: DeviceList devices: - - 18478 - - 18479 - - 18480 - - 18481 - - 18482 - - 18483 - - 18484 - - 22102 - - 22129 - - 917 - - 18485 - - uid: 173 + - 19642 + - 19643 + - 19644 + - 19645 + - 19646 + - 19647 + - 19648 + - 24479 + - 24615 + - 1045 + - 19649 + - 24811 + - uid: 252 components: - type: Transform rot: 3.141592653589793 rad @@ -21875,17 +22295,17 @@ entities: parent: 2 - type: DeviceList devices: - - 18445 - - 18041 - - 18044 - - 18045 - - 18043 - - 18042 - - 18046 - - 22245 - - 918 - - 22101 - - uid: 174 + - 19617 + - 19211 + - 19214 + - 19215 + - 19213 + - 19212 + - 19216 + - 24714 + - 1046 + - 24478 + - uid: 253 components: - type: Transform rot: 3.141592653589793 rad @@ -21893,11 +22313,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22265 - - 937 - - 22119 - - 18349 - - uid: 175 + - 24728 + - 1061 + - 24491 + - 19529 + - uid: 254 components: - type: Transform rot: -1.5707963267948966 rad @@ -21905,11 +22325,11 @@ entities: parent: 2 - type: DeviceList devices: - - 936 - - 21978 - - 22250 - - 18350 - - uid: 178 + - 1060 + - 24375 + - 24718 + - 19530 + - uid: 255 components: - type: Transform rot: 1.5707963267948966 rad @@ -21917,37 +22337,37 @@ entities: parent: 2 - type: DeviceList devices: - - 22133 - - 22122 - - 22134 - - 938 - - 18444 - - 18059 - - 18490 - - uid: 179 + - 24618 + - 24492 + - 24619 + - 1062 + - 19616 + - 19278 + - 19652 + - uid: 256 components: - type: Transform pos: 34.5,24.5 parent: 2 - type: DeviceList devices: - - 22124 - - 22268 - - 940 - - 939 - - 22269 - - 22123 - - 18493 - - 18047 - - uid: 181 + - 24494 + - 24730 + - 1064 + - 1063 + - 24731 + - 24493 + - 19655 + - 19217 + - uid: 257 components: - type: Transform pos: -55.5,-55.5 parent: 2 - type: DeviceList devices: - - 942 - - uid: 394 + - 1066 + - uid: 258 components: - type: Transform rot: 3.141592653589793 rad @@ -21955,51 +22375,51 @@ entities: parent: 2 - type: DeviceList devices: - - 17941 - - 2635 - - 2633 - - 12998 - - 2816 - - 19563 - - 35913 - - 7784 - - 40464 - - 40465 - - uid: 543 + - 19273 + - 24349 + - 24348 + - 24600 + - 24597 + - 1071 + - 19668 + - 19249 + - 19235 + - 19236 + - uid: 259 components: - type: Transform pos: 88.5,-0.5 parent: 2 - type: DeviceList devices: - - 29693 - - 29705 - - 29394 - - 31095 - - uid: 818 + - 24748 + - 24749 + - 24508 + - 19222 + - uid: 260 components: - type: Transform pos: 52.5,-16.5 parent: 2 - type: DeviceList devices: - - 19580 - - uid: 1502 + - 24367 + - uid: 261 components: - type: Transform pos: 52.5,-49.5 parent: 2 - - uid: 1595 + - uid: 262 components: - type: Transform pos: 80.5,-0.5 parent: 2 - type: DeviceList devices: - - 29690 - - 29395 - - 31064 - - uid: 2071 + - 24747 + - 24509 + - 19220 + - uid: 263 components: - type: Transform rot: 3.141592653589793 rad @@ -22007,62 +22427,62 @@ entities: parent: 2 - type: DeviceList devices: - - 15321 - - 17374 - - 813 - - 7785 - - 15606 - - uid: 2712 + - 24604 + - 1068 + - 24344 + - 19250 + - 19272 + - uid: 264 components: - type: Transform pos: 49.5,-21.5 parent: 2 - type: DeviceList devices: - - 24897 - - 1114 - - 40432 - - 40433 - - 19578 - - 15780 - - 40435 - - 40434 - - 32766 - - 13001 - - 2675 - - uid: 2714 + - 24734 + - 24346 + - 19681 + - 19682 + - 24366 + - 24605 + - 19684 + - 19683 + - 19666 + - 19265 + - 19247 + - uid: 265 components: - type: Transform pos: 57.5,-16.5 parent: 2 - type: DeviceList devices: - - 9928 - - 9930 - - 9689 - - uid: 2741 + - 19189 + - 19191 + - 24599 + - uid: 266 components: - type: Transform pos: 62.5,-10.5 parent: 2 - type: DeviceList devices: - - 2743 - - 2744 - - 2742 - - 19641 - - 19587 - - uid: 7699 + - 19185 + - 19186 + - 19184 + - 24614 + - 24368 + - uid: 267 components: - type: Transform pos: 62.5,-14.5 parent: 2 - type: DeviceList devices: - - 9929 - - 9354 - - 9353 - - uid: 17835 + - 19190 + - 19188 + - 19187 + - uid: 268 components: - type: Transform rot: 1.5707963267948966 rad @@ -22070,9 +22490,9 @@ entities: parent: 2 - type: DeviceList devices: - - 9928 - - 15036 - - uid: 19617 + - 19189 + - 24603 + - uid: 269 components: - type: Transform rot: 1.5707963267948966 rad @@ -22080,26 +22500,26 @@ entities: parent: 2 - type: DeviceList devices: - - 19562 - - 814 - - 2708 - - 542 - - 11488 - - uid: 22105 + - 1070 + - 24345 + - 24596 + - 19245 + - 19254 + - uid: 270 components: - type: Transform pos: 50.5,12.5 parent: 2 - type: DeviceList devices: - - 40461 - - 40473 - - 40474 - - 40462 - - 273 - - 32456 - - 40460 - - uid: 23127 + - 19693 + - 24539 + - 24786 + - 19694 + - 24594 + - 24512 + - 19692 + - uid: 271 components: - type: MetaData name: ВС Детектив @@ -22109,34 +22529,34 @@ entities: parent: 2 - type: DeviceList devices: - - 32764 - - 24157 - - 32766 - - 40431 - - uid: 27662 + - 24751 + - 24497 + - 19666 + - 19680 + - uid: 272 components: - type: Transform pos: 49.5,-12.5 parent: 2 - type: DeviceList devices: - - 11661 - - 11664 - - 11651 - - 9351 - - 26488 - - 34897 - - 2742 - - 40444 - - 9719 - - 28180 - - 28193 - - 13006 - - 14825 - - 14898 - - 40443 - - 40445 - - uid: 30404 + - 19257 + - 19258 + - 19256 + - 19252 + - 24736 + - 24516 + - 19184 + - 19234 + - 19253 + - 24501 + - 24738 + - 19266 + - 19269 + - 19270 + - 19686 + - 19687 + - uid: 273 components: - type: Transform rot: -1.5707963267948966 rad @@ -22144,44 +22564,44 @@ entities: parent: 2 - type: DeviceList devices: - - 39493 - - 39492 - - 39495 - - 39494 - - 39490 - - 39491 - - 39485 - - 39486 - - 39487 - - 39484 - - uid: 30920 + - 24519 + - 24756 + - 24757 + - 24520 + - 24518 + - 24755 + - 19672 + - 19673 + - 19674 + - 1076 + - uid: 274 components: - type: Transform pos: 84.5,-0.5 parent: 2 - type: DeviceList devices: - - 31092 - - 29393 - - 29693 - - uid: 30927 + - 19221 + - 24507 + - 24748 + - uid: 275 components: - type: Transform pos: 76.5,-5.5 parent: 2 - type: DeviceList devices: - - 30967 - - 30968 - - 31097 - - 24335 - - 31064 - - 31092 - - 31095 - - 29689 - - 29392 - - 30954 - - uid: 37871 + - 19181 + - 19182 + - 19223 + - 19218 + - 19220 + - 19221 + - 19222 + - 24746 + - 24506 + - 19180 + - uid: 276 components: - type: Transform rot: -1.5707963267948966 rad @@ -22189,738 +22609,867 @@ entities: parent: 2 - type: DeviceList devices: - - 37832 - - 37727 - - 34433 - - 32775 - - 37875 - - 37876 - - 37877 - - 37878 - - 15606 - - 40497 - - 37831 - - 37714 - - uid: 37888 + - 24754 + - 24753 + - 24515 + - 24513 + - 1074 + - 1075 + - 19670 + - 19671 + - 19272 + - 19702 + - 24517 + - 24752 + - uid: 277 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-10.5 - parent: 37887 + rot: 1.5707963267948966 rad + pos: 24.5,-36.5 + parent: 2 - type: DeviceList devices: - - 38297 - - 38302 - - 38296 - - uid: 37889 + - 19679 + - 19228 + - 1080 + - 24521 + - 24758 + - uid: 278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 37887 + pos: 11.5,-11.5 + parent: 2 - type: DeviceList devices: - - 38294 - - 38301 - - uid: 37890 + - 1081 + - 19224 + - 19225 + - 19219 + - 19229 + - 24801 + - 24769 + - 24800 + - 24802 + - 24799 + - uid: 279 components: - type: Transform - pos: 5.5,-3.5 - parent: 37887 + rot: -1.5707963267948966 rad + pos: -4.5,-52.5 + parent: 2 - type: DeviceList devices: - - 38295 - - 38300 - - uid: 37891 + - 1082 + - 19231 + - 19230 + - uid: 280 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-8.5 - parent: 37887 + pos: -21.5,-36.5 + parent: 2 - type: DeviceList devices: - - 38292 - - 38298 - - uid: 37892 + - 1083 + - 19233 + - 19232 + - uid: 281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-8.5 - parent: 37887 + rot: 1.5707963267948966 rad + pos: 42.5,-19.5 + parent: 2 - type: DeviceList devices: - - 38299 - - 38293 - - uid: 38723 + - 24737 + - 24500 + - 19663 + - 19665 + - 19271 + - 19683 + - 19684 + - uid: 282 components: - type: Transform - pos: 2.5,-7.5 - parent: 38722 + pos: 41.5,-2.5 + parent: 2 - type: DeviceList devices: - - 38874 - - 38870 - - 38871 - - 38877 - - 38875 - - 38873 - - 38872 - - 38876 - - 38731 - - uid: 39606 + - 19280 + - 19261 + - 19260 + - 19259 + - 19689 + - 19243 + - 19255 + - 24350 + - 24598 + - uid: 283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-36.5 + rot: -1.5707963267948966 rad + pos: 45.5,-1.5 parent: 2 - type: DeviceList devices: - - 39592 - - 39593 - - 39591 - - 39594 - - 39595 - - uid: 39739 + - 24610 + - 24362 + - 24361 + - 24612 + - 24607 + - 24365 + - 24357 + - 24359 + - 24611 + - 24358 + - 24608 + - 24354 + - 24606 + - 19196 + - 19192 + - 19194 + - 19193 + - 19195 + - 19243 + - 19255 + - 24576 + - 24817 + - uid: 284 components: - type: Transform - pos: 11.5,-11.5 + pos: 52.5,-2.5 parent: 2 - type: DeviceList devices: - - 39740 - - 34351 - - 34352 - - 27021 - - 40071 - - 41234 - - 39835 - - 41233 - - 41250 - - 41221 - - uid: 40074 + - 24742 + - 24347 + - 19689 + - 19690 + - uid: 285 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-52.5 + pos: 61.5,-2.5 parent: 2 - type: DeviceList devices: - - 40075 - - 40073 - - 40072 - - uid: 40124 + - 24502 + - 24740 + - 19690 + - 19691 + - 19686 + - uid: 286 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-36.5 + pos: 55.5,6.5 parent: 2 - type: DeviceList devices: - - 40125 - - 40122 - - 40121 - - uid: 40436 + - 24784 + - 24538 + - 19254 + - 19245 + - 19692 + - 19273 + - 19250 + - 19267 + - 19691 + - 24511 + - 24785 + - uid: 287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-19.5 + pos: 64.5,-0.5 parent: 2 - type: DeviceList devices: - - 26586 - - 26761 - - 32558 - - 32744 - - 15364 - - 40434 - - 40435 - - uid: 40451 + - 24744 + - 24503 + - 19695 + - uid: 288 components: - type: Transform - pos: 41.5,-2.5 + rot: 3.141592653589793 rad + pos: 64.5,-10.5 parent: 2 - type: DeviceList devices: - - 18061 - - 11845 - - 11768 - - 11765 - - 40452 - - 180 - - 11494 - - 2653 - - 5163 - - uid: 40453 + - 24540 + - 24787 + - 19270 + - 19269 + - 19266 + - 19695 + - 19696 + - 19697 + - uid: 289 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-1.5 + pos: 71.5,-8.5 parent: 2 - type: DeviceList devices: - - 19535 - - 18700 - - 18678 - - 19566 - - 18303 - - 19531 - - 18305 - - 18461 - - 19561 - - 18378 - - 18772 - - 15732 - - 16992 - - 12304 - - 11603 - - 12189 - - 11669 - - 12293 - - 180 - - 11494 - - uid: 40455 + - 19696 + - 19697 + - 19700 + - 19701 + - 19699 + - 19698 + - 24788 + - 24541 + - 24789 + - 24542 + - 19702 + - 19703 + - uid: 290 components: - type: Transform - pos: 52.5,-2.5 + rot: 1.5707963267948966 rad + pos: 67.5,-1.5 parent: 2 - type: DeviceList devices: - - 28967 - - 1888 - - 40452 - - 40456 - - uid: 40457 + - 19702 + - 19698 + - 19703 + - 19180 + - 24542 + - 24789 + - 24510 + - 24750 + - uid: 291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-2.5 + pos: 110.5,-37.5 parent: 2 - type: DeviceList devices: - - 28515 - - 28601 - - 40456 - - 40458 - - 40443 - - uid: 40468 + - 24790 + - 24544 + - 24545 + - 24794 + - 24543 + - 24793 + - 19664 + - 19662 + - 19661 + - 1084 + - uid: 292 + components: + - type: Transform + pos: 105.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 19664 + - 19662 + - 19661 + - 19484 + - 19660 + - 19248 + - 24499 + - 24637 + - uid: 293 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,6.5 + pos: -11.5,16.5 parent: 2 - type: DeviceList devices: - - 40466 - - 40467 - - 11488 - - 542 - - 40460 - - 17941 - - 7785 - - 13374 - - 40458 - - 30411 - - 40471 - - uid: 40476 + - 24823 + - 24822 + - 24546 + - 19498 + - 19611 + - 19206 + - 19237 + - 19238 + - 19239 + - 968 + - 1067 + - uid: 294 components: - type: Transform - pos: 64.5,-0.5 + pos: 100.5,-81.5 parent: 2 - type: DeviceList devices: - - 29093 - - 29094 - - 40475 - - uid: 40487 + - 24720 + - 24719 + - 24721 + - 24722 + - 24723 + - 24726 + - 24727 + - 24725 + - uid: 295 components: - type: Transform rot: 3.141592653589793 rad - pos: 64.5,-10.5 + pos: -5.5,-55.5 parent: 2 - type: DeviceList devices: - - 40485 - - 40486 - - 14898 - - 14825 - - 13006 - - 40475 - - 40477 - - 40478 - - uid: 40490 + - 1086 + - uid: 296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-55.5 + parent: 2 + - type: DeviceList + devices: + - 1085 + - uid: 297 + components: + - type: MetaData + name: состояние газодобытчиков + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-104.5 + parent: 2 + - type: DeviceList + devices: + - 1093 + - 1088 + - 1087 + - 1089 + - 1090 + - 1091 + - 1092 + - uid: 298 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 24819 + - 1094 + - 24578 + - 19240 + - uid: 299 components: - type: Transform rot: -1.5707963267948966 rad - pos: 71.5,-8.5 + pos: -60.5,-48.5 parent: 2 - type: DeviceList devices: - - 40477 - - 40478 - - 40493 - - 40494 - - 40492 - - 40491 - - 40489 - - 40488 - - 40495 - - 40496 - - 40497 - - 40498 - - uid: 40518 + - 24828 + - 24827 + - 24583 + - 19708 + - 19709 + - 1095 + - uid: 300 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 24839 + - 24838 + - 24592 + - 19710 + - 19711 + - 1096 + - 1097 + - 961 + - 971 + - uid: 301 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-1.5 + pos: -25.5,4.5 parent: 2 - type: DeviceList devices: - - 40497 - - 40491 - - 40498 - - 30954 - - 40496 - - 40495 - - 29687 - - 29706 - - uid: 40934 + - 24593 + - 24840 + - 19505 + - 971 + - uid: 40667 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-1.5 - parent: 21045 + parent: 40666 - type: DeviceList devices: - - 22099 - - 22104 - - 21690 - - 21854 - - 21841 - - 21857 - - 32588 - - 21840 - - uid: 41014 + - 40670 + - 40671 + - 40743 + - 40731 + - 40730 + - 40732 + - 40733 + - 40744 + - uid: 40829 components: - type: Transform - pos: 110.5,-37.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 40828 - type: DeviceList devices: - - 40960 - - 40988 - - 40991 - - 40992 - - 40986 - - 40987 - - 32729 - - 29048 - - 27324 - - 41015 - - uid: 41017 + - 41243 + - 41248 + - 41242 + - uid: 40830 components: - type: Transform - pos: 105.5,-39.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 40828 + - type: DeviceList + devices: + - 41240 + - 41247 + - uid: 40831 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 40828 + - type: DeviceList + devices: + - 41241 + - 41246 + - uid: 40832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 40828 + - type: DeviceList + devices: + - 41238 + - 41244 + - uid: 40833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 40828 + - type: DeviceList + devices: + - 41245 + - 41239 + - uid: 41670 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 41669 - type: DeviceList devices: - - 32729 - - 29048 - - 27324 - - 18269 - - 25803 - - 6182 - - 26217 - - 22162 + - 41820 + - 41816 + - 41817 + - 41823 + - 41821 + - 41819 + - 41818 + - 41822 + - 41678 - proto: AirAlarmAssembly entities: - - uid: 39980 + - uid: 302 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-21.5 parent: 2 - - uid: 41251 + - uid: 303 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-33.5 parent: 2 - - uid: 41252 + - uid: 304 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-44.5 parent: 2 - - uid: 41253 + - uid: 305 components: - type: Transform pos: 3.5,-47.5 parent: 2 - - uid: 41254 + - uid: 306 components: - type: Transform pos: -8.5,-42.5 parent: 2 - proto: AirAlarmElectronics entities: - - uid: 182 + - uid: 307 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.122177,-93.39715 parent: 2 - - uid: 183 + - uid: 308 components: - type: Transform pos: 41.471703,-93.49103 parent: 2 - - uid: 184 + - uid: 309 components: - type: Transform pos: 36.3607,-37.848637 parent: 2 - proto: AirCanister entities: - - uid: 186 + - uid: 310 components: - type: Transform pos: -37.5,-23.5 parent: 2 - - uid: 187 + - uid: 311 components: - type: Transform pos: 36.5,-48.5 parent: 2 - - uid: 188 + - uid: 312 components: - type: Transform pos: 37.5,-48.5 parent: 2 - - uid: 189 + - uid: 313 components: - type: Transform pos: 38.5,-48.5 parent: 2 - - uid: 190 + - uid: 314 components: - type: Transform pos: -48.5,-92.5 parent: 2 - - uid: 191 + - uid: 315 components: - type: Transform pos: -60.5,-33.5 parent: 2 - - uid: 192 + - uid: 316 components: - type: Transform pos: -21.5,16.5 parent: 2 - - uid: 193 + - uid: 317 components: - type: Transform pos: 64.5,-45.5 parent: 2 - - uid: 194 + - uid: 318 components: - type: Transform pos: -9.5,-87.5 parent: 2 - - uid: 195 + - uid: 319 components: - type: Transform pos: -68.5,-78.5 parent: 2 - - uid: 196 + - uid: 320 components: - type: Transform pos: 91.5,-52.5 parent: 2 - - uid: 197 + - uid: 321 components: - type: Transform pos: 41.5,13.5 parent: 2 - - uid: 200 + - uid: 322 components: - type: Transform pos: -52.5,-105.5 parent: 2 - - uid: 201 + - uid: 323 components: - type: Transform pos: 36.5,35.5 parent: 2 - - uid: 202 + - uid: 324 components: - type: Transform pos: 37.5,-108.5 parent: 2 - - uid: 14865 + - uid: 325 components: - type: Transform pos: 64.5,13.5 parent: 2 - - uid: 21999 + - uid: 40668 components: - type: Transform pos: 1.5,-0.5 - parent: 21045 - - uid: 37893 + parent: 40666 + - uid: 40834 components: - type: Transform pos: 1.5,-11.5 - parent: 37887 - - uid: 38724 + parent: 40828 + - uid: 41671 components: - type: Transform pos: 1.5,-8.5 - parent: 38722 + parent: 41669 - proto: Airlock entities: - - uid: 203 + - uid: 326 components: - type: Transform pos: -44.5,-87.5 parent: 2 - - uid: 204 + - uid: 327 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-3.5 parent: 2 - - uid: 205 + - uid: 328 components: - type: Transform pos: 78.5,-34.5 parent: 2 - - uid: 206 + - uid: 329 components: - type: Transform pos: 76.5,-35.5 parent: 2 - - uid: 207 + - uid: 330 components: - type: Transform pos: 76.5,-37.5 parent: 2 - - uid: 208 + - uid: 331 components: - type: Transform pos: 76.5,-39.5 parent: 2 - - uid: 209 + - uid: 332 components: - type: Transform pos: 77.5,-41.5 parent: 2 - - uid: 210 + - uid: 333 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-78.5 parent: 2 - - uid: 211 + - uid: 334 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-78.5 parent: 2 - - uid: 212 + - uid: 335 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-78.5 parent: 2 - - uid: 213 + - uid: 336 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-76.5 parent: 2 - - uid: 214 + - uid: 337 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-74.5 parent: 2 - - uid: 215 + - uid: 338 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-76.5 parent: 2 - - uid: 216 + - uid: 339 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-84.5 parent: 2 - - uid: 217 + - uid: 340 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-87.5 parent: 2 - - uid: 218 + - uid: 341 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-90.5 parent: 2 - - uid: 219 + - uid: 342 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-90.5 parent: 2 - - uid: 220 + - uid: 343 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-87.5 parent: 2 - - uid: 221 + - uid: 344 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-84.5 parent: 2 - - uid: 222 + - uid: 345 components: - type: Transform pos: 44.5,19.5 parent: 2 - - uid: 225 + - uid: 346 components: - type: Transform pos: -45.5,-93.5 parent: 2 - - uid: 226 + - uid: 347 components: - type: Transform pos: 26.5,23.5 parent: 2 - - uid: 227 + - uid: 348 components: - type: Transform pos: -48.5,-96.5 parent: 2 - - uid: 228 + - uid: 349 components: - type: Transform pos: -47.5,-96.5 parent: 2 - - uid: 229 + - uid: 350 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-103.5 parent: 2 - - uid: 230 + - uid: 351 components: - type: Transform pos: -64.5,-15.5 parent: 2 - - uid: 231 + - uid: 352 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-13.5 parent: 2 - - uid: 232 + - uid: 353 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-73.5 parent: 2 - - uid: 233 + - uid: 354 components: - type: Transform pos: 88.5,-52.5 parent: 2 - - uid: 234 + - uid: 355 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-22.5 parent: 2 - - uid: 235 + - uid: 356 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-118.5 parent: 2 - - uid: 236 + - uid: 357 components: - type: Transform pos: 42.5,27.5 parent: 2 - - uid: 237 + - uid: 358 components: - type: Transform pos: -60.5,8.5 parent: 2 - - uid: 240 + - uid: 359 components: - type: Transform pos: -60.5,5.5 parent: 2 - - uid: 241 + - uid: 360 components: - type: Transform pos: -56.5,8.5 parent: 2 - - uid: 242 + - uid: 361 components: - type: Transform pos: 69.5,-46.5 parent: 2 - - uid: 243 + - uid: 362 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-14.5 parent: 2 - - uid: 244 + - uid: 363 components: - type: Transform pos: -77.5,-10.5 parent: 2 - - uid: 245 + - uid: 364 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-114.5 parent: 2 - - uid: 246 + - uid: 365 components: - type: Transform pos: 44.5,29.5 parent: 2 - - uid: 247 + - uid: 366 components: - type: Transform pos: 32.5,33.5 parent: 2 - - uid: 24286 + - uid: 367 + components: + - type: Transform + pos: -15.5,8.5 + parent: 2 + - uid: 368 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-11.5 parent: 2 - - uid: 24288 + - uid: 369 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-9.5 parent: 2 - - uid: 37755 + - uid: 370 components: - type: Transform pos: 3.5,-39.5 parent: 2 - - uid: 40429 + - uid: 371 components: - type: Transform rot: -1.5707963267948966 rad @@ -22928,14 +23477,14 @@ entities: parent: 2 - proto: AirlockArmoryGlassLocked entities: - - uid: 17398 + - uid: 372 components: - type: Transform pos: 51.5,-16.5 parent: 2 - proto: AirlockArmoryLocked entities: - - uid: 2705 + - uid: 373 components: - type: Transform rot: 1.5707963267948966 rad @@ -22943,139 +23492,139 @@ entities: parent: 2 - proto: AirlockAssembly entities: - - uid: 30313 + - uid: 374 components: - type: Transform pos: 102.5,-49.5 parent: 2 - type: Occluder - - uid: 37754 + - uid: 375 components: - type: Transform pos: 3.5,-35.5 parent: 2 - proto: AirlockAtmosphericsGlassLocked entities: - - uid: 256 + - uid: 376 components: - type: Transform pos: 42.5,-51.5 parent: 2 - - uid: 257 + - uid: 377 components: - type: Transform pos: 50.5,-95.5 parent: 2 - - uid: 258 + - uid: 378 components: - type: Transform pos: 49.5,-95.5 parent: 2 - proto: AirlockAtmosphericsLocked entities: - - uid: 259 + - uid: 379 components: - type: Transform pos: 46.5,-88.5 parent: 2 - - uid: 260 + - uid: 380 components: - type: Transform pos: 46.5,-91.5 parent: 2 - - uid: 261 + - uid: 381 components: - type: Transform pos: 45.5,-88.5 parent: 2 - type: WiresPanelSecurity securityLevel: medSecurity - - uid: 262 + - uid: 382 components: - type: Transform pos: 45.5,-91.5 parent: 2 - type: WiresPanelSecurity securityLevel: medSecurity - - uid: 263 + - uid: 383 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-91.5 parent: 2 - - uid: 264 + - uid: 384 components: - type: Transform pos: -65.5,-3.5 parent: 2 - - uid: 265 + - uid: 385 components: - type: Transform pos: -76.5,-22.5 parent: 2 - - uid: 38725 + - uid: 41672 components: - type: Transform pos: 3.5,-8.5 - parent: 38722 + parent: 41669 - proto: AirlockBarGlassLocked entities: - - uid: 266 + - uid: 386 components: - type: Transform pos: 28.5,-0.5 parent: 2 - proto: AirlockBarLocked entities: - - uid: 267 + - uid: 387 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,5.5 parent: 2 - - uid: 268 + - uid: 388 components: - type: Transform pos: 26.5,-1.5 parent: 2 - proto: AirlockBrigGlassLocked entities: - - uid: 269 + - uid: 389 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-46.5 parent: 2 - - uid: 270 + - uid: 390 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-47.5 parent: 2 - - uid: 271 + - uid: 391 components: - type: Transform pos: -48.5,11.5 parent: 2 - - uid: 280 + - uid: 392 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-4.5 parent: 2 - - uid: 22522 + - uid: 393 components: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 23001 + - uid: 394 components: - type: Transform pos: 45.5,-21.5 parent: 2 - proto: AirlockBrigLocked entities: - - uid: 283 + - uid: 395 components: - type: Transform rot: 1.5707963267948966 rad @@ -23083,124 +23632,124 @@ entities: parent: 2 - proto: AirlockCaptainLocked entities: - - uid: 284 + - uid: 396 components: - type: Transform pos: 12.5,13.5 parent: 2 - - uid: 285 + - uid: 397 components: - type: Transform pos: 8.5,18.5 parent: 2 - proto: AirlockCargoGlassLocked entities: - - uid: 286 + - uid: 398 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 - - uid: 287 + - uid: 399 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-79.5 parent: 2 - - uid: 288 + - uid: 400 components: - type: Transform pos: 1.5,-83.5 parent: 2 - - uid: 289 + - uid: 401 components: - type: Transform pos: -0.5,-83.5 parent: 2 - - uid: 290 + - uid: 402 components: - type: Transform pos: 10.5,-85.5 parent: 2 - - uid: 292 + - uid: 403 components: - type: Transform pos: -8.5,-82.5 parent: 2 - - uid: 293 + - uid: 404 components: - type: Transform pos: -1.5,-86.5 parent: 2 - proto: AirlockCargoLocked entities: - - uid: 294 + - uid: 405 components: - type: Transform pos: 5.5,-85.5 parent: 2 - proto: AirlockCentralCommandGlassLocked entities: - - uid: 38726 + - uid: 41673 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-0.5 - parent: 38722 + parent: 41669 - proto: AirlockCentralCommandLocked entities: - - uid: 37894 + - uid: 40835 components: - type: Transform pos: -2.5,-5.5 - parent: 37887 + parent: 40828 - proto: AirlockChapelLocked entities: - - uid: 295 + - uid: 406 components: - type: Transform pos: 37.5,-66.5 parent: 2 - - uid: 296 + - uid: 407 components: - type: Transform pos: 36.5,-70.5 parent: 2 - proto: AirlockChemistryLocked entities: - - uid: 297 + - uid: 408 components: - type: Transform pos: -39.5,-29.5 parent: 2 - proto: AirlockChiefEngineerGlassLocked entities: - - uid: 13273 + - uid: 409 components: - type: Transform pos: 82.5,-65.5 parent: 2 - proto: AirlockChiefEngineerLocked entities: - - uid: 299 + - uid: 410 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-70.5 parent: 2 - - uid: 300 + - uid: 411 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-75.5 parent: 2 - - uid: 1635 + - uid: 412 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-36.5 parent: 2 - - uid: 29977 + - uid: 413 components: - type: Transform rot: 1.5707963267948966 rad @@ -23208,7 +23757,7 @@ entities: parent: 2 - proto: AirlockChiefMedicalOfficerGlassLocked entities: - - uid: 302 + - uid: 414 components: - type: Transform rot: 3.141592653589793 rad @@ -23216,7 +23765,7 @@ entities: parent: 2 - proto: AirlockChiefMedicalOfficerLocked entities: - - uid: 303 + - uid: 415 components: - type: Transform rot: 3.141592653589793 rad @@ -23224,91 +23773,91 @@ entities: parent: 2 - proto: AirlockCommandGlassLocked entities: - - uid: 304 + - uid: 416 components: - type: Transform pos: -0.5,18.5 parent: 2 - - uid: 305 + - uid: 417 components: - type: Transform pos: 1.5,18.5 parent: 2 - - uid: 306 + - uid: 418 components: - type: Transform pos: 1.5,20.5 parent: 2 - - uid: 307 + - uid: 419 components: - type: Transform pos: -0.5,20.5 parent: 2 - proto: AirlockCommandLocked entities: - - uid: 308 + - uid: 420 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,2.5 parent: 2 - - uid: 309 + - uid: 421 components: - type: Transform pos: 2.5,8.5 parent: 2 - - uid: 310 + - uid: 422 components: - type: Transform pos: 2.5,9.5 parent: 2 - - uid: 311 + - uid: 423 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-17.5 parent: 2 - - uid: 312 + - uid: 424 components: - type: Transform pos: 99.5,-83.5 parent: 2 - - uid: 314 + - uid: 425 components: - type: Transform pos: 100.5,-67.5 parent: 2 - - uid: 315 + - uid: 426 components: - type: Transform pos: 96.5,-71.5 parent: 2 - - uid: 316 + - uid: 427 components: - type: Transform pos: 97.5,-65.5 parent: 2 - - uid: 317 + - uid: 428 components: - type: Transform pos: 99.5,-65.5 parent: 2 - - uid: 318 + - uid: 429 components: - type: Transform pos: 100.5,-71.5 parent: 2 - - uid: 319 + - uid: 430 components: - type: Transform pos: 97.5,-83.5 parent: 2 - - uid: 320 + - uid: 431 components: - type: Transform pos: 96.5,-67.5 parent: 2 - - uid: 14148 + - uid: 432 components: - type: Transform rot: 3.141592653589793 rad @@ -23316,63 +23865,63 @@ entities: parent: 2 - proto: AirlockDetectiveLocked entities: - - uid: 15163 + - uid: 433 components: - type: Transform pos: 42.5,-23.5 parent: 2 - proto: AirlockEngineeringGlassLocked entities: - - uid: 323 + - uid: 434 components: - type: Transform pos: 45.5,-70.5 parent: 2 - - uid: 324 + - uid: 435 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-49.5 parent: 2 - - uid: 325 + - uid: 436 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-67.5 parent: 2 - - uid: 326 + - uid: 437 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-83.5 parent: 2 - - uid: 327 + - uid: 438 components: - type: Transform pos: 47.5,-87.5 parent: 2 - type: WiresPanelSecurity securityLevel: medSecurity - - uid: 328 + - uid: 439 components: - type: Transform pos: 44.5,-83.5 parent: 2 - - uid: 329 + - uid: 440 components: - type: Transform pos: 47.5,-86.5 parent: 2 - type: WiresPanelSecurity securityLevel: medSecurity - - uid: 330 + - uid: 441 components: - type: Transform pos: 49.5,-64.5 parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 331 + - uid: 442 components: - type: Transform rot: 3.141592653589793 rad @@ -23380,19 +23929,19 @@ entities: parent: 2 - type: WiresPanelSecurity securityLevel: medSecurity - - uid: 332 + - uid: 443 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-56.5 parent: 2 - - uid: 333 + - uid: 444 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-58.5 parent: 2 - - uid: 334 + - uid: 445 components: - type: Transform rot: 3.141592653589793 rad @@ -23400,217 +23949,212 @@ entities: parent: 2 - type: WiresPanelSecurity securityLevel: medSecurity - - uid: 335 + - uid: 446 components: - type: Transform pos: 103.5,-22.5 parent: 2 - - uid: 336 + - uid: 447 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-50.5 parent: 2 - - uid: 337 + - uid: 448 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-50.5 parent: 2 - - uid: 338 + - uid: 449 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-55.5 parent: 2 - - uid: 339 + - uid: 450 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-55.5 parent: 2 - - uid: 340 + - uid: 451 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-68.5 parent: 2 - - uid: 341 + - uid: 452 components: - type: Transform pos: 12.5,8.5 parent: 2 - - uid: 342 + - uid: 453 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-86.5 parent: 2 - - uid: 343 + - uid: 454 components: - type: Transform pos: 42.5,-38.5 parent: 2 - - uid: 344 + - uid: 455 components: - type: Transform pos: 42.5,-37.5 parent: 2 - - uid: 345 + - uid: 456 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-60.5 parent: 2 - - uid: 346 + - uid: 457 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-89.5 parent: 2 - - uid: 347 + - uid: 458 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-47.5 parent: 2 - - uid: 348 + - uid: 459 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-23.5 parent: 2 - - uid: 349 + - uid: 460 components: - type: Transform pos: 77.5,-23.5 parent: 2 - - uid: 350 + - uid: 461 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,17.5 parent: 2 - - uid: 352 + - uid: 462 components: - type: Transform pos: -38.5,8.5 parent: 2 - - uid: 353 + - uid: 463 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-53.5 parent: 2 - - uid: 354 + - uid: 464 components: - type: Transform pos: -40.5,-88.5 parent: 2 - - uid: 355 + - uid: 465 components: - type: Transform pos: -40.5,-92.5 parent: 2 - - uid: 356 + - uid: 466 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-87.5 parent: 2 - - uid: 357 + - uid: 467 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,10.5 parent: 2 - - uid: 358 + - uid: 468 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,-20.5 parent: 2 - - uid: 359 + - uid: 469 components: - type: Transform pos: 39.5,-81.5 parent: 2 - type: WiresPanelSecurity securityLevel: medSecurity - - uid: 360 + - uid: 470 components: - type: Transform pos: 36.5,-82.5 parent: 2 - - uid: 361 + - uid: 471 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-114.5 parent: 2 - - uid: 362 + - uid: 472 components: - type: Transform pos: 73.5,-47.5 parent: 2 - - uid: 364 + - uid: 473 components: - type: Transform pos: -66.5,3.5 parent: 2 - - uid: 365 + - uid: 474 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-109.5 parent: 2 - - uid: 366 + - uid: 475 components: - type: Transform pos: 35.5,34.5 parent: 2 - - uid: 595 + - uid: 476 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-19.5 parent: 2 - - uid: 1679 + - uid: 477 components: - type: Transform pos: 69.5,-13.5 parent: 2 - - uid: 2094 + - uid: 478 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,13.5 parent: 2 - - uid: 32475 - components: - - type: Transform - pos: -15.5,4.5 - parent: 2 - - uid: 37895 + - uid: 40836 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-10.5 - parent: 37887 - - uid: 38727 + parent: 40828 + - uid: 41674 components: - type: Transform pos: 5.5,-8.5 - parent: 38722 + parent: 41669 - proto: AirlockEVAGlassLocked entities: - - uid: 367 + - uid: 479 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,16.5 parent: 2 - - uid: 368 + - uid: 480 components: - type: Transform rot: 3.141592653589793 rad @@ -23618,70 +24162,70 @@ entities: parent: 2 - proto: AirlockExternal entities: - - uid: 369 + - uid: 481 components: - type: Transform pos: 91.5,-20.5 parent: 2 - - uid: 372 + - uid: 482 components: - type: Transform pos: 98.5,-20.5 parent: 2 - - uid: 373 + - uid: 483 components: - type: Transform pos: 98.5,-24.5 parent: 2 - - uid: 374 + - uid: 484 components: - type: Transform pos: 91.5,-38.5 parent: 2 - - uid: 375 + - uid: 485 components: - type: Transform pos: 91.5,-24.5 parent: 2 - - uid: 376 + - uid: 486 components: - type: Transform pos: 98.5,-38.5 parent: 2 - - uid: 377 + - uid: 487 components: - type: Transform pos: -57.5,-119.5 parent: 2 - - uid: 385 + - uid: 488 components: - type: Transform pos: -55.5,-117.5 parent: 2 - - uid: 386 + - uid: 489 components: - type: Transform pos: -53.5,-119.5 parent: 2 - - uid: 387 + - uid: 490 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,1.5 parent: 2 - - uid: 34348 + - uid: 491 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-50.5 parent: 2 - - uid: 35882 + - uid: 492 components: - type: Transform rot: 1.5707963267948966 rad pos: 131.5,-40.5 parent: 2 - - uid: 39066 + - uid: 493 components: - type: Transform rot: 1.5707963267948966 rad @@ -23689,7 +24233,7 @@ entities: parent: 2 - proto: AirlockExternalAtmosphericsLocked entities: - - uid: 388 + - uid: 494 components: - type: Transform rot: 3.141592653589793 rad @@ -23699,11 +24243,11 @@ entities: securityLevel: medSecurity - type: DeviceLinkSource linkedPorts: - 390: + 496: - DoorStatus: DoorBolt - 389: + 495: - DoorStatus: DoorBolt - - uid: 389 + - uid: 495 components: - type: Transform rot: 3.141592653589793 rad @@ -23713,11 +24257,11 @@ entities: securityLevel: medSecurity - type: DeviceLinkSource linkedPorts: - 388: + 494: - DoorStatus: DoorBolt - 390: + 496: - DoorStatus: DoorBolt - - uid: 390 + - uid: 496 components: - type: Transform rot: 3.141592653589793 rad @@ -23725,117 +24269,117 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 389: + 495: - DoorStatus: DoorBolt - 388: + 494: - DoorStatus: DoorBolt - proto: AirlockExternalCargoLocked entities: - - uid: 397 + - uid: 497 components: - type: Transform pos: -5.5,-100.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 399: + 499: - DoorStatus: DoorBolt - - uid: 398 + - uid: 498 components: - type: Transform pos: -8.5,-98.5 parent: 2 - - uid: 399 + - uid: 499 components: - type: Transform pos: -6.5,-97.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 397: + 497: - DoorStatus: DoorBolt - proto: AirlockExternalEngineeringLocked entities: - - uid: 404 + - uid: 500 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-54.5 parent: 2 - - uid: 405 + - uid: 501 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-65.5 parent: 2 - - uid: 406 + - uid: 502 components: - type: Transform pos: 107.5,-26.5 parent: 2 - - uid: 407 + - uid: 503 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-52.5 parent: 2 - - uid: 408 + - uid: 504 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-54.5 parent: 2 - - uid: 409 + - uid: 505 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-64.5 parent: 2 - - uid: 410 + - uid: 506 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-53.5 parent: 2 - - uid: 411 + - uid: 507 components: - type: Transform pos: 64.5,-70.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 412: + 508: - DoorStatus: DoorBolt - - uid: 412 + - uid: 508 components: - type: Transform pos: 64.5,-72.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 411: + 507: - DoorStatus: DoorBolt - - uid: 413 + - uid: 509 components: - type: Transform pos: 106.5,-26.5 parent: 2 - - uid: 414 + - uid: 510 components: - type: Transform pos: 107.5,-23.5 parent: 2 - - uid: 415 + - uid: 511 components: - type: Transform pos: 106.5,-23.5 parent: 2 - - uid: 416 + - uid: 512 components: - type: Transform pos: 108.5,-19.5 parent: 2 - - uid: 417 + - uid: 513 components: - type: Transform rot: 1.5707963267948966 rad @@ -23845,68 +24389,68 @@ entities: securityLevel: medSecurity - proto: AirlockExternalGlass entities: - - uid: 418 + - uid: 514 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-4.5 parent: 2 - - uid: 419 + - uid: 515 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-37.5 parent: 2 - - uid: 420 + - uid: 516 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-39.5 parent: 2 - - uid: 421 + - uid: 517 components: - type: Transform pos: -41.5,19.5 parent: 2 - - uid: 422 + - uid: 518 components: - type: Transform pos: -43.5,19.5 parent: 2 - - uid: 423 + - uid: 519 components: - type: Transform pos: -77.5,-45.5 parent: 2 - - uid: 424 + - uid: 520 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,1.5 parent: 2 - - uid: 425 + - uid: 521 components: - type: Transform pos: -49.5,19.5 parent: 2 - - uid: 426 + - uid: 522 components: - type: Transform pos: -51.5,19.5 parent: 2 - - uid: 427 + - uid: 523 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-30.5 parent: 2 - - uid: 35928 + - uid: 524 components: - type: Transform rot: 1.5707963267948966 rad pos: 113.5,-38.5 parent: 2 - - uid: 37363 + - uid: 525 components: - type: Transform rot: 1.5707963267948966 rad @@ -23914,37 +24458,37 @@ entities: parent: 2 - proto: AirlockExternalGlassCargoLocked entities: - - uid: 428 + - uid: 526 components: - type: Transform pos: 16.5,-97.5 parent: 2 - - uid: 429 + - uid: 527 components: - type: Transform pos: 16.5,-99.5 parent: 2 - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 430 + - uid: 528 components: - type: Transform pos: -60.5,-86.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 431: + 529: - DoorStatus: DoorBolt - - uid: 431 + - uid: 529 components: - type: Transform pos: -58.5,-86.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 430: + 528: - DoorStatus: DoorBolt - - uid: 432 + - uid: 530 components: - type: Transform rot: -1.5707963267948966 rad @@ -23952,9 +24496,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 433: + 531: - DoorStatus: DoorBolt - - uid: 433 + - uid: 531 components: - type: Transform rot: -1.5707963267948966 rad @@ -23962,43 +24506,63 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 432: + 530: - DoorStatus: DoorBolt -- proto: AirlockExternalGlassLocked - entities: - - uid: 37061 + - uid: 532 components: - type: Transform - rot: 1.5707963267948966 rad pos: 59.5,-81.5 parent: 2 - - uid: 37071 + - uid: 533 components: - type: Transform - rot: 1.5707963267948966 rad pos: 56.5,-81.5 parent: 2 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 534 + components: + - type: Transform + pos: 91.5,-26.5 + parent: 2 + - uid: 535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 98.5,-36.5 + parent: 2 + - uid: 536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 91.5,-36.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: 98.5,-26.5 + parent: 2 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 434 + - uid: 538 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-45.5 parent: 2 - - uid: 435 + - uid: 539 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-47.5 parent: 2 - - uid: 436 + - uid: 540 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-39.5 parent: 2 - - uid: 437 + - uid: 541 components: - type: Transform rot: -1.5707963267948966 rad @@ -24006,43 +24570,43 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 438 + - uid: 542 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,-18.5 parent: 2 - - uid: 439 + - uid: 543 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,-18.5 parent: 2 - - uid: 441 + - uid: 544 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-30.5 parent: 2 - - uid: 442 + - uid: 545 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 - - uid: 443 + - uid: 546 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-119.5 parent: 2 - - uid: 18529 + - uid: 547 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,20.5 parent: 2 - - uid: 32969 + - uid: 548 components: - type: Transform rot: 3.141592653589793 rad @@ -24050,92 +24614,92 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 444 + - uid: 549 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-99.5 parent: 2 - - uid: 445 + - uid: 550 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-97.5 parent: 2 - - uid: 12957 + - uid: 551 components: - type: Transform pos: 129.5,-41.5 parent: 2 - - uid: 19569 + - uid: 552 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,17.5 parent: 2 - - uid: 21069 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 21045 - - uid: 25352 + - uid: 553 components: - type: Transform rot: 3.141592653589793 rad pos: 115.5,-37.5 parent: 2 - - uid: 26063 + - uid: 554 components: - type: Transform pos: 122.5,-41.5 parent: 2 - - uid: 26896 + - uid: 555 components: - type: Transform rot: 3.141592653589793 rad pos: 129.5,-37.5 parent: 2 - - uid: 35809 + - uid: 556 components: - type: Transform rot: 3.141592653589793 rad pos: 122.5,-37.5 parent: 2 - - uid: 36840 + - uid: 557 components: - type: Transform rot: 1.5707963267948966 rad pos: 133.5,-40.5 parent: 2 - - uid: 36894 + - uid: 558 components: - type: Transform rot: 1.5707963267948966 rad pos: 133.5,-38.5 parent: 2 + - uid: 40669 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 40666 - proto: AirlockExternalLocked entities: - - uid: 446 + - uid: 559 components: - type: Transform pos: 106.5,-36.5 parent: 2 - - uid: 447 + - uid: 560 components: - type: Transform pos: 107.5,-36.5 parent: 2 - - uid: 448 + - uid: 561 components: - type: Transform pos: 106.5,-39.5 parent: 2 - - uid: 449 + - uid: 562 components: - type: Transform pos: 107.5,-39.5 parent: 2 - - uid: 450 + - uid: 563 components: - type: Transform rot: 3.141592653589793 rad @@ -24143,9 +24707,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 451: + 564: - DoorStatus: DoorBolt - - uid: 451 + - uid: 564 components: - type: Transform rot: 3.141592653589793 rad @@ -24153,21 +24717,21 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 450: + 563: - DoorStatus: DoorBolt - - uid: 452 + - uid: 565 components: - type: Transform rot: 1.5707963267948966 rad pos: 109.5,-59.5 parent: 2 - - uid: 453 + - uid: 566 components: - type: Transform rot: 1.5707963267948966 rad pos: 109.5,-57.5 parent: 2 - - uid: 454 + - uid: 567 components: - type: Transform rot: -1.5707963267948966 rad @@ -24175,9 +24739,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 455: + 568: - DoorStatus: DoorBolt - - uid: 455 + - uid: 568 components: - type: Transform rot: -1.5707963267948966 rad @@ -24185,33 +24749,33 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 454: + 567: - DoorStatus: DoorBolt - - uid: 456 + - uid: 569 components: - type: Transform pos: 110.5,-45.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 457: + 570: - DoorStatus: DoorBolt - - uid: 457 + - uid: 570 components: - type: Transform pos: 112.5,-45.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 456: + 569: - DoorStatus: DoorBolt - - uid: 458 + - uid: 571 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,1.5 parent: 2 - - uid: 459 + - uid: 572 components: - type: Transform rot: -1.5707963267948966 rad @@ -24219,9 +24783,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 460: + 573: - DoorStatus: DoorBolt - - uid: 460 + - uid: 573 components: - type: Transform rot: -1.5707963267948966 rad @@ -24229,9 +24793,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 459: + 572: - DoorStatus: DoorBolt - - uid: 461 + - uid: 574 components: - type: Transform rot: 3.141592653589793 rad @@ -24239,9 +24803,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 462: + 575: - DoorStatus: DoorBolt - - uid: 462 + - uid: 575 components: - type: Transform rot: 3.141592653589793 rad @@ -24249,40 +24813,40 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 461: + 574: - DoorStatus: DoorBolt - - uid: 17688 + - uid: 576 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,14.5 parent: 2 - - uid: 17780 + - uid: 577 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,16.5 parent: 2 - - uid: 37896 + - uid: 40837 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-3.5 - parent: 37887 - - uid: 37897 + parent: 40828 + - uid: 40838 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-3.5 - parent: 37887 + parent: 40828 - proto: AirlockExternalShuttleLocked entities: - - uid: 463 + - uid: 578 components: - type: Transform pos: -13.5,-102.5 parent: 2 - - uid: 464 + - uid: 579 components: - type: Transform rot: 3.141592653589793 rad @@ -24290,7 +24854,7 @@ entities: parent: 2 missingComponents: - AccessReader - - uid: 466 + - uid: 580 components: - type: Transform rot: 3.141592653589793 rad @@ -24298,7 +24862,7 @@ entities: parent: 2 missingComponents: - AccessReader - - uid: 467 + - uid: 581 components: - type: Transform rot: 3.141592653589793 rad @@ -24306,7 +24870,7 @@ entities: parent: 2 missingComponents: - AccessReader - - uid: 468 + - uid: 582 components: - type: Transform rot: 3.141592653589793 rad @@ -24314,88 +24878,88 @@ entities: parent: 2 missingComponents: - AccessReader - - uid: 469 + - uid: 583 components: - type: Transform rot: 1.5707963267948966 rad pos: 111.5,-57.5 parent: 2 - - uid: 470 + - uid: 584 components: - type: Transform rot: 1.5707963267948966 rad pos: 111.5,-59.5 parent: 2 - - uid: 472 + - uid: 585 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,1.5 parent: 2 - - uid: 473 + - uid: 586 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,3.5 parent: 2 - - uid: 474 + - uid: 587 components: - type: Transform rot: 3.141592653589793 rad pos: -94.5,3.5 parent: 2 - - uid: 37898 + - uid: 40839 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 - parent: 37887 + parent: 40828 - type: Docking dockJointId: docking407458 - dockedWith: 38728 + dockedWith: 41675 - type: DeviceLinkSource lastSignals: DoorStatus: False DockStatus: True - type: Door changeAirtight: False - - uid: 37899 + - uid: 40840 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,0.5 - parent: 37887 + parent: 40828 - type: Docking dockJointId: docking407459 - dockedWith: 38729 + dockedWith: 41676 - type: DeviceLinkSource lastSignals: DoorStatus: False DockStatus: True - type: Door changeAirtight: False - - uid: 38728 + - uid: 41675 components: - type: Transform pos: 3.5,-12.5 - parent: 38722 + parent: 41669 - type: Docking dockJointId: docking407458 - dockedWith: 37898 + dockedWith: 40839 - type: DeviceLinkSource lastSignals: DoorStatus: False DockStatus: True - type: Door changeAirtight: False - - uid: 38729 + - uid: 41676 components: - type: Transform pos: 5.5,-12.5 - parent: 38722 + parent: 41669 - type: Docking dockJointId: docking407459 - dockedWith: 37899 + dockedWith: 40840 - type: DeviceLinkSource lastSignals: DoorStatus: False @@ -24404,7 +24968,7 @@ entities: changeAirtight: False - proto: AirlockFreezer entities: - - uid: 475 + - uid: 588 components: - type: Transform pos: 18.5,14.5 @@ -24412,379 +24976,389 @@ entities: - type: AccessReader access: - - Captain - - uid: 35970 + - uid: 589 components: - type: Transform pos: 52.5,-24.5 parent: 2 + - uid: 590 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 - proto: AirlockFreezerLocked entities: - - uid: 476 + - uid: 591 components: - type: Transform pos: 26.5,13.5 parent: 2 - proto: AirlockGlass entities: - - uid: 477 + - uid: 592 components: - type: Transform pos: -32.5,-82.5 parent: 2 - - uid: 478 + - uid: 593 components: - type: Transform pos: -31.5,-82.5 parent: 2 - - uid: 479 + - uid: 594 components: - type: Transform pos: -31.5,-91.5 parent: 2 - - uid: 480 + - uid: 595 components: - type: Transform pos: -32.5,-91.5 parent: 2 - - uid: 481 + - uid: 596 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,9.5 parent: 2 - - uid: 483 + - uid: 597 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-30.5 parent: 2 - - uid: 485 + - uid: 598 components: - type: Transform pos: -25.5,-79.5 parent: 2 - - uid: 487 + - uid: 599 components: - type: Transform pos: 54.5,-34.5 parent: 2 - - uid: 488 + - uid: 600 components: - type: Transform pos: 53.5,-34.5 parent: 2 - - uid: 489 + - uid: 601 components: - type: Transform pos: 52.5,-34.5 parent: 2 - - uid: 490 + - uid: 602 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,0.5 parent: 2 - - uid: 491 + - uid: 603 components: - type: Transform pos: 64.5,-30.5 parent: 2 - - uid: 492 + - uid: 604 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-62.5 parent: 2 - - uid: 493 + - uid: 605 components: - type: Transform pos: -0.5,5.5 parent: 2 - - uid: 494 + - uid: 606 components: - type: Transform pos: 0.5,5.5 parent: 2 - - uid: 495 + - uid: 607 components: - type: Transform pos: 1.5,5.5 parent: 2 - - uid: 496 + - uid: 608 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-1.5 parent: 2 - - uid: 497 + - uid: 609 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-1.5 parent: 2 - - uid: 498 + - uid: 610 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,1.5 parent: 2 - - uid: 499 + - uid: 611 components: - type: Transform pos: -35.5,-41.5 parent: 2 - - uid: 500 + - uid: 612 components: - type: Transform pos: -36.5,-41.5 parent: 2 - - uid: 501 + - uid: 613 components: - type: Transform pos: -37.5,-41.5 parent: 2 - - uid: 502 + - uid: 614 components: - type: Transform pos: -33.5,-39.5 parent: 2 - - uid: 503 + - uid: 615 components: - type: Transform pos: -33.5,-38.5 parent: 2 - - uid: 504 + - uid: 616 components: - type: Transform pos: -33.5,-37.5 parent: 2 - - uid: 505 + - uid: 617 components: - type: Transform pos: -41.5,-41.5 parent: 2 - - uid: 506 + - uid: 618 components: - type: Transform pos: -42.5,-41.5 parent: 2 - - uid: 507 + - uid: 619 components: - type: Transform pos: -43.5,-41.5 parent: 2 - - uid: 508 + - uid: 620 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-26.5 parent: 2 - - uid: 509 + - uid: 621 components: - type: Transform pos: 60.5,-39.5 parent: 2 - - uid: 510 + - uid: 622 components: - type: Transform pos: 46.5,-39.5 parent: 2 - - uid: 511 + - uid: 623 components: - type: Transform pos: 46.5,-38.5 parent: 2 - - uid: 512 + - uid: 624 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-30.5 parent: 2 - - uid: 513 + - uid: 625 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-30.5 parent: 2 - - uid: 514 + - uid: 626 components: - type: Transform pos: 2.5,-81.5 parent: 2 - - uid: 515 + - uid: 627 components: - type: Transform pos: 2.5,-82.5 parent: 2 - - uid: 516 + - uid: 628 components: - type: Transform pos: 2.5,-80.5 parent: 2 - - uid: 517 + - uid: 629 components: - type: Transform pos: 31.5,-61.5 parent: 2 - - uid: 518 + - uid: 630 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-74.5 parent: 2 - - uid: 519 + - uid: 631 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-74.5 parent: 2 - - uid: 520 + - uid: 632 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-74.5 parent: 2 - - uid: 521 + - uid: 633 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-79.5 parent: 2 - - uid: 522 + - uid: 634 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-79.5 parent: 2 - - uid: 523 + - uid: 635 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-44.5 parent: 2 - - uid: 524 + - uid: 636 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-43.5 parent: 2 - - uid: 525 + - uid: 637 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-42.5 parent: 2 - - uid: 526 + - uid: 638 components: - type: Transform pos: -28.5,-72.5 parent: 2 - - uid: 527 + - uid: 639 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-72.5 parent: 2 - - uid: 528 + - uid: 640 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,9.5 parent: 2 - - uid: 529 + - uid: 641 components: - type: Transform pos: 29.5,24.5 parent: 2 - - uid: 530 + - uid: 642 components: - type: Transform pos: -47.5,10.5 parent: 2 - - uid: 531 + - uid: 643 components: - type: Transform pos: -45.5,10.5 parent: 2 - - uid: 532 + - uid: 644 components: - type: Transform pos: -46.5,10.5 parent: 2 - - uid: 533 + - uid: 645 components: - type: Transform pos: 29.5,-4.5 parent: 2 - - uid: 534 + - uid: 646 components: - type: Transform pos: -33.5,-80.5 parent: 2 - - uid: 535 + - uid: 647 components: - type: Transform pos: 29.5,-5.5 parent: 2 - - uid: 536 + - uid: 648 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-4.5 parent: 2 - - uid: 537 + - uid: 649 components: - type: Transform pos: -24.5,-90.5 parent: 2 - - uid: 538 + - uid: 650 components: - type: Transform pos: -84.5,-2.5 parent: 2 - - uid: 539 + - uid: 651 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-45.5 parent: 2 - - uid: 26084 + - uid: 652 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 653 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-24.5 parent: 2 - - uid: 26299 + - uid: 654 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-34.5 parent: 2 - - uid: 34197 + - uid: 655 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-25.5 parent: 2 - - uid: 34204 + - uid: 656 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-37.5 parent: 2 - - uid: 34205 + - uid: 657 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-34.5 parent: 2 - - uid: 34206 + - uid: 658 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-33.5 parent: 2 - - uid: 34207 + - uid: 659 components: - type: Transform rot: 3.141592653589793 rad @@ -24792,20 +25366,25 @@ entities: parent: 2 - proto: AirlockHeadOfPersonnelLocked entities: - - uid: 540 + - uid: 660 components: - type: Transform pos: -10.5,8.5 parent: 2 - - uid: 541 + - uid: 661 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,10.5 parent: 2 + - uid: 662 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 - proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 24605 + - uid: 663 components: - type: Transform rot: -1.5707963267948966 rad @@ -24813,7 +25392,7 @@ entities: parent: 2 - proto: AirlockHeadOfSecurityLocked entities: - - uid: 24623 + - uid: 664 components: - type: Transform rot: 1.5707963267948966 rad @@ -24821,7 +25400,7 @@ entities: parent: 2 - proto: AirlockHydroGlassLocked entities: - - uid: 544 + - uid: 665 components: - type: Transform rot: -1.5707963267948966 rad @@ -24829,27 +25408,27 @@ entities: parent: 2 - proto: AirlockHydroponicsLocked entities: - - uid: 545 + - uid: 666 components: - type: Transform pos: 33.5,20.5 parent: 2 - proto: AirlockJanitorLocked entities: - - uid: 546 + - uid: 667 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,2.5 parent: 2 - - uid: 547 + - uid: 668 components: - type: Transform pos: -7.5,-73.5 parent: 2 - proto: AirlockLawyerLocked entities: - - uid: 548 + - uid: 669 components: - type: Transform rot: 3.141592653589793 rad @@ -24857,45 +25436,45 @@ entities: parent: 2 - proto: AirlockMaintAtmoLocked entities: - - uid: 549 + - uid: 670 components: - type: Transform pos: 40.5,-53.5 parent: 2 - proto: AirlockMaintBarLocked entities: - - uid: 550 + - uid: 671 components: - type: Transform pos: 21.5,8.5 parent: 2 - proto: AirlockMaintCaptainLocked entities: - - uid: 551 + - uid: 672 components: - type: Transform pos: 13.5,9.5 parent: 2 - - uid: 552 + - uid: 673 components: - type: Transform pos: 13.5,11.5 parent: 2 - proto: AirlockMaintCargoLocked entities: - - uid: 553 + - uid: 674 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-83.5 parent: 2 - - uid: 554 + - uid: 675 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-80.5 parent: 2 - - uid: 555 + - uid: 676 components: - type: Transform rot: 3.141592653589793 rad @@ -24903,37 +25482,44 @@ entities: parent: 2 - proto: AirlockMaintChapelLocked entities: - - uid: 556 + - uid: 677 components: - type: Transform pos: 38.5,-72.5 parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 678 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 - proto: AirlockMaintDetectiveLocked entities: - - uid: 16896 + - uid: 679 components: - type: Transform pos: 36.5,-24.5 parent: 2 - proto: AirlockMaintEngiLocked entities: - - uid: 558 + - uid: 680 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-54.5 parent: 2 - - uid: 559 + - uid: 681 components: - type: Transform pos: 41.5,-68.5 parent: 2 - - uid: 560 + - uid: 682 components: - type: Transform pos: 33.5,-82.5 parent: 2 - - uid: 561 + - uid: 683 components: - type: Transform rot: -1.5707963267948966 rad @@ -24941,46 +25527,39 @@ entities: parent: 2 - proto: AirlockMaintGlass entities: - - uid: 563 + - uid: 684 components: - type: Transform pos: -53.5,-94.5 parent: 2 - proto: AirlockMaintGlassLocked entities: - - uid: 564 + - uid: 685 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-108.5 parent: 2 - - uid: 565 + - uid: 686 components: - type: Transform pos: -55.5,-104.5 parent: 2 - - uid: 566 + - uid: 687 components: - type: Transform pos: -53.5,-106.5 parent: 2 - proto: AirlockMaintHeadOfSecurityLocked entities: - - uid: 24827 + - uid: 688 components: - type: Transform pos: 45.5,12.5 parent: 2 -- proto: AirlockMaintHOPLocked - entities: - - uid: 567 - components: - - type: Transform - pos: -8.5,12.5 - parent: 2 - proto: AirlockMaintHydroLocked entities: - - uid: 568 + - uid: 689 components: - type: Transform rot: -1.5707963267948966 rad @@ -24988,373 +25567,367 @@ entities: parent: 2 - proto: AirlockMaintKitchenLocked entities: - - uid: 569 + - uid: 690 components: - type: Transform pos: 30.5,15.5 parent: 2 - - uid: 570 + - uid: 691 components: - type: Transform pos: 22.5,12.5 parent: 2 - proto: AirlockMaintLocked entities: - - uid: 571 + - uid: 692 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-27.5 parent: 2 - - uid: 573 + - uid: 693 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-21.5 parent: 2 - - uid: 574 + - uid: 694 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-29.5 parent: 2 - - uid: 576 + - uid: 695 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-18.5 parent: 2 - - uid: 577 + - uid: 696 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-17.5 parent: 2 - - uid: 578 + - uid: 697 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-30.5 parent: 2 - - uid: 579 + - uid: 698 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-54.5 parent: 2 - - uid: 580 + - uid: 699 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-71.5 parent: 2 - - uid: 582 + - uid: 700 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-77.5 parent: 2 - - uid: 583 + - uid: 701 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-75.5 parent: 2 - - uid: 584 + - uid: 702 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-23.5 parent: 2 - - uid: 585 + - uid: 703 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-29.5 parent: 2 - - uid: 586 + - uid: 704 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-97.5 parent: 2 - - uid: 587 + - uid: 705 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-92.5 parent: 2 - - uid: 588 + - uid: 706 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-34.5 parent: 2 - - uid: 589 + - uid: 707 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-56.5 parent: 2 - - uid: 590 + - uid: 708 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-63.5 parent: 2 - - uid: 591 + - uid: 709 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-67.5 parent: 2 - - uid: 592 + - uid: 710 components: - type: Transform pos: 46.5,-44.5 parent: 2 - - uid: 593 + - uid: 711 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,1.5 parent: 2 - - uid: 594 + - uid: 712 components: - type: Transform pos: 63.5,-46.5 parent: 2 - - uid: 596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,14.5 - parent: 2 - - uid: 597 + - uid: 713 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,1.5 parent: 2 - - uid: 598 + - uid: 714 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,15.5 parent: 2 - - uid: 599 + - uid: 715 components: - type: Transform pos: -29.5,-7.5 parent: 2 - - uid: 600 + - uid: 716 components: - type: Transform pos: -32.5,-30.5 parent: 2 - - uid: 601 + - uid: 717 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-43.5 parent: 2 - - uid: 602 + - uid: 718 components: - type: Transform pos: -31.5,-77.5 parent: 2 - - uid: 603 + - uid: 719 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-86.5 parent: 2 - - uid: 604 + - uid: 720 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-74.5 parent: 2 - - uid: 605 + - uid: 721 components: - type: Transform pos: 42.5,18.5 parent: 2 - - uid: 606 + - uid: 722 components: - type: Transform pos: -36.5,15.5 parent: 2 - - uid: 607 + - uid: 723 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-45.5 parent: 2 - - uid: 608 + - uid: 724 components: - type: Transform pos: -60.5,-49.5 parent: 2 - - uid: 609 + - uid: 725 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-90.5 parent: 2 - - uid: 610 + - uid: 726 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-93.5 parent: 2 - - uid: 611 + - uid: 727 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,29.5 parent: 2 - - uid: 612 + - uid: 728 components: - type: Transform pos: 38.5,7.5 parent: 2 - - uid: 613 + - uid: 729 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-111.5 parent: 2 - - uid: 614 + - uid: 730 components: - type: Transform pos: 79.5,-43.5 parent: 2 - - uid: 615 + - uid: 731 components: - type: Transform pos: 87.5,-48.5 parent: 2 - - uid: 616 + - uid: 732 components: - type: Transform pos: 86.5,-43.5 parent: 2 - - uid: 617 + - uid: 733 components: - type: Transform pos: 80.5,-45.5 parent: 2 - - uid: 618 + - uid: 734 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,-52.5 parent: 2 - - uid: 619 + - uid: 735 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-54.5 parent: 2 - - uid: 620 + - uid: 736 components: - type: Transform rot: -1.5707963267948966 rad pos: 108.5,-54.5 parent: 2 - - uid: 621 + - uid: 737 components: - type: Transform rot: -1.5707963267948966 rad pos: 106.5,-43.5 parent: 2 - - uid: 622 + - uid: 738 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-95.5 parent: 2 - - uid: 623 + - uid: 739 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-7.5 parent: 2 - - uid: 624 + - uid: 740 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-12.5 parent: 2 - - uid: 625 + - uid: 741 components: - type: Transform pos: 98.5,-42.5 parent: 2 - - uid: 626 + - uid: 742 components: - type: Transform pos: -26.5,-104.5 parent: 2 - - uid: 627 + - uid: 743 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-108.5 parent: 2 - - uid: 628 + - uid: 744 components: - type: Transform pos: -36.5,-105.5 parent: 2 - - uid: 629 + - uid: 745 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-107.5 parent: 2 - - uid: 630 + - uid: 746 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-41.5 parent: 2 - - uid: 631 + - uid: 747 components: - type: Transform pos: -82.5,-6.5 parent: 2 - - uid: 632 + - uid: 748 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,28.5 parent: 2 - - uid: 633 + - uid: 749 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,29.5 parent: 2 - - uid: 17829 + - uid: 750 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,16.5 parent: 2 - - uid: 24289 + - uid: 751 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,19.5 parent: 2 - - uid: 24869 + - uid: 752 components: - type: Transform pos: 70.5,-18.5 parent: 2 - - uid: 27908 + - uid: 753 components: - type: Transform rot: 3.141592653589793 rad @@ -25362,31 +25935,31 @@ entities: parent: 2 - proto: AirlockMaintMedLocked entities: - - uid: 634 + - uid: 754 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-2.5 parent: 2 - - uid: 635 + - uid: 755 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-28.5 parent: 2 - - uid: 636 + - uid: 756 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-17.5 parent: 2 - - uid: 637 + - uid: 757 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-50.5 parent: 2 - - uid: 638 + - uid: 758 components: - type: Transform rot: -1.5707963267948966 rad @@ -25394,37 +25967,37 @@ entities: parent: 2 - proto: AirlockMaintRnDLocked entities: - - uid: 639 + - uid: 759 components: - type: Transform pos: -40.5,-85.5 parent: 2 - - uid: 640 + - uid: 760 components: - type: Transform pos: -33.5,-64.5 parent: 2 - - uid: 641 + - uid: 761 components: - type: Transform pos: -33.5,-58.5 parent: 2 - - uid: 642 + - uid: 762 components: - type: Transform pos: -46.5,-79.5 parent: 2 - - uid: 643 + - uid: 763 components: - type: Transform pos: -56.5,-75.5 parent: 2 - - uid: 644 + - uid: 764 components: - type: Transform pos: -59.5,-73.5 parent: 2 - - uid: 645 + - uid: 765 components: - type: Transform rot: -1.5707963267948966 rad @@ -25434,7 +26007,7 @@ entities: securityLevel: medSecurity - proto: AirlockMaintRnDMedLocked entities: - - uid: 646 + - uid: 766 components: - type: Transform rot: -1.5707963267948966 rad @@ -25442,30 +26015,30 @@ entities: parent: 2 - proto: AirlockMaintSalvageLocked entities: - - uid: 647 + - uid: 767 components: - type: Transform pos: -10.5,-94.5 parent: 2 - proto: AirlockMaintSecLocked entities: - - uid: 648 + - uid: 768 components: - type: Transform pos: -62.5,-38.5 parent: 2 - - uid: 649 + - uid: 769 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-25.5 parent: 2 - - uid: 18281 + - uid: 770 components: - type: Transform pos: 69.5,-10.5 parent: 2 - - uid: 35933 + - uid: 771 components: - type: Transform rot: 1.5707963267948966 rad @@ -25473,86 +26046,86 @@ entities: parent: 2 - proto: AirlockMedical entities: - - uid: 653 + - uid: 772 components: - type: Transform pos: -67.5,-25.5 parent: 2 - proto: AirlockMedicalGlass entities: - - uid: 655 + - uid: 773 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,13.5 parent: 2 - - uid: 656 + - uid: 774 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-86.5 parent: 2 - - uid: 657 + - uid: 775 components: - type: Transform pos: -62.5,-1.5 parent: 2 - proto: AirlockMedicalGlassLocked entities: - - uid: 658 + - uid: 776 components: - type: Transform pos: -42.5,-31.5 parent: 2 - - uid: 659 + - uid: 777 components: - type: Transform pos: -48.5,-26.5 parent: 2 - - uid: 660 + - uid: 778 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-45.5 parent: 2 - - uid: 661 + - uid: 779 components: - type: Transform pos: -40.5,-3.5 parent: 2 - - uid: 662 + - uid: 780 components: - type: Transform pos: -39.5,-20.5 parent: 2 - - uid: 663 + - uid: 781 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-39.5 parent: 2 - - uid: 664 + - uid: 782 components: - type: Transform pos: -39.5,-22.5 parent: 2 - - uid: 665 + - uid: 783 components: - type: Transform pos: -40.5,-31.5 parent: 2 - - uid: 666 + - uid: 784 components: - type: Transform pos: -50.5,-25.5 parent: 2 - - uid: 667 + - uid: 785 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-40.5 parent: 2 - - uid: 668 + - uid: 786 components: - type: MetaData name: комната криосна @@ -25560,87 +26133,87 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-36.5 parent: 2 - - uid: 669 + - uid: 787 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-14.5 parent: 2 - - uid: 37900 + - uid: 40841 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-9.5 - parent: 37887 - - uid: 38730 + parent: 40828 + - uid: 41677 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-3.5 - parent: 38722 + parent: 41669 - proto: AirlockMedicalLocked entities: - - uid: 670 + - uid: 788 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-15.5 parent: 2 - - uid: 671 + - uid: 789 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-22.5 parent: 2 - - uid: 672 + - uid: 790 components: - type: Transform pos: -50.5,-15.5 parent: 2 - - uid: 674 + - uid: 791 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-30.5 parent: 2 - - uid: 7948 + - uid: 792 components: - type: Transform pos: -58.5,-22.5 parent: 2 - - uid: 9265 + - uid: 793 components: - type: Transform pos: -56.5,-24.5 parent: 2 - proto: AirlockMedicalScienceGlassLocked entities: - - uid: 675 + - uid: 794 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-30.5 parent: 2 - - uid: 676 + - uid: 795 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-30.5 parent: 2 - - uid: 677 + - uid: 796 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-37.5 parent: 2 - - uid: 678 + - uid: 797 components: - type: Transform pos: -49.5,-41.5 parent: 2 - proto: AirlockMedicalScienceLocked entities: - - uid: 679 + - uid: 798 components: - type: Transform rot: -1.5707963267948966 rad @@ -25648,58 +26221,58 @@ entities: parent: 2 - proto: AirlockMining entities: - - uid: 6206 + - uid: 799 components: - type: Transform pos: -12.5,-28.5 parent: 2 - - uid: 16855 + - uid: 800 components: - type: Transform pos: -15.5,-20.5 parent: 2 - - uid: 16856 + - uid: 801 components: - type: Transform pos: -12.5,-24.5 parent: 2 - - uid: 33619 + - uid: 802 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-22.5 parent: 2 - - uid: 33620 + - uid: 803 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-22.5 parent: 2 - - uid: 33621 + - uid: 804 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-20.5 parent: 2 - - uid: 33622 + - uid: 805 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-19.5 parent: 2 - - uid: 33623 + - uid: 806 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-17.5 parent: 2 - - uid: 33757 + - uid: 807 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-28.5 parent: 2 - - uid: 33758 + - uid: 808 components: - type: Transform rot: 3.141592653589793 rad @@ -25707,101 +26280,101 @@ entities: parent: 2 - type: AccessReader containerAccessProvider: null - - uid: 33805 + - uid: 809 components: - type: Transform pos: 6.5,-39.5 parent: 2 - - uid: 33806 + - uid: 810 components: - type: Transform pos: 6.5,-40.5 parent: 2 - - uid: 33807 + - uid: 811 components: - type: MetaData name: резервная рубка - type: Transform pos: 12.5,-47.5 parent: 2 - - uid: 33808 + - uid: 812 components: - type: Transform pos: 7.5,-47.5 parent: 2 - - uid: 34198 + - uid: 813 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-31.5 parent: 2 - - uid: 39089 + - uid: 814 components: - type: Transform pos: 6.5,-21.5 parent: 2 - - uid: 40940 + - uid: 815 components: - type: Transform pos: 15.5,-46.5 parent: 2 - proto: AirlockMiningGlass entities: - - uid: 1159 + - uid: 816 components: - type: Transform pos: 0.5,-45.5 parent: 2 - - uid: 1161 + - uid: 817 components: - type: Transform pos: -4.5,-48.5 parent: 2 - - uid: 11629 + - uid: 818 components: - type: Transform pos: -2.5,-45.5 parent: 2 - - uid: 26267 + - uid: 819 components: - type: Transform pos: -9.5,-44.5 parent: 2 - - uid: 26439 + - uid: 820 components: - type: Transform pos: -1.5,-43.5 parent: 2 - proto: AirlockMiningGlassLocked entities: - - uid: 5916 + - uid: 821 components: - type: Transform pos: 0.5,-73.5 parent: 2 - - uid: 7516 + - uid: 822 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-32.5 parent: 2 - - uid: 11138 + - uid: 823 components: - type: Transform pos: 0.5,-11.5 parent: 2 - - uid: 26453 + - uid: 824 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-42.5 parent: 2 - - uid: 29064 + - uid: 825 components: - type: Transform pos: 17.5,-33.5 parent: 2 - - uid: 30855 + - uid: 826 components: - type: Transform rot: 1.5707963267948966 rad @@ -25809,44 +26382,44 @@ entities: parent: 2 - proto: AirlockQuartermasterLocked entities: - - uid: 682 + - uid: 827 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-92.5 parent: 2 - - uid: 683 + - uid: 828 components: - type: Transform pos: -1.5,-97.5 parent: 2 - proto: AirlockResearchDirectorGlassLocked entities: - - uid: 685 + - uid: 829 components: - type: Transform pos: -41.5,-70.5 parent: 2 - - uid: 686 + - uid: 830 components: - type: Transform pos: -41.5,-73.5 parent: 2 - proto: AirlockResearchDirectorLocked entities: - - uid: 687 + - uid: 831 components: - type: Transform pos: -37.5,-73.5 parent: 2 - - uid: 688 + - uid: 832 components: - type: Transform pos: -36.5,-68.5 parent: 2 - proto: AirlockSalvageGlassLocked entities: - - uid: 689 + - uid: 833 components: - type: Transform rot: 3.141592653589793 rad @@ -25854,14 +26427,14 @@ entities: parent: 2 - proto: AirlockSalvageLocked entities: - - uid: 690 + - uid: 834 components: - type: Transform pos: -7.5,-92.5 parent: 2 - proto: AirlockScienceGlass entities: - - uid: 692 + - uid: 835 components: - type: Transform rot: -1.5707963267948966 rad @@ -25869,151 +26442,151 @@ entities: parent: 2 - proto: AirlockScienceGlassLocked entities: - - uid: 693 + - uid: 836 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-64.5 parent: 2 - - uid: 694 + - uid: 837 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-50.5 parent: 2 - - uid: 695 + - uid: 838 components: - type: Transform pos: -54.5,-57.5 parent: 2 - - uid: 696 + - uid: 839 components: - type: Transform pos: -56.5,-57.5 parent: 2 - - uid: 697 + - uid: 840 components: - type: Transform pos: -66.5,-65.5 parent: 2 - - uid: 698 + - uid: 841 components: - type: Transform pos: -51.5,-63.5 parent: 2 - type: WiresPanelSecurity securityLevel: medSecurity - - uid: 699 + - uid: 842 components: - type: Transform pos: -45.5,-64.5 parent: 2 - - uid: 700 + - uid: 843 components: - type: Transform pos: -47.5,-64.5 parent: 2 - - uid: 701 + - uid: 844 components: - type: Transform pos: -47.5,-66.5 parent: 2 - - uid: 702 + - uid: 845 components: - type: Transform pos: -45.5,-66.5 parent: 2 - - uid: 703 + - uid: 846 components: - type: Transform pos: -41.5,-48.5 parent: 2 - - uid: 704 + - uid: 847 components: - type: Transform pos: -42.5,-49.5 parent: 2 - - uid: 705 + - uid: 848 components: - type: Transform pos: -42.5,-51.5 parent: 2 - - uid: 706 + - uid: 849 components: - type: Transform pos: -44.5,-51.5 parent: 2 - - uid: 707 + - uid: 850 components: - type: Transform pos: -44.5,-49.5 parent: 2 - - uid: 708 + - uid: 851 components: - type: Transform pos: -38.5,-56.5 parent: 2 - - uid: 709 + - uid: 852 components: - type: Transform pos: -37.5,-60.5 parent: 2 - - uid: 710 + - uid: 853 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-80.5 parent: 2 - - uid: 711 + - uid: 854 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-81.5 parent: 2 - - uid: 712 + - uid: 855 components: - type: Transform pos: -52.5,-68.5 parent: 2 - - uid: 713 + - uid: 856 components: - type: Transform pos: -52.5,-71.5 parent: 2 - - uid: 714 + - uid: 857 components: - type: Transform pos: -69.5,-77.5 parent: 2 - - uid: 715 + - uid: 858 components: - type: Transform pos: -71.5,-77.5 parent: 2 - proto: AirlockScienceLocked entities: - - uid: 716 + - uid: 859 components: - type: Transform pos: -49.5,-67.5 parent: 2 - - uid: 717 + - uid: 860 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-82.5 parent: 2 - - uid: 718 + - uid: 861 components: - type: Transform pos: -59.5,-65.5 parent: 2 - - uid: 719 + - uid: 862 components: - type: Transform pos: -56.5,-65.5 parent: 2 - - uid: 720 + - uid: 863 components: - type: Transform rot: 3.141592653589793 rad @@ -26021,25 +26594,25 @@ entities: parent: 2 - type: WiresPanelSecurity securityLevel: medSecurity - - uid: 721 + - uid: 864 components: - type: Transform pos: -54.5,-72.5 parent: 2 - - uid: 722 + - uid: 865 components: - type: Transform pos: -62.5,-67.5 parent: 2 - proto: AirlockSecurityGlass entities: - - uid: 2659 + - uid: 866 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-25.5 parent: 2 - - uid: 6032 + - uid: 867 components: - type: Transform rot: -1.5707963267948966 rad @@ -26047,138 +26620,138 @@ entities: parent: 2 - proto: AirlockSecurityGlassLocked entities: - - uid: 276 + - uid: 868 components: - type: Transform pos: 45.5,-4.5 parent: 2 - - uid: 440 + - uid: 869 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,2.5 parent: 2 - - uid: 557 + - uid: 870 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-6.5 parent: 2 - - uid: 726 + - uid: 871 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,2.5 parent: 2 - - uid: 727 + - uid: 872 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-45.5 parent: 2 - - uid: 728 + - uid: 873 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-30.5 parent: 2 - - uid: 729 + - uid: 874 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-84.5 parent: 2 - - uid: 730 + - uid: 875 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-81.5 parent: 2 - - uid: 731 + - uid: 876 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-52.5 parent: 2 - - uid: 732 + - uid: 877 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-40.5 parent: 2 - - uid: 740 + - uid: 878 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-34.5 parent: 2 - - uid: 743 + - uid: 879 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-30.5 parent: 2 - - uid: 2614 + - uid: 880 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-16.5 parent: 2 - - uid: 7783 + - uid: 881 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-12.5 parent: 2 - - uid: 11029 + - uid: 882 components: - type: Transform pos: 48.5,-21.5 parent: 2 - - uid: 13975 + - uid: 883 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-6.5 parent: 2 - - uid: 16997 + - uid: 884 components: - type: Transform pos: 58.5,4.5 parent: 2 - - uid: 19567 + - uid: 885 components: - type: Transform pos: 58.5,10.5 parent: 2 - - uid: 19618 + - uid: 886 components: - type: Transform pos: 58.5,8.5 parent: 2 - - uid: 30485 + - uid: 887 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-2.5 parent: 2 - - uid: 30486 + - uid: 888 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-2.5 parent: 2 - - uid: 32970 + - uid: 889 components: - type: Transform pos: 74.5,2.5 parent: 2 - - uid: 36798 + - uid: 890 components: - type: Transform pos: 46.5,-9.5 parent: 2 - - uid: 37868 + - uid: 891 components: - type: Transform rot: 1.5707963267948966 rad @@ -26186,39 +26759,39 @@ entities: parent: 2 - proto: AirlockSecurityLawyerGlassLocked entities: - - uid: 2763 + - uid: 892 components: - type: Transform pos: 66.5,-7.5 parent: 2 - - uid: 9426 + - uid: 893 components: - type: Transform pos: 66.5,-9.5 parent: 2 - - uid: 14455 + - uid: 894 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-2.5 parent: 2 - - uid: 14558 + - uid: 895 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-2.5 parent: 2 - - uid: 17349 + - uid: 896 components: - type: Transform pos: 55.5,4.5 parent: 2 - - uid: 24322 + - uid: 897 components: - type: Transform pos: 71.5,-7.5 parent: 2 - - uid: 26370 + - uid: 898 components: - type: Transform rot: 1.5707963267948966 rad @@ -26226,75 +26799,75 @@ entities: parent: 2 - proto: AirlockSecurityLawyerLocked entities: - - uid: 37055 + - uid: 899 components: - type: Transform pos: 52.5,-12.5 parent: 2 - proto: AirlockSecurityLocked entities: - - uid: 248 + - uid: 900 components: - type: Transform pos: 53.5,-3.5 parent: 2 - - uid: 2713 + - uid: 901 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,14.5 parent: 2 - - uid: 15464 + - uid: 902 components: - type: Transform pos: 51.5,-2.5 parent: 2 - - uid: 15476 + - uid: 903 components: - type: Transform pos: 43.5,9.5 parent: 2 - - uid: 16220 + - uid: 904 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,12.5 parent: 2 - - uid: 19514 + - uid: 905 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-0.5 parent: 2 - - uid: 23642 + - uid: 906 components: - type: Transform pos: 66.5,4.5 parent: 2 - - uid: 24560 + - uid: 907 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-0.5 parent: 2 - - uid: 32994 + - uid: 908 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,4.5 parent: 2 - - uid: 33156 + - uid: 909 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,4.5 parent: 2 - - uid: 36977 + - uid: 910 components: - type: Transform pos: 49.5,-9.5 parent: 2 - - uid: 37869 + - uid: 911 components: - type: Transform rot: 1.5707963267948966 rad @@ -26302,36 +26875,36 @@ entities: parent: 2 - proto: AirlockServiceGlassLocked entities: - - uid: 757 + - uid: 912 components: - type: Transform pos: 32.5,9.5 parent: 2 - proto: AirlockServiceLocked entities: - - uid: 758 + - uid: 913 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,4.5 parent: 2 - - uid: 759 + - uid: 914 components: - type: Transform pos: 28.5,-72.5 parent: 2 - - uid: 760 + - uid: 915 components: - type: Transform pos: 30.5,-76.5 parent: 2 - - uid: 761 + - uid: 916 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-49.5 parent: 2 - - uid: 762 + - uid: 917 components: - type: Transform rot: 3.141592653589793 rad @@ -26339,54 +26912,32 @@ entities: parent: 2 - proto: AirlockShuttle entities: - - uid: 185 + - uid: 918 components: - type: Transform rot: 3.141592653589793 rad pos: 108.5,-17.5 parent: 2 - - uid: 764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 98.5,-36.5 - parent: 2 - - uid: 765 - components: - - type: Transform - pos: 91.5,-26.5 - parent: 2 - - uid: 766 - components: - - type: Transform - pos: 98.5,-26.5 - parent: 2 - - uid: 767 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,-36.5 - parent: 2 - - uid: 40028 + - uid: 40826 components: - type: Transform pos: 0.5,0.5 - parent: 37884 + parent: 40825 - proto: AirlockTheatreLocked entities: - - uid: 768 + - uid: 919 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-14.5 parent: 2 - - uid: 769 + - uid: 920 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-20.5 parent: 2 - - uid: 770 + - uid: 921 components: - type: Transform rot: 3.141592653589793 rad @@ -26394,199 +26945,219 @@ entities: parent: 2 - proto: AirlockVirologyGlassLocked entities: - - uid: 771 + - uid: 922 components: - type: Transform pos: -54.5,-4.5 parent: 2 - - uid: 772 + - uid: 923 components: - type: Transform pos: -48.5,-6.5 parent: 2 - - uid: 773 + - uid: 924 components: - type: Transform pos: -48.5,-2.5 parent: 2 - - uid: 774 + - uid: 925 components: - type: Transform pos: -48.5,0.5 parent: 2 - proto: AirlockVirologyLocked entities: - - uid: 775 + - uid: 926 components: - type: Transform pos: -43.5,-0.5 parent: 2 - - uid: 776 + - uid: 927 components: - type: Transform pos: -41.5,1.5 parent: 2 - - uid: 777 + - uid: 928 components: - type: Transform pos: -41.5,-0.5 parent: 2 - - uid: 778 + - uid: 929 components: - type: Transform pos: -43.5,1.5 parent: 2 - - uid: 779 + - uid: 930 components: - type: Transform pos: -53.5,-8.5 parent: 2 - - uid: 780 + - uid: 931 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,5.5 parent: 2 - - uid: 781 + - uid: 932 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,7.5 parent: 2 +- proto: AirlossAutoInjector + entities: + - uid: 71 + components: + - type: Transform + parent: 68 + - type: Physics + canCollide: False + - uid: 80 + components: + - type: Transform + parent: 77 + - type: Physics + canCollide: False + - uid: 89 + components: + - type: Transform + parent: 86 + - type: Physics + canCollide: False - proto: AirSensor entities: - - uid: 784 + - uid: 933 components: - type: Transform pos: 71.5,-32.5 parent: 2 - - uid: 785 + - uid: 934 components: - type: Transform pos: 53.5,-32.5 parent: 2 - - uid: 786 + - uid: 935 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-39.5 parent: 2 - - uid: 788 + - uid: 936 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-45.5 parent: 2 - - uid: 789 + - uid: 937 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,0.5 parent: 2 - - uid: 790 + - uid: 938 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-22.5 parent: 2 - - uid: 791 + - uid: 939 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-46.5 parent: 2 - - uid: 793 + - uid: 940 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-82.5 parent: 2 - - uid: 794 + - uid: 941 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-73.5 parent: 2 - - uid: 795 + - uid: 942 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-72.5 parent: 2 - - uid: 796 + - uid: 943 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-69.5 parent: 2 - - uid: 797 + - uid: 944 components: - type: Transform pos: 44.5,-56.5 parent: 2 - - uid: 798 + - uid: 945 components: - type: Transform pos: 44.5,-52.5 parent: 2 - - uid: 799 + - uid: 946 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-51.5 parent: 2 - - uid: 800 + - uid: 947 components: - type: Transform pos: 49.5,-47.5 parent: 2 - - uid: 801 + - uid: 948 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-61.5 parent: 2 - - uid: 803 + - uid: 949 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-49.5 parent: 2 - - uid: 805 + - uid: 950 components: - type: Transform pos: 44.5,-32.5 parent: 2 - - uid: 806 + - uid: 951 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-25.5 parent: 2 - - uid: 807 + - uid: 952 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-28.5 parent: 2 - - uid: 808 + - uid: 953 components: - type: Transform pos: 82.5,-32.5 parent: 2 - - uid: 809 + - uid: 954 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,-22.5 parent: 2 - - uid: 810 + - uid: 955 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,-40.5 parent: 2 - - uid: 824 + - uid: 956 components: - type: Transform rot: 3.141592653589793 rad @@ -26594,121 +27165,131 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 17985 - - uid: 825 + - 247 + - 19135 + - uid: 957 components: - type: Transform pos: 29.5,-32.5 parent: 2 - - uid: 826 + - uid: 958 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-20.5 parent: 2 - - uid: 827 + - uid: 959 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-4.5 parent: 2 - - uid: 828 + - uid: 960 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,8.5 parent: 2 - - uid: 829 + - uid: 961 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,0.5 parent: 2 - - uid: 830 + - type: DeviceNetwork + deviceLists: + - 300 + - uid: 962 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,0.5 parent: 2 - - uid: 831 + - uid: 963 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,11.5 parent: 2 - - uid: 832 + - uid: 964 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,9.5 parent: 2 - - uid: 833 + - uid: 965 components: - type: Transform pos: -6.5,10.5 parent: 2 - - uid: 834 + - uid: 966 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,15.5 parent: 2 - - uid: 835 + - uid: 967 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,15.5 parent: 2 - - uid: 836 + - uid: 968 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,21.5 parent: 2 - - uid: 837 + - type: DeviceNetwork + deviceLists: + - 293 + - uid: 969 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,21.5 parent: 2 - - uid: 838 + - uid: 970 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,15.5 parent: 2 - - uid: 839 + - uid: 971 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-2.5 parent: 2 - - uid: 841 + - type: DeviceNetwork + deviceLists: + - 300 + - 301 + - uid: 972 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,13.5 parent: 2 - - uid: 842 + - uid: 973 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-20.5 parent: 2 - - uid: 843 + - uid: 974 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-35.5 parent: 2 - - uid: 844 + - uid: 975 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-35.5 parent: 2 - - uid: 845 + - uid: 976 components: - type: Transform rot: 3.141592653589793 rad @@ -26716,8 +27297,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 164 - - uid: 846 + - 243 + - uid: 977 components: - type: Transform rot: 3.141592653589793 rad @@ -26725,8 +27306,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - uid: 847 + - 171 + - uid: 978 components: - type: Transform rot: 3.141592653589793 rad @@ -26734,56 +27315,56 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - uid: 848 + - 171 + - uid: 979 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-28.5 parent: 2 - - uid: 849 + - uid: 980 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-20.5 parent: 2 - - uid: 850 + - uid: 981 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-19.5 parent: 2 - - uid: 851 + - uid: 982 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-24.5 parent: 2 - - uid: 852 + - uid: 983 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-35.5 parent: 2 - - uid: 853 + - uid: 984 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-3.5 parent: 2 - - uid: 854 + - uid: 985 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-9.5 parent: 2 - - uid: 855 + - uid: 986 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-3.5 parent: 2 - - uid: 856 + - uid: 987 components: - type: Transform rot: 3.141592653589793 rad @@ -26791,74 +27372,74 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - uid: 857 + - 236 + - uid: 988 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-48.5 parent: 2 - - uid: 858 + - uid: 989 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-77.5 parent: 2 - - uid: 859 + - uid: 990 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-58.5 parent: 2 - - uid: 860 + - uid: 991 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-62.5 parent: 2 - - uid: 861 + - uid: 992 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-82.5 parent: 2 - - uid: 862 + - uid: 993 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-65.5 parent: 2 - - uid: 863 + - uid: 994 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-55.5 parent: 2 - - uid: 864 + - uid: 995 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-65.5 parent: 2 - - uid: 865 + - uid: 996 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-65.5 parent: 2 - - uid: 866 + - uid: 997 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-65.5 parent: 2 - - uid: 867 + - uid: 998 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-46.5 parent: 2 - - uid: 868 + - uid: 999 components: - type: Transform rot: 3.141592653589793 rad @@ -26866,50 +27447,50 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17967 - - uid: 869 + - 19118 + - uid: 1000 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-54.5 parent: 2 - - uid: 870 + - uid: 1001 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-60.5 parent: 2 - - uid: 871 + - uid: 1002 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-71.5 parent: 2 - - uid: 872 + - uid: 1003 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-77.5 parent: 2 - - uid: 873 + - uid: 1004 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-82.5 parent: 2 - - uid: 874 + - uid: 1005 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-89.5 parent: 2 - - uid: 875 + - uid: 1006 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-97.5 parent: 2 - - uid: 876 + - uid: 1007 components: - type: Transform rot: 3.141592653589793 rad @@ -26917,60 +27498,60 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 156 - - uid: 877 + - 238 + - uid: 1008 components: - type: Transform pos: 7.5,-83.5 parent: 2 - - uid: 878 + - uid: 1009 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-90.5 parent: 2 - - uid: 879 + - uid: 1010 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-88.5 parent: 2 - - uid: 880 + - uid: 1011 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-71.5 parent: 2 - - uid: 881 + - uid: 1012 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-60.5 parent: 2 - - uid: 882 + - uid: 1013 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-64.5 parent: 2 - - uid: 883 + - uid: 1014 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-72.5 parent: 2 - - uid: 884 + - uid: 1015 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-45.5 parent: 2 - - uid: 886 + - uid: 1016 components: - type: Transform pos: 12.5,-98.5 parent: 2 - - uid: 887 + - uid: 1017 components: - type: Transform rot: 3.141592653589793 rad @@ -26978,110 +27559,110 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 35 - - uid: 888 + - 130 + - uid: 1018 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-43.5 parent: 2 - - uid: 889 + - uid: 1019 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-41.5 parent: 2 - - uid: 890 + - uid: 1020 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-47.5 parent: 2 - - uid: 891 + - uid: 1021 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-36.5 parent: 2 - - uid: 892 + - uid: 1022 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-59.5 parent: 2 - - uid: 893 + - uid: 1023 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-77.5 parent: 2 - - uid: 894 + - uid: 1024 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-83.5 parent: 2 - - uid: 895 + - uid: 1025 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-68.5 parent: 2 - - uid: 896 + - uid: 1026 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-83.5 parent: 2 - - uid: 897 + - uid: 1027 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-87.5 parent: 2 - - uid: 898 + - uid: 1028 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-77.5 parent: 2 - - uid: 899 + - uid: 1029 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-57.5 parent: 2 - - uid: 900 + - uid: 1030 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-30.5 parent: 2 - - uid: 901 + - uid: 1031 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-22.5 parent: 2 - - uid: 902 + - uid: 1032 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-11.5 parent: 2 - - uid: 903 + - uid: 1033 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,7.5 parent: 2 - - uid: 904 + - uid: 1034 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-1.5 parent: 2 - - uid: 905 + - uid: 1035 components: - type: Transform rot: 3.141592653589793 rad @@ -27089,14 +27670,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 163 - - uid: 906 + - 242 + - uid: 1036 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,17.5 parent: 2 - - uid: 907 + - uid: 1037 components: - type: Transform rot: 3.141592653589793 rad @@ -27104,14 +27685,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 150 - - uid: 908 + - 233 + - uid: 1038 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-19.5 parent: 2 - - uid: 909 + - uid: 1039 components: - type: Transform rot: 3.141592653589793 rad @@ -27119,14 +27700,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17982 - - uid: 910 + - 19133 + - uid: 1040 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-82.5 parent: 2 - - uid: 912 + - uid: 1041 components: - type: Transform rot: 3.141592653589793 rad @@ -27134,13 +27715,13 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 147 - - uid: 914 + - 230 + - uid: 1042 components: - type: Transform pos: -49.5,-68.5 parent: 2 - - uid: 915 + - uid: 1043 components: - type: Transform rot: 3.141592653589793 rad @@ -27148,8 +27729,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 170 - - uid: 916 + - 249 + - uid: 1044 components: - type: Transform rot: 3.141592653589793 rad @@ -27157,8 +27738,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 169 - - uid: 917 + - 248 + - uid: 1045 components: - type: Transform rot: 3.141592653589793 rad @@ -27166,8 +27747,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 172 - - uid: 918 + - 251 + - uid: 1046 components: - type: Transform rot: 3.141592653589793 rad @@ -27175,9 +27756,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 173 - - 17984 - - uid: 919 + - 252 + - 19134 + - uid: 1047 components: - type: Transform rot: 3.141592653589793 rad @@ -27185,23 +27766,23 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 89 - - 17960 - - 49 - - 17925 - - 17923 - - uid: 924 + - 174 + - 19111 + - 143 + - 19085 + - 19083 + - uid: 1048 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,6.5 parent: 2 - - uid: 925 + - uid: 1049 components: - type: Transform pos: -68.5,11.5 parent: 2 - - uid: 926 + - uid: 1050 components: - type: Transform rot: 3.141592653589793 rad @@ -27209,8 +27790,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 165 - - uid: 927 + - 244 + - uid: 1051 components: - type: Transform rot: 3.141592653589793 rad @@ -27218,8 +27799,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 166 - - uid: 928 + - 245 + - uid: 1052 components: - type: Transform rot: 3.141592653589793 rad @@ -27227,50 +27808,50 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 167 - - uid: 929 + - 246 + - uid: 1053 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,-69.5 parent: 2 - - uid: 930 + - uid: 1054 components: - type: Transform rot: 3.141592653589793 rad pos: 103.5,-69.5 parent: 2 - - uid: 931 + - uid: 1055 components: - type: Transform rot: 3.141592653589793 rad pos: 93.5,-69.5 parent: 2 - - uid: 932 + - uid: 1056 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,-75.5 parent: 2 - - uid: 933 + - uid: 1057 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,-79.5 parent: 2 - - uid: 934 + - uid: 1058 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,-87.5 parent: 2 - - uid: 935 + - uid: 1059 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,-62.5 parent: 2 - - uid: 936 + - uid: 1060 components: - type: Transform rot: 3.141592653589793 rad @@ -27278,8 +27859,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 175 - - uid: 937 + - 254 + - uid: 1061 components: - type: Transform rot: 3.141592653589793 rad @@ -27287,8 +27868,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 174 - - uid: 938 + - 253 + - uid: 1062 components: - type: Transform rot: 3.141592653589793 rad @@ -27296,8 +27877,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 178 - - uid: 939 + - 255 + - uid: 1063 components: - type: Transform rot: 3.141592653589793 rad @@ -27305,8 +27886,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 179 - - uid: 940 + - 256 + - uid: 1064 components: - type: Transform rot: 3.141592653589793 rad @@ -27314,16 +27895,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 179 - - uid: 941 + - 256 + - uid: 1065 components: - type: Transform pos: 31.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - uid: 942 + - 247 + - uid: 1066 components: - type: Transform rot: 3.141592653589793 rad @@ -27331,8 +27912,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 181 - - uid: 17374 + - 257 + - uid: 1067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 293 + - uid: 1068 components: - type: Transform rot: 1.5707963267948966 rad @@ -27340,14 +27930,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2071 - - uid: 17940 + - 263 + - uid: 1069 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,14.5 parent: 2 - - uid: 19562 + - uid: 1070 components: - type: Transform rot: 1.5707963267948966 rad @@ -27355,8 +27945,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 19617 - - uid: 19563 + - 269 + - uid: 1071 components: - type: Transform rot: 1.5707963267948966 rad @@ -27364,158 +27954,285 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 394 - - uid: 22099 + - 258 + - uid: 1072 components: - type: Transform - pos: -3.5,1.5 - parent: 21045 + pos: 43.5,-11.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 40934 - - uid: 22104 + - 150 + - uid: 1073 components: - type: Transform - pos: 4.5,1.5 - parent: 21045 + rot: 3.141592653589793 rad + pos: -15.5,3.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 40934 - - uid: 27795 + - 19105 + - uid: 1074 components: - type: Transform - pos: 43.5,-11.5 + rot: -1.5707963267948966 rad + pos: 78.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 58 - - uid: 34408 + - 276 + - uid: 1075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 276 + - uid: 1076 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 273 + - 19136 + - uid: 1077 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19136 + - uid: 1078 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,3.5 + pos: -23.5,-43.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-32.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-37.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17954 - - uid: 37875 + - 19127 + - 277 + - uid: 1081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,4.5 + pos: 10.5,-17.5 parent: 2 - type: DeviceNetwork deviceLists: - - 37871 - - uid: 37876 + - 278 + - uid: 1082 components: - type: Transform rot: -1.5707963267948966 rad - pos: 73.5,5.5 + pos: -5.5,-54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 37871 - - uid: 37901 + - 279 + - uid: 1083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 280 + - 19138 + - uid: 1084 + components: + - type: Transform + pos: 122.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 291 + - 19139 + - uid: 1085 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-7.5 - parent: 37887 + pos: -9.5,-54.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 38224 - - uid: 38731 + - 296 + - uid: 1086 components: - type: Transform - pos: 4.5,-8.5 - parent: 38722 + rot: 3.141592653589793 rad + pos: -2.5,-53.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 38723 - - uid: 39484 + - 295 + - uid: 1087 components: + - type: MetaData + name: кислород - type: Transform - pos: 0.5,-2.5 + rot: 3.141592653589793 rad + pos: 30.5,-99.5 parent: 2 - type: DeviceNetwork deviceLists: - - 30404 - - 39547 - - uid: 39488 + - 297 + - uid: 1088 components: + - type: MetaData + name: азот - type: Transform - pos: 0.5,-8.5 + rot: 3.141592653589793 rad + pos: 30.5,-102.5 parent: 2 - type: DeviceNetwork deviceLists: - - 39547 - - uid: 39589 + - 297 + - uid: 1089 components: + - type: MetaData + name: NO2 - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-43.5 + pos: 30.5,-96.5 parent: 2 - - uid: 39590 + - type: DeviceNetwork + deviceLists: + - 297 + - uid: 1090 components: + - type: MetaData + name: плазма - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-32.5 + pos: 30.5,-93.5 parent: 2 - - uid: 39591 + - type: DeviceNetwork + deviceLists: + - 297 + - uid: 1091 components: + - type: MetaData + name: CO2 - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-37.5 + pos: 30.5,-90.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17976 - - 39606 - - uid: 39740 + - 297 + - uid: 1092 + components: + - type: MetaData + name: пар + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-87.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 297 + - uid: 1093 components: - type: Transform - pos: 10.5,-17.5 + rot: 3.141592653589793 rad + pos: 37.5,-109.5 parent: 2 - type: DeviceNetwork deviceLists: - - 39739 - - uid: 40075 + - 297 + - uid: 1094 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-54.5 + pos: 16.5,20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40074 - - uid: 40125 + - 298 + - uid: 1095 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-37.5 + pos: -66.5,-48.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40124 - - 40123 - - uid: 41015 + - 299 + - uid: 1096 components: - type: Transform - pos: 122.5,-39.5 + pos: -15.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 300 + - uid: 1097 + components: + - type: Transform + pos: -16.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 41014 - - 41016 + - 300 + - uid: 40670 + components: + - type: Transform + pos: -3.5,1.5 + parent: 40666 + - type: DeviceNetwork + deviceLists: + - 40667 + - uid: 40671 + components: + - type: Transform + pos: 4.5,1.5 + parent: 40666 + - type: DeviceNetwork + deviceLists: + - 40667 + - uid: 40842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 41170 + - uid: 41678 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 - proto: AltarBananium entities: - - uid: 943 + - uid: 1098 components: - type: Transform pos: 38.5,-15.5 parent: 2 - - uid: 944 + - uid: 1099 components: - type: Transform rot: 1.5707963267948966 rad @@ -27523,7 +28240,7 @@ entities: parent: 2 - proto: AltarConvertMaint entities: - - uid: 945 + - uid: 1100 components: - type: Transform rot: 1.5707963267948966 rad @@ -27531,103 +28248,103 @@ entities: parent: 2 - proto: AltarSpawner entities: - - uid: 946 + - uid: 1101 components: - type: Transform pos: 35.5,-63.5 parent: 2 - proto: AltarToolbox entities: - - uid: 948 + - uid: 1102 components: - type: Transform pos: 29.5,33.5 parent: 2 - proto: AlwaysPoweredlightRed entities: - - uid: 40153 + - uid: 1103 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,17.5 parent: 2 - - uid: 40154 + - uid: 1104 components: - type: Transform pos: -18.5,20.5 parent: 2 - proto: AlwaysPoweredLightSodium entities: - - uid: 949 + - uid: 1105 components: - type: Transform pos: 40.5,-85.5 parent: 2 - - uid: 950 + - uid: 1106 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-93.5 parent: 2 - - uid: 951 + - uid: 1107 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-88.5 parent: 2 - - uid: 952 + - uid: 1108 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-103.5 parent: 2 - - uid: 953 + - uid: 1109 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-100.5 parent: 2 - - uid: 954 + - uid: 1110 components: - type: Transform pos: 51.5,-96.5 parent: 2 - - uid: 955 + - uid: 1111 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-100.5 parent: 2 - - uid: 29003 + - uid: 1112 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-32.5 parent: 2 - - uid: 29004 + - uid: 1113 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-30.5 parent: 2 - - uid: 29007 + - uid: 1114 components: - type: Transform pos: 1.5,-22.5 parent: 2 - - uid: 29008 + - uid: 1115 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-26.5 parent: 2 - - uid: 29009 + - uid: 1116 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-22.5 parent: 2 - - uid: 29010 + - uid: 1117 components: - type: Transform rot: -1.5707963267948966 rad @@ -27635,13 +28352,13 @@ entities: parent: 2 - proto: AlwaysPoweredWallLight entities: - - uid: 956 + - uid: 1118 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-39.5 parent: 2 - - uid: 957 + - uid: 1119 components: - type: Transform rot: 1.5707963267948966 rad @@ -27649,46 +28366,46 @@ entities: parent: 2 - proto: AmbrosiaVulgarisSeeds entities: - - uid: 958 + - uid: 1120 components: - type: Transform pos: 33.49836,22.619154 parent: 2 - proto: AmePartFlatpack entities: - - uid: 959 + - uid: 1121 components: - type: Transform pos: 50.540848,-53.06256 parent: 2 - - uid: 960 + - uid: 1122 components: - type: Transform pos: 41.622326,-82.32919 parent: 2 - - uid: 961 + - uid: 1123 components: - type: Transform pos: 40.496696,-79.448135 parent: 2 - - uid: 962 + - uid: 1124 components: - type: Transform pos: 42.564983,-80.49184 parent: 2 - - uid: 963 + - uid: 1125 components: - type: Transform pos: 41.527405,-77.49768 parent: 2 - - uid: 964 + - uid: 1126 components: - type: Transform pos: -39.020134,-113.99075 parent: 2 - proto: AmeShielding entities: - - uid: 965 + - uid: 1127 components: - type: Transform rot: -1.5707963267948966 rad @@ -27696,14 +28413,14 @@ entities: parent: 2 - proto: AmmoTechFabCircuitboard entities: - - uid: 40130 + - uid: 1128 components: - type: Transform pos: 12.505894,-17.436338 parent: 2 - proto: AnomalyCoreGravityInert entities: - - uid: 30601 + - uid: 1129 components: - type: MetaData desc: Войди и я поглощу тебя.... @@ -27713,38 +28430,38 @@ entities: parent: 2 - proto: AnomalyScanner entities: - - uid: 966 + - uid: 1130 components: - type: Transform pos: -47.520256,-80.4062 parent: 2 - - uid: 967 + - uid: 1131 components: - type: Transform pos: -47.457756,-80.48432 parent: 2 - - uid: 968 + - uid: 1132 components: - type: Transform pos: -47.37963,-80.56245 parent: 2 - proto: AntiPoisonMedipen entities: - - uid: 32514 + - uid: 1133 components: - type: Transform pos: -5.6444874,-19.38448 parent: 2 - proto: APCBasic entities: - - uid: 969 + - uid: 1134 components: - type: MetaData name: Основной коридор Ю - type: Transform pos: -5.5,-73.5 parent: 2 - - uid: 970 + - uid: 1135 components: - type: MetaData name: Тех тоннели СВ @@ -27752,7 +28469,7 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,18.5 parent: 2 - - uid: 971 + - uid: 1136 components: - type: MetaData name: Тех тоннели З @@ -27760,7 +28477,7 @@ entities: rot: 1.5707963267948966 rad pos: -60.5,-25.5 parent: 2 - - uid: 973 + - uid: 1137 components: - type: MetaData name: Комната УЧ @@ -27768,28 +28485,28 @@ entities: rot: 3.141592653589793 rad pos: 64.5,-63.5 parent: 2 - - uid: 974 + - uid: 1138 components: - type: MetaData name: Солнечные панели ЮЗ - type: Transform pos: -55.5,-84.5 parent: 2 - - uid: 975 + - uid: 1139 components: - type: MetaData name: Суд - type: Transform pos: 71.5,-34.5 parent: 2 - - uid: 976 + - uid: 1140 components: - type: MetaData name: ТЭГ - type: Transform pos: 53.5,-85.5 parent: 2 - - uid: 977 + - uid: 1141 components: - type: MetaData name: Химия @@ -27797,7 +28514,7 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-33.5 parent: 2 - - uid: 978 + - uid: 1142 components: - type: MetaData name: Солнечные панели ЮВ @@ -27805,7 +28522,7 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,-68.5 parent: 2 - - uid: 979 + - uid: 1143 components: - type: MetaData name: Генераторная @@ -27813,7 +28530,7 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-80.5 parent: 2 - - uid: 980 + - uid: 1144 components: - type: MetaData name: Раздевалка инженеров @@ -27821,7 +28538,7 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,-80.5 parent: 2 - - uid: 981 + - uid: 1145 components: - type: MetaData name: Кабинет СИ @@ -27829,7 +28546,7 @@ entities: rot: 3.141592653589793 rad pos: 56.5,-74.5 parent: 2 - - uid: 982 + - uid: 1146 components: - type: MetaData name: Хранилища инженерного @@ -27837,7 +28554,7 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-63.5 parent: 2 - - uid: 983 + - uid: 1147 components: - type: MetaData name: Инженерный коридор @@ -27845,7 +28562,7 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,-71.5 parent: 2 - - uid: 984 + - uid: 1148 components: - type: MetaData name: Основной зал @@ -27853,7 +28570,7 @@ entities: rot: 1.5707963267948966 rad pos: 47.5,-52.5 parent: 2 - - uid: 985 + - uid: 1149 components: - type: MetaData name: Атмос приёмная @@ -27861,7 +28578,7 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-50.5 parent: 2 - - uid: 986 + - uid: 1150 components: - type: MetaData name: Коридор инженерии @@ -27869,7 +28586,7 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-35.5 parent: 2 - - uid: 987 + - uid: 1151 components: - type: MetaData name: Каюта священника @@ -27877,7 +28594,7 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-70.5 parent: 2 - - uid: 988 + - uid: 1152 components: - type: MetaData name: Церковь @@ -27885,14 +28602,14 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,-60.5 parent: 2 - - uid: 996 + - uid: 1153 components: - type: MetaData name: Прибытие С - type: Transform pos: 90.5,-20.5 parent: 2 - - uid: 997 + - uid: 1154 components: - type: MetaData name: Прибытие Ю @@ -27900,7 +28617,7 @@ entities: rot: 3.141592653589793 rad pos: 91.5,-42.5 parent: 2 - - uid: 998 + - uid: 1155 components: - type: MetaData name: Верфь @@ -27908,21 +28625,21 @@ entities: rot: 3.141592653589793 rad pos: 104.5,-23.5 parent: 2 - - uid: 999 + - uid: 1156 components: - type: MetaData name: КПП прибытия - type: Transform pos: 78.5,-25.5 parent: 2 - - uid: 1000 + - uid: 1157 components: - type: MetaData name: Коридор прибытия - type: Transform pos: 71.5,-30.5 parent: 2 - - uid: 1001 + - uid: 1158 components: - type: MetaData name: Коридор брига @@ -27930,7 +28647,7 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-26.5 parent: 2 - - uid: 1002 + - uid: 1159 components: - type: MetaData name: Туалет прибытия @@ -27938,7 +28655,7 @@ entities: rot: -1.5707963267948966 rad pos: 80.5,-41.5 parent: 2 - - uid: 1003 + - uid: 1160 components: - type: MetaData name: Хранилище плат @@ -27946,7 +28663,7 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-40.5 parent: 2 - - uid: 1004 + - uid: 1161 components: - type: MetaData name: Мастерская @@ -27954,7 +28671,7 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,8.5 parent: 2 - - uid: 1005 + - uid: 1162 components: - type: MetaData name: Кабинет капитана @@ -27962,7 +28679,7 @@ entities: rot: 3.141592653589793 rad pos: 11.5,12.5 parent: 2 - - uid: 1006 + - uid: 1163 components: - type: MetaData name: Мостик @@ -27970,7 +28687,7 @@ entities: rot: 3.141592653589793 rad pos: 2.5,20.5 parent: 2 - - uid: 1007 + - uid: 1164 components: - type: MetaData name: Хранилище EVA @@ -27978,7 +28695,7 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,16.5 parent: 2 - - uid: 1008 + - uid: 1165 components: - type: MetaData name: Доп хранилище EVA @@ -27986,7 +28703,7 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,16.5 parent: 2 - - uid: 1009 + - uid: 1166 components: - type: MetaData name: Конференц-зал @@ -27994,7 +28711,7 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,8.5 parent: 2 - - uid: 1010 + - uid: 1167 components: - type: MetaData name: Офис ГП @@ -28002,14 +28719,14 @@ entities: rot: 3.141592653589793 rad pos: -8.5,8.5 parent: 2 - - uid: 1012 + - uid: 1168 components: - type: MetaData name: Основной коридор С - type: Transform pos: -1.5,5.5 parent: 2 - - uid: 1013 + - uid: 1169 components: - type: MetaData name: Кабинет АВД @@ -28017,7 +28734,7 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,4.5 parent: 2 - - uid: 1014 + - uid: 1170 components: - type: MetaData name: Библиотека @@ -28025,7 +28742,7 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,10.5 parent: 2 - - uid: 1015 + - uid: 1171 components: - type: MetaData name: Меедотсек С @@ -28033,7 +28750,7 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-6.5 parent: 2 - - uid: 1016 + - uid: 1172 components: - type: MetaData name: Кабинет ГВ @@ -28041,7 +28758,7 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,-10.5 parent: 2 - - uid: 1017 + - uid: 1173 components: - type: MetaData name: Вирусология @@ -28049,7 +28766,7 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,1.5 parent: 2 - - uid: 1018 + - uid: 1174 components: - type: MetaData name: Кабинет вирусолога @@ -28057,14 +28774,14 @@ entities: rot: -1.5707963267948966 rad pos: -51.5,-6.5 parent: 2 - - uid: 1019 + - uid: 1175 components: - type: MetaData name: Кабинет парамедика - type: Transform pos: -52.5,-11.5 parent: 2 - - uid: 1020 + - uid: 1176 components: - type: MetaData name: Палаты и хирургия @@ -28072,14 +28789,14 @@ entities: rot: -1.5707963267948966 rad pos: -50.5,-24.5 parent: 2 - - uid: 1021 + - uid: 1177 components: - type: MetaData name: Медотсек З - type: Transform pos: -44.5,-26.5 parent: 2 - - uid: 1022 + - uid: 1178 components: - type: MetaData name: Медотсек Ю @@ -28087,7 +28804,7 @@ entities: rot: -1.5707963267948966 rad pos: -39.5,-18.5 parent: 2 - - uid: 1023 + - uid: 1179 components: - type: MetaData name: Приёмная меда @@ -28095,21 +28812,21 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,-37.5 parent: 2 - - uid: 1024 + - uid: 1180 components: - type: MetaData name: Тех тоннели З - type: Transform pos: -67.5,-51.5 parent: 2 - - uid: 1025 + - uid: 1181 components: - type: MetaData name: КПП отбытия - type: Transform pos: -76.5,-46.5 parent: 2 - - uid: 1026 + - uid: 1182 components: - type: MetaData name: Отбытие @@ -28117,7 +28834,7 @@ entities: rot: 1.5707963267948966 rad pos: -77.5,-38.5 parent: 2 - - uid: 1027 + - uid: 1183 components: - type: MetaData name: Коридор отбытия @@ -28125,7 +28842,7 @@ entities: rot: 3.141592653589793 rad pos: -60.5,-45.5 parent: 2 - - uid: 1028 + - uid: 1184 components: - type: MetaData name: Токсины @@ -28133,14 +28850,14 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,-57.5 parent: 2 - - uid: 1029 + - uid: 1185 components: - type: MetaData name: Комната испытаний - type: Transform pos: -65.5,-63.5 parent: 2 - - uid: 1030 + - uid: 1186 components: - type: MetaData name: Аномалистика @@ -28148,7 +28865,7 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,-82.5 parent: 2 - - uid: 1031 + - uid: 1187 components: - type: MetaData name: Коридор РнД Ю @@ -28156,7 +28873,7 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,-71.5 parent: 2 - - uid: 1032 + - uid: 1188 components: - type: MetaData name: Сервера РнД @@ -28164,7 +28881,7 @@ entities: rot: 1.5707963267948966 rad pos: -37.5,-72.5 parent: 2 - - uid: 1033 + - uid: 1189 components: - type: MetaData name: Кабинет НРа @@ -28172,7 +28889,7 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,-70.5 parent: 2 - - uid: 1034 + - uid: 1190 components: - type: MetaData name: Комната механики @@ -28180,7 +28897,7 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,-62.5 parent: 2 - - uid: 1035 + - uid: 1191 components: - type: MetaData name: Доп склад инструментов @@ -28188,14 +28905,14 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-74.5 parent: 2 - - uid: 1036 + - uid: 1192 components: - type: MetaData name: Коридор РнД С - type: Transform pos: -40.5,-56.5 parent: 2 - - uid: 1037 + - uid: 1193 components: - type: MetaData name: Робототехника @@ -28203,7 +28920,7 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-56.5 parent: 2 - - uid: 1038 + - uid: 1194 components: - type: MetaData name: КПП РнД @@ -28211,14 +28928,14 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,-51.5 parent: 2 - - uid: 1039 + - uid: 1195 components: - type: MetaData name: Дормиторий - type: Transform pos: -33.5,-91.5 parent: 2 - - uid: 1040 + - uid: 1196 components: - type: MetaData name: Старый бар @@ -28226,7 +28943,7 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-96.5 parent: 2 - - uid: 1041 + - uid: 1197 components: - type: MetaData name: Спортзал @@ -28234,7 +28951,7 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-82.5 parent: 2 - - uid: 1042 + - uid: 1198 components: - type: MetaData name: Туалет жилого отсека @@ -28242,7 +28959,7 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-77.5 parent: 2 - - uid: 1043 + - uid: 1199 components: - type: MetaData name: Репортёр @@ -28250,21 +28967,21 @@ entities: rot: 3.141592653589793 rad pos: 29.5,-77.5 parent: 2 - - uid: 1044 + - uid: 1200 components: - type: MetaData name: Утилизаторная - type: Transform pos: -5.5,-85.5 parent: 2 - - uid: 1045 + - uid: 1201 components: - type: MetaData name: Стыковка утилизаторов - type: Transform pos: -6.5,-92.5 parent: 2 - - uid: 1046 + - uid: 1202 components: - type: MetaData name: Карго склад @@ -28272,7 +28989,7 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-92.5 parent: 2 - - uid: 1047 + - uid: 1203 components: - type: MetaData name: Карго приёмная @@ -28280,7 +28997,7 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-82.5 parent: 2 - - uid: 1048 + - uid: 1204 components: - type: MetaData name: Офис КМа @@ -28288,7 +29005,7 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-97.5 parent: 2 - - uid: 1049 + - uid: 1205 components: - type: MetaData name: КПП карго @@ -28296,14 +29013,14 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-82.5 parent: 2 - - uid: 1050 + - uid: 1206 components: - type: MetaData name: Основной коридор ЮВ - type: Transform pos: 30.5,-52.5 parent: 2 - - uid: 1052 + - uid: 1207 components: - type: MetaData name: Основной коридор В @@ -28311,14 +29028,14 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-25.5 parent: 2 - - uid: 1053 + - uid: 1208 components: - type: MetaData name: Основной коридор СВ - type: Transform pos: 23.5,-0.5 parent: 2 - - uid: 1054 + - uid: 1209 components: - type: MetaData name: Основной коридор СЗ @@ -28326,14 +29043,14 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-1.5 parent: 2 - - uid: 1055 + - uid: 1210 components: - type: MetaData name: Основной коридор З - type: Transform pos: -31.5,-30.5 parent: 2 - - uid: 1056 + - uid: 1211 components: - type: MetaData name: Основной коридор З @@ -28341,7 +29058,7 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-45.5 parent: 2 - - uid: 1057 + - uid: 1212 components: - type: MetaData name: Основной коридор ЮЗ @@ -28349,7 +29066,7 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-56.5 parent: 2 - - uid: 1059 + - uid: 1213 components: - type: MetaData name: Тех тоннели ЮЗ @@ -28357,7 +29074,7 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-93.5 parent: 2 - - uid: 1060 + - uid: 1214 components: - type: MetaData name: Дроны @@ -28365,7 +29082,7 @@ entities: rot: -1.5707963267948966 rad pos: -66.5,-16.5 parent: 2 - - uid: 1061 + - uid: 1215 components: - type: MetaData name: Старое отбытие @@ -28373,7 +29090,7 @@ entities: rot: 3.141592653589793 rad pos: -44.5,10.5 parent: 2 - - uid: 1062 + - uid: 1216 components: - type: MetaData name: Тех тоннели С @@ -28381,7 +29098,7 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,7.5 parent: 2 - - uid: 1063 + - uid: 1217 components: - type: MetaData name: Кабинет психолога @@ -28389,7 +29106,7 @@ entities: rot: 3.141592653589793 rad pos: -55.5,-50.5 parent: 2 - - uid: 1064 + - uid: 1218 components: - type: MetaData name: Столовая @@ -28397,7 +29114,7 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,2.5 parent: 2 - - uid: 1065 + - uid: 1219 components: - type: MetaData name: Кладбище @@ -28405,7 +29122,7 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,29.5 parent: 2 - - uid: 1066 + - uid: 1220 components: - type: MetaData name: Бар @@ -28413,7 +29130,7 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,1.5 parent: 2 - - uid: 1067 + - uid: 1221 components: - type: MetaData name: Тесла Ю @@ -28421,7 +29138,7 @@ entities: rot: 1.5707963267948966 rad pos: 69.5,-61.5 parent: 2 - - uid: 1068 + - uid: 1222 components: - type: MetaData name: Тесла С @@ -28429,7 +29146,7 @@ entities: rot: 1.5707963267948966 rad pos: 69.5,-57.5 parent: 2 - - uid: 1069 + - uid: 1223 components: - type: MetaData name: Комната доп питания @@ -28437,14 +29154,14 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-116.5 parent: 2 - - uid: 1071 + - uid: 1224 components: - type: MetaData name: Гидропоника - type: Transform pos: 34.5,16.5 parent: 2 - - uid: 1072 + - uid: 1225 components: - type: MetaData name: Ксеноархеология @@ -28452,7 +29169,7 @@ entities: rot: 1.5707963267948966 rad pos: -66.5,-69.5 parent: 2 - - uid: 1073 + - uid: 1226 components: - type: MetaData name: Склад медикаментов @@ -28460,14 +29177,14 @@ entities: rot: 1.5707963267948966 rad pos: -50.5,-11.5 parent: 2 - - uid: 1074 + - uid: 1227 components: - type: MetaData name: Комната наблюдения теслы - type: Transform pos: 75.5,-47.5 parent: 2 - - uid: 1075 + - uid: 1228 components: - type: MetaData name: Ксенобиология @@ -28475,7 +29192,7 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-69.5 parent: 2 - - uid: 1076 + - uid: 1229 components: - type: MetaData name: Старый склад @@ -28483,7 +29200,7 @@ entities: rot: -1.5707963267948966 rad pos: 99.5,-51.5 parent: 2 - - uid: 1077 + - uid: 1230 components: - type: MetaData name: Подпольное казино @@ -28491,7 +29208,7 @@ entities: rot: 1.5707963267948966 rad pos: 80.5,-47.5 parent: 2 - - uid: 1078 + - uid: 1231 components: - type: MetaData name: Офис адвоката @@ -28499,7 +29216,7 @@ entities: rot: 3.141592653589793 rad pos: 24.5,23.5 parent: 2 - - uid: 1079 + - uid: 1232 components: - type: MetaData name: Театр @@ -28507,21 +29224,21 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,-10.5 parent: 2 - - uid: 1080 + - uid: 1233 components: - type: MetaData name: Старая верфь - type: Transform pos: 107.5,-54.5 parent: 2 - - uid: 1081 + - uid: 1234 components: - type: MetaData name: Доп склад инженерии - type: Transform pos: 47.5,-61.5 parent: 2 - - uid: 1086 + - uid: 1235 components: - type: MetaData name: Солнечные панели СЗ @@ -28529,7 +29246,7 @@ entities: rot: -1.5707963267948966 rad pos: -69.5,9.5 parent: 2 - - uid: 1087 + - uid: 1236 components: - type: MetaData name: Старая библиотека @@ -28537,7 +29254,7 @@ entities: rot: 1.5707963267948966 rad pos: -65.5,-14.5 parent: 2 - - uid: 1091 + - uid: 1237 components: - type: MetaData name: Мостик на астероид @@ -28545,12 +29262,12 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-72.5 parent: 2 - - uid: 1092 + - uid: 1238 components: - type: Transform pos: 68.5,-47.5 parent: 2 - - uid: 1093 + - uid: 1239 components: - type: MetaData name: Тех тоннели ЮЗ @@ -28558,7 +29275,7 @@ entities: rot: -1.5707963267948966 rad pos: -40.5,-110.5 parent: 2 - - uid: 1094 + - uid: 1240 components: - type: MetaData name: Старый спортзал @@ -28566,7 +29283,7 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,-104.5 parent: 2 - - uid: 1095 + - uid: 1241 components: - type: MetaData name: Незавершенные модули @@ -28574,7 +29291,7 @@ entities: rot: 3.141592653589793 rad pos: -50.5,-113.5 parent: 2 - - uid: 1096 + - uid: 1242 components: - type: MetaData name: Старый театр @@ -28582,20 +29299,20 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-117.5 parent: 2 - - uid: 1097 + - uid: 1243 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,-2.5 parent: 2 - - uid: 1098 + - uid: 1244 components: - type: MetaData name: Запасная комната атмосферы - type: Transform pos: -75.5,-23.5 parent: 2 - - uid: 1099 + - uid: 1245 components: - type: MetaData name: Баня @@ -28603,27 +29320,27 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,-16.5 parent: 2 - - uid: 1100 + - uid: 1246 components: - type: MetaData name: Комната сборки - type: Transform pos: -84.5,-6.5 parent: 2 - - uid: 1101 + - uid: 1247 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-11.5 parent: 2 - - uid: 1102 + - uid: 1248 components: - type: MetaData name: ИИ 2 - type: Transform pos: 98.5,-73.5 parent: 2 - - uid: 1103 + - uid: 1249 components: - type: MetaData name: Питание ИИ @@ -28631,7 +29348,7 @@ entities: rot: -1.5707963267948966 rad pos: 101.5,-62.5 parent: 2 - - uid: 1104 + - uid: 1250 components: - type: MetaData name: Маршрутизаторы камер @@ -28639,7 +29356,7 @@ entities: rot: 1.5707963267948966 rad pos: 100.5,-68.5 parent: 2 - - uid: 1105 + - uid: 1251 components: - type: MetaData name: Телекоммуникация @@ -28647,21 +29364,21 @@ entities: rot: -1.5707963267948966 rad pos: 96.5,-68.5 parent: 2 - - uid: 1106 + - uid: 1252 components: - type: MetaData name: ИИ вход - type: Transform pos: 96.5,-77.5 parent: 2 - - uid: 1107 + - uid: 1253 components: - type: MetaData name: Ядро ИИ - type: Transform pos: 99.5,-85.5 parent: 2 - - uid: 1108 + - uid: 1254 components: - type: MetaData name: Кухня @@ -28669,7 +29386,7 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,11.5 parent: 2 - - uid: 1109 + - uid: 1255 components: - type: MetaData name: Парикмахерская @@ -28677,7 +29394,7 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-92.5 parent: 2 - - uid: 1110 + - uid: 1256 components: - type: MetaData name: Тех тоннели СВ эвакуация @@ -28685,7 +29402,7 @@ entities: rot: 3.141592653589793 rad pos: 40.5,29.5 parent: 2 - - uid: 1113 + - uid: 1257 components: - type: MetaData name: Пост Сб @@ -28693,7 +29410,7 @@ entities: rot: 3.141592653589793 rad pos: -45.5,-35.5 parent: 2 - - uid: 1115 + - uid: 1258 components: - type: MetaData name: Капсулы криосна @@ -28701,7 +29418,7 @@ entities: rot: 3.141592653589793 rad pos: -49.5,-37.5 parent: 2 - - uid: 1116 + - uid: 1259 components: - type: MetaData name: Морг @@ -28709,7 +29426,7 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-38.5 parent: 2 - - uid: 1117 + - uid: 1260 components: - type: MetaData name: Экспериментальная ботаника @@ -28717,241 +29434,242 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,21.5 parent: 2 - - uid: 1119 + - uid: 1261 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-113.5 parent: 2 - - uid: 2313 + - uid: 1262 components: - type: Transform pos: 26.5,-39.5 parent: 2 - - uid: 2679 + - uid: 1263 components: - type: Transform pos: 55.5,-16.5 parent: 2 - - uid: 2681 + - uid: 1264 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-22.5 parent: 2 - - uid: 2736 + - uid: 1265 components: - type: Transform pos: 47.5,-16.5 parent: 2 - - uid: 2826 + - uid: 1266 components: - type: Transform pos: 60.5,-14.5 parent: 2 - - uid: 4598 + - uid: 1267 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-7.5 parent: 2 - - uid: 9729 + - uid: 1268 components: - type: Transform pos: 41.5,0.5 parent: 2 - - uid: 13482 + - uid: 1269 components: - type: Transform pos: 26.5,-35.5 parent: 2 - - uid: 15535 + - uid: 1270 components: - type: Transform pos: 66.5,-0.5 parent: 2 - - uid: 18459 + - uid: 1271 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,6.5 parent: 2 - - uid: 18613 + - uid: 1272 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,12.5 parent: 2 - - uid: 21299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-1.5 - parent: 21045 - - uid: 23921 + - uid: 1273 components: - type: MetaData name: ЛКП Детектив - type: Transform pos: 39.5,-22.5 parent: 2 - - uid: 26273 + - uid: 1274 components: - type: Transform pos: -62.5,-15.5 parent: 2 - - uid: 30156 + - uid: 1275 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-9.5 parent: 2 - - uid: 33831 + - uid: 1276 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-57.5 parent: 2 - - uid: 34076 + - uid: 1277 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-21.5 parent: 2 - - uid: 34077 + - uid: 1278 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-12.5 parent: 2 - - uid: 34078 - components: - - type: Transform - pos: -18.5,-20.5 - parent: 2 - - uid: 34079 + - uid: 1279 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-24.5 parent: 2 - - uid: 34080 + - uid: 1280 components: - type: Transform pos: -5.5,-20.5 parent: 2 - - uid: 34081 + - uid: 1281 components: - type: Transform pos: -16.5,-30.5 parent: 2 - - uid: 34135 + - uid: 1282 components: - type: Transform pos: -9.5,-31.5 parent: 2 - - uid: 34175 + - uid: 1283 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-49.5 parent: 2 - - uid: 34196 + - uid: 1284 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-47.5 parent: 2 - - uid: 35085 + - uid: 1285 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,3.5 parent: 2 - - uid: 36062 + - uid: 1286 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,-0.5 parent: 2 - - uid: 36718 + - uid: 1287 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,17.5 parent: 2 - - uid: 36918 + - uid: 1288 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-5.5 parent: 2 - - uid: 36929 + - uid: 1289 components: - type: Transform pos: 49.5,-2.5 parent: 2 - - uid: 37902 + - uid: 1290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 37887 - - uid: 37903 + rot: 3.141592653589793 rad + pos: -8.5,-50.5 + parent: 2 + - uid: 1291 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 37887 - - uid: 38732 + pos: 47.5,22.5 + parent: 2 + - uid: 1292 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-10.5 - parent: 38722 - - uid: 39242 + rot: 1.5707963267948966 rad + pos: 43.5,21.5 + parent: 2 + - uid: 1293 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-50.5 + rot: 1.5707963267948966 rad + pos: 49.5,11.5 parent: 2 - - uid: 39809 + - uid: 1294 components: - type: Transform - pos: 74.5,0.5 + pos: 111.5,-37.5 parent: 2 - - uid: 40217 + - uid: 1295 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,22.5 + pos: 67.5,-3.5 parent: 2 - - uid: 40439 + - uid: 1296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,21.5 + rot: -1.5707963267948966 rad + pos: -18.5,-20.5 parent: 2 - - uid: 40698 + - uid: 1297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,11.5 + pos: -17.5,8.5 parent: 2 - - uid: 40856 + - uid: 40672 components: - type: Transform - pos: 111.5,-37.5 - parent: 2 - - uid: 40936 + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 40666 + - uid: 40843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 40828 + - uid: 40844 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-3.5 - parent: 2 + pos: -2.5,-7.5 + parent: 40828 + - uid: 41679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 41669 - proto: APCConstructed entities: - - uid: 1120 + - uid: 1298 components: - type: MetaData name: Тех тоннели СЗ @@ -28959,7 +29677,7 @@ entities: rot: 1.5707963267948966 rad pos: -66.5,2.5 parent: 2 - - uid: 1121 + - uid: 1299 components: - type: MetaData name: Игровой зал @@ -28967,29 +29685,22 @@ entities: rot: 3.141592653589793 rad pos: -61.5,8.5 parent: 2 - - uid: 1122 + - uid: 1300 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,3.5 parent: 2 -- proto: APCElectronics - entities: - - uid: 24327 - components: - - type: Transform - pos: -17.39257,7.5469933 - parent: 2 - proto: APCHyperCapacity entities: - - uid: 1123 + - uid: 1301 components: - type: MetaData name: Атмос Север - type: Transform pos: 44.5,-91.5 parent: 2 - - uid: 1124 + - uid: 1302 components: - type: MetaData name: Атмос Юг @@ -28999,51 +29710,51 @@ entities: parent: 2 - proto: APECircuitboard entities: - - uid: 1125 + - uid: 1303 components: - type: Transform pos: 38.519688,-38.118324 parent: 2 - proto: AppraisalTool entities: - - uid: 1126 + - uid: 1304 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.544825,5.575892 parent: 2 - - uid: 1127 + - uid: 1305 components: - type: Transform pos: 12.4271755,-80.22748 parent: 2 - - uid: 1128 + - uid: 1306 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.675587,-86.38455 parent: 2 - - uid: 1129 + - uid: 1307 components: - type: Transform pos: 9.328552,25.70148 parent: 2 - proto: ArabianLamp entities: - - uid: 1130 + - uid: 1308 components: - type: Transform pos: -41.46104,-97.1843 parent: 2 - proto: ArrivalsShuttleTimer entities: - - uid: 1131 + - uid: 1309 components: - type: Transform rot: 3.141592653589793 rad pos: 94.5,-37.5 parent: 2 - - uid: 1132 + - uid: 1310 components: - type: Transform rot: 3.141592653589793 rad @@ -29051,850 +29762,850 @@ entities: parent: 2 - proto: ArtistCircuitBoard entities: - - uid: 254 + - uid: 1312 components: - type: Transform - parent: 14567 + parent: 1311 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Ash entities: - - uid: 1133 + - uid: 1318 components: - type: Transform pos: -67.57043,-12.383541 parent: 2 - - uid: 1134 + - uid: 1319 components: - type: Transform pos: 36.517097,5.6604967 parent: 2 - - uid: 1135 + - uid: 1320 components: - type: Transform pos: -67.55208,-12.8788805 parent: 2 - - uid: 1136 + - uid: 1321 components: - type: Transform pos: -67.86396,-12.493617 parent: 2 - - uid: 1137 + - uid: 1322 components: - type: Transform pos: -67.90065,-12.7688055 parent: 2 - - uid: 1138 + - uid: 1323 components: - type: Transform pos: -67.2402,-12.622038 parent: 2 - - uid: 1139 + - uid: 1324 components: - type: Transform pos: -67.31358,-12.622038 parent: 2 - - uid: 1140 + - uid: 1325 components: - type: Transform pos: -68.469376,-12.090007 parent: 2 - - uid: 1141 + - uid: 1326 components: - type: Transform pos: -68.67118,-11.998278 parent: 2 - - uid: 1142 + - uid: 1327 components: - type: Transform pos: -68.7996,-12.328504 parent: 2 - - uid: 1143 + - uid: 1328 components: - type: Transform pos: -68.7996,-12.603692 parent: 2 - - uid: 1144 + - uid: 1329 components: - type: Transform pos: -68.68952,-12.622038 parent: 2 - - uid: 1145 + - uid: 1330 components: - type: Transform pos: -68.23088,-12.401887 parent: 2 - - uid: 1146 + - uid: 1331 components: - type: Transform pos: -68.139145,-12.273466 parent: 2 - - uid: 1147 + - uid: 1332 components: - type: Transform pos: -55.734886,-91.88891 parent: 2 - - uid: 1148 + - uid: 1333 components: - type: Transform pos: -55.641136,-91.76391 parent: 2 - proto: Ashtray entities: - - uid: 1149 + - uid: 1334 components: - type: Transform pos: -38.50823,-5.3493977 parent: 2 - - uid: 1150 + - uid: 1335 components: - type: Transform pos: 36.741425,3.4472716 parent: 2 - - uid: 1151 + - uid: 1336 components: - type: Transform pos: -68.469376,-12.43858 parent: 2 - - uid: 1152 + - uid: 1337 components: - type: Transform pos: -72.41101,3.5325212 parent: 2 - - uid: 1153 + - uid: 1338 components: - type: Transform pos: -73.67688,3.5325212 parent: 2 - - uid: 1154 + - uid: 1339 components: - type: Transform pos: -73.65853,1.5511644 parent: 2 - - uid: 1155 + - uid: 1340 components: - type: Transform pos: -72.33763,1.5328186 parent: 2 - - uid: 1156 + - uid: 1341 components: - type: Transform pos: 36.74837,5.747094 parent: 2 - - uid: 1157 + - uid: 1342 components: - type: Transform pos: -55.703636,-92.38891 parent: 2 - - uid: 15474 + - uid: 1343 components: - type: Transform pos: 46.744606,-1.6072202 parent: 2 - - uid: 22236 + - uid: 1344 components: - type: Transform pos: 52.413036,6.3866653 parent: 2 - proto: AsimovCircuitBoard entities: - - uid: 396 + - uid: 1346 components: - type: Transform - parent: 24311 + parent: 1345 - type: Physics canCollide: False - type: InsideEntityStorage - proto: AsteroidRockQuartz entities: - - uid: 27261 + - uid: 1349 components: - type: Transform pos: -3.5,-57.5 parent: 2 - - uid: 27333 + - uid: 1350 components: - type: Transform pos: -4.5,-57.5 parent: 2 - - uid: 27337 + - uid: 1351 components: - type: Transform pos: -5.5,-57.5 parent: 2 - - uid: 27340 + - uid: 1352 components: - type: Transform pos: -4.5,-58.5 parent: 2 - - uid: 27341 + - uid: 1353 components: - type: Transform pos: -3.5,-59.5 parent: 2 - - uid: 27345 + - uid: 1354 components: - type: Transform pos: -4.5,-59.5 parent: 2 - - uid: 27346 + - uid: 1355 components: - type: Transform pos: -6.5,-57.5 parent: 2 - proto: AsteroidRockQuartzCrab entities: - - uid: 27339 + - uid: 1356 components: - type: Transform pos: -5.5,-58.5 parent: 2 - proto: AsteroidRockSilver entities: - - uid: 11647 + - uid: 1357 components: - type: Transform pos: -19.5,-56.5 parent: 2 - - uid: 15072 + - uid: 1358 components: - type: Transform pos: -20.5,-57.5 parent: 2 - proto: AsteroidRockSilverCrab entities: - - uid: 27150 + - uid: 1359 components: - type: Transform pos: -19.5,-57.5 parent: 2 - proto: AsteroidRockTin entities: - - uid: 27151 + - uid: 1360 components: - type: Transform pos: -4.5,-64.5 parent: 2 - - uid: 27152 + - uid: 1361 components: - type: Transform pos: -5.5,-64.5 parent: 2 - - uid: 27153 + - uid: 1362 components: - type: Transform pos: -6.5,-64.5 parent: 2 - - uid: 27154 + - uid: 1363 components: - type: Transform pos: -6.5,-63.5 parent: 2 - - uid: 27196 + - uid: 1364 components: - type: Transform pos: -7.5,-63.5 parent: 2 - - uid: 27245 + - uid: 1365 components: - type: Transform pos: -4.5,-63.5 parent: 2 - - uid: 27258 + - uid: 1366 components: - type: Transform pos: -4.5,-62.5 parent: 2 - - uid: 27259 + - uid: 1367 components: - type: Transform pos: -3.5,-62.5 parent: 2 - proto: AsteroidRockTinCrab entities: - - uid: 27195 + - uid: 1368 components: - type: Transform pos: -5.5,-63.5 parent: 2 - proto: AsteroidRockUraniumCrab entities: - - uid: 27886 + - uid: 1369 components: - type: Transform pos: -13.5,-62.5 parent: 2 - - uid: 27888 + - uid: 1370 components: - type: Transform pos: -15.5,-61.5 parent: 2 - - uid: 27896 + - uid: 1371 components: - type: Transform pos: -12.5,-62.5 parent: 2 - proto: AstroNavCartridge entities: - - uid: 753 + - uid: 1373 components: - type: Transform - parent: 2104 + parent: 1372 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21901 + - uid: 1384 components: - type: Transform pos: 56.458767,15.144732 parent: 2 - proto: AtmosDeviceFanDirectional entities: - - uid: 673 + - uid: 1385 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-4.5 parent: 2 - - uid: 763 + - uid: 1386 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,17.5 parent: 2 - - uid: 1158 + - uid: 1387 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-73.5 parent: 2 - - uid: 1162 + - uid: 1388 components: - type: Transform pos: -13.5,-102.5 parent: 2 - - uid: 1163 + - uid: 1389 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-45.5 parent: 2 - - uid: 1164 + - uid: 1390 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,-36.5 parent: 2 - - uid: 1165 + - uid: 1391 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,-36.5 parent: 2 - - uid: 1166 + - uid: 1392 components: - type: Transform pos: 98.5,-26.5 parent: 2 - - uid: 1168 + - uid: 1393 components: - type: Transform pos: 91.5,-26.5 parent: 2 - - uid: 1169 + - uid: 1394 components: - type: Transform pos: -5.5,-100.5 parent: 2 - - uid: 1170 + - uid: 1395 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-47.5 parent: 2 - - uid: 1171 + - uid: 1396 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-37.5 parent: 2 - - uid: 1177 + - uid: 1397 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-39.5 parent: 2 - - uid: 1179 + - uid: 1398 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,-18.5 parent: 2 - - uid: 1180 + - uid: 1399 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,-18.5 parent: 2 - - uid: 1181 + - uid: 1400 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,21.5 parent: 2 - - uid: 1182 + - uid: 1401 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,21.5 parent: 2 - - uid: 1183 + - uid: 1402 components: - type: Transform pos: -57.5,1.5 parent: 2 - - uid: 1185 + - uid: 1403 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,21.5 parent: 2 - - uid: 1186 + - uid: 1404 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,21.5 parent: 2 - - uid: 1187 + - uid: 1405 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-30.5 parent: 2 - - uid: 1188 + - uid: 1406 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-93.5 parent: 2 - - uid: 1197 + - uid: 1407 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-99.5 parent: 2 - - uid: 1199 + - uid: 1408 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-97.5 parent: 2 - - uid: 1200 + - uid: 1409 components: - type: Transform rot: 3.141592653589793 rad pos: -94.5,3.5 parent: 2 - - uid: 1201 + - uid: 1410 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,3.5 parent: 2 - - uid: 1202 + - uid: 1411 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,1.5 parent: 2 - - uid: 1527 + - uid: 1412 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,32.5 parent: 2 - - uid: 12956 + - uid: 1413 components: - type: Transform rot: 3.141592653589793 rad pos: 122.5,-37.5 parent: 2 - - uid: 24440 + - uid: 1414 components: - type: Transform rot: 3.141592653589793 rad pos: 129.5,-37.5 parent: 2 - - uid: 27607 + - uid: 1415 components: - type: Transform rot: 1.5707963267948966 rad pos: 133.5,-38.5 parent: 2 - - uid: 28018 + - uid: 1416 components: - type: Transform rot: 1.5707963267948966 rad pos: 133.5,-40.5 parent: 2 - - uid: 32730 + - uid: 1417 components: - type: Transform pos: 122.5,-41.5 parent: 2 - - uid: 32737 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 21045 - - uid: 33857 + - uid: 1418 components: - type: Transform rot: 3.141592653589793 rad pos: 115.5,-37.5 parent: 2 - - uid: 36882 + - uid: 1419 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,20.5 parent: 2 - - uid: 36883 + - uid: 1420 components: - type: Transform pos: -0.5,-66.5 parent: 2 - - uid: 36902 + - uid: 1421 components: - type: Transform pos: 0.5,-66.5 parent: 2 - - uid: 36903 + - uid: 1422 components: - type: Transform pos: 1.5,-66.5 parent: 2 - - uid: 36908 + - uid: 1423 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-60.5 parent: 2 - - uid: 36920 + - uid: 1424 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-59.5 parent: 2 - - uid: 36926 + - uid: 1425 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-58.5 parent: 2 - - uid: 36927 + - uid: 1426 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-57.5 parent: 2 - - uid: 36928 + - uid: 1427 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-56.5 parent: 2 - - uid: 36931 + - uid: 1428 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-55.5 parent: 2 - - uid: 37072 + - uid: 1429 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-81.5 parent: 2 - - uid: 38733 - components: - - type: Transform - pos: 3.5,-12.5 - parent: 38722 - - uid: 38734 - components: - - type: Transform - pos: 5.5,-12.5 - parent: 38722 - - uid: 40104 + - uid: 1430 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-119.5 parent: 2 - - uid: 40106 + - uid: 1431 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-32.5 parent: 2 - - uid: 40107 + - uid: 1432 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-43.5 parent: 2 - - uid: 40108 + - uid: 1433 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 2 - - uid: 40157 + - uid: 1434 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-4.5 parent: 2 - - uid: 40158 + - uid: 1435 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-20.5 parent: 2 - - uid: 40159 + - uid: 1436 components: - type: Transform pos: 46.5,-104.5 parent: 2 - - uid: 40160 + - uid: 1437 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-79.5 parent: 2 - - uid: 40463 + - uid: 1438 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,16.5 parent: 2 - - uid: 40838 + - uid: 1439 components: - type: Transform pos: 129.5,-41.5 parent: 2 + - uid: 40673 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 40666 + - uid: 41680 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 41669 + - uid: 41681 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 41669 - proto: AtmosDeviceFanTiny entities: - - uid: 1172 + - uid: 1440 components: - type: Transform pos: 106.5,-26.5 parent: 2 - - uid: 1173 + - uid: 1441 components: - type: Transform pos: 106.5,-36.5 parent: 2 - - uid: 1174 + - uid: 1442 components: - type: Transform pos: 107.5,-26.5 parent: 2 - - uid: 1175 + - uid: 1443 components: - type: Transform pos: 107.5,-36.5 parent: 2 - - uid: 1176 + - uid: 1444 components: - type: Transform pos: 108.5,-17.5 parent: 2 - - uid: 1189 + - uid: 1445 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-96.5 parent: 2 - - uid: 1190 + - uid: 1446 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-100.5 parent: 2 - - uid: 1191 + - uid: 1447 components: - type: Transform rot: 1.5707963267948966 rad pos: 106.5,-36.5 parent: 2 - - uid: 1192 + - uid: 1448 components: - type: Transform rot: 1.5707963267948966 rad pos: 107.5,-36.5 parent: 2 - - uid: 1193 + - uid: 1449 components: - type: Transform rot: 1.5707963267948966 rad pos: 106.5,-26.5 parent: 2 - - uid: 1194 + - uid: 1450 components: - type: Transform rot: 1.5707963267948966 rad pos: 107.5,-26.5 parent: 2 - - uid: 1195 + - uid: 1451 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,12.5 parent: 2 - - uid: 1196 + - uid: 1452 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,13.5 parent: 2 - - uid: 1203 + - uid: 1453 components: - type: Transform rot: 3.141592653589793 rad pos: 111.5,-59.5 parent: 2 - - uid: 1204 + - uid: 1454 components: - type: Transform rot: 3.141592653589793 rad pos: 111.5,-57.5 parent: 2 - - uid: 37886 + - uid: 40827 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,0.5 - parent: 37884 - - uid: 37904 + parent: 40825 + - uid: 40845 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 - parent: 37887 - - uid: 37905 + parent: 40828 + - uid: 40846 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,0.5 - parent: 37887 + parent: 40828 - proto: AtmosFixBlockerMarker entities: - - uid: 1207 + - uid: 1455 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-89.5 parent: 2 - - uid: 1208 + - uid: 1456 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-90.5 parent: 2 - - uid: 1209 + - uid: 1457 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-89.5 parent: 2 - - uid: 1210 + - uid: 1458 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-90.5 parent: 2 - - uid: 1211 + - uid: 1459 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-89.5 parent: 2 - - uid: 1212 + - uid: 1460 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-90.5 parent: 2 - - uid: 1213 + - uid: 1461 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-86.5 parent: 2 - - uid: 1214 + - uid: 1462 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-87.5 parent: 2 - - uid: 1215 + - uid: 1463 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-86.5 parent: 2 - - uid: 1216 + - uid: 1464 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-87.5 parent: 2 - - uid: 1217 + - uid: 1465 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-86.5 parent: 2 - - uid: 1218 + - uid: 1466 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-87.5 parent: 2 - - uid: 1220 + - uid: 1467 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-95.5 parent: 2 - - uid: 1221 + - uid: 1468 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-96.5 parent: 2 - - uid: 1222 + - uid: 1469 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-96.5 parent: 2 - - uid: 1223 + - uid: 1470 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-95.5 parent: 2 - - uid: 1224 + - uid: 1471 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-95.5 parent: 2 - - uid: 1225 + - uid: 1472 components: - type: Transform rot: 3.141592653589793 rad @@ -29902,1508 +30613,1508 @@ entities: parent: 2 - proto: AtmosFixFreezerMarker entities: - - uid: 1226 + - uid: 1473 components: - type: Transform pos: 23.5,11.5 parent: 2 - - uid: 1227 + - uid: 1474 components: - type: Transform pos: 24.5,14.5 parent: 2 - - uid: 1228 + - uid: 1475 components: - type: Transform pos: 23.5,14.5 parent: 2 - - uid: 1229 + - uid: 1476 components: - type: Transform pos: 24.5,13.5 parent: 2 - - uid: 1230 + - uid: 1477 components: - type: Transform pos: 24.5,12.5 parent: 2 - - uid: 1231 + - uid: 1478 components: - type: Transform pos: 24.5,11.5 parent: 2 - - uid: 1232 + - uid: 1479 components: - type: Transform pos: 23.5,13.5 parent: 2 - - uid: 1233 + - uid: 1480 components: - type: Transform pos: 23.5,12.5 parent: 2 - - uid: 1234 + - uid: 1481 components: - type: Transform pos: 25.5,14.5 parent: 2 - - uid: 1235 + - uid: 1482 components: - type: Transform pos: 25.5,12.5 parent: 2 - - uid: 1236 + - uid: 1483 components: - type: Transform pos: 25.5,11.5 parent: 2 - - uid: 1237 + - uid: 1484 components: - type: Transform pos: 25.5,13.5 parent: 2 - - uid: 1238 + - uid: 1485 components: - type: Transform pos: -36.5,-72.5 parent: 2 - - uid: 1239 + - uid: 1486 components: - type: Transform pos: -36.5,-73.5 parent: 2 - - uid: 1240 + - uid: 1487 components: - type: Transform pos: -36.5,-74.5 parent: 2 - - uid: 1241 + - uid: 1488 components: - type: Transform pos: -35.5,-72.5 parent: 2 - - uid: 1242 + - uid: 1489 components: - type: Transform pos: -35.5,-73.5 parent: 2 - - uid: 1243 + - uid: 1490 components: - type: Transform pos: -35.5,-74.5 parent: 2 - - uid: 1244 + - uid: 1491 components: - type: Transform pos: -34.5,-72.5 parent: 2 - - uid: 1245 + - uid: 1492 components: - type: Transform pos: -34.5,-73.5 parent: 2 - - uid: 1246 + - uid: 1493 components: - type: Transform pos: -34.5,-74.5 parent: 2 - - uid: 1247 + - uid: 1494 components: - type: Transform pos: 94.5,-87.5 parent: 2 - - uid: 1248 + - uid: 1495 components: - type: Transform pos: 94.5,-88.5 parent: 2 - - uid: 1249 + - uid: 1496 components: - type: Transform pos: 94.5,-86.5 parent: 2 - - uid: 1250 + - uid: 1497 components: - type: Transform pos: 95.5,-86.5 parent: 2 - - uid: 1251 + - uid: 1498 components: - type: Transform pos: 95.5,-87.5 parent: 2 - - uid: 1252 + - uid: 1499 components: - type: Transform pos: 95.5,-88.5 parent: 2 - - uid: 1253 + - uid: 1500 components: - type: Transform pos: 96.5,-86.5 parent: 2 - - uid: 1254 + - uid: 1501 components: - type: Transform pos: 96.5,-87.5 parent: 2 - - uid: 1255 + - uid: 1502 components: - type: Transform pos: 96.5,-88.5 parent: 2 - - uid: 1256 + - uid: 1503 components: - type: Transform pos: 97.5,-86.5 parent: 2 - - uid: 1257 + - uid: 1504 components: - type: Transform pos: 97.5,-87.5 parent: 2 - - uid: 1258 + - uid: 1505 components: - type: Transform pos: 97.5,-88.5 parent: 2 - - uid: 1259 + - uid: 1506 components: - type: Transform pos: 98.5,-86.5 parent: 2 - - uid: 1260 + - uid: 1507 components: - type: Transform pos: 98.5,-87.5 parent: 2 - - uid: 1261 + - uid: 1508 components: - type: Transform pos: 98.5,-88.5 parent: 2 - - uid: 1262 + - uid: 1509 components: - type: Transform pos: 99.5,-86.5 parent: 2 - - uid: 1263 + - uid: 1510 components: - type: Transform pos: 99.5,-87.5 parent: 2 - - uid: 1264 + - uid: 1511 components: - type: Transform pos: 99.5,-88.5 parent: 2 - - uid: 1265 + - uid: 1512 components: - type: Transform pos: 100.5,-86.5 parent: 2 - - uid: 1266 + - uid: 1513 components: - type: Transform pos: 100.5,-87.5 parent: 2 - - uid: 1267 + - uid: 1514 components: - type: Transform pos: 100.5,-88.5 parent: 2 - - uid: 1268 + - uid: 1515 components: - type: Transform pos: 101.5,-86.5 parent: 2 - - uid: 1269 + - uid: 1516 components: - type: Transform pos: 101.5,-87.5 parent: 2 - - uid: 1270 + - uid: 1517 components: - type: Transform pos: 101.5,-88.5 parent: 2 - - uid: 1271 + - uid: 1518 components: - type: Transform pos: 102.5,-86.5 parent: 2 - - uid: 1272 + - uid: 1519 components: - type: Transform pos: 102.5,-87.5 parent: 2 - - uid: 1273 + - uid: 1520 components: - type: Transform pos: 102.5,-88.5 parent: 2 - - uid: 1274 + - uid: 1521 components: - type: Transform pos: 101.5,-90.5 parent: 2 - - uid: 1275 + - uid: 1522 components: - type: Transform pos: 101.5,-89.5 parent: 2 - - uid: 1276 + - uid: 1523 components: - type: Transform pos: 100.5,-90.5 parent: 2 - - uid: 1277 + - uid: 1524 components: - type: Transform pos: 100.5,-89.5 parent: 2 - - uid: 1278 + - uid: 1525 components: - type: Transform pos: 99.5,-90.5 parent: 2 - - uid: 1279 + - uid: 1526 components: - type: Transform pos: 99.5,-89.5 parent: 2 - - uid: 1280 + - uid: 1527 components: - type: Transform pos: 98.5,-90.5 parent: 2 - - uid: 1281 + - uid: 1528 components: - type: Transform pos: 98.5,-89.5 parent: 2 - - uid: 1282 + - uid: 1529 components: - type: Transform pos: 97.5,-90.5 parent: 2 - - uid: 1283 + - uid: 1530 components: - type: Transform pos: 97.5,-89.5 parent: 2 - - uid: 1284 + - uid: 1531 components: - type: Transform pos: 96.5,-90.5 parent: 2 - - uid: 1285 + - uid: 1532 components: - type: Transform pos: 96.5,-89.5 parent: 2 - - uid: 1286 + - uid: 1533 components: - type: Transform pos: 95.5,-90.5 parent: 2 - - uid: 1287 + - uid: 1534 components: - type: Transform pos: 95.5,-89.5 parent: 2 - - uid: 1288 + - uid: 1535 components: - type: Transform pos: 97.5,-91.5 parent: 2 - - uid: 1289 + - uid: 1536 components: - type: Transform pos: 98.5,-91.5 parent: 2 - - uid: 1290 + - uid: 1537 components: - type: Transform pos: 99.5,-91.5 parent: 2 - - uid: 1291 + - uid: 1538 components: - type: Transform pos: 98.5,-85.5 parent: 2 - - uid: 1292 + - uid: 1539 components: - type: Transform pos: 98.5,-84.5 parent: 2 - - uid: 1293 + - uid: 1540 components: - type: Transform pos: 98.5,-83.5 parent: 2 - - uid: 1294 + - uid: 1541 components: - type: Transform pos: 98.5,-82.5 parent: 2 - - uid: 1295 + - uid: 1542 components: - type: Transform pos: 98.5,-81.5 parent: 2 - - uid: 1296 + - uid: 1543 components: - type: Transform pos: 98.5,-80.5 parent: 2 - - uid: 1297 + - uid: 1544 components: - type: Transform pos: 98.5,-79.5 parent: 2 - - uid: 1298 + - uid: 1545 components: - type: Transform pos: 98.5,-78.5 parent: 2 - - uid: 1299 + - uid: 1546 components: - type: Transform pos: 99.5,-78.5 parent: 2 - - uid: 1300 + - uid: 1547 components: - type: Transform pos: 99.5,-79.5 parent: 2 - - uid: 1301 + - uid: 1548 components: - type: Transform pos: 99.5,-80.5 parent: 2 - - uid: 1302 + - uid: 1549 components: - type: Transform pos: 100.5,-78.5 parent: 2 - - uid: 1303 + - uid: 1550 components: - type: Transform pos: 100.5,-79.5 parent: 2 - - uid: 1304 + - uid: 1551 components: - type: Transform pos: 100.5,-80.5 parent: 2 - - uid: 1305 + - uid: 1552 components: - type: Transform pos: 101.5,-78.5 parent: 2 - - uid: 1306 + - uid: 1553 components: - type: Transform pos: 101.5,-79.5 parent: 2 - - uid: 1307 + - uid: 1554 components: - type: Transform pos: 101.5,-80.5 parent: 2 - - uid: 1308 + - uid: 1555 components: - type: Transform pos: 102.5,-78.5 parent: 2 - - uid: 1309 + - uid: 1556 components: - type: Transform pos: 102.5,-79.5 parent: 2 - - uid: 1310 + - uid: 1557 components: - type: Transform pos: 102.5,-80.5 parent: 2 - - uid: 1311 + - uid: 1558 components: - type: Transform pos: 97.5,-80.5 parent: 2 - - uid: 1312 + - uid: 1559 components: - type: Transform pos: 97.5,-79.5 parent: 2 - - uid: 1313 + - uid: 1560 components: - type: Transform pos: 97.5,-78.5 parent: 2 - - uid: 1314 + - uid: 1561 components: - type: Transform pos: 96.5,-80.5 parent: 2 - - uid: 1315 + - uid: 1562 components: - type: Transform pos: 96.5,-79.5 parent: 2 - - uid: 1316 + - uid: 1563 components: - type: Transform pos: 96.5,-78.5 parent: 2 - - uid: 1317 + - uid: 1564 components: - type: Transform pos: 95.5,-80.5 parent: 2 - - uid: 1318 + - uid: 1565 components: - type: Transform pos: 95.5,-79.5 parent: 2 - - uid: 1319 + - uid: 1566 components: - type: Transform pos: 95.5,-78.5 parent: 2 - - uid: 1320 + - uid: 1567 components: - type: Transform pos: 94.5,-80.5 parent: 2 - - uid: 1321 + - uid: 1568 components: - type: Transform pos: 94.5,-79.5 parent: 2 - - uid: 1322 + - uid: 1569 components: - type: Transform pos: 94.5,-78.5 parent: 2 - - uid: 1323 + - uid: 1570 components: - type: Transform pos: 99.5,-83.5 parent: 2 - - uid: 1324 + - uid: 1571 components: - type: Transform pos: 100.5,-83.5 parent: 2 - - uid: 1325 + - uid: 1572 components: - type: Transform pos: 101.5,-83.5 parent: 2 - - uid: 1326 + - uid: 1573 components: - type: Transform pos: 100.5,-82.5 parent: 2 - - uid: 1327 + - uid: 1574 components: - type: Transform pos: 101.5,-82.5 parent: 2 - - uid: 1328 + - uid: 1575 components: - type: Transform pos: 101.5,-84.5 parent: 2 - - uid: 1329 + - uid: 1576 components: - type: Transform pos: 100.5,-84.5 parent: 2 - - uid: 1330 + - uid: 1577 components: - type: Transform pos: 97.5,-83.5 parent: 2 - - uid: 1331 + - uid: 1578 components: - type: Transform pos: 96.5,-83.5 parent: 2 - - uid: 1332 + - uid: 1579 components: - type: Transform pos: 95.5,-83.5 parent: 2 - - uid: 1333 + - uid: 1580 components: - type: Transform pos: 95.5,-82.5 parent: 2 - - uid: 1334 + - uid: 1581 components: - type: Transform pos: 96.5,-82.5 parent: 2 - - uid: 1335 + - uid: 1582 components: - type: Transform pos: 96.5,-84.5 parent: 2 - - uid: 1336 + - uid: 1583 components: - type: Transform pos: 95.5,-84.5 parent: 2 - - uid: 1337 + - uid: 1584 components: - type: Transform pos: 97.5,-77.5 parent: 2 - - uid: 1338 + - uid: 1585 components: - type: Transform pos: 97.5,-76.5 parent: 2 - - uid: 1339 + - uid: 1586 components: - type: Transform pos: 97.5,-75.5 parent: 2 - - uid: 1340 + - uid: 1587 components: - type: Transform pos: 97.5,-74.5 parent: 2 - - uid: 1341 + - uid: 1588 components: - type: Transform pos: 97.5,-73.5 parent: 2 - - uid: 1342 + - uid: 1589 components: - type: Transform pos: 97.5,-72.5 parent: 2 - - uid: 1343 + - uid: 1590 components: - type: Transform pos: 97.5,-71.5 parent: 2 - - uid: 1344 + - uid: 1591 components: - type: Transform pos: 97.5,-70.5 parent: 2 - - uid: 1345 + - uid: 1592 components: - type: Transform pos: 97.5,-69.5 parent: 2 - - uid: 1346 + - uid: 1593 components: - type: Transform pos: 97.5,-68.5 parent: 2 - - uid: 1347 + - uid: 1594 components: - type: Transform pos: 97.5,-67.5 parent: 2 - - uid: 1348 + - uid: 1595 components: - type: Transform pos: 97.5,-66.5 parent: 2 - - uid: 1349 + - uid: 1596 components: - type: Transform pos: 97.5,-65.5 parent: 2 - - uid: 1350 + - uid: 1597 components: - type: Transform pos: 97.5,-64.5 parent: 2 - - uid: 1351 + - uid: 1598 components: - type: Transform pos: 97.5,-63.5 parent: 2 - - uid: 1352 + - uid: 1599 components: - type: Transform pos: 97.5,-62.5 parent: 2 - - uid: 1353 + - uid: 1600 components: - type: Transform pos: 97.5,-61.5 parent: 2 - - uid: 1354 + - uid: 1601 components: - type: Transform pos: 96.5,-62.5 parent: 2 - - uid: 1355 + - uid: 1602 components: - type: Transform pos: 96.5,-63.5 parent: 2 - - uid: 1356 + - uid: 1603 components: - type: Transform pos: 96.5,-64.5 parent: 2 - - uid: 1357 + - uid: 1604 components: - type: Transform pos: 97.5,-62.5 parent: 2 - - uid: 1358 + - uid: 1605 components: - type: Transform pos: 97.5,-63.5 parent: 2 - - uid: 1359 + - uid: 1606 components: - type: Transform pos: 97.5,-64.5 parent: 2 - - uid: 1360 + - uid: 1607 components: - type: Transform pos: 98.5,-62.5 parent: 2 - - uid: 1361 + - uid: 1608 components: - type: Transform pos: 98.5,-63.5 parent: 2 - - uid: 1362 + - uid: 1609 components: - type: Transform pos: 98.5,-64.5 parent: 2 - - uid: 1363 + - uid: 1610 components: - type: Transform pos: 99.5,-62.5 parent: 2 - - uid: 1364 + - uid: 1611 components: - type: Transform pos: 99.5,-63.5 parent: 2 - - uid: 1365 + - uid: 1612 components: - type: Transform pos: 99.5,-64.5 parent: 2 - - uid: 1366 + - uid: 1613 components: - type: Transform pos: 100.5,-62.5 parent: 2 - - uid: 1367 + - uid: 1614 components: - type: Transform pos: 100.5,-63.5 parent: 2 - - uid: 1368 + - uid: 1615 components: - type: Transform pos: 100.5,-64.5 parent: 2 - - uid: 1369 + - uid: 1616 components: - type: Transform pos: 98.5,-61.5 parent: 2 - - uid: 1370 + - uid: 1617 components: - type: Transform pos: 99.5,-61.5 parent: 2 - - uid: 1371 + - uid: 1618 components: - type: Transform pos: 99.5,-64.5 parent: 2 - - uid: 1372 + - uid: 1619 components: - type: Transform pos: 99.5,-65.5 parent: 2 - - uid: 1373 + - uid: 1620 components: - type: Transform pos: 99.5,-66.5 parent: 2 - - uid: 1374 + - uid: 1621 components: - type: Transform pos: 99.5,-67.5 parent: 2 - - uid: 1375 + - uid: 1622 components: - type: Transform pos: 99.5,-68.5 parent: 2 - - uid: 1376 + - uid: 1623 components: - type: Transform pos: 99.5,-69.5 parent: 2 - - uid: 1377 + - uid: 1624 components: - type: Transform pos: 99.5,-70.5 parent: 2 - - uid: 1378 + - uid: 1625 components: - type: Transform pos: 99.5,-71.5 parent: 2 - - uid: 1379 + - uid: 1626 components: - type: Transform pos: 99.5,-72.5 parent: 2 - - uid: 1380 + - uid: 1627 components: - type: Transform pos: 99.5,-73.5 parent: 2 - - uid: 1381 + - uid: 1628 components: - type: Transform pos: 99.5,-74.5 parent: 2 - - uid: 1382 + - uid: 1629 components: - type: Transform pos: 99.5,-75.5 parent: 2 - - uid: 1383 + - uid: 1630 components: - type: Transform pos: 99.5,-76.5 parent: 2 - - uid: 1384 + - uid: 1631 components: - type: Transform pos: 99.5,-77.5 parent: 2 - - uid: 1385 + - uid: 1632 components: - type: Transform pos: 96.5,-74.5 parent: 2 - - uid: 1386 + - uid: 1633 components: - type: Transform pos: 96.5,-75.5 parent: 2 - - uid: 1387 + - uid: 1634 components: - type: Transform pos: 96.5,-76.5 parent: 2 - - uid: 1388 + - uid: 1635 components: - type: Transform pos: 97.5,-74.5 parent: 2 - - uid: 1389 + - uid: 1636 components: - type: Transform pos: 97.5,-75.5 parent: 2 - - uid: 1390 + - uid: 1637 components: - type: Transform pos: 97.5,-76.5 parent: 2 - - uid: 1391 + - uid: 1638 components: - type: Transform pos: 98.5,-74.5 parent: 2 - - uid: 1392 + - uid: 1639 components: - type: Transform pos: 98.5,-75.5 parent: 2 - - uid: 1393 + - uid: 1640 components: - type: Transform pos: 98.5,-76.5 parent: 2 - - uid: 1394 + - uid: 1641 components: - type: Transform pos: 99.5,-74.5 parent: 2 - - uid: 1395 + - uid: 1642 components: - type: Transform pos: 99.5,-75.5 parent: 2 - - uid: 1396 + - uid: 1643 components: - type: Transform pos: 99.5,-76.5 parent: 2 - - uid: 1397 + - uid: 1644 components: - type: Transform pos: 100.5,-74.5 parent: 2 - - uid: 1398 + - uid: 1645 components: - type: Transform pos: 100.5,-75.5 parent: 2 - - uid: 1399 + - uid: 1646 components: - type: Transform pos: 100.5,-76.5 parent: 2 - - uid: 1400 + - uid: 1647 components: - type: Transform pos: 97.5,-66.5 parent: 2 - - uid: 1401 + - uid: 1648 components: - type: Transform pos: 97.5,-67.5 parent: 2 - - uid: 1402 + - uid: 1649 components: - type: Transform pos: 97.5,-68.5 parent: 2 - - uid: 1403 + - uid: 1650 components: - type: Transform pos: 97.5,-69.5 parent: 2 - - uid: 1404 + - uid: 1651 components: - type: Transform pos: 97.5,-70.5 parent: 2 - - uid: 1405 + - uid: 1652 components: - type: Transform pos: 97.5,-71.5 parent: 2 - - uid: 1406 + - uid: 1653 components: - type: Transform pos: 97.5,-72.5 parent: 2 - - uid: 1407 + - uid: 1654 components: - type: Transform pos: 98.5,-66.5 parent: 2 - - uid: 1408 + - uid: 1655 components: - type: Transform pos: 98.5,-67.5 parent: 2 - - uid: 1409 + - uid: 1656 components: - type: Transform pos: 98.5,-68.5 parent: 2 - - uid: 1410 + - uid: 1657 components: - type: Transform pos: 98.5,-69.5 parent: 2 - - uid: 1411 + - uid: 1658 components: - type: Transform pos: 98.5,-70.5 parent: 2 - - uid: 1412 + - uid: 1659 components: - type: Transform pos: 98.5,-71.5 parent: 2 - - uid: 1413 + - uid: 1660 components: - type: Transform pos: 98.5,-72.5 parent: 2 - - uid: 1414 + - uid: 1661 components: - type: Transform pos: 99.5,-66.5 parent: 2 - - uid: 1415 + - uid: 1662 components: - type: Transform pos: 99.5,-67.5 parent: 2 - - uid: 1416 + - uid: 1663 components: - type: Transform pos: 99.5,-68.5 parent: 2 - - uid: 1417 + - uid: 1664 components: - type: Transform pos: 99.5,-69.5 parent: 2 - - uid: 1418 + - uid: 1665 components: - type: Transform pos: 99.5,-70.5 parent: 2 - - uid: 1419 + - uid: 1666 components: - type: Transform pos: 99.5,-71.5 parent: 2 - - uid: 1420 + - uid: 1667 components: - type: Transform pos: 99.5,-72.5 parent: 2 - - uid: 1421 + - uid: 1668 components: - type: Transform pos: 99.5,-67.5 parent: 2 - - uid: 1422 + - uid: 1669 components: - type: Transform pos: 100.5,-67.5 parent: 2 - - uid: 1423 + - uid: 1670 components: - type: Transform pos: 101.5,-67.5 parent: 2 - - uid: 1424 + - uid: 1671 components: - type: Transform pos: 100.5,-71.5 parent: 2 - - uid: 1425 + - uid: 1672 components: - type: Transform pos: 96.5,-67.5 parent: 2 - - uid: 1426 + - uid: 1673 components: - type: Transform pos: 96.5,-71.5 parent: 2 - - uid: 1427 + - uid: 1674 components: - type: Transform pos: 91.5,-66.5 parent: 2 - - uid: 1428 + - uid: 1675 components: - type: Transform pos: 91.5,-67.5 parent: 2 - - uid: 1429 + - uid: 1676 components: - type: Transform pos: 91.5,-68.5 parent: 2 - - uid: 1430 + - uid: 1677 components: - type: Transform pos: 91.5,-69.5 parent: 2 - - uid: 1431 + - uid: 1678 components: - type: Transform pos: 91.5,-70.5 parent: 2 - - uid: 1432 + - uid: 1679 components: - type: Transform pos: 91.5,-71.5 parent: 2 - - uid: 1433 + - uid: 1680 components: - type: Transform pos: 91.5,-72.5 parent: 2 - - uid: 1434 + - uid: 1681 components: - type: Transform pos: 92.5,-66.5 parent: 2 - - uid: 1435 + - uid: 1682 components: - type: Transform pos: 92.5,-67.5 parent: 2 - - uid: 1436 + - uid: 1683 components: - type: Transform pos: 92.5,-68.5 parent: 2 - - uid: 1437 + - uid: 1684 components: - type: Transform pos: 92.5,-69.5 parent: 2 - - uid: 1438 + - uid: 1685 components: - type: Transform pos: 92.5,-70.5 parent: 2 - - uid: 1439 + - uid: 1686 components: - type: Transform pos: 92.5,-71.5 parent: 2 - - uid: 1440 + - uid: 1687 components: - type: Transform pos: 92.5,-72.5 parent: 2 - - uid: 1441 + - uid: 1688 components: - type: Transform pos: 93.5,-66.5 parent: 2 - - uid: 1442 + - uid: 1689 components: - type: Transform pos: 93.5,-67.5 parent: 2 - - uid: 1443 + - uid: 1690 components: - type: Transform pos: 93.5,-68.5 parent: 2 - - uid: 1444 + - uid: 1691 components: - type: Transform pos: 93.5,-69.5 parent: 2 - - uid: 1445 + - uid: 1692 components: - type: Transform pos: 93.5,-70.5 parent: 2 - - uid: 1446 + - uid: 1693 components: - type: Transform pos: 93.5,-71.5 parent: 2 - - uid: 1447 + - uid: 1694 components: - type: Transform pos: 93.5,-72.5 parent: 2 - - uid: 1448 + - uid: 1695 components: - type: Transform pos: 94.5,-66.5 parent: 2 - - uid: 1449 + - uid: 1696 components: - type: Transform pos: 94.5,-67.5 parent: 2 - - uid: 1450 + - uid: 1697 components: - type: Transform pos: 94.5,-68.5 parent: 2 - - uid: 1451 + - uid: 1698 components: - type: Transform pos: 94.5,-69.5 parent: 2 - - uid: 1452 + - uid: 1699 components: - type: Transform pos: 94.5,-70.5 parent: 2 - - uid: 1453 + - uid: 1700 components: - type: Transform pos: 94.5,-71.5 parent: 2 - - uid: 1454 + - uid: 1701 components: - type: Transform pos: 94.5,-72.5 parent: 2 - - uid: 1455 + - uid: 1702 components: - type: Transform pos: 95.5,-66.5 parent: 2 - - uid: 1456 + - uid: 1703 components: - type: Transform pos: 95.5,-67.5 parent: 2 - - uid: 1457 + - uid: 1704 components: - type: Transform pos: 95.5,-68.5 parent: 2 - - uid: 1458 + - uid: 1705 components: - type: Transform pos: 95.5,-69.5 parent: 2 - - uid: 1459 + - uid: 1706 components: - type: Transform pos: 95.5,-70.5 parent: 2 - - uid: 1460 + - uid: 1707 components: - type: Transform pos: 95.5,-71.5 parent: 2 - - uid: 1461 + - uid: 1708 components: - type: Transform pos: 95.5,-72.5 parent: 2 - - uid: 1462 + - uid: 1709 components: - type: Transform pos: 101.5,-66.5 parent: 2 - - uid: 1463 + - uid: 1710 components: - type: Transform pos: 101.5,-67.5 parent: 2 - - uid: 1464 + - uid: 1711 components: - type: Transform pos: 101.5,-68.5 parent: 2 - - uid: 1465 + - uid: 1712 components: - type: Transform pos: 101.5,-69.5 parent: 2 - - uid: 1466 + - uid: 1713 components: - type: Transform pos: 101.5,-70.5 parent: 2 - - uid: 1467 + - uid: 1714 components: - type: Transform pos: 101.5,-71.5 parent: 2 - - uid: 1468 + - uid: 1715 components: - type: Transform pos: 101.5,-72.5 parent: 2 - - uid: 1469 + - uid: 1716 components: - type: Transform pos: 102.5,-66.5 parent: 2 - - uid: 1470 + - uid: 1717 components: - type: Transform pos: 102.5,-67.5 parent: 2 - - uid: 1471 + - uid: 1718 components: - type: Transform pos: 102.5,-68.5 parent: 2 - - uid: 1472 + - uid: 1719 components: - type: Transform pos: 102.5,-69.5 parent: 2 - - uid: 1473 + - uid: 1720 components: - type: Transform pos: 102.5,-70.5 parent: 2 - - uid: 1474 + - uid: 1721 components: - type: Transform pos: 102.5,-71.5 parent: 2 - - uid: 1475 + - uid: 1722 components: - type: Transform pos: 102.5,-72.5 parent: 2 - - uid: 1476 + - uid: 1723 components: - type: Transform pos: 103.5,-66.5 parent: 2 - - uid: 1477 + - uid: 1724 components: - type: Transform pos: 103.5,-67.5 parent: 2 - - uid: 1478 + - uid: 1725 components: - type: Transform pos: 103.5,-68.5 parent: 2 - - uid: 1479 + - uid: 1726 components: - type: Transform pos: 103.5,-69.5 parent: 2 - - uid: 1480 + - uid: 1727 components: - type: Transform pos: 103.5,-70.5 parent: 2 - - uid: 1481 + - uid: 1728 components: - type: Transform pos: 103.5,-71.5 parent: 2 - - uid: 1482 + - uid: 1729 components: - type: Transform pos: 103.5,-72.5 parent: 2 - - uid: 1483 + - uid: 1730 components: - type: Transform pos: 104.5,-66.5 parent: 2 - - uid: 1484 + - uid: 1731 components: - type: Transform pos: 104.5,-67.5 parent: 2 - - uid: 1485 + - uid: 1732 components: - type: Transform pos: 104.5,-68.5 parent: 2 - - uid: 1486 + - uid: 1733 components: - type: Transform pos: 104.5,-69.5 parent: 2 - - uid: 1487 + - uid: 1734 components: - type: Transform pos: 104.5,-70.5 parent: 2 - - uid: 1488 + - uid: 1735 components: - type: Transform pos: 104.5,-71.5 parent: 2 - - uid: 1489 + - uid: 1736 components: - type: Transform pos: 104.5,-72.5 parent: 2 - - uid: 1490 + - uid: 1737 components: - type: Transform pos: 105.5,-66.5 parent: 2 - - uid: 1491 + - uid: 1738 components: - type: Transform pos: 105.5,-67.5 parent: 2 - - uid: 1492 + - uid: 1739 components: - type: Transform pos: 105.5,-68.5 parent: 2 - - uid: 1493 + - uid: 1740 components: - type: Transform pos: 105.5,-69.5 parent: 2 - - uid: 1494 + - uid: 1741 components: - type: Transform pos: 105.5,-70.5 parent: 2 - - uid: 1495 + - uid: 1742 components: - type: Transform pos: 105.5,-71.5 parent: 2 - - uid: 1496 + - uid: 1743 components: - type: Transform pos: 105.5,-72.5 parent: 2 - - uid: 1497 + - uid: 1744 components: - type: Transform pos: 93.5,-79.5 parent: 2 - - uid: 1498 + - uid: 1745 components: - type: Transform pos: 92.5,-78.5 parent: 2 - - uid: 1499 + - uid: 1746 components: - type: Transform pos: 92.5,-79.5 parent: 2 - - uid: 1500 + - uid: 1747 components: - type: Transform pos: 92.5,-80.5 parent: 2 - - uid: 1501 + - uid: 1748 components: - type: Transform pos: 91.5,-79.5 parent: 2 - proto: AtmosFixInstantPlasmaFireMarker entities: - - uid: 40948 + - uid: 1749 components: - type: Transform pos: 10.5,-13.5 parent: 2 - proto: AtmosFixNitrogenMarker entities: - - uid: 1505 + - uid: 1750 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-101.5 parent: 2 - - uid: 1506 + - uid: 1751 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-101.5 parent: 2 - - uid: 1507 + - uid: 1752 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-102.5 parent: 2 - - uid: 1508 + - uid: 1753 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-102.5 parent: 2 - - uid: 1509 + - uid: 1754 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-102.5 parent: 2 - - uid: 1510 + - uid: 1755 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-101.5 parent: 2 - - uid: 33891 + - uid: 1756 components: - type: Transform pos: -9.5,-53.5 parent: 2 - - uid: 33894 + - uid: 1757 components: - type: Transform pos: -9.5,-54.5 parent: 2 - - uid: 34297 + - uid: 1758 components: - type: Transform pos: -8.5,-53.5 parent: 2 - - uid: 34298 + - uid: 1759 components: - type: Transform pos: -8.5,-54.5 parent: 2 - proto: AtmosFixOxygenMarker entities: - - uid: 1511 + - uid: 1760 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-98.5 parent: 2 - - uid: 1512 + - uid: 1761 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-99.5 parent: 2 - - uid: 1513 + - uid: 1762 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-98.5 parent: 2 - - uid: 1514 + - uid: 1763 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-99.5 parent: 2 - - uid: 1515 + - uid: 1764 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-98.5 parent: 2 - - uid: 1516 + - uid: 1765 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-99.5 parent: 2 - - uid: 34277 + - uid: 1766 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-53.5 parent: 2 - - uid: 34278 + - uid: 1767 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-54.5 parent: 2 - - uid: 34279 + - uid: 1768 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-53.5 parent: 2 - - uid: 34280 + - uid: 1769 components: - type: Transform rot: -1.5707963267948966 rad @@ -31411,34 +32122,34 @@ entities: parent: 2 - proto: AtmosFixPlasmaMarker entities: - - uid: 1205 + - uid: 1770 components: - type: Transform pos: 30.5,-93.5 parent: 2 - - uid: 1206 + - uid: 1771 components: - type: Transform pos: 31.5,-92.5 parent: 2 - - uid: 1219 + - uid: 1772 components: - type: Transform pos: 32.5,-93.5 parent: 2 - - uid: 1517 + - uid: 1773 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-92.5 parent: 2 - - uid: 1518 + - uid: 1774 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-93.5 parent: 2 - - uid: 1519 + - uid: 1775 components: - type: Transform rot: 3.141592653589793 rad @@ -31446,210 +32157,226 @@ entities: parent: 2 - proto: Autolathe entities: - - uid: 1520 + - uid: 1776 components: - type: Transform pos: 14.5,-103.5 parent: 2 - - uid: 1521 + - uid: 1777 components: - type: Transform pos: -38.5,-46.5 parent: 2 - - uid: 1522 + - uid: 1778 components: - type: Transform pos: 47.5,-46.5 parent: 2 - - uid: 1523 + - uid: 1779 components: - type: Transform pos: -35.5,-61.5 parent: 2 - - uid: 1524 + - uid: 1780 components: - type: Transform pos: 6.5,-86.5 parent: 2 - - uid: 1525 + - uid: 1781 components: - type: Transform pos: 62.5,-27.5 parent: 2 - - uid: 34379 + - uid: 1782 components: - type: Transform pos: 1.5,-70.5 parent: 2 + - uid: 1783 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 2 - proto: BackgammonBoard entities: - - uid: 1526 + - uid: 1784 components: - type: Transform pos: 33.478127,-0.42166972 parent: 2 -- proto: BananaPhoneInstrument +- proto: BalloonNT entities: - - uid: 1528 + - uid: 1786 components: - - type: MetaData - desc: Прямая линия для связи с [БОЛЬШОЙ ШИШКОЙ] - type: Transform - pos: -74.6207,-33.635693 - parent: 2 -- proto: BannerCargo + parent: 1785 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BananaPhoneInstrument entities: - - uid: 1530 + - uid: 1793 + components: + - type: MetaData + desc: Прямая линия для связи с [БОЛЬШОЙ ШИШКОЙ] + - type: Transform + pos: -74.6207,-33.635693 + parent: 2 +- proto: BannerCargo + entities: + - uid: 1794 components: - type: Transform pos: 7.5,-84.5 parent: 2 - - uid: 1531 + - uid: 1795 components: - type: Transform pos: 7.5,-78.5 parent: 2 - - uid: 1532 + - uid: 1796 components: - type: Transform pos: 0.5,-84.5 parent: 2 - proto: BannerEngineering entities: - - uid: 1533 + - uid: 1797 components: - type: Transform pos: 42.5,-54.5 parent: 2 - - uid: 1534 + - uid: 1798 components: - type: Transform pos: 46.5,-54.5 parent: 2 - - uid: 1535 + - uid: 1799 components: - type: Transform pos: 44.5,-49.5 parent: 2 - - uid: 1536 + - uid: 1800 components: - type: Transform pos: 44.5,-90.5 parent: 2 - - uid: 1537 + - uid: 1801 components: - type: Transform pos: 47.5,-90.5 parent: 2 - - uid: 39168 + - uid: 1802 components: - type: Transform pos: -1.5,-46.5 parent: 2 - proto: BannerMedical entities: - - uid: 1538 + - uid: 1803 components: - type: Transform pos: -34.5,-36.5 parent: 2 - - uid: 1539 + - uid: 1804 components: - type: Transform pos: -41.5,-32.5 parent: 2 - - uid: 1540 + - uid: 1805 components: - type: Transform pos: 24.5,-87.5 parent: 2 +- proto: BannerNanotrasen + entities: + - uid: 1806 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 - proto: BannerRevolution entities: - - uid: 1541 + - uid: 1807 components: - type: Transform pos: -37.5,14.5 parent: 2 - - uid: 1542 + - uid: 1808 components: - type: Transform pos: 2.5,-95.5 parent: 2 - proto: BannerScience entities: - - uid: 1543 + - uid: 1809 components: - type: Transform pos: -43.5,-52.5 parent: 2 - - uid: 1544 + - uid: 1810 components: - type: Transform pos: -41.5,-79.5 parent: 2 - proto: BannerSecurity entities: - - uid: 1545 + - uid: 1811 components: - type: Transform pos: 72.5,-29.5 parent: 2 - - uid: 1546 + - uid: 1812 components: - type: Transform pos: -4.5,-78.5 parent: 2 - - uid: 1548 + - uid: 1813 components: - type: Transform pos: -7.5,-0.5 parent: 2 - - uid: 1549 + - uid: 1814 components: - type: Transform pos: -67.5,-36.5 parent: 2 - - uid: 1550 + - uid: 1815 components: - type: Transform pos: -73.5,-50.5 parent: 2 - - uid: 1551 - components: - - type: Transform - pos: -48.5,-46.5 - parent: 2 - - uid: 1555 + - uid: 1816 components: - type: Transform pos: 38.5,-5.5 parent: 2 - - uid: 7802 + - uid: 1817 components: - type: Transform pos: 67.5,-5.5 parent: 2 - proto: BannerSyndicate entities: - - uid: 1556 + - uid: 1818 components: - type: Transform pos: -34.5,20.5 parent: 2 - proto: BarberScissors entities: - - uid: 1559 + - uid: 1819 components: - type: Transform rot: 3.141592653589793 rad pos: -74.53142,0.4770832 parent: 2 - - uid: 1560 + - uid: 1820 components: - type: Transform pos: -26.517313,-93.78137 parent: 2 - - uid: 1561 + - uid: 1821 components: - type: Transform rot: -1.5707963267948966 rad @@ -31657,390 +32384,447 @@ entities: parent: 2 - proto: Barricade entities: - - uid: 1562 + - uid: 1822 components: - type: Transform pos: -41.5,0.5 parent: 2 - - uid: 1563 + - uid: 1823 components: - type: Transform pos: -47.5,2.5 parent: 2 - - uid: 1564 + - uid: 1824 components: - type: Transform pos: -49.5,-1.5 parent: 2 - - uid: 1565 + - uid: 1825 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-98.5 parent: 2 - - uid: 1566 + - uid: 1826 components: - type: Transform pos: -10.5,-94.5 parent: 2 - - uid: 1567 + - uid: 1827 components: - type: Transform pos: -16.5,-91.5 parent: 2 - - uid: 1568 + - uid: 1828 components: - type: Transform pos: -15.5,-92.5 parent: 2 - - uid: 1571 + - uid: 1829 components: - type: Transform pos: -39.5,-115.5 parent: 2 - - uid: 1575 + - uid: 1830 components: - type: Transform pos: -44.5,3.5 parent: 2 - - uid: 1576 + - uid: 1831 components: - type: Transform pos: -36.5,-114.5 parent: 2 - - uid: 1598 + - uid: 1832 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-68.5 parent: 2 - - uid: 1599 + - uid: 1833 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-71.5 parent: 2 - - uid: 1600 + - uid: 1834 components: - type: Transform pos: 69.5,-46.5 parent: 2 - - uid: 1601 + - uid: 1835 components: - type: Transform pos: -27.5,-99.5 parent: 2 - - uid: 1602 + - uid: 1836 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-99.5 parent: 2 - - uid: 1603 + - uid: 1837 components: - type: Transform pos: -69.5,2.5 parent: 2 - - uid: 1604 + - uid: 1838 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-105.5 parent: 2 - - uid: 1605 + - uid: 1839 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-106.5 parent: 2 - - uid: 1606 + - uid: 1840 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-23.5 parent: 2 - - uid: 1607 + - uid: 1841 components: - type: Transform pos: -81.5,-14.5 parent: 2 - - uid: 1608 + - uid: 1842 components: - type: Transform pos: -77.5,-10.5 parent: 2 - - uid: 1609 + - uid: 1843 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-97.5 parent: 2 - - uid: 1613 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 2 - - uid: 1614 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,23.5 - parent: 2 - - uid: 1616 + - uid: 1844 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-4.5 parent: 2 - - uid: 1617 + - uid: 1845 components: - type: Transform pos: -46.5,0.5 parent: 2 - - uid: 1618 + - uid: 1846 components: - type: Transform pos: -51.5,-2.5 parent: 2 - - uid: 1619 + - uid: 1847 components: - type: Transform pos: -50.5,0.5 parent: 2 - - uid: 1620 + - uid: 1848 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,2.5 parent: 2 - - uid: 1621 + - uid: 1849 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,3.5 parent: 2 - - uid: 1622 + - uid: 1850 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-10.5 parent: 2 - - uid: 1623 + - uid: 1851 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-6.5 parent: 2 - - uid: 24592 + - uid: 1852 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,17.5 parent: 2 - - uid: 39714 + - uid: 1853 components: - type: Transform pos: -0.5,-9.5 parent: 2 - - uid: 39715 + - uid: 1854 components: - type: Transform pos: 1.5,-10.5 parent: 2 - - uid: 39716 + - uid: 1855 components: - type: Transform pos: 0.5,-9.5 parent: 2 + - uid: 1856 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 + - uid: 1857 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 2 + - uid: 1858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-42.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-41.5 + parent: 2 + - uid: 1860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-39.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-36.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-39.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-41.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-42.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-39.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-39.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 2 - proto: BarricadeBlock entities: - - uid: 923 + - uid: 1868 components: - type: Transform pos: -37.5,19.5 parent: 2 - - uid: 1624 + - uid: 1869 components: - type: Transform pos: -43.5,1.5 parent: 2 - - uid: 1625 + - uid: 1870 components: - type: Transform pos: -48.5,-6.5 parent: 2 - - uid: 1626 + - uid: 1871 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,7.5 parent: 2 - - uid: 1627 + - uid: 1872 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-97.5 parent: 2 - - uid: 1628 + - uid: 1873 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-25.5 parent: 2 - - uid: 1630 + - uid: 1874 components: - type: Transform pos: 44.5,19.5 parent: 2 - - uid: 1632 + - uid: 1875 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-22.5 parent: 2 - - uid: 1636 + - uid: 1876 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-67.5 parent: 2 - - uid: 1637 + - uid: 1877 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-75.5 parent: 2 - - uid: 1638 + - uid: 1878 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-94.5 parent: 2 - - uid: 1639 + - uid: 1879 components: - type: Transform pos: 32.5,33.5 parent: 2 - - uid: 3472 + - uid: 1880 components: - type: Transform pos: 22.5,-33.5 parent: 2 - - uid: 3474 + - uid: 1881 components: - type: Transform pos: 22.5,-32.5 parent: 2 - - uid: 17790 + - uid: 1882 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,16.5 parent: 2 - - uid: 19511 + - uid: 1883 components: - type: Transform pos: 49.5,19.5 parent: 2 - - uid: 24061 + - uid: 1884 components: - type: Transform pos: -58.5,-22.5 parent: 2 - - uid: 30436 + - uid: 1885 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-32.5 parent: 2 - - uid: 30677 + - uid: 1886 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-43.5 parent: 2 - - uid: 30860 + - uid: 1887 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-43.5 parent: 2 - - uid: 30862 + - uid: 1888 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-44.5 parent: 2 - - uid: 33742 + - uid: 1889 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,20.5 parent: 2 - - uid: 36699 + - uid: 1890 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-49.5 parent: 2 - - uid: 36710 + - uid: 1891 components: - type: Transform pos: 5.5,-52.5 parent: 2 - - uid: 36711 + - uid: 1892 components: - type: Transform pos: 6.5,-52.5 parent: 2 - - uid: 37752 + - uid: 1893 components: - type: Transform pos: 5.5,-39.5 parent: 2 - - uid: 37753 + - uid: 1894 components: - type: Transform pos: 4.5,-39.5 parent: 2 - - uid: 39099 + - uid: 1895 components: - type: Transform pos: 5.5,-31.5 parent: 2 - - uid: 39100 + - uid: 1896 components: - type: Transform pos: 6.5,-32.5 parent: 2 - - uid: 39489 + - uid: 1897 components: - type: Transform pos: -23.5,-42.5 parent: 2 - - uid: 39717 + - uid: 1898 components: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 39718 + - uid: 1899 components: - type: Transform pos: 0.5,-8.5 parent: 2 - - uid: 39719 + - uid: 1900 components: - type: Transform pos: 1.5,-8.5 parent: 2 - - uid: 40127 + - uid: 1901 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-31.5 parent: 2 - - uid: 40129 + - uid: 1902 components: - type: Transform rot: 1.5707963267948966 rad @@ -32048,182 +32832,204 @@ entities: parent: 2 - proto: BarricadeDirectional entities: - - uid: 1640 + - uid: 1903 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-100.5 parent: 2 - - uid: 1641 + - uid: 1904 components: - type: Transform pos: -15.5,-91.5 parent: 2 - - uid: 1642 + - uid: 1905 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-25.5 parent: 2 - - uid: 1653 + - uid: 1906 components: - type: Transform pos: -27.5,-98.5 parent: 2 - - uid: 1654 + - uid: 1907 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-5.5 parent: 2 - - uid: 1663 + - uid: 1908 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-93.5 parent: 2 - - uid: 1664 + - uid: 1909 components: - type: Transform pos: -21.5,-98.5 parent: 2 - - uid: 1671 + - uid: 1910 components: - type: Transform pos: -21.5,-96.5 parent: 2 - - uid: 1672 + - uid: 1911 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-97.5 parent: 2 - - uid: 1673 + - uid: 1912 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-98.5 parent: 2 - - uid: 1674 + - uid: 1913 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-97.5 parent: 2 - - uid: 1675 + - uid: 1914 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,1.5 parent: 2 - - uid: 1676 + - uid: 1915 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-3.5 parent: 2 - - uid: 3473 + - uid: 1916 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-32.5 parent: 2 - - uid: 5682 + - uid: 1917 components: - type: Transform pos: -24.5,-42.5 parent: 2 - - uid: 10911 + - uid: 1918 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-33.5 parent: 2 - - uid: 11057 + - uid: 1919 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,-49.5 parent: 2 - - uid: 18669 + - uid: 1920 components: - type: Transform pos: -58.5,-21.5 parent: 2 - - uid: 25065 + - uid: 1921 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-17.5 parent: 2 - - uid: 25066 + - uid: 1922 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-18.5 parent: 2 - - uid: 26416 + - uid: 1923 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-31.5 parent: 2 - - uid: 26583 + - uid: 1924 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-42.5 parent: 2 - - uid: 30434 + - uid: 1925 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-32.5 parent: 2 - - uid: 30530 + - uid: 1926 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-43.5 parent: 2 - - uid: 30858 + - uid: 1927 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-44.5 parent: 2 - - uid: 30861 + - uid: 1928 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-43.5 parent: 2 - - uid: 34414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,7.5 - parent: 2 - - uid: 36698 + - uid: 1929 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-49.5 parent: 2 - - uid: 36712 + - uid: 1930 components: - type: Transform pos: 6.5,-51.5 parent: 2 - - uid: 36713 + - uid: 1931 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-53.5 parent: 2 + - uid: 1932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-41.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-43.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-36.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 - proto: BarSign entities: - - uid: 1677 + - uid: 1937 components: - type: Transform rot: 1.5707963267948966 rad @@ -32231,169 +33037,169 @@ entities: parent: 2 - proto: BarSignSpacebucks entities: - - uid: 1678 + - uid: 1938 components: - type: Transform pos: -66.5,-5.5 parent: 2 - proto: BarSignTheOuterSpess entities: - - uid: 33922 + - uid: 1939 components: - type: Transform pos: -96.5,-9.5 parent: 2 - proto: BaseChemistryEmptyVial entities: - - uid: 1680 + - uid: 1940 components: - type: Transform pos: -37.747562,-34.233185 parent: 2 - - uid: 1681 + - uid: 1941 components: - type: Transform pos: -37.888187,-34.326935 parent: 2 - - uid: 30711 + - uid: 1942 components: - type: Transform pos: -15.570034,-38.30245 parent: 2 - - uid: 30781 + - uid: 1943 components: - type: Transform pos: -17.616909,-34.2087 parent: 2 - - uid: 30829 + - uid: 1944 components: - type: Transform pos: -15.507534,-33.36495 parent: 2 - - uid: 30846 + - uid: 1945 components: - type: Transform pos: -15.351284,-33.3962 parent: 2 - - uid: 30851 + - uid: 1946 components: - type: Transform pos: -19.601284,-37.3337 parent: 2 - - uid: 34227 + - uid: 1947 components: - type: Transform pos: -4.3147693,-36.19546 parent: 2 - - uid: 34228 + - uid: 1948 components: - type: Transform pos: -4.4866443,-36.211086 parent: 2 - - uid: 34229 + - uid: 1949 components: - type: Transform pos: -6.2053943,-34.336086 parent: 2 - - uid: 34230 + - uid: 1950 components: - type: Transform pos: -6.3303943,-34.304836 parent: 2 - - uid: 34231 + - uid: 1951 components: - type: Transform pos: -6.4553943,-34.304836 parent: 2 - - uid: 34254 + - uid: 1952 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5445156,-36.68435 parent: 2 - - uid: 34255 + - uid: 1953 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.4507656,-35.324974 parent: 2 - - uid: 39441 + - uid: 1954 components: - type: Transform pos: -11.457465,-41.346653 parent: 2 - proto: BaseComputer entities: - - uid: 1682 + - uid: 1955 components: - type: Transform pos: -61.5,12.5 parent: 2 - - uid: 15434 + - uid: 1956 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-49.5 parent: 2 - - uid: 28570 + - uid: 1957 components: - type: Transform pos: 19.5,-17.5 parent: 2 - - uid: 28572 + - uid: 1958 components: - type: Transform pos: 19.5,-15.5 parent: 2 - - uid: 28837 + - uid: 1959 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-19.5 parent: 2 - - uid: 32342 + - uid: 1960 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-50.5 parent: 2 - - uid: 32343 + - uid: 1961 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-52.5 parent: 2 - - uid: 33796 + - uid: 1962 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-51.5 parent: 2 - - uid: 33797 + - uid: 1963 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-51.5 parent: 2 - - uid: 33799 + - uid: 1964 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-50.5 parent: 2 - - uid: 33800 + - uid: 1965 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-49.5 parent: 2 - - uid: 33801 + - uid: 1966 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-50.5 parent: 2 - - uid: 34363 + - uid: 1967 components: - type: Transform rot: -1.5707963267948966 rad @@ -32401,12 +33207,12 @@ entities: parent: 2 - proto: BaseGasCondenser entities: - - uid: 1683 + - uid: 1968 components: - type: Transform pos: -34.5,-31.5 parent: 2 - - uid: 1684 + - uid: 1969 components: - type: Transform rot: 1.5707963267948966 rad @@ -32414,342 +33220,347 @@ entities: parent: 2 - proto: BassGuitarInstrument entities: - - uid: 1685 + - uid: 1970 components: - type: Transform pos: 33.592587,-9.475217 parent: 2 - proto: Beaker entities: - - uid: 1686 + - uid: 1971 components: - type: Transform pos: -68.4897,-63.217583 parent: 2 - - uid: 1687 + - uid: 1972 components: - type: Transform pos: -68.27095,-63.076958 parent: 2 - - uid: 1691 + - uid: 1973 components: - type: Transform pos: 35.93333,15.667838 parent: 2 - - uid: 1692 + - uid: 1974 components: - type: Transform pos: -55.638107,11.6492605 parent: 2 - - uid: 1693 + - uid: 1975 components: - type: Transform pos: -38.263187,-33.326935 parent: 2 - - uid: 1694 + - uid: 1976 components: - type: Transform pos: -38.216312,-33.576935 parent: 2 - - uid: 34225 + - uid: 1977 components: - type: Transform pos: -4.8147693,-36.367336 parent: 2 - - uid: 39438 + - uid: 1978 components: - type: Transform pos: -11.75434,-38.971653 parent: 2 - - uid: 39439 + - uid: 1979 components: - type: Transform pos: -11.426215,-38.831028 parent: 2 - - uid: 41027 + - uid: 1981 components: - type: Transform - parent: 37041 + parent: 1980 - type: Physics canCollide: False - proto: Bed entities: - - uid: 1695 + - uid: 1995 components: - type: Transform pos: 17.5,12.5 parent: 2 - - uid: 1696 + - uid: 1996 components: - type: Transform pos: -11.5,6.5 parent: 2 - - uid: 1697 + - uid: 1997 components: - type: Transform pos: -37.5,5.5 parent: 2 - - uid: 1698 + - uid: 1998 components: - type: Transform pos: -38.5,-10.5 parent: 2 - - uid: 1699 + - uid: 1999 components: - type: Transform pos: -51.5,-13.5 parent: 2 - - uid: 1700 + - uid: 2000 components: - type: Transform pos: -52.5,-10.5 parent: 2 - - uid: 1701 + - uid: 2001 components: - type: Transform pos: 57.5,-75.5 parent: 2 - - uid: 1702 + - uid: 2002 components: - type: Transform pos: -0.5,-99.5 parent: 2 - - uid: 1703 + - uid: 2003 components: - type: Transform pos: 34.5,-67.5 parent: 2 - - uid: 1704 + - uid: 2004 components: - type: Transform pos: -27.5,-86.5 parent: 2 - - uid: 1705 + - uid: 2005 components: - type: Transform pos: -27.5,-83.5 parent: 2 - - uid: 1706 + - uid: 2006 components: - type: Transform pos: -36.5,-83.5 parent: 2 - - uid: 1707 + - uid: 2007 components: - type: Transform pos: -36.5,-86.5 parent: 2 - - uid: 1708 + - uid: 2008 components: - type: Transform pos: -35.5,-70.5 parent: 2 - - uid: 1713 + - uid: 2009 components: - type: Transform pos: 28.5,-82.5 parent: 2 - - uid: 1714 + - uid: 2010 components: - type: Transform pos: -66.5,-61.5 parent: 2 - - uid: 1716 + - uid: 2011 components: - type: Transform pos: -27.5,-89.5 parent: 2 - - uid: 1717 + - uid: 2012 components: - type: Transform pos: -36.5,-89.5 parent: 2 - - uid: 1718 + - uid: 2013 components: - type: Transform pos: 24.5,9.5 parent: 2 - - uid: 1719 + - uid: 2014 components: - type: Transform pos: 105.5,-47.5 parent: 2 - - uid: 1720 + - uid: 2015 components: - type: Transform pos: -40.5,-97.5 parent: 2 - - uid: 1721 + - uid: 2016 components: - type: Transform pos: -39.5,-97.5 parent: 2 - - uid: 1722 + - uid: 2017 components: - type: Transform pos: -38.5,-97.5 parent: 2 - - uid: 2728 + - uid: 2018 components: - type: Transform pos: 48.5,7.5 parent: 2 - - uid: 2730 + - uid: 2019 components: - type: Transform pos: 48.5,6.5 parent: 2 - - uid: 11028 + - uid: 2020 components: - type: Transform pos: 53.5,-23.5 parent: 2 - - uid: 14594 + - uid: 2021 components: - type: Transform pos: 48.5,3.5 parent: 2 - - uid: 16234 + - uid: 2022 components: - type: Transform pos: 48.5,0.5 parent: 2 - - uid: 16237 + - uid: 2023 components: - type: Transform pos: 40.5,1.5 parent: 2 - - uid: 19115 + - uid: 2024 + components: + - type: Transform + pos: -13.5,9.5 + parent: 2 + - uid: 2025 components: - type: Transform pos: 40.5,4.5 parent: 2 - - uid: 19586 + - uid: 2026 components: - type: Transform pos: 66.5,0.5 parent: 2 - - uid: 25468 + - uid: 2027 components: - type: Transform pos: 77.5,1.5 parent: 2 - - uid: 25469 + - uid: 2028 components: - type: Transform pos: 79.5,1.5 parent: 2 - - uid: 25470 + - uid: 2029 components: - type: Transform pos: 81.5,1.5 parent: 2 - - uid: 25471 + - uid: 2030 components: - type: Transform pos: 83.5,1.5 parent: 2 - - uid: 25583 + - uid: 2031 components: - type: Transform pos: 85.5,1.5 parent: 2 - - uid: 31593 + - uid: 2032 components: - type: Transform pos: 51.5,16.5 parent: 2 - - uid: 33760 + - uid: 2033 components: - type: Transform pos: 14.5,-21.5 parent: 2 - - uid: 39090 + - uid: 2034 components: - type: Transform pos: 1.5,-34.5 parent: 2 - - uid: 39092 + - uid: 2035 components: - type: Transform pos: 0.5,-38.5 parent: 2 - proto: BedsheetBlack entities: - - uid: 1723 + - uid: 2036 components: - type: Transform pos: 24.5,9.5 parent: 2 - - uid: 1724 + - uid: 2037 components: - type: Transform pos: 34.5,-67.5 parent: 2 - proto: BedsheetBrigmedic entities: - - uid: 16993 + - uid: 2038 components: - type: Transform pos: 66.5,0.5 parent: 2 - proto: BedsheetCaptain entities: - - uid: 1726 + - uid: 2039 components: - type: Transform pos: 17.5,12.5 parent: 2 - proto: BedsheetCE entities: - - uid: 1727 + - uid: 2040 components: - type: Transform pos: 57.5,-75.5 parent: 2 - proto: BedsheetClown entities: - - uid: 1728 + - uid: 2041 components: - type: Transform pos: 36.5,-17.5 parent: 2 - proto: BedsheetCMO entities: - - uid: 1729 + - uid: 2042 components: - type: Transform pos: -38.5,-10.5 parent: 2 - proto: BedsheetCosmos entities: - - uid: 1730 + - uid: 2043 components: - type: Transform pos: 33.5,-19.5 parent: 2 - - uid: 39654 + - uid: 2044 components: - type: Transform pos: 14.5,-21.5 parent: 2 - proto: BedsheetHOP entities: - - uid: 1733 + - uid: 2045 components: - type: Transform pos: -11.5,6.5 parent: 2 - proto: BedsheetHOS entities: - - uid: 31595 + - uid: 2046 components: - type: Transform pos: 51.5,16.5 parent: 2 - proto: BedsheetIan entities: - - uid: 1735 + - uid: 2047 components: - type: Transform rot: -1.5707963267948966 rad @@ -32757,136 +33568,141 @@ entities: parent: 2 - proto: BedsheetMedical entities: - - uid: 1736 + - uid: 2048 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-13.5 parent: 2 - - uid: 1738 + - uid: 2049 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-18.5 parent: 2 - - uid: 1740 + - uid: 2050 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-21.5 parent: 2 - - uid: 1741 + - uid: 2051 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-23.5 parent: 2 - - uid: 5654 + - uid: 2052 components: - type: Transform pos: 62.5,-3.5 parent: 2 - - uid: 23162 + - uid: 2053 components: - type: Transform pos: -44.5,-22.5 parent: 2 - - uid: 23865 + - uid: 2054 components: - type: Transform pos: -44.5,-20.5 parent: 2 - - uid: 37906 + - uid: 40847 components: - type: Transform pos: -5.5,-8.5 - parent: 37887 - - uid: 38735 + parent: 40828 + - uid: 41682 components: - type: Transform pos: 6.5,-2.5 - parent: 38722 + parent: 41669 - proto: BedsheetMime entities: - - uid: 1743 + - uid: 2055 components: - type: Transform pos: 33.5,-16.5 parent: 2 - proto: BedsheetNT entities: - - uid: 1827 + - uid: 2056 components: - type: Transform pos: 53.5,-23.5 parent: 2 + - uid: 2057 + components: + - type: Transform + pos: -13.5,9.5 + parent: 2 - proto: BedsheetOrange entities: - - uid: 2110 + - uid: 2058 components: - type: Transform pos: 40.5,4.5 parent: 2 - - uid: 2115 + - uid: 2059 components: - type: Transform pos: 40.5,1.5 parent: 2 - - uid: 2725 + - uid: 2060 components: - type: Transform pos: 48.5,0.5 parent: 2 - - uid: 2726 + - uid: 2061 components: - type: Transform pos: 48.5,3.5 parent: 2 - - uid: 15648 + - uid: 2062 components: - type: Transform pos: 48.5,6.5 parent: 2 - - uid: 15662 + - uid: 2063 components: - type: Transform pos: 48.5,7.5 parent: 2 - - uid: 29233 + - uid: 2064 components: - type: Transform pos: 79.5,1.5 parent: 2 - - uid: 29234 + - uid: 2065 components: - type: Transform pos: 81.5,1.5 parent: 2 - - uid: 29235 + - uid: 2066 components: - type: Transform pos: 83.5,1.5 parent: 2 - - uid: 29242 + - uid: 2067 components: - type: Transform pos: 85.5,1.5 parent: 2 - - uid: 29244 + - uid: 2068 components: - type: Transform pos: 77.5,1.5 parent: 2 - proto: BedsheetQM entities: - - uid: 1745 + - uid: 2069 components: - type: Transform pos: -0.5,-99.5 parent: 2 - proto: BedsheetRD entities: - - uid: 1742 + - uid: 2070 components: - type: Transform rot: 1.5707963267948966 rad @@ -32894,75 +33710,75 @@ entities: parent: 2 - proto: BedsheetSpawner entities: - - uid: 1746 + - uid: 2071 components: - type: Transform pos: 28.5,-82.5 parent: 2 - - uid: 1747 + - uid: 2072 components: - type: Transform pos: -36.5,-89.5 parent: 2 - - uid: 1748 + - uid: 2073 components: - type: Transform pos: -37.5,5.5 parent: 2 - - uid: 1749 + - uid: 2074 components: - type: Transform pos: -45.5,-3.5 parent: 2 - - uid: 1750 + - uid: 2075 components: - type: Transform pos: -45.5,-0.5 parent: 2 - - uid: 1751 + - uid: 2076 components: - type: Transform pos: -52.5,-10.5 parent: 2 - - uid: 1752 + - uid: 2077 components: - type: Transform pos: -36.5,-86.5 parent: 2 - - uid: 1753 + - uid: 2078 components: - type: Transform pos: -36.5,-83.5 parent: 2 - - uid: 1754 + - uid: 2079 components: - type: Transform pos: -27.5,-83.5 parent: 2 - - uid: 1755 + - uid: 2080 components: - type: Transform pos: -27.5,-86.5 parent: 2 - - uid: 1759 + - uid: 2081 components: - type: Transform pos: -27.5,-89.5 parent: 2 - proto: BedsheetWiz entities: - - uid: 1760 + - uid: 2082 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-97.5 parent: 2 - - uid: 1761 + - uid: 2083 components: - type: Transform pos: -39.5,-97.5 parent: 2 - - uid: 1762 + - uid: 2084 components: - type: Transform rot: -1.5707963267948966 rad @@ -32970,135 +33786,135 @@ entities: parent: 2 - proto: BenchComfy entities: - - uid: 1764 + - uid: 2085 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,0.5 parent: 2 - - uid: 1765 + - uid: 2086 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,1.5 parent: 2 - - uid: 1766 + - uid: 2087 components: - type: Transform rot: -1.5707963267948966 rad pos: -85.5,2.5 parent: 2 - - uid: 1767 + - uid: 2088 components: - type: Transform pos: -24.5,-69.5 parent: 2 - - uid: 1768 + - uid: 2089 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-40.5 parent: 2 - - uid: 1769 + - uid: 2090 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-37.5 parent: 2 - - uid: 1770 + - uid: 2091 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-38.5 parent: 2 - - uid: 1771 + - uid: 2092 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-39.5 parent: 2 - - uid: 1772 + - uid: 2093 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-36.5 parent: 2 - - uid: 1773 + - uid: 2094 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-36.5 parent: 2 - - uid: 1774 + - uid: 2095 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-38.5 parent: 2 - - uid: 1775 + - uid: 2096 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-39.5 parent: 2 - - uid: 1776 + - uid: 2097 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-37.5 parent: 2 - - uid: 1777 + - uid: 2098 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-40.5 parent: 2 - - uid: 1778 + - uid: 2099 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-42.5 parent: 2 - - uid: 1779 + - uid: 2100 components: - type: Transform pos: 88.5,-20.5 parent: 2 - - uid: 1780 + - uid: 2101 components: - type: Transform pos: 87.5,-20.5 parent: 2 - - uid: 1781 + - uid: 2102 components: - type: Transform pos: 86.5,-20.5 parent: 2 - - uid: 1782 + - uid: 2103 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,-42.5 parent: 2 - - uid: 26242 + - uid: 2104 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-22.5 parent: 2 - - uid: 26244 + - uid: 2105 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-29.5 parent: 2 - - uid: 26245 + - uid: 2106 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-26.5 parent: 2 - - uid: 29190 + - uid: 2107 components: - type: Transform rot: 3.141592653589793 rad @@ -33106,159 +33922,173 @@ entities: parent: 2 - proto: Bible entities: - - uid: 1783 + - uid: 14 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.473587,-63.414124 - parent: 2 + parent: 5 + - type: Summonable + summonActionEntity: 15 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 15 + - type: Physics + canCollide: False + - type: ActionsContainer - proto: BigBox entities: - - uid: 1784 + - uid: 2108 components: - type: Transform pos: -7.4990287,-78.43388 parent: 2 - proto: Biogenerator entities: - - uid: 2738 + - uid: 2109 components: - type: Transform - pos: 38.5,13.5 + pos: 87.5,-3.5 parent: 2 - - uid: 34397 + - uid: 2110 components: - type: Transform - pos: 87.5,-3.5 + pos: 35.5,23.5 parent: 2 - proto: BiomassReclaimer entities: - - uid: 1785 + - uid: 2111 components: - type: Transform pos: -54.5,-37.5 parent: 2 - proto: BlackBishop entities: - - uid: 1787 + - uid: 2113 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1788 + - uid: 2114 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BlackKing entities: - - uid: 1813 + - uid: 2139 components: - type: Transform pos: 33.7575,2.4655693 parent: 2 - proto: BlackKnight entities: - - uid: 1789 + - uid: 2115 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1790 + - uid: 2116 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BlackPawn entities: - - uid: 1791 + - uid: 2117 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1792 + - uid: 2118 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1793 + - uid: 2119 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1794 + - uid: 2120 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1795 + - uid: 2121 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1796 + - uid: 2122 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1814 + - uid: 2140 components: - type: Transform pos: 32.695244,2.4261293 parent: 2 - - uid: 1815 + - uid: 2141 components: - type: Transform pos: 34.200462,3.0249612 parent: 2 - proto: BlackQueen entities: - - uid: 1797 + - uid: 2123 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BlackRook entities: - - uid: 1798 + - uid: 2124 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1799 + - uid: 2125 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BlastDoor entities: - - uid: 1816 + - uid: 2142 components: - type: Transform rot: 3.141592653589793 rad @@ -33267,7 +34097,7 @@ entities: - type: AccessReader access: - - Command - - uid: 1817 + - uid: 2143 components: - type: Transform rot: 3.141592653589793 rad @@ -33276,13 +34106,13 @@ entities: - type: AccessReader access: - - Command - - uid: 1818 + - uid: 2144 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-96.5 parent: 2 - - uid: 1819 + - uid: 2145 components: - type: Transform rot: -1.5707963267948966 rad @@ -33291,7 +34121,7 @@ entities: - type: AccessReader access: - - Engineering - - uid: 1820 + - uid: 2146 components: - type: Transform rot: -1.5707963267948966 rad @@ -33300,7 +34130,7 @@ entities: - type: AccessReader access: - - Engineering - - uid: 1821 + - uid: 2147 components: - type: Transform pos: 52.5,-63.5 @@ -33308,7 +34138,7 @@ entities: - type: AccessReader access: - - Engineering - - uid: 1822 + - uid: 2148 components: - type: Transform pos: 52.5,-64.5 @@ -33316,12 +34146,12 @@ entities: - type: AccessReader access: - - Engineering - - uid: 1823 + - uid: 2149 components: - type: Transform pos: 52.5,-65.5 parent: 2 - - uid: 1824 + - uid: 2150 components: - type: Transform pos: -60.5,-56.5 @@ -33329,7 +34159,7 @@ entities: - type: AccessReader access: - - Research - - uid: 1825 + - uid: 2151 components: - type: Transform pos: -60.5,-57.5 @@ -33337,7 +34167,7 @@ entities: - type: AccessReader access: - - Research - - uid: 1826 + - uid: 2152 components: - type: Transform pos: -60.5,-58.5 @@ -33345,109 +34175,109 @@ entities: - type: AccessReader access: - - Research - - uid: 1830 + - uid: 2153 components: - type: Transform pos: 105.5,-35.5 parent: 2 - - uid: 1831 + - uid: 2154 components: - type: Transform pos: 105.5,-34.5 parent: 2 - - uid: 1832 + - uid: 2155 components: - type: Transform pos: 105.5,-33.5 parent: 2 - - uid: 1833 + - uid: 2156 components: - type: Transform pos: 105.5,-32.5 parent: 2 - - uid: 1834 + - uid: 2157 components: - type: Transform pos: 105.5,-31.5 parent: 2 - - uid: 1835 + - uid: 2158 components: - type: Transform pos: 105.5,-30.5 parent: 2 - - uid: 1836 + - uid: 2159 components: - type: Transform pos: 105.5,-29.5 parent: 2 - - uid: 1837 + - uid: 2160 components: - type: Transform pos: 105.5,-28.5 parent: 2 - - uid: 1838 + - uid: 2161 components: - type: Transform pos: 105.5,-27.5 parent: 2 - - uid: 1839 + - uid: 2162 components: - type: Transform pos: 108.5,-27.5 parent: 2 - - uid: 1840 + - uid: 2163 components: - type: Transform pos: 108.5,-28.5 parent: 2 - - uid: 1841 + - uid: 2164 components: - type: Transform pos: 108.5,-29.5 parent: 2 - - uid: 1842 + - uid: 2165 components: - type: Transform pos: 108.5,-30.5 parent: 2 - - uid: 1843 + - uid: 2166 components: - type: Transform pos: 108.5,-31.5 parent: 2 - - uid: 1844 + - uid: 2167 components: - type: Transform pos: 108.5,-32.5 parent: 2 - - uid: 1845 + - uid: 2168 components: - type: Transform pos: 108.5,-33.5 parent: 2 - - uid: 1846 + - uid: 2169 components: - type: Transform pos: 108.5,-34.5 parent: 2 - - uid: 1847 + - uid: 2170 components: - type: Transform pos: 108.5,-35.5 parent: 2 - - uid: 1848 + - uid: 2171 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-72.5 parent: 2 - - uid: 1849 + - uid: 2172 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-72.5 parent: 2 - - uid: 1850 + - uid: 2173 components: - type: Transform pos: 82.5,-58.5 @@ -33455,7 +34285,7 @@ entities: - type: AccessReader access: - - Engineering - - uid: 1851 + - uid: 2174 components: - type: Transform pos: 82.5,-59.5 @@ -33463,7 +34293,7 @@ entities: - type: AccessReader access: - - Engineering - - uid: 1852 + - uid: 2175 components: - type: Transform pos: 82.5,-60.5 @@ -33471,7 +34301,7 @@ entities: - type: AccessReader access: - - Engineering - - uid: 1853 + - uid: 2176 components: - type: Transform pos: -73.5,-73.5 @@ -33479,7 +34309,7 @@ entities: - type: AccessReader access: - - Research - - uid: 1854 + - uid: 2177 components: - type: Transform rot: -1.5707963267948966 rad @@ -33488,19 +34318,19 @@ entities: - type: AccessReader access: - - Research - - uid: 1856 + - uid: 2178 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-100.5 parent: 2 - - uid: 1857 + - uid: 2179 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-96.5 parent: 2 - - uid: 1858 + - uid: 2180 components: - type: Transform pos: -75.5,-77.5 @@ -33508,7 +34338,7 @@ entities: - type: AccessReader access: - - Research - - uid: 1859 + - uid: 2181 components: - type: Transform rot: -1.5707963267948966 rad @@ -33517,7 +34347,7 @@ entities: - type: AccessReader access: - - Research - - uid: 1860 + - uid: 2182 components: - type: Transform rot: -1.5707963267948966 rad @@ -33526,19 +34356,19 @@ entities: - type: AccessReader access: - - Research - - uid: 1861 + - uid: 2183 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-100.5 parent: 2 - - uid: 2759 + - uid: 2184 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-12.5 parent: 2 - - uid: 6217 + - uid: 2185 components: - type: Transform pos: 13.5,-28.5 @@ -33548,17 +34378,17 @@ entities: - - CentralCommand - type: DeviceLinkSource linkedPorts: - 39736: + 31211: - DoorStatus: Trigger missingComponents: - Damageable - - uid: 11127 + - uid: 2186 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-57.5 parent: 2 - - uid: 11146 + - uid: 2187 components: - type: MetaData desc: 'Подсказка: привяжите мультитулом к кнопке или рычагу. Их можно найти в меню создания "button" или "lever". ' @@ -33566,13 +34396,13 @@ entities: - type: Transform pos: 1.5,-66.5 parent: 2 - - uid: 11459 + - uid: 2188 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-56.5 parent: 2 - - uid: 11639 + - uid: 2189 components: - type: MetaData desc: 'Подсказка: привяжите мультитулом к кнопке или рычагу. Их можно найти в меню создания "button" или "lever".' @@ -33580,7 +34410,7 @@ entities: - type: Transform pos: -0.5,-66.5 parent: 2 - - uid: 11640 + - uid: 2190 components: - type: MetaData desc: 'Подсказка: привяжите мультитулом к кнопке или рычагу. Их можно найти в меню создания "button" или "lever".' @@ -33588,105 +34418,105 @@ entities: - type: Transform pos: 0.5,-66.5 parent: 2 - - uid: 13394 + - uid: 2191 components: - type: Transform pos: -23.5,-58.5 parent: 2 - - uid: 13400 + - uid: 2192 components: - type: Transform pos: -23.5,-59.5 parent: 2 - - uid: 13416 + - uid: 2193 components: - type: Transform pos: -23.5,-60.5 parent: 2 - - uid: 15532 + - uid: 2194 components: - type: Transform pos: 61.5,-14.5 parent: 2 - - uid: 17397 + - uid: 2195 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-16.5 parent: 2 - - uid: 27135 + - uid: 2196 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-55.5 parent: 2 - - uid: 28874 + - uid: 2197 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-11.5 parent: 2 - - uid: 28875 + - uid: 2198 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-11.5 parent: 2 - - uid: 28876 + - uid: 2199 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-11.5 parent: 2 - - uid: 28877 + - uid: 2200 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-11.5 parent: 2 - - uid: 28878 + - uid: 2201 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-11.5 parent: 2 - - uid: 28879 + - uid: 2202 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-13.5 parent: 2 - - uid: 28880 + - uid: 2203 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-14.5 parent: 2 - - uid: 28886 + - uid: 2204 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-15.5 parent: 2 - - uid: 28887 + - uid: 2205 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-16.5 parent: 2 - - uid: 28894 + - uid: 2206 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-17.5 parent: 2 - - uid: 28947 + - uid: 2207 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-18.5 parent: 2 - - uid: 32971 + - uid: 2208 components: - type: Transform rot: 3.141592653589793 rad @@ -33695,7 +34525,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 34357 + - uid: 2209 components: - type: Transform rot: 3.141592653589793 rad @@ -33703,9 +34533,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 30479: + 26992: - DoorStatus: InputB - - uid: 34360 + - uid: 2210 components: - type: Transform rot: 3.141592653589793 rad @@ -33714,7 +34544,7 @@ entities: - type: AccessReader access: - - Security - - uid: 37706 + - uid: 2211 components: - type: Transform rot: 3.141592653589793 rad @@ -33722,88 +34552,88 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 30479: + 26992: - DoorStatus: InputA - - uid: 37907 + - uid: 40848 components: - type: Transform pos: 3.5,-5.5 - parent: 37887 - - uid: 37908 + parent: 40828 + - uid: 40849 components: - type: Transform pos: -4.5,-0.5 - parent: 37887 + parent: 40828 - type: DeviceLinkSource linkedPorts: - 38379: + 41326: - DoorStatus: InputA - 38380: + 41327: - DoorStatus: InputA - - uid: 37909 + - uid: 40850 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-2.5 - parent: 37887 + parent: 40828 - type: DeviceLinkSource linkedPorts: - 38381: + 41328: - DoorStatus: InputA - 38380: + 41327: - DoorStatus: InputB - - uid: 37910 + - uid: 40851 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-2.5 - parent: 37887 + parent: 40828 - type: DeviceLinkSource linkedPorts: - 38381: + 41328: - DoorStatus: InputB - - uid: 37911 + - uid: 40852 components: - type: Transform pos: 5.5,-0.5 - parent: 37887 + parent: 40828 - type: DeviceLinkSource linkedPorts: - 38379: + 41326: - DoorStatus: InputB - 38218: + 41164: - DoorStatus: Trigger - 38220: + 41166: - DoorStatus: Trigger - 38221: + 41167: - DoorStatus: Trigger - 38222: + 41168: - DoorStatus: Trigger - 38223: + 41169: - DoorStatus: Trigger - 38219: + 41165: - DoorStatus: Trigger - proto: BlastDoorOpen entities: - - uid: 1867 + - uid: 2212 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-50.5 parent: 2 - - uid: 1868 + - uid: 2213 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-50.5 parent: 2 - - uid: 1869 + - uid: 2214 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-50.5 parent: 2 - - uid: 1870 + - uid: 2215 components: - type: Transform rot: 3.141592653589793 rad @@ -33812,43 +34642,43 @@ entities: - type: AccessReader access: - - Atmospherics - - uid: 1871 + - uid: 2216 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,19.5 parent: 2 - - uid: 1872 + - uid: 2217 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,19.5 parent: 2 - - uid: 1873 + - uid: 2218 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,19.5 parent: 2 - - uid: 1874 + - uid: 2219 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-64.5 parent: 2 - - uid: 1875 + - uid: 2220 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-65.5 parent: 2 - - uid: 1876 + - uid: 2221 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-66.5 parent: 2 - - uid: 1877 + - uid: 2222 components: - type: Transform rot: 3.141592653589793 rad @@ -33857,7 +34687,7 @@ entities: - type: AccessReader access: - - Atmospherics - - uid: 1880 + - uid: 2223 components: - type: Transform rot: 3.141592653589793 rad @@ -33866,7 +34696,7 @@ entities: - type: AccessReader access: - - Atmospherics - - uid: 1884 + - uid: 2224 components: - type: Transform rot: 3.141592653589793 rad @@ -33875,7 +34705,7 @@ entities: - type: AccessReader access: - - Atmospherics - - uid: 1885 + - uid: 2225 components: - type: Transform rot: 3.141592653589793 rad @@ -33884,7 +34714,7 @@ entities: - type: AccessReader access: - - Atmospherics - - uid: 17877 + - uid: 2226 components: - type: Transform rot: 3.141592653589793 rad @@ -33893,7 +34723,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 19254 + - uid: 2227 components: - type: Transform rot: 3.141592653589793 rad @@ -33902,7 +34732,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 23013 + - uid: 2228 components: - type: Transform pos: 42.5,12.5 @@ -33910,7 +34740,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 24996 + - uid: 2229 components: - type: Transform rot: 3.141592653589793 rad @@ -33919,81 +34749,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 37912 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 37887 - - uid: 37913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-2.5 - parent: 37887 - - uid: 37914 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-2.5 - parent: 37887 - - uid: 37915 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 37887 - - uid: 37916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,16.5 - parent: 37887 - - uid: 37917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,16.5 - parent: 37887 - - uid: 38736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,5.5 - parent: 38722 - - uid: 38737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,5.5 - parent: 38722 - - uid: 38738 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,4.5 - parent: 38722 - - uid: 38739 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,5.5 - parent: 38722 - - uid: 38740 - components: - - type: Transform - pos: 2.5,4.5 - parent: 38722 - - uid: 38741 - components: - - type: Transform - pos: 2.5,3.5 - parent: 38722 - - uid: 38742 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,3.5 - parent: 38722 - - uid: 40593 + - uid: 2230 components: - type: Transform pos: 69.5,-0.5 @@ -34001,7 +34757,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 40603 + - uid: 2231 components: - type: Transform pos: 68.5,-0.5 @@ -34009,7 +34765,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 40605 + - uid: 2232 components: - type: Transform rot: 3.141592653589793 rad @@ -34018,7 +34774,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 40606 + - uid: 2233 components: - type: Transform rot: 3.141592653589793 rad @@ -34027,7 +34783,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 40609 + - uid: 2234 components: - type: Transform rot: 3.141592653589793 rad @@ -34036,7 +34792,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 40610 + - uid: 2235 components: - type: Transform pos: 70.5,-0.5 @@ -34044,7 +34800,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 40612 + - uid: 2236 components: - type: Transform pos: 54.5,17.5 @@ -34052,7 +34808,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 40613 + - uid: 2237 components: - type: Transform pos: 43.5,-21.5 @@ -34060,7 +34816,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 40614 + - uid: 2238 components: - type: Transform pos: 45.5,-21.5 @@ -34068,7 +34824,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 40615 + - uid: 2239 components: - type: Transform pos: 43.5,-25.5 @@ -34076,7 +34832,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 40616 + - uid: 2240 components: - type: Transform pos: 45.5,-25.5 @@ -34084,7 +34840,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 40619 + - uid: 2241 components: - type: Transform rot: -1.5707963267948966 rad @@ -34093,7 +34849,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 40620 + - uid: 2242 components: - type: Transform rot: -1.5707963267948966 rad @@ -34102,7 +34858,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 40621 + - uid: 2243 components: - type: Transform rot: -1.5707963267948966 rad @@ -34111,7 +34867,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 40622 + - uid: 2244 components: - type: Transform rot: -1.5707963267948966 rad @@ -34120,7 +34876,7 @@ entities: - type: AccessReader access: - - Armory - - uid: 40623 + - uid: 2245 components: - type: Transform rot: -1.5707963267948966 rad @@ -34129,20 +34885,94 @@ entities: - type: AccessReader access: - - Armory + - uid: 40853 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 40828 + - uid: 40854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 40828 + - uid: 40855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 40828 + - uid: 40856 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 40828 + - uid: 40857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 40828 + - uid: 40858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,16.5 + parent: 40828 + - uid: 41683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 41669 + - uid: 41684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 41669 + - uid: 41685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 41669 + - uid: 41686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 41669 + - uid: 41687 + components: + - type: Transform + pos: 2.5,4.5 + parent: 41669 + - uid: 41688 + components: + - type: Transform + pos: 2.5,3.5 + parent: 41669 + - uid: 41689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 41669 - proto: BlockGameArcade entities: - - uid: 1889 + - uid: 2246 components: - type: Transform pos: -63.5,12.5 parent: 2 - - uid: 1890 + - uid: 2247 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,9.5 parent: 2 - - uid: 31516 + - uid: 2248 components: - type: Transform rot: -1.5707963267948966 rad @@ -34150,7 +34980,7 @@ entities: parent: 2 - proto: Bloodpack entities: - - uid: 1891 + - uid: 2249 components: - type: Transform rot: 3.141592653589793 rad @@ -34158,54 +34988,54 @@ entities: parent: 2 - proto: BlueprintFulton entities: - - uid: 34265 + - uid: 2250 components: - type: Transform pos: 6.056112,-48.395218 parent: 2 - proto: BlueprintSeismicCharge entities: - - uid: 5963 + - uid: 2251 components: - type: Transform pos: 8.548469,-17.454145 parent: 2 - proto: BluespaceBeaker entities: - - uid: 37918 + - uid: 40859 components: - type: Transform pos: -3.3329773,-13.134705 - parent: 37887 + parent: 40828 - proto: BodyBagFolded entities: - - uid: 1895 + - uid: 2252 components: - type: Transform pos: -57.340836,-34.226032 parent: 2 - - uid: 1896 + - uid: 2253 components: - type: Transform pos: -48.40773,-34.18335 parent: 2 - proto: BookAtmosAirAlarms entities: - - uid: 1901 + - uid: 2254 components: - type: Transform pos: 42.767456,-94.20971 parent: 2 - proto: BookAtmosDistro entities: - - uid: 1902 + - uid: 2255 components: - type: Transform pos: 37.44743,-102.45673 parent: 2 - proto: BookAtmosVentsMore entities: - - uid: 1903 + - uid: 2256 components: - type: Transform rot: -1.5707963267948966 rad @@ -34213,28 +35043,28 @@ entities: parent: 2 - proto: BookAtmosWaste entities: - - uid: 1904 + - uid: 2257 components: - type: Transform pos: 37.51236,-85.49256 parent: 2 - proto: BookBartendersManual entities: - - uid: 1905 + - uid: 2258 components: - type: Transform pos: 22.351856,2.9101348 parent: 2 - - uid: 1907 + - uid: 2260 components: - type: Transform - parent: 1906 + parent: 2259 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BookBase entities: - - uid: 1912 + - uid: 2266 components: - type: MetaData name: Карательная психиатрия @@ -34243,21 +35073,21 @@ entities: parent: 2 - type: Paper content: "Медикаментозная терапия психических расстройств.\n\n \n Нарколепсия \n - эфедрин, дозировка 30 +диловен\n - дезоксиэфедрин - лучший выбор, дозировка 20 +диловен\n - этилоксиэфедрин, дозировка 10\n - дифенилметиламин, очень дорог, дозировка 5\n\nПриступы агрессии, обострения.\n \n - пакс - успокоительное, дозировка от 5\n - хлоральгидрат - снотворное, дозировка от 10\n - криптобиолин - дезориентирует больного\n\nПовреждения мозга\n \n - маннитол, действие до конца не изучено\n\nТревожность, дрожь, опьянение\n\n - псикодин, побочные эффекты в виде галлюцинаций\n - этилредоксразин - безопасный отрезвитель\n\nГаллюцинации\n\n - синаптизин, крайне токсичен, только с диловеном\n- галоперидол, также убирает дрожь, вызывает сонливость\n\nДепрессия, шизофрения\n\n - Импедризин, токсичен, только с диловеном\n - Космический мираж - безопасный галлюциноген\n - Счастье - вызывает повреждения мозга\n - ТГК - содержится в конопле\n - Токсин Майндбрекер, он же ЛСД. Действует дольше, чем мираж\n\n\n" - - uid: 1913 + - uid: 2267 components: - type: Transform pos: -27.605007,-115.43576 parent: 2 - - uid: 1915 + - uid: 2269 components: - type: MetaData name: Pax Romana - type: Transform - parent: 1914 + parent: 2268 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 23217 + - uid: 2271 components: - type: MetaData name: Джордж Оруэлл "1984" @@ -34375,7 +35205,7 @@ entities: В кафе раздаются победные фанфары: Океания победила Евразию. Уинстон тоже одерживает победу — над собой. Он любит Старшего Брата. - proto: BookBSS entities: - - uid: 1917 + - uid: 2272 components: - type: Transform rot: -1.5707963267948966 rad @@ -34383,23 +35213,23 @@ entities: parent: 2 - proto: BookBusido entities: - - uid: 1908 + - uid: 2261 components: - type: Transform - parent: 1906 + parent: 2259 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BookChemicalCompendium entities: - - uid: 1909 + - uid: 2262 components: - type: Transform - parent: 1906 + parent: 2259 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1918 + - uid: 2273 components: - type: Transform rot: -1.5707963267948966 rad @@ -34407,14 +35237,14 @@ entities: parent: 2 - proto: BookDAM entities: - - uid: 1919 + - uid: 2274 components: - type: Transform pos: 38.523735,-83.44861 parent: 2 - proto: BookEarth entities: - - uid: 1920 + - uid: 2275 components: - type: Transform rot: -1.5707963267948966 rad @@ -34422,7 +35252,7 @@ entities: parent: 2 - proto: BookFaks entities: - - uid: 1921 + - uid: 2276 components: - type: Transform rot: -1.5707963267948966 rad @@ -34430,7 +35260,7 @@ entities: parent: 2 - proto: BookFeather entities: - - uid: 1922 + - uid: 2277 components: - type: Transform rot: 1.5707963267948966 rad @@ -34438,30 +35268,30 @@ entities: parent: 2 - proto: BookGior entities: - - uid: 1923 + - uid: 2278 components: - type: Transform pos: -3.4998536,19.594942 parent: 2 - proto: BookLeafLoversSecret entities: - - uid: 1925 + - uid: 2279 components: - type: Transform pos: 32.536602,11.478571 parent: 2 - proto: BookMedicalReferenceBook entities: - - uid: 1910 + - uid: 2263 components: - type: Transform - parent: 1906 + parent: 2259 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BookMorgue entities: - - uid: 36754 + - uid: 2280 components: - type: Transform rot: 1.5707963267948966 rad @@ -34469,44 +35299,44 @@ entities: parent: 2 - proto: BookNakamura entities: - - uid: 1926 + - uid: 2281 components: - type: Transform pos: 50.492123,-51.498154 parent: 2 - proto: BookNarsieLegend entities: - - uid: 1927 + - uid: 2282 components: - type: Transform pos: -86.49877,-25.506641 parent: 2 - proto: BookRandom entities: - - uid: 1929 + - uid: 2283 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.58103,7.491108 parent: 2 - - uid: 1930 + - uid: 2284 components: - type: Transform pos: -29.62345,-5.3396664 parent: 2 - - uid: 1931 + - uid: 2285 components: - type: Transform pos: 4.520339,-73.45359 parent: 2 - - uid: 1932 + - uid: 2286 components: - type: Transform pos: -38.56447,17.459621 parent: 2 - proto: BookScaf entities: - - uid: 1933 + - uid: 2287 components: - type: Transform rot: -1.5707963267948966 rad @@ -34514,241 +35344,246 @@ entities: parent: 2 - proto: Bookshelf entities: - - uid: 723 + - uid: 2288 components: - type: Transform pos: 89.5,-2.5 parent: 2 - - uid: 1934 + - uid: 2289 components: - type: Transform pos: 72.5,-37.5 parent: 2 - - uid: 1935 + - uid: 2290 components: - type: Transform pos: 24.5,22.5 parent: 2 - - uid: 1936 + - uid: 2291 components: - type: Transform pos: -59.5,-14.5 parent: 2 - - uid: 1937 + - uid: 2292 components: - type: Transform pos: -58.5,-14.5 parent: 2 - - uid: 1938 + - uid: 2293 components: - type: Transform pos: -58.5,-14.5 parent: 2 - - uid: 1939 + - uid: 2294 components: - type: Transform pos: -57.5,-12.5 parent: 2 - - uid: 1940 + - uid: 2295 components: - type: Transform pos: -61.5,-14.5 parent: 2 - - uid: 1941 + - uid: 2296 components: - type: Transform pos: -63.5,-13.5 parent: 2 - - uid: 1942 + - uid: 2297 components: - type: Transform pos: -63.5,-9.5 parent: 2 - - uid: 1943 + - uid: 2298 components: - type: Transform pos: -61.5,-9.5 parent: 2 - - uid: 1944 + - uid: 2299 components: - type: Transform pos: -63.5,-7.5 parent: 2 - - uid: 1945 + - uid: 2300 components: - type: Transform pos: -57.5,-7.5 parent: 2 - - uid: 1946 + - uid: 2301 components: - type: Transform pos: -51.5,-47.5 parent: 2 - - uid: 1947 + - uid: 2302 components: - type: Transform pos: 4.5,-71.5 parent: 2 - - uid: 31574 + - uid: 2303 components: - type: Transform pos: 89.5,-0.5 parent: 2 - - uid: 33557 + - uid: 2304 components: - type: Transform pos: 16.5,-46.5 parent: 2 - - uid: 33558 + - uid: 2305 components: - type: Transform pos: 20.5,-38.5 parent: 2 - - uid: 33559 + - uid: 2306 components: - type: Transform pos: 20.5,-37.5 parent: 2 - - uid: 33560 + - uid: 2307 components: - type: Transform pos: 16.5,-45.5 parent: 2 - proto: BookshelfFilled entities: - - uid: 1948 + - uid: 2308 components: - type: Transform pos: -27.5,8.5 parent: 2 - - uid: 1949 + - uid: 2309 components: - type: Transform pos: -26.5,8.5 parent: 2 - - uid: 1950 + - uid: 2310 components: - type: Transform pos: -28.5,8.5 parent: 2 - - uid: 1951 + - uid: 2311 components: - type: Transform pos: -26.5,6.5 parent: 2 - - uid: 1952 + - uid: 2312 components: - type: Transform pos: -22.5,8.5 parent: 2 - - uid: 1953 + - uid: 2313 components: - type: Transform pos: -24.5,8.5 parent: 2 - - uid: 1954 + - uid: 2314 components: - type: Transform pos: -23.5,8.5 parent: 2 - - uid: 1955 + - uid: 2315 components: - type: Transform pos: -27.5,6.5 parent: 2 - - uid: 1956 + - uid: 2316 components: - type: Transform pos: -28.5,6.5 parent: 2 - - uid: 1957 + - uid: 2317 components: - type: Transform pos: -26.5,4.5 parent: 2 - - uid: 1958 + - uid: 2318 components: - type: Transform pos: -27.5,4.5 parent: 2 - - uid: 1959 + - uid: 2319 components: - type: Transform pos: -28.5,4.5 parent: 2 - - uid: 1960 + - uid: 2320 components: - type: Transform pos: -26.5,2.5 parent: 2 - - uid: 1961 + - uid: 2321 components: - type: Transform pos: -27.5,2.5 parent: 2 - - uid: 1962 + - uid: 2322 components: - type: Transform pos: -28.5,2.5 parent: 2 - - uid: 1963 + - uid: 2323 components: - type: Transform pos: 72.5,-38.5 parent: 2 - - uid: 1964 + - uid: 2324 components: - type: Transform pos: 72.5,-39.5 parent: 2 - - uid: 1965 + - uid: 2325 components: - type: Transform pos: 5.5,-71.5 parent: 2 - - uid: 1966 + - uid: 2326 components: - type: Transform pos: 29.5,-73.5 parent: 2 - - uid: 1967 + - uid: 2327 components: - type: Transform pos: 24.5,21.5 parent: 2 - - uid: 1968 + - uid: 2328 components: - type: Transform pos: -63.5,-14.5 parent: 2 - - uid: 1969 + - uid: 2329 components: - type: Transform pos: -58.5,-7.5 parent: 2 - - uid: 1970 + - uid: 2330 components: - type: Transform pos: -61.5,-8.5 parent: 2 - - uid: 1971 + - uid: 2331 components: - type: Transform pos: -51.5,-48.5 parent: 2 - - uid: 1972 + - uid: 2332 components: - type: Transform pos: 42.5,-71.5 parent: 2 - - uid: 1973 + - uid: 2333 components: - type: Transform pos: -31.5,-115.5 parent: 2 + - uid: 2334 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 - proto: BookShips entities: - - uid: 1974 + - uid: 2335 components: - type: Transform rot: 1.5707963267948966 rad @@ -34756,16 +35591,16 @@ entities: parent: 2 - proto: BookSpaceEncyclopedia entities: - - uid: 1911 + - uid: 2264 components: - type: Transform - parent: 1906 + parent: 2259 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BookZP entities: - - uid: 1975 + - uid: 2336 components: - type: Transform rot: 1.5707963267948966 rad @@ -34773,13 +35608,13 @@ entities: parent: 2 - proto: BoozeDispenser entities: - - uid: 1976 + - uid: 2337 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-103.5 parent: 2 - - uid: 1977 + - uid: 2338 components: - type: Transform rot: 1.5707963267948966 rad @@ -34787,156 +35622,168 @@ entities: parent: 2 - proto: BorgCharger entities: - - uid: 1167 + - uid: 2339 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,18.5 parent: 2 - - uid: 1978 + - uid: 2340 components: - type: Transform pos: 16.5,9.5 parent: 2 - - uid: 1979 + - uid: 2341 components: - type: Transform pos: -40.5,-54.5 parent: 2 - - uid: 1980 + - uid: 2342 components: - type: Transform pos: 46.5,-56.5 parent: 2 - - uid: 1982 + - uid: 2343 components: - type: Transform pos: -5.5,24.5 parent: 2 - - uid: 1985 + - uid: 2344 components: - type: Transform pos: 78.5,-42.5 parent: 2 - - uid: 1987 + - uid: 2345 components: - type: Transform pos: -51.5,-38.5 parent: 2 - - uid: 6949 + - uid: 2346 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,22.5 parent: 2 - - uid: 27023 + - uid: 2347 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,-80.5 parent: 2 - - uid: 27025 + - uid: 2348 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-80.5 parent: 2 + - uid: 2349 + components: + - type: Transform + pos: -15.5,-54.5 + parent: 2 - proto: BorgHypo entities: - - uid: 32335 + - uid: 2350 components: - type: Transform pos: -20.47115,-53.01083 parent: 2 - proto: BorgModuleAppraisal entities: - - uid: 1989 + - uid: 2351 components: - type: Transform pos: 39.513023,-35.460545 parent: 2 - proto: BorgModuleConstruction entities: - - uid: 1990 + - uid: 2352 components: - type: Transform pos: 37.485535,-35.57139 parent: 2 - proto: BorgModuleGardening entities: - - uid: 31048 + - uid: 2353 components: - type: Transform pos: -20.473213,-50.45624 parent: 2 - - uid: 31073 + - uid: 2354 components: - type: Transform pos: -20.551338,-50.26874 parent: 2 - proto: BorgModuleGPS entities: - - uid: 1991 + - uid: 2355 components: - type: Transform pos: 39.485535,-35.582695 parent: 2 - proto: BorgModuleSyndicateWeapon entities: - - uid: 41151 + - uid: 2357 components: - type: Transform - parent: 41150 + parent: 2356 - type: Physics canCollide: False - proto: BorgModuleTreatment entities: - - uid: 1995 + - uid: 2358 components: - type: Transform pos: 38.516785,-35.57139 parent: 2 - proto: BowImprovised entities: - - uid: 1997 + - uid: 2359 components: - type: Transform pos: 87.424194,-51.558376 parent: 2 +- proto: BoxAgrichem + entities: + - uid: 2360 + components: + - type: Transform + pos: -12.938774,-11.480915 + parent: 2 - proto: BoxBeaker entities: - - uid: 1998 + - uid: 2361 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.422134,0.54823375 parent: 2 - - uid: 1999 + - uid: 2362 components: - type: Transform pos: -36.495647,-30.854195 parent: 2 - - uid: 16762 + - uid: 2363 components: - type: Transform pos: -19.456879,-24.51964 parent: 2 - - uid: 22686 + - uid: 2365 components: - type: Transform - parent: 27632 + parent: 2364 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 34220 + - uid: 2366 components: - type: Transform pos: -7.5022693,-34.336086 parent: 2 - - uid: 37920 + - uid: 40861 components: - type: Transform - parent: 37919 + parent: 40860 - type: Physics canCollide: False - type: InsideEntityStorage @@ -34948,181 +35795,181 @@ entities: parent: 5 - type: Physics canCollide: False - - uid: 2585 + - uid: 2367 components: - type: Transform pos: 64.43619,-13.518286 parent: 2 - - uid: 9721 + - uid: 2368 components: - type: Transform pos: 64.660736,-13.636134 parent: 2 - - uid: 14663 + - uid: 2369 components: - type: Transform pos: 64.473236,-13.542384 parent: 2 - - uid: 14733 + - uid: 2370 components: - type: Transform pos: 64.566986,-13.464259 parent: 2 - proto: BoxBodyBag entities: - - uid: 2001 + - uid: 2371 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.515076,-71.44432 parent: 2 - - uid: 2003 + - uid: 2372 components: - type: Transform pos: -57.57521,-33.911556 parent: 2 - - uid: 2164 + - uid: 2373 components: - type: Transform pos: 83.52002,-10.368995 parent: 2 - - uid: 15363 + - uid: 2375 components: - type: Transform - parent: 23117 + parent: 2374 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BoxCardboard entities: - - uid: 2004 + - uid: 2376 components: - type: Transform pos: -57.461975,-90.50761 parent: 2 - - uid: 2005 + - uid: 2377 components: - type: Transform pos: -6.3427787,-78.29326 parent: 2 - - uid: 2006 + - uid: 2378 components: - type: Transform pos: -6.5615287,-78.29326 parent: 2 - - uid: 2007 + - uid: 2379 components: - type: Transform pos: -6.6084037,-78.44951 parent: 2 - - uid: 2008 + - uid: 2380 components: - type: Transform pos: -6.3584037,-78.41826 parent: 2 - proto: BoxEncryptionKeySecurity entities: - - uid: 17427 + - uid: 2381 components: - type: Transform pos: 52.55931,-19.423752 parent: 2 - proto: BoxEnvelope entities: - - uid: 2009 + - uid: 2382 components: - type: Transform pos: -6.8094883,-81.42239 parent: 2 - proto: BoxEvidenceMarkers entities: - - uid: 24879 + - uid: 2383 components: - type: Transform pos: 52.479095,-1.3634124 parent: 2 - proto: BoxFlare entities: - - uid: 34380 + - uid: 2384 components: - type: Transform pos: 1.5257382,-72.23268 parent: 2 - proto: BoxFlashbang entities: - - uid: 37924 + - uid: 40865 components: - type: Transform - parent: 37923 + parent: 40864 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BoxFolderBase entities: - - uid: 2010 + - uid: 2385 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.41605,-36.41392 parent: 2 - - uid: 2011 + - uid: 2386 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.4473,-40.335796 parent: 2 - - uid: 2012 + - uid: 2387 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.55752,-80.4934 parent: 2 - - uid: 2013 + - uid: 2388 components: - type: Transform rot: 3.141592653589793 rad pos: -38.443565,-69.30479 parent: 2 - - uid: 2014 + - uid: 2389 components: - type: Transform rot: 3.141592653589793 rad pos: -38.506065,-69.42979 parent: 2 - - uid: 2015 + - uid: 2390 components: - type: Transform pos: -53.573643,-54.326874 parent: 2 - - uid: 2016 + - uid: 2391 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.44268,-72.80207 parent: 2 - - uid: 2017 + - uid: 2392 components: - type: Transform rot: 3.141592653589793 rad pos: 24.576569,-75.45267 parent: 2 - - uid: 2018 + - uid: 2393 components: - type: Transform rot: 3.141592653589793 rad pos: 24.373444,-75.74954 parent: 2 - - uid: 2019 + - uid: 2394 components: - type: Transform pos: 28.668644,21.70553 parent: 2 - - uid: 2020 + - uid: 2395 components: - type: Transform pos: 28.637394,21.64303 parent: 2 - - uid: 15837 + - uid: 2396 components: - type: Transform rot: 3.141592653589793 rad @@ -35130,152 +35977,167 @@ entities: parent: 2 - proto: BoxFolderBlack entities: - - uid: 11766 + - uid: 2397 components: - type: Transform rot: 3.141592653589793 rad pos: 51.94131,-5.4253273 parent: 2 - - uid: 19626 + - uid: 2398 components: - type: Transform pos: 47.527016,-1.4603112 parent: 2 - proto: BoxFolderBlue entities: - - uid: 2022 + - uid: 2399 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5103712,8.586314 parent: 2 - - uid: 2023 + - uid: 2400 components: - type: Transform pos: 67.367485,-40.378437 parent: 2 - - uid: 2025 + - uid: 2401 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.43212,-76.08397 parent: 2 - - uid: 2026 + - uid: 2402 components: - type: Transform rot: 3.141592653589793 rad pos: -48.39883,-69.35176 parent: 2 - - uid: 2027 + - uid: 2403 components: - type: Transform pos: -37.5692,-7.324828 parent: 2 + - uid: 2404 + components: + - type: Transform + pos: -15.46695,5.6062393 + parent: 2 - proto: BoxFolderGreen entities: - - uid: 2028 + - uid: 2405 components: - type: Transform rot: 3.141592653589793 rad pos: -23.796177,6.575425 parent: 2 - - uid: 32765 + - uid: 2406 + components: + - type: Transform + pos: -11.572372,10.63357 + parent: 2 + - uid: 2407 components: - type: Transform pos: 48.664547,23.046537 parent: 2 + - uid: 2408 + components: + - type: Transform + pos: -15.326325,5.6531143 + parent: 2 - proto: BoxFolderRed entities: - - uid: 2030 + - uid: 2409 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.47532,-39.307426 parent: 2 - - uid: 2031 + - uid: 2410 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.6041212,8.492564 parent: 2 - - uid: 2032 + - uid: 2411 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.3833895,8.960969 parent: 2 - - uid: 2033 + - uid: 2412 components: - type: Transform rot: 3.141592653589793 rad pos: 66.53936,-37.409687 parent: 2 - - uid: 2040 + - uid: 2413 components: - type: Transform pos: 96.580284,-48.434948 parent: 2 - - uid: 9364 + - uid: 2414 components: - type: Transform pos: 55.893425,-0.35416603 parent: 2 - - uid: 11770 + - uid: 2415 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.518333,-5.0212097 parent: 2 - - uid: 14868 + - uid: 2416 components: - type: Transform pos: 47.193684,-1.4811444 parent: 2 - - uid: 22393 + - uid: 2417 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.48315,10.17467 parent: 2 - - uid: 23120 + - uid: 2418 components: - type: Transform pos: 41.662926,-26.38594 parent: 2 - - uid: 30899 + - uid: 2419 components: - type: Transform pos: 49.528618,-16.43555 parent: 2 - - uid: 37729 + - uid: 2420 components: - type: Transform pos: 52.421307,-9.368856 parent: 2 - proto: BoxFolderWhite entities: - - uid: 2043 + - uid: 2421 components: - type: Transform pos: -57.424854,-38.983818 parent: 2 - - uid: 2044 + - uid: 2422 components: - type: Transform pos: -49.49179,-19.525578 parent: 2 - - uid: 2045 + - uid: 2423 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.371857,-47.44203 parent: 2 - - uid: 2047 + - uid: 2424 components: - type: Transform pos: -37.397324,-7.465461 parent: 2 - - uid: 2048 + - uid: 2425 components: - type: Transform rot: 1.5707963267948966 rad @@ -35283,100 +36145,105 @@ entities: parent: 2 - proto: BoxFolderYellow entities: - - uid: 2049 + - uid: 2426 components: - type: Transform pos: 9.54801,-84.420845 parent: 2 - - uid: 2050 + - uid: 2427 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.43252,-80.39965 parent: 2 - - uid: 2051 + - uid: 2428 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.58487,-75.31221 parent: 2 - - uid: 2052 + - uid: 2429 components: - type: Transform pos: 96.37716,-48.341198 parent: 2 + - uid: 2430 + components: + - type: Transform + pos: -11.478622,10.836695 + parent: 2 - proto: BoxHandcuff entities: - - uid: 2634 + - uid: 2431 components: - type: Transform pos: 50.689316,-19.553104 parent: 2 - proto: BoxInflatable entities: - - uid: 38745 + - uid: 41691 components: - type: Transform - parent: 38744 + parent: 41690 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38746 + - uid: 41692 components: - type: Transform - parent: 38744 + parent: 41690 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BoxingBell entities: - - uid: 2055 + - uid: 2432 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-82.5 parent: 2 - - uid: 27866 + - uid: 2433 components: - type: Transform pos: 82.5,-3.5 parent: 2 - proto: BoxLatexGloves entities: - - uid: 2057 + - uid: 2434 components: - type: Transform pos: -45.38558,-11.439349 parent: 2 - proto: BoxLethalshot entities: - - uid: 33561 + - uid: 2436 components: - type: Transform - parent: 11053 + parent: 2435 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 40500 + - uid: 2438 components: - type: Transform pos: 62.50728,-19.37411 parent: 2 - - uid: 40502 + - uid: 2439 components: - type: Transform pos: 62.491653,-19.420984 parent: 2 - proto: BoxLightbulb entities: - - uid: 2066 + - uid: 2440 components: - type: Transform pos: 42.45424,-65.650085 parent: 2 - proto: BoxLightMixed entities: - - uid: 2067 + - uid: 2441 components: - type: Transform rot: -1.5707963267948966 rad @@ -35384,306 +36251,306 @@ entities: parent: 2 - proto: BoxLighttube entities: - - uid: 2068 + - uid: 2442 components: - type: Transform pos: 42.588966,-65.43688 parent: 2 - proto: BoxMagazinePistolSubMachineGun entities: - - uid: 37937 + - uid: 40878 components: - type: Transform pos: 5.8163605,-10.372559 - parent: 37887 + parent: 40828 - proto: BoxMagazinePistolSubMachineGunPractice entities: - - uid: 40793 + - uid: 2443 components: - type: Transform pos: 59.364346,7.544323 parent: 2 - proto: BoxMagazineRifle entities: - - uid: 37939 + - uid: 40880 components: - type: Transform - parent: 37938 + parent: 40879 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BoxMagazineRiflePractice entities: - - uid: 17552 + - uid: 2444 components: - type: Transform pos: 59.62997,7.591198 parent: 2 - proto: BoxMagazineShotgun entities: - - uid: 37943 + - uid: 40884 components: - type: Transform pos: 4.6796875,-13.509033 - parent: 37887 + parent: 40828 - proto: BoxMesonScanners entities: - - uid: 2075 + - uid: 2445 components: - type: Transform pos: 47.666763,-60.43458 parent: 2 - proto: BoxMouthSwab entities: - - uid: 2076 + - uid: 2446 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.61387,15.57678 parent: 2 - - uid: 2077 + - uid: 2447 components: - type: Transform pos: -52.55665,-2.4658375 parent: 2 - - uid: 30712 + - uid: 2448 components: - type: Transform pos: -11.47884,-35.379707 parent: 2 - proto: BoxMRE entities: - - uid: 2084 + - uid: 2450 components: - type: Transform - parent: 2083 + parent: 2449 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 2085 + - uid: 2451 components: - type: Transform - parent: 2083 + parent: 2449 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 2087 + - uid: 2453 components: - type: Transform - parent: 2086 + parent: 2452 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 2088 + - uid: 2454 components: - type: Transform pos: 24.438826,-81.37048 parent: 2 - - uid: 2727 + - uid: 2455 components: - type: Transform pos: 46.582703,0.6301923 parent: 2 - - uid: 9366 + - uid: 2456 components: - type: Transform pos: 46.582703,3.5676923 parent: 2 - - uid: 15299 + - uid: 2457 components: - type: Transform pos: 39.442078,1.6458161 parent: 2 - - uid: 15322 + - uid: 2458 components: - type: Transform pos: 39.551453,4.552066 parent: 2 - - uid: 15661 + - uid: 2459 components: - type: Transform rot: 6.283185307179586 rad pos: 46.71344,8.654755 parent: 2 - - uid: 17347 + - uid: 2460 components: - type: Transform pos: 46.388924,8.546074 parent: 2 - - uid: 18291 + - uid: 2461 components: - type: Transform rot: 6.283185307179586 rad pos: 46.291565,8.73288 parent: 2 - - uid: 29246 + - uid: 2462 components: - type: Transform pos: 77.44954,0.55435777 parent: 2 - - uid: 29247 + - uid: 2463 components: - type: Transform pos: 81.71503,0.57001495 parent: 2 - - uid: 29248 + - uid: 2464 components: - type: Transform pos: 85.41815,0.53876495 parent: 2 - - uid: 30890 + - uid: 2465 components: - type: Transform pos: 45.503265,-7.395544 parent: 2 - - uid: 36073 + - uid: 2466 components: - type: Transform pos: 48.5,-7.5 parent: 2 - - uid: 37944 + - uid: 40885 components: - type: Transform pos: -1.5990448,-6.3531494 - parent: 37887 - - uid: 37945 + parent: 40828 + - uid: 40886 components: - type: Transform pos: -1.432373,-6.4503784 - parent: 37887 - - uid: 37946 + parent: 40828 + - uid: 40887 components: - type: Transform pos: -1.557373,-6.533722 - parent: 37887 - - uid: 38757 + parent: 40828 + - uid: 41703 components: - type: Transform pos: 4.606964,-4.2579346 - parent: 38722 - - uid: 38758 + parent: 41669 + - uid: 41704 components: - type: Transform pos: 4.497589,-4.3673096 - parent: 38722 + parent: 41669 - proto: BoxPillCanister entities: - - uid: 2095 + - uid: 2467 components: - type: Transform pos: -45.546463,-11.270052 parent: 2 - - uid: 37921 + - uid: 40862 components: - type: Transform - parent: 37919 + parent: 40860 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BoxSechud entities: - - uid: 2631 + - uid: 2468 components: - type: Transform pos: 50.376816,-19.50623 parent: 2 - proto: BoxShellTranquilizer entities: - - uid: 1649 + - uid: 2470 components: - type: Transform - parent: 1593 + parent: 2469 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BoxShotgunIncendiary entities: - - uid: 40503 + - uid: 2472 components: - type: Transform pos: 62.50728,-19.452234 parent: 2 - proto: BoxShotgunPractice entities: - - uid: 22688 + - uid: 2473 components: - type: Transform pos: 59.489346,7.638073 parent: 2 - proto: BoxShotgunSlug entities: - - uid: 40501 + - uid: 2474 components: - type: Transform pos: 62.491653,-19.420984 parent: 2 - proto: BoxSterileMask entities: - - uid: 16247 + - uid: 2476 components: - type: Transform - parent: 16246 + parent: 2475 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 19600 + - uid: 2492 components: - type: Transform pos: 62.492535,-2.0434687 parent: 2 - proto: BoxSyringe entities: - - uid: 2096 + - uid: 2493 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.584824,-13.453436 parent: 2 - - uid: 2097 + - uid: 2494 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.861122,-15.441466 parent: 2 - - uid: 9688 + - uid: 2495 components: - type: Transform pos: 62.492535,-2.3247187 parent: 2 - proto: BrbSign entities: - - uid: 2098 + - uid: 2496 components: - type: Transform pos: -3.4886603,7.4969273 parent: 2 - proto: BriefcaseBrown entities: - - uid: 2099 + - uid: 2497 components: - type: Transform rot: 3.141592653589793 rad pos: -31.750402,-96.181984 parent: 2 - - uid: 14744 + - uid: 2498 components: - type: Transform pos: 46.51009,-2.3415952 parent: 2 - - uid: 31656 + - uid: 2499 components: - type: Transform pos: 48.49433,15.88633 parent: 2 - proto: BriefcaseBrownFilled entities: - - uid: 2100 + - uid: 2500 components: - type: Transform rot: 3.141592653589793 rad pos: 66.617485,-40.446655 parent: 2 - - uid: 2103 + - uid: 2501 components: - type: Transform rot: 3.141592653589793 rad @@ -35691,27 +36558,27 @@ entities: parent: 2 - proto: BrigmedicPDA entities: - - uid: 2105 + - uid: 1374 components: - type: Transform - parent: 2104 + parent: 1372 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BrigTimer entities: - - uid: 2114 + - uid: 2502 components: - type: Transform pos: 30.5,-80.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 37060: + 39766: - Start: Close - Timer: AutoClose - Timer: Open - - uid: 6023 + - uid: 2503 components: - type: Transform rot: -1.5707963267948966 rad @@ -35719,16 +36586,16 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 19525: + 39836: - Timer: Open - Timer: AutoClose - - uid: 18774 + - uid: 2504 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,7.5 parent: 2 - - uid: 19541 + - uid: 2505 components: - type: Transform rot: -1.5707963267948966 rad @@ -35736,10 +36603,10 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 815: + 39824: - Timer: Open - Timer: AutoClose - - uid: 19546 + - uid: 2506 components: - type: Transform rot: -1.5707963267948966 rad @@ -35747,13 +36614,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 15533: + 39834: - Timer: Open - Timer: AutoClose - 2820: + 39827: - Timer: Open - Timer: AutoClose - - uid: 19627 + - uid: 2507 components: - type: Transform rot: -1.5707963267948966 rad @@ -35761,56 +36628,44 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 11078: + 39829: - Timer: Open - Timer: AutoClose - 11080: + 39831: - Timer: Open - Timer: AutoClose - - uid: 36098 + - uid: 2508 components: - type: Transform pos: 46.5,-10.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 36798: + 890: - Timer: Open - - uid: 36099 + - uid: 2509 components: - type: Transform pos: 46.5,-11.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 36798: + 890: - Timer: Open - - uid: 37840 + - uid: 2510 components: - type: Transform pos: 53.5,-12.5 parent: 2 - proto: BrokenBottle entities: - - uid: 2116 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.257774,16.671791 - parent: 2 - - uid: 2117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.726523,15.26554 - parent: 2 - - uid: 2118 + - uid: 2511 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.75842,-15.684824 parent: 2 - - uid: 2119 + - uid: 2512 components: - type: Transform rot: -1.5707963267948966 rad @@ -35818,29 +36673,65 @@ entities: parent: 2 - proto: BruteAutoInjector entities: - - uid: 2127 + - uid: 2514 components: - type: Transform - parent: 2126 + parent: 2513 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 4821 + - uid: 2516 components: - type: Transform - parent: 15614 + parent: 2515 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 2521 + components: + - type: Transform + parent: 2520 + - type: Physics + canCollide: False + - uid: 2528 + components: + - type: Transform + parent: 2527 + - type: Physics + canCollide: False + - uid: 2535 + components: + - type: Transform + parent: 2534 + - type: Physics + canCollide: False - proto: Brutepack entities: - - uid: 2129 + - uid: 2522 + components: + - type: Transform + parent: 2520 + - type: Physics + canCollide: False + - uid: 2529 + components: + - type: Transform + parent: 2527 + - type: Physics + canCollide: False + - uid: 2536 + components: + - type: Transform + parent: 2534 + - type: Physics + canCollide: False + - uid: 2541 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.436607,-23.321514 parent: 2 - - uid: 2131 + - uid: 2542 components: - type: Transform rot: -1.5707963267948966 rad @@ -35848,161 +36739,179 @@ entities: parent: 2 - proto: Bucket entities: - - uid: 2132 + - uid: 2543 components: - type: Transform pos: -68.5,-18.5 parent: 2 - - uid: 2135 + - uid: 2544 components: - type: Transform pos: -6.5,-72.5 parent: 2 - - uid: 2136 + - uid: 2545 components: - type: Transform pos: 9.50214,-1.450314 parent: 2 - - uid: 2137 + - uid: 2546 components: - type: Transform pos: 34.23893,10.1593075 parent: 2 - - uid: 2138 + - uid: 2547 components: - type: Transform pos: 9.330265,-1.340939 parent: 2 - - uid: 2139 + - uid: 2548 components: - type: Transform rot: 3.141592653589793 rad pos: -66.62547,-7.7734404 parent: 2 - - uid: 2140 + - uid: 2549 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.35985,-8.164065 parent: 2 - - uid: 2141 + - uid: 2550 components: - type: Transform rot: 3.141592653589793 rad pos: -66.6411,-8.826161 parent: 2 - - uid: 2142 + - uid: 2551 components: - type: Transform pos: -57.5,-31.5 parent: 2 - - uid: 2760 + - uid: 2553 components: - type: Transform - parent: 2698 + parent: 2552 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 6038 + - uid: 2557 components: - type: Transform pos: 42.624294,10.444612 parent: 2 - - uid: 30507 + - uid: 2558 components: - type: Transform pos: 73.53175,1.577987 parent: 2 - - uid: 40804 + - uid: 2560 components: - type: Transform - parent: 40794 + parent: 2559 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BurnAutoInjector entities: - - uid: 32599 + - uid: 2570 components: - type: Transform pos: -17.529854,-32.515293 parent: 2 - - uid: 40954 + - uid: 2572 + components: + - type: Transform + parent: 2571 + - type: Physics + canCollide: False + - uid: 2578 + components: + - type: Transform + parent: 2577 + - type: Physics + canCollide: False + - uid: 2584 + components: + - type: Transform + parent: 2583 + - type: Physics + canCollide: False + - uid: 2589 components: - type: Transform pos: -15.613848,-38.614536 parent: 2 - proto: ButtonFrameCaution entities: - - uid: 29002 + - uid: 2590 components: - type: Transform pos: 15.503534,-12.20609 parent: 2 - - uid: 40821 + - uid: 40674 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5232277,3.4956818 - parent: 21045 + parent: 40666 - proto: ButtonFrameCautionSecurity entities: - - uid: 2145 + - uid: 2591 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.2179623,16.508371 parent: 2 - - uid: 9755 + - uid: 2592 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-15.5 parent: 2 - - uid: 14447 + - uid: 2593 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-14.5 parent: 2 - - uid: 17919 + - uid: 2594 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-16.5 parent: 2 - - uid: 28871 + - uid: 2595 components: - type: Transform pos: 20.48664,-15.196688 parent: 2 - - uid: 37726 + - uid: 2596 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,13.3 parent: 2 - - uid: 37947 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.517624,-6.217499 - parent: 37887 - - uid: 40450 + - uid: 2597 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-12.5 parent: 2 + - uid: 40888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.517624,-6.217499 + parent: 40828 - proto: ButtonFrameGrey entities: - - uid: 37828 + - uid: 2598 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-9.5 parent: 2 - - uid: 40449 + - uid: 2599 components: - type: Transform rot: -1.5707963267948966 rad @@ -36010,48 +36919,48 @@ entities: parent: 2 - proto: ButtonFrameJanitor entities: - - uid: 2146 + - uid: 2600 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,11.5 parent: 2 - - uid: 2147 + - uid: 2601 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-78.5 parent: 2 - - uid: 2149 + - uid: 2602 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-45.5 parent: 2 - - uid: 2150 + - uid: 2603 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-45.5 parent: 2 - - uid: 2151 + - uid: 2604 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-34.5 parent: 2 - - uid: 2152 + - uid: 2605 components: - type: Transform pos: -24.5,2.5 parent: 2 - - uid: 2153 + - uid: 2606 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-6.5 parent: 2 - - uid: 40780 + - uid: 2607 components: - type: Transform rot: 3.141592653589793 rad @@ -36059,26588 +36968,26668 @@ entities: parent: 2 - proto: CableApcExtension entities: - - uid: 47 + - uid: 2608 components: - type: Transform pos: 50.5,11.5 parent: 2 - - uid: 239 + - uid: 2609 components: - type: Transform pos: -58.5,-25.5 parent: 2 - - uid: 281 + - uid: 2610 components: - type: Transform pos: 66.5,8.5 parent: 2 - - uid: 282 + - uid: 2611 components: - type: Transform pos: 66.5,9.5 parent: 2 - - uid: 381 + - uid: 2612 components: - type: Transform pos: 49.5,-14.5 parent: 2 - - uid: 724 + - uid: 2613 components: - type: Transform pos: 65.5,-12.5 parent: 2 - - uid: 750 + - uid: 2614 components: - type: Transform pos: 60.5,4.5 parent: 2 - - uid: 751 + - uid: 2615 components: - type: Transform pos: 57.5,5.5 parent: 2 - - uid: 1573 + - uid: 2616 components: - type: Transform pos: -61.5,-17.5 parent: 2 - - uid: 1652 + - uid: 2617 components: - type: Transform pos: 57.5,-12.5 parent: 2 - - uid: 1709 + - uid: 2618 components: - type: Transform pos: 48.5,-18.5 parent: 2 - - uid: 1710 + - uid: 2619 components: - type: Transform pos: 49.5,-18.5 parent: 2 - - uid: 1725 + - uid: 2620 components: - type: Transform pos: 65.5,-17.5 parent: 2 - - uid: 1732 + - uid: 2621 components: - type: Transform pos: 62.5,-17.5 parent: 2 - - uid: 1734 + - uid: 2622 components: - type: Transform pos: 63.5,-17.5 parent: 2 - - uid: 1737 + - uid: 2623 components: - type: Transform pos: 64.5,-17.5 parent: 2 - - uid: 1757 + - uid: 2624 components: - type: Transform pos: 46.5,-4.5 parent: 2 - - uid: 1763 + - uid: 2625 components: - type: Transform pos: -58.5,-24.5 parent: 2 - - uid: 1828 + - uid: 2626 components: - type: Transform pos: 47.5,-4.5 parent: 2 - - uid: 1865 + - uid: 2627 components: - type: Transform pos: 48.5,-4.5 parent: 2 - - uid: 2070 + - uid: 2628 components: - type: Transform pos: 51.5,-18.5 parent: 2 - - uid: 2072 + - uid: 2629 components: - type: Transform pos: 51.5,-4.5 parent: 2 - - uid: 2074 + - uid: 2630 components: - type: Transform pos: 51.5,-3.5 parent: 2 - - uid: 2154 + - uid: 2631 components: - type: Transform pos: 24.5,13.5 parent: 2 - - uid: 2155 + - uid: 2632 components: - type: Transform pos: 34.5,34.5 parent: 2 - - uid: 2156 + - uid: 2633 components: - type: Transform pos: 35.5,-7.5 parent: 2 - - uid: 2157 + - uid: 2634 components: - type: Transform pos: -74.5,3.5 parent: 2 - - uid: 2158 + - uid: 2635 components: - type: Transform pos: 76.5,-49.5 parent: 2 - - uid: 2159 + - uid: 2636 components: - type: Transform pos: 78.5,-48.5 parent: 2 - - uid: 2160 + - uid: 2637 components: - type: Transform pos: -50.5,-72.5 parent: 2 - - uid: 2161 + - uid: 2638 components: - type: Transform pos: 66.5,-49.5 parent: 2 - - uid: 2162 + - uid: 2639 components: - type: Transform pos: 33.5,-14.5 parent: 2 - - uid: 2163 + - uid: 2640 components: - type: Transform pos: 47.5,-95.5 parent: 2 - - uid: 2165 + - uid: 2641 components: - type: Transform pos: 52.5,11.5 parent: 2 - - uid: 2166 + - uid: 2642 components: - type: Transform pos: -50.5,-40.5 parent: 2 - - uid: 2167 + - uid: 2643 components: - type: Transform pos: 88.5,-48.5 parent: 2 - - uid: 2168 + - uid: 2644 components: - type: Transform pos: -19.5,-98.5 parent: 2 - - uid: 2169 + - uid: 2645 components: - type: Transform pos: 37.5,-17.5 parent: 2 - - uid: 2170 + - uid: 2646 components: - type: Transform pos: 56.5,-90.5 parent: 2 - - uid: 2171 + - uid: 2647 components: - type: Transform pos: -40.5,-100.5 parent: 2 - - uid: 2172 + - uid: 2648 components: - type: Transform pos: -40.5,-98.5 parent: 2 - - uid: 2173 + - uid: 2649 components: - type: Transform pos: -40.5,-102.5 parent: 2 - - uid: 2174 + - uid: 2650 components: - type: Transform pos: -37.5,-98.5 parent: 2 - - uid: 2175 + - uid: 2651 components: - type: Transform pos: -37.5,-103.5 parent: 2 - - uid: 2176 + - uid: 2652 components: - type: Transform pos: 22.5,-84.5 parent: 2 - - uid: 2177 + - uid: 2653 components: - type: Transform pos: 17.5,-99.5 parent: 2 - - uid: 2178 + - uid: 2654 components: - type: Transform pos: 30.5,18.5 parent: 2 - - uid: 2179 + - uid: 2655 components: - type: Transform pos: 23.5,18.5 parent: 2 - - uid: 2180 + - uid: 2656 components: - type: Transform pos: 22.5,-85.5 parent: 2 - - uid: 2181 + - uid: 2657 components: - type: Transform pos: -39.5,10.5 parent: 2 - - uid: 2182 + - uid: 2658 components: - type: Transform pos: -39.5,9.5 parent: 2 - - uid: 2183 + - uid: 2659 components: - type: Transform pos: -64.5,-57.5 parent: 2 - - uid: 2184 + - uid: 2660 components: - type: Transform pos: -49.5,9.5 parent: 2 - - uid: 2185 + - uid: 2661 components: - type: Transform pos: 64.5,-77.5 parent: 2 - - uid: 2186 + - uid: 2662 components: - type: Transform pos: 44.5,-92.5 parent: 2 - - uid: 2187 + - uid: 2663 components: - type: Transform pos: 44.5,-91.5 parent: 2 - - uid: 2188 + - uid: 2664 components: - type: Transform pos: 45.5,-110.5 parent: 2 - - uid: 2189 + - uid: 2665 components: - type: Transform pos: 64.5,-78.5 parent: 2 - - uid: 2190 + - uid: 2666 components: - type: Transform pos: 64.5,-79.5 parent: 2 - - uid: 2191 + - uid: 2667 components: - type: Transform pos: 70.5,-82.5 parent: 2 - - uid: 2192 + - uid: 2668 components: - type: Transform pos: 76.5,-87.5 parent: 2 - - uid: 2193 + - uid: 2669 components: - type: Transform pos: 66.5,-82.5 parent: 2 - - uid: 2194 + - uid: 2670 components: - type: Transform pos: 72.5,-82.5 parent: 2 - - uid: 2195 + - uid: 2671 components: - type: Transform pos: 64.5,-80.5 parent: 2 - - uid: 2196 + - uid: 2672 components: - type: Transform pos: 53.5,-86.5 parent: 2 - - uid: 2198 + - uid: 2673 components: - type: Transform pos: 52.5,-87.5 parent: 2 - - uid: 2200 + - uid: 2674 components: - type: Transform pos: -27.5,-96.5 parent: 2 - - uid: 2201 + - uid: 2675 components: - type: Transform pos: 53.5,-85.5 parent: 2 - - uid: 2202 + - uid: 2676 components: - type: Transform pos: 54.5,-88.5 parent: 2 - - uid: 2203 + - uid: 2677 components: - type: Transform pos: 65.5,-82.5 parent: 2 - - uid: 2204 + - uid: 2678 components: - type: Transform pos: 73.5,-82.5 parent: 2 - - uid: 2205 + - uid: 2679 components: - type: Transform pos: 64.5,-68.5 parent: 2 - - uid: 2206 + - uid: 2680 components: - type: Transform pos: 50.5,-94.5 parent: 2 - - uid: 2207 + - uid: 2681 components: - type: Transform pos: 56.5,-89.5 parent: 2 - - uid: 2208 + - uid: 2682 components: - type: Transform pos: 51.5,-87.5 parent: 2 - - uid: 2209 + - uid: 2683 components: - type: Transform pos: 50.5,-92.5 parent: 2 - - uid: 2210 + - uid: 2684 components: - type: Transform pos: -67.5,-51.5 parent: 2 - - uid: 2211 + - uid: 2685 components: - type: Transform pos: 50.5,-89.5 parent: 2 - - uid: 2212 + - uid: 2686 components: - type: Transform pos: 50.5,-88.5 parent: 2 - - uid: 2215 + - uid: 2687 components: - type: Transform pos: 30.5,17.5 parent: 2 - - uid: 2216 + - uid: 2688 components: - type: Transform pos: 79.5,-32.5 parent: 2 - - uid: 2217 + - uid: 2689 components: - type: Transform pos: 66.5,-59.5 parent: 2 - - uid: 2218 + - uid: 2690 components: - type: Transform pos: -55.5,-84.5 parent: 2 - - uid: 2219 + - uid: 2691 components: - type: Transform pos: -55.5,-85.5 parent: 2 - - uid: 2220 + - uid: 2692 components: - type: Transform pos: -55.5,-86.5 parent: 2 - - uid: 2221 + - uid: 2693 components: - type: Transform pos: -56.5,-86.5 parent: 2 - - uid: 2222 + - uid: 2694 components: - type: Transform pos: -57.5,-86.5 parent: 2 - - uid: 2223 + - uid: 2695 components: - type: Transform pos: -58.5,-86.5 parent: 2 - - uid: 2224 + - uid: 2696 components: - type: Transform pos: -59.5,-86.5 parent: 2 - - uid: 2225 + - uid: 2697 components: - type: Transform pos: -60.5,-86.5 parent: 2 - - uid: 2226 + - uid: 2698 components: - type: Transform pos: 66.5,-36.5 parent: 2 - - uid: 2227 + - uid: 2699 components: - type: Transform pos: 65.5,-36.5 parent: 2 - - uid: 2228 + - uid: 2700 components: - type: Transform pos: 71.5,-38.5 parent: 2 - - uid: 2229 + - uid: 2701 components: - type: Transform pos: 62.5,-37.5 parent: 2 - - uid: 2230 + - uid: 2702 components: - type: Transform pos: 67.5,-36.5 parent: 2 - - uid: 2231 + - uid: 2703 components: - type: Transform pos: 71.5,-40.5 parent: 2 - - uid: 2232 + - uid: 2704 components: - type: Transform pos: 67.5,-41.5 parent: 2 - - uid: 2233 + - uid: 2705 components: - type: Transform pos: 62.5,-40.5 parent: 2 - - uid: 2234 + - uid: 2706 components: - type: Transform pos: 62.5,-36.5 parent: 2 - - uid: 2235 + - uid: 2707 components: - type: Transform pos: 62.5,-38.5 parent: 2 - - uid: 2236 + - uid: 2708 components: - type: Transform pos: 62.5,-39.5 parent: 2 - - uid: 2237 + - uid: 2709 components: - type: Transform pos: 63.5,-36.5 parent: 2 - - uid: 2238 + - uid: 2710 components: - type: Transform pos: 64.5,-36.5 parent: 2 - - uid: 2239 + - uid: 2711 components: - type: Transform pos: 65.5,-41.5 parent: 2 - - uid: 2240 + - uid: 2712 components: - type: Transform pos: 71.5,-41.5 parent: 2 - - uid: 2241 + - uid: 2713 components: - type: Transform pos: 69.5,-36.5 parent: 2 - - uid: 2242 + - uid: 2714 components: - type: Transform pos: 71.5,-35.5 parent: 2 - - uid: 2243 + - uid: 2715 components: - type: Transform pos: 66.5,-41.5 parent: 2 - - uid: 2244 + - uid: 2716 components: - type: Transform pos: 69.5,-41.5 parent: 2 - - uid: 2245 + - uid: 2717 components: - type: Transform pos: 68.5,-36.5 parent: 2 - - uid: 2246 + - uid: 2718 components: - type: Transform pos: 71.5,-34.5 parent: 2 - - uid: 2247 + - uid: 2719 components: - type: Transform pos: 63.5,-41.5 parent: 2 - - uid: 2248 + - uid: 2720 components: - type: Transform pos: 71.5,-39.5 parent: 2 - - uid: 2249 + - uid: 2721 components: - type: Transform pos: 70.5,-36.5 parent: 2 - - uid: 2250 + - uid: 2722 components: - type: Transform pos: 71.5,-37.5 parent: 2 - - uid: 2251 + - uid: 2723 components: - type: Transform pos: 64.5,-41.5 parent: 2 - - uid: 2252 + - uid: 2724 components: - type: Transform pos: 70.5,-41.5 parent: 2 - - uid: 2253 + - uid: 2725 components: - type: Transform pos: 71.5,-36.5 parent: 2 - - uid: 2254 + - uid: 2726 components: - type: Transform pos: 62.5,-41.5 parent: 2 - - uid: 2255 + - uid: 2727 components: - type: Transform pos: 68.5,-41.5 parent: 2 - - uid: 2256 + - uid: 2728 components: - type: Transform pos: 67.5,-59.5 parent: 2 - - uid: 2257 + - uid: 2729 components: - type: Transform pos: -67.5,-52.5 parent: 2 - - uid: 2258 + - uid: 2730 components: - type: Transform pos: -42.5,2.5 parent: 2 - - uid: 2259 + - uid: 2731 components: - type: Transform pos: 25.5,16.5 parent: 2 - - uid: 2260 + - uid: 2732 components: - type: Transform pos: 74.5,-82.5 parent: 2 - - uid: 2261 + - uid: 2733 components: - type: Transform pos: 71.5,-82.5 parent: 2 - - uid: 2262 + - uid: 2734 components: - type: Transform pos: 64.5,-81.5 parent: 2 - - uid: 2263 + - uid: 2735 components: - type: Transform pos: 66.5,-68.5 parent: 2 - - uid: 2264 + - uid: 2736 components: - type: Transform pos: 65.5,-68.5 parent: 2 - - uid: 2265 + - uid: 2737 components: - type: Transform pos: 64.5,-69.5 parent: 2 - - uid: 2266 + - uid: 2738 components: - type: Transform pos: 64.5,-70.5 parent: 2 - - uid: 2267 + - uid: 2739 components: - type: Transform pos: 64.5,-71.5 parent: 2 - - uid: 2268 + - uid: 2740 components: - type: Transform pos: 64.5,-72.5 parent: 2 - - uid: 2269 + - uid: 2741 components: - type: Transform pos: 76.5,-82.5 parent: 2 - - uid: 2270 + - uid: 2742 components: - type: Transform pos: 76.5,-83.5 parent: 2 - - uid: 2271 + - uid: 2743 components: - type: Transform pos: 76.5,-84.5 parent: 2 - - uid: 2273 + - uid: 2744 components: - type: Transform pos: 68.5,-82.5 parent: 2 - - uid: 2274 + - uid: 2745 components: - type: Transform pos: 75.5,-82.5 parent: 2 - - uid: 2276 + - uid: 2746 components: - type: Transform pos: 69.5,-82.5 parent: 2 - - uid: 2277 + - uid: 2747 components: - type: Transform pos: -38.5,-98.5 parent: 2 - - uid: 2278 + - uid: 2748 components: - type: Transform pos: -40.5,-99.5 parent: 2 - - uid: 2279 + - uid: 2749 components: - type: Transform pos: 76.5,-85.5 parent: 2 - - uid: 2280 + - uid: 2750 components: - type: Transform pos: 54.5,-87.5 parent: 2 - - uid: 2281 + - uid: 2751 components: - type: Transform pos: 50.5,-87.5 parent: 2 - - uid: 2282 + - uid: 2752 components: - type: Transform pos: 64.5,-76.5 parent: 2 - - uid: 2283 + - uid: 2753 components: - type: Transform pos: 64.5,-74.5 parent: 2 - - uid: 2284 + - uid: 2754 components: - type: Transform pos: 64.5,-73.5 parent: 2 - - uid: 2285 + - uid: 2755 components: - type: Transform pos: 64.5,-75.5 parent: 2 - - uid: 2286 + - uid: 2756 components: - type: Transform pos: -67.5,-53.5 parent: 2 - - uid: 2287 + - uid: 2757 components: - type: Transform pos: -64.5,-58.5 parent: 2 - - uid: 2288 + - uid: 2758 components: - type: Transform pos: 53.5,-87.5 parent: 2 - - uid: 2290 + - uid: 2759 components: - type: Transform pos: 24.5,16.5 parent: 2 - - uid: 2291 + - uid: 2760 components: - type: Transform pos: 39.5,-107.5 parent: 2 - - uid: 2292 + - uid: 2761 components: - type: Transform pos: -30.5,-43.5 parent: 2 - - uid: 2293 + - uid: 2762 components: - type: Transform pos: -29.5,-43.5 parent: 2 - - uid: 2294 + - uid: 2763 components: - type: Transform pos: -28.5,-43.5 parent: 2 - - uid: 2295 + - uid: 2764 components: - type: Transform pos: -27.5,-43.5 parent: 2 - - uid: 2296 + - uid: 2765 components: - type: Transform pos: -26.5,-43.5 parent: 2 - - uid: 2297 + - uid: 2766 components: - type: Transform pos: -25.5,-43.5 parent: 2 - - uid: 2298 + - uid: 2767 components: - type: Transform pos: -69.5,-73.5 parent: 2 - - uid: 2299 + - uid: 2768 components: - type: Transform pos: 42.5,-110.5 parent: 2 - - uid: 2300 + - uid: 2769 components: - type: Transform pos: 7.5,-94.5 parent: 2 - - uid: 2302 + - uid: 2770 components: - type: Transform pos: -16.5,-95.5 parent: 2 - - uid: 2303 + - uid: 2771 components: - type: Transform pos: 107.5,-39.5 parent: 2 - - uid: 2312 + - uid: 2772 components: - type: Transform pos: 26.5,-39.5 parent: 2 - - uid: 2315 + - uid: 2773 components: - type: Transform pos: 65.5,-52.5 parent: 2 - - uid: 2316 + - uid: 2774 components: - type: Transform pos: 65.5,-53.5 parent: 2 - - uid: 2317 + - uid: 2775 components: - type: Transform pos: 65.5,-54.5 parent: 2 - - uid: 2318 + - uid: 2776 components: - type: Transform pos: 65.5,-55.5 parent: 2 - - uid: 2319 + - uid: 2777 components: - type: Transform pos: 65.5,-56.5 parent: 2 - - uid: 2320 + - uid: 2778 components: - type: Transform pos: 65.5,-57.5 parent: 2 - - uid: 2321 + - uid: 2779 components: - type: Transform pos: 65.5,-58.5 parent: 2 - - uid: 2322 + - uid: 2780 components: - type: Transform pos: 65.5,-59.5 parent: 2 - - uid: 2323 + - uid: 2781 components: - type: Transform pos: 65.5,-60.5 parent: 2 - - uid: 2324 + - uid: 2782 components: - type: Transform pos: 65.5,-61.5 parent: 2 - - uid: 2325 + - uid: 2783 components: - type: Transform pos: 65.5,-62.5 parent: 2 - - uid: 2326 + - uid: 2784 components: - type: Transform pos: 66.5,-62.5 parent: 2 - - uid: 2327 + - uid: 2785 components: - type: Transform pos: 66.5,-63.5 parent: 2 - - uid: 2328 + - uid: 2786 components: - type: Transform pos: 66.5,-64.5 parent: 2 - - uid: 2329 + - uid: 2787 components: - type: Transform pos: 66.5,-65.5 parent: 2 - - uid: 2330 + - uid: 2788 components: - type: Transform pos: 64.5,-58.5 parent: 2 - - uid: 2331 + - uid: 2789 components: - type: Transform pos: 63.5,-58.5 parent: 2 - - uid: 2332 + - uid: 2790 components: - type: Transform pos: 62.5,-58.5 parent: 2 - - uid: 2333 + - uid: 2791 components: - type: Transform pos: 61.5,-58.5 parent: 2 - - uid: 2334 + - uid: 2792 components: - type: Transform pos: 60.5,-58.5 parent: 2 - - uid: 2335 + - uid: 2793 components: - type: Transform pos: 59.5,-58.5 parent: 2 - - uid: 2336 + - uid: 2794 components: - type: Transform pos: 58.5,-58.5 parent: 2 - - uid: 2337 + - uid: 2795 components: - type: Transform pos: 57.5,-58.5 parent: 2 - - uid: 2338 + - uid: 2796 components: - type: Transform pos: 56.5,-58.5 parent: 2 - - uid: 2339 + - uid: 2797 components: - type: Transform pos: 55.5,-58.5 parent: 2 - - uid: 2340 + - uid: 2798 components: - type: Transform pos: 64.5,-62.5 parent: 2 - - uid: 2341 + - uid: 2799 components: - type: Transform pos: 64.5,-63.5 parent: 2 - - uid: 2342 + - uid: 2800 components: - type: Transform pos: 50.5,-47.5 parent: 2 - - uid: 2343 + - uid: 2801 components: - type: Transform pos: 49.5,-47.5 parent: 2 - - uid: 2344 + - uid: 2802 components: - type: Transform pos: 48.5,-47.5 parent: 2 - - uid: 2345 + - uid: 2803 components: - type: Transform pos: 48.5,-48.5 parent: 2 - - uid: 2346 + - uid: 2804 components: - type: Transform pos: 48.5,-49.5 parent: 2 - - uid: 2347 + - uid: 2805 components: - type: Transform pos: 48.5,-50.5 parent: 2 - - uid: 2348 + - uid: 2806 components: - type: Transform pos: 48.5,-51.5 parent: 2 - - uid: 2349 + - uid: 2807 components: - type: Transform pos: 48.5,-52.5 parent: 2 - - uid: 2350 + - uid: 2808 components: - type: Transform pos: 48.5,-53.5 parent: 2 - - uid: 2351 + - uid: 2809 components: - type: Transform pos: 48.5,-54.5 parent: 2 - - uid: 2352 + - uid: 2810 components: - type: Transform pos: 48.5,-55.5 parent: 2 - - uid: 2353 + - uid: 2811 components: - type: Transform pos: 48.5,-56.5 parent: 2 - - uid: 2354 + - uid: 2812 components: - type: Transform pos: 48.5,-57.5 parent: 2 - - uid: 2355 + - uid: 2813 components: - type: Transform pos: 48.5,-58.5 parent: 2 - - uid: 2356 + - uid: 2814 components: - type: Transform pos: 47.5,-58.5 parent: 2 - - uid: 2357 + - uid: 2815 components: - type: Transform pos: 46.5,-58.5 parent: 2 - - uid: 2358 + - uid: 2816 components: - type: Transform pos: 45.5,-58.5 parent: 2 - - uid: 2359 + - uid: 2817 components: - type: Transform pos: 44.5,-58.5 parent: 2 - - uid: 2360 + - uid: 2818 components: - type: Transform pos: 44.5,-57.5 parent: 2 - - uid: 2361 + - uid: 2819 components: - type: Transform pos: 44.5,-56.5 parent: 2 - - uid: 2362 + - uid: 2820 components: - type: Transform pos: 44.5,-55.5 parent: 2 - - uid: 2363 + - uid: 2821 components: - type: Transform pos: 44.5,-54.5 parent: 2 - - uid: 2364 + - uid: 2822 components: - type: Transform pos: 44.5,-53.5 parent: 2 - - uid: 2365 + - uid: 2823 components: - type: Transform pos: 44.5,-52.5 parent: 2 - - uid: 2366 + - uid: 2824 components: - type: Transform pos: 44.5,-51.5 parent: 2 - - uid: 2367 + - uid: 2825 components: - type: Transform pos: 49.5,-58.5 parent: 2 - - uid: 2368 + - uid: 2826 components: - type: Transform pos: 50.5,-58.5 parent: 2 - - uid: 2369 + - uid: 2827 components: - type: Transform pos: 51.5,-58.5 parent: 2 - - uid: 2370 + - uid: 2828 components: - type: Transform pos: 52.5,-58.5 parent: 2 - - uid: 2371 + - uid: 2829 components: - type: Transform pos: 53.5,-58.5 parent: 2 - - uid: 2372 + - uid: 2830 components: - type: Transform pos: 49.5,-51.5 parent: 2 - - uid: 2373 + - uid: 2831 components: - type: Transform pos: 50.5,-51.5 parent: 2 - - uid: 2374 + - uid: 2832 components: - type: Transform pos: 51.5,-51.5 parent: 2 - - uid: 2375 + - uid: 2833 components: - type: Transform pos: 52.5,-51.5 parent: 2 - - uid: 2376 + - uid: 2834 components: - type: Transform pos: 52.5,-52.5 parent: 2 - - uid: 2377 + - uid: 2835 components: - type: Transform pos: 52.5,-53.5 parent: 2 - - uid: 2378 + - uid: 2836 components: - type: Transform pos: 52.5,-54.5 parent: 2 - - uid: 2379 + - uid: 2837 components: - type: Transform pos: 52.5,-55.5 parent: 2 - - uid: 2380 + - uid: 2838 components: - type: Transform pos: 52.5,-56.5 parent: 2 - - uid: 2381 + - uid: 2839 components: - type: Transform pos: 55.5,-63.5 parent: 2 - - uid: 2382 + - uid: 2840 components: - type: Transform pos: 56.5,-63.5 parent: 2 - - uid: 2383 + - uid: 2841 components: - type: Transform pos: 57.5,-63.5 parent: 2 - - uid: 2384 + - uid: 2842 components: - type: Transform pos: 58.5,-63.5 parent: 2 - - uid: 2385 + - uid: 2843 components: - type: Transform pos: 58.5,-62.5 parent: 2 - - uid: 2386 + - uid: 2844 components: - type: Transform pos: 58.5,-64.5 parent: 2 - - uid: 2387 + - uid: 2845 components: - type: Transform pos: 58.5,-65.5 parent: 2 - - uid: 2388 + - uid: 2846 components: - type: Transform pos: 58.5,-66.5 parent: 2 - - uid: 2389 + - uid: 2847 components: - type: Transform pos: 54.5,-63.5 parent: 2 - - uid: 2390 + - uid: 2848 components: - type: Transform pos: 53.5,-63.5 parent: 2 - - uid: 2391 + - uid: 2849 components: - type: Transform pos: 53.5,-64.5 parent: 2 - - uid: 2392 + - uid: 2850 components: - type: Transform pos: 56.5,-74.5 parent: 2 - - uid: 2393 + - uid: 2851 components: - type: Transform pos: 56.5,-75.5 parent: 2 - - uid: 2394 + - uid: 2852 components: - type: Transform pos: 56.5,-76.5 parent: 2 - - uid: 2395 + - uid: 2853 components: - type: Transform pos: 56.5,-73.5 parent: 2 - - uid: 2396 + - uid: 2854 components: - type: Transform pos: 56.5,-72.5 parent: 2 - - uid: 2397 + - uid: 2855 components: - type: Transform pos: 55.5,-72.5 parent: 2 - - uid: 2398 + - uid: 2856 components: - type: Transform pos: 54.5,-72.5 parent: 2 - - uid: 2399 + - uid: 2857 components: - type: Transform pos: 53.5,-72.5 parent: 2 - - uid: 2400 + - uid: 2858 components: - type: Transform pos: 52.5,-72.5 parent: 2 - - uid: 2401 + - uid: 2859 components: - type: Transform pos: 52.5,-73.5 parent: 2 - - uid: 2402 + - uid: 2860 components: - type: Transform pos: 52.5,-74.5 parent: 2 - - uid: 2403 + - uid: 2861 components: - type: Transform pos: 52.5,-75.5 parent: 2 - - uid: 2404 + - uid: 2862 components: - type: Transform pos: 47.5,-71.5 parent: 2 - - uid: 2405 + - uid: 2863 components: - type: Transform pos: 44.5,-80.5 parent: 2 - - uid: 2406 + - uid: 2864 components: - type: Transform pos: 46.5,-95.5 parent: 2 - - uid: 2407 + - uid: 2865 components: - type: Transform pos: 38.5,-82.5 parent: 2 - - uid: 2408 + - uid: 2866 components: - type: Transform pos: 43.5,-82.5 parent: 2 - - uid: 2409 + - uid: 2867 components: - type: Transform pos: 43.5,-83.5 parent: 2 - - uid: 2410 + - uid: 2868 components: - type: Transform pos: 42.5,-83.5 parent: 2 - - uid: 2411 + - uid: 2869 components: - type: Transform pos: 41.5,-83.5 parent: 2 - - uid: 2412 + - uid: 2870 components: - type: Transform pos: 40.5,-83.5 parent: 2 - - uid: 2413 + - uid: 2871 components: - type: Transform pos: 39.5,-83.5 parent: 2 - - uid: 2414 + - uid: 2872 components: - type: Transform pos: 38.5,-83.5 parent: 2 - - uid: 2415 + - uid: 2873 components: - type: Transform pos: 37.5,-82.5 parent: 2 - - uid: 2416 + - uid: 2874 components: - type: Transform pos: 36.5,-82.5 parent: 2 - - uid: 2417 + - uid: 2875 components: - type: Transform pos: 35.5,-82.5 parent: 2 - - uid: 2418 + - uid: 2876 components: - type: Transform pos: 34.5,-82.5 parent: 2 - - uid: 2419 + - uid: 2877 components: - type: Transform pos: 51.5,-80.5 parent: 2 - - uid: 2420 + - uid: 2878 components: - type: Transform pos: 52.5,-80.5 parent: 2 - - uid: 2421 + - uid: 2879 components: - type: Transform pos: 52.5,-78.5 parent: 2 - - uid: 2422 + - uid: 2880 components: - type: Transform pos: 52.5,-79.5 parent: 2 - - uid: 2423 + - uid: 2881 components: - type: Transform pos: 52.5,-81.5 parent: 2 - - uid: 2424 + - uid: 2882 components: - type: Transform pos: 52.5,-82.5 parent: 2 - - uid: 2425 + - uid: 2883 components: - type: Transform pos: 52.5,-83.5 parent: 2 - - uid: 2426 + - uid: 2884 components: - type: Transform pos: 53.5,-83.5 parent: 2 - - uid: 2427 + - uid: 2885 components: - type: Transform pos: 54.5,-83.5 parent: 2 - - uid: 2428 + - uid: 2886 components: - type: Transform pos: 51.5,-83.5 parent: 2 - - uid: 2429 + - uid: 2887 components: - type: Transform pos: 50.5,-83.5 parent: 2 - - uid: 2430 + - uid: 2888 components: - type: Transform pos: 49.5,-83.5 parent: 2 - - uid: 2431 + - uid: 2889 components: - type: Transform pos: 48.5,-83.5 parent: 2 - - uid: 2432 + - uid: 2890 components: - type: Transform pos: 47.5,-71.5 parent: 2 - - uid: 2433 + - uid: 2891 components: - type: Transform pos: 48.5,-71.5 parent: 2 - - uid: 2434 + - uid: 2892 components: - type: Transform pos: 49.5,-71.5 parent: 2 - - uid: 2435 + - uid: 2893 components: - type: Transform pos: 49.5,-72.5 parent: 2 - - uid: 2436 + - uid: 2894 components: - type: Transform pos: 49.5,-73.5 parent: 2 - - uid: 2437 + - uid: 2895 components: - type: Transform pos: 49.5,-74.5 parent: 2 - - uid: 2438 + - uid: 2896 components: - type: Transform pos: 49.5,-75.5 parent: 2 - - uid: 2439 + - uid: 2897 components: - type: Transform pos: 49.5,-76.5 parent: 2 - - uid: 2440 + - uid: 2898 components: - type: Transform pos: 49.5,-77.5 parent: 2 - - uid: 2441 + - uid: 2899 components: - type: Transform pos: 49.5,-78.5 parent: 2 - - uid: 2442 + - uid: 2900 components: - type: Transform pos: 48.5,-78.5 parent: 2 - - uid: 2443 + - uid: 2901 components: - type: Transform pos: 47.5,-78.5 parent: 2 - - uid: 2444 + - uid: 2902 components: - type: Transform pos: 45.5,-82.5 parent: 2 - - uid: 2445 + - uid: 2903 components: - type: Transform pos: 45.5,-81.5 parent: 2 - - uid: 2446 + - uid: 2904 components: - type: Transform pos: 45.5,-80.5 parent: 2 - - uid: 2447 + - uid: 2905 components: - type: Transform pos: 46.5,-83.5 parent: 2 - - uid: 2448 + - uid: 2906 components: - type: Transform pos: 45.5,-78.5 parent: 2 - - uid: 2449 + - uid: 2907 components: - type: Transform pos: 45.5,-79.5 parent: 2 - - uid: 2450 + - uid: 2908 components: - type: Transform pos: 45.5,-83.5 parent: 2 - - uid: 2451 + - uid: 2909 components: - type: Transform pos: 45.5,-84.5 parent: 2 - - uid: 2452 + - uid: 2910 components: - type: Transform pos: 45.5,-85.5 parent: 2 - - uid: 2453 + - uid: 2911 components: - type: Transform pos: 45.5,-86.5 parent: 2 - - uid: 2454 + - uid: 2912 components: - type: Transform pos: 45.5,-87.5 parent: 2 - - uid: 2455 + - uid: 2913 components: - type: Transform pos: 49.5,-70.5 parent: 2 - - uid: 2456 + - uid: 2914 components: - type: Transform pos: 49.5,-69.5 parent: 2 - - uid: 2457 + - uid: 2915 components: - type: Transform pos: 49.5,-68.5 parent: 2 - - uid: 2458 + - uid: 2916 components: - type: Transform pos: 48.5,-68.5 parent: 2 - - uid: 2459 + - uid: 2917 components: - type: Transform pos: 47.5,-68.5 parent: 2 - - uid: 2460 + - uid: 2918 components: - type: Transform pos: 46.5,-68.5 parent: 2 - - uid: 2461 + - uid: 2919 components: - type: Transform pos: 45.5,-68.5 parent: 2 - - uid: 2462 + - uid: 2920 components: - type: Transform pos: 44.5,-68.5 parent: 2 - - uid: 2463 + - uid: 2921 components: - type: Transform pos: 43.5,-68.5 parent: 2 - - uid: 2464 + - uid: 2922 components: - type: Transform pos: 42.5,-68.5 parent: 2 - - uid: 2465 + - uid: 2923 components: - type: Transform pos: 50.5,-68.5 parent: 2 - - uid: 2466 + - uid: 2924 components: - type: Transform pos: 51.5,-68.5 parent: 2 - - uid: 2467 + - uid: 2925 components: - type: Transform pos: 52.5,-68.5 parent: 2 - - uid: 2468 + - uid: 2926 components: - type: Transform pos: 53.5,-68.5 parent: 2 - - uid: 2469 + - uid: 2927 components: - type: Transform pos: 54.5,-68.5 parent: 2 - - uid: 2470 + - uid: 2928 components: - type: Transform pos: 55.5,-68.5 parent: 2 - - uid: 2471 + - uid: 2929 components: - type: Transform pos: 56.5,-68.5 parent: 2 - - uid: 2472 + - uid: 2930 components: - type: Transform pos: 57.5,-68.5 parent: 2 - - uid: 2473 + - uid: 2931 components: - type: Transform pos: 58.5,-68.5 parent: 2 - - uid: 2474 + - uid: 2932 components: - type: Transform pos: 59.5,-68.5 parent: 2 - - uid: 2475 + - uid: 2933 components: - type: Transform pos: 60.5,-68.5 parent: 2 - - uid: 2476 + - uid: 2934 components: - type: Transform pos: 61.5,-68.5 parent: 2 - - uid: 2477 + - uid: 2935 components: - type: Transform pos: 61.5,-67.5 parent: 2 - - uid: 2478 + - uid: 2936 components: - type: Transform pos: 61.5,-66.5 parent: 2 - - uid: 2479 + - uid: 2937 components: - type: Transform pos: 61.5,-65.5 parent: 2 - - uid: 2480 + - uid: 2938 components: - type: Transform pos: 62.5,-65.5 parent: 2 - - uid: 2481 + - uid: 2939 components: - type: Transform pos: 63.5,-65.5 parent: 2 - - uid: 2482 + - uid: 2940 components: - type: Transform pos: 51.5,-67.5 parent: 2 - - uid: 2483 + - uid: 2941 components: - type: Transform pos: 51.5,-66.5 parent: 2 - - uid: 2484 + - uid: 2942 components: - type: Transform pos: 51.5,-65.5 parent: 2 - - uid: 2485 + - uid: 2943 components: - type: Transform pos: 51.5,-64.5 parent: 2 - - uid: 2486 + - uid: 2944 components: - type: Transform pos: 51.5,-63.5 parent: 2 - - uid: 2487 + - uid: 2945 components: - type: Transform pos: 51.5,-62.5 parent: 2 - - uid: 2488 + - uid: 2946 components: - type: Transform pos: 51.5,-60.5 parent: 2 - - uid: 2489 + - uid: 2947 components: - type: Transform pos: 51.5,-59.5 parent: 2 - - uid: 2490 + - uid: 2948 components: - type: Transform pos: 41.5,-50.5 parent: 2 - - uid: 2491 + - uid: 2949 components: - type: Transform pos: 40.5,-50.5 parent: 2 - - uid: 2492 + - uid: 2950 components: - type: Transform pos: 39.5,-50.5 parent: 2 - - uid: 2493 + - uid: 2951 components: - type: Transform pos: 39.5,-51.5 parent: 2 - - uid: 2494 + - uid: 2952 components: - type: Transform pos: 38.5,-51.5 parent: 2 - - uid: 2495 + - uid: 2953 components: - type: Transform pos: 37.5,-51.5 parent: 2 - - uid: 2496 + - uid: 2954 components: - type: Transform pos: 36.5,-51.5 parent: 2 - - uid: 2497 + - uid: 2955 components: - type: Transform pos: 35.5,-51.5 parent: 2 - - uid: 2498 + - uid: 2956 components: - type: Transform pos: 39.5,-49.5 parent: 2 - - uid: 2499 + - uid: 2957 components: - type: Transform pos: 39.5,-48.5 parent: 2 - - uid: 2500 + - uid: 2958 components: - type: Transform pos: 39.5,-47.5 parent: 2 - - uid: 2501 + - uid: 2959 components: - type: Transform pos: 39.5,-46.5 parent: 2 - - uid: 2502 + - uid: 2960 components: - type: Transform pos: 64.5,-82.5 parent: 2 - - uid: 2503 + - uid: 2961 components: - type: Transform pos: 39.5,-60.5 parent: 2 - - uid: 2504 + - uid: 2962 components: - type: Transform pos: 38.5,-60.5 parent: 2 - - uid: 2505 + - uid: 2963 components: - type: Transform pos: 37.5,-60.5 parent: 2 - - uid: 2506 + - uid: 2964 components: - type: Transform pos: 36.5,-60.5 parent: 2 - - uid: 2507 + - uid: 2965 components: - type: Transform pos: 35.5,-60.5 parent: 2 - - uid: 2508 + - uid: 2966 components: - type: Transform pos: 34.5,-60.5 parent: 2 - - uid: 2509 + - uid: 2967 components: - type: Transform pos: 34.5,-59.5 parent: 2 - - uid: 2510 + - uid: 2968 components: - type: Transform pos: 34.5,-58.5 parent: 2 - - uid: 2511 + - uid: 2969 components: - type: Transform pos: 34.5,-61.5 parent: 2 - - uid: 2512 + - uid: 2970 components: - type: Transform pos: 34.5,-62.5 parent: 2 - - uid: 2513 + - uid: 2971 components: - type: Transform pos: 34.5,-63.5 parent: 2 - - uid: 2514 + - uid: 2972 components: - type: Transform pos: 34.5,-64.5 parent: 2 - - uid: 2515 + - uid: 2973 components: - type: Transform pos: 34.5,-65.5 parent: 2 - - uid: 2516 + - uid: 2974 components: - type: Transform pos: 37.5,-61.5 parent: 2 - - uid: 2517 + - uid: 2975 components: - type: Transform pos: 37.5,-62.5 parent: 2 - - uid: 2518 + - uid: 2976 components: - type: Transform pos: 37.5,-63.5 parent: 2 - - uid: 2519 + - uid: 2977 components: - type: Transform pos: 37.5,-64.5 parent: 2 - - uid: 2520 + - uid: 2978 components: - type: Transform pos: 37.5,-65.5 parent: 2 - - uid: 2521 + - uid: 2979 components: - type: Transform pos: 33.5,-65.5 parent: 2 - - uid: 2522 + - uid: 2980 components: - type: Transform pos: 32.5,-65.5 parent: 2 - - uid: 2523 + - uid: 2981 components: - type: Transform pos: 32.5,-66.5 parent: 2 - - uid: 2524 + - uid: 2982 components: - type: Transform pos: 37.5,-68.5 parent: 2 - - uid: 2525 + - uid: 2983 components: - type: Transform pos: 36.5,-68.5 parent: 2 - - uid: 2526 + - uid: 2984 components: - type: Transform pos: 35.5,-68.5 parent: 2 - - uid: 2527 + - uid: 2985 components: - type: Transform pos: 35.5,-69.5 parent: 2 - - uid: 2528 + - uid: 2986 components: - type: Transform pos: 34.5,-69.5 parent: 2 - - uid: 2529 + - uid: 2987 components: - type: Transform pos: 33.5,-69.5 parent: 2 - - uid: 2530 + - uid: 2988 components: - type: Transform pos: 32.5,-69.5 parent: 2 - - uid: 2531 + - uid: 2989 components: - type: Transform pos: 35.5,-70.5 parent: 2 - - uid: 2532 + - uid: 2990 components: - type: Transform pos: 35.5,-71.5 parent: 2 - - uid: 2533 + - uid: 2991 components: - type: Transform pos: 37.5,-72.5 parent: 2 - - uid: 2534 + - uid: 2992 components: - type: Transform pos: 36.5,-72.5 parent: 2 - - uid: 2535 + - uid: 2993 components: - type: Transform pos: 35.5,-72.5 parent: 2 - - uid: 2536 + - uid: 2994 components: - type: Transform pos: 34.5,-72.5 parent: 2 - - uid: 2537 + - uid: 2995 components: - type: Transform pos: 33.5,-72.5 parent: 2 - - uid: 2538 + - uid: 2996 components: - type: Transform pos: 39.5,-72.5 parent: 2 - - uid: 2539 + - uid: 2997 components: - type: Transform pos: 39.5,-73.5 parent: 2 - - uid: 2540 + - uid: 2998 components: - type: Transform pos: 39.5,-74.5 parent: 2 - - uid: 2541 + - uid: 2999 components: - type: Transform pos: 39.5,-75.5 parent: 2 - - uid: 2542 + - uid: 3000 components: - type: Transform pos: 38.5,-72.5 parent: 2 - - uid: 2543 + - uid: 3001 components: - type: Transform pos: 38.5,-75.5 parent: 2 - - uid: 2544 + - uid: 3002 components: - type: Transform pos: 37.5,-75.5 parent: 2 - - uid: 2545 + - uid: 3003 components: - type: Transform pos: 36.5,-75.5 parent: 2 - - uid: 2546 + - uid: 3004 components: - type: Transform pos: 35.5,-75.5 parent: 2 - - uid: 2547 + - uid: 3005 components: - type: Transform pos: 34.5,-75.5 parent: 2 - - uid: 2548 + - uid: 3006 components: - type: Transform pos: 33.5,-75.5 parent: 2 - - uid: 2549 + - uid: 3007 components: - type: Transform pos: 32.5,-75.5 parent: 2 - - uid: 2550 + - uid: 3008 components: - type: Transform pos: 31.5,-75.5 parent: 2 - - uid: 2551 + - uid: 3009 components: - type: Transform pos: 31.5,-74.5 parent: 2 - - uid: 2552 + - uid: 3010 components: - type: Transform pos: 31.5,-73.5 parent: 2 - - uid: 2553 + - uid: 3011 components: - type: Transform pos: 31.5,-72.5 parent: 2 - - uid: 2554 + - uid: 3012 components: - type: Transform pos: 31.5,-71.5 parent: 2 - - uid: 2555 + - uid: 3013 components: - type: Transform pos: 39.5,-71.5 parent: 2 - - uid: 2556 + - uid: 3014 components: - type: Transform pos: 39.5,-70.5 parent: 2 - - uid: 2557 + - uid: 3015 components: - type: Transform pos: 39.5,-69.5 parent: 2 - - uid: 2558 + - uid: 3016 components: - type: Transform pos: 39.5,-68.5 parent: 2 - - uid: 2559 + - uid: 3017 components: - type: Transform pos: 40.5,-68.5 parent: 2 - - uid: 2560 + - uid: 3018 components: - type: Transform pos: 40.5,-67.5 parent: 2 - - uid: 2561 + - uid: 3019 components: - type: Transform pos: 40.5,-66.5 parent: 2 - - uid: 2562 + - uid: 3020 components: - type: Transform pos: 40.5,-65.5 parent: 2 - - uid: 2563 + - uid: 3021 components: - type: Transform pos: 40.5,-64.5 parent: 2 - - uid: 2564 + - uid: 3022 components: - type: Transform pos: 40.5,-60.5 parent: 2 - - uid: 2565 + - uid: 3023 components: - type: Transform pos: 40.5,-59.5 parent: 2 - - uid: 2566 + - uid: 3024 components: - type: Transform pos: 40.5,-58.5 parent: 2 - - uid: 2567 + - uid: 3025 components: - type: Transform pos: 40.5,-57.5 parent: 2 - - uid: 2568 + - uid: 3026 components: - type: Transform pos: 40.5,-56.5 parent: 2 - - uid: 2569 + - uid: 3027 components: - type: Transform pos: 40.5,-55.5 parent: 2 - - uid: 2570 + - uid: 3028 components: - type: Transform pos: 40.5,-54.5 parent: 2 - - uid: 2571 + - uid: 3029 components: - type: Transform pos: 39.5,-54.5 parent: 2 - - uid: 2572 + - uid: 3030 components: - type: Transform pos: 38.5,-54.5 parent: 2 - - uid: 2573 + - uid: 3031 components: - type: Transform pos: 37.5,-54.5 parent: 2 - - uid: 2574 + - uid: 3032 components: - type: Transform pos: 36.5,-54.5 parent: 2 - - uid: 2575 + - uid: 3033 components: - type: Transform pos: 35.5,-54.5 parent: 2 - - uid: 2605 + - uid: 3034 components: - type: Transform pos: 57.5,4.5 parent: 2 - - uid: 2606 + - uid: 3035 components: - type: Transform pos: 58.5,4.5 parent: 2 - - uid: 2607 + - uid: 3036 components: - type: Transform pos: 61.5,4.5 parent: 2 - - uid: 2622 + - uid: 3037 components: - type: Transform pos: 56.5,-24.5 parent: 2 - - uid: 2623 + - uid: 3038 components: - type: Transform pos: 56.5,-25.5 parent: 2 - - uid: 2624 + - uid: 3039 components: - type: Transform pos: 52.5,-18.5 parent: 2 - - uid: 2625 + - uid: 3040 components: - type: Transform pos: 50.5,-18.5 parent: 2 - - uid: 2626 + - uid: 3041 components: - type: Transform pos: 55.5,-18.5 parent: 2 - - uid: 2627 + - uid: 3042 components: - type: Transform pos: 56.5,-22.5 parent: 2 - - uid: 2670 + - uid: 3043 components: - type: Transform pos: 60.5,-16.5 parent: 2 - - uid: 2671 + - uid: 3044 components: - type: Transform pos: 61.5,-17.5 parent: 2 - - uid: 2672 + - uid: 3045 components: - type: Transform pos: 56.5,-18.5 parent: 2 - - uid: 2673 + - uid: 3046 components: - type: Transform pos: 55.5,-17.5 parent: 2 - - uid: 2678 + - uid: 3047 components: - type: Transform pos: 60.5,-14.5 parent: 2 - - uid: 2682 + - uid: 3048 components: - type: Transform pos: 6.5,-0.5 parent: 2 - - uid: 2684 + - uid: 3049 components: - type: Transform pos: 61.5,-12.5 parent: 2 - - uid: 2687 + - uid: 3050 components: - type: Transform pos: 56.5,-19.5 parent: 2 - - uid: 2688 + - uid: 3051 components: - type: Transform pos: 52.5,-22.5 parent: 2 - - uid: 2689 + - uid: 3052 components: - type: Transform pos: 47.5,-16.5 parent: 2 - - uid: 2691 + - uid: 3053 components: - type: Transform pos: 49.5,-4.5 parent: 2 - - uid: 2693 + - uid: 3054 components: - type: Transform pos: 50.5,-4.5 parent: 2 - - uid: 2694 + - uid: 3055 components: - type: Transform pos: 59.5,4.5 parent: 2 - - uid: 2695 + - uid: 3056 components: - type: Transform pos: 62.5,4.5 parent: 2 - - uid: 2696 + - uid: 3057 components: - type: Transform pos: 64.5,8.5 parent: 2 - - uid: 2697 + - uid: 3058 components: - type: Transform pos: 65.5,8.5 parent: 2 - - uid: 2715 + - uid: 3059 components: - type: Transform pos: 51.5,-1.5 parent: 2 - - uid: 2720 + - uid: 3060 components: - type: Transform pos: 51.5,-2.5 parent: 2 - - uid: 2737 + - uid: 3061 components: - type: Transform pos: 60.5,-12.5 parent: 2 - - uid: 2739 + - uid: 3062 components: - type: Transform pos: 55.5,-16.5 parent: 2 - - uid: 2753 + - uid: 3063 components: - type: Transform pos: 63.5,-13.5 parent: 2 - - uid: 2779 + - uid: 3064 components: - type: Transform pos: 56.5,-20.5 parent: 2 - - uid: 2780 + - uid: 3065 components: - type: Transform pos: 56.5,-21.5 parent: 2 - - uid: 2781 + - uid: 3066 components: - type: Transform pos: 56.5,-23.5 parent: 2 - - uid: 2783 + - uid: 3067 components: - type: Transform pos: 54.5,-22.5 parent: 2 - - uid: 2784 + - uid: 3068 components: - type: Transform pos: 53.5,-22.5 parent: 2 - - uid: 2785 + - uid: 3069 components: - type: Transform pos: 52.5,-23.5 parent: 2 - - uid: 2786 + - uid: 3070 components: - type: Transform pos: 47.5,-18.5 parent: 2 - - uid: 2825 + - uid: 3071 components: - type: Transform pos: 62.5,-12.5 parent: 2 - - uid: 2828 + - uid: 3072 components: - type: Transform pos: 37.5,-4.5 parent: 2 - - uid: 2829 + - uid: 3073 components: - type: Transform pos: 38.5,-4.5 parent: 2 - - uid: 2830 + - uid: 3074 components: - type: Transform pos: 36.5,-4.5 parent: 2 - - uid: 2831 + - uid: 3075 components: - type: Transform pos: 63.5,-12.5 parent: 2 - - uid: 2833 + - uid: 3076 components: - type: Transform pos: 39.5,-6.5 parent: 2 - - uid: 2834 + - uid: 3077 components: - type: Transform pos: 39.5,-7.5 parent: 2 - - uid: 2835 + - uid: 3078 components: - type: Transform pos: 40.5,-7.5 parent: 2 - - uid: 2836 + - uid: 3079 components: - type: Transform pos: 40.5,-8.5 parent: 2 - - uid: 2837 + - uid: 3080 components: - type: Transform pos: 40.5,-9.5 parent: 2 - - uid: 2838 + - uid: 3081 components: - type: Transform pos: 40.5,-10.5 parent: 2 - - uid: 2839 + - uid: 3082 components: - type: Transform pos: 40.5,-11.5 parent: 2 - - uid: 2840 + - uid: 3083 components: - type: Transform pos: 40.5,-12.5 parent: 2 - - uid: 2841 + - uid: 3084 components: - type: Transform pos: 40.5,-13.5 parent: 2 - - uid: 2842 + - uid: 3085 components: - type: Transform pos: 40.5,-14.5 parent: 2 - - uid: 2843 + - uid: 3086 components: - type: Transform pos: 40.5,-15.5 parent: 2 - - uid: 2844 + - uid: 3087 components: - type: Transform pos: 40.5,-16.5 parent: 2 - - uid: 2845 + - uid: 3088 components: - type: Transform pos: 40.5,-17.5 parent: 2 - - uid: 2846 + - uid: 3089 components: - type: Transform pos: 35.5,-4.5 parent: 2 - - uid: 2847 + - uid: 3090 components: - type: Transform pos: 34.5,-4.5 parent: 2 - - uid: 2848 + - uid: 3091 components: - type: Transform pos: 33.5,-7.5 parent: 2 - - uid: 2849 + - uid: 3092 components: - type: Transform pos: 33.5,-5.5 parent: 2 - - uid: 2850 + - uid: 3093 components: - type: Transform pos: 33.5,-6.5 parent: 2 - - uid: 2851 + - uid: 3094 components: - type: Transform pos: 35.5,-23.5 parent: 2 - - uid: 2852 + - uid: 3095 components: - type: Transform pos: 35.5,-24.5 parent: 2 - - uid: 2853 + - uid: 3096 components: - type: Transform pos: 35.5,-25.5 parent: 2 - - uid: 2854 + - uid: 3097 components: - type: Transform pos: 35.5,-26.5 parent: 2 - - uid: 2855 + - uid: 3098 components: - type: Transform pos: 35.5,-27.5 parent: 2 - - uid: 2856 + - uid: 3099 components: - type: Transform pos: 35.5,-28.5 parent: 2 - - uid: 2857 + - uid: 3100 components: - type: Transform pos: 35.5,-29.5 parent: 2 - - uid: 2858 + - uid: 3101 components: - type: Transform pos: 36.5,-29.5 parent: 2 - - uid: 2859 + - uid: 3102 components: - type: Transform pos: 37.5,-29.5 parent: 2 - - uid: 2860 + - uid: 3103 components: - type: Transform pos: 38.5,-29.5 parent: 2 - - uid: 2861 + - uid: 3104 components: - type: Transform pos: 39.5,-29.5 parent: 2 - - uid: 2862 + - uid: 3105 components: - type: Transform pos: 40.5,-29.5 parent: 2 - - uid: 2863 + - uid: 3106 components: - type: Transform pos: 41.5,-29.5 parent: 2 - - uid: 2865 + - uid: 3107 components: - type: Transform pos: 34.5,-23.5 parent: 2 - - uid: 2866 + - uid: 3108 components: - type: Transform pos: 33.5,-23.5 parent: 2 - - uid: 2867 + - uid: 3109 components: - type: Transform pos: 35.5,-22.5 parent: 2 - - uid: 2868 + - uid: 3110 components: - type: Transform pos: 35.5,-21.5 parent: 2 - - uid: 2869 + - uid: 3111 components: - type: Transform pos: 35.5,-20.5 parent: 2 - - uid: 2870 + - uid: 3112 components: - type: Transform pos: 36.5,-20.5 parent: 2 - - uid: 2871 + - uid: 3113 components: - type: Transform pos: 37.5,-20.5 parent: 2 - - uid: 2872 + - uid: 3114 components: - type: Transform pos: 38.5,-20.5 parent: 2 - - uid: 2873 + - uid: 3115 components: - type: Transform pos: 39.5,-20.5 parent: 2 - - uid: 2874 + - uid: 3116 components: - type: Transform pos: 40.5,-20.5 parent: 2 - - uid: 2875 + - uid: 3117 components: - type: Transform pos: 58.5,-18.5 parent: 2 - - uid: 2881 + - uid: 3118 components: - type: Transform pos: 57.5,-18.5 parent: 2 - - uid: 2891 + - uid: 3119 components: - type: Transform pos: 108.5,-40.5 parent: 2 - - uid: 2892 + - uid: 3120 components: - type: Transform pos: 107.5,-40.5 parent: 2 - - uid: 2893 + - uid: 3121 components: - type: Transform pos: 106.5,-40.5 parent: 2 - - uid: 2894 + - uid: 3122 components: - type: Transform pos: 105.5,-40.5 parent: 2 - - uid: 2895 + - uid: 3123 components: - type: Transform pos: 104.5,-40.5 parent: 2 - - uid: 2896 + - uid: 3124 components: - type: Transform pos: 103.5,-40.5 parent: 2 - - uid: 2897 + - uid: 3125 components: - type: Transform pos: 102.5,-40.5 parent: 2 - - uid: 2898 + - uid: 3126 components: - type: Transform pos: 101.5,-40.5 parent: 2 - - uid: 2899 + - uid: 3127 components: - type: Transform pos: 100.5,-40.5 parent: 2 - - uid: 2900 + - uid: 3128 components: - type: Transform pos: 99.5,-40.5 parent: 2 - - uid: 2901 + - uid: 3129 components: - type: Transform pos: 98.5,-40.5 parent: 2 - - uid: 2902 + - uid: 3130 components: - type: Transform pos: 97.5,-40.5 parent: 2 - - uid: 2903 + - uid: 3131 components: - type: Transform pos: 96.5,-40.5 parent: 2 - - uid: 2904 + - uid: 3132 components: - type: Transform pos: 95.5,-40.5 parent: 2 - - uid: 2905 + - uid: 3133 components: - type: Transform pos: 94.5,-40.5 parent: 2 - - uid: 2906 + - uid: 3134 components: - type: Transform pos: 93.5,-40.5 parent: 2 - - uid: 2907 + - uid: 3135 components: - type: Transform pos: 92.5,-40.5 parent: 2 - - uid: 2908 + - uid: 3136 components: - type: Transform pos: 91.5,-40.5 parent: 2 - - uid: 2909 + - uid: 3137 components: - type: Transform pos: 91.5,-41.5 parent: 2 - - uid: 2910 + - uid: 3138 components: - type: Transform pos: 91.5,-42.5 parent: 2 - - uid: 2911 + - uid: 3139 components: - type: Transform pos: 107.5,-38.5 parent: 2 - - uid: 2912 + - uid: 3140 components: - type: Transform pos: 107.5,-37.5 parent: 2 - - uid: 2913 + - uid: 3141 components: - type: Transform pos: 107.5,-36.5 parent: 2 - - uid: 2914 + - uid: 3142 components: - type: Transform pos: 107.5,-35.5 parent: 2 - - uid: 2915 + - uid: 3143 components: - type: Transform pos: 107.5,-34.5 parent: 2 - - uid: 2916 + - uid: 3144 components: - type: Transform pos: 107.5,-33.5 parent: 2 - - uid: 2917 + - uid: 3145 components: - type: Transform pos: 107.5,-32.5 parent: 2 - - uid: 2918 + - uid: 3146 components: - type: Transform pos: 82.5,-39.5 parent: 2 - - uid: 2919 + - uid: 3147 components: - type: Transform pos: 107.5,-30.5 parent: 2 - - uid: 2920 + - uid: 3148 components: - type: Transform pos: 107.5,-29.5 parent: 2 - - uid: 2921 + - uid: 3149 components: - type: Transform pos: 107.5,-28.5 parent: 2 - - uid: 2922 + - uid: 3150 components: - type: Transform pos: 107.5,-27.5 parent: 2 - - uid: 2923 + - uid: 3151 components: - type: Transform pos: 107.5,-26.5 parent: 2 - - uid: 2924 + - uid: 3152 components: - type: Transform pos: 107.5,-25.5 parent: 2 - - uid: 2925 + - uid: 3153 components: - type: Transform pos: 107.5,-24.5 parent: 2 - - uid: 2926 + - uid: 3154 components: - type: Transform pos: 107.5,-23.5 parent: 2 - - uid: 2927 + - uid: 3155 components: - type: Transform pos: 107.5,-22.5 parent: 2 - - uid: 2928 + - uid: 3156 components: - type: Transform pos: 106.5,-22.5 parent: 2 - - uid: 2929 + - uid: 3157 components: - type: Transform pos: 105.5,-22.5 parent: 2 - - uid: 2930 + - uid: 3158 components: - type: Transform pos: 104.5,-22.5 parent: 2 - - uid: 2931 + - uid: 3159 components: - type: Transform pos: 108.5,-22.5 parent: 2 - - uid: 2932 + - uid: 3160 components: - type: Transform pos: 108.5,-21.5 parent: 2 - - uid: 2933 + - uid: 3161 components: - type: Transform pos: 108.5,-20.5 parent: 2 - - uid: 2934 + - uid: 3162 components: - type: Transform pos: 108.5,-19.5 parent: 2 - - uid: 2935 + - uid: 3163 components: - type: Transform pos: 108.5,-18.5 parent: 2 - - uid: 2936 + - uid: 3164 components: - type: Transform pos: 104.5,-23.5 parent: 2 - - uid: 2937 + - uid: 3165 components: - type: Transform pos: 90.5,-40.5 parent: 2 - - uid: 2938 + - uid: 3166 components: - type: Transform pos: 89.5,-40.5 parent: 2 - - uid: 2939 + - uid: 3167 components: - type: Transform pos: 88.5,-40.5 parent: 2 - - uid: 2940 + - uid: 3168 components: - type: Transform pos: 87.5,-40.5 parent: 2 - - uid: 2941 + - uid: 3169 components: - type: Transform pos: 86.5,-40.5 parent: 2 - - uid: 2942 + - uid: 3170 components: - type: Transform pos: 85.5,-40.5 parent: 2 - - uid: 2943 + - uid: 3171 components: - type: Transform pos: 84.5,-40.5 parent: 2 - - uid: 2944 + - uid: 3172 components: - type: Transform pos: 83.5,-40.5 parent: 2 - - uid: 2945 + - uid: 3173 components: - type: Transform pos: 82.5,-40.5 parent: 2 - - uid: 2946 + - uid: 3174 components: - type: Transform pos: 82.5,-38.5 parent: 2 - - uid: 2947 + - uid: 3175 components: - type: Transform pos: 82.5,-37.5 parent: 2 - - uid: 2948 + - uid: 3176 components: - type: Transform pos: 82.5,-36.5 parent: 2 - - uid: 2949 + - uid: 3177 components: - type: Transform pos: 82.5,-35.5 parent: 2 - - uid: 2950 + - uid: 3178 components: - type: Transform pos: 82.5,-34.5 parent: 2 - - uid: 2951 + - uid: 3179 components: - type: Transform pos: 82.5,-31.5 parent: 2 - - uid: 2952 + - uid: 3180 components: - type: Transform pos: 82.5,-33.5 parent: 2 - - uid: 2953 + - uid: 3181 components: - type: Transform pos: 82.5,-30.5 parent: 2 - - uid: 2954 + - uid: 3182 components: - type: Transform pos: 82.5,-29.5 parent: 2 - - uid: 2955 + - uid: 3183 components: - type: Transform pos: 82.5,-28.5 parent: 2 - - uid: 2956 + - uid: 3184 components: - type: Transform pos: 82.5,-27.5 parent: 2 - - uid: 2957 + - uid: 3185 components: - type: Transform pos: 82.5,-26.5 parent: 2 - - uid: 2958 + - uid: 3186 components: - type: Transform pos: 82.5,-25.5 parent: 2 - - uid: 2959 + - uid: 3187 components: - type: Transform pos: 82.5,-24.5 parent: 2 - - uid: 2960 + - uid: 3188 components: - type: Transform pos: 82.5,-23.5 parent: 2 - - uid: 2961 + - uid: 3189 components: - type: Transform pos: 82.5,-22.5 parent: 2 - - uid: 2962 + - uid: 3190 components: - type: Transform pos: 83.5,-22.5 parent: 2 - - uid: 2963 + - uid: 3191 components: - type: Transform pos: 84.5,-22.5 parent: 2 - - uid: 2964 + - uid: 3192 components: - type: Transform pos: 85.5,-22.5 parent: 2 - - uid: 2965 + - uid: 3193 components: - type: Transform pos: 86.5,-22.5 parent: 2 - - uid: 2966 + - uid: 3194 components: - type: Transform pos: 87.5,-22.5 parent: 2 - - uid: 2967 + - uid: 3195 components: - type: Transform pos: 88.5,-22.5 parent: 2 - - uid: 2968 + - uid: 3196 components: - type: Transform pos: 89.5,-22.5 parent: 2 - - uid: 2969 + - uid: 3197 components: - type: Transform pos: 90.5,-22.5 parent: 2 - - uid: 2970 + - uid: 3198 components: - type: Transform pos: 91.5,-22.5 parent: 2 - - uid: 2971 + - uid: 3199 components: - type: Transform pos: 92.5,-22.5 parent: 2 - - uid: 2972 + - uid: 3200 components: - type: Transform pos: 93.5,-22.5 parent: 2 - - uid: 2973 + - uid: 3201 components: - type: Transform pos: 94.5,-22.5 parent: 2 - - uid: 2974 + - uid: 3202 components: - type: Transform pos: 95.5,-22.5 parent: 2 - - uid: 2975 + - uid: 3203 components: - type: Transform pos: 96.5,-22.5 parent: 2 - - uid: 2976 + - uid: 3204 components: - type: Transform pos: 97.5,-22.5 parent: 2 - - uid: 2977 + - uid: 3205 components: - type: Transform pos: 98.5,-22.5 parent: 2 - - uid: 2978 + - uid: 3206 components: - type: Transform pos: 99.5,-22.5 parent: 2 - - uid: 2979 + - uid: 3207 components: - type: Transform pos: 100.5,-22.5 parent: 2 - - uid: 2980 + - uid: 3208 components: - type: Transform pos: 101.5,-22.5 parent: 2 - - uid: 2981 + - uid: 3209 components: - type: Transform pos: 102.5,-22.5 parent: 2 - - uid: 2982 + - uid: 3210 components: - type: Transform pos: 90.5,-20.5 parent: 2 - - uid: 2983 + - uid: 3211 components: - type: Transform pos: 90.5,-21.5 parent: 2 - - uid: 2984 + - uid: 3212 components: - type: Transform pos: 91.5,-23.5 parent: 2 - - uid: 2985 + - uid: 3213 components: - type: Transform pos: 91.5,-24.5 parent: 2 - - uid: 2986 + - uid: 3214 components: - type: Transform pos: 91.5,-25.5 parent: 2 - - uid: 2987 + - uid: 3215 components: - type: Transform pos: 98.5,-23.5 parent: 2 - - uid: 2988 + - uid: 3216 components: - type: Transform pos: 98.5,-24.5 parent: 2 - - uid: 2989 + - uid: 3217 components: - type: Transform pos: 98.5,-25.5 parent: 2 - - uid: 2990 + - uid: 3218 components: - type: Transform pos: 98.5,-21.5 parent: 2 - - uid: 2991 + - uid: 3219 components: - type: Transform pos: 98.5,-20.5 parent: 2 - - uid: 2992 + - uid: 3220 components: - type: Transform pos: 98.5,-19.5 parent: 2 - - uid: 2993 + - uid: 3221 components: - type: Transform pos: 98.5,-39.5 parent: 2 - - uid: 2994 + - uid: 3222 components: - type: Transform pos: 98.5,-38.5 parent: 2 - - uid: 2995 + - uid: 3223 components: - type: Transform pos: 98.5,-37.5 parent: 2 - - uid: 2996 + - uid: 3224 components: - type: Transform pos: 91.5,-39.5 parent: 2 - - uid: 2997 + - uid: 3225 components: - type: Transform pos: 91.5,-38.5 parent: 2 - - uid: 2998 + - uid: 3226 components: - type: Transform pos: 91.5,-37.5 parent: 2 - - uid: 2999 + - uid: 3227 components: - type: Transform pos: 78.5,-25.5 parent: 2 - - uid: 3000 + - uid: 3228 components: - type: Transform pos: 78.5,-26.5 parent: 2 - - uid: 3001 + - uid: 3229 components: - type: Transform pos: 78.5,-27.5 parent: 2 - - uid: 3002 + - uid: 3230 components: - type: Transform pos: 78.5,-28.5 parent: 2 - - uid: 3003 + - uid: 3231 components: - type: Transform pos: 77.5,-28.5 parent: 2 - - uid: 3004 + - uid: 3232 components: - type: Transform pos: 76.5,-28.5 parent: 2 - - uid: 3005 + - uid: 3233 components: - type: Transform pos: 75.5,-28.5 parent: 2 - - uid: 3006 + - uid: 3234 components: - type: Transform pos: 74.5,-28.5 parent: 2 - - uid: 3007 + - uid: 3235 components: - type: Transform pos: 73.5,-28.5 parent: 2 - - uid: 3008 + - uid: 3236 components: - type: Transform pos: 76.5,-27.5 parent: 2 - - uid: 3009 + - uid: 3237 components: - type: Transform pos: 76.5,-26.5 parent: 2 - - uid: 3010 + - uid: 3238 components: - type: Transform pos: 76.5,-25.5 parent: 2 - - uid: 3011 + - uid: 3239 components: - type: Transform pos: 76.5,-24.5 parent: 2 - - uid: 3012 + - uid: 3240 components: - type: Transform pos: 76.5,-23.5 parent: 2 - - uid: 3013 + - uid: 3241 components: - type: Transform pos: 76.5,-22.5 parent: 2 - - uid: 3014 + - uid: 3242 components: - type: Transform pos: 76.5,-21.5 parent: 2 - - uid: 3015 + - uid: 3243 components: - type: Transform pos: 77.5,-21.5 parent: 2 - - uid: 3016 + - uid: 3244 components: - type: Transform pos: 78.5,-21.5 parent: 2 - - uid: 3017 + - uid: 3245 components: - type: Transform pos: 79.5,-21.5 parent: 2 - - uid: 3018 + - uid: 3246 components: - type: Transform pos: 75.5,-21.5 parent: 2 - - uid: 3019 + - uid: 3247 components: - type: Transform pos: 74.5,-21.5 parent: 2 - - uid: 3020 + - uid: 3248 components: - type: Transform pos: 73.5,-21.5 parent: 2 - - uid: 3021 + - uid: 3249 components: - type: Transform pos: 72.5,-21.5 parent: 2 - - uid: 3022 + - uid: 3250 components: - type: Transform pos: 69.5,-21.5 parent: 2 - - uid: 3023 + - uid: 3251 components: - type: Transform pos: 69.5,-20.5 parent: 2 - - uid: 3024 + - uid: 3252 components: - type: Transform pos: 69.5,-19.5 parent: 2 - - uid: 3025 + - uid: 3253 components: - type: Transform pos: 69.5,-18.5 parent: 2 - - uid: 3026 + - uid: 3254 components: - type: Transform pos: 69.5,-17.5 parent: 2 - - uid: 3027 + - uid: 3255 components: - type: Transform pos: 78.5,-32.5 parent: 2 - - uid: 3028 + - uid: 3256 components: - type: Transform pos: 77.5,-32.5 parent: 2 - - uid: 3029 + - uid: 3257 components: - type: Transform pos: 76.5,-32.5 parent: 2 - - uid: 3030 + - uid: 3258 components: - type: Transform pos: 75.5,-32.5 parent: 2 - - uid: 3031 + - uid: 3259 components: - type: Transform pos: 74.5,-32.5 parent: 2 - - uid: 3032 + - uid: 3260 components: - type: Transform pos: 73.5,-32.5 parent: 2 - - uid: 3033 + - uid: 3261 components: - type: Transform pos: 72.5,-32.5 parent: 2 - - uid: 3034 + - uid: 3262 components: - type: Transform pos: 71.5,-32.5 parent: 2 - - uid: 3035 + - uid: 3263 components: - type: Transform pos: 70.5,-32.5 parent: 2 - - uid: 3036 + - uid: 3264 components: - type: Transform pos: 69.5,-32.5 parent: 2 - - uid: 3037 + - uid: 3265 components: - type: Transform pos: 68.5,-32.5 parent: 2 - - uid: 3038 + - uid: 3266 components: - type: Transform pos: 67.5,-32.5 parent: 2 - - uid: 3039 + - uid: 3267 components: - type: Transform pos: 66.5,-32.5 parent: 2 - - uid: 3040 + - uid: 3268 components: - type: Transform pos: 65.5,-32.5 parent: 2 - - uid: 3041 + - uid: 3269 components: - type: Transform pos: 64.5,-32.5 parent: 2 - - uid: 3042 + - uid: 3270 components: - type: Transform pos: 63.5,-32.5 parent: 2 - - uid: 3043 + - uid: 3271 components: - type: Transform pos: 62.5,-32.5 parent: 2 - - uid: 3044 + - uid: 3272 components: - type: Transform pos: 71.5,-31.5 parent: 2 - - uid: 3045 + - uid: 3273 components: - type: Transform pos: 71.5,-30.5 parent: 2 - - uid: 3046 + - uid: 3274 components: - type: Transform pos: 69.5,-31.5 parent: 2 - - uid: 3047 + - uid: 3275 components: - type: Transform pos: 69.5,-30.5 parent: 2 - - uid: 3048 + - uid: 3276 components: - type: Transform pos: 69.5,-29.5 parent: 2 - - uid: 3049 + - uid: 3277 components: - type: Transform pos: 69.5,-28.5 parent: 2 - - uid: 3050 + - uid: 3278 components: - type: Transform pos: 69.5,-27.5 parent: 2 - - uid: 3051 + - uid: 3279 components: - type: Transform pos: 69.5,-26.5 parent: 2 - - uid: 3052 + - uid: 3280 components: - type: Transform pos: 68.5,-25.5 parent: 2 - - uid: 3053 + - uid: 3281 components: - type: Transform pos: 67.5,-25.5 parent: 2 - - uid: 3054 + - uid: 3282 components: - type: Transform pos: 66.5,-25.5 parent: 2 - - uid: 3055 + - uid: 3283 components: - type: Transform pos: 65.5,-25.5 parent: 2 - - uid: 3056 + - uid: 3284 components: - type: Transform pos: 64.5,-25.5 parent: 2 - - uid: 3057 + - uid: 3285 components: - type: Transform pos: 64.5,-26.5 parent: 2 - - uid: 3058 + - uid: 3286 components: - type: Transform pos: 64.5,-27.5 parent: 2 - - uid: 3059 + - uid: 3287 components: - type: Transform pos: 64.5,-28.5 parent: 2 - - uid: 3060 + - uid: 3288 components: - type: Transform pos: 64.5,-29.5 parent: 2 - - uid: 3061 + - uid: 3289 components: - type: Transform pos: 64.5,-30.5 parent: 2 - - uid: 3062 + - uid: 3290 components: - type: Transform pos: 64.5,-31.5 parent: 2 - - uid: 3063 + - uid: 3291 components: - type: Transform pos: 69.5,-25.5 parent: 2 - - uid: 3064 + - uid: 3292 components: - type: Transform pos: 69.5,-24.5 parent: 2 - - uid: 3065 + - uid: 3293 components: - type: Transform pos: 69.5,-23.5 parent: 2 - - uid: 3066 + - uid: 3294 components: - type: Transform pos: 69.5,-22.5 parent: 2 - - uid: 3067 + - uid: 3295 components: - type: Transform pos: 68.5,-22.5 parent: 2 - - uid: 3068 + - uid: 3296 components: - type: Transform pos: 67.5,-22.5 parent: 2 - - uid: 3069 + - uid: 3297 components: - type: Transform pos: 66.5,-22.5 parent: 2 - - uid: 3070 + - uid: 3298 components: - type: Transform pos: 65.5,-22.5 parent: 2 - - uid: 3071 + - uid: 3299 components: - type: Transform pos: 64.5,-22.5 parent: 2 - - uid: 3072 + - uid: 3300 components: - type: Transform pos: 63.5,-22.5 parent: 2 - - uid: 3073 + - uid: 3301 components: - type: Transform pos: 62.5,-22.5 parent: 2 - - uid: 3074 + - uid: 3302 components: - type: Transform pos: 61.5,-22.5 parent: 2 - - uid: 3075 + - uid: 3303 components: - type: Transform pos: 60.5,-22.5 parent: 2 - - uid: 3076 + - uid: 3304 components: - type: Transform pos: 61.5,-32.5 parent: 2 - - uid: 3077 + - uid: 3305 components: - type: Transform pos: 60.5,-32.5 parent: 2 - - uid: 3078 + - uid: 3306 components: - type: Transform pos: 60.5,-31.5 parent: 2 - - uid: 3079 + - uid: 3307 components: - type: Transform pos: 60.5,-30.5 parent: 2 - - uid: 3080 + - uid: 3308 components: - type: Transform pos: 60.5,-29.5 parent: 2 - - uid: 3081 + - uid: 3309 components: - type: Transform pos: 60.5,-28.5 parent: 2 - - uid: 3082 + - uid: 3310 components: - type: Transform pos: 60.5,-27.5 parent: 2 - - uid: 3083 + - uid: 3311 components: - type: Transform pos: 60.5,-26.5 parent: 2 - - uid: 3084 + - uid: 3312 components: - type: Transform pos: 60.5,-25.5 parent: 2 - - uid: 3085 + - uid: 3313 components: - type: Transform pos: 60.5,-24.5 parent: 2 - - uid: 3086 + - uid: 3314 components: - type: Transform pos: 60.5,-23.5 parent: 2 - - uid: 3087 + - uid: 3315 components: - type: Transform pos: 46.5,-27.5 parent: 2 - - uid: 3088 + - uid: 3316 components: - type: Transform pos: 47.5,-27.5 parent: 2 - - uid: 3089 + - uid: 3317 components: - type: Transform pos: 48.5,-27.5 parent: 2 - - uid: 3090 + - uid: 3318 components: - type: Transform pos: 49.5,-27.5 parent: 2 - - uid: 3091 + - uid: 3319 components: - type: Transform pos: 46.5,-26.5 parent: 2 - - uid: 3092 + - uid: 3320 components: - type: Transform pos: 45.5,-26.5 parent: 2 - - uid: 3093 + - uid: 3321 components: - type: Transform pos: 44.5,-26.5 parent: 2 - - uid: 3094 + - uid: 3322 components: - type: Transform pos: 44.5,-27.5 parent: 2 - - uid: 3095 + - uid: 3323 components: - type: Transform pos: 44.5,-28.5 parent: 2 - - uid: 3096 + - uid: 3324 components: - type: Transform pos: 44.5,-29.5 parent: 2 - - uid: 3097 + - uid: 3325 components: - type: Transform pos: 44.5,-30.5 parent: 2 - - uid: 3099 + - uid: 3326 components: - type: Transform pos: 60.5,-15.5 parent: 2 - - uid: 3105 + - uid: 3327 components: - type: Transform pos: 49.5,-28.5 parent: 2 - - uid: 3106 + - uid: 3328 components: - type: Transform pos: 50.5,-28.5 parent: 2 - - uid: 3107 + - uid: 3329 components: - type: Transform pos: 51.5,-28.5 parent: 2 - - uid: 3108 + - uid: 3330 components: - type: Transform pos: 52.5,-28.5 parent: 2 - - uid: 3109 + - uid: 3331 components: - type: Transform pos: 53.5,-28.5 parent: 2 - - uid: 3110 + - uid: 3332 components: - type: Transform pos: 54.5,-28.5 parent: 2 - - uid: 3111 + - uid: 3333 components: - type: Transform pos: 55.5,-28.5 parent: 2 - - uid: 3112 + - uid: 3334 components: - type: Transform pos: 56.5,-28.5 parent: 2 - - uid: 3113 + - uid: 3335 components: - type: Transform pos: 57.5,-28.5 parent: 2 - - uid: 3114 + - uid: 3336 components: - type: Transform pos: 57.5,-29.5 parent: 2 - - uid: 3115 + - uid: 3337 components: - type: Transform pos: 78.5,-35.5 parent: 2 - - uid: 3116 + - uid: 3338 components: - type: Transform pos: 78.5,-36.5 parent: 2 - - uid: 3117 + - uid: 3339 components: - type: Transform pos: 78.5,-37.5 parent: 2 - - uid: 3118 + - uid: 3340 components: - type: Transform pos: 78.5,-38.5 parent: 2 - - uid: 3119 + - uid: 3341 components: - type: Transform pos: 78.5,-39.5 parent: 2 - - uid: 3120 + - uid: 3342 components: - type: Transform pos: 78.5,-40.5 parent: 2 - - uid: 3121 + - uid: 3343 components: - type: Transform pos: 78.5,-41.5 parent: 2 - - uid: 3122 + - uid: 3344 components: - type: Transform pos: 77.5,-41.5 parent: 2 - - uid: 3123 + - uid: 3345 components: - type: Transform pos: 76.5,-41.5 parent: 2 - - uid: 3124 + - uid: 3346 components: - type: Transform pos: 75.5,-41.5 parent: 2 - - uid: 3125 + - uid: 3347 components: - type: Transform pos: 77.5,-39.5 parent: 2 - - uid: 3126 + - uid: 3348 components: - type: Transform pos: 76.5,-39.5 parent: 2 - - uid: 3127 + - uid: 3349 components: - type: Transform pos: 75.5,-39.5 parent: 2 - - uid: 3128 + - uid: 3350 components: - type: Transform pos: 77.5,-37.5 parent: 2 - - uid: 3129 + - uid: 3351 components: - type: Transform pos: 76.5,-37.5 parent: 2 - - uid: 3130 + - uid: 3352 components: - type: Transform pos: 75.5,-37.5 parent: 2 - - uid: 3131 + - uid: 3353 components: - type: Transform pos: 77.5,-35.5 parent: 2 - - uid: 3132 + - uid: 3354 components: - type: Transform pos: 76.5,-35.5 parent: 2 - - uid: 3133 + - uid: 3355 components: - type: Transform pos: 75.5,-35.5 parent: 2 - - uid: 3134 + - uid: 3356 components: - type: Transform pos: 79.5,-41.5 parent: 2 - - uid: 3135 + - uid: 3357 components: - type: Transform pos: 80.5,-41.5 parent: 2 - - uid: 3136 + - uid: 3358 components: - type: Transform pos: 74.5,-41.5 parent: 2 - - uid: 3137 + - uid: 3359 components: - type: Transform pos: 74.5,-35.5 parent: 2 - - uid: 3138 + - uid: 3360 components: - type: Transform pos: 74.5,-37.5 parent: 2 - - uid: 3139 + - uid: 3361 components: - type: Transform pos: 74.5,-39.5 parent: 2 - - uid: 3140 + - uid: 3362 components: - type: Transform pos: 61.5,-54.5 parent: 2 - - uid: 3141 + - uid: 3363 components: - type: Transform pos: 62.5,-54.5 parent: 2 - - uid: 3142 + - uid: 3364 components: - type: Transform pos: 62.5,-53.5 parent: 2 - - uid: 3143 + - uid: 3365 components: - type: Transform pos: 62.5,-52.5 parent: 2 - - uid: 3144 + - uid: 3366 components: - type: Transform pos: 62.5,-51.5 parent: 2 - - uid: 3145 + - uid: 3367 components: - type: Transform pos: 62.5,-50.5 parent: 2 - - uid: 3146 + - uid: 3368 components: - type: Transform pos: 62.5,-49.5 parent: 2 - - uid: 3147 + - uid: 3369 components: - type: Transform pos: 62.5,-48.5 parent: 2 - - uid: 3148 + - uid: 3370 components: - type: Transform pos: 62.5,-47.5 parent: 2 - - uid: 3149 + - uid: 3371 components: - type: Transform pos: 61.5,-46.5 parent: 2 - - uid: 3150 + - uid: 3372 components: - type: Transform pos: 61.5,-45.5 parent: 2 - - uid: 3151 + - uid: 3373 components: - type: Transform pos: 61.5,-44.5 parent: 2 - - uid: 3152 + - uid: 3374 components: - type: Transform pos: 60.5,-44.5 parent: 2 - - uid: 3153 + - uid: 3375 components: - type: Transform pos: 59.5,-44.5 parent: 2 - - uid: 3154 + - uid: 3376 components: - type: Transform pos: 58.5,-44.5 parent: 2 - - uid: 3155 + - uid: 3377 components: - type: Transform pos: 61.5,-47.5 parent: 2 - - uid: 3156 + - uid: 3378 components: - type: Transform pos: 60.5,-47.5 parent: 2 - - uid: 3157 + - uid: 3379 components: - type: Transform pos: 59.5,-47.5 parent: 2 - - uid: 3158 + - uid: 3380 components: - type: Transform pos: 58.5,-47.5 parent: 2 - - uid: 3159 + - uid: 3381 components: - type: Transform pos: 57.5,-47.5 parent: 2 - - uid: 3160 + - uid: 3382 components: - type: Transform pos: 56.5,-47.5 parent: 2 - - uid: 3161 + - uid: 3383 components: - type: Transform pos: 55.5,-47.5 parent: 2 - - uid: 3162 + - uid: 3384 components: - type: Transform pos: 54.5,-47.5 parent: 2 - - uid: 3163 + - uid: 3385 components: - type: Transform pos: 53.5,-47.5 parent: 2 - - uid: 3164 + - uid: 3386 components: - type: Transform pos: 55.5,-44.5 parent: 2 - - uid: 3165 + - uid: 3387 components: - type: Transform pos: 54.5,-44.5 parent: 2 - - uid: 3166 + - uid: 3388 components: - type: Transform pos: 53.5,-44.5 parent: 2 - - uid: 3167 + - uid: 3389 components: - type: Transform pos: 52.5,-44.5 parent: 2 - - uid: 3168 + - uid: 3390 components: - type: Transform pos: 51.5,-44.5 parent: 2 - - uid: 3169 + - uid: 3391 components: - type: Transform pos: 50.5,-44.5 parent: 2 - - uid: 3170 + - uid: 3392 components: - type: Transform pos: 49.5,-44.5 parent: 2 - - uid: 3171 + - uid: 3393 components: - type: Transform pos: 48.5,-44.5 parent: 2 - - uid: 3172 + - uid: 3394 components: - type: Transform pos: 47.5,-44.5 parent: 2 - - uid: 3173 + - uid: 3395 components: - type: Transform pos: 46.5,-44.5 parent: 2 - - uid: 3174 + - uid: 3396 components: - type: Transform pos: 45.5,-44.5 parent: 2 - - uid: 3175 + - uid: 3397 components: - type: Transform pos: 44.5,-44.5 parent: 2 - - uid: 3176 + - uid: 3398 components: - type: Transform pos: 44.5,-45.5 parent: 2 - - uid: 3177 + - uid: 3399 components: - type: Transform pos: 44.5,-46.5 parent: 2 - - uid: 3178 + - uid: 3400 components: - type: Transform pos: 44.5,-47.5 parent: 2 - - uid: 3179 + - uid: 3401 components: - type: Transform pos: 44.5,-48.5 parent: 2 - - uid: 3180 + - uid: 3402 components: - type: Transform pos: 44.5,-43.5 parent: 2 - - uid: 3181 + - uid: 3403 components: - type: Transform pos: 44.5,-42.5 parent: 2 - - uid: 3182 + - uid: 3404 components: - type: Transform pos: 44.5,-41.5 parent: 2 - - uid: 3183 + - uid: 3405 components: - type: Transform pos: 44.5,-40.5 parent: 2 - - uid: 3184 + - uid: 3406 components: - type: Transform pos: 44.5,-39.5 parent: 2 - - uid: 3185 + - uid: 3407 components: - type: Transform pos: 44.5,-38.5 parent: 2 - - uid: 3186 + - uid: 3408 components: - type: Transform pos: 44.5,-37.5 parent: 2 - - uid: 3187 + - uid: 3409 components: - type: Transform pos: 44.5,-36.5 parent: 2 - - uid: 3188 + - uid: 3410 components: - type: Transform pos: 44.5,-35.5 parent: 2 - - uid: 3189 + - uid: 3411 components: - type: Transform pos: 44.5,-34.5 parent: 2 - - uid: 3190 + - uid: 3412 components: - type: Transform pos: 44.5,-33.5 parent: 2 - - uid: 3191 + - uid: 3413 components: - type: Transform pos: 44.5,-32.5 parent: 2 - - uid: 3192 + - uid: 3414 components: - type: Transform pos: 45.5,-32.5 parent: 2 - - uid: 3193 + - uid: 3415 components: - type: Transform pos: 46.5,-32.5 parent: 2 - - uid: 3194 + - uid: 3416 components: - type: Transform pos: 47.5,-32.5 parent: 2 - - uid: 3195 + - uid: 3417 components: - type: Transform pos: 48.5,-32.5 parent: 2 - - uid: 3196 + - uid: 3418 components: - type: Transform pos: 49.5,-32.5 parent: 2 - - uid: 3197 + - uid: 3419 components: - type: Transform pos: 50.5,-32.5 parent: 2 - - uid: 3198 + - uid: 3420 components: - type: Transform pos: 51.5,-32.5 parent: 2 - - uid: 3199 + - uid: 3421 components: - type: Transform pos: 52.5,-32.5 parent: 2 - - uid: 3200 + - uid: 3422 components: - type: Transform pos: 53.5,-32.5 parent: 2 - - uid: 3201 + - uid: 3423 components: - type: Transform pos: 54.5,-32.5 parent: 2 - - uid: 3202 + - uid: 3424 components: - type: Transform pos: 55.5,-32.5 parent: 2 - - uid: 3203 + - uid: 3425 components: - type: Transform pos: 56.5,-32.5 parent: 2 - - uid: 3204 + - uid: 3426 components: - type: Transform pos: 57.5,-32.5 parent: 2 - - uid: 3205 + - uid: 3427 components: - type: Transform pos: 58.5,-32.5 parent: 2 - - uid: 3206 + - uid: 3428 components: - type: Transform pos: 43.5,-32.5 parent: 2 - - uid: 3207 + - uid: 3429 components: - type: Transform pos: 42.5,-32.5 parent: 2 - - uid: 3208 + - uid: 3430 components: - type: Transform pos: 41.5,-32.5 parent: 2 - - uid: 3209 + - uid: 3431 components: - type: Transform pos: 40.5,-32.5 parent: 2 - - uid: 3210 + - uid: 3432 components: - type: Transform pos: 39.5,-32.5 parent: 2 - - uid: 3211 + - uid: 3433 components: - type: Transform pos: 38.5,-32.5 parent: 2 - - uid: 3212 + - uid: 3434 components: - type: Transform pos: 37.5,-32.5 parent: 2 - - uid: 3213 + - uid: 3435 components: - type: Transform pos: 36.5,-32.5 parent: 2 - - uid: 3214 + - uid: 3436 components: - type: Transform pos: 35.5,-32.5 parent: 2 - - uid: 3215 + - uid: 3437 components: - type: Transform pos: 34.5,-32.5 parent: 2 - - uid: 3216 + - uid: 3438 components: - type: Transform pos: 43.5,-35.5 parent: 2 - - uid: 3217 + - uid: 3439 components: - type: Transform pos: 42.5,-35.5 parent: 2 - - uid: 3218 + - uid: 3440 components: - type: Transform pos: 38.5,-40.5 parent: 2 - - uid: 3219 + - uid: 3441 components: - type: Transform pos: 38.5,-39.5 parent: 2 - - uid: 3220 + - uid: 3442 components: - type: Transform pos: 38.5,-38.5 parent: 2 - - uid: 3221 + - uid: 3443 components: - type: Transform pos: 38.5,-37.5 parent: 2 - - uid: 3222 + - uid: 3444 components: - type: Transform pos: 39.5,-37.5 parent: 2 - - uid: 3223 + - uid: 3445 components: - type: Transform pos: 40.5,-37.5 parent: 2 - - uid: 3224 + - uid: 3446 components: - type: Transform pos: 41.5,-37.5 parent: 2 - - uid: 3225 + - uid: 3447 components: - type: Transform pos: 37.5,-37.5 parent: 2 - - uid: 3226 + - uid: 3448 components: - type: Transform pos: 36.5,-37.5 parent: 2 - - uid: 3227 + - uid: 3449 components: - type: Transform pos: 35.5,-37.5 parent: 2 - - uid: 3228 + - uid: 3450 components: - type: Transform pos: 39.5,-40.5 parent: 2 - - uid: 3229 + - uid: 3451 components: - type: Transform pos: 38.5,-41.5 parent: 2 - - uid: 3230 + - uid: 3452 components: - type: Transform pos: 38.5,-42.5 parent: 2 - - uid: 3231 + - uid: 3453 components: - type: Transform pos: 39.5,-43.5 parent: 2 - - uid: 3232 + - uid: 3454 components: - type: Transform pos: 38.5,-43.5 parent: 2 - - uid: 3233 + - uid: 3455 components: - type: Transform pos: 37.5,-43.5 parent: 2 - - uid: 3234 + - uid: 3456 components: - type: Transform pos: 51.5,-33.5 parent: 2 - - uid: 3235 + - uid: 3457 components: - type: Transform pos: 51.5,-34.5 parent: 2 - - uid: 3236 + - uid: 3458 components: - type: Transform pos: 27.5,11.5 parent: 2 - - uid: 3237 + - uid: 3459 components: - type: Transform pos: 30.5,14.5 parent: 2 - - uid: 3238 + - uid: 3460 components: - type: Transform pos: 34.5,15.5 parent: 2 - - uid: 3239 + - uid: 3461 components: - type: Transform pos: 34.5,13.5 parent: 2 - - uid: 3240 + - uid: 3462 components: - type: Transform pos: 25.5,13.5 parent: 2 - - uid: 3241 + - uid: 3463 components: - type: Transform pos: 34.5,14.5 parent: 2 - - uid: 3242 + - uid: 3464 components: - type: Transform pos: 34.5,16.5 parent: 2 - - uid: 3243 + - uid: 3465 components: - type: Transform pos: 36.5,-8.5 parent: 2 - - uid: 3244 + - uid: 3466 components: - type: Transform pos: 30.5,-20.5 parent: 2 - - uid: 3245 + - uid: 3467 components: - type: Transform pos: 21.5,8.5 parent: 2 - - uid: 3246 + - uid: 3468 components: - type: Transform pos: 20.5,8.5 parent: 2 - - uid: 3247 + - uid: 3469 components: - type: Transform pos: 20.5,7.5 parent: 2 - - uid: 3248 + - uid: 3470 components: - type: Transform pos: 20.5,6.5 parent: 2 - - uid: 3249 + - uid: 3471 components: - type: Transform pos: 20.5,5.5 parent: 2 - - uid: 3250 + - uid: 3472 components: - type: Transform pos: 20.5,4.5 parent: 2 - - uid: 3251 + - uid: 3473 components: - type: Transform pos: 20.5,3.5 parent: 2 - - uid: 3252 + - uid: 3474 components: - type: Transform pos: 20.5,2.5 parent: 2 - - uid: 3253 + - uid: 3475 components: - type: Transform pos: 20.5,11.5 parent: 2 - - uid: 3254 + - uid: 3476 components: - type: Transform pos: 21.5,11.5 parent: 2 - - uid: 3255 + - uid: 3477 components: - type: Transform pos: 21.5,12.5 parent: 2 - - uid: 3256 + - uid: 3478 components: - type: Transform pos: 21.5,13.5 parent: 2 - - uid: 3257 + - uid: 3479 components: - type: Transform pos: 21.5,14.5 parent: 2 - - uid: 3258 + - uid: 3480 components: - type: Transform pos: 21.5,16.5 parent: 2 - - uid: 3259 + - uid: 3481 components: - type: Transform pos: 22.5,16.5 parent: 2 - - uid: 3260 + - uid: 3482 components: - type: Transform pos: 23.5,16.5 parent: 2 - - uid: 3261 + - uid: 3483 components: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 3262 + - uid: 3484 components: - type: Transform pos: 26.5,16.5 parent: 2 - - uid: 3263 + - uid: 3485 components: - type: Transform pos: 27.5,16.5 parent: 2 - - uid: 3264 + - uid: 3486 components: - type: Transform pos: 28.5,16.5 parent: 2 - - uid: 3265 + - uid: 3487 components: - type: Transform pos: 29.5,16.5 parent: 2 - - uid: 3266 + - uid: 3488 components: - type: Transform pos: 30.5,16.5 parent: 2 - - uid: 3267 + - uid: 3489 components: - type: Transform pos: 31.5,17.5 parent: 2 - - uid: 3268 + - uid: 3490 components: - type: Transform pos: 32.5,17.5 parent: 2 - - uid: 3269 + - uid: 3491 components: - type: Transform pos: 33.5,17.5 parent: 2 - - uid: 3270 + - uid: 3492 components: - type: Transform pos: 35.5,17.5 parent: 2 - - uid: 3271 + - uid: 3493 components: - type: Transform pos: 36.5,17.5 parent: 2 - - uid: 3272 + - uid: 3494 components: - type: Transform pos: 37.5,17.5 parent: 2 - - uid: 3273 + - uid: 3495 components: - type: Transform pos: 38.5,17.5 parent: 2 - - uid: 3274 + - uid: 3496 components: - type: Transform pos: 39.5,17.5 parent: 2 - - uid: 3275 + - uid: 3497 components: - type: Transform pos: 22.5,17.5 parent: 2 - - uid: 3276 + - uid: 3498 components: - type: Transform pos: 22.5,18.5 parent: 2 - - uid: 3277 + - uid: 3499 components: - type: Transform pos: 13.5,8.5 parent: 2 - - uid: 3278 + - uid: 3500 components: - type: Transform pos: 14.5,8.5 parent: 2 - - uid: 3279 + - uid: 3501 components: - type: Transform pos: 15.5,8.5 parent: 2 - - uid: 3280 + - uid: 3502 components: - type: Transform pos: 16.5,8.5 parent: 2 - - uid: 3281 + - uid: 3503 components: - type: Transform pos: 16.5,7.5 parent: 2 - - uid: 3282 + - uid: 3504 components: - type: Transform pos: 16.5,6.5 parent: 2 - - uid: 3283 + - uid: 3505 components: - type: Transform pos: 16.5,5.5 parent: 2 - - uid: 3284 + - uid: 3506 components: - type: Transform pos: 16.5,4.5 parent: 2 - - uid: 3285 + - uid: 3507 components: - type: Transform pos: 16.5,3.5 parent: 2 - - uid: 3286 + - uid: 3508 components: - type: Transform pos: 12.5,7.5 parent: 2 - - uid: 3287 + - uid: 3509 components: - type: Transform pos: 12.5,8.5 parent: 2 - - uid: 3288 + - uid: 3510 components: - type: Transform pos: 12.5,9.5 parent: 2 - - uid: 3289 + - uid: 3511 components: - type: Transform pos: 12.5,10.5 parent: 2 - - uid: 3290 + - uid: 3512 components: - type: Transform pos: 12.5,11.5 parent: 2 - - uid: 3291 + - uid: 3513 components: - type: Transform pos: 15.5,11.5 parent: 2 - - uid: 3292 + - uid: 3514 components: - type: Transform pos: 15.5,12.5 parent: 2 - - uid: 3293 + - uid: 3515 components: - type: Transform pos: 15.5,13.5 parent: 2 - - uid: 3294 + - uid: 3516 components: - type: Transform pos: 15.5,14.5 parent: 2 - - uid: 3295 + - uid: 3517 components: - type: Transform pos: 14.5,13.5 parent: 2 - - uid: 3296 + - uid: 3518 components: - type: Transform pos: 13.5,13.5 parent: 2 - - uid: 3297 + - uid: 3519 components: - type: Transform pos: 12.5,13.5 parent: 2 - - uid: 3298 + - uid: 3520 components: - type: Transform pos: 11.5,13.5 parent: 2 - - uid: 3299 + - uid: 3521 components: - type: Transform pos: 11.5,12.5 parent: 2 - - uid: 3300 + - uid: 3522 components: - type: Transform pos: 11.5,14.5 parent: 2 - - uid: 3301 + - uid: 3523 components: - type: Transform pos: 10.5,14.5 parent: 2 - - uid: 3302 + - uid: 3524 components: - type: Transform pos: 9.5,14.5 parent: 2 - - uid: 3303 + - uid: 3525 components: - type: Transform pos: 8.5,14.5 parent: 2 - - uid: 3304 + - uid: 3526 components: - type: Transform pos: 8.5,15.5 parent: 2 - - uid: 3305 + - uid: 3527 components: - type: Transform pos: 8.5,16.5 parent: 2 - - uid: 3306 + - uid: 3528 components: - type: Transform pos: 8.5,17.5 parent: 2 - - uid: 3307 + - uid: 3529 components: - type: Transform pos: 9.5,17.5 parent: 2 - - uid: 3308 + - uid: 3530 components: - type: Transform pos: 8.5,19.5 parent: 2 - - uid: 3309 + - uid: 3531 components: - type: Transform pos: 8.5,20.5 parent: 2 - - uid: 3310 + - uid: 3532 components: - type: Transform pos: 8.5,21.5 parent: 2 - - uid: 3311 + - uid: 3533 components: - type: Transform pos: 8.5,22.5 parent: 2 - - uid: 3312 + - uid: 3534 components: - type: Transform pos: 8.5,23.5 parent: 2 - - uid: 3313 + - uid: 3535 components: - type: Transform pos: 8.5,24.5 parent: 2 - - uid: 3314 + - uid: 3536 components: - type: Transform pos: 7.5,24.5 parent: 2 - - uid: 3315 + - uid: 3537 components: - type: Transform pos: 6.5,24.5 parent: 2 - - uid: 3316 + - uid: 3538 components: - type: Transform pos: 5.5,24.5 parent: 2 - - uid: 3317 + - uid: 3539 components: - type: Transform pos: 4.5,24.5 parent: 2 - - uid: 3318 + - uid: 3540 components: - type: Transform pos: 3.5,24.5 parent: 2 - - uid: 3319 + - uid: 3541 components: - type: Transform pos: 2.5,24.5 parent: 2 - - uid: 3320 + - uid: 3542 components: - type: Transform pos: 1.5,24.5 parent: 2 - - uid: 3321 + - uid: 3543 components: - type: Transform pos: 0.5,24.5 parent: 2 - - uid: 3322 + - uid: 3544 components: - type: Transform pos: -0.5,24.5 parent: 2 - - uid: 3323 + - uid: 3545 components: - type: Transform pos: -1.5,24.5 parent: 2 - - uid: 3324 + - uid: 3546 components: - type: Transform pos: -2.5,24.5 parent: 2 - - uid: 3325 + - uid: 3547 components: - type: Transform pos: -3.5,24.5 parent: 2 - - uid: 3326 + - uid: 3548 components: - type: Transform pos: -4.5,24.5 parent: 2 - - uid: 3327 + - uid: 3549 components: - type: Transform pos: -5.5,24.5 parent: 2 - - uid: 3328 + - uid: 3550 components: - type: Transform pos: -6.5,24.5 parent: 2 - - uid: 3329 + - uid: 3551 components: - type: Transform pos: -7.5,24.5 parent: 2 - - uid: 3330 + - uid: 3552 components: - type: Transform pos: -7.5,23.5 parent: 2 - - uid: 3331 + - uid: 3553 components: - type: Transform pos: -7.5,22.5 parent: 2 - - uid: 3332 + - uid: 3554 components: - type: Transform pos: -7.5,21.5 parent: 2 - - uid: 3333 + - uid: 3555 components: - type: Transform pos: -7.5,20.5 parent: 2 - - uid: 3334 + - uid: 3556 components: - type: Transform pos: 7.5,21.5 parent: 2 - - uid: 3335 + - uid: 3557 components: - type: Transform pos: 6.5,21.5 parent: 2 - - uid: 3336 + - uid: 3558 components: - type: Transform pos: 5.5,21.5 parent: 2 - - uid: 3337 + - uid: 3559 components: - type: Transform pos: 4.5,21.5 parent: 2 - - uid: 3338 + - uid: 3560 components: - type: Transform pos: 3.5,21.5 parent: 2 - - uid: 3339 + - uid: 3561 components: - type: Transform pos: 2.5,21.5 parent: 2 - - uid: 3340 + - uid: 3562 components: - type: Transform pos: 1.5,21.5 parent: 2 - - uid: 3341 + - uid: 3563 components: - type: Transform pos: 0.5,21.5 parent: 2 - - uid: 3342 + - uid: 3564 components: - type: Transform pos: -0.5,21.5 parent: 2 - - uid: 3343 + - uid: 3565 components: - type: Transform pos: -1.5,21.5 parent: 2 - - uid: 3344 + - uid: 3566 components: - type: Transform pos: -2.5,21.5 parent: 2 - - uid: 3345 + - uid: 3567 components: - type: Transform pos: -3.5,21.5 parent: 2 - - uid: 3346 + - uid: 3568 components: - type: Transform pos: -4.5,21.5 parent: 2 - - uid: 3347 + - uid: 3569 components: - type: Transform pos: -5.5,21.5 parent: 2 - - uid: 3348 + - uid: 3570 components: - type: Transform pos: -6.5,21.5 parent: 2 - - uid: 3349 + - uid: 3571 components: - type: Transform pos: 2.5,20.5 parent: 2 - - uid: 3350 + - uid: 3572 components: - type: Transform pos: 0.5,25.5 parent: 2 - - uid: 3351 + - uid: 3573 components: - type: Transform pos: 0.5,26.5 parent: 2 - - uid: 3352 + - uid: 3574 components: - type: Transform pos: -8.5,22.5 parent: 2 - - uid: 3353 + - uid: 3575 components: - type: Transform pos: 9.5,22.5 parent: 2 - - uid: 3354 + - uid: 3576 components: - type: Transform pos: 6.5,16.5 parent: 2 - - uid: 3355 + - uid: 3577 components: - type: Transform pos: 5.5,16.5 parent: 2 - - uid: 3356 + - uid: 3578 components: - type: Transform pos: 4.5,16.5 parent: 2 - - uid: 3357 + - uid: 3579 components: - type: Transform pos: 4.5,15.5 parent: 2 - - uid: 3358 + - uid: 3580 components: - type: Transform pos: 4.5,14.5 parent: 2 - - uid: 3359 + - uid: 3581 components: - type: Transform pos: -7.5,16.5 parent: 2 - - uid: 3360 + - uid: 3582 components: - type: Transform pos: -6.5,16.5 parent: 2 - - uid: 3361 + - uid: 3583 components: - type: Transform pos: -5.5,16.5 parent: 2 - - uid: 3362 + - uid: 3584 components: - type: Transform pos: -4.5,16.5 parent: 2 - - uid: 3363 + - uid: 3585 components: - type: Transform pos: -3.5,16.5 parent: 2 - - uid: 3364 + - uid: 3586 components: - type: Transform pos: -2.5,16.5 parent: 2 - - uid: 3365 + - uid: 3587 components: - type: Transform pos: -4.5,15.5 parent: 2 - - uid: 3366 + - uid: 3588 components: - type: Transform pos: -4.5,14.5 parent: 2 - - uid: 3367 + - uid: 3589 components: - type: Transform pos: -8.5,8.5 parent: 2 - - uid: 3368 + - uid: 3590 components: - type: Transform pos: -8.5,9.5 parent: 2 - - uid: 3369 + - uid: 3591 components: - type: Transform pos: -8.5,10.5 parent: 2 - - uid: 3370 + - uid: 3592 components: - type: Transform pos: -7.5,10.5 parent: 2 - - uid: 3371 + - uid: 3593 components: - type: Transform pos: -6.5,10.5 parent: 2 - - uid: 3372 + - uid: 3594 components: - type: Transform pos: -5.5,10.5 parent: 2 - - uid: 3373 + - uid: 3595 components: - type: Transform pos: -4.5,10.5 parent: 2 - - uid: 3374 + - uid: 3596 components: - type: Transform pos: -3.5,10.5 parent: 2 - - uid: 3375 + - uid: 3597 components: - type: Transform pos: -9.5,9.5 parent: 2 - - uid: 3376 + - uid: 3598 components: - type: Transform pos: -10.5,9.5 parent: 2 - - uid: 3377 + - uid: 3599 components: - type: Transform pos: -10.5,8.5 parent: 2 - - uid: 3378 + - uid: 3600 components: - type: Transform pos: -10.5,7.5 parent: 2 - - uid: 3379 + - uid: 3601 components: - type: Transform pos: 9.5,11.5 parent: 2 - - uid: 3380 + - uid: 3602 components: - type: Transform pos: 9.5,10.5 parent: 2 - - uid: 3381 + - uid: 3603 components: - type: Transform pos: 9.5,9.5 parent: 2 - - uid: 3382 + - uid: 3604 components: - type: Transform pos: 9.5,8.5 parent: 2 - - uid: 3383 + - uid: 3605 components: - type: Transform pos: 9.5,7.5 parent: 2 - - uid: 3384 + - uid: 3606 components: - type: Transform pos: 9.5,6.5 parent: 2 - - uid: 3385 + - uid: 3607 components: - type: Transform pos: 8.5,6.5 parent: 2 - - uid: 3386 + - uid: 3608 components: - type: Transform pos: 7.5,6.5 parent: 2 - - uid: 3387 + - uid: 3609 components: - type: Transform pos: 6.5,6.5 parent: 2 - - uid: 3388 + - uid: 3610 components: - type: Transform pos: 5.5,6.5 parent: 2 - - uid: 3389 + - uid: 3611 components: - type: Transform pos: 4.5,6.5 parent: 2 - - uid: 3390 + - uid: 3612 components: - type: Transform pos: 4.5,7.5 parent: 2 - - uid: 3391 + - uid: 3613 components: - type: Transform pos: 4.5,8.5 parent: 2 - - uid: 3392 + - uid: 3614 components: - type: Transform pos: 4.5,9.5 parent: 2 - - uid: 3393 + - uid: 3615 components: - type: Transform pos: 4.5,10.5 parent: 2 - - uid: 3394 + - uid: 3616 components: - type: Transform pos: 4.5,11.5 parent: 2 - - uid: 3395 + - uid: 3617 components: - type: Transform pos: 5.5,11.5 parent: 2 - - uid: 3396 + - uid: 3618 components: - type: Transform pos: 6.5,11.5 parent: 2 - - uid: 3397 + - uid: 3619 components: - type: Transform pos: 7.5,11.5 parent: 2 - - uid: 3398 + - uid: 3620 components: - type: Transform pos: 8.5,11.5 parent: 2 - - uid: 3399 + - uid: 3621 components: - type: Transform pos: 10.5,8.5 parent: 2 - - uid: 3400 + - uid: 3622 components: - type: Transform pos: 0.5,17.5 parent: 2 - - uid: 3401 + - uid: 3623 components: - type: Transform pos: 0.5,16.5 parent: 2 - - uid: 3402 + - uid: 3624 components: - type: Transform pos: 0.5,15.5 parent: 2 - - uid: 3403 + - uid: 3625 components: - type: Transform pos: 0.5,14.5 parent: 2 - - uid: 3404 + - uid: 3626 components: - type: Transform pos: 0.5,13.5 parent: 2 - - uid: 3405 + - uid: 3627 components: - type: Transform pos: 0.5,12.5 parent: 2 - - uid: 3406 + - uid: 3628 components: - type: Transform pos: 0.5,11.5 parent: 2 - - uid: 3407 + - uid: 3629 components: - type: Transform pos: 0.5,10.5 parent: 2 - - uid: 3408 + - uid: 3630 components: - type: Transform pos: 0.5,9.5 parent: 2 - - uid: 3409 + - uid: 3631 components: - type: Transform pos: 0.5,8.5 parent: 2 - - uid: 3410 + - uid: 3632 components: - type: Transform pos: 0.5,7.5 parent: 2 - - uid: 3411 + - uid: 3633 components: - type: Transform pos: 0.5,6.5 parent: 2 - - uid: 3412 + - uid: 3634 components: - type: Transform pos: 0.5,5.5 parent: 2 - - uid: 3413 + - uid: 3635 components: - type: Transform pos: 0.5,4.5 parent: 2 - - uid: 3414 + - uid: 3636 components: - type: Transform pos: 0.5,3.5 parent: 2 - - uid: 3415 + - uid: 3637 components: - type: Transform pos: 0.5,2.5 parent: 2 - - uid: 3416 + - uid: 3638 components: - type: Transform pos: 0.5,1.5 parent: 2 - - uid: 3417 + - uid: 3639 components: - type: Transform pos: 1.5,1.5 parent: 2 - - uid: 3418 + - uid: 3640 components: - type: Transform pos: 2.5,1.5 parent: 2 - - uid: 3419 + - uid: 3641 components: - type: Transform pos: -0.5,1.5 parent: 2 - - uid: 3420 + - uid: 3642 components: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 3421 + - uid: 3643 components: - type: Transform pos: -0.5,5.5 parent: 2 - - uid: 3422 + - uid: 3644 components: - type: Transform pos: -1.5,5.5 parent: 2 - - uid: 3423 + - uid: 3645 components: - type: Transform pos: -0.5,3.5 parent: 2 - - uid: 3424 + - uid: 3646 components: - type: Transform pos: -1.5,3.5 parent: 2 - - uid: 3425 + - uid: 3647 components: - type: Transform pos: -2.5,3.5 parent: 2 - - uid: 3426 + - uid: 3648 components: - type: Transform pos: -3.5,3.5 parent: 2 - - uid: 3427 + - uid: 3649 components: - type: Transform pos: -4.5,3.5 parent: 2 - - uid: 3428 + - uid: 3650 components: - type: Transform pos: -5.5,3.5 parent: 2 - - uid: 3429 + - uid: 3651 components: - type: Transform pos: -6.5,3.5 parent: 2 - - uid: 3430 + - uid: 3652 components: - type: Transform pos: -7.5,3.5 parent: 2 - - uid: 3431 + - uid: 3653 components: - type: Transform pos: -3.5,9.5 parent: 2 - - uid: 3432 + - uid: 3654 components: - type: Transform pos: -3.5,8.5 parent: 2 - - uid: 3433 + - uid: 3655 components: - type: Transform pos: -3.5,7.5 parent: 2 - - uid: 3434 + - uid: 3656 components: - type: Transform pos: -3.5,6.5 parent: 2 - - uid: 3435 + - uid: 3657 components: - type: Transform pos: -4.5,6.5 parent: 2 - - uid: 3436 + - uid: 3658 components: - type: Transform pos: -5.5,6.5 parent: 2 - - uid: 3437 + - uid: 3659 components: - type: Transform pos: 1.5,3.5 parent: 2 - - uid: 3438 + - uid: 3660 components: - type: Transform pos: 2.5,3.5 parent: 2 - - uid: 3439 + - uid: 3661 components: - type: Transform pos: 3.5,3.5 parent: 2 - - uid: 3440 + - uid: 3662 components: - type: Transform pos: 4.5,3.5 parent: 2 - - uid: 3441 + - uid: 3663 components: - type: Transform pos: 5.5,3.5 parent: 2 - - uid: 3442 + - uid: 3664 components: - type: Transform pos: 6.5,3.5 parent: 2 - - uid: 3443 + - uid: 3665 components: - type: Transform pos: 7.5,3.5 parent: 2 - - uid: 3444 + - uid: 3666 components: - type: Transform pos: 8.5,3.5 parent: 2 - - uid: 3445 + - uid: 3667 components: - type: Transform pos: 9.5,3.5 parent: 2 - - uid: 3446 + - uid: 3668 components: - type: Transform pos: 10.5,3.5 parent: 2 - - uid: 3447 + - uid: 3669 components: - type: Transform pos: -8.5,3.5 parent: 2 - - uid: 3448 + - uid: 3670 components: - type: Transform pos: -9.5,3.5 parent: 2 - - uid: 3449 + - uid: 3671 components: - type: Transform pos: 40.5,17.5 parent: 2 - - uid: 3450 + - uid: 3672 components: - type: Transform pos: 40.5,16.5 parent: 2 - - uid: 3451 + - uid: 3673 components: - type: Transform pos: 40.5,15.5 parent: 2 - - uid: 3452 + - uid: 3674 components: - type: Transform pos: 40.5,14.5 parent: 2 - - uid: 3453 + - uid: 3675 components: - type: Transform pos: 40.5,13.5 parent: 2 - - uid: 3454 + - uid: 3676 components: - type: Transform pos: 40.5,12.5 parent: 2 - - uid: 3455 + - uid: 3677 components: - type: Transform pos: 40.5,11.5 parent: 2 - - uid: 3456 + - uid: 3678 components: - type: Transform pos: 40.5,10.5 parent: 2 - - uid: 3457 + - uid: 3679 components: - type: Transform pos: 40.5,9.5 parent: 2 - - uid: 3458 + - uid: 3680 components: - type: Transform pos: 40.5,8.5 parent: 2 - - uid: 3459 + - uid: 3681 components: - type: Transform pos: 40.5,7.5 parent: 2 - - uid: 3460 + - uid: 3682 components: - type: Transform pos: -5.5,2.5 parent: 2 - - uid: 3461 + - uid: 3683 components: - type: Transform pos: -5.5,1.5 parent: 2 - - uid: 3462 + - uid: 3684 components: - type: Transform pos: -5.5,0.5 parent: 2 - - uid: 3463 + - uid: 3685 components: - type: Transform pos: -6.5,0.5 parent: 2 - - uid: 3464 + - uid: 3686 components: - type: Transform pos: -7.5,0.5 parent: 2 - - uid: 3465 + - uid: 3687 components: - type: Transform pos: 7.5,2.5 parent: 2 - - uid: 3466 + - uid: 3688 components: - type: Transform pos: 7.5,1.5 parent: 2 - - uid: 3467 + - uid: 3689 components: - type: Transform pos: 7.5,0.5 parent: 2 - - uid: 3468 + - uid: 3690 components: - type: Transform pos: 8.5,0.5 parent: 2 - - uid: 3469 + - uid: 3691 components: - type: Transform pos: 6.5,0.5 parent: 2 - - uid: 3477 + - uid: 3692 components: - type: Transform pos: -31.5,14.5 parent: 2 - - uid: 3478 + - uid: 3693 components: - type: Transform pos: -31.5,13.5 parent: 2 - - uid: 3479 + - uid: 3694 components: - type: Transform pos: -31.5,12.5 parent: 2 - - uid: 3480 + - uid: 3695 components: - type: Transform pos: -31.5,11.5 parent: 2 - - uid: 3481 + - uid: 3696 components: - type: Transform pos: -31.5,10.5 parent: 2 - - uid: 3482 + - uid: 3697 components: - type: Transform pos: -32.5,10.5 parent: 2 - - uid: 3483 + - uid: 3698 components: - type: Transform pos: -30.5,10.5 parent: 2 - - uid: 3484 + - uid: 3699 components: - type: Transform pos: -29.5,10.5 parent: 2 - - uid: 3485 + - uid: 3700 components: - type: Transform pos: -28.5,10.5 parent: 2 - - uid: 3486 + - uid: 3701 components: - type: Transform pos: -27.5,10.5 parent: 2 - - uid: 3487 + - uid: 3702 components: - type: Transform pos: -27.5,11.5 parent: 2 - - uid: 3488 + - uid: 3703 components: - type: Transform pos: -27.5,12.5 parent: 2 - - uid: 3489 + - uid: 3704 components: - type: Transform pos: -27.5,13.5 parent: 2 - - uid: 3490 + - uid: 3705 components: - type: Transform pos: -27.5,14.5 parent: 2 - - uid: 3491 + - uid: 3706 components: - type: Transform pos: -29.5,9.5 parent: 2 - - uid: 3492 + - uid: 3707 components: - type: Transform pos: -29.5,8.5 parent: 2 - - uid: 3493 + - uid: 3708 components: - type: Transform pos: -29.5,7.5 parent: 2 - - uid: 3494 + - uid: 3709 components: - type: Transform pos: -29.5,6.5 parent: 2 - - uid: 3495 + - uid: 3710 components: - type: Transform pos: -29.5,5.5 parent: 2 - - uid: 3496 + - uid: 3711 components: - type: Transform pos: -29.5,4.5 parent: 2 - - uid: 3497 + - uid: 3712 components: - type: Transform pos: -29.5,3.5 parent: 2 - - uid: 3498 + - uid: 3713 components: - type: Transform pos: -29.5,2.5 parent: 2 - - uid: 3499 + - uid: 3714 components: - type: Transform pos: -29.5,1.5 parent: 2 - - uid: 3500 + - uid: 3715 components: - type: Transform pos: -29.5,0.5 parent: 2 - - uid: 3501 + - uid: 3716 components: - type: Transform pos: -29.5,-0.5 parent: 2 - - uid: 3502 + - uid: 3717 components: - type: Transform pos: -29.5,-1.5 parent: 2 - - uid: 3503 + - uid: 3718 components: - type: Transform pos: -29.5,-2.5 parent: 2 - - uid: 3504 + - uid: 3719 components: - type: Transform pos: -29.5,-3.5 parent: 2 - - uid: 3505 + - uid: 3720 components: - type: Transform pos: -29.5,-4.5 parent: 2 - - uid: 3506 + - uid: 3721 components: - type: Transform pos: -28.5,0.5 parent: 2 - - uid: 3507 + - uid: 3722 components: - type: Transform pos: -27.5,0.5 parent: 2 - - uid: 3508 + - uid: 3723 components: - type: Transform pos: -26.5,0.5 parent: 2 - - uid: 3509 + - uid: 3724 components: - type: Transform pos: -25.5,0.5 parent: 2 - - uid: 3510 + - uid: 3725 components: - type: Transform pos: -24.5,0.5 parent: 2 - - uid: 3511 + - uid: 3726 components: - type: Transform pos: -23.5,0.5 parent: 2 - - uid: 3512 + - uid: 3727 components: - type: Transform pos: -30.5,4.5 parent: 2 - - uid: 3513 + - uid: 3728 components: - type: Transform pos: -31.5,4.5 parent: 2 - - uid: 3514 + - uid: 3729 components: - type: Transform pos: -32.5,4.5 parent: 2 - - uid: 3515 + - uid: 3730 components: - type: Transform pos: -33.5,4.5 parent: 2 - - uid: 3516 + - uid: 3731 components: - type: Transform pos: -34.5,4.5 parent: 2 - - uid: 3517 + - uid: 3732 components: - type: Transform pos: -35.5,4.5 parent: 2 - - uid: 3518 + - uid: 3733 components: - type: Transform pos: -36.5,4.5 parent: 2 - - uid: 3519 + - uid: 3734 components: - type: Transform pos: -28.5,7.5 parent: 2 - - uid: 3520 + - uid: 3735 components: - type: Transform pos: -28.5,5.5 parent: 2 - - uid: 3521 + - uid: 3736 components: - type: Transform pos: -28.5,3.5 parent: 2 - - uid: 3522 + - uid: 3737 components: - type: Transform pos: -18.5,4.5 parent: 2 - - uid: 3523 + - uid: 3738 components: - type: Transform pos: -19.5,4.5 parent: 2 - - uid: 3524 + - uid: 3739 components: - type: Transform pos: -20.5,4.5 parent: 2 - - uid: 3525 + - uid: 3740 components: - type: Transform pos: -21.5,4.5 parent: 2 - - uid: 3526 + - uid: 3741 components: - type: Transform pos: -22.5,4.5 parent: 2 - - uid: 3527 + - uid: 3742 components: - type: Transform pos: -23.5,4.5 parent: 2 - - uid: 3528 + - uid: 3743 components: - type: Transform pos: -23.5,5.5 parent: 2 - - uid: 3529 + - uid: 3744 components: - type: Transform pos: -23.5,6.5 parent: 2 - - uid: 3530 + - uid: 3745 components: - type: Transform pos: -23.5,7.5 parent: 2 - - uid: 3531 + - uid: 3746 components: - type: Transform pos: -22.5,7.5 parent: 2 - - uid: 3532 + - uid: 3747 components: - type: Transform pos: -21.5,7.5 parent: 2 - - uid: 3533 + - uid: 3748 components: - type: Transform pos: -20.5,7.5 parent: 2 - - uid: 3534 + - uid: 3749 components: - type: Transform pos: -30.5,1.5 parent: 2 - - uid: 3535 + - uid: 3750 components: - type: Transform pos: -31.5,1.5 parent: 2 - - uid: 3536 + - uid: 3751 components: - type: Transform pos: -32.5,1.5 parent: 2 - - uid: 3537 + - uid: 3752 components: - type: Transform pos: -33.5,1.5 parent: 2 - - uid: 3538 + - uid: 3753 components: - type: Transform pos: -34.5,1.5 parent: 2 - - uid: 3539 + - uid: 3754 components: - type: Transform pos: -35.5,1.5 parent: 2 - - uid: 3540 + - uid: 3755 components: - type: Transform pos: -36.5,1.5 parent: 2 - - uid: 3541 + - uid: 3756 components: - type: Transform pos: -37.5,1.5 parent: 2 - - uid: 3542 + - uid: 3757 components: - type: Transform pos: -38.5,1.5 parent: 2 - - uid: 3543 + - uid: 3758 components: - type: Transform pos: -39.5,1.5 parent: 2 - - uid: 3544 + - uid: 3759 components: - type: Transform pos: -66.5,-53.5 parent: 2 - - uid: 3545 + - uid: 3760 components: - type: Transform pos: -52.5,-11.5 parent: 2 - - uid: 3546 + - uid: 3761 components: - type: Transform pos: -52.5,-12.5 parent: 2 - - uid: 3547 + - uid: 3762 components: - type: Transform pos: -52.5,-13.5 parent: 2 - - uid: 3548 + - uid: 3763 components: - type: Transform pos: -52.5,-14.5 parent: 2 - - uid: 3549 + - uid: 3764 components: - type: Transform pos: -52.5,-15.5 parent: 2 - - uid: 3550 + - uid: 3765 components: - type: Transform pos: -53.5,-14.5 parent: 2 - - uid: 3551 + - uid: 3766 components: - type: Transform pos: -54.5,-14.5 parent: 2 - - uid: 3552 + - uid: 3767 components: - type: Transform pos: -51.5,-15.5 parent: 2 - - uid: 3553 + - uid: 3768 components: - type: Transform pos: -50.5,-15.5 parent: 2 - - uid: 3554 + - uid: 3769 components: - type: Transform pos: -49.5,-15.5 parent: 2 - - uid: 3555 + - uid: 3770 components: - type: Transform pos: -48.5,-15.5 parent: 2 - - uid: 3556 + - uid: 3771 components: - type: Transform pos: -47.5,-15.5 parent: 2 - - uid: 3557 + - uid: 3772 components: - type: Transform pos: -47.5,-13.5 parent: 2 - - uid: 3558 + - uid: 3773 components: - type: Transform pos: -47.5,-12.5 parent: 2 - - uid: 3559 + - uid: 3774 components: - type: Transform pos: -46.5,-12.5 parent: 2 - - uid: 3560 + - uid: 3775 components: - type: Transform pos: -48.5,-12.5 parent: 2 - - uid: 3561 + - uid: 3776 components: - type: Transform pos: -46.5,-15.5 parent: 2 - - uid: 3562 + - uid: 3777 components: - type: Transform pos: -45.5,-15.5 parent: 2 - - uid: 3563 + - uid: 3778 components: - type: Transform pos: -44.5,-15.5 parent: 2 - - uid: 3564 + - uid: 3779 components: - type: Transform pos: -42.5,-14.5 parent: 2 - - uid: 3565 + - uid: 3780 components: - type: Transform pos: -42.5,-13.5 parent: 2 - - uid: 3566 + - uid: 3781 components: - type: Transform pos: -42.5,-12.5 parent: 2 - - uid: 3567 + - uid: 3782 components: - type: Transform pos: -42.5,-11.5 parent: 2 - - uid: 3568 + - uid: 3783 components: - type: Transform pos: -42.5,-10.5 parent: 2 - - uid: 3569 + - uid: 3784 components: - type: Transform pos: -42.5,-9.5 parent: 2 - - uid: 3570 + - uid: 3785 components: - type: Transform pos: -42.5,-8.5 parent: 2 - - uid: 3571 + - uid: 3786 components: - type: Transform pos: -42.5,-7.5 parent: 2 - - uid: 3572 + - uid: 3787 components: - type: Transform pos: -42.5,-6.5 parent: 2 - - uid: 3573 + - uid: 3788 components: - type: Transform pos: -41.5,-6.5 parent: 2 - - uid: 3574 + - uid: 3789 components: - type: Transform pos: -40.5,-6.5 parent: 2 - - uid: 3575 + - uid: 3790 components: - type: Transform pos: -42.5,-5.5 parent: 2 - - uid: 3576 + - uid: 3791 components: - type: Transform pos: -42.5,-4.5 parent: 2 - - uid: 3577 + - uid: 3792 components: - type: Transform pos: -42.5,-3.5 parent: 2 - - uid: 3578 + - uid: 3793 components: - type: Transform pos: -42.5,-2.5 parent: 2 - - uid: 3579 + - uid: 3794 components: - type: Transform pos: -41.5,-3.5 parent: 2 - - uid: 3580 + - uid: 3795 components: - type: Transform pos: -40.5,-3.5 parent: 2 - - uid: 3581 + - uid: 3796 components: - type: Transform pos: -39.5,-3.5 parent: 2 - - uid: 3582 + - uid: 3797 components: - type: Transform pos: -38.5,-3.5 parent: 2 - - uid: 3583 + - uid: 3798 components: - type: Transform pos: -37.5,-3.5 parent: 2 - - uid: 3584 + - uid: 3799 components: - type: Transform pos: -37.5,-2.5 parent: 2 - - uid: 3585 + - uid: 3800 components: - type: Transform pos: -36.5,-2.5 parent: 2 - - uid: 3586 + - uid: 3801 components: - type: Transform pos: -35.5,-2.5 parent: 2 - - uid: 3587 + - uid: 3802 components: - type: Transform pos: -35.5,-3.5 parent: 2 - - uid: 3588 + - uid: 3803 components: - type: Transform pos: -35.5,-4.5 parent: 2 - - uid: 3589 + - uid: 3804 components: - type: Transform pos: -34.5,-2.5 parent: 2 - - uid: 3590 + - uid: 3805 components: - type: Transform pos: -33.5,-2.5 parent: 2 - - uid: 3591 + - uid: 3806 components: - type: Transform pos: -32.5,-2.5 parent: 2 - - uid: 3592 + - uid: 3807 components: - type: Transform pos: -32.5,-1.5 parent: 2 - - uid: 3593 + - uid: 3808 components: - type: Transform pos: -32.5,-3.5 parent: 2 - - uid: 3594 + - uid: 3809 components: - type: Transform pos: -32.5,-4.5 parent: 2 - - uid: 3595 + - uid: 3810 components: - type: Transform pos: -32.5,-5.5 parent: 2 - - uid: 3596 + - uid: 3811 components: - type: Transform pos: -32.5,-6.5 parent: 2 - - uid: 3597 + - uid: 3812 components: - type: Transform pos: -32.5,-7.5 parent: 2 - - uid: 3598 + - uid: 3813 components: - type: Transform pos: -32.5,-8.5 parent: 2 - - uid: 3599 + - uid: 3814 components: - type: Transform pos: -32.5,-9.5 parent: 2 - - uid: 3600 + - uid: 3815 components: - type: Transform pos: -32.5,-10.5 parent: 2 - - uid: 3601 + - uid: 3816 components: - type: Transform pos: -32.5,-11.5 parent: 2 - - uid: 3602 + - uid: 3817 components: - type: Transform pos: -32.5,-12.5 parent: 2 - - uid: 3603 + - uid: 3818 components: - type: Transform pos: -43.5,3.5 parent: 2 - - uid: 3604 + - uid: 3819 components: - type: Transform pos: -44.5,3.5 parent: 2 - - uid: 3605 + - uid: 3820 components: - type: Transform pos: -45.5,3.5 parent: 2 - - uid: 3606 + - uid: 3821 components: - type: Transform pos: -46.5,3.5 parent: 2 - - uid: 3607 + - uid: 3822 components: - type: Transform pos: -47.5,3.5 parent: 2 - - uid: 3608 + - uid: 3823 components: - type: Transform pos: -48.5,3.5 parent: 2 - - uid: 3609 + - uid: 3824 components: - type: Transform pos: -49.5,3.5 parent: 2 - - uid: 3610 + - uid: 3825 components: - type: Transform pos: -49.5,4.5 parent: 2 - - uid: 3611 + - uid: 3826 components: - type: Transform pos: -49.5,5.5 parent: 2 - - uid: 3612 + - uid: 3827 components: - type: Transform pos: -49.5,2.5 parent: 2 - - uid: 3613 + - uid: 3828 components: - type: Transform pos: -49.5,1.5 parent: 2 - - uid: 3614 + - uid: 3829 components: - type: Transform pos: -49.5,0.5 parent: 2 - - uid: 3615 + - uid: 3830 components: - type: Transform pos: -49.5,-0.5 parent: 2 - - uid: 3616 + - uid: 3831 components: - type: Transform pos: -49.5,-1.5 parent: 2 - - uid: 3617 + - uid: 3832 components: - type: Transform pos: -49.5,-2.5 parent: 2 - - uid: 3618 + - uid: 3833 components: - type: Transform pos: -49.5,-3.5 parent: 2 - - uid: 3619 + - uid: 3834 components: - type: Transform pos: -49.5,-5.5 parent: 2 - - uid: 3620 + - uid: 3835 components: - type: Transform pos: -49.5,-6.5 parent: 2 - - uid: 3621 + - uid: 3836 components: - type: Transform pos: -45.5,-12.5 parent: 2 - - uid: 3622 + - uid: 3837 components: - type: Transform pos: -48.5,-2.5 parent: 2 - - uid: 3623 + - uid: 3838 components: - type: Transform pos: -47.5,-2.5 parent: 2 - - uid: 3624 + - uid: 3839 components: - type: Transform pos: -46.5,-2.5 parent: 2 - - uid: 3625 + - uid: 3840 components: - type: Transform pos: -48.5,0.5 parent: 2 - - uid: 3626 + - uid: 3841 components: - type: Transform pos: -47.5,0.5 parent: 2 - - uid: 3627 + - uid: 3842 components: - type: Transform pos: -46.5,0.5 parent: 2 - - uid: 3628 + - uid: 3843 components: - type: Transform pos: -50.5,1.5 parent: 2 - - uid: 3629 + - uid: 3844 components: - type: Transform pos: -51.5,1.5 parent: 2 - - uid: 3630 + - uid: 3845 components: - type: Transform pos: -51.5,-6.5 parent: 2 - - uid: 3631 + - uid: 3846 components: - type: Transform pos: -52.5,-6.5 parent: 2 - - uid: 3632 + - uid: 3847 components: - type: Transform pos: -53.5,-6.5 parent: 2 - - uid: 3633 + - uid: 3848 components: - type: Transform pos: -54.5,-6.5 parent: 2 - - uid: 3634 + - uid: 3849 components: - type: Transform pos: -54.5,-5.5 parent: 2 - - uid: 3635 + - uid: 3850 components: - type: Transform pos: -53.5,-7.5 parent: 2 - - uid: 3636 + - uid: 3851 components: - type: Transform pos: -53.5,-8.5 parent: 2 - - uid: 3637 + - uid: 3852 components: - type: Transform pos: -53.5,-9.5 parent: 2 - - uid: 3638 + - uid: 3853 components: - type: Transform pos: -53.5,-10.5 parent: 2 - - uid: 3639 + - uid: 3854 components: - type: Transform pos: -42.5,-15.5 parent: 2 - - uid: 3640 + - uid: 3855 components: - type: Transform pos: -41.5,-15.5 parent: 2 - - uid: 3641 + - uid: 3856 components: - type: Transform pos: -40.5,-15.5 parent: 2 - - uid: 3642 + - uid: 3857 components: - type: Transform pos: -39.5,-15.5 parent: 2 - - uid: 3643 + - uid: 3858 components: - type: Transform pos: -38.5,-15.5 parent: 2 - - uid: 3644 + - uid: 3859 components: - type: Transform pos: -37.5,-15.5 parent: 2 - - uid: 3645 + - uid: 3860 components: - type: Transform pos: -49.5,-32.5 parent: 2 - - uid: 3646 + - uid: 3861 components: - type: Transform pos: -50.5,-32.5 parent: 2 - - uid: 3647 + - uid: 3862 components: - type: Transform pos: -51.5,-32.5 parent: 2 - - uid: 3648 + - uid: 3863 components: - type: Transform pos: -51.5,-33.5 parent: 2 - - uid: 3649 + - uid: 3864 components: - type: Transform pos: -51.5,-34.5 parent: 2 - - uid: 3650 + - uid: 3865 components: - type: Transform pos: -51.5,-35.5 parent: 2 - - uid: 3651 + - uid: 3866 components: - type: Transform pos: -51.5,-36.5 parent: 2 - - uid: 3652 + - uid: 3867 components: - type: Transform pos: -47.5,-39.5 parent: 2 - - uid: 3653 + - uid: 3868 components: - type: Transform pos: -46.5,-39.5 parent: 2 - - uid: 3654 + - uid: 3869 components: - type: Transform pos: -48.5,-32.5 parent: 2 - - uid: 3655 + - uid: 3870 components: - type: Transform pos: -45.5,-32.5 parent: 2 - - uid: 3656 + - uid: 3871 components: - type: Transform pos: -45.5,-33.5 parent: 2 - - uid: 3657 + - uid: 3872 components: - type: Transform pos: -48.5,-39.5 parent: 2 - - uid: 3658 + - uid: 3873 components: - type: Transform pos: -55.5,-28.5 parent: 2 - - uid: 3659 + - uid: 3874 components: - type: Transform pos: -56.5,-28.5 parent: 2 - - uid: 3660 + - uid: 3875 components: - type: Transform pos: -54.5,-28.5 parent: 2 - - uid: 3661 + - uid: 3876 components: - type: Transform pos: -53.5,-28.5 parent: 2 - - uid: 3662 + - uid: 3877 components: - type: Transform pos: -52.5,-28.5 parent: 2 - - uid: 3663 + - uid: 3878 components: - type: Transform pos: -51.5,-28.5 parent: 2 - - uid: 3664 + - uid: 3879 components: - type: Transform pos: -50.5,-28.5 parent: 2 - - uid: 3665 + - uid: 3880 components: - type: Transform pos: -49.5,-28.5 parent: 2 - - uid: 3666 + - uid: 3881 components: - type: Transform pos: -48.5,-28.5 parent: 2 - - uid: 3667 + - uid: 3882 components: - type: Transform pos: -47.5,-28.5 parent: 2 - - uid: 3668 + - uid: 3883 components: - type: Transform pos: -46.5,-28.5 parent: 2 - - uid: 3669 + - uid: 3884 components: - type: Transform pos: -45.5,-28.5 parent: 2 - - uid: 3670 + - uid: 3885 components: - type: Transform pos: -44.5,-28.5 parent: 2 - - uid: 3671 + - uid: 3886 components: - type: Transform pos: -40.5,-18.5 parent: 2 - - uid: 3672 + - uid: 3887 components: - type: Transform pos: -41.5,-28.5 parent: 2 - - uid: 3673 + - uid: 3888 components: - type: Transform pos: -41.5,-29.5 parent: 2 - - uid: 3674 + - uid: 3889 components: - type: Transform pos: -44.5,-27.5 parent: 2 - - uid: 3675 + - uid: 3890 components: - type: Transform pos: -44.5,-26.5 parent: 2 - - uid: 3676 + - uid: 3891 components: - type: Transform pos: -54.5,-25.5 parent: 2 - - uid: 3677 + - uid: 3892 components: - type: Transform pos: -53.5,-25.5 parent: 2 - - uid: 3678 + - uid: 3893 components: - type: Transform pos: -52.5,-25.5 parent: 2 - - uid: 3679 + - uid: 3894 components: - type: Transform pos: -51.5,-25.5 parent: 2 - - uid: 3680 + - uid: 3895 components: - type: Transform pos: -50.5,-25.5 parent: 2 - - uid: 3681 + - uid: 3896 components: - type: Transform pos: -49.5,-25.5 parent: 2 - - uid: 3682 + - uid: 3897 components: - type: Transform pos: -48.5,-25.5 parent: 2 - - uid: 3683 + - uid: 3898 components: - type: Transform pos: -48.5,-24.5 parent: 2 - - uid: 3684 + - uid: 3899 components: - type: Transform pos: -48.5,-23.5 parent: 2 - - uid: 3685 + - uid: 3900 components: - type: Transform pos: -48.5,-22.5 parent: 2 - - uid: 3686 + - uid: 3901 components: - type: Transform pos: -48.5,-21.5 parent: 2 - - uid: 3687 + - uid: 3902 components: - type: Transform pos: -48.5,-20.5 parent: 2 - - uid: 3688 + - uid: 3903 components: - type: Transform pos: -48.5,-19.5 parent: 2 - - uid: 3689 + - uid: 3904 components: - type: Transform pos: -47.5,-19.5 parent: 2 - - uid: 3690 + - uid: 3905 components: - type: Transform pos: -46.5,-19.5 parent: 2 - - uid: 3691 + - uid: 3906 components: - type: Transform pos: -45.5,-19.5 parent: 2 - - uid: 3692 + - uid: 3907 components: - type: Transform pos: -45.5,-20.5 parent: 2 - - uid: 3693 + - uid: 3908 components: - type: Transform pos: -45.5,-21.5 parent: 2 - - uid: 3694 + - uid: 3909 components: - type: Transform pos: -45.5,-22.5 parent: 2 - - uid: 3695 + - uid: 3910 components: - type: Transform pos: -45.5,-23.5 parent: 2 - - uid: 3696 + - uid: 3911 components: - type: Transform pos: -45.5,-24.5 parent: 2 - - uid: 3697 + - uid: 3912 components: - type: Transform pos: -45.5,-25.5 parent: 2 - - uid: 3698 + - uid: 3913 components: - type: Transform pos: -46.5,-25.5 parent: 2 - - uid: 3699 + - uid: 3914 components: - type: Transform pos: -47.5,-25.5 parent: 2 - - uid: 3700 + - uid: 3915 components: - type: Transform pos: -52.5,-24.5 parent: 2 - - uid: 3701 + - uid: 3916 components: - type: Transform pos: -52.5,-23.5 parent: 2 - - uid: 3702 + - uid: 3917 components: - type: Transform pos: -52.5,-22.5 parent: 2 - - uid: 3703 + - uid: 3918 components: - type: Transform pos: -52.5,-21.5 parent: 2 - - uid: 3704 + - uid: 3919 components: - type: Transform pos: -52.5,-20.5 parent: 2 - - uid: 3705 + - uid: 3920 components: - type: Transform pos: -52.5,-19.5 parent: 2 - - uid: 3706 + - uid: 3921 components: - type: Transform pos: -52.5,-18.5 parent: 2 - - uid: 3707 + - uid: 3922 components: - type: Transform pos: -53.5,-19.5 parent: 2 - - uid: 3708 + - uid: 3923 components: - type: Transform pos: -54.5,-19.5 parent: 2 - - uid: 3709 + - uid: 3924 components: - type: Transform pos: -50.5,-24.5 parent: 2 - - uid: 3710 + - uid: 3925 components: - type: Transform pos: -41.5,-33.5 parent: 2 - - uid: 3711 + - uid: 3926 components: - type: Transform pos: -41.5,-34.5 parent: 2 - - uid: 3712 + - uid: 3927 components: - type: Transform pos: -41.5,-35.5 parent: 2 - - uid: 3713 + - uid: 3928 components: - type: Transform pos: -41.5,-36.5 parent: 2 - - uid: 3714 + - uid: 3929 components: - type: Transform pos: -41.5,-37.5 parent: 2 - - uid: 3715 + - uid: 3930 components: - type: Transform pos: -43.5,-38.5 parent: 2 - - uid: 3716 + - uid: 3931 components: - type: Transform pos: -42.5,-38.5 parent: 2 - - uid: 3717 + - uid: 3932 components: - type: Transform pos: -41.5,-38.5 parent: 2 - - uid: 3718 + - uid: 3933 components: - type: Transform pos: -40.5,-38.5 parent: 2 - - uid: 3719 + - uid: 3934 components: - type: Transform pos: -39.5,-38.5 parent: 2 - - uid: 3720 + - uid: 3935 components: - type: Transform pos: -38.5,-38.5 parent: 2 - - uid: 3721 + - uid: 3936 components: - type: Transform pos: -37.5,-38.5 parent: 2 - - uid: 3722 + - uid: 3937 components: - type: Transform pos: -36.5,-38.5 parent: 2 - - uid: 3723 + - uid: 3938 components: - type: Transform pos: -35.5,-38.5 parent: 2 - - uid: 3724 + - uid: 3939 components: - type: Transform pos: -34.5,-38.5 parent: 2 - - uid: 3725 + - uid: 3940 components: - type: Transform pos: -43.5,-37.5 parent: 2 - - uid: 3726 + - uid: 3941 components: - type: Transform pos: -44.5,-37.5 parent: 2 - - uid: 3727 + - uid: 3942 components: - type: Transform pos: -45.5,-37.5 parent: 2 - - uid: 3728 + - uid: 3943 components: - type: Transform pos: -39.5,-33.5 parent: 2 - - uid: 3729 + - uid: 3944 components: - type: Transform pos: -38.5,-33.5 parent: 2 - - uid: 3730 + - uid: 3945 components: - type: Transform pos: -37.5,-33.5 parent: 2 - - uid: 3731 + - uid: 3946 components: - type: Transform pos: -36.5,-34.5 parent: 2 - - uid: 3732 + - uid: 3947 components: - type: Transform pos: -36.5,-33.5 parent: 2 - - uid: 3733 + - uid: 3948 components: - type: Transform pos: -36.5,-32.5 parent: 2 - - uid: 3734 + - uid: 3949 components: - type: Transform pos: -36.5,-31.5 parent: 2 - - uid: 3735 + - uid: 3950 components: - type: Transform pos: -36.5,-30.5 parent: 2 - - uid: 3736 + - uid: 3951 components: - type: Transform pos: -36.5,-29.5 parent: 2 - - uid: 3737 + - uid: 3952 components: - type: Transform pos: -35.5,-29.5 parent: 2 - - uid: 3738 + - uid: 3953 components: - type: Transform pos: -41.5,-27.5 parent: 2 - - uid: 3739 + - uid: 3954 components: - type: Transform pos: -41.5,-26.5 parent: 2 - - uid: 3740 + - uid: 3955 components: - type: Transform pos: -41.5,-25.5 parent: 2 - - uid: 3741 + - uid: 3956 components: - type: Transform pos: -41.5,-24.5 parent: 2 - - uid: 3742 + - uid: 3957 components: - type: Transform pos: -41.5,-23.5 parent: 2 - - uid: 3743 + - uid: 3958 components: - type: Transform pos: -41.5,-22.5 parent: 2 - - uid: 3744 + - uid: 3959 components: - type: Transform pos: -41.5,-21.5 parent: 2 - - uid: 3745 + - uid: 3960 components: - type: Transform pos: -41.5,-20.5 parent: 2 - - uid: 3746 + - uid: 3961 components: - type: Transform pos: -41.5,-19.5 parent: 2 - - uid: 3747 + - uid: 3962 components: - type: Transform pos: -41.5,-18.5 parent: 2 - - uid: 3748 + - uid: 3963 components: - type: Transform pos: -41.5,-17.5 parent: 2 - - uid: 3749 + - uid: 3964 components: - type: Transform pos: -40.5,-26.5 parent: 2 - - uid: 3750 + - uid: 3965 components: - type: Transform pos: -39.5,-26.5 parent: 2 - - uid: 3751 + - uid: 3966 components: - type: Transform pos: -38.5,-26.5 parent: 2 - - uid: 3752 + - uid: 3967 components: - type: Transform pos: -37.5,-26.5 parent: 2 - - uid: 3753 + - uid: 3968 components: - type: Transform pos: -36.5,-26.5 parent: 2 - - uid: 3754 + - uid: 3969 components: - type: Transform pos: -35.5,-26.5 parent: 2 - - uid: 3755 + - uid: 3970 components: - type: Transform pos: -34.5,-26.5 parent: 2 - - uid: 3756 + - uid: 3971 components: - type: Transform pos: -40.5,-21.5 parent: 2 - - uid: 3757 + - uid: 3972 components: - type: Transform pos: -39.5,-21.5 parent: 2 - - uid: 3758 + - uid: 3973 components: - type: Transform pos: -38.5,-21.5 parent: 2 - - uid: 3759 + - uid: 3974 components: - type: Transform pos: -37.5,-21.5 parent: 2 - - uid: 3760 + - uid: 3975 components: - type: Transform pos: -36.5,-21.5 parent: 2 - - uid: 3761 + - uid: 3976 components: - type: Transform pos: -35.5,-21.5 parent: 2 - - uid: 3762 + - uid: 3977 components: - type: Transform pos: -39.5,-18.5 parent: 2 - - uid: 3763 + - uid: 3978 components: - type: Transform pos: -67.5,-43.5 parent: 2 - - uid: 3764 + - uid: 3979 components: - type: Transform pos: -66.5,-43.5 parent: 2 - - uid: 3765 + - uid: 3980 components: - type: Transform pos: -65.5,-43.5 parent: 2 - - uid: 3766 + - uid: 3981 components: - type: Transform pos: -64.5,-43.5 parent: 2 - - uid: 3767 + - uid: 3982 components: - type: Transform pos: -63.5,-43.5 parent: 2 - - uid: 3768 + - uid: 3983 components: - type: Transform pos: -62.5,-43.5 parent: 2 - - uid: 3769 + - uid: 3984 components: - type: Transform pos: -61.5,-43.5 parent: 2 - - uid: 3770 + - uid: 3985 components: - type: Transform pos: -60.5,-43.5 parent: 2 - - uid: 3771 + - uid: 3986 components: - type: Transform pos: -59.5,-43.5 parent: 2 - - uid: 3772 + - uid: 3987 components: - type: Transform pos: -58.5,-43.5 parent: 2 - - uid: 3773 + - uid: 3988 components: - type: Transform pos: -57.5,-43.5 parent: 2 - - uid: 3774 + - uid: 3989 components: - type: Transform pos: -56.5,-43.5 parent: 2 - - uid: 3775 + - uid: 3990 components: - type: Transform pos: -55.5,-43.5 parent: 2 - - uid: 3776 + - uid: 3991 components: - type: Transform pos: -54.5,-43.5 parent: 2 - - uid: 3777 + - uid: 3992 components: - type: Transform pos: -53.5,-43.5 parent: 2 - - uid: 3778 + - uid: 3993 components: - type: Transform pos: -52.5,-43.5 parent: 2 - - uid: 3779 + - uid: 3994 components: - type: Transform pos: -51.5,-43.5 parent: 2 - - uid: 3780 + - uid: 3995 components: - type: Transform pos: -60.5,-44.5 parent: 2 - - uid: 3781 + - uid: 3996 components: - type: Transform pos: -60.5,-45.5 parent: 2 - - uid: 3782 + - uid: 3997 components: - type: Transform pos: -65.5,-42.5 parent: 2 - - uid: 3783 + - uid: 3998 components: - type: Transform pos: -65.5,-41.5 parent: 2 - - uid: 3784 + - uid: 3999 components: - type: Transform pos: -65.5,-40.5 parent: 2 - - uid: 3785 + - uid: 4000 components: - type: Transform pos: -65.5,-39.5 parent: 2 - - uid: 3786 + - uid: 4001 components: - type: Transform pos: -65.5,-38.5 parent: 2 - - uid: 3787 + - uid: 4002 components: - type: Transform pos: -65.5,-37.5 parent: 2 - - uid: 3788 + - uid: 4003 components: - type: Transform pos: -64.5,-37.5 parent: 2 - - uid: 3789 + - uid: 4004 components: - type: Transform pos: -66.5,-37.5 parent: 2 - - uid: 3790 + - uid: 4005 components: - type: Transform pos: -67.5,-37.5 parent: 2 - - uid: 3791 + - uid: 4006 components: - type: Transform pos: -68.5,-43.5 parent: 2 - - uid: 3792 + - uid: 4007 components: - type: Transform pos: -76.5,-46.5 parent: 2 - - uid: 3793 + - uid: 4008 components: - type: Transform pos: -76.5,-47.5 parent: 2 - - uid: 3794 + - uid: 4009 components: - type: Transform pos: -76.5,-48.5 parent: 2 - - uid: 3795 + - uid: 4010 components: - type: Transform pos: -76.5,-49.5 parent: 2 - - uid: 3796 + - uid: 4011 components: - type: Transform pos: -75.5,-49.5 parent: 2 - - uid: 3797 + - uid: 4012 components: - type: Transform pos: -74.5,-49.5 parent: 2 - - uid: 3798 + - uid: 4013 components: - type: Transform pos: -73.5,-49.5 parent: 2 - - uid: 3799 + - uid: 4014 components: - type: Transform pos: -72.5,-49.5 parent: 2 - - uid: 3800 + - uid: 4015 components: - type: Transform pos: -71.5,-49.5 parent: 2 - - uid: 3801 + - uid: 4016 components: - type: Transform pos: -70.5,-49.5 parent: 2 - - uid: 3802 + - uid: 4017 components: - type: Transform pos: -75.5,-50.5 parent: 2 - - uid: 3803 + - uid: 4018 components: - type: Transform pos: -75.5,-51.5 parent: 2 - - uid: 3804 + - uid: 4019 components: - type: Transform pos: -75.5,-52.5 parent: 2 - - uid: 3805 + - uid: 4020 components: - type: Transform pos: -71.5,-50.5 parent: 2 - - uid: 3806 + - uid: 4021 components: - type: Transform pos: -71.5,-51.5 parent: 2 - - uid: 3807 + - uid: 4022 components: - type: Transform pos: -71.5,-52.5 parent: 2 - - uid: 3808 + - uid: 4023 components: - type: Transform pos: -77.5,-46.5 parent: 2 - - uid: 3809 + - uid: 4024 components: - type: Transform pos: -78.5,-46.5 parent: 2 - - uid: 3810 + - uid: 4025 components: - type: Transform pos: -79.5,-46.5 parent: 2 - - uid: 3811 + - uid: 4026 components: - type: Transform pos: -80.5,-46.5 parent: 2 - - uid: 3812 + - uid: 4027 components: - type: Transform pos: -80.5,-38.5 parent: 2 - - uid: 3813 + - uid: 4028 components: - type: Transform pos: -79.5,-38.5 parent: 2 - - uid: 3814 + - uid: 4029 components: - type: Transform pos: -78.5,-38.5 parent: 2 - - uid: 3815 + - uid: 4030 components: - type: Transform pos: -77.5,-38.5 parent: 2 - - uid: 3816 + - uid: 4031 components: - type: Transform pos: -76.5,-38.5 parent: 2 - - uid: 3817 + - uid: 4032 components: - type: Transform pos: -75.5,-38.5 parent: 2 - - uid: 3818 + - uid: 4033 components: - type: Transform pos: -75.5,-37.5 parent: 2 - - uid: 3819 + - uid: 4034 components: - type: Transform pos: -75.5,-36.5 parent: 2 - - uid: 3820 + - uid: 4035 components: - type: Transform pos: -75.5,-35.5 parent: 2 - - uid: 3821 + - uid: 4036 components: - type: Transform pos: -74.5,-35.5 parent: 2 - - uid: 3822 + - uid: 4037 components: - type: Transform pos: -73.5,-35.5 parent: 2 - - uid: 3823 + - uid: 4038 components: - type: Transform pos: -72.5,-35.5 parent: 2 - - uid: 3824 + - uid: 4039 components: - type: Transform pos: -71.5,-35.5 parent: 2 - - uid: 3825 + - uid: 4040 components: - type: Transform pos: -71.5,-36.5 parent: 2 - - uid: 3826 + - uid: 4041 components: - type: Transform pos: -71.5,-37.5 parent: 2 - - uid: 3827 + - uid: 4042 components: - type: Transform pos: -71.5,-38.5 parent: 2 - - uid: 3828 + - uid: 4043 components: - type: Transform pos: -71.5,-39.5 parent: 2 - - uid: 3829 + - uid: 4044 components: - type: Transform pos: -71.5,-40.5 parent: 2 - - uid: 3830 + - uid: 4045 components: - type: Transform pos: -71.5,-41.5 parent: 2 - - uid: 3831 + - uid: 4046 components: - type: Transform pos: -71.5,-42.5 parent: 2 - - uid: 3832 + - uid: 4047 components: - type: Transform pos: -71.5,-43.5 parent: 2 - - uid: 3833 + - uid: 4048 components: - type: Transform pos: -71.5,-44.5 parent: 2 - - uid: 3834 + - uid: 4049 components: - type: Transform pos: -72.5,-44.5 parent: 2 - - uid: 3835 + - uid: 4050 components: - type: Transform pos: -73.5,-44.5 parent: 2 - - uid: 3836 + - uid: 4051 components: - type: Transform pos: -74.5,-44.5 parent: 2 - - uid: 3837 + - uid: 4052 components: - type: Transform pos: -75.5,-44.5 parent: 2 - - uid: 3838 + - uid: 4053 components: - type: Transform pos: -75.5,-43.5 parent: 2 - - uid: 3839 + - uid: 4054 components: - type: Transform pos: -75.5,-42.5 parent: 2 - - uid: 3840 + - uid: 4055 components: - type: Transform pos: -75.5,-41.5 parent: 2 - - uid: 3841 + - uid: 4056 components: - type: Transform pos: -75.5,-40.5 parent: 2 - - uid: 3842 + - uid: 4057 components: - type: Transform pos: -75.5,-39.5 parent: 2 - - uid: 3843 + - uid: 4058 components: - type: Transform pos: -59.5,-38.5 parent: 2 - - uid: 3844 + - uid: 4059 components: - type: Transform pos: -59.5,-37.5 parent: 2 - - uid: 3845 + - uid: 4060 components: - type: Transform pos: -59.5,-36.5 parent: 2 - - uid: 3846 + - uid: 4061 components: - type: Transform pos: -59.5,-35.5 parent: 2 - - uid: 3847 + - uid: 4062 components: - type: Transform pos: -59.5,-28.5 parent: 2 - - uid: 3848 + - uid: 4063 components: - type: Transform pos: -59.5,-29.5 parent: 2 - - uid: 3849 + - uid: 4064 components: - type: Transform pos: -59.5,-30.5 parent: 2 - - uid: 3850 + - uid: 4065 components: - type: Transform pos: -59.5,-31.5 parent: 2 - - uid: 3851 + - uid: 4066 components: - type: Transform pos: -59.5,-32.5 parent: 2 - - uid: 3852 + - uid: 4067 components: - type: Transform pos: -59.5,-27.5 parent: 2 - - uid: 3854 + - uid: 4068 components: - type: Transform pos: -59.5,-25.5 parent: 2 - - uid: 3855 + - uid: 4069 components: - type: Transform pos: -53.5,-75.5 parent: 2 - - uid: 3856 + - uid: 4070 components: - type: Transform pos: -65.5,-69.5 parent: 2 - - uid: 3857 + - uid: 4071 components: - type: Transform pos: -50.5,-73.5 parent: 2 - - uid: 3858 + - uid: 4072 components: - type: Transform pos: -48.5,-73.5 parent: 2 - - uid: 3859 + - uid: 4073 components: - type: Transform pos: -49.5,-57.5 parent: 2 - - uid: 3860 + - uid: 4074 components: - type: Transform pos: -49.5,-58.5 parent: 2 - - uid: 3861 + - uid: 4075 components: - type: Transform pos: -48.5,-58.5 parent: 2 - - uid: 3862 + - uid: 4076 components: - type: Transform pos: -47.5,-58.5 parent: 2 - - uid: 3863 + - uid: 4077 components: - type: Transform pos: -47.5,-59.5 parent: 2 - - uid: 3864 + - uid: 4078 components: - type: Transform pos: -47.5,-60.5 parent: 2 - - uid: 3865 + - uid: 4079 components: - type: Transform pos: -47.5,-61.5 parent: 2 - - uid: 3866 + - uid: 4080 components: - type: Transform pos: -50.5,-58.5 parent: 2 - - uid: 3867 + - uid: 4081 components: - type: Transform pos: -51.5,-58.5 parent: 2 - - uid: 3868 + - uid: 4082 components: - type: Transform pos: -51.5,-56.5 parent: 2 - - uid: 3869 + - uid: 4083 components: - type: Transform pos: -51.5,-59.5 parent: 2 - - uid: 3870 + - uid: 4084 components: - type: Transform pos: -51.5,-60.5 parent: 2 - - uid: 3871 + - uid: 4085 components: - type: Transform pos: -51.5,-61.5 parent: 2 - - uid: 3872 + - uid: 4086 components: - type: Transform pos: -51.5,-57.5 parent: 2 - - uid: 3873 + - uid: 4087 components: - type: Transform pos: -52.5,-57.5 parent: 2 - - uid: 3874 + - uid: 4088 components: - type: Transform pos: -53.5,-57.5 parent: 2 - - uid: 3875 + - uid: 4089 components: - type: Transform pos: -54.5,-57.5 parent: 2 - - uid: 3876 + - uid: 4090 components: - type: Transform pos: -55.5,-57.5 parent: 2 - - uid: 3877 + - uid: 4091 components: - type: Transform pos: -56.5,-57.5 parent: 2 - - uid: 3878 + - uid: 4092 components: - type: Transform pos: -57.5,-57.5 parent: 2 - - uid: 3879 + - uid: 4093 components: - type: Transform pos: -58.5,-57.5 parent: 2 - - uid: 3880 + - uid: 4094 components: - type: Transform pos: -59.5,-57.5 parent: 2 - - uid: 3881 + - uid: 4095 components: - type: Transform pos: -51.5,-55.5 parent: 2 - - uid: 3882 + - uid: 4096 components: - type: Transform pos: -50.5,-55.5 parent: 2 - - uid: 3883 + - uid: 4097 components: - type: Transform pos: -49.5,-55.5 parent: 2 - - uid: 3884 + - uid: 4098 components: - type: Transform pos: -48.5,-55.5 parent: 2 - - uid: 3885 + - uid: 4099 components: - type: Transform pos: -49.5,-54.5 parent: 2 - - uid: 3886 + - uid: 4100 components: - type: Transform pos: -49.5,-53.5 parent: 2 - - uid: 3887 + - uid: 4101 components: - type: Transform pos: -49.5,-52.5 parent: 2 - - uid: 3888 + - uid: 4102 components: - type: Transform pos: -50.5,-52.5 parent: 2 - - uid: 3889 + - uid: 4103 components: - type: Transform pos: -51.5,-52.5 parent: 2 - - uid: 3890 + - uid: 4104 components: - type: Transform pos: -52.5,-52.5 parent: 2 - - uid: 3891 + - uid: 4105 components: - type: Transform pos: -53.5,-52.5 parent: 2 - - uid: 3892 + - uid: 4106 components: - type: Transform pos: -54.5,-52.5 parent: 2 - - uid: 3893 + - uid: 4107 components: - type: Transform pos: -51.5,-62.5 parent: 2 - - uid: 3894 + - uid: 4108 components: - type: Transform pos: -51.5,-63.5 parent: 2 - - uid: 3895 + - uid: 4109 components: - type: Transform pos: -51.5,-64.5 parent: 2 - - uid: 3896 + - uid: 4110 components: - type: Transform pos: -51.5,-65.5 parent: 2 - - uid: 3897 + - uid: 4111 components: - type: Transform pos: -50.5,-65.5 parent: 2 - - uid: 3898 + - uid: 4112 components: - type: Transform pos: -49.5,-65.5 parent: 2 - - uid: 3899 + - uid: 4113 components: - type: Transform pos: -48.5,-65.5 parent: 2 - - uid: 3900 + - uid: 4114 components: - type: Transform pos: -47.5,-65.5 parent: 2 - - uid: 3901 + - uid: 4115 components: - type: Transform pos: -52.5,-65.5 parent: 2 - - uid: 3902 + - uid: 4116 components: - type: Transform pos: -53.5,-65.5 parent: 2 - - uid: 3903 + - uid: 4117 components: - type: Transform pos: -54.5,-65.5 parent: 2 - - uid: 3904 + - uid: 4118 components: - type: Transform pos: -55.5,-65.5 parent: 2 - - uid: 3905 + - uid: 4119 components: - type: Transform pos: -65.5,-63.5 parent: 2 - - uid: 3906 + - uid: 4120 components: - type: Transform pos: -65.5,-64.5 parent: 2 - - uid: 3907 + - uid: 4121 components: - type: Transform pos: -60.5,-65.5 parent: 2 - - uid: 3908 + - uid: 4122 components: - type: Transform pos: -61.5,-65.5 parent: 2 - - uid: 3909 + - uid: 4123 components: - type: Transform pos: -62.5,-65.5 parent: 2 - - uid: 3910 + - uid: 4124 components: - type: Transform pos: -63.5,-65.5 parent: 2 - - uid: 3911 + - uid: 4125 components: - type: Transform pos: -64.5,-65.5 parent: 2 - - uid: 3912 + - uid: 4126 components: - type: Transform pos: -65.5,-65.5 parent: 2 - - uid: 3913 + - uid: 4127 components: - type: Transform pos: -66.5,-65.5 parent: 2 - - uid: 3914 + - uid: 4128 components: - type: Transform pos: -67.5,-65.5 parent: 2 - - uid: 3915 + - uid: 4129 components: - type: Transform pos: -68.5,-65.5 parent: 2 - - uid: 3916 + - uid: 4130 components: - type: Transform pos: -69.5,-65.5 parent: 2 - - uid: 3917 + - uid: 4131 components: - type: Transform pos: -70.5,-65.5 parent: 2 - - uid: 3918 + - uid: 4132 components: - type: Transform pos: -70.5,-64.5 parent: 2 - - uid: 3919 + - uid: 4133 components: - type: Transform pos: -70.5,-63.5 parent: 2 - - uid: 3920 + - uid: 4134 components: - type: Transform pos: -70.5,-62.5 parent: 2 - - uid: 3921 + - uid: 4135 components: - type: Transform pos: -71.5,-62.5 parent: 2 - - uid: 3922 + - uid: 4136 components: - type: Transform pos: -72.5,-62.5 parent: 2 - - uid: 3923 + - uid: 4137 components: - type: Transform pos: -73.5,-62.5 parent: 2 - - uid: 3924 + - uid: 4138 components: - type: Transform pos: -74.5,-62.5 parent: 2 - - uid: 3925 + - uid: 4139 components: - type: Transform pos: -74.5,-67.5 parent: 2 - - uid: 3926 + - uid: 4140 components: - type: Transform pos: -74.5,-65.5 parent: 2 - - uid: 3927 + - uid: 4141 components: - type: Transform pos: -76.5,-62.5 parent: 2 - - uid: 3928 + - uid: 4142 components: - type: Transform pos: -75.5,-62.5 parent: 2 - - uid: 3929 + - uid: 4143 components: - type: Transform pos: -76.5,-65.5 parent: 2 - - uid: 3930 + - uid: 4144 components: - type: Transform pos: -76.5,-63.5 parent: 2 - - uid: 3931 + - uid: 4145 components: - type: Transform pos: -76.5,-64.5 parent: 2 - - uid: 3932 + - uid: 4146 components: - type: Transform pos: -76.5,-68.5 parent: 2 - - uid: 3933 + - uid: 4147 components: - type: Transform pos: -75.5,-68.5 parent: 2 - - uid: 3934 + - uid: 4148 components: - type: Transform pos: -74.5,-68.5 parent: 2 - - uid: 3935 + - uid: 4149 components: - type: Transform pos: -73.5,-68.5 parent: 2 - - uid: 3936 + - uid: 4150 components: - type: Transform pos: -72.5,-68.5 parent: 2 - - uid: 3937 + - uid: 4151 components: - type: Transform pos: -71.5,-68.5 parent: 2 - - uid: 3938 + - uid: 4152 components: - type: Transform pos: -70.5,-68.5 parent: 2 - - uid: 3939 + - uid: 4153 components: - type: Transform pos: -70.5,-67.5 parent: 2 - - uid: 3940 + - uid: 4154 components: - type: Transform pos: -70.5,-66.5 parent: 2 - - uid: 3941 + - uid: 4155 components: - type: Transform pos: -59.5,-65.5 parent: 2 - - uid: 3942 + - uid: 4156 components: - type: Transform pos: -58.5,-65.5 parent: 2 - - uid: 3943 + - uid: 4157 components: - type: Transform pos: -58.5,-66.5 parent: 2 - - uid: 3944 + - uid: 4158 components: - type: Transform pos: -58.5,-67.5 parent: 2 - - uid: 3945 + - uid: 4159 components: - type: Transform pos: -58.5,-68.5 parent: 2 - - uid: 3946 + - uid: 4160 components: - type: Transform pos: -58.5,-69.5 parent: 2 - - uid: 3947 + - uid: 4161 components: - type: Transform pos: -57.5,-65.5 parent: 2 - - uid: 3948 + - uid: 4162 components: - type: Transform pos: -57.5,-60.5 parent: 2 - - uid: 3949 + - uid: 4163 components: - type: Transform pos: -58.5,-60.5 parent: 2 - - uid: 3950 + - uid: 4164 components: - type: Transform pos: -59.5,-60.5 parent: 2 - - uid: 3951 + - uid: 4165 components: - type: Transform pos: -60.5,-60.5 parent: 2 - - uid: 3952 + - uid: 4166 components: - type: Transform pos: -61.5,-60.5 parent: 2 - - uid: 3953 + - uid: 4167 components: - type: Transform pos: -62.5,-60.5 parent: 2 - - uid: 3954 + - uid: 4168 components: - type: Transform pos: -63.5,-60.5 parent: 2 - - uid: 3955 + - uid: 4169 components: - type: Transform pos: -64.5,-60.5 parent: 2 - - uid: 3956 + - uid: 4170 components: - type: Transform pos: -64.5,-59.5 parent: 2 - - uid: 3957 + - uid: 4171 components: - type: Transform pos: -45.5,-82.5 parent: 2 - - uid: 3958 + - uid: 4172 components: - type: Transform pos: -46.5,-82.5 parent: 2 - - uid: 3959 + - uid: 4173 components: - type: Transform pos: -46.5,-81.5 parent: 2 - - uid: 3960 + - uid: 4174 components: - type: Transform pos: -46.5,-80.5 parent: 2 - - uid: 3961 + - uid: 4175 components: - type: Transform pos: -46.5,-79.5 parent: 2 - - uid: 3962 + - uid: 4176 components: - type: Transform pos: -46.5,-78.5 parent: 2 - - uid: 3963 + - uid: 4177 components: - type: Transform pos: -47.5,-78.5 parent: 2 - - uid: 3964 + - uid: 4178 components: - type: Transform pos: -48.5,-78.5 parent: 2 - - uid: 3965 + - uid: 4179 components: - type: Transform pos: -49.5,-78.5 parent: 2 - - uid: 3966 + - uid: 4180 components: - type: Transform pos: -50.5,-78.5 parent: 2 - - uid: 3967 + - uid: 4181 components: - type: Transform pos: -51.5,-78.5 parent: 2 - - uid: 3968 + - uid: 4182 components: - type: Transform pos: -52.5,-78.5 parent: 2 - - uid: 3969 + - uid: 4183 components: - type: Transform pos: -53.5,-78.5 parent: 2 - - uid: 3970 + - uid: 4184 components: - type: Transform pos: -53.5,-77.5 parent: 2 - - uid: 3971 + - uid: 4185 components: - type: Transform pos: -54.5,-77.5 parent: 2 - - uid: 3972 + - uid: 4186 components: - type: Transform pos: -55.5,-77.5 parent: 2 - - uid: 3973 + - uid: 4187 components: - type: Transform pos: -56.5,-77.5 parent: 2 - - uid: 3974 + - uid: 4188 components: - type: Transform pos: -53.5,-79.5 parent: 2 - - uid: 3975 + - uid: 4189 components: - type: Transform pos: -53.5,-80.5 parent: 2 - - uid: 3976 + - uid: 4190 components: - type: Transform pos: -53.5,-81.5 parent: 2 - - uid: 3977 + - uid: 4191 components: - type: Transform pos: -53.5,-82.5 parent: 2 - - uid: 3978 + - uid: 4192 components: - type: Transform pos: -53.5,-83.5 parent: 2 - - uid: 3979 + - uid: 4193 components: - type: Transform pos: -53.5,-84.5 parent: 2 - - uid: 3980 + - uid: 4194 components: - type: Transform pos: -53.5,-85.5 parent: 2 - - uid: 3981 + - uid: 4195 components: - type: Transform pos: -47.5,-82.5 parent: 2 - - uid: 3982 + - uid: 4196 components: - type: Transform pos: -48.5,-82.5 parent: 2 - - uid: 3983 + - uid: 4197 components: - type: Transform pos: -49.5,-82.5 parent: 2 - - uid: 3984 + - uid: 4198 components: - type: Transform pos: -50.5,-82.5 parent: 2 - - uid: 3985 + - uid: 4199 components: - type: Transform pos: -47.5,-83.5 parent: 2 - - uid: 3986 + - uid: 4200 components: - type: Transform pos: -47.5,-84.5 parent: 2 - - uid: 3987 + - uid: 4201 components: - type: Transform pos: -48.5,-84.5 parent: 2 - - uid: 3988 + - uid: 4202 components: - type: Transform pos: -49.5,-84.5 parent: 2 - - uid: 3989 + - uid: 4203 components: - type: Transform pos: -50.5,-84.5 parent: 2 - - uid: 3990 + - uid: 4204 components: - type: Transform pos: -43.5,-79.5 parent: 2 - - uid: 3991 + - uid: 4205 components: - type: Transform pos: -43.5,-78.5 parent: 2 - - uid: 3992 + - uid: 4206 components: - type: Transform pos: -43.5,-80.5 parent: 2 - - uid: 3993 + - uid: 4207 components: - type: Transform pos: -42.5,-80.5 parent: 2 - - uid: 3994 + - uid: 4208 components: - type: Transform pos: -41.5,-80.5 parent: 2 - - uid: 3995 + - uid: 4209 components: - type: Transform pos: -41.5,-81.5 parent: 2 - - uid: 3996 + - uid: 4210 components: - type: Transform pos: -41.5,-82.5 parent: 2 - - uid: 3997 + - uid: 4211 components: - type: Transform pos: -41.5,-83.5 parent: 2 - - uid: 3998 + - uid: 4212 components: - type: Transform pos: -41.5,-84.5 parent: 2 - - uid: 3999 + - uid: 4213 components: - type: Transform pos: -41.5,-85.5 parent: 2 - - uid: 4000 + - uid: 4214 components: - type: Transform pos: -42.5,-85.5 parent: 2 - - uid: 4001 + - uid: 4215 components: - type: Transform pos: -43.5,-85.5 parent: 2 - - uid: 4002 + - uid: 4216 components: - type: Transform pos: -44.5,-85.5 parent: 2 - - uid: 4003 + - uid: 4217 components: - type: Transform pos: -44.5,-86.5 parent: 2 - - uid: 4004 + - uid: 4218 components: - type: Transform pos: -44.5,-87.5 parent: 2 - - uid: 4005 + - uid: 4219 components: - type: Transform pos: -44.5,-88.5 parent: 2 - - uid: 4006 + - uid: 4220 components: - type: Transform pos: -43.5,-77.5 parent: 2 - - uid: 4007 + - uid: 4221 components: - type: Transform pos: -43.5,-76.5 parent: 2 - - uid: 4008 + - uid: 4222 components: - type: Transform pos: -43.5,-75.5 parent: 2 - - uid: 4009 + - uid: 4223 components: - type: Transform pos: -43.5,-74.5 parent: 2 - - uid: 4010 + - uid: 4224 components: - type: Transform pos: -43.5,-73.5 parent: 2 - - uid: 4011 + - uid: 4225 components: - type: Transform pos: -43.5,-72.5 parent: 2 - - uid: 4012 + - uid: 4226 components: - type: Transform pos: -43.5,-71.5 parent: 2 - - uid: 4013 + - uid: 4227 components: - type: Transform pos: -42.5,-71.5 parent: 2 - - uid: 4014 + - uid: 4228 components: - type: Transform pos: -41.5,-71.5 parent: 2 - - uid: 4015 + - uid: 4229 components: - type: Transform pos: -40.5,-85.5 parent: 2 - - uid: 4016 + - uid: 4230 components: - type: Transform pos: -39.5,-85.5 parent: 2 - - uid: 4017 + - uid: 4231 components: - type: Transform pos: -38.5,-85.5 parent: 2 - - uid: 4018 + - uid: 4232 components: - type: Transform pos: -38.5,-86.5 parent: 2 - - uid: 4019 + - uid: 4233 components: - type: Transform pos: -38.5,-87.5 parent: 2 - - uid: 4020 + - uid: 4234 components: - type: Transform pos: -38.5,-88.5 parent: 2 - - uid: 4021 + - uid: 4235 components: - type: Transform pos: -39.5,-88.5 parent: 2 - - uid: 4022 + - uid: 4236 components: - type: Transform pos: -40.5,-88.5 parent: 2 - - uid: 4023 + - uid: 4237 components: - type: Transform pos: -41.5,-88.5 parent: 2 - - uid: 4024 + - uid: 4238 components: - type: Transform pos: -35.5,-73.5 parent: 2 - - uid: 4025 + - uid: 4239 components: - type: Transform pos: -36.5,-73.5 parent: 2 - - uid: 4026 + - uid: 4240 components: - type: Transform pos: -37.5,-73.5 parent: 2 - - uid: 4027 + - uid: 4241 components: - type: Transform pos: -38.5,-73.5 parent: 2 - - uid: 4028 + - uid: 4242 components: - type: Transform pos: -39.5,-73.5 parent: 2 - - uid: 4029 + - uid: 4243 components: - type: Transform pos: -37.5,-72.5 parent: 2 - - uid: 4030 + - uid: 4244 components: - type: Transform pos: -36.5,-68.5 parent: 2 - - uid: 4031 + - uid: 4245 components: - type: Transform pos: -35.5,-68.5 parent: 2 - - uid: 4032 + - uid: 4246 components: - type: Transform pos: -34.5,-68.5 parent: 2 - - uid: 4033 + - uid: 4247 components: - type: Transform pos: -37.5,-68.5 parent: 2 - - uid: 4034 + - uid: 4248 components: - type: Transform pos: -37.5,-69.5 parent: 2 - - uid: 4035 + - uid: 4249 components: - type: Transform pos: -37.5,-70.5 parent: 2 - - uid: 4036 + - uid: 4250 components: - type: Transform pos: -36.5,-70.5 parent: 2 - - uid: 4037 + - uid: 4251 components: - type: Transform pos: -38.5,-69.5 parent: 2 - - uid: 4038 + - uid: 4252 components: - type: Transform pos: -39.5,-69.5 parent: 2 - - uid: 4039 + - uid: 4253 components: - type: Transform pos: -40.5,-69.5 parent: 2 - - uid: 4040 + - uid: 4254 components: - type: Transform pos: -43.5,-70.5 parent: 2 - - uid: 4041 + - uid: 4255 components: - type: Transform pos: -43.5,-69.5 parent: 2 - - uid: 4042 + - uid: 4256 components: - type: Transform pos: -43.5,-68.5 parent: 2 - - uid: 4043 + - uid: 4257 components: - type: Transform pos: -43.5,-67.5 parent: 2 - - uid: 4044 + - uid: 4258 components: - type: Transform pos: -43.5,-66.5 parent: 2 - - uid: 4045 + - uid: 4259 components: - type: Transform pos: -33.5,-62.5 parent: 2 - - uid: 4046 + - uid: 4260 components: - type: Transform pos: -34.5,-62.5 parent: 2 - - uid: 4047 + - uid: 4261 components: - type: Transform pos: -35.5,-62.5 parent: 2 - - uid: 4048 + - uid: 4262 components: - type: Transform pos: -36.5,-62.5 parent: 2 - - uid: 4049 + - uid: 4263 components: - type: Transform pos: -37.5,-62.5 parent: 2 - - uid: 4050 + - uid: 4264 components: - type: Transform pos: -38.5,-62.5 parent: 2 - - uid: 4051 + - uid: 4265 components: - type: Transform pos: -39.5,-62.5 parent: 2 - - uid: 4052 + - uid: 4266 components: - type: Transform pos: -39.5,-63.5 parent: 2 - - uid: 4053 + - uid: 4267 components: - type: Transform pos: -39.5,-64.5 parent: 2 - - uid: 4054 + - uid: 4268 components: - type: Transform pos: -38.5,-64.5 parent: 2 - - uid: 4055 + - uid: 4269 components: - type: Transform pos: -37.5,-64.5 parent: 2 - - uid: 4056 + - uid: 4270 components: - type: Transform pos: -36.5,-64.5 parent: 2 - - uid: 4057 + - uid: 4271 components: - type: Transform pos: -35.5,-64.5 parent: 2 - - uid: 4058 + - uid: 4272 components: - type: Transform pos: -34.5,-64.5 parent: 2 - - uid: 4059 + - uid: 4273 components: - type: Transform pos: -33.5,-64.5 parent: 2 - - uid: 4060 + - uid: 4274 components: - type: Transform pos: -32.5,-64.5 parent: 2 - - uid: 4061 + - uid: 4275 components: - type: Transform pos: -32.5,-63.5 parent: 2 - - uid: 4062 + - uid: 4276 components: - type: Transform pos: -32.5,-62.5 parent: 2 - - uid: 4063 + - uid: 4277 components: - type: Transform pos: -32.5,-61.5 parent: 2 - - uid: 4064 + - uid: 4278 components: - type: Transform pos: -32.5,-60.5 parent: 2 - - uid: 4065 + - uid: 4279 components: - type: Transform pos: -32.5,-59.5 parent: 2 - - uid: 4066 + - uid: 4280 components: - type: Transform pos: -32.5,-58.5 parent: 2 - - uid: 4067 + - uid: 4281 components: - type: Transform pos: -32.5,-57.5 parent: 2 - - uid: 4068 + - uid: 4282 components: - type: Transform pos: -31.5,-64.5 parent: 2 - - uid: 4069 + - uid: 4283 components: - type: Transform pos: -31.5,-65.5 parent: 2 - - uid: 4070 + - uid: 4284 components: - type: Transform pos: -31.5,-66.5 parent: 2 - - uid: 4071 + - uid: 4285 components: - type: Transform pos: -31.5,-67.5 parent: 2 - - uid: 4072 + - uid: 4286 components: - type: Transform pos: -31.5,-68.5 parent: 2 - - uid: 4073 + - uid: 4287 components: - type: Transform pos: -31.5,-69.5 parent: 2 - - uid: 4074 + - uid: 4288 components: - type: Transform pos: -31.5,-70.5 parent: 2 - - uid: 4075 + - uid: 4289 components: - type: Transform pos: -26.5,-74.5 parent: 2 - - uid: 4076 + - uid: 4290 components: - type: Transform pos: -27.5,-74.5 parent: 2 - - uid: 4077 + - uid: 4291 components: - type: Transform pos: -28.5,-73.5 parent: 2 - - uid: 4078 + - uid: 4292 components: - type: Transform pos: -28.5,-74.5 parent: 2 - - uid: 4079 + - uid: 4293 components: - type: Transform pos: -28.5,-75.5 parent: 2 - - uid: 4080 + - uid: 4294 components: - type: Transform pos: -28.5,-76.5 parent: 2 - - uid: 4081 + - uid: 4295 components: - type: Transform pos: -28.5,-77.5 parent: 2 - - uid: 4082 + - uid: 4296 components: - type: Transform pos: -29.5,-77.5 parent: 2 - - uid: 4083 + - uid: 4297 components: - type: Transform pos: -30.5,-77.5 parent: 2 - - uid: 4084 + - uid: 4298 components: - type: Transform pos: -31.5,-77.5 parent: 2 - - uid: 4085 + - uid: 4299 components: - type: Transform pos: -32.5,-77.5 parent: 2 - - uid: 4086 + - uid: 4300 components: - type: Transform pos: -32.5,-76.5 parent: 2 - - uid: 4087 + - uid: 4301 components: - type: Transform pos: -32.5,-75.5 parent: 2 - - uid: 4088 + - uid: 4302 components: - type: Transform pos: -32.5,-74.5 parent: 2 - - uid: 4089 + - uid: 4303 components: - type: Transform pos: -32.5,-73.5 parent: 2 - - uid: 4090 + - uid: 4304 components: - type: Transform pos: -32.5,-72.5 parent: 2 - - uid: 4091 + - uid: 4305 components: - type: Transform pos: -33.5,-76.5 parent: 2 - - uid: 4092 + - uid: 4306 components: - type: Transform pos: -34.5,-76.5 parent: 2 - - uid: 4093 + - uid: 4307 components: - type: Transform pos: -35.5,-76.5 parent: 2 - - uid: 4094 + - uid: 4308 components: - type: Transform pos: -36.5,-76.5 parent: 2 - - uid: 4095 + - uid: 4309 components: - type: Transform pos: -37.5,-76.5 parent: 2 - - uid: 4096 + - uid: 4310 components: - type: Transform pos: -38.5,-76.5 parent: 2 - - uid: 4097 + - uid: 4311 components: - type: Transform pos: -38.5,-77.5 parent: 2 - - uid: 4098 + - uid: 4312 components: - type: Transform pos: -38.5,-78.5 parent: 2 - - uid: 4099 + - uid: 4313 components: - type: Transform pos: -38.5,-79.5 parent: 2 - - uid: 4100 + - uid: 4314 components: - type: Transform pos: -38.5,-80.5 parent: 2 - - uid: 4101 + - uid: 4315 components: - type: Transform pos: -38.5,-81.5 parent: 2 - - uid: 4102 + - uid: 4316 components: - type: Transform pos: -38.5,-82.5 parent: 2 - - uid: 4103 + - uid: 4317 components: - type: Transform pos: -35.5,-58.5 parent: 2 - - uid: 4104 + - uid: 4318 components: - type: Transform pos: -36.5,-58.5 parent: 2 - - uid: 4105 + - uid: 4319 components: - type: Transform pos: -37.5,-58.5 parent: 2 - - uid: 4106 + - uid: 4320 components: - type: Transform pos: -38.5,-58.5 parent: 2 - - uid: 4107 + - uid: 4321 components: - type: Transform pos: -39.5,-58.5 parent: 2 - - uid: 4108 + - uid: 4322 components: - type: Transform pos: -40.5,-58.5 parent: 2 - - uid: 4109 + - uid: 4323 components: - type: Transform pos: -41.5,-58.5 parent: 2 - - uid: 4110 + - uid: 4324 components: - type: Transform pos: -42.5,-58.5 parent: 2 - - uid: 4111 + - uid: 4325 components: - type: Transform pos: -43.5,-52.5 parent: 2 - - uid: 4112 + - uid: 4326 components: - type: Transform pos: -43.5,-53.5 parent: 2 - - uid: 4113 + - uid: 4327 components: - type: Transform pos: -43.5,-54.5 parent: 2 - - uid: 4114 + - uid: 4328 components: - type: Transform pos: -43.5,-55.5 parent: 2 - - uid: 4115 + - uid: 4329 components: - type: Transform pos: -43.5,-56.5 parent: 2 - - uid: 4116 + - uid: 4330 components: - type: Transform pos: -43.5,-57.5 parent: 2 - - uid: 4117 + - uid: 4331 components: - type: Transform pos: -43.5,-58.5 parent: 2 - - uid: 4118 + - uid: 4332 components: - type: Transform pos: -43.5,-59.5 parent: 2 - - uid: 4119 + - uid: 4333 components: - type: Transform pos: -43.5,-60.5 parent: 2 - - uid: 4120 + - uid: 4334 components: - type: Transform pos: -43.5,-61.5 parent: 2 - - uid: 4121 + - uid: 4335 components: - type: Transform pos: -43.5,-62.5 parent: 2 - - uid: 4122 + - uid: 4336 components: - type: Transform pos: -43.5,-63.5 parent: 2 - - uid: 4123 + - uid: 4337 components: - type: Transform pos: -43.5,-64.5 parent: 2 - - uid: 4124 + - uid: 4338 components: - type: Transform pos: -40.5,-57.5 parent: 2 - - uid: 4125 + - uid: 4339 components: - type: Transform pos: -40.5,-56.5 parent: 2 - - uid: 4126 + - uid: 4340 components: - type: Transform pos: -37.5,-56.5 parent: 2 - - uid: 4127 + - uid: 4341 components: - type: Transform pos: -37.5,-55.5 parent: 2 - - uid: 4128 + - uid: 4342 components: - type: Transform pos: -37.5,-54.5 parent: 2 - - uid: 4129 + - uid: 4343 components: - type: Transform pos: -37.5,-53.5 parent: 2 - - uid: 4130 + - uid: 4344 components: - type: Transform pos: -37.5,-52.5 parent: 2 - - uid: 4131 + - uid: 4345 components: - type: Transform pos: -36.5,-52.5 parent: 2 - - uid: 4132 + - uid: 4346 components: - type: Transform pos: -35.5,-52.5 parent: 2 - - uid: 4133 + - uid: 4347 components: - type: Transform pos: -34.5,-52.5 parent: 2 - - uid: 4134 + - uid: 4348 components: - type: Transform pos: -38.5,-52.5 parent: 2 - - uid: 4135 + - uid: 4349 components: - type: Transform pos: -39.5,-52.5 parent: 2 - - uid: 4136 + - uid: 4350 components: - type: Transform pos: -40.5,-52.5 parent: 2 - - uid: 4137 + - uid: 4351 components: - type: Transform pos: -37.5,-51.5 parent: 2 - - uid: 4138 + - uid: 4352 components: - type: Transform pos: -37.5,-50.5 parent: 2 - - uid: 4139 + - uid: 4353 components: - type: Transform pos: -37.5,-49.5 parent: 2 - - uid: 4140 + - uid: 4354 components: - type: Transform pos: -37.5,-48.5 parent: 2 - - uid: 4141 + - uid: 4355 components: - type: Transform pos: -37.5,-47.5 parent: 2 - - uid: 4142 + - uid: 4356 components: - type: Transform pos: -36.5,-47.5 parent: 2 - - uid: 4143 + - uid: 4357 components: - type: Transform pos: -35.5,-47.5 parent: 2 - - uid: 4144 + - uid: 4358 components: - type: Transform pos: -34.5,-47.5 parent: 2 - - uid: 4145 + - uid: 4359 components: - type: Transform pos: -38.5,-47.5 parent: 2 - - uid: 4146 + - uid: 4360 components: - type: Transform pos: -39.5,-47.5 parent: 2 - - uid: 4147 + - uid: 4361 components: - type: Transform pos: -40.5,-47.5 parent: 2 - - uid: 4148 + - uid: 4362 components: - type: Transform pos: -47.5,-51.5 parent: 2 - - uid: 4149 + - uid: 4363 components: - type: Transform pos: -47.5,-50.5 parent: 2 - - uid: 4150 + - uid: 4364 components: - type: Transform pos: -47.5,-49.5 parent: 2 - - uid: 4151 + - uid: 4365 components: - type: Transform pos: -47.5,-48.5 parent: 2 - - uid: 4152 + - uid: 4366 components: - type: Transform pos: -47.5,-47.5 parent: 2 - - uid: 4153 + - uid: 4367 components: - type: Transform pos: -48.5,-47.5 parent: 2 - - uid: 4154 + - uid: 4368 components: - type: Transform pos: -49.5,-47.5 parent: 2 - - uid: 4155 + - uid: 4369 components: - type: Transform pos: -46.5,-51.5 parent: 2 - - uid: 4156 + - uid: 4370 components: - type: Transform pos: -45.5,-51.5 parent: 2 - - uid: 4157 + - uid: 4371 components: - type: Transform pos: -43.5,-51.5 parent: 2 - - uid: 4158 + - uid: 4372 components: - type: Transform pos: -43.5,-50.5 parent: 2 - - uid: 4159 + - uid: 4373 components: - type: Transform pos: -43.5,-49.5 parent: 2 - - uid: 4160 + - uid: 4374 components: - type: Transform pos: -43.5,-48.5 parent: 2 - - uid: 4161 + - uid: 4375 components: - type: Transform pos: -43.5,-47.5 parent: 2 - - uid: 4162 + - uid: 4376 components: - type: Transform pos: -43.5,-46.5 parent: 2 - - uid: 4163 + - uid: 4377 components: - type: Transform pos: -43.5,-45.5 parent: 2 - - uid: 4164 + - uid: 4378 components: - type: Transform pos: -46.5,-65.5 parent: 2 - - uid: 4165 + - uid: 4379 components: - type: Transform pos: -28.5,-96.5 parent: 2 - - uid: 4166 + - uid: 4380 components: - type: Transform pos: -26.5,-98.5 parent: 2 - - uid: 4167 + - uid: 4381 components: - type: Transform pos: -16.5,-92.5 parent: 2 - - uid: 4168 + - uid: 4382 components: - type: Transform pos: -16.5,-94.5 parent: 2 - - uid: 4169 + - uid: 4383 components: - type: Transform pos: -16.5,-93.5 parent: 2 - - uid: 4170 + - uid: 4384 components: - type: Transform pos: -17.5,-93.5 parent: 2 - - uid: 4171 + - uid: 4385 components: - type: Transform pos: -18.5,-93.5 parent: 2 - - uid: 4172 + - uid: 4386 components: - type: Transform pos: -19.5,-93.5 parent: 2 - - uid: 4173 + - uid: 4387 components: - type: Transform pos: -20.5,-93.5 parent: 2 - - uid: 4174 + - uid: 4388 components: - type: Transform pos: -33.5,-91.5 parent: 2 - - uid: 4175 + - uid: 4389 components: - type: Transform pos: -33.5,-92.5 parent: 2 - - uid: 4176 + - uid: 4390 components: - type: Transform pos: -33.5,-93.5 parent: 2 - - uid: 4177 + - uid: 4391 components: - type: Transform pos: -34.5,-93.5 parent: 2 - - uid: 4178 + - uid: 4392 components: - type: Transform pos: -34.5,-94.5 parent: 2 - - uid: 4179 + - uid: 4393 components: - type: Transform pos: -34.5,-95.5 parent: 2 - - uid: 4180 + - uid: 4394 components: - type: Transform pos: -34.5,-96.5 parent: 2 - - uid: 4181 + - uid: 4395 components: - type: Transform pos: -34.5,-97.5 parent: 2 - - uid: 4182 + - uid: 4396 components: - type: Transform pos: -33.5,-97.5 parent: 2 - - uid: 4183 + - uid: 4397 components: - type: Transform pos: -32.5,-97.5 parent: 2 - - uid: 4184 + - uid: 4398 components: - type: Transform pos: -31.5,-97.5 parent: 2 - - uid: 4185 + - uid: 4399 components: - type: Transform pos: -30.5,-97.5 parent: 2 - - uid: 4186 + - uid: 4400 components: - type: Transform pos: -30.5,-96.5 parent: 2 - - uid: 4187 + - uid: 4401 components: - type: Transform pos: -30.5,-95.5 parent: 2 - - uid: 4188 + - uid: 4402 components: - type: Transform pos: -30.5,-94.5 parent: 2 - - uid: 4189 + - uid: 4403 components: - type: Transform pos: -30.5,-93.5 parent: 2 - - uid: 4190 + - uid: 4404 components: - type: Transform pos: -31.5,-93.5 parent: 2 - - uid: 4191 + - uid: 4405 components: - type: Transform pos: -32.5,-93.5 parent: 2 - - uid: 4192 + - uid: 4406 components: - type: Transform pos: -32.5,-90.5 parent: 2 - - uid: 4193 + - uid: 4407 components: - type: Transform pos: -32.5,-89.5 parent: 2 - - uid: 4194 + - uid: 4408 components: - type: Transform pos: -32.5,-88.5 parent: 2 - - uid: 4195 + - uid: 4409 components: - type: Transform pos: -32.5,-87.5 parent: 2 - - uid: 4196 + - uid: 4410 components: - type: Transform pos: -32.5,-86.5 parent: 2 - - uid: 4197 + - uid: 4411 components: - type: Transform pos: -32.5,-85.5 parent: 2 - - uid: 4198 + - uid: 4412 components: - type: Transform pos: -32.5,-84.5 parent: 2 - - uid: 4199 + - uid: 4413 components: - type: Transform pos: -32.5,-83.5 parent: 2 - - uid: 4200 + - uid: 4414 components: - type: Transform pos: -33.5,-84.5 parent: 2 - - uid: 4201 + - uid: 4415 components: - type: Transform pos: -34.5,-84.5 parent: 2 - - uid: 4202 + - uid: 4416 components: - type: Transform pos: -35.5,-84.5 parent: 2 - - uid: 4203 + - uid: 4417 components: - type: Transform pos: -31.5,-84.5 parent: 2 - - uid: 4204 + - uid: 4418 components: - type: Transform pos: -30.5,-84.5 parent: 2 - - uid: 4205 + - uid: 4419 components: - type: Transform pos: -29.5,-84.5 parent: 2 - - uid: 4206 + - uid: 4420 components: - type: Transform pos: -28.5,-84.5 parent: 2 - - uid: 4207 + - uid: 4421 components: - type: Transform pos: -31.5,-87.5 parent: 2 - - uid: 4208 + - uid: 4422 components: - type: Transform pos: -30.5,-87.5 parent: 2 - - uid: 4209 + - uid: 4423 components: - type: Transform pos: -29.5,-87.5 parent: 2 - - uid: 4210 + - uid: 4424 components: - type: Transform pos: -28.5,-87.5 parent: 2 - - uid: 4211 + - uid: 4425 components: - type: Transform pos: -33.5,-87.5 parent: 2 - - uid: 4212 + - uid: 4426 components: - type: Transform pos: -34.5,-87.5 parent: 2 - - uid: 4213 + - uid: 4427 components: - type: Transform pos: -35.5,-87.5 parent: 2 - - uid: 4214 + - uid: 4428 components: - type: Transform pos: -33.5,-90.5 parent: 2 - - uid: 4215 + - uid: 4429 components: - type: Transform pos: -34.5,-90.5 parent: 2 - - uid: 4216 + - uid: 4430 components: - type: Transform pos: -35.5,-90.5 parent: 2 - - uid: 4217 + - uid: 4431 components: - type: Transform pos: -31.5,-90.5 parent: 2 - - uid: 4218 + - uid: 4432 components: - type: Transform pos: -30.5,-90.5 parent: 2 - - uid: 4219 + - uid: 4433 components: - type: Transform pos: -29.5,-90.5 parent: 2 - - uid: 4220 + - uid: 4434 components: - type: Transform pos: -28.5,-90.5 parent: 2 - - uid: 4221 + - uid: 4435 components: - type: Transform pos: -35.5,-80.5 parent: 2 - - uid: 4222 + - uid: 4436 components: - type: Transform pos: -20.5,-88.5 parent: 2 - - uid: 4223 + - uid: 4437 components: - type: Transform pos: -34.5,-80.5 parent: 2 - - uid: 4224 + - uid: 4438 components: - type: Transform pos: -21.5,-88.5 parent: 2 - - uid: 4225 + - uid: 4439 components: - type: Transform pos: -33.5,-80.5 parent: 2 - - uid: 4226 + - uid: 4440 components: - type: Transform pos: -22.5,-88.5 parent: 2 - - uid: 4227 + - uid: 4441 components: - type: Transform pos: -32.5,-80.5 parent: 2 - - uid: 4228 + - uid: 4442 components: - type: Transform pos: -23.5,-88.5 parent: 2 - - uid: 4229 + - uid: 4443 components: - type: Transform pos: -31.5,-80.5 parent: 2 - - uid: 4230 + - uid: 4444 components: - type: Transform pos: -24.5,-88.5 parent: 2 - - uid: 4231 + - uid: 4445 components: - type: Transform pos: -30.5,-80.5 parent: 2 - - uid: 4232 + - uid: 4446 components: - type: Transform pos: -24.5,-87.5 parent: 2 - - uid: 4233 + - uid: 4447 components: - type: Transform pos: -29.5,-80.5 parent: 2 - - uid: 4234 + - uid: 4448 components: - type: Transform pos: -24.5,-86.5 parent: 2 - - uid: 4235 + - uid: 4449 components: - type: Transform pos: -28.5,-80.5 parent: 2 - - uid: 4236 + - uid: 4450 components: - type: Transform pos: -24.5,-85.5 parent: 2 - - uid: 4237 + - uid: 4451 components: - type: Transform pos: -27.5,-80.5 parent: 2 - - uid: 4238 + - uid: 4452 components: - type: Transform pos: -24.5,-84.5 parent: 2 - - uid: 4239 + - uid: 4453 components: - type: Transform pos: -26.5,-80.5 parent: 2 - - uid: 4240 + - uid: 4454 components: - type: Transform pos: -24.5,-83.5 parent: 2 - - uid: 4241 + - uid: 4455 components: - type: Transform pos: -25.5,-80.5 parent: 2 - - uid: 4242 + - uid: 4456 components: - type: Transform pos: -24.5,-82.5 parent: 2 - - uid: 4243 + - uid: 4457 components: - type: Transform pos: -24.5,-80.5 parent: 2 - - uid: 4244 + - uid: 4458 components: - type: Transform pos: -24.5,-81.5 parent: 2 - - uid: 4245 + - uid: 4459 components: - type: Transform pos: -19.5,-88.5 parent: 2 - - uid: 4246 + - uid: 4460 components: - type: Transform pos: -18.5,-88.5 parent: 2 - - uid: 4247 + - uid: 4461 components: - type: Transform pos: -18.5,-87.5 parent: 2 - - uid: 4248 + - uid: 4462 components: - type: Transform pos: -18.5,-86.5 parent: 2 - - uid: 4249 + - uid: 4463 components: - type: Transform pos: -18.5,-85.5 parent: 2 - - uid: 4250 + - uid: 4464 components: - type: Transform pos: -18.5,-84.5 parent: 2 - - uid: 4251 + - uid: 4465 components: - type: Transform pos: -18.5,-83.5 parent: 2 - - uid: 4252 + - uid: 4466 components: - type: Transform pos: -18.5,-82.5 parent: 2 - - uid: 4253 + - uid: 4467 components: - type: Transform pos: -19.5,-82.5 parent: 2 - - uid: 4254 + - uid: 4468 components: - type: Transform pos: -20.5,-82.5 parent: 2 - - uid: 4255 + - uid: 4469 components: - type: Transform pos: -21.5,-82.5 parent: 2 - - uid: 4256 + - uid: 4470 components: - type: Transform pos: -22.5,-82.5 parent: 2 - - uid: 4257 + - uid: 4471 components: - type: Transform pos: -23.5,-82.5 parent: 2 - - uid: 4258 + - uid: 4472 components: - type: Transform pos: -25.5,-82.5 parent: 2 - - uid: 4259 + - uid: 4473 components: - type: Transform pos: -26.5,-82.5 parent: 2 - - uid: 4260 + - uid: 4474 components: - type: Transform pos: -24.5,-77.5 parent: 2 - - uid: 4261 + - uid: 4475 components: - type: Transform pos: -23.5,-77.5 parent: 2 - - uid: 4262 + - uid: 4476 components: - type: Transform pos: -22.5,-77.5 parent: 2 - - uid: 4263 + - uid: 4477 components: - type: Transform pos: -21.5,-77.5 parent: 2 - - uid: 4264 + - uid: 4478 components: - type: Transform pos: -20.5,-77.5 parent: 2 - - uid: 4265 + - uid: 4479 components: - type: Transform pos: -19.5,-77.5 parent: 2 - - uid: 4266 + - uid: 4480 components: - type: Transform pos: -18.5,-77.5 parent: 2 - - uid: 4267 + - uid: 4481 components: - type: Transform pos: -17.5,-77.5 parent: 2 - - uid: 4268 + - uid: 4482 components: - type: Transform pos: -17.5,-76.5 parent: 2 - - uid: 4269 + - uid: 4483 components: - type: Transform pos: -16.5,-76.5 parent: 2 - - uid: 4270 + - uid: 4484 components: - type: Transform pos: -15.5,-76.5 parent: 2 - - uid: 4271 + - uid: 4485 components: - type: Transform pos: -14.5,-76.5 parent: 2 - - uid: 4272 + - uid: 4486 components: - type: Transform pos: -17.5,-78.5 parent: 2 - - uid: 4273 + - uid: 4487 components: - type: Transform pos: -17.5,-79.5 parent: 2 - - uid: 4274 + - uid: 4488 components: - type: Transform pos: -19.5,-78.5 parent: 2 - - uid: 4275 + - uid: 4489 components: - type: Transform pos: -19.5,-79.5 parent: 2 - - uid: 4276 + - uid: 4490 components: - type: Transform pos: -21.5,-78.5 parent: 2 - - uid: 4277 + - uid: 4491 components: - type: Transform pos: -21.5,-79.5 parent: 2 - - uid: 4278 + - uid: 4492 components: - type: Transform pos: -24.5,-76.5 parent: 2 - - uid: 4279 + - uid: 4493 components: - type: Transform pos: 29.5,-77.5 parent: 2 - - uid: 4280 + - uid: 4494 components: - type: Transform pos: 29.5,-76.5 parent: 2 - - uid: 4281 + - uid: 4495 components: - type: Transform pos: 28.5,-76.5 parent: 2 - - uid: 4282 + - uid: 4496 components: - type: Transform pos: 28.5,-75.5 parent: 2 - - uid: 4283 + - uid: 4497 components: - type: Transform pos: 28.5,-74.5 parent: 2 - - uid: 4284 + - uid: 4498 components: - type: Transform pos: 28.5,-73.5 parent: 2 - - uid: 4285 + - uid: 4499 components: - type: Transform pos: 27.5,-75.5 parent: 2 - - uid: 4286 + - uid: 4500 components: - type: Transform pos: 26.5,-75.5 parent: 2 - - uid: 4287 + - uid: 4501 components: - type: Transform pos: -1.5,-99.5 parent: 2 - - uid: 4288 + - uid: 4502 components: - type: Transform pos: -1.5,-98.5 parent: 2 - - uid: 4289 + - uid: 4503 components: - type: Transform pos: -1.5,-97.5 parent: 2 - - uid: 4290 + - uid: 4504 components: - type: Transform pos: -1.5,-96.5 parent: 2 - - uid: 4291 + - uid: 4505 components: - type: Transform pos: -1.5,-95.5 parent: 2 - - uid: 4292 + - uid: 4506 components: - type: Transform pos: -1.5,-94.5 parent: 2 - - uid: 4293 + - uid: 4507 components: - type: Transform pos: -1.5,-93.5 parent: 2 - - uid: 4294 + - uid: 4508 components: - type: Transform pos: -2.5,-97.5 parent: 2 - - uid: 4295 + - uid: 4509 components: - type: Transform pos: -0.5,-100.5 parent: 2 - - uid: 4296 + - uid: 4510 components: - type: Transform pos: -1.5,-100.5 parent: 2 - - uid: 4297 + - uid: 4511 components: - type: Transform pos: -2.5,-100.5 parent: 2 - - uid: 4298 + - uid: 4512 components: - type: Transform pos: -2.5,-94.5 parent: 2 - - uid: 4299 + - uid: 4513 components: - type: Transform pos: -0.5,-96.5 parent: 2 - - uid: 4300 + - uid: 4514 components: - type: Transform pos: 0.5,-89.5 parent: 2 - - uid: 4301 + - uid: 4515 components: - type: Transform pos: 0.5,-88.5 parent: 2 - - uid: 4302 + - uid: 4516 components: - type: Transform pos: 0.5,-87.5 parent: 2 - - uid: 4303 + - uid: 4517 components: - type: Transform pos: 0.5,-86.5 parent: 2 - - uid: 4304 + - uid: 4518 components: - type: Transform pos: 0.5,-85.5 parent: 2 - - uid: 4305 + - uid: 4519 components: - type: Transform pos: 0.5,-84.5 parent: 2 - - uid: 4306 + - uid: 4520 components: - type: Transform pos: 0.5,-90.5 parent: 2 - - uid: 4307 + - uid: 4521 components: - type: Transform pos: 1.5,-90.5 parent: 2 - - uid: 4308 + - uid: 4522 components: - type: Transform pos: 2.5,-90.5 parent: 2 - - uid: 4309 + - uid: 4523 components: - type: Transform pos: 3.5,-90.5 parent: 2 - - uid: 4310 + - uid: 4524 components: - type: Transform pos: 4.5,-90.5 parent: 2 - - uid: 4311 + - uid: 4525 components: - type: Transform pos: 5.5,-90.5 parent: 2 - - uid: 4312 + - uid: 4526 components: - type: Transform pos: 6.5,-90.5 parent: 2 - - uid: 4313 + - uid: 4527 components: - type: Transform pos: 7.5,-90.5 parent: 2 - - uid: 4314 + - uid: 4528 components: - type: Transform pos: 7.5,-92.5 parent: 2 - - uid: 4315 + - uid: 4529 components: - type: Transform pos: 8.5,-92.5 parent: 2 - - uid: 4316 + - uid: 4530 components: - type: Transform pos: 16.5,-91.5 parent: 2 - - uid: 4317 + - uid: 4531 components: - type: Transform pos: 16.5,-90.5 parent: 2 - - uid: 4318 + - uid: 4532 components: - type: Transform pos: 16.5,-89.5 parent: 2 - - uid: 4319 + - uid: 4533 components: - type: Transform pos: 16.5,-88.5 parent: 2 - - uid: 4320 + - uid: 4534 components: - type: Transform pos: 16.5,-87.5 parent: 2 - - uid: 4321 + - uid: 4535 components: - type: Transform pos: 15.5,-87.5 parent: 2 - - uid: 4322 + - uid: 4536 components: - type: Transform pos: 14.5,-87.5 parent: 2 - - uid: 4323 + - uid: 4537 components: - type: Transform pos: 13.5,-87.5 parent: 2 - - uid: 4324 + - uid: 4538 components: - type: Transform pos: 12.5,-87.5 parent: 2 - - uid: 4325 + - uid: 4539 components: - type: Transform pos: 11.5,-87.5 parent: 2 - - uid: 4326 + - uid: 4540 components: - type: Transform pos: 10.5,-87.5 parent: 2 - - uid: 4327 + - uid: 4541 components: - type: Transform pos: 9.5,-87.5 parent: 2 - - uid: 4328 + - uid: 4542 components: - type: Transform pos: 8.5,-87.5 parent: 2 - - uid: 4329 + - uid: 4543 components: - type: Transform pos: 7.5,-87.5 parent: 2 - - uid: 4330 + - uid: 4544 components: - type: Transform pos: 7.5,-88.5 parent: 2 - - uid: 4331 + - uid: 4545 components: - type: Transform pos: 7.5,-89.5 parent: 2 - - uid: 4332 + - uid: 4546 components: - type: Transform pos: 7.5,-91.5 parent: 2 - - uid: 4333 + - uid: 4547 components: - type: Transform pos: 12.5,-91.5 parent: 2 - - uid: 4334 + - uid: 4548 components: - type: Transform pos: 12.5,-90.5 parent: 2 - - uid: 4335 + - uid: 4549 components: - type: Transform pos: 12.5,-89.5 parent: 2 - - uid: 4336 + - uid: 4550 components: - type: Transform pos: 12.5,-88.5 parent: 2 - - uid: 4337 + - uid: 4551 components: - type: Transform pos: 7.5,-86.5 parent: 2 - - uid: 4338 + - uid: 4552 components: - type: Transform pos: 6.5,-86.5 parent: 2 - - uid: 4339 + - uid: 4553 components: - type: Transform pos: 5.5,-86.5 parent: 2 - - uid: 4340 + - uid: 4554 components: - type: Transform pos: 4.5,-86.5 parent: 2 - - uid: 4341 + - uid: 4555 components: - type: Transform pos: 3.5,-86.5 parent: 2 - - uid: 4342 + - uid: 4556 components: - type: Transform pos: 2.5,-86.5 parent: 2 - - uid: 4343 + - uid: 4557 components: - type: Transform pos: 1.5,-86.5 parent: 2 - - uid: 4344 + - uid: 4558 components: - type: Transform pos: 7.5,-93.5 parent: 2 - - uid: 4345 + - uid: 4559 components: - type: Transform pos: 1.5,-91.5 parent: 2 - - uid: 4346 + - uid: 4560 components: - type: Transform pos: 1.5,-92.5 parent: 2 - - uid: 4347 + - uid: 4561 components: - type: Transform pos: 13.5,-82.5 parent: 2 - - uid: 4348 + - uid: 4562 components: - type: Transform pos: 12.5,-82.5 parent: 2 - - uid: 4349 + - uid: 4563 components: - type: Transform pos: 10.5,-83.5 parent: 2 - - uid: 4350 + - uid: 4564 components: - type: Transform pos: 10.5,-82.5 parent: 2 - - uid: 4351 + - uid: 4565 components: - type: Transform pos: 10.5,-81.5 parent: 2 - - uid: 4352 + - uid: 4566 components: - type: Transform pos: 10.5,-80.5 parent: 2 - - uid: 4353 + - uid: 4567 components: - type: Transform pos: 10.5,-79.5 parent: 2 - - uid: 4354 + - uid: 4568 components: - type: Transform pos: 11.5,-82.5 parent: 2 - - uid: 4355 + - uid: 4569 components: - type: Transform pos: 9.5,-82.5 parent: 2 - - uid: 4356 + - uid: 4570 components: - type: Transform pos: 8.5,-82.5 parent: 2 - - uid: 4357 + - uid: 4571 components: - type: Transform pos: 7.5,-82.5 parent: 2 - - uid: 4358 + - uid: 4572 components: - type: Transform pos: 6.5,-82.5 parent: 2 - - uid: 4359 + - uid: 4573 components: - type: Transform pos: 3.5,-80.5 parent: 2 - - uid: 4360 + - uid: 4574 components: - type: Transform pos: -10.5,-90.5 parent: 2 - - uid: 4361 + - uid: 4575 components: - type: Transform pos: 2.5,-80.5 parent: 2 - - uid: 4362 + - uid: 4576 components: - type: Transform pos: 4.5,-82.5 parent: 2 - - uid: 4363 + - uid: 4577 components: - type: Transform pos: 4.5,-81.5 parent: 2 - - uid: 4364 + - uid: 4578 components: - type: Transform pos: 4.5,-80.5 parent: 2 - - uid: 4365 + - uid: 4579 components: - type: Transform pos: 4.5,-79.5 parent: 2 - - uid: 4366 + - uid: 4580 components: - type: Transform pos: 5.5,-79.5 parent: 2 - - uid: 4367 + - uid: 4581 components: - type: Transform pos: 6.5,-79.5 parent: 2 - - uid: 4368 + - uid: 4582 components: - type: Transform pos: -9.5,-90.5 parent: 2 - - uid: 4369 + - uid: 4583 components: - type: Transform pos: 1.5,-80.5 parent: 2 - - uid: 4370 + - uid: 4584 components: - type: Transform pos: 7.5,-79.5 parent: 2 - - uid: 4371 + - uid: 4585 components: - type: Transform pos: 8.5,-79.5 parent: 2 - - uid: 4372 + - uid: 4586 components: - type: Transform pos: 9.5,-79.5 parent: 2 - - uid: 4373 + - uid: 4587 components: - type: Transform pos: 0.5,-80.5 parent: 2 - - uid: 4374 + - uid: 4588 components: - type: Transform pos: 0.5,-81.5 parent: 2 - - uid: 4375 + - uid: 4589 components: - type: Transform pos: 0.5,-79.5 parent: 2 - - uid: 4376 + - uid: 4590 components: - type: Transform pos: 0.5,-78.5 parent: 2 - - uid: 4377 + - uid: 4591 components: - type: Transform pos: 0.5,-77.5 parent: 2 - - uid: 4378 + - uid: 4592 components: - type: Transform pos: 0.5,-82.5 parent: 2 - - uid: 4379 + - uid: 4593 components: - type: Transform pos: -5.5,-82.5 parent: 2 - - uid: 4380 + - uid: 4594 components: - type: Transform pos: -4.5,-82.5 parent: 2 - - uid: 4381 + - uid: 4595 components: - type: Transform pos: -3.5,-79.5 parent: 2 - - uid: 4382 + - uid: 4596 components: - type: Transform pos: -3.5,-80.5 parent: 2 - - uid: 4383 + - uid: 4597 components: - type: Transform pos: -3.5,-81.5 parent: 2 - - uid: 4384 + - uid: 4598 components: - type: Transform pos: -3.5,-82.5 parent: 2 - - uid: 4385 + - uid: 4599 components: - type: Transform pos: -3.5,-83.5 parent: 2 - - uid: 4386 + - uid: 4600 components: - type: Transform pos: -6.5,-92.5 parent: 2 - - uid: 4387 + - uid: 4601 components: - type: Transform pos: -6.5,-93.5 parent: 2 - - uid: 4388 + - uid: 4602 components: - type: Transform pos: -6.5,-94.5 parent: 2 - - uid: 4389 + - uid: 4603 components: - type: Transform pos: -6.5,-96.5 parent: 2 - - uid: 4390 + - uid: 4604 components: - type: Transform pos: -6.5,-97.5 parent: 2 - - uid: 4391 + - uid: 4605 components: - type: Transform pos: -6.5,-98.5 parent: 2 - - uid: 4392 + - uid: 4606 components: - type: Transform pos: -5.5,-98.5 parent: 2 - - uid: 4393 + - uid: 4607 components: - type: Transform pos: -5.5,-99.5 parent: 2 - - uid: 4394 + - uid: 4608 components: - type: Transform pos: -5.5,-100.5 parent: 2 - - uid: 4395 + - uid: 4609 components: - type: Transform pos: -5.5,-101.5 parent: 2 - - uid: 4396 + - uid: 4610 components: - type: Transform pos: -6.5,-101.5 parent: 2 - - uid: 4397 + - uid: 4611 components: - type: Transform pos: -7.5,-101.5 parent: 2 - - uid: 4398 + - uid: 4612 components: - type: Transform pos: -8.5,-101.5 parent: 2 - - uid: 4399 + - uid: 4613 components: - type: Transform pos: -7.5,-98.5 parent: 2 - - uid: 4400 + - uid: 4614 components: - type: Transform pos: -8.5,-98.5 parent: 2 - - uid: 4401 + - uid: 4615 components: - type: Transform pos: -9.5,-98.5 parent: 2 - - uid: 4402 + - uid: 4616 components: - type: Transform pos: -10.5,-98.5 parent: 2 - - uid: 4403 + - uid: 4617 components: - type: Transform pos: -11.5,-98.5 parent: 2 - - uid: 4404 + - uid: 4618 components: - type: Transform pos: -12.5,-98.5 parent: 2 - - uid: 4405 + - uid: 4619 components: - type: Transform pos: -13.5,-98.5 parent: 2 - - uid: 4406 + - uid: 4620 components: - type: Transform pos: -13.5,-99.5 parent: 2 - - uid: 4407 + - uid: 4621 components: - type: Transform pos: -13.5,-100.5 parent: 2 - - uid: 4408 + - uid: 4622 components: - type: Transform pos: -7.5,-94.5 parent: 2 - - uid: 4409 + - uid: 4623 components: - type: Transform pos: -8.5,-94.5 parent: 2 - - uid: 4410 + - uid: 4624 components: - type: Transform pos: -9.5,-94.5 parent: 2 - - uid: 4411 + - uid: 4625 components: - type: Transform pos: -10.5,-94.5 parent: 2 - - uid: 4412 + - uid: 4626 components: - type: Transform pos: -11.5,-94.5 parent: 2 - - uid: 4413 + - uid: 4627 components: - type: Transform pos: -12.5,-94.5 parent: 2 - - uid: 4414 + - uid: 4628 components: - type: Transform pos: -12.5,-93.5 parent: 2 - - uid: 4415 + - uid: 4629 components: - type: Transform pos: -13.5,-93.5 parent: 2 - - uid: 4416 + - uid: 4630 components: - type: Transform pos: 14.5,-82.5 parent: 2 - - uid: 4417 + - uid: 4631 components: - type: Transform pos: 14.5,-81.5 parent: 2 - - uid: 4418 + - uid: 4632 components: - type: Transform pos: 14.5,-80.5 parent: 2 - - uid: 4419 + - uid: 4633 components: - type: Transform pos: 15.5,-80.5 parent: 2 - - uid: 4420 + - uid: 4634 components: - type: Transform pos: 16.5,-80.5 parent: 2 - - uid: 4421 + - uid: 4635 components: - type: Transform pos: 17.5,-80.5 parent: 2 - - uid: 4422 + - uid: 4636 components: - type: Transform pos: 18.5,-80.5 parent: 2 - - uid: 4423 + - uid: 4637 components: - type: Transform pos: 19.5,-80.5 parent: 2 - - uid: 4424 + - uid: 4638 components: - type: Transform pos: 19.5,-79.5 parent: 2 - - uid: 4425 + - uid: 4639 components: - type: Transform pos: 19.5,-78.5 parent: 2 - - uid: 4426 + - uid: 4640 components: - type: Transform pos: 19.5,-77.5 parent: 2 - - uid: 4427 + - uid: 4641 components: - type: Transform pos: 14.5,-79.5 parent: 2 - - uid: 4428 + - uid: 4642 components: - type: Transform pos: 14.5,-78.5 parent: 2 - - uid: 4429 + - uid: 4643 components: - type: Transform pos: 14.5,-77.5 parent: 2 - - uid: 4430 + - uid: 4644 components: - type: Transform pos: 14.5,-76.5 parent: 2 - - uid: 4431 + - uid: 4645 components: - type: Transform pos: 14.5,-83.5 parent: 2 - - uid: 4432 + - uid: 4646 components: - type: Transform pos: 14.5,-84.5 parent: 2 - - uid: 4433 + - uid: 4647 components: - type: Transform pos: 15.5,-84.5 parent: 2 - - uid: 4434 + - uid: 4648 components: - type: Transform pos: 16.5,-84.5 parent: 2 - - uid: 4435 + - uid: 4649 components: - type: Transform pos: 17.5,-84.5 parent: 2 - - uid: 4436 + - uid: 4650 components: - type: Transform pos: 18.5,-84.5 parent: 2 - - uid: 4437 + - uid: 4651 components: - type: Transform pos: 19.5,-84.5 parent: 2 - - uid: 4438 + - uid: 4652 components: - type: Transform pos: -2.5,-86.5 parent: 2 - - uid: 4439 + - uid: 4653 components: - type: Transform pos: -3.5,-86.5 parent: 2 - - uid: 4440 + - uid: 4654 components: - type: Transform pos: -4.5,-86.5 parent: 2 - - uid: 4441 + - uid: 4655 components: - type: Transform pos: -5.5,-86.5 parent: 2 - - uid: 4442 + - uid: 4656 components: - type: Transform pos: -6.5,-86.5 parent: 2 - - uid: 4443 + - uid: 4657 components: - type: Transform pos: -7.5,-86.5 parent: 2 - - uid: 4444 + - uid: 4658 components: - type: Transform pos: -8.5,-86.5 parent: 2 - - uid: 4445 + - uid: 4659 components: - type: Transform pos: -8.5,-87.5 parent: 2 - - uid: 4446 + - uid: 4660 components: - type: Transform pos: -8.5,-88.5 parent: 2 - - uid: 4447 + - uid: 4661 components: - type: Transform pos: -8.5,-89.5 parent: 2 - - uid: 4448 + - uid: 4662 components: - type: Transform pos: -8.5,-90.5 parent: 2 - - uid: 4449 + - uid: 4663 components: - type: Transform pos: -8.5,-85.5 parent: 2 - - uid: 4450 + - uid: 4664 components: - type: Transform pos: -8.5,-84.5 parent: 2 - - uid: 4451 + - uid: 4665 components: - type: Transform pos: -8.5,-83.5 parent: 2 - - uid: 4452 + - uid: 4666 components: - type: Transform pos: -8.5,-82.5 parent: 2 - - uid: 4453 + - uid: 4667 components: - type: Transform pos: -8.5,-81.5 parent: 2 - - uid: 4454 + - uid: 4668 components: - type: Transform pos: -8.5,-80.5 parent: 2 - - uid: 4455 + - uid: 4669 components: - type: Transform pos: -8.5,-79.5 parent: 2 - - uid: 4456 + - uid: 4670 components: - type: Transform pos: -8.5,-78.5 parent: 2 - - uid: 4457 + - uid: 4671 components: - type: Transform pos: -5.5,-85.5 parent: 2 - - uid: 4458 + - uid: 4672 components: - type: Transform pos: -7.5,-90.5 parent: 2 - - uid: 4459 + - uid: 4673 components: - type: Transform pos: -6.5,-90.5 parent: 2 - - uid: 4460 + - uid: 4674 components: - type: Transform pos: -5.5,-90.5 parent: 2 - - uid: 4461 + - uid: 4675 components: - type: Transform pos: -5.5,-89.5 parent: 2 - - uid: 4462 + - uid: 4676 components: - type: Transform pos: -5.5,-88.5 parent: 2 - - uid: 4463 + - uid: 4677 components: - type: Transform pos: -5.5,-87.5 parent: 2 - - uid: 4464 + - uid: 4678 components: - type: Transform pos: 4.5,-83.5 parent: 2 - - uid: 4465 + - uid: 4679 components: - type: Transform pos: 4.5,-84.5 parent: 2 - - uid: 4466 + - uid: 4680 components: - type: Transform pos: 5.5,-84.5 parent: 2 - - uid: 4467 + - uid: 4681 components: - type: Transform pos: 6.5,-84.5 parent: 2 - - uid: 4468 + - uid: 4682 components: - type: Transform pos: 6.5,-83.5 parent: 2 - - uid: 4469 + - uid: 4683 components: - type: Transform pos: -11.5,-90.5 parent: 2 - - uid: 4470 + - uid: 4684 components: - type: Transform pos: -12.5,-90.5 parent: 2 - - uid: 4471 + - uid: 4685 components: - type: Transform pos: -13.5,-90.5 parent: 2 - - uid: 4472 + - uid: 4686 components: - type: Transform pos: -13.5,-89.5 parent: 2 - - uid: 4473 + - uid: 4687 components: - type: Transform pos: -13.5,-88.5 parent: 2 - - uid: 4474 + - uid: 4688 components: - type: Transform pos: -0.5,-90.5 parent: 2 - - uid: 4475 + - uid: 4689 components: - type: Transform pos: 47.5,-52.5 parent: 2 - - uid: 4476 + - uid: 4690 components: - type: Transform pos: -39.5,4.5 parent: 2 - - uid: 4477 + - uid: 4691 components: - type: Transform pos: -39.5,5.5 parent: 2 - - uid: 4478 + - uid: 4692 components: - type: Transform pos: -39.5,6.5 parent: 2 - - uid: 4479 + - uid: 4693 components: - type: Transform pos: -39.5,7.5 parent: 2 - - uid: 4480 + - uid: 4694 components: - type: Transform pos: -39.5,8.5 parent: 2 - - uid: 4481 + - uid: 4695 components: - type: Transform pos: -38.5,8.5 parent: 2 - - uid: 4482 + - uid: 4696 components: - type: Transform pos: -37.5,8.5 parent: 2 - - uid: 4483 + - uid: 4697 components: - type: Transform pos: -36.5,8.5 parent: 2 - - uid: 4484 + - uid: 4698 components: - type: Transform pos: -49.5,6.5 parent: 2 - - uid: 4485 + - uid: 4699 components: - type: Transform pos: -49.5,8.5 parent: 2 - - uid: 4486 + - uid: 4700 components: - type: Transform pos: -48.5,8.5 parent: 2 - - uid: 4487 + - uid: 4701 components: - type: Transform pos: -47.5,8.5 parent: 2 - - uid: 4488 + - uid: 4702 components: - type: Transform pos: -46.5,8.5 parent: 2 - - uid: 4489 + - uid: 4703 components: - type: Transform pos: -45.5,8.5 parent: 2 - - uid: 4490 + - uid: 4704 components: - type: Transform pos: -44.5,8.5 parent: 2 - - uid: 4491 + - uid: 4705 components: - type: Transform pos: -43.5,8.5 parent: 2 - - uid: 4492 + - uid: 4706 components: - type: Transform pos: -42.5,8.5 parent: 2 - - uid: 4493 + - uid: 4707 components: - type: Transform pos: 0.5,-74.5 parent: 2 - - uid: 4494 + - uid: 4708 components: - type: Transform pos: 0.5,-74.5 parent: 2 - - uid: 4495 + - uid: 4709 components: - type: Transform pos: 1.5,-74.5 parent: 2 - - uid: 4496 + - uid: 4710 components: - type: Transform pos: 2.5,-74.5 parent: 2 - - uid: 4497 + - uid: 4711 components: - type: Transform pos: 3.5,-74.5 parent: 2 - - uid: 4498 + - uid: 4712 components: - type: Transform pos: 4.5,-74.5 parent: 2 - - uid: 4499 + - uid: 4713 components: - type: Transform pos: 5.5,-74.5 parent: 2 - - uid: 4500 + - uid: 4714 components: - type: Transform pos: 6.5,-74.5 parent: 2 - - uid: 4501 + - uid: 4715 components: - type: Transform pos: 7.5,-74.5 parent: 2 - - uid: 4502 + - uid: 4716 components: - type: Transform pos: 8.5,-74.5 parent: 2 - - uid: 4503 + - uid: 4717 components: - type: Transform pos: 9.5,-74.5 parent: 2 - - uid: 4504 + - uid: 4718 components: - type: Transform pos: 10.5,-74.5 parent: 2 - - uid: 4505 + - uid: 4719 components: - type: Transform pos: 11.5,-74.5 parent: 2 - - uid: 4506 + - uid: 4720 components: - type: Transform pos: 11.5,-73.5 parent: 2 - - uid: 4507 + - uid: 4721 components: - type: Transform pos: 11.5,-72.5 parent: 2 - - uid: 4508 + - uid: 4722 components: - type: Transform pos: 12.5,-72.5 parent: 2 - - uid: 4509 + - uid: 4723 components: - type: Transform pos: 13.5,-72.5 parent: 2 - - uid: 4510 + - uid: 4724 components: - type: Transform pos: 14.5,-72.5 parent: 2 - - uid: 4511 + - uid: 4725 components: - type: Transform pos: 15.5,-72.5 parent: 2 - - uid: 4512 + - uid: 4726 components: - type: Transform pos: 16.5,-72.5 parent: 2 - - uid: 4513 + - uid: 4727 components: - type: Transform pos: 17.5,-72.5 parent: 2 - - uid: 4514 + - uid: 4728 components: - type: Transform pos: 18.5,-72.5 parent: 2 - - uid: 4515 + - uid: 4729 components: - type: Transform pos: 19.5,-72.5 parent: 2 - - uid: 4516 + - uid: 4730 components: - type: Transform pos: 20.5,-72.5 parent: 2 - - uid: 4517 + - uid: 4731 components: - type: Transform pos: 21.5,-72.5 parent: 2 - - uid: 4518 + - uid: 4732 components: - type: Transform pos: 22.5,-72.5 parent: 2 - - uid: 4519 + - uid: 4733 components: - type: Transform pos: -0.5,-74.5 parent: 2 - - uid: 4520 + - uid: 4734 components: - type: Transform pos: -1.5,-74.5 parent: 2 - - uid: 4521 + - uid: 4735 components: - type: Transform pos: -2.5,-74.5 parent: 2 - - uid: 4522 + - uid: 4736 components: - type: Transform pos: -3.5,-74.5 parent: 2 - - uid: 4523 + - uid: 4737 components: - type: Transform pos: -4.5,-74.5 parent: 2 - - uid: 4524 + - uid: 4738 components: - type: Transform pos: -5.5,-74.5 parent: 2 - - uid: 4525 + - uid: 4739 components: - type: Transform pos: -6.5,-74.5 parent: 2 - - uid: 4526 + - uid: 4740 components: - type: Transform pos: -7.5,-74.5 parent: 2 - - uid: 4527 + - uid: 4741 components: - type: Transform pos: -8.5,-74.5 parent: 2 - - uid: 4528 + - uid: 4742 components: - type: Transform pos: -9.5,-74.5 parent: 2 - - uid: 4529 + - uid: 4743 components: - type: Transform pos: -10.5,-74.5 parent: 2 - - uid: 4530 + - uid: 4744 components: - type: Transform pos: -10.5,-73.5 parent: 2 - - uid: 4531 + - uid: 4745 components: - type: Transform pos: -10.5,-72.5 parent: 2 - - uid: 4532 + - uid: 4746 components: - type: Transform pos: -11.5,-72.5 parent: 2 - - uid: 4533 + - uid: 4747 components: - type: Transform pos: -12.5,-72.5 parent: 2 - - uid: 4534 + - uid: 4748 components: - type: Transform pos: -13.5,-72.5 parent: 2 - - uid: 4535 + - uid: 4749 components: - type: Transform pos: -14.5,-72.5 parent: 2 - - uid: 4536 + - uid: 4750 components: - type: Transform pos: -15.5,-72.5 parent: 2 - - uid: 4537 + - uid: 4751 components: - type: Transform pos: -16.5,-72.5 parent: 2 - - uid: 4538 + - uid: 4752 components: - type: Transform pos: -17.5,-72.5 parent: 2 - - uid: 4539 + - uid: 4753 components: - type: Transform pos: -18.5,-72.5 parent: 2 - - uid: 4540 + - uid: 4754 components: - type: Transform pos: -19.5,-72.5 parent: 2 - - uid: 4541 + - uid: 4755 components: - type: Transform pos: -20.5,-72.5 parent: 2 - - uid: 4542 + - uid: 4756 components: - type: Transform pos: -21.5,-72.5 parent: 2 - - uid: 4543 + - uid: 4757 components: - type: Transform pos: -22.5,-72.5 parent: 2 - - uid: 4544 + - uid: 4758 components: - type: Transform pos: -23.5,-72.5 parent: 2 - - uid: 4545 + - uid: 4759 components: - type: Transform pos: -24.5,-72.5 parent: 2 - - uid: 4546 + - uid: 4760 components: - type: Transform pos: 30.5,-52.5 parent: 2 - - uid: 4547 + - uid: 4761 components: - type: Transform pos: 30.5,-53.5 parent: 2 - - uid: 4548 + - uid: 4762 components: - type: Transform pos: 30.5,-54.5 parent: 2 - - uid: 4549 + - uid: 4763 components: - type: Transform pos: 29.5,-54.5 parent: 2 - - uid: 4550 + - uid: 4764 components: - type: Transform pos: 29.5,-55.5 parent: 2 - - uid: 4551 + - uid: 4765 components: - type: Transform pos: 29.5,-56.5 parent: 2 - - uid: 4552 + - uid: 4766 components: - type: Transform pos: 29.5,-57.5 parent: 2 - - uid: 4553 + - uid: 4767 components: - type: Transform pos: 29.5,-58.5 parent: 2 - - uid: 4554 + - uid: 4768 components: - type: Transform pos: 29.5,-59.5 parent: 2 - - uid: 4555 + - uid: 4769 components: - type: Transform pos: 29.5,-60.5 parent: 2 - - uid: 4556 + - uid: 4770 components: - type: Transform pos: 29.5,-61.5 parent: 2 - - uid: 4557 + - uid: 4771 components: - type: Transform pos: 29.5,-62.5 parent: 2 - - uid: 4558 + - uid: 4772 components: - type: Transform pos: 29.5,-63.5 parent: 2 - - uid: 4559 + - uid: 4773 components: - type: Transform pos: 29.5,-64.5 parent: 2 - - uid: 4560 + - uid: 4774 components: - type: Transform pos: 29.5,-65.5 parent: 2 - - uid: 4561 + - uid: 4775 components: - type: Transform pos: 29.5,-66.5 parent: 2 - - uid: 4562 + - uid: 4776 components: - type: Transform pos: 29.5,-67.5 parent: 2 - - uid: 4563 + - uid: 4777 components: - type: Transform pos: 29.5,-68.5 parent: 2 - - uid: 4564 + - uid: 4778 components: - type: Transform pos: 29.5,-69.5 parent: 2 - - uid: 4565 + - uid: 4779 components: - type: Transform pos: 29.5,-70.5 parent: 2 - - uid: 4566 + - uid: 4780 components: - type: Transform pos: 28.5,-70.5 parent: 2 - - uid: 4567 + - uid: 4781 components: - type: Transform pos: 27.5,-70.5 parent: 2 - - uid: 4568 + - uid: 4782 components: - type: Transform pos: 26.5,-70.5 parent: 2 - - uid: 4569 + - uid: 4783 components: - type: Transform pos: 22.5,-71.5 parent: 2 - - uid: 4570 + - uid: 4784 components: - type: Transform pos: 22.5,-70.5 parent: 2 - - uid: 4571 + - uid: 4785 components: - type: Transform pos: 31.5,-52.5 parent: 2 - - uid: 4572 + - uid: 4786 components: - type: Transform pos: 32.5,-52.5 parent: 2 - - uid: 4573 + - uid: 4787 components: - type: Transform pos: 32.5,-51.5 parent: 2 - - uid: 4574 + - uid: 4788 components: - type: Transform pos: 32.5,-50.5 parent: 2 - - uid: 4575 + - uid: 4789 components: - type: Transform pos: 32.5,-49.5 parent: 2 - - uid: 4576 + - uid: 4790 components: - type: Transform pos: 32.5,-48.5 parent: 2 - - uid: 4577 + - uid: 4791 components: - type: Transform pos: 32.5,-47.5 parent: 2 - - uid: 4578 + - uid: 4792 components: - type: Transform pos: 32.5,-46.5 parent: 2 - - uid: 4579 + - uid: 4793 components: - type: Transform pos: 32.5,-45.5 parent: 2 - - uid: 4580 + - uid: 4794 components: - type: Transform pos: 32.5,-44.5 parent: 2 - - uid: 4581 + - uid: 4795 components: - type: Transform pos: 32.5,-43.5 parent: 2 - - uid: 4582 + - uid: 4796 components: - type: Transform pos: 32.5,-42.5 parent: 2 - - uid: 4583 + - uid: 4797 components: - type: Transform pos: 32.5,-41.5 parent: 2 - - uid: 4584 + - uid: 4798 components: - type: Transform pos: 32.5,-40.5 parent: 2 - - uid: 4585 + - uid: 4799 components: - type: Transform pos: 32.5,-39.5 parent: 2 - - uid: 4586 + - uid: 4800 components: - type: Transform pos: 32.5,-38.5 parent: 2 - - uid: 4587 + - uid: 4801 components: - type: Transform pos: 32.5,-37.5 parent: 2 - - uid: 4588 + - uid: 4802 components: - type: Transform pos: 32.5,-36.5 parent: 2 - - uid: 4589 + - uid: 4803 components: - type: Transform pos: 32.5,-35.5 parent: 2 - - uid: 4590 + - uid: 4804 components: - type: Transform pos: 32.5,-34.5 parent: 2 - - uid: 4607 + - uid: 4805 components: - type: Transform pos: 23.5,-0.5 parent: 2 - - uid: 4608 + - uid: 4806 components: - type: Transform pos: 23.5,-1.5 parent: 2 - - uid: 4609 + - uid: 4807 components: - type: Transform pos: 23.5,-2.5 parent: 2 - - uid: 4610 + - uid: 4808 components: - type: Transform pos: 24.5,-2.5 parent: 2 - - uid: 4611 + - uid: 4809 components: - type: Transform pos: 24.5,-3.5 parent: 2 - - uid: 4612 + - uid: 4810 components: - type: Transform pos: 25.5,-3.5 parent: 2 - - uid: 4613 + - uid: 4811 components: - type: Transform pos: 26.5,-3.5 parent: 2 - - uid: 4614 + - uid: 4812 components: - type: Transform pos: 26.5,-4.5 parent: 2 - - uid: 4615 + - uid: 4813 components: - type: Transform pos: 26.5,-5.5 parent: 2 - - uid: 4616 + - uid: 4814 components: - type: Transform pos: 27.5,-5.5 parent: 2 - - uid: 4617 + - uid: 4815 components: - type: Transform pos: 27.5,-6.5 parent: 2 - - uid: 4618 + - uid: 4816 components: - type: Transform pos: 27.5,-7.5 parent: 2 - - uid: 4619 + - uid: 4817 components: - type: Transform pos: 28.5,-7.5 parent: 2 - - uid: 4620 + - uid: 4818 components: - type: Transform pos: 28.5,-8.5 parent: 2 - - uid: 4621 + - uid: 4819 components: - type: Transform pos: 28.5,-9.5 parent: 2 - - uid: 4622 + - uid: 4820 components: - type: Transform pos: 29.5,-9.5 parent: 2 - - uid: 4623 + - uid: 4821 components: - type: Transform pos: 31.5,-25.5 parent: 2 - - uid: 4624 + - uid: 4822 components: - type: Transform pos: 30.5,-25.5 parent: 2 - - uid: 4625 + - uid: 4823 components: - type: Transform pos: 29.5,-25.5 parent: 2 - - uid: 4626 + - uid: 4824 components: - type: Transform pos: 29.5,-26.5 parent: 2 - - uid: 4627 + - uid: 4825 components: - type: Transform pos: 29.5,-27.5 parent: 2 - - uid: 4628 + - uid: 4826 components: - type: Transform pos: 29.5,-28.5 parent: 2 - - uid: 4629 + - uid: 4827 components: - type: Transform pos: 29.5,-29.5 parent: 2 - - uid: 4630 + - uid: 4828 components: - type: Transform pos: 29.5,-30.5 parent: 2 - - uid: 4631 + - uid: 4829 components: - type: Transform pos: 29.5,-31.5 parent: 2 - - uid: 4632 + - uid: 4830 components: - type: Transform pos: 29.5,-32.5 parent: 2 - - uid: 4633 + - uid: 4831 components: - type: Transform pos: 28.5,-32.5 parent: 2 - - uid: 4634 + - uid: 4832 components: - type: Transform pos: 27.5,-32.5 parent: 2 - - uid: 4635 + - uid: 4833 components: - type: Transform pos: 26.5,-32.5 parent: 2 - - uid: 4636 + - uid: 4834 components: - type: Transform pos: 25.5,-32.5 parent: 2 - - uid: 4637 + - uid: 4835 components: - type: Transform pos: 24.5,-32.5 parent: 2 - - uid: 4638 + - uid: 4836 components: - type: Transform pos: 30.5,-32.5 parent: 2 - - uid: 4639 + - uid: 4837 components: - type: Transform pos: 29.5,-24.5 parent: 2 - - uid: 4640 + - uid: 4838 components: - type: Transform pos: 29.5,-23.5 parent: 2 - - uid: 4641 + - uid: 4839 components: - type: Transform pos: 29.5,-22.5 parent: 2 - - uid: 4642 + - uid: 4840 components: - type: Transform pos: 29.5,-21.5 parent: 2 - - uid: 4643 + - uid: 4841 components: - type: Transform pos: 29.5,-20.5 parent: 2 - - uid: 4644 + - uid: 4842 components: - type: Transform pos: 29.5,-19.5 parent: 2 - - uid: 4645 + - uid: 4843 components: - type: Transform pos: 29.5,-18.5 parent: 2 - - uid: 4646 + - uid: 4844 components: - type: Transform pos: 29.5,-17.5 parent: 2 - - uid: 4647 + - uid: 4845 components: - type: Transform pos: 29.5,-16.5 parent: 2 - - uid: 4648 + - uid: 4846 components: - type: Transform pos: 29.5,-15.5 parent: 2 - - uid: 4649 + - uid: 4847 components: - type: Transform pos: 29.5,-14.5 parent: 2 - - uid: 4650 + - uid: 4848 components: - type: Transform pos: 29.5,-13.5 parent: 2 - - uid: 4651 + - uid: 4849 components: - type: Transform pos: 29.5,-12.5 parent: 2 - - uid: 4652 + - uid: 4850 components: - type: Transform pos: 21.5,-0.5 parent: 2 - - uid: 4653 + - uid: 4851 components: - type: Transform pos: 22.5,-1.5 parent: 2 - - uid: 4654 + - uid: 4852 components: - type: Transform pos: 21.5,-1.5 parent: 2 - - uid: 4655 + - uid: 4853 components: - type: Transform pos: 20.5,-0.5 parent: 2 - - uid: 4656 + - uid: 4854 components: - type: Transform pos: 19.5,-0.5 parent: 2 - - uid: 4657 + - uid: 4855 components: - type: Transform pos: 19.5,0.5 parent: 2 - - uid: 4658 + - uid: 4856 components: - type: Transform pos: 18.5,0.5 parent: 2 - - uid: 4659 + - uid: 4857 components: - type: Transform pos: 17.5,0.5 parent: 2 - - uid: 4660 + - uid: 4858 components: - type: Transform pos: 16.5,0.5 parent: 2 - - uid: 4661 + - uid: 4859 components: - type: Transform pos: 15.5,0.5 parent: 2 - - uid: 4662 + - uid: 4860 components: - type: Transform pos: 14.5,0.5 parent: 2 - - uid: 4663 + - uid: 4861 components: - type: Transform pos: 13.5,0.5 parent: 2 - - uid: 4664 + - uid: 4862 components: - type: Transform pos: 12.5,0.5 parent: 2 - - uid: 4665 + - uid: 4863 components: - type: Transform pos: 12.5,1.5 parent: 2 - - uid: 4666 + - uid: 4864 components: - type: Transform pos: 12.5,2.5 parent: 2 - - uid: 4667 + - uid: 4865 components: - type: Transform pos: 12.5,3.5 parent: 2 - - uid: 4668 + - uid: 4866 components: - type: Transform pos: -11.5,3.5 parent: 2 - - uid: 4669 + - uid: 4867 components: - type: Transform pos: -11.5,2.5 parent: 2 - - uid: 4670 + - uid: 4868 components: - type: Transform pos: -11.5,1.5 parent: 2 - - uid: 4671 + - uid: 4869 components: - type: Transform pos: -11.5,0.5 parent: 2 - - uid: 4672 + - uid: 4870 components: - type: Transform pos: -12.5,0.5 parent: 2 - - uid: 4673 + - uid: 4871 components: - type: Transform pos: -13.5,0.5 parent: 2 - - uid: 4674 + - uid: 4872 components: - type: Transform pos: -14.5,0.5 parent: 2 - - uid: 4675 + - uid: 4873 components: - type: Transform pos: -15.5,0.5 parent: 2 - - uid: 4676 + - uid: 4874 components: - type: Transform pos: -16.5,0.5 parent: 2 - - uid: 4677 + - uid: 4875 components: - type: Transform pos: -17.5,0.5 parent: 2 - - uid: 4678 + - uid: 4876 components: - type: Transform pos: -18.5,0.5 parent: 2 - - uid: 4679 + - uid: 4877 components: - type: Transform pos: -18.5,-0.5 parent: 2 - - uid: 4680 + - uid: 4878 components: - type: Transform pos: -19.5,-0.5 parent: 2 - - uid: 4681 + - uid: 4879 components: - type: Transform pos: -20.5,-0.5 parent: 2 - - uid: 4682 + - uid: 4880 components: - type: Transform pos: -20.5,-1.5 parent: 2 - - uid: 4683 + - uid: 4881 components: - type: Transform pos: -21.5,-1.5 parent: 2 - - uid: 4684 + - uid: 4882 components: - type: Transform pos: -21.5,-2.5 parent: 2 - - uid: 4685 + - uid: 4883 components: - type: Transform pos: -22.5,-2.5 parent: 2 - - uid: 4686 + - uid: 4884 components: - type: Transform pos: -23.5,-2.5 parent: 2 - - uid: 4687 + - uid: 4885 components: - type: Transform pos: -23.5,-3.5 parent: 2 - - uid: 4688 + - uid: 4886 components: - type: Transform pos: -24.5,-3.5 parent: 2 - - uid: 4689 + - uid: 4887 components: - type: Transform pos: -24.5,-4.5 parent: 2 - - uid: 4690 + - uid: 4888 components: - type: Transform pos: -25.5,-4.5 parent: 2 - - uid: 4691 + - uid: 4889 components: - type: Transform pos: -25.5,-5.5 parent: 2 - - uid: 4692 + - uid: 4890 components: - type: Transform pos: -26.5,-5.5 parent: 2 - - uid: 4693 + - uid: 4891 components: - type: Transform pos: -26.5,-6.5 parent: 2 - - uid: 4694 + - uid: 4892 components: - type: Transform pos: -26.5,-7.5 parent: 2 - - uid: 4695 + - uid: 4893 components: - type: Transform pos: -27.5,-7.5 parent: 2 - - uid: 4696 + - uid: 4894 components: - type: Transform pos: -28.5,-7.5 parent: 2 - - uid: 4697 + - uid: 4895 components: - type: Transform pos: -23.5,-1.5 parent: 2 - - uid: 4698 + - uid: 4896 components: - type: Transform pos: -24.5,-1.5 parent: 2 - - uid: 4699 + - uid: 4897 components: - type: Transform pos: -28.5,-10.5 parent: 2 - - uid: 4700 + - uid: 4898 components: - type: Transform pos: -28.5,-11.5 parent: 2 - - uid: 4701 + - uid: 4899 components: - type: Transform pos: -28.5,-12.5 parent: 2 - - uid: 4702 + - uid: 4900 components: - type: Transform pos: -28.5,-13.5 parent: 2 - - uid: 4703 + - uid: 4901 components: - type: Transform pos: -28.5,-14.5 parent: 2 - - uid: 4704 + - uid: 4902 components: - type: Transform pos: -28.5,-15.5 parent: 2 - - uid: 4705 + - uid: 4903 components: - type: Transform pos: -28.5,-16.5 parent: 2 - - uid: 4706 + - uid: 4904 components: - type: Transform pos: -28.5,-17.5 parent: 2 - - uid: 4707 + - uid: 4905 components: - type: Transform pos: -28.5,-18.5 parent: 2 - - uid: 4708 + - uid: 4906 components: - type: Transform pos: -28.5,-19.5 parent: 2 - - uid: 4709 + - uid: 4907 components: - type: Transform pos: -28.5,-20.5 parent: 2 - - uid: 4710 + - uid: 4908 components: - type: Transform pos: -28.5,-21.5 parent: 2 - - uid: 4711 + - uid: 4909 components: - type: Transform pos: -28.5,-22.5 parent: 2 - - uid: 4712 + - uid: 4910 components: - type: Transform pos: -28.5,-23.5 parent: 2 - - uid: 4713 + - uid: 4911 components: - type: Transform pos: -28.5,-24.5 parent: 2 - - uid: 4714 + - uid: 4912 components: - type: Transform pos: -28.5,-25.5 parent: 2 - - uid: 4715 + - uid: 4913 components: - type: Transform pos: -28.5,-26.5 parent: 2 - - uid: 4716 + - uid: 4914 components: - type: Transform pos: -28.5,-27.5 parent: 2 - - uid: 4717 + - uid: 4915 components: - type: Transform pos: -28.5,-28.5 parent: 2 - - uid: 4718 + - uid: 4916 components: - type: Transform pos: -28.5,-29.5 parent: 2 - - uid: 4719 + - uid: 4917 components: - type: Transform pos: -28.5,-30.5 parent: 2 - - uid: 4720 + - uid: 4918 components: - type: Transform pos: -28.5,-31.5 parent: 2 - - uid: 4721 + - uid: 4919 components: - type: Transform pos: -28.5,-32.5 parent: 2 - - uid: 4722 + - uid: 4920 components: - type: Transform pos: -29.5,-32.5 parent: 2 - - uid: 4723 + - uid: 4921 components: - type: Transform pos: -30.5,-32.5 parent: 2 - - uid: 4724 + - uid: 4922 components: - type: Transform pos: -31.5,-32.5 parent: 2 - - uid: 4725 + - uid: 4923 components: - type: Transform pos: -31.5,-31.5 parent: 2 - - uid: 4726 + - uid: 4924 components: - type: Transform pos: -31.5,-30.5 parent: 2 - - uid: 4727 + - uid: 4925 components: - type: Transform pos: -31.5,-34.5 parent: 2 - - uid: 4728 + - uid: 4926 components: - type: Transform pos: -31.5,-35.5 parent: 2 - - uid: 4729 + - uid: 4927 components: - type: Transform pos: -31.5,-36.5 parent: 2 - - uid: 4730 + - uid: 4928 components: - type: Transform pos: -31.5,-37.5 parent: 2 - - uid: 4731 + - uid: 4929 components: - type: Transform pos: -31.5,-38.5 parent: 2 - - uid: 4732 + - uid: 4930 components: - type: Transform pos: -31.5,-39.5 parent: 2 - - uid: 4733 + - uid: 4931 components: - type: Transform pos: -31.5,-40.5 parent: 2 - - uid: 4734 + - uid: 4932 components: - type: Transform pos: -31.5,-41.5 parent: 2 - - uid: 4735 + - uid: 4933 components: - type: Transform pos: -31.5,-42.5 parent: 2 - - uid: 4736 + - uid: 4934 components: - type: Transform pos: -31.5,-43.5 parent: 2 - - uid: 4737 + - uid: 4935 components: - type: Transform pos: -31.5,-44.5 parent: 2 - - uid: 4738 + - uid: 4936 components: - type: Transform pos: -31.5,-45.5 parent: 2 - - uid: 4739 + - uid: 4937 components: - type: Transform pos: -31.5,-46.5 parent: 2 - - uid: 4740 + - uid: 4938 components: - type: Transform pos: -31.5,-47.5 parent: 2 - - uid: 4741 + - uid: 4939 components: - type: Transform pos: -31.5,-48.5 parent: 2 - - uid: 4742 + - uid: 4940 components: - type: Transform pos: -31.5,-49.5 parent: 2 - - uid: 4743 + - uid: 4941 components: - type: Transform pos: -31.5,-50.5 parent: 2 - - uid: 4744 + - uid: 4942 components: - type: Transform pos: -31.5,-51.5 parent: 2 - - uid: 4745 + - uid: 4943 components: - type: Transform pos: -31.5,-52.5 parent: 2 - - uid: 4746 + - uid: 4944 components: - type: Transform pos: -32.5,-43.5 parent: 2 - - uid: 4747 + - uid: 4945 components: - type: Transform pos: -33.5,-43.5 parent: 2 - - uid: 4748 + - uid: 4946 components: - type: Transform pos: -34.5,-43.5 parent: 2 - - uid: 4749 + - uid: 4947 components: - type: Transform pos: -35.5,-43.5 parent: 2 - - uid: 4750 + - uid: 4948 components: - type: Transform pos: -36.5,-43.5 parent: 2 - - uid: 4751 + - uid: 4949 components: - type: Transform pos: -37.5,-43.5 parent: 2 - - uid: 4752 + - uid: 4950 components: - type: Transform pos: -38.5,-43.5 parent: 2 - - uid: 4753 + - uid: 4951 components: - type: Transform pos: -39.5,-43.5 parent: 2 - - uid: 4754 + - uid: 4952 components: - type: Transform pos: -40.5,-43.5 parent: 2 - - uid: 4755 + - uid: 4953 components: - type: Transform pos: -41.5,-43.5 parent: 2 - - uid: 4756 + - uid: 4954 components: - type: Transform pos: -42.5,-43.5 parent: 2 - - uid: 4757 + - uid: 4955 components: - type: Transform pos: -43.5,-43.5 parent: 2 - - uid: 4758 + - uid: 4956 components: - type: Transform pos: -44.5,-43.5 parent: 2 - - uid: 4759 + - uid: 4957 components: - type: Transform pos: -45.5,-43.5 parent: 2 - - uid: 4760 + - uid: 4958 components: - type: Transform pos: -46.5,-43.5 parent: 2 - - uid: 4761 + - uid: 4959 components: - type: Transform pos: -47.5,-43.5 parent: 2 - - uid: 4762 + - uid: 4960 components: - type: Transform pos: -48.5,-43.5 parent: 2 - - uid: 4763 + - uid: 4961 components: - type: Transform pos: -33.5,-44.5 parent: 2 - - uid: 4764 + - uid: 4962 components: - type: Transform pos: -33.5,-45.5 parent: 2 - - uid: 4765 + - uid: 4963 components: - type: Transform pos: -30.5,-56.5 parent: 2 - - uid: 4766 + - uid: 4964 components: - type: Transform pos: -30.5,-55.5 parent: 2 - - uid: 4767 + - uid: 4965 components: - type: Transform pos: -30.5,-54.5 parent: 2 - - uid: 4768 + - uid: 4966 components: - type: Transform pos: -31.5,-54.5 parent: 2 - - uid: 4769 + - uid: 4967 components: - type: Transform pos: -29.5,-54.5 parent: 2 - - uid: 4770 + - uid: 4968 components: - type: Transform pos: -28.5,-54.5 parent: 2 - - uid: 4771 + - uid: 4969 components: - type: Transform pos: -28.5,-55.5 parent: 2 - - uid: 4772 + - uid: 4970 components: - type: Transform pos: -28.5,-56.5 parent: 2 - - uid: 4773 + - uid: 4971 components: - type: Transform pos: -28.5,-57.5 parent: 2 - - uid: 4774 + - uid: 4972 components: - type: Transform pos: -28.5,-58.5 parent: 2 - - uid: 4775 + - uid: 4973 components: - type: Transform pos: -28.5,-59.5 parent: 2 - - uid: 4776 + - uid: 4974 components: - type: Transform pos: -28.5,-60.5 parent: 2 - - uid: 4777 + - uid: 4975 components: - type: Transform pos: -28.5,-61.5 parent: 2 - - uid: 4778 + - uid: 4976 components: - type: Transform pos: -28.5,-62.5 parent: 2 - - uid: 4779 + - uid: 4977 components: - type: Transform pos: -28.5,-63.5 parent: 2 - - uid: 4780 + - uid: 4978 components: - type: Transform pos: -28.5,-64.5 parent: 2 - - uid: 4781 + - uid: 4979 components: - type: Transform pos: -28.5,-65.5 parent: 2 - - uid: 4782 + - uid: 4980 components: - type: Transform pos: -28.5,-66.5 parent: 2 - - uid: 4783 + - uid: 4981 components: - type: Transform pos: -28.5,-67.5 parent: 2 - - uid: 4784 + - uid: 4982 components: - type: Transform pos: -28.5,-68.5 parent: 2 - - uid: 4785 + - uid: 4983 components: - type: Transform pos: -28.5,-69.5 parent: 2 - - uid: 4786 + - uid: 4984 components: - type: Transform pos: -28.5,-70.5 parent: 2 - - uid: 4787 + - uid: 4985 components: - type: Transform pos: -27.5,-70.5 parent: 2 - - uid: 4788 + - uid: 4986 components: - type: Transform pos: -26.5,-70.5 parent: 2 - - uid: 4789 + - uid: 4987 components: - type: Transform pos: -25.5,-70.5 parent: 2 - - uid: 4790 + - uid: 4988 components: - type: Transform pos: -24.5,-70.5 parent: 2 - - uid: 4810 + - uid: 4989 components: - type: Transform pos: 52.5,-24.5 parent: 2 - - uid: 4834 + - uid: 4990 components: - type: Transform pos: -41.5,-93.5 parent: 2 - - uid: 4835 + - uid: 4991 components: - type: Transform pos: -39.5,-94.5 parent: 2 - - uid: 4836 + - uid: 4992 components: - type: Transform pos: -40.5,-94.5 parent: 2 - - uid: 4837 + - uid: 4993 components: - type: Transform pos: -41.5,-94.5 parent: 2 - - uid: 4838 + - uid: 4994 components: - type: Transform pos: -42.5,-94.5 parent: 2 - - uid: 4839 + - uid: 4995 components: - type: Transform pos: -43.5,-94.5 parent: 2 - - uid: 4840 + - uid: 4996 components: - type: Transform pos: -44.5,-94.5 parent: 2 - - uid: 4841 + - uid: 4997 components: - type: Transform pos: -45.5,-94.5 parent: 2 - - uid: 4842 + - uid: 4998 components: - type: Transform pos: -46.5,-94.5 parent: 2 - - uid: 4843 + - uid: 4999 components: - type: Transform pos: -47.5,-94.5 parent: 2 - - uid: 4844 + - uid: 5000 components: - type: Transform pos: -48.5,-94.5 parent: 2 - - uid: 4845 + - uid: 5001 components: - type: Transform pos: -49.5,-94.5 parent: 2 - - uid: 4846 + - uid: 5002 components: - type: Transform pos: -50.5,-94.5 parent: 2 - - uid: 4847 + - uid: 5003 components: - type: Transform pos: -51.5,-94.5 parent: 2 - - uid: 4848 + - uid: 5004 components: - type: Transform pos: -52.5,-94.5 parent: 2 - - uid: 4849 + - uid: 5005 components: - type: Transform pos: -52.5,-93.5 parent: 2 - - uid: 4850 + - uid: 5006 components: - type: Transform pos: -52.5,-92.5 parent: 2 - - uid: 4851 + - uid: 5007 components: - type: Transform pos: -52.5,-91.5 parent: 2 - - uid: 4852 + - uid: 5008 components: - type: Transform pos: -53.5,-91.5 parent: 2 - - uid: 4853 + - uid: 5009 components: - type: Transform pos: -53.5,-90.5 parent: 2 - - uid: 4854 + - uid: 5010 components: - type: Transform pos: -53.5,-89.5 parent: 2 - - uid: 4855 + - uid: 5011 components: - type: Transform pos: -53.5,-88.5 parent: 2 - - uid: 4856 + - uid: 5012 components: - type: Transform pos: -39.5,-93.5 parent: 2 - - uid: 4857 + - uid: 5013 components: - type: Transform pos: -39.5,-92.5 parent: 2 - - uid: 4858 + - uid: 5014 components: - type: Transform pos: -38.5,-92.5 parent: 2 - - uid: 4859 + - uid: 5015 components: - type: Transform pos: 17.5,-97.5 parent: 2 - - uid: 4860 + - uid: 5016 components: - type: Transform pos: 16.5,-99.5 parent: 2 - - uid: 4861 + - uid: 5017 components: - type: Transform pos: 15.5,-99.5 parent: 2 - - uid: 4862 + - uid: 5018 components: - type: Transform pos: 17.5,-96.5 parent: 2 - - uid: 4863 + - uid: 5019 components: - type: Transform pos: -60.5,-25.5 parent: 2 - - uid: 4864 + - uid: 5020 components: - type: Transform pos: -60.5,-29.5 parent: 2 - - uid: 4865 + - uid: 5021 components: - type: Transform pos: -61.5,-29.5 parent: 2 - - uid: 4866 + - uid: 5022 components: - type: Transform pos: -62.5,-29.5 parent: 2 - - uid: 4867 + - uid: 5023 components: - type: Transform pos: -63.5,-29.5 parent: 2 - - uid: 4868 + - uid: 5024 components: - type: Transform pos: -64.5,-29.5 parent: 2 - - uid: 4869 + - uid: 5025 components: - type: Transform pos: -65.5,-29.5 parent: 2 - - uid: 4870 + - uid: 5026 components: - type: Transform pos: -66.5,-29.5 parent: 2 - - uid: 4871 + - uid: 5027 components: - type: Transform pos: -67.5,-29.5 parent: 2 - - uid: 4872 + - uid: 5028 components: - type: Transform pos: -68.5,-29.5 parent: 2 - - uid: 4873 + - uid: 5029 components: - type: Transform pos: -69.5,-29.5 parent: 2 - - uid: 4874 + - uid: 5030 components: - type: Transform pos: -70.5,-29.5 parent: 2 - - uid: 4875 + - uid: 5031 components: - type: Transform pos: -70.5,-30.5 parent: 2 - - uid: 4876 + - uid: 5032 components: - type: Transform pos: -70.5,-31.5 parent: 2 - - uid: 4877 + - uid: 5033 components: - type: Transform pos: -70.5,-32.5 parent: 2 - - uid: 4878 + - uid: 5034 components: - type: Transform pos: -68.5,-30.5 parent: 2 - - uid: 4879 + - uid: 5035 components: - type: Transform pos: -68.5,-31.5 parent: 2 - - uid: 4880 + - uid: 5036 components: - type: Transform pos: -68.5,-32.5 parent: 2 - - uid: 4881 + - uid: 5037 components: - type: Transform pos: -67.5,-32.5 parent: 2 - - uid: 4882 + - uid: 5038 components: - type: Transform pos: -66.5,-32.5 parent: 2 - - uid: 4883 + - uid: 5039 components: - type: Transform pos: -65.5,-32.5 parent: 2 - - uid: 4884 + - uid: 5040 components: - type: Transform pos: -64.5,-32.5 parent: 2 - - uid: 4885 + - uid: 5041 components: - type: Transform pos: -63.5,-32.5 parent: 2 - - uid: 4886 + - uid: 5042 components: - type: Transform pos: -68.5,-28.5 parent: 2 - - uid: 4887 + - uid: 5043 components: - type: Transform pos: -68.5,-27.5 parent: 2 - - uid: 4888 + - uid: 5044 components: - type: Transform pos: -68.5,-26.5 parent: 2 - - uid: 4889 + - uid: 5045 components: - type: Transform pos: -68.5,-25.5 parent: 2 - - uid: 4890 + - uid: 5046 components: - type: Transform pos: -68.5,-24.5 parent: 2 - - uid: 4891 + - uid: 5047 components: - type: Transform pos: -68.5,-23.5 parent: 2 - - uid: 4892 + - uid: 5048 components: - type: Transform pos: -68.5,-22.5 parent: 2 - - uid: 4893 + - uid: 5049 components: - type: Transform pos: -68.5,-21.5 parent: 2 - - uid: 4894 + - uid: 5050 components: - type: Transform pos: -67.5,-21.5 parent: 2 - - uid: 4895 + - uid: 5051 components: - type: Transform pos: -66.5,-21.5 parent: 2 - - uid: 4896 + - uid: 5052 components: - type: Transform pos: -65.5,-21.5 parent: 2 - - uid: 4897 + - uid: 5053 components: - type: Transform pos: -64.5,-21.5 parent: 2 - - uid: 4898 + - uid: 5054 components: - type: Transform pos: -63.5,-21.5 parent: 2 - - uid: 4899 + - uid: 5055 components: - type: Transform pos: -62.5,-21.5 parent: 2 - - uid: 4900 + - uid: 5056 components: - type: Transform pos: -62.5,-22.5 parent: 2 - - uid: 4901 + - uid: 5057 components: - type: Transform pos: -62.5,-23.5 parent: 2 - - uid: 4902 + - uid: 5058 components: - type: Transform pos: -62.5,-24.5 parent: 2 - - uid: 4903 + - uid: 5059 components: - type: Transform pos: -62.5,-25.5 parent: 2 - - uid: 4904 + - uid: 5060 components: - type: Transform pos: -62.5,-26.5 parent: 2 - - uid: 4905 + - uid: 5061 components: - type: Transform pos: -62.5,-27.5 parent: 2 - - uid: 4906 + - uid: 5062 components: - type: Transform pos: -62.5,-28.5 parent: 2 - - uid: 4907 + - uid: 5063 components: - type: Transform pos: -67.5,-25.5 parent: 2 - - uid: 4908 + - uid: 5064 components: - type: Transform pos: -66.5,-25.5 parent: 2 - - uid: 4909 + - uid: 5065 components: - type: Transform pos: -65.5,-25.5 parent: 2 - - uid: 4910 + - uid: 5066 components: - type: Transform pos: -65.5,-24.5 parent: 2 - - uid: 4911 + - uid: 5067 components: - type: Transform pos: -66.5,-16.5 parent: 2 - - uid: 4912 + - uid: 5068 components: - type: Transform pos: -67.5,-16.5 parent: 2 - - uid: 4913 + - uid: 5069 components: - type: Transform pos: -68.5,-16.5 parent: 2 - - uid: 4914 + - uid: 5070 components: - type: Transform pos: -69.5,-16.5 parent: 2 - - uid: 4915 + - uid: 5071 components: - type: Transform pos: -69.5,-17.5 parent: 2 - - uid: 4916 + - uid: 5072 components: - type: Transform pos: -67.5,-77.5 parent: 2 - - uid: 4917 + - uid: 5073 components: - type: Transform pos: -66.5,-77.5 parent: 2 - - uid: 4918 + - uid: 5074 components: - type: Transform pos: 30.5,19.5 parent: 2 - - uid: 4919 + - uid: 5075 components: - type: Transform pos: 30.5,20.5 parent: 2 - - uid: 4920 + - uid: 5076 components: - type: Transform pos: 30.5,21.5 parent: 2 - - uid: 4921 + - uid: 5077 components: - type: Transform pos: 30.5,22.5 parent: 2 - - uid: 4922 + - uid: 5078 components: - type: Transform pos: 30.5,23.5 parent: 2 - - uid: 4923 + - uid: 5079 components: - type: Transform pos: 30.5,24.5 parent: 2 - - uid: 4924 + - uid: 5080 components: - type: Transform pos: 30.5,25.5 parent: 2 - - uid: 4925 + - uid: 5081 components: - type: Transform pos: 31.5,25.5 parent: 2 - - uid: 4926 + - uid: 5082 components: - type: Transform pos: 32.5,25.5 parent: 2 - - uid: 4927 + - uid: 5083 components: - type: Transform pos: 33.5,25.5 parent: 2 - - uid: 4928 + - uid: 5084 components: - type: Transform pos: 34.5,25.5 parent: 2 - - uid: 4929 + - uid: 5085 components: - type: Transform pos: 35.5,25.5 parent: 2 - - uid: 4930 + - uid: 5086 components: - type: Transform pos: 36.5,25.5 parent: 2 - - uid: 4931 + - uid: 5087 components: - type: Transform pos: 37.5,25.5 parent: 2 - - uid: 4932 + - uid: 5088 components: - type: Transform pos: 38.5,25.5 parent: 2 - - uid: 4933 + - uid: 5089 components: - type: Transform pos: 39.5,25.5 parent: 2 - - uid: 4934 + - uid: 5090 components: - type: Transform pos: 40.5,25.5 parent: 2 - - uid: 4935 + - uid: 5091 components: - type: Transform pos: 41.5,25.5 parent: 2 - - uid: 4936 + - uid: 5092 components: - type: Transform pos: 41.5,24.5 parent: 2 - - uid: 4937 + - uid: 5093 components: - type: Transform pos: 41.5,23.5 parent: 2 - - uid: 4938 + - uid: 5094 components: - type: Transform pos: 41.5,22.5 parent: 2 - - uid: 4939 + - uid: 5095 components: - type: Transform pos: 41.5,21.5 parent: 2 - - uid: 4940 + - uid: 5096 components: - type: Transform pos: 41.5,20.5 parent: 2 - - uid: 4941 + - uid: 5097 components: - type: Transform pos: 41.5,19.5 parent: 2 - - uid: 4942 + - uid: 5098 components: - type: Transform pos: 41.5,18.5 parent: 2 - - uid: 4943 + - uid: 5099 components: - type: Transform pos: 41.5,17.5 parent: 2 - - uid: 4944 + - uid: 5100 components: - type: Transform pos: 17.5,-97.5 parent: 2 - - uid: 4945 + - uid: 5101 components: - type: Transform pos: 16.5,-97.5 parent: 2 - - uid: 4946 + - uid: 5102 components: - type: Transform pos: 15.5,-97.5 parent: 2 - - uid: 4947 + - uid: 5103 components: - type: Transform pos: 17.5,-100.5 parent: 2 - - uid: 4948 + - uid: 5104 components: - type: Transform pos: 14.5,-98.5 parent: 2 - - uid: 4949 + - uid: 5105 components: - type: Transform pos: 14.5,-99.5 parent: 2 - - uid: 4950 + - uid: 5106 components: - type: Transform pos: 14.5,-97.5 parent: 2 - - uid: 4951 + - uid: 5107 components: - type: Transform pos: 7.5,-95.5 parent: 2 - - uid: 4952 + - uid: 5108 components: - type: Transform pos: 7.5,-96.5 parent: 2 - - uid: 4953 + - uid: 5109 components: - type: Transform pos: 7.5,-97.5 parent: 2 - - uid: 4954 + - uid: 5110 components: - type: Transform pos: 7.5,-98.5 parent: 2 - - uid: 4955 + - uid: 5111 components: - type: Transform pos: 7.5,-99.5 parent: 2 - - uid: 4956 + - uid: 5112 components: - type: Transform pos: 7.5,-100.5 parent: 2 - - uid: 4957 + - uid: 5113 components: - type: Transform pos: 7.5,-101.5 parent: 2 - - uid: 4958 + - uid: 5114 components: - type: Transform pos: 7.5,-102.5 parent: 2 - - uid: 4959 + - uid: 5115 components: - type: Transform pos: 6.5,-102.5 parent: 2 - - uid: 4960 + - uid: 5116 components: - type: Transform pos: 6.5,-99.5 parent: 2 - - uid: 4961 + - uid: 5117 components: - type: Transform pos: 8.5,-99.5 parent: 2 - - uid: 4962 + - uid: 5118 components: - type: Transform pos: 6.5,-96.5 parent: 2 - - uid: 4963 + - uid: 5119 components: - type: Transform pos: 9.5,-99.5 parent: 2 - - uid: 4964 + - uid: 5120 components: - type: Transform pos: 10.5,-99.5 parent: 2 - - uid: 4965 + - uid: 5121 components: - type: Transform pos: 11.5,-99.5 parent: 2 - - uid: 4966 + - uid: 5122 components: - type: Transform pos: 12.5,-99.5 parent: 2 - - uid: 4967 + - uid: 5123 components: - type: Transform pos: 13.5,-99.5 parent: 2 - - uid: 4968 + - uid: 5124 components: - type: Transform pos: 8.5,-96.5 parent: 2 - - uid: 4969 + - uid: 5125 components: - type: Transform pos: 9.5,-96.5 parent: 2 - - uid: 4970 + - uid: 5126 components: - type: Transform pos: 10.5,-96.5 parent: 2 - - uid: 4971 + - uid: 5127 components: - type: Transform pos: 11.5,-96.5 parent: 2 - - uid: 4972 + - uid: 5128 components: - type: Transform pos: 12.5,-96.5 parent: 2 - - uid: 4973 + - uid: 5129 components: - type: Transform pos: 13.5,-96.5 parent: 2 - - uid: 4974 + - uid: 5130 components: - type: Transform pos: 14.5,-96.5 parent: 2 - - uid: 4975 + - uid: 5131 components: - type: Transform pos: 8.5,-102.5 parent: 2 - - uid: 4976 + - uid: 5132 components: - type: Transform pos: 9.5,-102.5 parent: 2 - - uid: 4977 + - uid: 5133 components: - type: Transform pos: 10.5,-102.5 parent: 2 - - uid: 4978 + - uid: 5134 components: - type: Transform pos: 11.5,-102.5 parent: 2 - - uid: 4979 + - uid: 5135 components: - type: Transform pos: 12.5,-102.5 parent: 2 - - uid: 4980 + - uid: 5136 components: - type: Transform pos: 13.5,-102.5 parent: 2 - - uid: 4981 + - uid: 5137 components: - type: Transform pos: 14.5,-102.5 parent: 2 - - uid: 4982 + - uid: 5138 components: - type: Transform pos: 15.5,-102.5 parent: 2 - - uid: 4983 + - uid: 5139 components: - type: Transform pos: 16.5,-97.5 parent: 2 - - uid: 4984 + - uid: 5140 components: - type: Transform pos: 28.5,24.5 parent: 2 - - uid: 4985 + - uid: 5141 components: - type: Transform pos: 27.5,24.5 parent: 2 - - uid: 4986 + - uid: 5142 components: - type: Transform pos: 26.5,24.5 parent: 2 - - uid: 4987 + - uid: 5143 components: - type: Transform pos: 25.5,24.5 parent: 2 - - uid: 4988 + - uid: 5144 components: - type: Transform pos: 26.5,23.5 parent: 2 - - uid: 4989 + - uid: 5145 components: - type: Transform pos: 26.5,22.5 parent: 2 - - uid: 4990 + - uid: 5146 components: - type: Transform pos: 26.5,21.5 parent: 2 - - uid: 4991 + - uid: 5147 components: - type: Transform pos: 26.5,20.5 parent: 2 - - uid: 4992 + - uid: 5148 components: - type: Transform pos: 39.5,-108.5 parent: 2 - - uid: 4993 + - uid: 5149 components: - type: Transform pos: 73.5,-45.5 parent: 2 - - uid: 4994 + - uid: 5150 components: - type: Transform pos: 73.5,-44.5 parent: 2 - - uid: 4995 + - uid: 5151 components: - type: Transform pos: 72.5,-44.5 parent: 2 - - uid: 4996 + - uid: 5152 components: - type: Transform pos: 71.5,-44.5 parent: 2 - - uid: 4997 + - uid: 5153 components: - type: Transform pos: 70.5,-44.5 parent: 2 - - uid: 4998 + - uid: 5154 components: - type: Transform pos: 69.5,-44.5 parent: 2 - - uid: 4999 + - uid: 5155 components: - type: Transform pos: 68.5,-44.5 parent: 2 - - uid: 5000 + - uid: 5156 components: - type: Transform pos: 67.5,-44.5 parent: 2 - - uid: 5001 + - uid: 5157 components: - type: Transform pos: 67.5,-45.5 parent: 2 - - uid: 5002 + - uid: 5158 components: - type: Transform pos: 67.5,-46.5 parent: 2 - - uid: 5003 + - uid: 5159 components: - type: Transform pos: 66.5,-46.5 parent: 2 - - uid: 5004 + - uid: 5160 components: - type: Transform pos: 65.5,-46.5 parent: 2 - - uid: 5005 + - uid: 5161 components: - type: Transform pos: 64.5,-46.5 parent: 2 - - uid: 5006 + - uid: 5162 components: - type: Transform pos: 83.5,-46.5 parent: 2 - - uid: 5007 + - uid: 5163 components: - type: Transform pos: 83.5,-45.5 parent: 2 - - uid: 5008 + - uid: 5164 components: - type: Transform pos: 44.5,-110.5 parent: 2 - - uid: 5009 + - uid: 5165 components: - type: Transform pos: 43.5,-110.5 parent: 2 - - uid: 5010 + - uid: 5166 components: - type: Transform pos: 44.5,-92.5 parent: 2 - - uid: 5011 + - uid: 5167 components: - type: Transform pos: 43.5,-92.5 parent: 2 - - uid: 5012 + - uid: 5168 components: - type: Transform pos: 42.5,-92.5 parent: 2 - - uid: 5013 + - uid: 5169 components: - type: Transform pos: 41.5,-92.5 parent: 2 - - uid: 5014 + - uid: 5170 components: - type: Transform pos: 40.5,-92.5 parent: 2 - - uid: 5015 + - uid: 5171 components: - type: Transform pos: 39.5,-91.5 parent: 2 - - uid: 5016 + - uid: 5172 components: - type: Transform pos: 39.5,-90.5 parent: 2 - - uid: 5017 + - uid: 5173 components: - type: Transform pos: 39.5,-89.5 parent: 2 - - uid: 5018 + - uid: 5174 components: - type: Transform pos: 39.5,-88.5 parent: 2 - - uid: 5019 + - uid: 5175 components: - type: Transform pos: 39.5,-87.5 parent: 2 - - uid: 5020 + - uid: 5176 components: - type: Transform pos: 39.5,-86.5 parent: 2 - - uid: 5021 + - uid: 5177 components: - type: Transform pos: 39.5,-93.5 parent: 2 - - uid: 5022 + - uid: 5178 components: - type: Transform pos: 39.5,-94.5 parent: 2 - - uid: 5023 + - uid: 5179 components: - type: Transform pos: 39.5,-95.5 parent: 2 - - uid: 5024 + - uid: 5180 components: - type: Transform pos: 39.5,-96.5 parent: 2 - - uid: 5025 + - uid: 5181 components: - type: Transform pos: 40.5,-96.5 parent: 2 - - uid: 5026 + - uid: 5182 components: - type: Transform pos: 40.5,-97.5 parent: 2 - - uid: 5027 + - uid: 5183 components: - type: Transform pos: 40.5,-98.5 parent: 2 - - uid: 5028 + - uid: 5184 components: - type: Transform pos: 40.5,-99.5 parent: 2 - - uid: 5029 + - uid: 5185 components: - type: Transform pos: 40.5,-100.5 parent: 2 - - uid: 5030 + - uid: 5186 components: - type: Transform pos: 40.5,-101.5 parent: 2 - - uid: 5031 + - uid: 5187 components: - type: Transform pos: 45.5,-92.5 parent: 2 - - uid: 5032 + - uid: 5188 components: - type: Transform pos: 45.5,-95.5 parent: 2 - - uid: 5033 + - uid: 5189 components: - type: Transform pos: 45.5,-96.5 parent: 2 - - uid: 5034 + - uid: 5190 components: - type: Transform pos: 45.5,-97.5 parent: 2 - - uid: 5035 + - uid: 5191 components: - type: Transform pos: 45.5,-98.5 parent: 2 - - uid: 5036 + - uid: 5192 components: - type: Transform pos: 45.5,-99.5 parent: 2 - - uid: 5037 + - uid: 5193 components: - type: Transform pos: 45.5,-100.5 parent: 2 - - uid: 5038 + - uid: 5194 components: - type: Transform pos: 45.5,-101.5 parent: 2 - - uid: 5039 + - uid: 5195 components: - type: Transform pos: 45.5,-91.5 parent: 2 - - uid: 5040 + - uid: 5196 components: - type: Transform pos: 45.5,-90.5 parent: 2 - - uid: 5041 + - uid: 5197 components: - type: Transform pos: 45.5,-89.5 parent: 2 - - uid: 5042 + - uid: 5198 components: - type: Transform pos: 46.5,-89.5 parent: 2 - - uid: 5043 + - uid: 5199 components: - type: Transform pos: 46.5,-98.5 parent: 2 - - uid: 5044 + - uid: 5200 components: - type: Transform pos: 47.5,-98.5 parent: 2 - - uid: 5045 + - uid: 5201 components: - type: Transform pos: 48.5,-98.5 parent: 2 - - uid: 5046 + - uid: 5202 components: - type: Transform pos: 49.5,-98.5 parent: 2 - - uid: 5047 + - uid: 5203 components: - type: Transform pos: 50.5,-98.5 parent: 2 - - uid: 5048 + - uid: 5204 components: - type: Transform pos: 51.5,-98.5 parent: 2 - - uid: 5049 + - uid: 5205 components: - type: Transform pos: 52.5,-98.5 parent: 2 - - uid: 5050 + - uid: 5206 components: - type: Transform pos: 53.5,-98.5 parent: 2 - - uid: 5051 + - uid: 5207 components: - type: Transform pos: 54.5,-98.5 parent: 2 - - uid: 5052 + - uid: 5208 components: - type: Transform pos: 46.5,-101.5 parent: 2 - - uid: 5053 + - uid: 5209 components: - type: Transform pos: 47.5,-101.5 parent: 2 - - uid: 5054 + - uid: 5210 components: - type: Transform pos: 48.5,-101.5 parent: 2 - - uid: 5055 + - uid: 5211 components: - type: Transform pos: 49.5,-101.5 parent: 2 - - uid: 5056 + - uid: 5212 components: - type: Transform pos: 50.5,-101.5 parent: 2 - - uid: 5057 + - uid: 5213 components: - type: Transform pos: 51.5,-101.5 parent: 2 - - uid: 5058 + - uid: 5214 components: - type: Transform pos: 52.5,-101.5 parent: 2 - - uid: 5059 + - uid: 5215 components: - type: Transform pos: 53.5,-101.5 parent: 2 - - uid: 5060 + - uid: 5216 components: - type: Transform pos: 54.5,-101.5 parent: 2 - - uid: 5061 + - uid: 5217 components: - type: Transform pos: 55.5,-101.5 parent: 2 - - uid: 5062 + - uid: 5218 components: - type: Transform pos: 34.5,-88.5 parent: 2 - - uid: 5063 + - uid: 5219 components: - type: Transform pos: 51.5,-94.5 parent: 2 - - uid: 5064 + - uid: 5220 components: - type: Transform pos: 52.5,-94.5 parent: 2 - - uid: 5065 + - uid: 5221 components: - type: Transform pos: 53.5,-94.5 parent: 2 - - uid: 5066 + - uid: 5222 components: - type: Transform pos: 54.5,-94.5 parent: 2 - - uid: 5067 + - uid: 5223 components: - type: Transform pos: 55.5,-94.5 parent: 2 - - uid: 5068 + - uid: 5224 components: - type: Transform pos: 55.5,-93.5 parent: 2 - - uid: 5069 + - uid: 5225 components: - type: Transform pos: 56.5,-93.5 parent: 2 - - uid: 5070 + - uid: 5226 components: - type: Transform pos: 55.5,-92.5 parent: 2 - - uid: 5071 + - uid: 5227 components: - type: Transform pos: 55.5,-91.5 parent: 2 - - uid: 5072 + - uid: 5228 components: - type: Transform pos: 55.5,-88.5 parent: 2 - - uid: 5073 + - uid: 5229 components: - type: Transform pos: 56.5,-91.5 parent: 2 - - uid: 5074 + - uid: 5230 components: - type: Transform pos: 54.5,-92.5 parent: 2 - - uid: 5075 + - uid: 5231 components: - type: Transform pos: 53.5,-92.5 parent: 2 - - uid: 5076 + - uid: 5232 components: - type: Transform pos: 52.5,-92.5 parent: 2 - - uid: 5077 + - uid: 5233 components: - type: Transform pos: 51.5,-92.5 parent: 2 - - uid: 5078 + - uid: 5234 components: - type: Transform pos: 46.5,-102.5 parent: 2 - - uid: 5079 + - uid: 5235 components: - type: Transform pos: 46.5,-103.5 parent: 2 - - uid: 5080 + - uid: 5236 components: - type: Transform pos: 46.5,-104.5 parent: 2 - - uid: 5081 + - uid: 5237 components: - type: Transform pos: 46.5,-105.5 parent: 2 - - uid: 5082 + - uid: 5238 components: - type: Transform pos: 45.5,-105.5 parent: 2 - - uid: 5083 + - uid: 5239 components: - type: Transform pos: 33.5,-105.5 parent: 2 - - uid: 5084 + - uid: 5240 components: - type: Transform pos: 39.5,-106.5 parent: 2 - - uid: 5085 + - uid: 5241 components: - type: Transform pos: 38.5,-88.5 parent: 2 - - uid: 5086 + - uid: 5242 components: - type: Transform pos: 37.5,-88.5 parent: 2 - - uid: 5087 + - uid: 5243 components: - type: Transform pos: 36.5,-88.5 parent: 2 - - uid: 5088 + - uid: 5244 components: - type: Transform pos: 35.5,-88.5 parent: 2 - - uid: 5089 + - uid: 5245 components: - type: Transform pos: 33.5,-88.5 parent: 2 - - uid: 5090 + - uid: 5246 components: - type: Transform pos: 30.5,-91.5 parent: 2 - - uid: 5091 + - uid: 5247 components: - type: Transform pos: 32.5,-88.5 parent: 2 - - uid: 5092 + - uid: 5248 components: - type: Transform pos: 32.5,-88.5 parent: 2 - - uid: 5093 + - uid: 5249 components: - type: Transform pos: 31.5,-88.5 parent: 2 - - uid: 5094 + - uid: 5250 components: - type: Transform pos: 30.5,-88.5 parent: 2 - - uid: 5095 + - uid: 5251 components: - type: Transform pos: 33.5,-85.5 parent: 2 - - uid: 5096 + - uid: 5252 components: - type: Transform pos: 33.5,-86.5 parent: 2 - - uid: 5097 + - uid: 5253 components: - type: Transform pos: 33.5,-87.5 parent: 2 - - uid: 5098 + - uid: 5254 components: - type: Transform pos: 33.5,-89.5 parent: 2 - - uid: 5099 + - uid: 5255 components: - type: Transform pos: 33.5,-90.5 parent: 2 - - uid: 5100 + - uid: 5256 components: - type: Transform pos: 33.5,-91.5 parent: 2 - - uid: 5101 + - uid: 5257 components: - type: Transform pos: 33.5,-92.5 parent: 2 - - uid: 5102 + - uid: 5258 components: - type: Transform pos: 33.5,-93.5 parent: 2 - - uid: 5103 + - uid: 5259 components: - type: Transform pos: 33.5,-94.5 parent: 2 - - uid: 5104 + - uid: 5260 components: - type: Transform pos: 33.5,-95.5 parent: 2 - - uid: 5105 + - uid: 5261 components: - type: Transform pos: 33.5,-96.5 parent: 2 - - uid: 5106 + - uid: 5262 components: - type: Transform pos: 33.5,-97.5 parent: 2 - - uid: 5107 + - uid: 5263 components: - type: Transform pos: 33.5,-98.5 parent: 2 - - uid: 5108 + - uid: 5264 components: - type: Transform pos: 33.5,-99.5 parent: 2 - - uid: 5109 + - uid: 5265 components: - type: Transform pos: 33.5,-100.5 parent: 2 - - uid: 5110 + - uid: 5266 components: - type: Transform pos: 33.5,-101.5 parent: 2 - - uid: 5111 + - uid: 5267 components: - type: Transform pos: 33.5,-102.5 parent: 2 - - uid: 5112 + - uid: 5268 components: - type: Transform pos: 33.5,-103.5 parent: 2 - - uid: 5113 + - uid: 5269 components: - type: Transform pos: 32.5,-100.5 parent: 2 - - uid: 5114 + - uid: 5270 components: - type: Transform pos: 31.5,-100.5 parent: 2 - - uid: 5115 + - uid: 5271 components: - type: Transform pos: 30.5,-100.5 parent: 2 - - uid: 5116 + - uid: 5272 components: - type: Transform pos: 30.5,-97.5 parent: 2 - - uid: 5117 + - uid: 5273 components: - type: Transform pos: 31.5,-97.5 parent: 2 - - uid: 5118 + - uid: 5274 components: - type: Transform pos: 32.5,-97.5 parent: 2 - - uid: 5119 + - uid: 5275 components: - type: Transform pos: 30.5,-94.5 parent: 2 - - uid: 5120 + - uid: 5276 components: - type: Transform pos: 31.5,-94.5 parent: 2 - - uid: 5121 + - uid: 5277 components: - type: Transform pos: 32.5,-94.5 parent: 2 - - uid: 5122 + - uid: 5278 components: - type: Transform pos: 32.5,-91.5 parent: 2 - - uid: 5123 + - uid: 5279 components: - type: Transform pos: 31.5,-91.5 parent: 2 - - uid: 5124 + - uid: 5280 components: - type: Transform pos: 30.5,-85.5 parent: 2 - - uid: 5125 + - uid: 5281 components: - type: Transform pos: 31.5,-85.5 parent: 2 - - uid: 5126 + - uid: 5282 components: - type: Transform pos: 32.5,-85.5 parent: 2 - - uid: 5127 + - uid: 5283 components: - type: Transform pos: 33.5,-104.5 parent: 2 - - uid: 5128 + - uid: 5284 components: - type: Transform pos: 41.5,-110.5 parent: 2 - - uid: 5129 + - uid: 5285 components: - type: Transform pos: 39.5,-109.5 parent: 2 - - uid: 5130 + - uid: 5286 components: - type: Transform pos: 40.5,-110.5 parent: 2 - - uid: 5131 + - uid: 5287 components: - type: Transform pos: 39.5,-110.5 parent: 2 - - uid: 5132 + - uid: 5288 components: - type: Transform pos: -44.5,10.5 parent: 2 - - uid: 5133 + - uid: 5289 components: - type: Transform pos: -44.5,11.5 parent: 2 - - uid: 5134 + - uid: 5290 components: - type: Transform pos: -44.5,12.5 parent: 2 - - uid: 5135 + - uid: 5291 components: - type: Transform pos: -44.5,13.5 parent: 2 - - uid: 5136 + - uid: 5292 components: - type: Transform pos: -47.5,13.5 parent: 2 - - uid: 5137 + - uid: 5293 components: - type: Transform pos: -47.5,14.5 parent: 2 - - uid: 5138 + - uid: 5294 components: - type: Transform pos: -47.5,15.5 parent: 2 - - uid: 5139 + - uid: 5295 components: - type: Transform pos: -49.5,15.5 parent: 2 - - uid: 5140 + - uid: 5296 components: - type: Transform pos: -50.5,15.5 parent: 2 - - uid: 5141 + - uid: 5297 components: - type: Transform pos: -51.5,15.5 parent: 2 - - uid: 5142 + - uid: 5298 components: - type: Transform pos: -51.5,16.5 parent: 2 - - uid: 5143 + - uid: 5299 components: - type: Transform pos: -51.5,17.5 parent: 2 - - uid: 5144 + - uid: 5300 components: - type: Transform pos: -51.5,18.5 parent: 2 - - uid: 5145 + - uid: 5301 components: - type: Transform pos: -51.5,19.5 parent: 2 - - uid: 5146 + - uid: 5302 components: - type: Transform pos: -50.5,19.5 parent: 2 - - uid: 5147 + - uid: 5303 components: - type: Transform pos: -50.5,20.5 parent: 2 - - uid: 5148 + - uid: 5304 components: - type: Transform pos: -50.5,21.5 parent: 2 - - uid: 5149 + - uid: 5305 components: - type: Transform pos: -50.5,18.5 parent: 2 - - uid: 5150 + - uid: 5306 components: - type: Transform pos: -49.5,18.5 parent: 2 - - uid: 5151 + - uid: 5307 components: - type: Transform pos: -48.5,18.5 parent: 2 - - uid: 5152 + - uid: 5308 components: - type: Transform pos: -47.5,18.5 parent: 2 - - uid: 5153 + - uid: 5309 components: - type: Transform pos: -46.5,18.5 parent: 2 - - uid: 5154 + - uid: 5310 components: - type: Transform pos: -45.5,18.5 parent: 2 - - uid: 5155 + - uid: 5311 components: - type: Transform pos: -44.5,18.5 parent: 2 - - uid: 5156 + - uid: 5312 components: - type: Transform pos: -43.5,18.5 parent: 2 - - uid: 5157 + - uid: 5313 components: - type: Transform pos: -42.5,18.5 parent: 2 - - uid: 5158 + - uid: 5314 components: - type: Transform pos: -42.5,19.5 parent: 2 - - uid: 5159 + - uid: 5315 components: - type: Transform pos: -42.5,20.5 parent: 2 - - uid: 5160 + - uid: 5316 components: - type: Transform pos: -42.5,21.5 parent: 2 - - uid: 5161 + - uid: 5317 components: - type: Transform pos: 41.5,12.5 parent: 2 - - uid: 5162 + - uid: 5318 components: - type: Transform pos: 42.5,12.5 parent: 2 - - uid: 5164 + - uid: 5319 components: - type: Transform pos: 48.5,-2.5 parent: 2 - - uid: 5172 + - uid: 5320 components: - type: Transform pos: 42.5,18.5 parent: 2 - - uid: 5173 + - uid: 5321 components: - type: Transform pos: 43.5,18.5 parent: 2 - - uid: 5174 + - uid: 5322 components: - type: Transform pos: 44.5,18.5 parent: 2 - - uid: 5175 + - uid: 5323 components: - type: Transform pos: 45.5,18.5 parent: 2 - - uid: 5177 + - uid: 5324 components: - type: Transform pos: -71.5,-30.5 parent: 2 - - uid: 5178 + - uid: 5325 components: - type: Transform pos: -72.5,-30.5 parent: 2 - - uid: 5179 + - uid: 5326 components: - type: Transform pos: -73.5,-30.5 parent: 2 - - uid: 5180 + - uid: 5327 components: - type: Transform pos: -74.5,-30.5 parent: 2 - - uid: 5181 + - uid: 5328 components: - type: Transform pos: -75.5,-30.5 parent: 2 - - uid: 5182 + - uid: 5329 components: - type: Transform pos: -76.5,-30.5 parent: 2 - - uid: 5183 + - uid: 5330 components: - type: Transform pos: -64.5,-5.5 parent: 2 - - uid: 5184 + - uid: 5331 components: - type: Transform pos: -64.5,-6.5 parent: 2 - - uid: 5185 + - uid: 5332 components: - type: Transform pos: -64.5,-7.5 parent: 2 - - uid: 5186 + - uid: 5333 components: - type: Transform pos: -64.5,-8.5 parent: 2 - - uid: 5187 + - uid: 5334 components: - type: Transform pos: -64.5,-9.5 parent: 2 - - uid: 5188 + - uid: 5335 components: - type: Transform pos: -64.5,-10.5 parent: 2 - - uid: 5189 + - uid: 5336 components: - type: Transform pos: -64.5,-11.5 parent: 2 - - uid: 5190 + - uid: 5337 components: - type: Transform pos: -64.5,-12.5 parent: 2 - - uid: 5191 + - uid: 5338 components: - type: Transform pos: -64.5,-13.5 parent: 2 - - uid: 5192 + - uid: 5339 components: - type: Transform pos: -65.5,-8.5 parent: 2 - - uid: 5193 + - uid: 5340 components: - type: Transform pos: -66.5,-8.5 parent: 2 - - uid: 5194 + - uid: 5341 components: - type: Transform pos: -67.5,-8.5 parent: 2 - - uid: 5195 + - uid: 5342 components: - type: Transform pos: -63.5,-6.5 parent: 2 - - uid: 5196 + - uid: 5343 components: - type: Transform pos: -62.5,-6.5 parent: 2 - - uid: 5197 + - uid: 5344 components: - type: Transform pos: -61.5,-6.5 parent: 2 - - uid: 5198 + - uid: 5345 components: - type: Transform pos: -60.5,-6.5 parent: 2 - - uid: 5199 + - uid: 5346 components: - type: Transform pos: -59.5,-6.5 parent: 2 - - uid: 5200 + - uid: 5347 components: - type: Transform pos: -58.5,-6.5 parent: 2 - - uid: 5201 + - uid: 5348 components: - type: Transform pos: -57.5,-6.5 parent: 2 - - uid: 5202 + - uid: 5349 components: - type: Transform pos: -57.5,-5.5 parent: 2 - - uid: 5203 + - uid: 5350 components: - type: Transform pos: -60.5,-7.5 parent: 2 - - uid: 5204 + - uid: 5351 components: - type: Transform pos: -60.5,-8.5 parent: 2 - - uid: 5205 + - uid: 5352 components: - type: Transform pos: -60.5,-9.5 parent: 2 - - uid: 5206 + - uid: 5353 components: - type: Transform pos: -60.5,-10.5 parent: 2 - - uid: 5207 + - uid: 5354 components: - type: Transform pos: -60.5,-11.5 parent: 2 - - uid: 5208 + - uid: 5355 components: - type: Transform pos: -60.5,-12.5 parent: 2 - - uid: 5209 + - uid: 5356 components: - type: Transform pos: -60.5,-13.5 parent: 2 - - uid: 5210 + - uid: 5357 components: - type: Transform pos: -59.5,-13.5 parent: 2 - - uid: 5211 + - uid: 5358 components: - type: Transform pos: -61.5,-12.5 parent: 2 - - uid: 5212 + - uid: 5359 components: - type: Transform pos: -62.5,-12.5 parent: 2 - - uid: 5213 + - uid: 5360 components: - type: Transform pos: -63.5,-12.5 parent: 2 - - uid: 5214 + - uid: 5361 components: - type: Transform pos: -65.5,-13.5 parent: 2 - - uid: 5215 + - uid: 5362 components: - type: Transform pos: -66.5,-13.5 parent: 2 - - uid: 5216 + - uid: 5363 components: - type: Transform pos: -67.5,-13.5 parent: 2 - - uid: 5217 + - uid: 5364 components: - type: Transform pos: -64.5,-20.5 parent: 2 - - uid: 5218 + - uid: 5365 components: - type: Transform pos: -64.5,-19.5 parent: 2 - - uid: 5219 + - uid: 5366 components: - type: Transform pos: -64.5,-18.5 parent: 2 - - uid: 5221 + - uid: 5367 components: - type: Transform pos: 45.5,20.5 parent: 2 - - uid: 5222 + - uid: 5368 components: - type: Transform pos: 45.5,21.5 parent: 2 - - uid: 5223 + - uid: 5369 components: - type: Transform pos: 45.5,22.5 parent: 2 - - uid: 5224 + - uid: 5370 components: - type: Transform pos: 45.5,23.5 parent: 2 - - uid: 5225 + - uid: 5371 components: - type: Transform pos: 33.5,-82.5 parent: 2 - - uid: 5226 + - uid: 5372 components: - type: Transform pos: 32.5,-82.5 parent: 2 - - uid: 5227 + - uid: 5373 components: - type: Transform pos: 32.5,-81.5 parent: 2 - - uid: 5228 + - uid: 5374 components: - type: Transform pos: 32.5,-80.5 parent: 2 - - uid: 5229 + - uid: 5375 components: - type: Transform pos: 32.5,-79.5 parent: 2 - - uid: 5230 + - uid: 5376 components: - type: Transform pos: 32.5,-78.5 parent: 2 - - uid: 5231 + - uid: 5377 components: - type: Transform pos: 31.5,-78.5 parent: 2 - - uid: 5232 + - uid: 5378 components: - type: Transform pos: 30.5,-78.5 parent: 2 - - uid: 5233 + - uid: 5379 components: - type: Transform pos: 30.5,-79.5 parent: 2 - - uid: 5234 + - uid: 5380 components: - type: Transform pos: 29.5,-79.5 parent: 2 - - uid: 5235 + - uid: 5381 components: - type: Transform pos: 28.5,-79.5 parent: 2 - - uid: 5236 + - uid: 5382 components: - type: Transform pos: 28.5,-78.5 parent: 2 - - uid: 5237 + - uid: 5383 components: - type: Transform pos: 27.5,-78.5 parent: 2 - - uid: 5238 + - uid: 5384 components: - type: Transform pos: 26.5,-78.5 parent: 2 - - uid: 5239 + - uid: 5385 components: - type: Transform pos: 25.5,-78.5 parent: 2 - - uid: 5240 + - uid: 5386 components: - type: Transform pos: 24.5,-78.5 parent: 2 - - uid: 5241 + - uid: 5387 components: - type: Transform pos: 23.5,-78.5 parent: 2 - - uid: 5242 + - uid: 5388 components: - type: Transform pos: 22.5,-75.5 parent: 2 - - uid: 5243 + - uid: 5389 components: - type: Transform pos: 22.5,-76.5 parent: 2 - - uid: 5244 + - uid: 5390 components: - type: Transform pos: 22.5,-77.5 parent: 2 - - uid: 5245 + - uid: 5391 components: - type: Transform pos: 22.5,-78.5 parent: 2 - - uid: 5246 + - uid: 5392 components: - type: Transform pos: 22.5,-79.5 parent: 2 - - uid: 5247 + - uid: 5393 components: - type: Transform pos: 22.5,-80.5 parent: 2 - - uid: 5248 + - uid: 5394 components: - type: Transform pos: 22.5,-81.5 parent: 2 - - uid: 5249 + - uid: 5395 components: - type: Transform pos: 22.5,-82.5 parent: 2 - - uid: 5250 + - uid: 5396 components: - type: Transform pos: 22.5,-83.5 parent: 2 - - uid: 5251 + - uid: 5397 components: - type: Transform pos: 22.5,-86.5 parent: 2 - - uid: 5252 + - uid: 5398 components: - type: Transform pos: 22.5,-87.5 parent: 2 - - uid: 5253 + - uid: 5399 components: - type: Transform pos: 21.5,-87.5 parent: 2 - - uid: 5254 + - uid: 5400 components: - type: Transform pos: 20.5,-87.5 parent: 2 - - uid: 5255 + - uid: 5401 components: - type: Transform pos: 23.5,-86.5 parent: 2 - - uid: 5256 + - uid: 5402 components: - type: Transform pos: 24.5,-86.5 parent: 2 - - uid: 5257 + - uid: 5403 components: - type: Transform pos: 25.5,-86.5 parent: 2 - - uid: 5258 + - uid: 5404 components: - type: Transform pos: 25.5,-85.5 parent: 2 - - uid: 5259 + - uid: 5405 components: - type: Transform pos: 29.5,-80.5 parent: 2 - - uid: 5260 + - uid: 5406 components: - type: Transform pos: 29.5,-81.5 parent: 2 - - uid: 5261 + - uid: 5407 components: - type: Transform pos: 29.5,-82.5 parent: 2 - - uid: 5262 + - uid: 5408 components: - type: Transform pos: 25.5,-79.5 parent: 2 - - uid: 5263 + - uid: 5409 components: - type: Transform pos: 25.5,-80.5 parent: 2 - - uid: 5264 + - uid: 5410 components: - type: Transform pos: 25.5,-81.5 parent: 2 - - uid: 5265 + - uid: 5411 components: - type: Transform pos: 25.5,-82.5 parent: 2 - - uid: 5266 + - uid: 5412 components: - type: Transform pos: -47.5,-94.5 parent: 2 - - uid: 5267 + - uid: 5413 components: - type: Transform pos: -47.5,-95.5 parent: 2 - - uid: 5268 + - uid: 5414 components: - type: Transform pos: -47.5,-96.5 parent: 2 - - uid: 5269 + - uid: 5415 components: - type: Transform pos: -47.5,-97.5 parent: 2 - - uid: 5270 + - uid: 5416 components: - type: Transform pos: -47.5,-98.5 parent: 2 - - uid: 5271 + - uid: 5417 components: - type: Transform pos: -47.5,-99.5 parent: 2 - - uid: 5272 + - uid: 5418 components: - type: Transform pos: -47.5,-100.5 parent: 2 - - uid: 5273 + - uid: 5419 components: - type: Transform pos: -47.5,-101.5 parent: 2 - - uid: 5274 + - uid: 5420 components: - type: Transform pos: -47.5,-102.5 parent: 2 - - uid: 5275 + - uid: 5421 components: - type: Transform pos: -47.5,-103.5 parent: 2 - - uid: 5276 + - uid: 5422 components: - type: Transform pos: -46.5,-103.5 parent: 2 - - uid: 5277 + - uid: 5423 components: - type: Transform pos: -45.5,-103.5 parent: 2 - - uid: 5278 + - uid: 5424 components: - type: Transform pos: -44.5,-103.5 parent: 2 - - uid: 5279 + - uid: 5425 components: - type: Transform pos: -43.5,-103.5 parent: 2 - - uid: 5280 + - uid: 5426 components: - type: Transform pos: -42.5,-103.5 parent: 2 - - uid: 5281 + - uid: 5427 components: - type: Transform pos: -41.5,-103.5 parent: 2 - - uid: 5282 + - uid: 5428 components: - type: Transform pos: -40.5,-103.5 parent: 2 - - uid: 5283 + - uid: 5429 components: - type: Transform pos: -39.5,-103.5 parent: 2 - - uid: 5284 + - uid: 5430 components: - type: Transform pos: -39.5,-98.5 parent: 2 - - uid: 5285 + - uid: 5431 components: - type: Transform pos: -50.5,9.5 parent: 2 - - uid: 5286 + - uid: 5432 components: - type: Transform pos: -51.5,9.5 parent: 2 - - uid: 5287 + - uid: 5433 components: - type: Transform pos: -52.5,9.5 parent: 2 - - uid: 5288 + - uid: 5434 components: - type: Transform pos: -53.5,9.5 parent: 2 - - uid: 5289 + - uid: 5435 components: - type: Transform pos: -53.5,8.5 parent: 2 - - uid: 5290 + - uid: 5436 components: - type: Transform pos: -53.5,7.5 parent: 2 - - uid: 5291 + - uid: 5437 components: - type: Transform pos: -53.5,6.5 parent: 2 - - uid: 5292 + - uid: 5438 components: - type: Transform pos: -53.5,5.5 parent: 2 - - uid: 5293 + - uid: 5439 components: - type: Transform pos: -53.5,4.5 parent: 2 - - uid: 5294 + - uid: 5440 components: - type: Transform pos: -53.5,3.5 parent: 2 - - uid: 5295 + - uid: 5441 components: - type: Transform pos: -53.5,2.5 parent: 2 - - uid: 5296 + - uid: 5442 components: - type: Transform pos: -54.5,2.5 parent: 2 - - uid: 5297 + - uid: 5443 components: - type: Transform pos: -55.5,2.5 parent: 2 - - uid: 5298 + - uid: 5444 components: - type: Transform pos: -56.5,2.5 parent: 2 - - uid: 5299 + - uid: 5445 components: - type: Transform pos: -57.5,2.5 parent: 2 - - uid: 5300 + - uid: 5446 components: - type: Transform pos: -41.5,8.5 parent: 2 - - uid: 5301 + - uid: 5447 components: - type: Transform pos: -40.5,8.5 parent: 2 - - uid: 5302 + - uid: 5448 components: - type: Transform pos: -39.5,11.5 parent: 2 - - uid: 5303 + - uid: 5449 components: - type: Transform pos: -38.5,11.5 parent: 2 - - uid: 5304 + - uid: 5450 components: - type: Transform pos: -37.5,11.5 parent: 2 - - uid: 5305 + - uid: 5451 components: - type: Transform pos: -36.5,11.5 parent: 2 - - uid: 5306 + - uid: 5452 components: - type: Transform pos: -35.5,11.5 parent: 2 - - uid: 5307 + - uid: 5453 components: - type: Transform pos: -34.5,11.5 parent: 2 - - uid: 5308 + - uid: 5454 components: - type: Transform pos: -34.5,12.5 parent: 2 - - uid: 5309 + - uid: 5455 components: - type: Transform pos: -34.5,13.5 parent: 2 - - uid: 5310 + - uid: 5456 components: - type: Transform pos: -34.5,14.5 parent: 2 - - uid: 5311 + - uid: 5457 components: - type: Transform pos: -34.5,15.5 parent: 2 - - uid: 5312 + - uid: 5458 components: - type: Transform pos: -34.5,16.5 parent: 2 - - uid: 5313 + - uid: 5459 components: - type: Transform pos: -33.5,16.5 parent: 2 - - uid: 5314 + - uid: 5460 components: - type: Transform pos: -32.5,16.5 parent: 2 - - uid: 5315 + - uid: 5461 components: - type: Transform pos: -31.5,16.5 parent: 2 - - uid: 5316 + - uid: 5462 components: - type: Transform pos: -30.5,16.5 parent: 2 - - uid: 5317 + - uid: 5463 components: - type: Transform pos: -29.5,16.5 parent: 2 - - uid: 5318 + - uid: 5464 components: - type: Transform pos: -28.5,16.5 parent: 2 - - uid: 5319 + - uid: 5465 components: - type: Transform pos: -27.5,16.5 parent: 2 - - uid: 5320 + - uid: 5466 components: - type: Transform pos: -26.5,16.5 parent: 2 - - uid: 5321 + - uid: 5467 components: - type: Transform pos: -25.5,16.5 parent: 2 - - uid: 5322 + - uid: 5468 components: - type: Transform pos: -24.5,16.5 parent: 2 - - uid: 5323 + - uid: 5469 components: - type: Transform pos: -24.5,15.5 parent: 2 - - uid: 5324 + - uid: 5470 components: - type: Transform pos: -23.5,15.5 parent: 2 - - uid: 5325 + - uid: 5471 components: - type: Transform pos: -22.5,15.5 parent: 2 - - uid: 5326 + - uid: 5472 components: - type: Transform pos: -21.5,15.5 parent: 2 - - uid: 5327 + - uid: 5473 components: - type: Transform pos: -20.5,15.5 parent: 2 - - uid: 5328 + - uid: 5474 components: - type: Transform pos: -19.5,15.5 parent: 2 - - uid: 5329 + - uid: 5475 components: - type: Transform pos: -18.5,15.5 parent: 2 - - uid: 5330 + - uid: 5476 components: - type: Transform pos: -17.5,15.5 parent: 2 - - uid: 5331 + - uid: 5477 components: - type: Transform pos: -17.5,14.5 parent: 2 - - uid: 5332 + - uid: 5478 components: - type: Transform pos: -17.5,13.5 parent: 2 - - uid: 5333 + - uid: 5479 components: - type: Transform pos: -16.5,13.5 parent: 2 - - uid: 5334 + - uid: 5480 components: - type: Transform pos: -15.5,13.5 parent: 2 - - uid: 5335 + - uid: 5481 components: - type: Transform pos: -14.5,13.5 parent: 2 - - uid: 5336 + - uid: 5482 components: - type: Transform pos: -13.5,13.5 parent: 2 - - uid: 5337 + - uid: 5483 components: - type: Transform pos: -8.5,11.5 parent: 2 - - uid: 5338 + - uid: 5484 components: - type: Transform pos: -8.5,12.5 parent: 2 - - uid: 5339 + - uid: 5485 components: - type: Transform pos: -8.5,13.5 parent: 2 - - uid: 5340 + - uid: 5486 components: - type: Transform pos: -8.5,14.5 parent: 2 - - uid: 5341 + - uid: 5487 components: - type: Transform pos: -8.5,15.5 parent: 2 - - uid: 5342 + - uid: 5488 components: - type: Transform pos: -9.5,15.5 parent: 2 - - uid: 5343 + - uid: 5489 components: - type: Transform pos: -9.5,16.5 parent: 2 - - uid: 5344 + - uid: 5490 components: - type: Transform pos: -10.5,15.5 parent: 2 - - uid: 5345 + - uid: 5491 components: - type: Transform pos: -10.5,14.5 parent: 2 - - uid: 5346 + - uid: 5492 components: - type: Transform pos: -11.5,14.5 parent: 2 - - uid: 5347 + - uid: 5493 components: - type: Transform pos: -15.5,14.5 parent: 2 - - uid: 5353 + - uid: 5494 components: - type: Transform pos: -22.5,14.5 parent: 2 - - uid: 5354 + - uid: 5495 components: - type: Transform pos: -22.5,13.5 parent: 2 - - uid: 5355 + - uid: 5496 components: - type: Transform pos: -22.5,12.5 parent: 2 - - uid: 5356 + - uid: 5497 components: - type: Transform pos: -22.5,11.5 parent: 2 - - uid: 5357 + - uid: 5498 components: - type: Transform pos: -21.5,11.5 parent: 2 - - uid: 5358 + - uid: 5499 components: - type: Transform pos: -20.5,11.5 parent: 2 - - uid: 5359 + - uid: 5500 components: - type: Transform pos: -23.5,11.5 parent: 2 - - uid: 5360 + - uid: 5501 components: - type: Transform pos: -35.5,16.5 parent: 2 - - uid: 5361 + - uid: 5502 components: - type: Transform pos: -36.5,16.5 parent: 2 - - uid: 5362 + - uid: 5503 components: - type: Transform pos: -37.5,16.5 parent: 2 - - uid: 5363 + - uid: 5504 components: - type: Transform pos: -38.5,16.5 parent: 2 - - uid: 5364 + - uid: 5505 components: - type: Transform pos: -38.5,17.5 parent: 2 - - uid: 5365 + - uid: 5506 components: - type: Transform pos: -38.5,15.5 parent: 2 - - uid: 5366 + - uid: 5507 components: - type: Transform pos: -38.5,7.5 parent: 2 - - uid: 5367 + - uid: 5508 components: - type: Transform pos: -40.5,-101.5 parent: 2 - - uid: 5368 + - uid: 5509 components: - type: Transform pos: -38.5,-103.5 parent: 2 - - uid: 5369 + - uid: 5510 components: - type: Transform pos: -55.5,-50.5 parent: 2 - - uid: 5370 + - uid: 5511 components: - type: Transform pos: -55.5,-49.5 parent: 2 - - uid: 5371 + - uid: 5512 components: - type: Transform pos: -55.5,-48.5 parent: 2 - - uid: 5372 + - uid: 5513 components: - type: Transform pos: -54.5,-48.5 parent: 2 - - uid: 5373 + - uid: 5514 components: - type: Transform pos: -53.5,-48.5 parent: 2 - - uid: 5374 + - uid: 5515 components: - type: Transform pos: -52.5,-48.5 parent: 2 - - uid: 5375 + - uid: 5516 components: - type: Transform pos: -56.5,-48.5 parent: 2 - - uid: 5376 + - uid: 5517 components: - type: Transform pos: -56.5,-47.5 parent: 2 - - uid: 5377 + - uid: 5518 components: - type: Transform pos: -56.5,-46.5 parent: 2 - - uid: 5378 + - uid: 5519 components: - type: Transform pos: -65.5,-53.5 parent: 2 - - uid: 5379 + - uid: 5520 components: - type: Transform pos: -64.5,-53.5 parent: 2 - - uid: 5380 + - uid: 5521 components: - type: Transform pos: -64.5,-54.5 parent: 2 - - uid: 5381 + - uid: 5522 components: - type: Transform pos: -64.5,-55.5 parent: 2 - - uid: 5382 + - uid: 5523 components: - type: Transform pos: -64.5,-56.5 parent: 2 - - uid: 5383 + - uid: 5524 components: - type: Transform pos: -64.5,-52.5 parent: 2 - - uid: 5384 + - uid: 5525 components: - type: Transform pos: -63.5,-52.5 parent: 2 - - uid: 5385 + - uid: 5526 components: - type: Transform pos: -62.5,-52.5 parent: 2 - - uid: 5386 + - uid: 5527 components: - type: Transform pos: -61.5,-52.5 parent: 2 - - uid: 5387 + - uid: 5528 components: - type: Transform pos: -60.5,-52.5 parent: 2 - - uid: 5388 + - uid: 5529 components: - type: Transform pos: -59.5,-52.5 parent: 2 - - uid: 5389 + - uid: 5530 components: - type: Transform pos: -58.5,-52.5 parent: 2 - - uid: 5390 + - uid: 5531 components: - type: Transform pos: -57.5,-52.5 parent: 2 - - uid: 5391 + - uid: 5532 components: - type: Transform pos: -59.5,-51.5 parent: 2 - - uid: 5392 + - uid: 5533 components: - type: Transform pos: -59.5,-50.5 parent: 2 - - uid: 5393 + - uid: 5534 components: - type: Transform pos: -59.5,-49.5 parent: 2 - - uid: 5394 + - uid: 5535 components: - type: Transform pos: -59.5,-48.5 parent: 2 - - uid: 5395 + - uid: 5536 components: - type: Transform pos: -59.5,-47.5 parent: 2 - - uid: 5396 + - uid: 5537 components: - type: Transform pos: -59.5,-46.5 parent: 2 - - uid: 5397 + - uid: 5538 components: - type: Transform pos: -38.5,18.5 parent: 2 - - uid: 5398 + - uid: 5539 components: - type: Transform pos: -37.5,18.5 parent: 2 - - uid: 5399 + - uid: 5540 components: - type: Transform pos: -37.5,19.5 parent: 2 - - uid: 5400 + - uid: 5541 components: - type: Transform pos: -37.5,20.5 parent: 2 - - uid: 5401 + - uid: 5542 components: - type: Transform pos: -36.5,20.5 parent: 2 - - uid: 5402 + - uid: 5543 components: - type: Transform pos: -35.5,20.5 parent: 2 - - uid: 5403 + - uid: 5544 components: - type: Transform pos: -38.5,14.5 parent: 2 - - uid: 5405 + - uid: 5545 components: - type: Transform pos: 74.5,-20.5 parent: 2 - - uid: 5406 + - uid: 5546 components: - type: Transform pos: 74.5,-19.5 parent: 2 - - uid: 5407 + - uid: 5547 components: - type: Transform pos: 74.5,-18.5 parent: 2 - - uid: 5408 + - uid: 5548 components: - type: Transform pos: 74.5,-17.5 parent: 2 - - uid: 5409 + - uid: 5549 components: - type: Transform pos: 73.5,-18.5 parent: 2 - - uid: 5410 + - uid: 5550 components: - type: Transform pos: 72.5,-18.5 parent: 2 - - uid: 5411 + - uid: 5551 components: - type: Transform pos: 75.5,-17.5 parent: 2 - - uid: 5412 + - uid: 5552 components: - type: Transform pos: 76.5,-17.5 parent: 2 - - uid: 5413 + - uid: 5553 components: - type: Transform pos: 77.5,-17.5 parent: 2 - - uid: 5414 + - uid: 5554 components: - type: Transform pos: 78.5,-17.5 parent: 2 - - uid: 5415 + - uid: 5555 components: - type: Transform pos: 78.5,-18.5 parent: 2 - - uid: 5421 + - uid: 5556 components: - type: Transform pos: -58.5,-37.5 parent: 2 - - uid: 5422 + - uid: 5557 components: - type: Transform pos: 76.5,-97.5 parent: 2 - - uid: 5423 + - uid: 5558 components: - type: Transform pos: 80.5,-95.5 parent: 2 - - uid: 5424 + - uid: 5559 components: - type: Transform pos: 76.5,-86.5 parent: 2 - - uid: 5425 + - uid: 5560 components: - type: Transform pos: 78.5,-95.5 parent: 2 - - uid: 5426 + - uid: 5561 components: - type: Transform pos: 76.5,-91.5 parent: 2 - - uid: 5427 + - uid: 5562 components: - type: Transform pos: 76.5,-92.5 parent: 2 - - uid: 5428 + - uid: 5563 components: - type: Transform pos: 77.5,-95.5 parent: 2 - - uid: 5429 + - uid: 5564 components: - type: Transform pos: 81.5,-95.5 parent: 2 - - uid: 5430 + - uid: 5565 components: - type: Transform pos: 70.5,-91.5 parent: 2 - - uid: 5431 + - uid: 5566 components: - type: Transform pos: 78.5,-91.5 parent: 2 - - uid: 5432 + - uid: 5567 components: - type: Transform pos: 79.5,-95.5 parent: 2 - - uid: 5433 + - uid: 5568 components: - type: Transform pos: 72.5,-95.5 parent: 2 - - uid: 5434 + - uid: 5569 components: - type: Transform pos: 74.5,-91.5 parent: 2 - - uid: 5435 + - uid: 5570 components: - type: Transform pos: 79.5,-91.5 parent: 2 - - uid: 5436 + - uid: 5571 components: - type: Transform pos: 74.5,-95.5 parent: 2 - - uid: 5437 + - uid: 5572 components: - type: Transform pos: 73.5,-95.5 parent: 2 - - uid: 5438 + - uid: 5573 components: - type: Transform pos: 76.5,-88.5 parent: 2 - - uid: 5439 + - uid: 5574 components: - type: Transform pos: 71.5,-91.5 parent: 2 - - uid: 5440 + - uid: 5575 components: - type: Transform pos: 76.5,-89.5 parent: 2 - - uid: 5441 + - uid: 5576 components: - type: Transform pos: 76.5,-93.5 parent: 2 - - uid: 5442 + - uid: 5577 components: - type: Transform pos: 76.5,-90.5 parent: 2 - - uid: 5443 + - uid: 5578 components: - type: Transform pos: 76.5,-94.5 parent: 2 - - uid: 5444 + - uid: 5579 components: - type: Transform pos: 56.5,-88.5 parent: 2 - - uid: 5445 + - uid: 5580 components: - type: Transform pos: -61.5,8.5 parent: 2 - - uid: 5446 + - uid: 5581 components: - type: Transform pos: -68.5,-64.5 parent: 2 - - uid: 5447 + - uid: 5582 components: - type: Transform pos: -74.5,-66.5 parent: 2 - - uid: 5448 + - uid: 5583 components: - type: Transform pos: 72.5,-91.5 parent: 2 - - uid: 5449 + - uid: 5584 components: - type: Transform pos: 80.5,-91.5 parent: 2 - - uid: 5450 + - uid: 5585 components: - type: Transform pos: -55.5,-69.5 parent: 2 - - uid: 5451 + - uid: 5586 components: - type: Transform pos: -56.5,-69.5 parent: 2 - - uid: 5452 + - uid: 5587 components: - type: Transform pos: -70.5,-77.5 parent: 2 - - uid: 5453 + - uid: 5588 components: - type: Transform pos: -60.5,-73.5 parent: 2 - - uid: 5454 + - uid: 5589 components: - type: Transform pos: -75.5,-65.5 parent: 2 - - uid: 5455 + - uid: 5590 components: - type: Transform pos: 69.5,-65.5 parent: 2 - - uid: 5456 + - uid: 5591 components: - type: Transform pos: 70.5,-61.5 parent: 2 - - uid: 5457 + - uid: 5592 components: - type: Transform pos: 66.5,-52.5 parent: 2 - - uid: 5458 + - uid: 5593 components: - type: Transform pos: 71.5,-61.5 parent: 2 - - uid: 5459 + - uid: 5594 components: - type: Transform pos: -69.5,-77.5 parent: 2 - - uid: 5460 + - uid: 5595 components: - type: Transform pos: -68.5,-77.5 parent: 2 - - uid: 5461 + - uid: 5596 components: - type: Transform pos: 71.5,-62.5 parent: 2 - - uid: 5462 + - uid: 5597 components: - type: Transform pos: 69.5,-61.5 parent: 2 - - uid: 5463 + - uid: 5598 components: - type: Transform pos: 71.5,-63.5 parent: 2 - - uid: 5466 + - uid: 5599 components: - type: Transform pos: -45.5,-34.5 parent: 2 - - uid: 5467 + - uid: 5600 components: - type: Transform pos: 36.5,-7.5 parent: 2 - - uid: 5468 + - uid: 5601 components: - type: Transform pos: 36.5,-9.5 parent: 2 - - uid: 5469 + - uid: 5602 components: - type: Transform pos: 43.5,-0.5 parent: 2 - - uid: 5470 + - uid: 5603 components: - type: Transform pos: 37.5,13.5 parent: 2 - - uid: 5471 + - uid: 5604 components: - type: Transform pos: 25.5,4.5 parent: 2 - - uid: 5472 + - uid: 5605 components: - type: Transform pos: 33.5,-12.5 parent: 2 - - uid: 5473 + - uid: 5606 components: - type: Transform pos: 38.5,13.5 parent: 2 - - uid: 5474 + - uid: 5607 components: - type: Transform pos: 35.5,10.5 parent: 2 - - uid: 5475 + - uid: 5608 components: - type: Transform pos: -71.5,-77.5 parent: 2 - - uid: 5476 + - uid: 5609 components: - type: Transform pos: -48.5,-35.5 parent: 2 - - uid: 5477 + - uid: 5610 components: - type: Transform pos: -50.5,-36.5 parent: 2 - - uid: 5478 + - uid: 5611 components: - type: Transform pos: -65.5,-77.5 parent: 2 - - uid: 5479 + - uid: 5612 components: - type: Transform pos: 70.5,-52.5 parent: 2 - - uid: 5480 + - uid: 5613 components: - type: Transform pos: -47.5,-36.5 parent: 2 - - uid: 5481 + - uid: 5614 components: - type: Transform pos: 82.5,-91.5 parent: 2 - - uid: 5482 + - uid: 5615 components: - type: Transform pos: 81.5,-91.5 parent: 2 - - uid: 5483 + - uid: 5616 components: - type: Transform pos: 77.5,-91.5 parent: 2 - - uid: 5484 + - uid: 5617 components: - type: Transform pos: 76.5,-95.5 parent: 2 - - uid: 5485 + - uid: 5618 components: - type: Transform pos: 73.5,-91.5 parent: 2 - - uid: 5486 + - uid: 5619 components: - type: Transform pos: 76.5,-96.5 parent: 2 - - uid: 5487 + - uid: 5620 components: - type: Transform pos: 75.5,-91.5 parent: 2 - - uid: 5488 + - uid: 5621 components: - type: Transform pos: 72.5,-58.5 parent: 2 - - uid: 5489 + - uid: 5622 components: - type: Transform pos: 85.5,-58.5 parent: 2 - - uid: 5490 + - uid: 5623 components: - type: Transform pos: 72.5,-61.5 parent: 2 - - uid: 5491 + - uid: 5624 components: - type: Transform pos: 85.5,-57.5 parent: 2 - - uid: 5492 + - uid: 5625 components: - type: Transform pos: 75.5,-48.5 parent: 2 - - uid: 5493 + - uid: 5626 components: - type: Transform pos: 72.5,-60.5 parent: 2 - - uid: 5494 + - uid: 5627 components: - type: Transform pos: 53.5,-78.5 parent: 2 - - uid: 5496 + - uid: 5628 components: - type: Transform pos: 69.5,-52.5 parent: 2 - - uid: 5497 + - uid: 5629 components: - type: Transform pos: 71.5,-53.5 parent: 2 - - uid: 5498 + - uid: 5630 components: - type: Transform pos: 83.5,-61.5 parent: 2 - - uid: 5499 + - uid: 5631 components: - type: Transform pos: 84.5,-61.5 parent: 2 - - uid: 5500 + - uid: 5632 components: - type: Transform pos: 85.5,-61.5 parent: 2 - - uid: 5501 + - uid: 5633 components: - type: Transform pos: 82.5,-57.5 parent: 2 - - uid: 5502 + - uid: 5634 components: - type: Transform pos: 83.5,-57.5 parent: 2 - - uid: 5503 + - uid: 5635 components: - type: Transform pos: 84.5,-57.5 parent: 2 - - uid: 5504 + - uid: 5636 components: - type: Transform pos: 55.5,-78.5 parent: 2 - - uid: 5505 + - uid: 5637 components: - type: Transform pos: 55.5,-80.5 parent: 2 - - uid: 5506 + - uid: 5638 components: - type: Transform pos: 75.5,-47.5 parent: 2 - - uid: 5507 + - uid: 5639 components: - type: Transform pos: 70.5,-65.5 parent: 2 - - uid: 5508 + - uid: 5640 components: - type: Transform pos: 35.5,18.5 parent: 2 - - uid: 5509 + - uid: 5641 components: - type: Transform pos: -48.5,-72.5 parent: 2 - - uid: 5510 + - uid: 5642 components: - type: Transform pos: 45.5,-74.5 parent: 2 - - uid: 5511 + - uid: 5643 components: - type: Transform pos: -72.5,-69.5 parent: 2 - - uid: 5512 + - uid: 5644 components: - type: Transform pos: -72.5,-61.5 parent: 2 - - uid: 5513 + - uid: 5645 components: - type: Transform pos: -68.5,-66.5 parent: 2 - - uid: 5514 + - uid: 5646 components: - type: Transform pos: 85.5,-60.5 parent: 2 - - uid: 5515 + - uid: 5647 components: - type: Transform pos: 82.5,-61.5 parent: 2 - - uid: 5516 + - uid: 5648 components: - type: Transform pos: 76.5,-50.5 parent: 2 - - uid: 5517 + - uid: 5649 components: - type: Transform pos: 35.5,31.5 parent: 2 - - uid: 5518 + - uid: 5650 components: - type: Transform pos: 34.5,31.5 parent: 2 - - uid: 5519 + - uid: 5651 components: - type: Transform pos: -59.5,-39.5 parent: 2 - - uid: 5520 + - uid: 5652 components: - type: Transform pos: 21.5,1.5 parent: 2 - - uid: 5521 + - uid: 5653 components: - type: Transform pos: 22.5,1.5 parent: 2 - - uid: 5522 + - uid: 5654 components: - type: Transform pos: 44.5,-0.5 parent: 2 - - uid: 5527 + - uid: 5655 components: - type: Transform pos: 73.5,-48.5 parent: 2 - - uid: 5528 + - uid: 5656 components: - type: Transform pos: -24.5,-94.5 parent: 2 - - uid: 5529 + - uid: 5657 components: - type: Transform pos: -23.5,-94.5 parent: 2 - - uid: 5530 + - uid: 5658 components: - type: Transform pos: 34.5,-12.5 parent: 2 - - uid: 5532 + - uid: 5659 components: - type: Transform pos: 54.5,-78.5 parent: 2 - - uid: 5533 + - uid: 5660 components: - type: Transform pos: 75.5,-51.5 parent: 2 - - uid: 5534 + - uid: 5661 components: - type: Transform pos: -82.5,26.5 parent: 2 - - uid: 5535 + - uid: 5662 components: - type: Transform pos: 44.5,-105.5 parent: 2 - - uid: 5536 + - uid: 5663 components: - type: Transform pos: 36.5,10.5 parent: 2 - - uid: 5537 + - uid: 5664 components: - type: Transform pos: 27.5,13.5 parent: 2 - - uid: 5538 + - uid: 5665 components: - type: Transform pos: 33.5,-4.5 parent: 2 - - uid: 5539 + - uid: 5666 components: - type: Transform pos: 23.5,6.5 parent: 2 - - uid: 5541 + - uid: 5667 components: - type: Transform pos: 45.5,-72.5 parent: 2 - - uid: 5542 + - uid: 5668 components: - type: Transform pos: 83.5,-49.5 parent: 2 - - uid: 5543 + - uid: 5669 components: - type: Transform pos: 86.5,-45.5 parent: 2 - - uid: 5544 + - uid: 5670 components: - type: Transform pos: 45.5,-73.5 parent: 2 - - uid: 5545 + - uid: 5671 components: - type: Transform pos: 39.5,-92.5 parent: 2 - - uid: 5546 + - uid: 5672 components: - type: Transform pos: 35.5,-10.5 parent: 2 - - uid: 5547 + - uid: 5673 components: - type: Transform pos: 31.5,-4.5 parent: 2 - - uid: 5548 + - uid: 5674 components: - type: Transform pos: 36.5,13.5 parent: 2 - - uid: 5549 + - uid: 5675 components: - type: Transform pos: 32.5,-4.5 parent: 2 - - uid: 5550 + - uid: 5676 components: - type: Transform pos: 23.5,8.5 parent: 2 - - uid: 5551 + - uid: 5677 components: - type: Transform pos: 23.5,7.5 parent: 2 - - uid: 5552 + - uid: 5678 components: - type: Transform pos: 26.5,4.5 parent: 2 - - uid: 5553 + - uid: 5679 components: - type: Transform pos: 37.5,10.5 parent: 2 - - uid: 5554 + - uid: 5680 components: - type: Transform pos: 35.5,13.5 parent: 2 - - uid: 5555 + - uid: 5681 components: - type: Transform pos: 30.5,-4.5 parent: 2 - - uid: 5556 + - uid: 5682 components: - type: Transform pos: 33.5,-8.5 parent: 2 - - uid: 5557 + - uid: 5683 components: - type: Transform pos: 33.5,-9.5 parent: 2 - - uid: 5558 + - uid: 5684 components: - type: Transform pos: 33.5,-10.5 parent: 2 - - uid: 5559 + - uid: 5685 components: - type: Transform pos: -53.5,-74.5 parent: 2 - - uid: 5560 + - uid: 5686 components: - type: Transform pos: -54.5,-72.5 parent: 2 - - uid: 5561 + - uid: 5687 components: - type: Transform pos: -63.5,-73.5 parent: 2 - - uid: 5562 + - uid: 5688 components: - type: Transform pos: -61.5,-76.5 parent: 2 - - uid: 5563 + - uid: 5689 components: - type: Transform pos: 34.5,-10.5 parent: 2 - - uid: 5564 + - uid: 5690 components: - type: Transform pos: 36.5,-10.5 parent: 2 - - uid: 5565 + - uid: 5691 components: - type: Transform pos: 33.5,18.5 parent: 2 - - uid: 5566 + - uid: 5692 components: - type: Transform pos: 26.5,3.5 parent: 2 - - uid: 5567 + - uid: 5693 components: - type: Transform pos: 45.5,-69.5 parent: 2 - - uid: 5568 + - uid: 5694 components: - type: Transform pos: 29.5,10.5 parent: 2 - - uid: 5569 + - uid: 5695 components: - type: Transform pos: 45.5,-70.5 parent: 2 - - uid: 5571 + - uid: 5696 components: - type: Transform pos: 36.5,-17.5 parent: 2 - - uid: 5572 + - uid: 5697 components: - type: Transform pos: 81.5,-61.5 parent: 2 - - uid: 5573 + - uid: 5698 components: - type: Transform pos: 86.5,-44.5 parent: 2 - - uid: 5574 + - uid: 5699 components: - type: Transform pos: 37.5,-15.5 parent: 2 - - uid: 5575 + - uid: 5700 components: - type: Transform pos: 27.5,-0.5 parent: 2 - - uid: 5576 + - uid: 5701 components: - type: Transform pos: -36.5,-114.5 parent: 2 - - uid: 5577 + - uid: 5702 components: - type: Transform pos: 26.5,2.5 parent: 2 - - uid: 5578 + - uid: 5703 components: - type: Transform pos: 27.5,2.5 parent: 2 - - uid: 5579 + - uid: 5704 components: - type: Transform pos: 26.5,0.5 parent: 2 - - uid: 5580 + - uid: 5705 components: - type: Transform pos: 26.5,-0.5 parent: 2 - - uid: 5581 + - uid: 5706 components: - type: Transform pos: 43.5,-74.5 parent: 2 - - uid: 5582 + - uid: 5707 components: - type: Transform pos: 58.5,-88.5 parent: 2 - - uid: 5583 + - uid: 5708 components: - type: Transform pos: 55.5,-98.5 parent: 2 - - uid: 5584 + - uid: 5709 components: - type: Transform pos: 22.5,8.5 parent: 2 - - uid: 5585 + - uid: 5710 components: - type: Transform pos: -35.5,-79.5 parent: 2 - - uid: 5586 + - uid: 5711 components: - type: Transform pos: -53.5,-71.5 parent: 2 - - uid: 5587 + - uid: 5712 components: - type: Transform pos: -49.5,-36.5 parent: 2 - - uid: 5588 + - uid: 5713 components: - type: Transform pos: 45.5,-71.5 parent: 2 - - uid: 5589 + - uid: 5714 components: - type: Transform pos: 44.5,-74.5 parent: 2 - - uid: 5590 + - uid: 5715 components: - type: Transform pos: 23.5,5.5 parent: 2 - - uid: 5591 + - uid: 5716 components: - type: Transform pos: 23.5,1.5 parent: 2 - - uid: 5592 + - uid: 5717 components: - type: Transform pos: 23.5,4.5 parent: 2 - - uid: 5593 + - uid: 5718 components: - type: Transform pos: 27.5,7.5 parent: 2 - - uid: 5594 + - uid: 5719 components: - type: Transform pos: 33.5,13.5 parent: 2 - - uid: 5595 + - uid: 5720 components: - type: Transform pos: 38.5,10.5 parent: 2 - - uid: 5596 + - uid: 5721 components: - type: Transform pos: 34.5,18.5 parent: 2 - - uid: 5597 + - uid: 5722 components: - type: Transform pos: 33.5,10.5 parent: 2 - - uid: 5598 + - uid: 5723 components: - type: Transform pos: -66.5,-69.5 parent: 2 - - uid: 5599 + - uid: 5724 components: - type: Transform pos: -63.5,-69.5 parent: 2 - - uid: 5600 + - uid: 5725 components: - type: Transform pos: 58.5,-87.5 parent: 2 - - uid: 5601 + - uid: 5726 components: - type: Transform pos: 27.5,10.5 parent: 2 - - uid: 5602 + - uid: 5727 components: - type: Transform pos: 23.5,3.5 parent: 2 - - uid: 5603 + - uid: 5728 components: - type: Transform pos: -64.5,-69.5 parent: 2 - - uid: 5605 + - uid: 5729 components: - type: Transform pos: 23.5,2.5 parent: 2 - - uid: 5606 + - uid: 5730 components: - type: Transform pos: 33.5,12.5 parent: 2 - - uid: 5607 + - uid: 5731 components: - type: Transform pos: 33.5,9.5 parent: 2 - - uid: 5609 + - uid: 5732 components: - type: Transform pos: 71.5,-52.5 parent: 2 - - uid: 5610 + - uid: 5733 components: - type: Transform pos: -42.5,-114.5 parent: 2 - - uid: 5613 + - uid: 5734 components: - type: Transform pos: 79.5,-54.5 parent: 2 - - uid: 5614 + - uid: 5735 components: - type: Transform pos: 75.5,-53.5 parent: 2 - - uid: 5615 + - uid: 5736 components: - type: Transform pos: 76.5,-54.5 parent: 2 - - uid: 5616 + - uid: 5737 components: - type: Transform pos: 74.5,-53.5 parent: 2 - - uid: 5617 + - uid: 5738 components: - type: Transform pos: 80.5,-61.5 parent: 2 - - uid: 5618 + - uid: 5739 components: - type: Transform pos: 71.5,-64.5 parent: 2 - - uid: 5619 + - uid: 5740 components: - type: Transform pos: -41.5,-119.5 parent: 2 - - uid: 5620 + - uid: 5741 components: - type: Transform pos: -41.5,-120.5 parent: 2 - - uid: 5621 + - uid: 5742 components: - type: Transform pos: -42.5,-119.5 parent: 2 - - uid: 5622 + - uid: 5743 components: - type: Transform pos: -43.5,-119.5 parent: 2 - - uid: 5623 + - uid: 5744 components: - type: Transform pos: -34.5,-121.5 parent: 2 - - uid: 5624 + - uid: 5745 components: - type: Transform pos: -37.5,-121.5 parent: 2 - - uid: 5625 + - uid: 5746 components: - type: Transform pos: -33.5,-118.5 parent: 2 - - uid: 5626 + - uid: 5747 components: - type: Transform pos: -36.5,-121.5 parent: 2 - - uid: 5627 + - uid: 5748 components: - type: Transform pos: -33.5,-121.5 parent: 2 - - uid: 5628 + - uid: 5749 components: - type: Transform pos: 71.5,-65.5 parent: 2 - - uid: 5629 + - uid: 5750 components: - type: Transform pos: 81.5,-53.5 parent: 2 - - uid: 5630 + - uid: 5751 components: - type: Transform pos: 75.5,-95.5 parent: 2 - - uid: 5632 + - uid: 5752 components: - type: Transform pos: -65.5,-71.5 parent: 2 - - uid: 5633 + - uid: 5753 components: - type: Transform pos: -64.5,-73.5 parent: 2 - - uid: 5634 + - uid: 5754 components: - type: Transform pos: -62.5,-69.5 parent: 2 - - uid: 5636 + - uid: 5755 components: - type: Transform pos: 77.5,-63.5 parent: 2 - - uid: 5637 + - uid: 5756 components: - type: Transform pos: 73.5,-64.5 parent: 2 - - uid: 5638 + - uid: 5757 components: - type: Transform pos: 78.5,-63.5 parent: 2 - - uid: 5639 + - uid: 5758 components: - type: Transform pos: 81.5,-65.5 parent: 2 - - uid: 5640 + - uid: 5759 components: - type: Transform pos: -54.5,-103.5 parent: 2 - - uid: 5641 + - uid: 5760 components: - type: Transform pos: -55.5,-103.5 parent: 2 - - uid: 5642 + - uid: 5761 components: - type: Transform pos: 85.5,-45.5 parent: 2 - - uid: 5643 + - uid: 5762 components: - type: Transform pos: 84.5,-45.5 parent: 2 - - uid: 5644 + - uid: 5763 components: - type: Transform pos: -74.5,2.5 parent: 2 - - uid: 5645 + - uid: 5764 components: - type: Transform pos: -69.5,9.5 parent: 2 - - uid: 5646 + - uid: 5765 components: - type: Transform pos: 57.5,-88.5 parent: 2 - - uid: 5647 + - uid: 5766 components: - type: Transform pos: -78.5,10.5 parent: 2 - - uid: 5648 + - uid: 5767 components: - type: Transform pos: -79.5,10.5 parent: 2 - - uid: 5649 + - uid: 5768 components: - type: Transform pos: -80.5,10.5 parent: 2 - - uid: 5650 + - uid: 5769 components: - type: Transform pos: -81.5,10.5 parent: 2 - - uid: 5651 + - uid: 5770 components: - type: Transform pos: 71.5,-95.5 parent: 2 - - uid: 5652 + - uid: 5771 components: - type: Transform pos: 78.5,-87.5 parent: 2 - - uid: 5653 + - uid: 5772 components: - type: Transform pos: 79.5,-87.5 parent: 2 - - uid: 5655 + - uid: 5773 components: - type: Transform pos: 81.5,-87.5 parent: 2 - - uid: 5656 + - uid: 5774 components: - type: Transform pos: 105.5,-57.5 parent: 2 - - uid: 5657 + - uid: 5775 components: - type: Transform pos: 33.5,11.5 parent: 2 - - uid: 5658 + - uid: 5776 components: - type: Transform pos: 34.5,10.5 parent: 2 - - uid: 5659 + - uid: 5777 components: - type: Transform pos: 110.5,-58.5 parent: 2 - - uid: 5660 + - uid: 5778 components: - type: Transform pos: 107.5,-58.5 parent: 2 - - uid: 5661 + - uid: 5779 components: - type: Transform pos: -74.5,1.5 parent: 2 - - uid: 5662 + - uid: 5780 components: - type: Transform pos: 32.5,-16.5 parent: 2 - - uid: 5663 + - uid: 5781 components: - type: Transform pos: 26.5,13.5 parent: 2 - - uid: 5664 + - uid: 5782 components: - type: Transform pos: 77.5,-87.5 parent: 2 - - uid: 5665 + - uid: 5783 components: - type: Transform pos: 106.5,-42.5 parent: 2 - - uid: 5666 + - uid: 5784 components: - type: Transform pos: 106.5,-41.5 parent: 2 - - uid: 5667 + - uid: 5785 components: - type: Transform pos: 106.5,-43.5 parent: 2 - - uid: 5668 + - uid: 5786 components: - type: Transform pos: 111.5,-45.5 parent: 2 - - uid: 5669 + - uid: 5787 components: - type: Transform pos: 104.5,-45.5 parent: 2 - - uid: 5670 + - uid: 5788 components: - type: Transform pos: 105.5,-45.5 parent: 2 - - uid: 5671 + - uid: 5789 components: - type: Transform pos: 109.5,-45.5 parent: 2 - - uid: 5672 + - uid: 5790 components: - type: Transform pos: -49.5,-9.5 parent: 2 - - uid: 5673 + - uid: 5791 components: - type: Transform pos: -49.5,-10.5 parent: 2 - - uid: 5674 + - uid: 5792 components: - type: Transform pos: -50.5,-11.5 parent: 2 - - uid: 5675 + - uid: 5793 components: - type: Transform pos: -49.5,-11.5 parent: 2 - - uid: 5676 + - uid: 5794 components: - type: Transform pos: -49.5,-12.5 parent: 2 - - uid: 5677 + - uid: 5795 components: - type: Transform pos: -45.5,-10.5 parent: 2 - - uid: 5678 + - uid: 5796 components: - type: Transform pos: -47.5,-10.5 parent: 2 - - uid: 5679 + - uid: 5797 components: - type: Transform pos: -47.5,-9.5 parent: 2 - - uid: 5680 + - uid: 5798 components: - type: Transform pos: -48.5,-9.5 parent: 2 - - uid: 5681 + - uid: 5799 components: - type: Transform pos: -51.5,-69.5 parent: 2 - - uid: 5683 + - uid: 5800 components: - type: Transform pos: 35.5,-12.5 parent: 2 - - uid: 5684 + - uid: 5801 components: - type: Transform pos: 35.5,34.5 parent: 2 - - uid: 5685 + - uid: 5802 components: - type: Transform pos: -61.5,-77.5 parent: 2 - - uid: 5686 + - uid: 5803 components: - type: Transform pos: -61.5,-73.5 parent: 2 - - uid: 5687 + - uid: 5804 components: - type: Transform pos: -65.5,-73.5 parent: 2 - - uid: 5688 + - uid: 5805 components: - type: Transform pos: -61.5,-75.5 parent: 2 - - uid: 5689 + - uid: 5806 components: - type: Transform pos: -49.5,-69.5 parent: 2 - - uid: 5690 + - uid: 5807 components: - type: Transform pos: -50.5,-69.5 parent: 2 - - uid: 5692 + - uid: 5808 components: - type: Transform pos: 34.5,32.5 parent: 2 - - uid: 5693 + - uid: 5809 components: - type: Transform pos: 34.5,33.5 parent: 2 - - uid: 5694 + - uid: 5810 components: - type: Transform pos: -65.5,-72.5 parent: 2 - - uid: 5696 + - uid: 5811 components: - type: Transform pos: 33.5,-15.5 parent: 2 - - uid: 5697 + - uid: 5812 components: - type: Transform pos: 33.5,-16.5 parent: 2 - - uid: 5698 + - uid: 5813 components: - type: Transform pos: -65.5,-70.5 parent: 2 - - uid: 5699 + - uid: 5814 components: - type: Transform pos: 80.5,-87.5 parent: 2 - - uid: 5700 + - uid: 5815 components: - type: Transform pos: 75.5,-87.5 parent: 2 - - uid: 5701 + - uid: 5816 components: - type: Transform pos: 73.5,-87.5 parent: 2 - - uid: 5702 + - uid: 5817 components: - type: Transform pos: 79.5,-48.5 parent: 2 - - uid: 5703 + - uid: 5818 components: - type: Transform pos: 77.5,-49.5 parent: 2 - - uid: 5704 + - uid: 5819 components: - type: Transform pos: 26.5,1.5 parent: 2 - - uid: 5705 + - uid: 5820 components: - type: Transform pos: -26.5,-99.5 parent: 2 - - uid: 5706 + - uid: 5821 components: - type: Transform pos: -25.5,-98.5 parent: 2 - - uid: 5707 + - uid: 5822 components: - type: Transform pos: 33.5,-20.5 parent: 2 - - uid: 5708 + - uid: 5823 components: - type: Transform pos: -69.5,-97.5 parent: 2 - - uid: 5709 + - uid: 5824 components: - type: Transform pos: -19.5,-94.5 parent: 2 - - uid: 5710 + - uid: 5825 components: - type: Transform pos: -73.5,2.5 parent: 2 - - uid: 5711 + - uid: 5826 components: - type: Transform pos: -54.5,-71.5 parent: 2 - - uid: 5712 + - uid: 5827 components: - type: Transform pos: 36.5,35.5 parent: 2 - - uid: 5713 + - uid: 5828 components: - type: Transform pos: -61.5,-74.5 parent: 2 - - uid: 5714 + - uid: 5829 components: - type: Transform pos: 31.5,-20.5 parent: 2 - - uid: 5715 + - uid: 5830 components: - type: Transform pos: 32.5,-20.5 parent: 2 - - uid: 5716 + - uid: 5831 components: - type: Transform pos: -48.5,-69.5 parent: 2 - - uid: 5717 + - uid: 5832 components: - type: Transform pos: -65.5,-76.5 parent: 2 - - uid: 5718 + - uid: 5833 components: - type: Transform pos: 74.5,-48.5 parent: 2 - - uid: 5719 + - uid: 5834 components: - type: Transform pos: -53.5,-70.5 parent: 2 - - uid: 5720 + - uid: 5835 components: - type: Transform pos: -62.5,-73.5 parent: 2 - - uid: 5721 + - uid: 5836 components: - type: Transform pos: 24.5,1.5 parent: 2 - - uid: 5722 + - uid: 5837 components: - type: Transform pos: 25.5,1.5 parent: 2 - - uid: 5723 + - uid: 5838 components: - type: Transform pos: 109.5,-44.5 parent: 2 - - uid: 5724 + - uid: 5839 components: - type: Transform pos: -65.5,-74.5 parent: 2 - - uid: 5725 + - uid: 5840 components: - type: Transform pos: 107.5,-44.5 parent: 2 - - uid: 5726 + - uid: 5841 components: - type: Transform pos: -37.5,-114.5 parent: 2 - - uid: 5727 + - uid: 5842 components: - type: Transform pos: -70.5,-73.5 parent: 2 - - uid: 5730 + - uid: 5843 components: - type: Transform pos: 28.5,10.5 parent: 2 - - uid: 5731 + - uid: 5844 components: - type: Transform pos: 27.5,8.5 parent: 2 - - uid: 5732 + - uid: 5845 components: - type: Transform pos: 27.5,9.5 parent: 2 - - uid: 5733 + - uid: 5846 components: - type: Transform pos: 26.5,7.5 parent: 2 - - uid: 5734 + - uid: 5847 components: - type: Transform pos: 94.5,-49.5 parent: 2 - - uid: 5735 + - uid: 5848 components: - type: Transform pos: -37.5,-118.5 parent: 2 - - uid: 5736 + - uid: 5849 components: - type: Transform pos: 74.5,-87.5 parent: 2 - - uid: 5737 + - uid: 5850 components: - type: Transform pos: 72.5,-87.5 parent: 2 - - uid: 5738 + - uid: 5851 components: - type: Transform pos: 71.5,-87.5 parent: 2 - - uid: 5739 + - uid: 5852 components: - type: Transform pos: 67.5,-82.5 parent: 2 - - uid: 5740 + - uid: 5853 components: - type: Transform pos: -68.5,-101.5 parent: 2 - - uid: 5741 + - uid: 5854 components: - type: Transform pos: -40.5,-121.5 parent: 2 - - uid: 5742 + - uid: 5855 components: - type: Transform pos: -39.5,-121.5 parent: 2 - - uid: 5743 + - uid: 5856 components: - type: Transform pos: -33.5,-119.5 parent: 2 - - uid: 5744 + - uid: 5857 components: - type: Transform pos: -34.5,-114.5 parent: 2 - - uid: 5745 + - uid: 5858 components: - type: Transform pos: -34.5,-116.5 parent: 2 - - uid: 5746 + - uid: 5859 components: - type: Transform pos: -37.5,-120.5 parent: 2 - - uid: 5747 + - uid: 5860 components: - type: Transform pos: -55.5,-102.5 parent: 2 - - uid: 5748 + - uid: 5861 components: - type: Transform pos: -55.5,-94.5 parent: 2 - - uid: 5750 + - uid: 5862 components: - type: Transform pos: -53.5,-69.5 parent: 2 - - uid: 5751 + - uid: 5863 components: - type: Transform pos: 33.5,-21.5 parent: 2 - - uid: 5752 + - uid: 5864 components: - type: Transform pos: 97.5,-54.5 parent: 2 - - uid: 5753 + - uid: 5865 components: - type: Transform pos: 108.5,-44.5 parent: 2 - - uid: 5754 + - uid: 5866 components: - type: Transform pos: 106.5,-45.5 parent: 2 - - uid: 5755 + - uid: 5867 components: - type: Transform pos: 24.5,12.5 parent: 2 - - uid: 5756 + - uid: 5868 components: - type: Transform pos: -40.5,-113.5 parent: 2 - - uid: 5760 + - uid: 5869 components: - type: Transform pos: 12.5,-95.5 parent: 2 - - uid: 5761 + - uid: 5870 components: - type: Transform pos: -49.5,-93.5 parent: 2 - - uid: 5762 + - uid: 5871 components: - type: Transform pos: -53.5,-73.5 parent: 2 - - uid: 5763 + - uid: 5872 components: - type: Transform pos: -68.5,-73.5 parent: 2 - - uid: 5764 + - uid: 5873 components: - type: Transform pos: -49.5,-92.5 parent: 2 - - uid: 5765 + - uid: 5874 components: - type: Transform pos: 76.5,-51.5 parent: 2 - - uid: 5766 + - uid: 5875 components: - type: Transform pos: 26.5,11.5 parent: 2 - - uid: 5767 + - uid: 5876 components: - type: Transform pos: 19.5,20.5 parent: 2 - - uid: 5768 + - uid: 5877 components: - type: Transform pos: -66.5,-73.5 parent: 2 - - uid: 5769 + - uid: 5878 components: - type: Transform pos: -67.5,-73.5 parent: 2 - - uid: 5770 + - uid: 5879 components: - type: Transform pos: 74.5,-51.5 parent: 2 - - uid: 5771 + - uid: 5880 components: - type: Transform pos: 24.5,11.5 parent: 2 - - uid: 5772 + - uid: 5881 components: - type: Transform pos: -51.5,-71.5 parent: 2 - - uid: 5773 + - uid: 5882 components: - type: Transform pos: -45.5,-11.5 parent: 2 - - uid: 5774 + - uid: 5883 components: - type: Transform pos: 30.5,11.5 parent: 2 - - uid: 5775 + - uid: 5884 components: - type: Transform pos: 30.5,10.5 parent: 2 - - uid: 5776 + - uid: 5885 components: - type: Transform pos: 31.5,10.5 parent: 2 - - uid: 5777 + - uid: 5886 components: - type: Transform pos: 30.5,12.5 parent: 2 - - uid: 5778 + - uid: 5887 components: - type: Transform pos: 82.5,-49.5 parent: 2 - - uid: 5779 + - uid: 5888 components: - type: Transform pos: -39.5,-119.5 parent: 2 - - uid: 5780 + - uid: 5889 components: - type: Transform pos: -35.5,-114.5 parent: 2 - - uid: 5781 + - uid: 5890 components: - type: Transform pos: -34.5,-113.5 parent: 2 - - uid: 5782 + - uid: 5891 components: - type: Transform pos: 75.5,-49.5 parent: 2 - - uid: 5783 + - uid: 5892 components: - type: Transform pos: -34.5,-112.5 parent: 2 - - uid: 5784 + - uid: 5893 components: - type: Transform pos: -34.5,-115.5 parent: 2 - - uid: 5785 + - uid: 5894 components: - type: Transform pos: 9.5,0.5 parent: 2 - - uid: 5786 + - uid: 5895 components: - type: Transform pos: -82.5,28.5 parent: 2 - - uid: 5787 + - uid: 5896 components: - type: Transform pos: -54.5,-73.5 parent: 2 - - uid: 5788 + - uid: 5897 components: - type: Transform pos: 88.5,-47.5 parent: 2 - - uid: 5789 + - uid: 5898 components: - type: Transform pos: 107.5,-55.5 parent: 2 - - uid: 5790 + - uid: 5899 components: - type: Transform pos: 108.5,-57.5 parent: 2 - - uid: 5791 + - uid: 5900 components: - type: Transform pos: 107.5,-54.5 parent: 2 - - uid: 5792 + - uid: 5901 components: - type: Transform pos: 88.5,-46.5 parent: 2 - - uid: 5793 + - uid: 5902 components: - type: Transform pos: 98.5,-51.5 parent: 2 - - uid: 5794 + - uid: 5903 components: - type: Transform pos: 110.5,-45.5 parent: 2 - - uid: 5795 + - uid: 5904 components: - type: Transform pos: 94.5,-51.5 parent: 2 - - uid: 5796 + - uid: 5905 components: - type: Transform pos: 94.5,-50.5 parent: 2 - - uid: 5797 + - uid: 5906 components: - type: Transform pos: 98.5,-45.5 parent: 2 - - uid: 5798 + - uid: 5907 components: - type: Transform pos: 108.5,-56.5 parent: 2 - - uid: 5800 + - uid: 5908 components: - type: Transform pos: 95.5,-49.5 parent: 2 - - uid: 5801 + - uid: 5909 components: - type: Transform pos: 89.5,-50.5 parent: 2 - - uid: 5802 + - uid: 5910 components: - type: Transform pos: 89.5,-48.5 parent: 2 - - uid: 5803 + - uid: 5911 components: - type: Transform pos: 89.5,-51.5 parent: 2 - - uid: 5804 + - uid: 5912 components: - type: Transform pos: 77.5,-48.5 parent: 2 - - uid: 5805 + - uid: 5913 components: - type: Transform pos: 79.5,-63.5 parent: 2 - - uid: 5806 + - uid: 5914 components: - type: Transform pos: 80.5,-64.5 parent: 2 - - uid: 5807 + - uid: 5915 components: - type: Transform pos: 70.5,-57.5 parent: 2 - - uid: 5808 + - uid: 5916 components: - type: Transform pos: 75.5,-63.5 parent: 2 - - uid: 5809 + - uid: 5917 components: - type: Transform pos: 79.5,-64.5 parent: 2 - - uid: 5810 + - uid: 5918 components: - type: Transform pos: 71.5,-56.5 parent: 2 - - uid: 5811 + - uid: 5919 components: - type: Transform pos: 81.5,-64.5 parent: 2 - - uid: 5812 + - uid: 5920 components: - type: Transform pos: 73.5,-53.5 parent: 2 - - uid: 5813 + - uid: 5921 components: - type: Transform pos: 71.5,-55.5 parent: 2 - - uid: 5814 + - uid: 5922 components: - type: Transform pos: -38.5,-119.5 parent: 2 - - uid: 5815 + - uid: 5923 components: - type: Transform pos: -33.5,-120.5 parent: 2 - - uid: 5816 + - uid: 5924 components: - type: Transform pos: -35.5,-121.5 parent: 2 - - uid: 5817 + - uid: 5925 components: - type: Transform pos: -41.5,-121.5 parent: 2 - - uid: 5818 + - uid: 5926 components: - type: Transform pos: -18.5,-100.5 parent: 2 - - uid: 5819 + - uid: 5927 components: - type: Transform pos: -55.5,-95.5 parent: 2 - - uid: 5820 + - uid: 5928 components: - type: Transform pos: 78.5,-51.5 parent: 2 - - uid: 5821 + - uid: 5929 components: - type: Transform pos: -65.5,-75.5 parent: 2 - - uid: 5822 + - uid: 5930 components: - type: Transform pos: -50.5,-74.5 parent: 2 - - uid: 5823 + - uid: 5931 components: - type: Transform pos: 0.5,27.5 parent: 2 - - uid: 5824 + - uid: 5932 components: - type: Transform pos: -48.5,-74.5 parent: 2 - - uid: 5825 + - uid: 5933 components: - type: Transform pos: -17.5,-100.5 parent: 2 - - uid: 5826 + - uid: 5934 components: - type: Transform pos: -22.5,-97.5 parent: 2 - - uid: 5827 + - uid: 5935 components: - type: Transform pos: -19.5,-99.5 parent: 2 - - uid: 5828 + - uid: 5936 components: - type: Transform pos: 77.5,-51.5 parent: 2 - - uid: 5829 + - uid: 5937 components: - type: Transform pos: -39.5,-112.5 parent: 2 - - uid: 5830 + - uid: 5938 components: - type: Transform pos: -39.5,-114.5 parent: 2 - - uid: 5831 + - uid: 5939 components: - type: Transform pos: -5.5,-73.5 parent: 2 - - uid: 5832 + - uid: 5940 components: - type: Transform pos: 81.5,-55.5 parent: 2 - - uid: 5833 + - uid: 5941 components: - type: Transform pos: 81.5,-57.5 parent: 2 - - uid: 5834 + - uid: 5942 components: - type: Transform pos: -38.5,-112.5 parent: 2 - - uid: 5835 + - uid: 5943 components: - type: Transform pos: -40.5,-112.5 parent: 2 - - uid: 5836 + - uid: 5944 components: - type: Transform pos: 98.5,-42.5 parent: 2 - - uid: 5837 + - uid: 5945 components: - type: Transform pos: 88.5,-52.5 parent: 2 - - uid: 5838 + - uid: 5946 components: - type: Transform pos: 81.5,-54.5 parent: 2 - - uid: 5839 + - uid: 5947 components: - type: Transform pos: 80.5,-58.5 parent: 2 - - uid: 5840 + - uid: 5948 components: - type: Transform pos: 73.5,-63.5 parent: 2 - - uid: 5841 + - uid: 5949 components: - type: Transform pos: 74.5,-63.5 parent: 2 - - uid: 5842 + - uid: 5950 components: - type: Transform pos: 76.5,-63.5 parent: 2 - - uid: 5843 + - uid: 5951 components: - type: Transform pos: 76.5,-64.5 parent: 2 - - uid: 5844 + - uid: 5952 components: - type: Transform pos: -21.5,-96.5 parent: 2 - - uid: 5845 + - uid: 5953 components: - type: Transform pos: 86.5,-54.5 parent: 2 - - uid: 5846 + - uid: 5954 components: - type: Transform pos: -51.5,-72.5 parent: 2 - - uid: 5847 + - uid: 5955 components: - type: Transform pos: -41.5,-115.5 parent: 2 - - uid: 5848 + - uid: 5956 components: - type: Transform pos: -41.5,-116.5 parent: 2 - - uid: 5849 + - uid: 5957 components: - type: Transform pos: -41.5,-114.5 parent: 2 - - uid: 5850 + - uid: 5958 components: - type: Transform pos: -40.5,-114.5 parent: 2 - - uid: 5851 + - uid: 5959 components: - type: Transform pos: -24.5,-98.5 parent: 2 - - uid: 5852 + - uid: 5960 components: - type: Transform pos: -37.5,-112.5 parent: 2 - - uid: 5853 + - uid: 5961 components: - type: Transform pos: -38.5,-114.5 parent: 2 - - uid: 5854 + - uid: 5962 components: - type: Transform pos: 103.5,-45.5 parent: 2 - - uid: 5855 + - uid: 5963 components: - type: Transform pos: 102.5,-45.5 parent: 2 - - uid: 5856 + - uid: 5964 components: - type: Transform pos: 72.5,-64.5 parent: 2 - - uid: 5857 + - uid: 5965 components: - type: Transform pos: 80.5,-60.5 parent: 2 - - uid: 5858 + - uid: 5966 components: - type: Transform pos: 80.5,-57.5 parent: 2 - - uid: 5859 + - uid: 5967 components: - type: Transform pos: 81.5,-56.5 parent: 2 - - uid: 5860 + - uid: 5968 components: - type: Transform pos: 76.5,-53.5 parent: 2 - - uid: 5861 + - uid: 5969 components: - type: Transform pos: 72.5,-57.5 parent: 2 - - uid: 5862 + - uid: 5970 components: - type: Transform pos: 78.5,-53.5 parent: 2 - - uid: 5863 + - uid: 5971 components: - type: Transform pos: 79.5,-53.5 parent: 2 - - uid: 5864 + - uid: 5972 components: - type: Transform pos: 77.5,-53.5 parent: 2 - - uid: 5865 + - uid: 5973 components: - type: Transform pos: 81.5,-63.5 parent: 2 - - uid: 5866 + - uid: 5974 components: - type: Transform pos: 81.5,-62.5 parent: 2 - - uid: 5867 + - uid: 5975 components: - type: Transform pos: 80.5,-54.5 parent: 2 - - uid: 5868 + - uid: 5976 components: - type: Transform pos: 55.5,-79.5 parent: 2 - - uid: 5869 + - uid: 5977 components: - type: Transform pos: 72.5,-54.5 parent: 2 - - uid: 5870 + - uid: 5978 components: - type: Transform pos: 69.5,-57.5 parent: 2 - - uid: 5871 + - uid: 5979 components: - type: Transform pos: 71.5,-57.5 parent: 2 - - uid: 5872 + - uid: 5980 components: - type: Transform pos: 73.5,-54.5 parent: 2 - - uid: 5873 + - uid: 5981 components: - type: Transform pos: 89.5,-53.5 parent: 2 - - uid: 5874 + - uid: 5982 components: - type: Transform pos: 97.5,-53.5 parent: 2 - - uid: 5875 + - uid: 5983 components: - type: Transform pos: 96.5,-53.5 parent: 2 - - uid: 5876 + - uid: 5984 components: - type: Transform pos: 98.5,-41.5 parent: 2 - - uid: 5877 + - uid: 5985 components: - type: Transform pos: 101.5,-45.5 parent: 2 - - uid: 5878 + - uid: 5986 components: - type: Transform pos: 86.5,-52.5 parent: 2 - - uid: 5879 + - uid: 5987 components: - type: Transform pos: 108.5,-58.5 parent: 2 - - uid: 5880 + - uid: 5988 components: - type: Transform pos: 105.5,-55.5 parent: 2 - - uid: 5881 + - uid: 5989 components: - type: Transform pos: 99.5,-45.5 parent: 2 - - uid: 5882 + - uid: 5990 components: - type: Transform pos: 109.5,-58.5 parent: 2 - - uid: 5883 + - uid: 5991 components: - type: Transform pos: 88.5,-45.5 parent: 2 - - uid: 5884 + - uid: 5992 components: - type: Transform pos: 97.5,-55.5 parent: 2 - - uid: 5885 + - uid: 5993 components: - type: Transform pos: 97.5,-52.5 parent: 2 - - uid: 5886 + - uid: 5994 components: - type: Transform pos: 89.5,-52.5 parent: 2 - - uid: 5887 + - uid: 5995 components: - type: Transform pos: 89.5,-49.5 parent: 2 - - uid: 5888 + - uid: 5996 components: - type: Transform pos: 98.5,-44.5 parent: 2 - - uid: 5889 + - uid: 5997 components: - type: Transform pos: 97.5,-51.5 parent: 2 - - uid: 5890 + - uid: 5998 components: - type: Transform pos: 100.5,-45.5 parent: 2 - - uid: 5891 + - uid: 5999 components: - type: Transform pos: 107.5,-56.5 parent: 2 - - uid: 5892 + - uid: 6000 components: - type: Transform pos: 105.5,-56.5 parent: 2 - - uid: 5893 + - uid: 6001 components: - type: Transform pos: 94.5,-53.5 parent: 2 - - uid: 5894 + - uid: 6002 components: - type: Transform pos: 93.5,-50.5 parent: 2 - - uid: 5895 + - uid: 6003 components: - type: Transform pos: 106.5,-44.5 parent: 2 - - uid: 5896 + - uid: 6004 components: - type: Transform pos: 111.5,-58.5 parent: 2 - - uid: 5897 + - uid: 6005 components: - type: Transform pos: 106.5,-58.5 parent: 2 - - uid: 5898 + - uid: 6006 components: - type: Transform pos: 98.5,-43.5 parent: 2 - - uid: 5899 + - uid: 6007 components: - type: Transform pos: 99.5,-51.5 parent: 2 - - uid: 5900 + - uid: 6008 components: - type: Transform pos: 86.5,-53.5 parent: 2 - - uid: 5901 + - uid: 6009 components: - type: Transform pos: 87.5,-48.5 parent: 2 - - uid: 5902 + - uid: 6010 components: - type: Transform pos: 90.5,-53.5 parent: 2 - - uid: 5903 + - uid: 6011 components: - type: Transform pos: 84.5,-53.5 parent: 2 - - uid: 5904 + - uid: 6012 components: - type: Transform pos: 105.5,-58.5 parent: 2 - - uid: 5905 + - uid: 6013 components: - type: Transform pos: 85.5,-53.5 parent: 2 - - uid: 5906 + - uid: 6014 components: - type: Transform pos: 95.5,-53.5 parent: 2 - - uid: 5907 + - uid: 6015 components: - type: Transform pos: 87.5,-52.5 parent: 2 - - uid: 5908 + - uid: 6016 components: - type: Transform pos: 84.5,-52.5 parent: 2 - - uid: 5909 + - uid: 6017 components: - type: Transform pos: 104.5,-55.5 parent: 2 - - uid: 5910 + - uid: 6018 components: - type: Transform pos: 94.5,-52.5 parent: 2 - - uid: 5911 + - uid: 6019 components: - type: Transform pos: 45.5,-64.5 parent: 2 - - uid: 5912 + - uid: 6020 components: - type: Transform pos: 43.5,-63.5 parent: 2 - - uid: 5913 + - uid: 6021 components: - type: Transform pos: 44.5,-64.5 parent: 2 - - uid: 5914 + - uid: 6022 components: - type: Transform pos: 43.5,-64.5 parent: 2 - - uid: 5917 + - uid: 6023 components: - type: Transform pos: 37.5,-16.5 parent: 2 - - uid: 5918 + - uid: 6024 components: - type: Transform pos: 31.5,9.5 parent: 2 - - uid: 5919 + - uid: 6025 components: - type: Transform pos: 33.5,-13.5 parent: 2 - - uid: 5920 + - uid: 6026 components: - type: Transform pos: 36.5,-11.5 parent: 2 - - uid: 5921 + - uid: 6027 components: - type: Transform pos: 36.5,-12.5 parent: 2 - - uid: 5922 + - uid: 6028 components: - type: Transform pos: 37.5,-13.5 parent: 2 - - uid: 5923 + - uid: 6029 components: - type: Transform pos: 38.5,-12.5 parent: 2 - - uid: 5925 + - uid: 6030 components: - type: Transform pos: 37.5,35.5 parent: 2 - - uid: 5926 + - uid: 6031 components: - type: Transform pos: 38.5,35.5 parent: 2 - - uid: 5927 + - uid: 6032 components: - type: Transform pos: -71.5,-101.5 parent: 2 - - uid: 5928 + - uid: 6033 components: - type: Transform pos: -72.5,-101.5 parent: 2 - - uid: 5929 + - uid: 6034 components: - type: Transform pos: -70.5,-101.5 parent: 2 - - uid: 5930 + - uid: 6035 components: - type: Transform pos: 50.5,-90.5 parent: 2 - - uid: 5931 + - uid: 6036 components: - type: Transform pos: -49.5,-72.5 parent: 2 - - uid: 5932 + - uid: 6037 components: - type: Transform pos: -8.5,19.5 parent: 2 - - uid: 5933 + - uid: 6038 components: - type: Transform pos: 50.5,-91.5 parent: 2 - - uid: 5934 + - uid: 6039 components: - type: Transform pos: -7.5,19.5 parent: 2 - - uid: 5935 + - uid: 6040 components: - type: Transform pos: -71.5,-73.5 parent: 2 - - uid: 5936 + - uid: 6041 components: - type: Transform pos: -61.5,-69.5 parent: 2 - - uid: 5937 + - uid: 6042 components: - type: Transform pos: -9.5,19.5 parent: 2 - - uid: 5938 + - uid: 6043 components: - type: Transform pos: 10.5,20.5 parent: 2 - - uid: 5939 + - uid: 6044 components: - type: Transform pos: 9.5,20.5 parent: 2 - - uid: 5940 + - uid: 6045 components: - type: Transform pos: 37.5,-12.5 parent: 2 - - uid: 5941 + - uid: 6046 components: - type: Transform pos: -69.5,-101.5 parent: 2 - - uid: 5942 + - uid: 6047 components: - type: Transform pos: -67.5,-101.5 parent: 2 - - uid: 5943 + - uid: 6048 components: - type: Transform pos: -66.5,-101.5 parent: 2 - - uid: 5944 + - uid: 6049 components: - type: Transform pos: -65.5,-101.5 parent: 2 - - uid: 5945 + - uid: 6050 components: - type: Transform pos: 71.5,-54.5 parent: 2 - - uid: 5946 + - uid: 6051 components: - type: Transform pos: 37.5,-14.5 parent: 2 - - uid: 5947 + - uid: 6052 components: - type: Transform pos: 28.5,13.5 parent: 2 - - uid: 5948 + - uid: 6053 components: - type: Transform pos: 32.5,-10.5 parent: 2 - - uid: 5949 + - uid: 6054 components: - type: Transform pos: 30.5,13.5 parent: 2 - - uid: 5950 + - uid: 6055 components: - type: Transform pos: 31.5,-10.5 parent: 2 - - uid: 5953 + - uid: 6056 components: - type: Transform pos: 47.5,-65.5 parent: 2 - - uid: 5954 + - uid: 6057 components: - type: Transform pos: 47.5,-61.5 parent: 2 - - uid: 5955 + - uid: 6058 components: - type: Transform pos: 47.5,-63.5 parent: 2 - - uid: 5956 + - uid: 6059 components: - type: Transform pos: 46.5,-64.5 parent: 2 - - uid: 5957 + - uid: 6060 components: - type: Transform pos: 44.5,-65.5 parent: 2 - - uid: 5958 + - uid: 6061 components: - type: Transform pos: 47.5,-62.5 parent: 2 - - uid: 5959 + - uid: 6062 components: - type: Transform pos: 47.5,-64.5 parent: 2 - - uid: 5969 + - uid: 6063 components: - type: Transform pos: 22.5,19.5 parent: 2 - - uid: 5970 + - uid: 6064 components: - type: Transform pos: 22.5,20.5 parent: 2 - - uid: 5971 + - uid: 6065 components: - type: Transform pos: 22.5,21.5 parent: 2 - - uid: 5987 + - uid: 6066 components: - type: Transform pos: -9.5,-80.5 parent: 2 - - uid: 5988 + - uid: 6067 components: - type: Transform pos: -10.5,-80.5 parent: 2 - - uid: 5989 + - uid: 6068 components: - type: Transform pos: -11.5,-80.5 parent: 2 - - uid: 5990 + - uid: 6069 components: - type: Transform pos: -11.5,-79.5 parent: 2 - - uid: 5991 + - uid: 6070 components: - type: Transform pos: -11.5,-74.5 parent: 2 - - uid: 5992 + - uid: 6071 components: - type: Transform pos: -11.5,-75.5 parent: 2 - - uid: 5993 + - uid: 6072 components: - type: Transform pos: -11.5,-76.5 parent: 2 - - uid: 5994 + - uid: 6073 components: - type: Transform pos: -12.5,-80.5 parent: 2 - - uid: 5995 + - uid: 6074 components: - type: Transform pos: -13.5,-80.5 parent: 2 - - uid: 5996 + - uid: 6075 components: - type: Transform pos: -14.5,-80.5 parent: 2 - - uid: 5997 + - uid: 6076 components: - type: Transform pos: -15.5,-80.5 parent: 2 - - uid: 5998 + - uid: 6077 components: - type: Transform pos: -15.5,-81.5 parent: 2 - - uid: 5999 + - uid: 6078 components: - type: Transform pos: -15.5,-82.5 parent: 2 - - uid: 6000 + - uid: 6079 components: - type: Transform pos: -15.5,-83.5 parent: 2 - - uid: 6001 + - uid: 6080 components: - type: Transform pos: -15.5,-84.5 parent: 2 - - uid: 6002 + - uid: 6081 components: - type: Transform pos: -15.5,-85.5 parent: 2 - - uid: 6003 + - uid: 6082 components: - type: Transform pos: -15.5,-86.5 parent: 2 - - uid: 6004 + - uid: 6083 components: - type: Transform pos: -15.5,-87.5 parent: 2 - - uid: 6005 + - uid: 6084 components: - type: Transform pos: -15.5,-88.5 parent: 2 - - uid: 6006 + - uid: 6085 components: - type: Transform pos: 36.5,34.5 parent: 2 - - uid: 6007 + - uid: 6086 components: - type: Transform pos: 24.5,24.5 parent: 2 - - uid: 6008 + - uid: 6087 components: - type: Transform pos: 24.5,23.5 parent: 2 - - uid: 6009 + - uid: 6088 components: - type: Transform pos: 29.5,13.5 parent: 2 - - uid: 6010 + - uid: 6089 components: - type: Transform pos: 43.5,-105.5 parent: 2 - - uid: 6011 + - uid: 6090 components: - type: Transform pos: 42.5,-105.5 parent: 2 - - uid: 6012 + - uid: 6091 components: - type: Transform pos: 41.5,-105.5 parent: 2 - - uid: 6013 + - uid: 6092 components: - type: Transform pos: 40.5,-105.5 parent: 2 - - uid: 6014 + - uid: 6093 components: - type: Transform pos: 39.5,-105.5 parent: 2 - - uid: 6015 + - uid: 6094 components: - type: Transform pos: 38.5,-105.5 parent: 2 - - uid: 6016 + - uid: 6095 components: - type: Transform pos: 37.5,-105.5 parent: 2 - - uid: 6017 + - uid: 6096 components: - type: Transform pos: 36.5,-105.5 parent: 2 - - uid: 6018 + - uid: 6097 components: - type: Transform pos: 35.5,-105.5 parent: 2 - - uid: 6019 + - uid: 6098 components: - type: Transform pos: 34.5,-105.5 parent: 2 - - uid: 6052 + - uid: 6099 components: - type: Transform pos: -64.5,-101.5 parent: 2 - - uid: 6053 + - uid: 6100 components: - type: Transform pos: -68.5,-102.5 parent: 2 - - uid: 6054 + - uid: 6101 components: - type: Transform pos: -68.5,-103.5 parent: 2 - - uid: 6055 + - uid: 6102 components: - type: Transform pos: -68.5,-100.5 parent: 2 - - uid: 6056 + - uid: 6103 components: - type: Transform pos: -68.5,-99.5 parent: 2 - - uid: 6057 + - uid: 6104 components: - type: Transform pos: -68.5,-98.5 parent: 2 - - uid: 6058 + - uid: 6105 components: - type: Transform pos: -21.5,-100.5 parent: 2 - - uid: 6059 + - uid: 6106 components: - type: Transform pos: -21.5,-101.5 parent: 2 - - uid: 6060 + - uid: 6107 components: - type: Transform pos: -19.5,-101.5 parent: 2 - - uid: 6061 + - uid: 6108 components: - type: Transform pos: -18.5,-99.5 parent: 2 - - uid: 6062 + - uid: 6109 components: - type: Transform pos: 83.5,-47.5 parent: 2 - - uid: 6063 + - uid: 6110 components: - type: Transform pos: 83.5,-48.5 parent: 2 - - uid: 6064 + - uid: 6111 components: - type: Transform pos: 82.5,-47.5 parent: 2 - - uid: 6065 + - uid: 6112 components: - type: Transform pos: 80.5,-47.5 parent: 2 - - uid: 6066 + - uid: 6113 components: - type: Transform pos: 81.5,-47.5 parent: 2 - - uid: 6067 + - uid: 6114 components: - type: Transform pos: -76.5,10.5 parent: 2 - - uid: 6068 + - uid: 6115 components: - type: Transform pos: -75.5,10.5 parent: 2 - - uid: 6069 + - uid: 6116 components: - type: Transform pos: -74.5,10.5 parent: 2 - - uid: 6070 + - uid: 6117 components: - type: Transform pos: -73.5,10.5 parent: 2 - - uid: 6071 + - uid: 6118 components: - type: Transform pos: -72.5,10.5 parent: 2 - - uid: 6072 + - uid: 6119 components: - type: Transform pos: -71.5,10.5 parent: 2 - - uid: 6073 + - uid: 6120 components: - type: Transform pos: -65.5,2.5 parent: 2 - - uid: 6074 + - uid: 6121 components: - type: Transform pos: -65.5,3.5 parent: 2 - - uid: 6075 + - uid: 6122 components: - type: Transform pos: -66.5,2.5 parent: 2 - - uid: 6076 + - uid: 6123 components: - type: Transform pos: -67.5,4.5 parent: 2 - - uid: 6077 + - uid: 6124 components: - type: Transform pos: -67.5,3.5 parent: 2 - - uid: 6078 + - uid: 6125 components: - type: Transform pos: -67.5,2.5 parent: 2 - - uid: 6079 + - uid: 6126 components: - type: Transform pos: -67.5,1.5 parent: 2 - - uid: 6080 + - uid: 6127 components: - type: Transform pos: -67.5,0.5 parent: 2 - - uid: 6081 + - uid: 6128 components: - type: Transform pos: -66.5,0.5 parent: 2 - - uid: 6082 + - uid: 6129 components: - type: Transform pos: -65.5,0.5 parent: 2 - - uid: 6083 + - uid: 6130 components: - type: Transform pos: -64.5,0.5 parent: 2 - - uid: 6084 + - uid: 6131 components: - type: Transform pos: -64.5,-0.5 parent: 2 - - uid: 6085 + - uid: 6132 components: - type: Transform pos: -64.5,-1.5 parent: 2 - - uid: 6086 + - uid: 6133 components: - type: Transform pos: -64.5,-2.5 parent: 2 - - uid: 6087 + - uid: 6134 components: - type: Transform pos: -64.5,-3.5 parent: 2 - - uid: 6088 + - uid: 6135 components: - type: Transform pos: -65.5,-3.5 parent: 2 - - uid: 6089 + - uid: 6136 components: - type: Transform pos: -66.5,-3.5 parent: 2 - - uid: 6090 + - uid: 6137 components: - type: Transform pos: -67.5,-3.5 parent: 2 - - uid: 6091 + - uid: 6138 components: - type: Transform pos: -63.5,-1.5 parent: 2 - - uid: 6092 + - uid: 6139 components: - type: Transform pos: -62.5,-1.5 parent: 2 - - uid: 6093 + - uid: 6140 components: - type: Transform pos: -61.5,-1.5 parent: 2 - - uid: 6094 + - uid: 6141 components: - type: Transform pos: -60.5,-1.5 parent: 2 - - uid: 6095 + - uid: 6142 components: - type: Transform pos: -60.5,-2.5 parent: 2 - - uid: 6096 + - uid: 6143 components: - type: Transform pos: -70.5,10.5 parent: 2 - - uid: 6097 + - uid: 6144 components: - type: Transform pos: -69.5,10.5 parent: 2 - - uid: 6098 + - uid: 6145 components: - type: Transform pos: -68.5,10.5 parent: 2 - - uid: 6099 + - uid: 6146 components: - type: Transform pos: -68.5,4.5 parent: 2 - - uid: 6100 + - uid: 6147 components: - type: Transform pos: -68.5,5.5 parent: 2 - - uid: 6101 + - uid: 6148 components: - type: Transform pos: -68.5,6.5 parent: 2 - - uid: 6102 + - uid: 6149 components: - type: Transform pos: -68.5,7.5 parent: 2 - - uid: 6103 + - uid: 6150 components: - type: Transform pos: -54.5,5.5 parent: 2 - - uid: 6104 + - uid: 6151 components: - type: Transform pos: -55.5,5.5 parent: 2 - - uid: 6105 + - uid: 6152 components: - type: Transform pos: -56.5,5.5 parent: 2 - - uid: 6106 + - uid: 6153 components: - type: Transform pos: -56.5,6.5 parent: 2 - - uid: 6107 + - uid: 6154 components: - type: Transform pos: -56.5,7.5 parent: 2 - - uid: 6108 + - uid: 6155 components: - type: Transform pos: -56.5,8.5 parent: 2 - - uid: 6109 + - uid: 6156 components: - type: Transform pos: -56.5,9.5 parent: 2 - - uid: 6110 + - uid: 6157 components: - type: Transform pos: -56.5,10.5 parent: 2 - - uid: 6111 + - uid: 6158 components: - type: Transform pos: -56.5,11.5 parent: 2 - - uid: 6112 + - uid: 6159 components: - type: Transform pos: -67.5,7.5 parent: 2 - - uid: 6113 + - uid: 6160 components: - type: Transform pos: -66.5,7.5 parent: 2 - - uid: 6114 + - uid: 6161 components: - type: Transform pos: -65.5,7.5 parent: 2 - - uid: 6115 + - uid: 6162 components: - type: Transform pos: -64.5,7.5 parent: 2 - - uid: 6116 + - uid: 6163 components: - type: Transform pos: -63.5,7.5 parent: 2 - - uid: 6117 + - uid: 6164 components: - type: Transform pos: -60.5,7.5 parent: 2 - - uid: 6118 + - uid: 6165 components: - type: Transform pos: -60.5,8.5 parent: 2 - - uid: 6119 + - uid: 6166 components: - type: Transform pos: -60.5,9.5 parent: 2 - - uid: 6120 + - uid: 6167 components: - type: Transform pos: -60.5,10.5 parent: 2 - - uid: 6121 + - uid: 6168 components: - type: Transform pos: -61.5,10.5 parent: 2 - - uid: 6122 + - uid: 6169 components: - type: Transform pos: -62.5,10.5 parent: 2 - - uid: 6123 + - uid: 6170 components: - type: Transform pos: -63.5,10.5 parent: 2 - - uid: 6124 + - uid: 6171 components: - type: Transform pos: -60.5,6.5 parent: 2 - - uid: 6125 + - uid: 6172 components: - type: Transform pos: -60.5,5.5 parent: 2 - - uid: 6126 + - uid: 6173 components: - type: Transform pos: -60.5,4.5 parent: 2 - - uid: 6127 + - uid: 6174 components: - type: Transform pos: -60.5,3.5 parent: 2 - - uid: 6128 + - uid: 6175 components: - type: Transform pos: -60.5,2.5 parent: 2 - - uid: 6129 + - uid: 6176 components: - type: Transform pos: -65.5,-14.5 parent: 2 - - uid: 6130 + - uid: 6177 components: - type: Transform pos: -33.5,-26.5 parent: 2 - - uid: 6131 + - uid: 6178 components: - type: Transform pos: -32.5,-26.5 parent: 2 - - uid: 6132 + - uid: 6179 components: - type: Transform pos: -32.5,-25.5 parent: 2 - - uid: 6133 + - uid: 6180 components: - type: Transform pos: -32.5,-24.5 parent: 2 - - uid: 6134 + - uid: 6181 components: - type: Transform pos: -31.5,-24.5 parent: 2 - - uid: 6135 + - uid: 6182 components: - type: Transform pos: -31.5,-23.5 parent: 2 - - uid: 6136 + - uid: 6183 components: - type: Transform pos: -31.5,-22.5 parent: 2 - - uid: 6137 + - uid: 6184 components: - type: Transform pos: -31.5,-21.5 parent: 2 - - uid: 6138 + - uid: 6185 components: - type: Transform pos: -31.5,-20.5 parent: 2 - - uid: 6139 + - uid: 6186 components: - type: Transform pos: -31.5,-19.5 parent: 2 - - uid: 6140 + - uid: 6187 components: - type: Transform pos: -39.5,-17.5 parent: 2 - - uid: 6141 + - uid: 6188 components: - type: Transform pos: -38.5,-17.5 parent: 2 - - uid: 6142 + - uid: 6189 components: - type: Transform pos: -37.5,-17.5 parent: 2 - - uid: 6143 + - uid: 6190 components: - type: Transform pos: -36.5,-17.5 parent: 2 - - uid: 6144 + - uid: 6191 components: - type: Transform pos: -35.5,-17.5 parent: 2 - - uid: 6145 + - uid: 6192 components: - type: Transform pos: -34.5,-17.5 parent: 2 - - uid: 6146 + - uid: 6193 components: - type: Transform pos: -33.5,-17.5 parent: 2 - - uid: 6147 + - uid: 6194 components: - type: Transform pos: -32.5,-17.5 parent: 2 - - uid: 6148 + - uid: 6195 components: - type: Transform pos: -32.5,-16.5 parent: 2 - - uid: 6149 + - uid: 6196 components: - type: Transform pos: -32.5,-15.5 parent: 2 - - uid: 6150 + - uid: 6197 components: - type: Transform pos: -52.5,-38.5 parent: 2 - - uid: 6151 + - uid: 6198 components: - type: Transform pos: -53.5,-38.5 parent: 2 - - uid: 6152 + - uid: 6199 components: - type: Transform pos: -54.5,-38.5 parent: 2 - - uid: 6153 + - uid: 6200 components: - type: Transform pos: -55.5,-38.5 parent: 2 - - uid: 6154 + - uid: 6201 components: - type: Transform pos: -56.5,-38.5 parent: 2 - - uid: 6155 + - uid: 6202 components: - type: Transform pos: -56.5,-37.5 parent: 2 - - uid: 6156 + - uid: 6203 components: - type: Transform pos: -56.5,-36.5 parent: 2 - - uid: 6157 + - uid: 6204 components: - type: Transform pos: -56.5,-35.5 parent: 2 - - uid: 6158 + - uid: 6205 components: - type: Transform pos: -56.5,-34.5 parent: 2 - - uid: 6159 + - uid: 6206 components: - type: Transform pos: -56.5,-33.5 parent: 2 - - uid: 6160 + - uid: 6207 components: - type: Transform pos: -56.5,-32.5 parent: 2 - - uid: 6162 + - uid: 6208 components: - type: Transform pos: -55.5,-32.5 parent: 2 - - uid: 6233 + - uid: 6209 components: - type: Transform pos: -49.5,-75.5 parent: 2 - - uid: 6234 + - uid: 6210 components: - type: Transform pos: -49.5,-74.5 parent: 2 - - uid: 6235 + - uid: 6211 components: - type: Transform pos: -49.5,-73.5 parent: 2 - - uid: 6236 + - uid: 6212 components: - type: Transform pos: -53.5,-68.5 parent: 2 - - uid: 6237 + - uid: 6213 components: - type: Transform pos: -52.5,-68.5 parent: 2 - - uid: 6238 + - uid: 6214 components: - type: Transform pos: -51.5,-68.5 parent: 2 - - uid: 6239 + - uid: 6215 components: - type: Transform pos: -59.5,-73.5 parent: 2 - - uid: 6240 + - uid: 6216 components: - type: Transform pos: -58.5,-72.5 parent: 2 - - uid: 6241 + - uid: 6217 components: - type: Transform pos: -58.5,-73.5 parent: 2 - - uid: 6242 + - uid: 6218 components: - type: Transform pos: -58.5,-74.5 parent: 2 - - uid: 6243 + - uid: 6219 components: - type: Transform pos: -58.5,-75.5 parent: 2 - - uid: 6244 + - uid: 6220 components: - type: Transform pos: -58.5,-76.5 parent: 2 - - uid: 6245 + - uid: 6221 components: - type: Transform pos: -58.5,-77.5 parent: 2 - - uid: 6246 + - uid: 6222 components: - type: Transform pos: -68.5,-97.5 parent: 2 - - uid: 6247 + - uid: 6223 components: - type: Transform pos: -68.5,-96.5 parent: 2 - - uid: 6248 + - uid: 6224 components: - type: Transform pos: -68.5,-95.5 parent: 2 - - uid: 6249 + - uid: 6225 components: - type: Transform pos: -68.5,-94.5 parent: 2 - - uid: 6250 + - uid: 6226 components: - type: Transform pos: -68.5,-93.5 parent: 2 - - uid: 6251 + - uid: 6227 components: - type: Transform pos: -68.5,-92.5 parent: 2 - - uid: 6252 + - uid: 6228 components: - type: Transform pos: -68.5,-91.5 parent: 2 - - uid: 6253 + - uid: 6229 components: - type: Transform pos: -68.5,-90.5 parent: 2 - - uid: 6254 + - uid: 6230 components: - type: Transform pos: -68.5,-89.5 parent: 2 - - uid: 6255 + - uid: 6231 components: - type: Transform pos: -68.5,-88.5 parent: 2 - - uid: 6256 + - uid: 6232 components: - type: Transform pos: -68.5,-87.5 parent: 2 - - uid: 6257 + - uid: 6233 components: - type: Transform pos: -68.5,-86.5 parent: 2 - - uid: 6258 + - uid: 6234 components: - type: Transform pos: -67.5,-86.5 parent: 2 - - uid: 6259 + - uid: 6235 components: - type: Transform pos: -66.5,-86.5 parent: 2 - - uid: 6260 + - uid: 6236 components: - type: Transform pos: -65.5,-86.5 parent: 2 - - uid: 6261 + - uid: 6237 components: - type: Transform pos: -64.5,-86.5 parent: 2 - - uid: 6262 + - uid: 6238 components: - type: Transform pos: -63.5,-86.5 parent: 2 - - uid: 6263 + - uid: 6239 components: - type: Transform pos: -62.5,-86.5 parent: 2 - - uid: 6264 + - uid: 6240 components: - type: Transform pos: -61.5,-86.5 parent: 2 - - uid: 6265 + - uid: 6241 components: - type: Transform pos: -67.5,-89.5 parent: 2 - - uid: 6266 + - uid: 6242 components: - type: Transform pos: -66.5,-89.5 parent: 2 - - uid: 6267 + - uid: 6243 components: - type: Transform pos: -65.5,-89.5 parent: 2 - - uid: 6268 + - uid: 6244 components: - type: Transform pos: -64.5,-89.5 parent: 2 - - uid: 6269 + - uid: 6245 components: - type: Transform pos: -69.5,-89.5 parent: 2 - - uid: 6270 + - uid: 6246 components: - type: Transform pos: -70.5,-89.5 parent: 2 - - uid: 6271 + - uid: 6247 components: - type: Transform pos: -71.5,-89.5 parent: 2 - - uid: 6272 + - uid: 6248 components: - type: Transform pos: -72.5,-89.5 parent: 2 - - uid: 6273 + - uid: 6249 components: - type: Transform pos: -73.5,-93.5 parent: 2 - - uid: 6274 + - uid: 6250 components: - type: Transform pos: -72.5,-93.5 parent: 2 - - uid: 6275 + - uid: 6251 components: - type: Transform pos: -71.5,-93.5 parent: 2 - - uid: 6276 + - uid: 6252 components: - type: Transform pos: -70.5,-93.5 parent: 2 - - uid: 6277 + - uid: 6253 components: - type: Transform pos: -69.5,-93.5 parent: 2 - - uid: 6278 + - uid: 6254 components: - type: Transform pos: -67.5,-93.5 parent: 2 - - uid: 6279 + - uid: 6255 components: - type: Transform pos: -66.5,-93.5 parent: 2 - - uid: 6280 + - uid: 6256 components: - type: Transform pos: -65.5,-93.5 parent: 2 - - uid: 6281 + - uid: 6257 components: - type: Transform pos: -64.5,-93.5 parent: 2 - - uid: 6282 + - uid: 6258 components: - type: Transform pos: -63.5,-93.5 parent: 2 - - uid: 6283 + - uid: 6259 components: - type: Transform pos: -67.5,-97.5 parent: 2 - - uid: 6284 + - uid: 6260 components: - type: Transform pos: -66.5,-97.5 parent: 2 - - uid: 6285 + - uid: 6261 components: - type: Transform pos: -65.5,-97.5 parent: 2 - - uid: 6286 + - uid: 6262 components: - type: Transform pos: -64.5,-97.5 parent: 2 - - uid: 6287 + - uid: 6263 components: - type: Transform pos: -63.5,-97.5 parent: 2 - - uid: 6288 + - uid: 6264 components: - type: Transform pos: -62.5,-97.5 parent: 2 - - uid: 6289 + - uid: 6265 components: - type: Transform pos: -70.5,-97.5 parent: 2 - - uid: 6290 + - uid: 6266 components: - type: Transform pos: -71.5,-97.5 parent: 2 - - uid: 6291 + - uid: 6267 components: - type: Transform pos: -72.5,-97.5 parent: 2 - - uid: 6292 + - uid: 6268 components: - type: Transform pos: -73.5,-97.5 parent: 2 - - uid: 6293 + - uid: 6269 components: - type: Transform pos: -74.5,-97.5 parent: 2 - - uid: 6294 + - uid: 6270 components: - type: Transform pos: -82.5,29.5 parent: 2 - - uid: 6295 + - uid: 6271 components: - type: Transform pos: -79.5,23.5 parent: 2 - - uid: 6296 + - uid: 6272 components: - type: Transform pos: -79.5,24.5 parent: 2 - - uid: 6297 + - uid: 6273 components: - type: Transform pos: -79.5,22.5 parent: 2 - - uid: 6298 + - uid: 6274 components: - type: Transform pos: -79.5,21.5 parent: 2 - - uid: 6299 + - uid: 6275 components: - type: Transform pos: -80.5,20.5 parent: 2 - - uid: 6301 + - uid: 6276 components: - type: Transform pos: -1.5,-72.5 parent: 2 - - uid: 6302 + - uid: 6277 components: - type: Transform pos: -0.5,-72.5 parent: 2 - - uid: 6303 + - uid: 6278 components: - type: Transform pos: 0.5,-72.5 parent: 2 - - uid: 6304 + - uid: 6279 components: - type: Transform pos: 0.5,-71.5 parent: 2 - - uid: 6305 + - uid: 6280 components: - type: Transform pos: 0.5,-70.5 parent: 2 - - uid: 6306 + - uid: 6281 components: - type: Transform pos: 0.5,-69.5 parent: 2 - - uid: 6307 + - uid: 6282 components: - type: Transform pos: 0.5,-68.5 parent: 2 - - uid: 6324 + - uid: 6283 components: - type: Transform pos: 12.5,-94.5 parent: 2 - - uid: 6325 + - uid: 6284 components: - type: Transform pos: -49.5,-91.5 parent: 2 - - uid: 6326 + - uid: 6285 components: - type: Transform pos: -49.5,-90.5 parent: 2 - - uid: 6327 + - uid: 6286 components: - type: Transform pos: -49.5,-89.5 parent: 2 - - uid: 6328 + - uid: 6287 components: - type: Transform pos: -49.5,-88.5 parent: 2 - - uid: 6329 + - uid: 6288 components: - type: Transform pos: -48.5,-88.5 parent: 2 - - uid: 6330 + - uid: 6289 components: - type: Transform pos: 68.5,-47.5 parent: 2 - - uid: 6331 + - uid: 6290 components: - type: Transform pos: 69.5,-48.5 parent: 2 - - uid: 6332 + - uid: 6291 components: - type: Transform pos: 69.5,-49.5 parent: 2 - - uid: 6333 + - uid: 6292 components: - type: Transform pos: 68.5,-49.5 parent: 2 - - uid: 6334 + - uid: 6293 components: - type: Transform pos: 67.5,-49.5 parent: 2 - - uid: 6335 + - uid: 6294 components: - type: Transform pos: 84.5,-48.5 parent: 2 - - uid: 6336 + - uid: 6295 components: - type: Transform pos: 85.5,-48.5 parent: 2 - - uid: 6337 + - uid: 6296 components: - type: Transform pos: 86.5,-48.5 parent: 2 - - uid: 6338 + - uid: 6297 components: - type: Transform pos: 82.5,-45.5 parent: 2 - - uid: 6339 + - uid: 6298 components: - type: Transform pos: 81.5,-45.5 parent: 2 - - uid: 6340 + - uid: 6299 components: - type: Transform pos: 81.5,-44.5 parent: 2 - - uid: 6341 + - uid: 6300 components: - type: Transform pos: 75.5,-46.5 parent: 2 - - uid: 6342 + - uid: 6301 components: - type: Transform pos: 76.5,-46.5 parent: 2 - - uid: 6343 + - uid: 6302 components: - type: Transform pos: 77.5,-46.5 parent: 2 - - uid: 6344 + - uid: 6303 components: - type: Transform pos: 78.5,-46.5 parent: 2 - - uid: 6345 + - uid: 6304 components: - type: Transform pos: 79.5,-46.5 parent: 2 - - uid: 6346 + - uid: 6305 components: - type: Transform pos: 79.5,-45.5 parent: 2 - - uid: 6347 + - uid: 6306 components: - type: Transform pos: -54.5,-32.5 parent: 2 - - uid: 6348 + - uid: 6307 components: - type: Transform pos: -55.5,-96.5 parent: 2 - - uid: 6349 + - uid: 6308 components: - type: Transform pos: -55.5,-97.5 parent: 2 - - uid: 6350 + - uid: 6309 components: - type: Transform pos: -55.5,-99.5 parent: 2 - - uid: 6351 + - uid: 6310 components: - type: Transform pos: -55.5,-101.5 parent: 2 - - uid: 6352 + - uid: 6311 components: - type: Transform pos: -55.5,-98.5 parent: 2 - - uid: 6353 + - uid: 6312 components: - type: Transform pos: -55.5,-100.5 parent: 2 - - uid: 6354 + - uid: 6313 components: - type: Transform pos: -34.5,-105.5 parent: 2 - - uid: 6355 + - uid: 6314 components: - type: Transform pos: -20.5,-97.5 parent: 2 - - uid: 6356 + - uid: 6315 components: - type: Transform pos: -21.5,-97.5 parent: 2 - - uid: 6357 + - uid: 6316 components: - type: Transform pos: -19.5,-97.5 parent: 2 - - uid: 6358 + - uid: 6317 components: - type: Transform pos: -46.5,-106.5 parent: 2 - - uid: 6359 + - uid: 6318 components: - type: Transform pos: -50.5,-107.5 parent: 2 - - uid: 6360 + - uid: 6319 components: - type: Transform pos: -17.5,-97.5 parent: 2 - - uid: 6361 + - uid: 6320 components: - type: Transform pos: -16.5,-97.5 parent: 2 - - uid: 6362 + - uid: 6321 components: - type: Transform pos: -18.5,-97.5 parent: 2 - - uid: 6363 + - uid: 6322 components: - type: Transform pos: -18.5,-101.5 parent: 2 - - uid: 6364 + - uid: 6323 components: - type: Transform pos: -19.5,-103.5 parent: 2 - - uid: 6365 + - uid: 6324 components: - type: Transform pos: -19.5,-102.5 parent: 2 - - uid: 6366 + - uid: 6325 components: - type: Transform pos: -20.5,-102.5 parent: 2 - - uid: 6367 + - uid: 6326 components: - type: Transform pos: -21.5,-102.5 parent: 2 - - uid: 6368 + - uid: 6327 components: - type: Transform pos: -22.5,-102.5 parent: 2 - - uid: 6369 + - uid: 6328 components: - type: Transform pos: -23.5,-102.5 parent: 2 - - uid: 6370 + - uid: 6329 components: - type: Transform pos: -24.5,-102.5 parent: 2 - - uid: 6371 + - uid: 6330 components: - type: Transform pos: -25.5,-102.5 parent: 2 - - uid: 6372 + - uid: 6331 components: - type: Transform pos: -26.5,-102.5 parent: 2 - - uid: 6373 + - uid: 6332 components: - type: Transform pos: -26.5,-103.5 parent: 2 - - uid: 6374 + - uid: 6333 components: - type: Transform pos: -26.5,-101.5 parent: 2 - - uid: 6375 + - uid: 6334 components: - type: Transform pos: -26.5,-100.5 parent: 2 - - uid: 6376 + - uid: 6335 components: - type: Transform pos: -40.5,-110.5 parent: 2 - - uid: 6377 + - uid: 6336 components: - type: Transform pos: -40.5,-109.5 parent: 2 - - uid: 6378 + - uid: 6337 components: - type: Transform pos: -39.5,-109.5 parent: 2 - - uid: 6379 + - uid: 6338 components: - type: Transform pos: -38.5,-109.5 parent: 2 - - uid: 6380 + - uid: 6339 components: - type: Transform pos: -37.5,-109.5 parent: 2 - - uid: 6381 + - uid: 6340 components: - type: Transform pos: -36.5,-109.5 parent: 2 - - uid: 6382 + - uid: 6341 components: - type: Transform pos: -35.5,-109.5 parent: 2 - - uid: 6383 + - uid: 6342 components: - type: Transform pos: -34.5,-109.5 parent: 2 - - uid: 6384 + - uid: 6343 components: - type: Transform pos: -33.5,-109.5 parent: 2 - - uid: 6385 + - uid: 6344 components: - type: Transform pos: -32.5,-109.5 parent: 2 - - uid: 6386 + - uid: 6345 components: - type: Transform pos: -31.5,-109.5 parent: 2 - - uid: 6387 + - uid: 6346 components: - type: Transform pos: -30.5,-109.5 parent: 2 - - uid: 6388 + - uid: 6347 components: - type: Transform pos: -30.5,-110.5 parent: 2 - - uid: 6389 + - uid: 6348 components: - type: Transform pos: -29.5,-110.5 parent: 2 - - uid: 6390 + - uid: 6349 components: - type: Transform pos: -28.5,-110.5 parent: 2 - - uid: 6391 + - uid: 6350 components: - type: Transform pos: -27.5,-110.5 parent: 2 - - uid: 6392 + - uid: 6351 components: - type: Transform pos: -26.5,-110.5 parent: 2 - - uid: 6393 + - uid: 6352 components: - type: Transform pos: -26.5,-109.5 parent: 2 - - uid: 6394 + - uid: 6353 components: - type: Transform pos: -26.5,-108.5 parent: 2 - - uid: 6395 + - uid: 6354 components: - type: Transform pos: -26.5,-107.5 parent: 2 - - uid: 6396 + - uid: 6355 components: - type: Transform pos: -26.5,-106.5 parent: 2 - - uid: 6397 + - uid: 6356 components: - type: Transform pos: -38.5,-108.5 parent: 2 - - uid: 6398 + - uid: 6357 components: - type: Transform pos: -38.5,-107.5 parent: 2 - - uid: 6399 + - uid: 6358 components: - type: Transform pos: -38.5,-106.5 parent: 2 - - uid: 6400 + - uid: 6359 components: - type: Transform pos: -38.5,-105.5 parent: 2 - - uid: 6401 + - uid: 6360 components: - type: Transform pos: -39.5,-105.5 parent: 2 - - uid: 6402 + - uid: 6361 components: - type: Transform pos: -40.5,-105.5 parent: 2 - - uid: 6403 + - uid: 6362 components: - type: Transform pos: -41.5,-105.5 parent: 2 - - uid: 6404 + - uid: 6363 components: - type: Transform pos: -42.5,-105.5 parent: 2 - - uid: 6405 + - uid: 6364 components: - type: Transform pos: -46.5,-107.5 parent: 2 - - uid: 6406 + - uid: 6365 components: - type: Transform pos: -46.5,-105.5 parent: 2 - - uid: 6407 + - uid: 6366 components: - type: Transform pos: -47.5,-105.5 parent: 2 - - uid: 6408 + - uid: 6367 components: - type: Transform pos: -48.5,-105.5 parent: 2 - - uid: 6409 + - uid: 6368 components: - type: Transform pos: -49.5,-105.5 parent: 2 - - uid: 6410 + - uid: 6369 components: - type: Transform pos: -49.5,-106.5 parent: 2 - - uid: 6411 + - uid: 6370 components: - type: Transform pos: -50.5,-106.5 parent: 2 - - uid: 6412 + - uid: 6371 components: - type: Transform pos: -51.5,-106.5 parent: 2 - - uid: 6413 + - uid: 6372 components: - type: Transform pos: -52.5,-106.5 parent: 2 - - uid: 6414 + - uid: 6373 components: - type: Transform pos: -53.5,-106.5 parent: 2 - - uid: 6415 + - uid: 6374 components: - type: Transform pos: -54.5,-106.5 parent: 2 - - uid: 6416 + - uid: 6375 components: - type: Transform pos: -55.5,-106.5 parent: 2 - - uid: 6417 + - uid: 6376 components: - type: Transform pos: -55.5,-105.5 parent: 2 - - uid: 6418 + - uid: 6377 components: - type: Transform pos: -55.5,-104.5 parent: 2 - - uid: 6419 + - uid: 6378 components: - type: Transform pos: -34.5,-106.5 parent: 2 - - uid: 6420 + - uid: 6379 components: - type: Transform pos: -33.5,-106.5 parent: 2 - - uid: 6421 + - uid: 6380 components: - type: Transform pos: -32.5,-106.5 parent: 2 - - uid: 6422 + - uid: 6381 components: - type: Transform pos: -31.5,-106.5 parent: 2 - - uid: 6423 + - uid: 6382 components: - type: Transform pos: -30.5,-106.5 parent: 2 - - uid: 6424 + - uid: 6383 components: - type: Transform pos: -30.5,-105.5 parent: 2 - - uid: 6425 + - uid: 6384 components: - type: Transform pos: -30.5,-104.5 parent: 2 - - uid: 6426 + - uid: 6385 components: - type: Transform pos: -31.5,-104.5 parent: 2 - - uid: 6427 + - uid: 6386 components: - type: Transform pos: -30.5,-103.5 parent: 2 - - uid: 6428 + - uid: 6387 components: - type: Transform pos: -30.5,-102.5 parent: 2 - - uid: 6429 + - uid: 6388 components: - type: Transform pos: -31.5,-102.5 parent: 2 - - uid: 6430 + - uid: 6389 components: - type: Transform pos: -32.5,-102.5 parent: 2 - - uid: 6431 + - uid: 6390 components: - type: Transform pos: -33.5,-102.5 parent: 2 - - uid: 6432 + - uid: 6391 components: - type: Transform pos: -34.5,-102.5 parent: 2 - - uid: 6433 + - uid: 6392 components: - type: Transform pos: -34.5,-103.5 parent: 2 - - uid: 6434 + - uid: 6393 components: - type: Transform pos: -34.5,-101.5 parent: 2 - - uid: 6435 + - uid: 6394 components: - type: Transform pos: -32.5,-104.5 parent: 2 - - uid: 6436 + - uid: 6395 components: - type: Transform pos: -30.5,-107.5 parent: 2 - - uid: 6437 + - uid: 6396 components: - type: Transform pos: -29.5,-104.5 parent: 2 - - uid: 6438 + - uid: 6397 components: - type: Transform pos: -53.5,-32.5 parent: 2 - - uid: 6439 + - uid: 6398 components: - type: Transform pos: -46.5,-108.5 parent: 2 - - uid: 6440 + - uid: 6399 components: - type: Transform pos: -46.5,-109.5 parent: 2 - - uid: 6441 + - uid: 6400 components: - type: Transform pos: -46.5,-110.5 parent: 2 - - uid: 6442 + - uid: 6401 components: - type: Transform pos: -45.5,-110.5 parent: 2 - - uid: 6443 + - uid: 6402 components: - type: Transform pos: -45.5,-105.5 parent: 2 - - uid: 6444 + - uid: 6403 components: - type: Transform pos: -50.5,-108.5 parent: 2 - - uid: 6445 + - uid: 6404 components: - type: Transform pos: -50.5,-109.5 parent: 2 - - uid: 6446 + - uid: 6405 components: - type: Transform pos: -49.5,-109.5 parent: 2 - - uid: 6447 + - uid: 6406 components: - type: Transform pos: -48.5,-109.5 parent: 2 - - uid: 6448 + - uid: 6407 components: - type: Transform pos: -49.5,-110.5 parent: 2 - - uid: 6449 + - uid: 6408 components: - type: Transform pos: -49.5,-111.5 parent: 2 - - uid: 6450 + - uid: 6409 components: - type: Transform pos: -49.5,-112.5 parent: 2 - - uid: 6451 + - uid: 6410 components: - type: Transform pos: -50.5,-112.5 parent: 2 - - uid: 6452 + - uid: 6411 components: - type: Transform pos: -51.5,-112.5 parent: 2 - - uid: 6453 + - uid: 6412 components: - type: Transform pos: -50.5,-113.5 parent: 2 - - uid: 6454 + - uid: 6413 components: - type: Transform pos: -50.5,-116.5 parent: 2 - - uid: 6455 + - uid: 6414 components: - type: Transform pos: -50.5,-115.5 parent: 2 - - uid: 6456 + - uid: 6415 components: - type: Transform pos: -49.5,-115.5 parent: 2 - - uid: 6457 + - uid: 6416 components: - type: Transform pos: -48.5,-115.5 parent: 2 - - uid: 6458 + - uid: 6417 components: - type: Transform pos: -47.5,-115.5 parent: 2 - - uid: 6459 + - uid: 6418 components: - type: Transform pos: -46.5,-115.5 parent: 2 - - uid: 6460 + - uid: 6419 components: - type: Transform pos: -45.5,-115.5 parent: 2 - - uid: 6461 + - uid: 6420 components: - type: Transform pos: -45.5,-116.5 parent: 2 - - uid: 6462 + - uid: 6421 components: - type: Transform pos: -45.5,-117.5 parent: 2 - - uid: 6463 + - uid: 6422 components: - type: Transform pos: -44.5,-115.5 parent: 2 - - uid: 6464 + - uid: 6423 components: - type: Transform pos: -44.5,-114.5 parent: 2 - - uid: 6465 + - uid: 6424 components: - type: Transform pos: -44.5,-113.5 parent: 2 - - uid: 6466 + - uid: 6425 components: - type: Transform pos: -45.5,-113.5 parent: 2 - - uid: 6467 + - uid: 6426 components: - type: Transform pos: -45.5,-119.5 parent: 2 - - uid: 6468 + - uid: 6427 components: - type: Transform pos: -45.5,-118.5 parent: 2 - - uid: 6469 + - uid: 6428 components: - type: Transform pos: -46.5,-117.5 parent: 2 - - uid: 6470 + - uid: 6429 components: - type: Transform pos: -47.5,-117.5 parent: 2 - - uid: 6471 + - uid: 6430 components: - type: Transform pos: -55.5,-107.5 parent: 2 - - uid: 6472 + - uid: 6431 components: - type: Transform pos: -44.5,-119.5 parent: 2 - - uid: 6473 + - uid: 6432 components: - type: Transform pos: -46.5,-119.5 parent: 2 - - uid: 6474 + - uid: 6433 components: - type: Transform pos: -47.5,-119.5 parent: 2 - - uid: 6475 + - uid: 6434 components: - type: Transform pos: -48.5,-119.5 parent: 2 - - uid: 6476 + - uid: 6435 components: - type: Transform pos: -48.5,-118.5 parent: 2 - - uid: 6477 + - uid: 6436 components: - type: Transform pos: -49.5,-118.5 parent: 2 - - uid: 6478 + - uid: 6437 components: - type: Transform pos: -50.5,-118.5 parent: 2 - - uid: 6479 + - uid: 6438 components: - type: Transform pos: -51.5,-118.5 parent: 2 - - uid: 6480 + - uid: 6439 components: - type: Transform pos: -52.5,-118.5 parent: 2 - - uid: 6481 + - uid: 6440 components: - type: Transform pos: -52.5,-119.5 parent: 2 - - uid: 6482 + - uid: 6441 components: - type: Transform pos: -53.5,-119.5 parent: 2 - - uid: 6483 + - uid: 6442 components: - type: Transform pos: -54.5,-119.5 parent: 2 - - uid: 6484 + - uid: 6443 components: - type: Transform pos: -55.5,-119.5 parent: 2 - - uid: 6485 + - uid: 6444 components: - type: Transform pos: -55.5,-118.5 parent: 2 - - uid: 6486 + - uid: 6445 components: - type: Transform pos: -37.5,-119.5 parent: 2 - - uid: 6487 + - uid: 6446 components: - type: Transform pos: -71.5,0.5 parent: 2 - - uid: 6488 + - uid: 6447 components: - type: Transform pos: -70.5,0.5 parent: 2 - - uid: 6489 + - uid: 6448 components: - type: Transform pos: -70.5,-0.5 parent: 2 - - uid: 6490 + - uid: 6449 components: - type: Transform pos: -70.5,-1.5 parent: 2 - - uid: 6491 + - uid: 6450 components: - type: Transform pos: -71.5,-1.5 parent: 2 - - uid: 6492 + - uid: 6451 components: - type: Transform pos: -72.5,-1.5 parent: 2 - - uid: 6493 + - uid: 6452 components: - type: Transform pos: -72.5,-2.5 parent: 2 - - uid: 6494 + - uid: 6453 components: - type: Transform pos: -72.5,2.5 parent: 2 - - uid: 6495 + - uid: 6454 components: - type: Transform pos: -46.5,-36.5 parent: 2 - - uid: 6496 + - uid: 6455 components: - type: Transform pos: -69.5,3.5 parent: 2 - - uid: 6497 + - uid: 6456 components: - type: Transform pos: -70.5,3.5 parent: 2 - - uid: 6498 + - uid: 6457 components: - type: Transform pos: -71.5,2.5 parent: 2 - - uid: 6499 + - uid: 6458 components: - type: Transform pos: -71.5,3.5 parent: 2 - - uid: 6500 + - uid: 6459 components: - type: Transform pos: -71.5,1.5 parent: 2 - - uid: 6501 + - uid: 6460 components: - type: Transform pos: -74.5,4.5 parent: 2 - - uid: 6502 + - uid: 6461 components: - type: Transform pos: -73.5,4.5 parent: 2 - - uid: 6503 + - uid: 6462 components: - type: Transform pos: -82.5,27.5 parent: 2 - - uid: 6504 + - uid: 6463 components: - type: Transform pos: -85.5,21.5 parent: 2 - - uid: 6505 + - uid: 6464 components: - type: Transform pos: -85.5,22.5 parent: 2 - - uid: 6506 + - uid: 6465 components: - type: Transform pos: -85.5,23.5 parent: 2 - - uid: 6507 + - uid: 6466 components: - type: Transform pos: -85.5,24.5 parent: 2 - - uid: 6508 + - uid: 6467 components: - type: Transform pos: -82.5,24.5 parent: 2 - - uid: 6509 + - uid: 6468 components: - type: Transform pos: -82.5,25.5 parent: 2 - - uid: 6510 + - uid: 6469 components: - type: Transform pos: -83.5,20.5 parent: 2 - - uid: 6511 + - uid: 6470 components: - type: Transform pos: -84.5,20.5 parent: 2 - - uid: 6512 + - uid: 6471 components: - type: Transform pos: -85.5,20.5 parent: 2 - - uid: 6513 + - uid: 6472 components: - type: Transform pos: -81.5,20.5 parent: 2 - - uid: 6514 + - uid: 6473 components: - type: Transform pos: -79.5,20.5 parent: 2 - - uid: 6515 + - uid: 6474 components: - type: Transform pos: -82.5,23.5 parent: 2 - - uid: 6516 + - uid: 6475 components: - type: Transform pos: -79.5,-11.5 parent: 2 - - uid: 6517 + - uid: 6476 components: - type: Transform pos: -79.5,-9.5 parent: 2 - - uid: 6518 + - uid: 6477 components: - type: Transform pos: -83.5,-2.5 parent: 2 - - uid: 6519 + - uid: 6478 components: - type: Transform pos: -83.5,-1.5 parent: 2 - - uid: 6520 + - uid: 6479 components: - type: Transform pos: -83.5,-0.5 parent: 2 - - uid: 6521 + - uid: 6480 components: - type: Transform pos: -82.5,-0.5 parent: 2 - - uid: 6522 + - uid: 6481 components: - type: Transform pos: -82.5,0.5 parent: 2 - - uid: 6523 + - uid: 6482 components: - type: Transform pos: -82.5,1.5 parent: 2 - - uid: 6524 + - uid: 6483 components: - type: Transform pos: -81.5,1.5 parent: 2 - - uid: 6525 + - uid: 6484 components: - type: Transform pos: -82.5,2.5 parent: 2 - - uid: 6526 + - uid: 6485 components: - type: Transform pos: -82.5,3.5 parent: 2 - - uid: 6527 + - uid: 6486 components: - type: Transform pos: -82.5,4.5 parent: 2 - - uid: 6528 + - uid: 6487 components: - type: Transform pos: -83.5,3.5 parent: 2 - - uid: 6529 + - uid: 6488 components: - type: Transform pos: -84.5,3.5 parent: 2 - - uid: 6530 + - uid: 6489 components: - type: Transform pos: -85.5,-0.5 parent: 2 - - uid: 6531 + - uid: 6490 components: - type: Transform pos: -84.5,-0.5 parent: 2 - - uid: 6532 + - uid: 6491 components: - type: Transform pos: -85.5,3.5 parent: 2 - - uid: 6533 + - uid: 6492 components: - type: Transform pos: -86.5,3.5 parent: 2 - - uid: 6534 + - uid: 6493 components: - type: Transform pos: -86.5,-0.5 parent: 2 - - uid: 6535 + - uid: 6494 components: - type: Transform pos: -85.5,0.5 parent: 2 - - uid: 6536 + - uid: 6495 components: - type: Transform pos: -85.5,1.5 parent: 2 - - uid: 6537 + - uid: 6496 components: - type: Transform pos: -86.5,1.5 parent: 2 - - uid: 6538 + - uid: 6497 components: - type: Transform pos: -87.5,1.5 parent: 2 - - uid: 6539 + - uid: 6498 components: - type: Transform pos: -88.5,1.5 parent: 2 - - uid: 6540 + - uid: 6499 components: - type: Transform pos: -89.5,1.5 parent: 2 - - uid: 6541 + - uid: 6500 components: - type: Transform pos: -90.5,1.5 parent: 2 - - uid: 6542 + - uid: 6501 components: - type: Transform pos: -91.5,1.5 parent: 2 - - uid: 6543 + - uid: 6502 components: - type: Transform pos: -92.5,1.5 parent: 2 - - uid: 6544 + - uid: 6503 components: - type: Transform pos: -93.5,1.5 parent: 2 - - uid: 6545 + - uid: 6504 components: - type: Transform pos: -90.5,2.5 parent: 2 - - uid: 6546 + - uid: 6505 components: - type: Transform pos: -94.5,1.5 parent: 2 - - uid: 6547 + - uid: 6506 components: - type: Transform pos: -95.5,1.5 parent: 2 - - uid: 6548 + - uid: 6507 components: - type: Transform pos: -96.5,1.5 parent: 2 - - uid: 6549 + - uid: 6508 components: - type: Transform pos: -94.5,2.5 parent: 2 - - uid: 6550 + - uid: 6509 components: - type: Transform pos: -91.5,0.5 parent: 2 - - uid: 6551 + - uid: 6510 components: - type: Transform pos: -77.5,10.5 parent: 2 - - uid: 6552 + - uid: 6511 components: - type: Transform pos: -83.5,-3.5 parent: 2 - - uid: 6553 + - uid: 6512 components: - type: Transform pos: -83.5,-4.5 parent: 2 - - uid: 6554 + - uid: 6513 components: - type: Transform pos: -82.5,-4.5 parent: 2 - - uid: 6555 + - uid: 6514 components: - type: Transform pos: -84.5,-4.5 parent: 2 - - uid: 6556 + - uid: 6515 components: - type: Transform pos: -85.5,-4.5 parent: 2 - - uid: 6557 + - uid: 6516 components: - type: Transform pos: -86.5,-4.5 parent: 2 - - uid: 6558 + - uid: 6517 components: - type: Transform pos: -87.5,-4.5 parent: 2 - - uid: 6559 + - uid: 6518 components: - type: Transform pos: -88.5,-4.5 parent: 2 - - uid: 6560 + - uid: 6519 components: - type: Transform pos: -89.5,-4.5 parent: 2 - - uid: 6561 + - uid: 6520 components: - type: Transform pos: -82.5,10.5 parent: 2 - - uid: 6562 + - uid: 6521 components: - type: Transform pos: -82.5,11.5 parent: 2 - - uid: 6563 + - uid: 6522 components: - type: Transform pos: -82.5,12.5 parent: 2 - - uid: 6564 + - uid: 6523 components: - type: Transform pos: -82.5,13.5 parent: 2 - - uid: 6565 + - uid: 6524 components: - type: Transform pos: -82.5,14.5 parent: 2 - - uid: 6566 + - uid: 6525 components: - type: Transform pos: -82.5,15.5 parent: 2 - - uid: 6567 + - uid: 6526 components: - type: Transform pos: -82.5,16.5 parent: 2 - - uid: 6568 + - uid: 6527 components: - type: Transform pos: -82.5,17.5 parent: 2 - - uid: 6569 + - uid: 6528 components: - type: Transform pos: -82.5,18.5 parent: 2 - - uid: 6570 + - uid: 6529 components: - type: Transform pos: -82.5,19.5 parent: 2 - - uid: 6571 + - uid: 6530 components: - type: Transform pos: -82.5,20.5 parent: 2 - - uid: 6572 + - uid: 6531 components: - type: Transform pos: -82.5,21.5 parent: 2 - - uid: 6573 + - uid: 6532 components: - type: Transform pos: -82.5,22.5 parent: 2 - - uid: 6574 + - uid: 6533 components: - type: Transform pos: -87.5,17.5 parent: 2 - - uid: 6575 + - uid: 6534 components: - type: Transform pos: -86.5,17.5 parent: 2 - - uid: 6576 + - uid: 6535 components: - type: Transform pos: -85.5,17.5 parent: 2 - - uid: 6577 + - uid: 6536 components: - type: Transform pos: -84.5,17.5 parent: 2 - - uid: 6578 + - uid: 6537 components: - type: Transform pos: -83.5,17.5 parent: 2 - - uid: 6579 + - uid: 6538 components: - type: Transform pos: -81.5,17.5 parent: 2 - - uid: 6580 + - uid: 6539 components: - type: Transform pos: -80.5,17.5 parent: 2 - - uid: 6581 + - uid: 6540 components: - type: Transform pos: -79.5,17.5 parent: 2 - - uid: 6582 + - uid: 6541 components: - type: Transform pos: -78.5,17.5 parent: 2 - - uid: 6583 + - uid: 6542 components: - type: Transform pos: -77.5,17.5 parent: 2 - - uid: 6584 + - uid: 6543 components: - type: Transform pos: -78.5,13.5 parent: 2 - - uid: 6585 + - uid: 6544 components: - type: Transform pos: -79.5,13.5 parent: 2 - - uid: 6586 + - uid: 6545 components: - type: Transform pos: -80.5,13.5 parent: 2 - - uid: 6587 + - uid: 6546 components: - type: Transform pos: -81.5,13.5 parent: 2 - - uid: 6588 + - uid: 6547 components: - type: Transform pos: -83.5,13.5 parent: 2 - - uid: 6589 + - uid: 6548 components: - type: Transform pos: -84.5,13.5 parent: 2 - - uid: 6590 + - uid: 6549 components: - type: Transform pos: -85.5,13.5 parent: 2 - - uid: 6591 + - uid: 6550 components: - type: Transform pos: -86.5,13.5 parent: 2 - - uid: 6592 + - uid: 6551 components: - type: Transform pos: -75.5,-23.5 parent: 2 - - uid: 6593 + - uid: 6552 components: - type: Transform pos: -75.5,-24.5 parent: 2 - - uid: 6594 + - uid: 6553 components: - type: Transform pos: -75.5,-25.5 parent: 2 - - uid: 6595 + - uid: 6554 components: - type: Transform pos: -75.5,-26.5 parent: 2 - - uid: 6596 + - uid: 6555 components: - type: Transform pos: -74.5,-26.5 parent: 2 - - uid: 6597 + - uid: 6556 components: - type: Transform pos: -73.5,-26.5 parent: 2 - - uid: 6598 + - uid: 6557 components: - type: Transform pos: -72.5,-26.5 parent: 2 - - uid: 6599 + - uid: 6558 components: - type: Transform pos: -73.5,-25.5 parent: 2 - - uid: 6600 + - uid: 6559 components: - type: Transform pos: -76.5,-25.5 parent: 2 - - uid: 6601 + - uid: 6560 components: - type: Transform pos: -77.5,-25.5 parent: 2 - - uid: 6602 + - uid: 6561 components: - type: Transform pos: -78.5,-25.5 parent: 2 - - uid: 6603 + - uid: 6562 components: - type: Transform pos: -78.5,-24.5 parent: 2 - - uid: 6604 + - uid: 6563 components: - type: Transform pos: -81.5,-4.5 parent: 2 - - uid: 6605 + - uid: 6564 components: - type: Transform pos: -81.5,-3.5 parent: 2 - - uid: 6606 + - uid: 6565 components: - type: Transform pos: -80.5,-3.5 parent: 2 - - uid: 6607 + - uid: 6566 components: - type: Transform pos: -79.5,-3.5 parent: 2 - - uid: 6608 + - uid: 6567 components: - type: Transform pos: -78.5,-3.5 parent: 2 - - uid: 6609 + - uid: 6568 components: - type: Transform pos: -78.5,-2.5 parent: 2 - - uid: 6610 + - uid: 6569 components: - type: Transform pos: -78.5,-1.5 parent: 2 - - uid: 6611 + - uid: 6570 components: - type: Transform pos: -78.5,-0.5 parent: 2 - - uid: 6612 + - uid: 6571 components: - type: Transform pos: -78.5,0.5 parent: 2 - - uid: 6613 + - uid: 6572 components: - type: Transform pos: -78.5,1.5 parent: 2 - - uid: 6614 + - uid: 6573 components: - type: Transform pos: -78.5,2.5 parent: 2 - - uid: 6615 + - uid: 6574 components: - type: Transform pos: -78.5,3.5 parent: 2 - - uid: 6616 + - uid: 6575 components: - type: Transform pos: -78.5,4.5 parent: 2 - - uid: 6617 + - uid: 6576 components: - type: Transform pos: -78.5,5.5 parent: 2 - - uid: 6618 + - uid: 6577 components: - type: Transform pos: -78.5,6.5 parent: 2 - - uid: 6619 + - uid: 6578 components: - type: Transform pos: -77.5,6.5 parent: 2 - - uid: 6620 + - uid: 6579 components: - type: Transform pos: -76.5,6.5 parent: 2 - - uid: 6621 + - uid: 6580 components: - type: Transform pos: -70.5,7.5 parent: 2 - - uid: 6622 + - uid: 6581 components: - type: Transform pos: -71.5,7.5 parent: 2 - - uid: 6623 + - uid: 6582 components: - type: Transform pos: -72.5,7.5 parent: 2 - - uid: 6624 + - uid: 6583 components: - type: Transform pos: -73.5,7.5 parent: 2 - - uid: 6625 + - uid: 6584 components: - type: Transform pos: -69.5,7.5 parent: 2 - - uid: 6626 + - uid: 6585 components: - type: Transform pos: -73.5,6.5 parent: 2 - - uid: 6627 + - uid: 6586 components: - type: Transform pos: -80.5,-16.5 parent: 2 - - uid: 6628 + - uid: 6587 components: - type: Transform pos: -81.5,-16.5 parent: 2 - - uid: 6629 + - uid: 6588 components: - type: Transform pos: -81.5,-17.5 parent: 2 - - uid: 6630 + - uid: 6589 components: - type: Transform pos: -80.5,-17.5 parent: 2 - - uid: 6631 + - uid: 6590 components: - type: Transform pos: -82.5,-16.5 parent: 2 - - uid: 6632 + - uid: 6591 components: - type: Transform pos: -83.5,-16.5 parent: 2 - - uid: 6633 + - uid: 6592 components: - type: Transform pos: -82.5,-15.5 parent: 2 - - uid: 6634 + - uid: 6593 components: - type: Transform pos: -82.5,-14.5 parent: 2 - - uid: 6635 + - uid: 6594 components: - type: Transform pos: -81.5,-14.5 parent: 2 - - uid: 6636 + - uid: 6595 components: - type: Transform pos: -82.5,-13.5 parent: 2 - - uid: 6637 + - uid: 6596 components: - type: Transform pos: -83.5,-13.5 parent: 2 - - uid: 6638 + - uid: 6597 components: - type: Transform pos: -84.5,-13.5 parent: 2 - - uid: 6639 + - uid: 6598 components: - type: Transform pos: -84.5,-14.5 parent: 2 - - uid: 6640 + - uid: 6599 components: - type: Transform pos: -80.5,-14.5 parent: 2 - - uid: 6641 + - uid: 6600 components: - type: Transform pos: -79.5,-14.5 parent: 2 - - uid: 6642 + - uid: 6601 components: - type: Transform pos: -78.5,-14.5 parent: 2 - - uid: 6643 + - uid: 6602 components: - type: Transform pos: -77.5,-14.5 parent: 2 - - uid: 6644 + - uid: 6603 components: - type: Transform pos: -76.5,-14.5 parent: 2 - - uid: 6645 + - uid: 6604 components: - type: Transform pos: -76.5,-15.5 parent: 2 - - uid: 6646 + - uid: 6605 components: - type: Transform pos: -76.5,-16.5 parent: 2 - - uid: 6647 + - uid: 6606 components: - type: Transform pos: -76.5,-23.5 parent: 2 - - uid: 6648 + - uid: 6607 components: - type: Transform pos: -76.5,-22.5 parent: 2 - - uid: 6649 + - uid: 6608 components: - type: Transform pos: -76.5,-21.5 parent: 2 - - uid: 6650 + - uid: 6609 components: - type: Transform pos: -76.5,-20.5 parent: 2 - - uid: 6651 + - uid: 6610 components: - type: Transform pos: -76.5,-19.5 parent: 2 - - uid: 6652 + - uid: 6611 components: - type: Transform pos: -77.5,-20.5 parent: 2 - - uid: 6653 + - uid: 6612 components: - type: Transform pos: -84.5,-6.5 parent: 2 - - uid: 6654 + - uid: 6613 components: - type: Transform pos: -84.5,-7.5 parent: 2 - - uid: 6655 + - uid: 6614 components: - type: Transform pos: -84.5,-8.5 parent: 2 - - uid: 6656 + - uid: 6615 components: - type: Transform pos: -83.5,-8.5 parent: 2 - - uid: 6657 + - uid: 6616 components: - type: Transform pos: -82.5,-8.5 parent: 2 - - uid: 6658 + - uid: 6617 components: - type: Transform pos: -82.5,-9.5 parent: 2 - - uid: 6659 + - uid: 6618 components: - type: Transform pos: -82.5,-10.5 parent: 2 - - uid: 6660 + - uid: 6619 components: - type: Transform pos: -84.5,-9.5 parent: 2 - - uid: 6661 + - uid: 6620 components: - type: Transform pos: -85.5,-9.5 parent: 2 - - uid: 6662 + - uid: 6621 components: - type: Transform pos: -86.5,-9.5 parent: 2 - - uid: 6663 + - uid: 6622 components: - type: Transform pos: -86.5,-8.5 parent: 2 - - uid: 6664 + - uid: 6623 components: - type: Transform pos: -86.5,-10.5 parent: 2 - - uid: 6665 + - uid: 6624 components: - type: Transform pos: -86.5,-11.5 parent: 2 - - uid: 6666 + - uid: 6625 components: - type: Transform pos: -86.5,-7.5 parent: 2 - - uid: 6667 + - uid: 6626 components: - type: Transform pos: -83.5,-11.5 parent: 2 - - uid: 6668 + - uid: 6627 components: - type: Transform pos: -74.5,-10.5 parent: 2 - - uid: 6669 + - uid: 6628 components: - type: Transform pos: -75.5,-10.5 parent: 2 - - uid: 6670 + - uid: 6629 components: - type: Transform pos: -76.5,-10.5 parent: 2 - - uid: 6671 + - uid: 6630 components: - type: Transform pos: -77.5,-10.5 parent: 2 - - uid: 6672 + - uid: 6631 components: - type: Transform pos: -78.5,-10.5 parent: 2 - - uid: 6673 + - uid: 6632 components: - type: Transform pos: -79.5,-10.5 parent: 2 - - uid: 6674 + - uid: 6633 components: - type: Transform pos: -74.5,-11.5 parent: 2 - - uid: 6675 + - uid: 6634 components: - type: Transform pos: -79.5,-8.5 parent: 2 - - uid: 6676 + - uid: 6635 components: - type: Transform pos: -79.5,-7.5 parent: 2 - - uid: 6677 + - uid: 6636 components: - type: Transform pos: -79.5,-6.5 parent: 2 - - uid: 6678 + - uid: 6637 components: - type: Transform pos: -79.5,-5.5 parent: 2 - - uid: 6679 + - uid: 6638 components: - type: Transform pos: -78.5,-5.5 parent: 2 - - uid: 6680 + - uid: 6639 components: - type: Transform pos: -77.5,-5.5 parent: 2 - - uid: 6681 + - uid: 6640 components: - type: Transform pos: -76.5,-5.5 parent: 2 - - uid: 6682 + - uid: 6641 components: - type: Transform pos: -75.5,-5.5 parent: 2 - - uid: 6683 + - uid: 6642 components: - type: Transform pos: -74.5,-5.5 parent: 2 - - uid: 6684 + - uid: 6643 components: - type: Transform pos: -73.5,-5.5 parent: 2 - - uid: 6685 + - uid: 6644 components: - type: Transform pos: -72.5,-5.5 parent: 2 - - uid: 6686 + - uid: 6645 components: - type: Transform pos: -71.5,-5.5 parent: 2 - - uid: 6687 + - uid: 6646 components: - type: Transform pos: -71.5,-6.5 parent: 2 - - uid: 6688 + - uid: 6647 components: - type: Transform pos: -71.5,-7.5 parent: 2 - - uid: 6689 + - uid: 6648 components: - type: Transform pos: -71.5,-8.5 parent: 2 - - uid: 6690 + - uid: 6649 components: - type: Transform pos: -71.5,-9.5 parent: 2 - - uid: 6691 + - uid: 6650 components: - type: Transform pos: -71.5,-10.5 parent: 2 - - uid: 6692 + - uid: 6651 components: - type: Transform pos: -71.5,-11.5 parent: 2 - - uid: 6693 + - uid: 6652 components: - type: Transform pos: -71.5,-12.5 parent: 2 - - uid: 6694 + - uid: 6653 components: - type: Transform pos: -71.5,-13.5 parent: 2 - - uid: 6695 + - uid: 6654 components: - type: Transform pos: -72.5,-13.5 parent: 2 - - uid: 6696 + - uid: 6655 components: - type: Transform pos: -72.5,-14.5 parent: 2 - - uid: 6697 + - uid: 6656 components: - type: Transform pos: -72.5,-15.5 parent: 2 - - uid: 6698 + - uid: 6657 components: - type: Transform pos: -72.5,-16.5 parent: 2 - - uid: 6699 + - uid: 6658 components: - type: Transform pos: -72.5,-17.5 parent: 2 - - uid: 6700 + - uid: 6659 components: - type: Transform pos: -72.5,-18.5 parent: 2 - - uid: 6701 + - uid: 6660 components: - type: Transform pos: -73.5,-18.5 parent: 2 - - uid: 6702 + - uid: 6661 components: - type: Transform pos: -73.5,-19.5 parent: 2 - - uid: 6703 + - uid: 6662 components: - type: Transform pos: -73.5,-20.5 parent: 2 - - uid: 6704 + - uid: 6663 components: - type: Transform pos: -73.5,-21.5 parent: 2 - - uid: 6705 + - uid: 6664 components: - type: Transform pos: -73.5,-22.5 parent: 2 - - uid: 6706 + - uid: 6665 components: - type: Transform pos: -72.5,-22.5 parent: 2 - - uid: 6707 + - uid: 6666 components: - type: Transform pos: -71.5,-22.5 parent: 2 - - uid: 6708 + - uid: 6667 components: - type: Transform pos: -70.5,-22.5 parent: 2 - - uid: 6709 + - uid: 6668 components: - type: Transform pos: -81.5,-8.5 parent: 2 - - uid: 6710 + - uid: 6669 components: - type: Transform pos: -81.5,-7.5 parent: 2 - - uid: 6711 + - uid: 6670 components: - type: Transform pos: -87.5,-11.5 parent: 2 - - uid: 6712 + - uid: 6671 components: - type: Transform pos: -82.5,-11.5 parent: 2 - - uid: 6713 + - uid: 6672 components: - type: Transform pos: -84.5,-11.5 parent: 2 - - uid: 6714 + - uid: 6673 components: - type: Transform pos: -31.5,-115.5 parent: 2 - - uid: 6715 + - uid: 6674 components: - type: Transform pos: -30.5,-115.5 parent: 2 - - uid: 6716 + - uid: 6675 components: - type: Transform pos: -30.5,-114.5 parent: 2 - - uid: 6717 + - uid: 6676 components: - type: Transform pos: -30.5,-113.5 parent: 2 - - uid: 6718 + - uid: 6677 components: - type: Transform pos: -29.5,-113.5 parent: 2 - - uid: 6719 + - uid: 6678 components: - type: Transform pos: -28.5,-113.5 parent: 2 - - uid: 6720 + - uid: 6679 components: - type: Transform pos: -27.5,-113.5 parent: 2 - - uid: 6721 + - uid: 6680 components: - type: Transform pos: -27.5,-114.5 parent: 2 - - uid: 6722 + - uid: 6681 components: - type: Transform pos: -26.5,-113.5 parent: 2 - - uid: 6723 + - uid: 6682 components: - type: Transform pos: -31.5,-113.5 parent: 2 - - uid: 6724 + - uid: 6683 components: - type: Transform pos: 100.5,-82.5 parent: 2 - - uid: 6725 + - uid: 6684 components: - type: Transform pos: 100.5,-83.5 parent: 2 - - uid: 6726 + - uid: 6685 components: - type: Transform pos: 99.5,-83.5 parent: 2 - - uid: 6727 + - uid: 6686 components: - type: Transform pos: 98.5,-83.5 parent: 2 - - uid: 6728 + - uid: 6687 components: - type: Transform pos: 97.5,-83.5 parent: 2 - - uid: 6729 + - uid: 6688 components: - type: Transform pos: 96.5,-83.5 parent: 2 - - uid: 6730 + - uid: 6689 components: - type: Transform pos: 96.5,-84.5 parent: 2 - - uid: 6731 + - uid: 6690 components: - type: Transform pos: 98.5,-84.5 parent: 2 - - uid: 6732 + - uid: 6691 components: - type: Transform pos: 98.5,-85.5 parent: 2 - - uid: 6733 + - uid: 6692 components: - type: Transform pos: 98.5,-86.5 parent: 2 - - uid: 6734 + - uid: 6693 components: - type: Transform pos: 98.5,-87.5 parent: 2 - - uid: 6735 + - uid: 6694 components: - type: Transform pos: 97.5,-87.5 parent: 2 - - uid: 6736 + - uid: 6695 components: - type: Transform pos: 96.5,-87.5 parent: 2 - - uid: 6737 + - uid: 6696 components: - type: Transform pos: 96.5,-88.5 parent: 2 - - uid: 6738 + - uid: 6697 components: - type: Transform pos: 96.5,-89.5 parent: 2 - - uid: 6739 + - uid: 6698 components: - type: Transform pos: 95.5,-89.5 parent: 2 - - uid: 6740 + - uid: 6699 components: - type: Transform pos: 99.5,-87.5 parent: 2 - - uid: 6741 + - uid: 6700 components: - type: Transform pos: 100.5,-87.5 parent: 2 - - uid: 6742 + - uid: 6701 components: - type: Transform pos: 100.5,-88.5 parent: 2 - - uid: 6743 + - uid: 6702 components: - type: Transform pos: 100.5,-89.5 parent: 2 - - uid: 6744 + - uid: 6703 components: - type: Transform pos: 101.5,-89.5 parent: 2 - - uid: 6745 + - uid: 6704 components: - type: Transform pos: 101.5,-87.5 parent: 2 - - uid: 6746 + - uid: 6705 components: - type: Transform pos: 101.5,-86.5 parent: 2 - - uid: 6747 + - uid: 6706 components: - type: Transform pos: 95.5,-87.5 parent: 2 - - uid: 6748 + - uid: 6707 components: - type: Transform pos: 95.5,-86.5 parent: 2 - - uid: 6749 + - uid: 6708 components: - type: Transform pos: 100.5,-90.5 parent: 2 - - uid: 6750 + - uid: 6709 components: - type: Transform pos: 98.5,-89.5 parent: 2 - - uid: 6751 + - uid: 6710 components: - type: Transform pos: 98.5,-90.5 parent: 2 - - uid: 6752 + - uid: 6711 components: - type: Transform pos: 99.5,-90.5 parent: 2 - - uid: 6753 + - uid: 6712 components: - type: Transform pos: 96.5,-77.5 parent: 2 - - uid: 6754 + - uid: 6713 components: - type: Transform pos: 96.5,-78.5 parent: 2 - - uid: 6755 + - uid: 6714 components: - type: Transform pos: 96.5,-79.5 parent: 2 - - uid: 6756 + - uid: 6715 components: - type: Transform pos: 95.5,-79.5 parent: 2 - - uid: 6757 + - uid: 6716 components: - type: Transform pos: 94.5,-79.5 parent: 2 - - uid: 6758 + - uid: 6717 components: - type: Transform pos: 93.5,-79.5 parent: 2 - - uid: 6759 + - uid: 6718 components: - type: Transform pos: 92.5,-79.5 parent: 2 - - uid: 6760 + - uid: 6719 components: - type: Transform pos: 99.5,-85.5 parent: 2 - - uid: 6761 + - uid: 6720 components: - type: Transform pos: 97.5,-79.5 parent: 2 - - uid: 6762 + - uid: 6721 components: - type: Transform pos: 98.5,-79.5 parent: 2 - - uid: 6763 + - uid: 6722 components: - type: Transform pos: 99.5,-79.5 parent: 2 - - uid: 6764 + - uid: 6723 components: - type: Transform pos: 100.5,-79.5 parent: 2 - - uid: 6765 + - uid: 6724 components: - type: Transform pos: 101.5,-79.5 parent: 2 - - uid: 6766 + - uid: 6725 components: - type: Transform pos: 102.5,-79.5 parent: 2 - - uid: 6767 + - uid: 6726 components: - type: Transform pos: 98.5,-80.5 parent: 2 - - uid: 6768 + - uid: 6727 components: - type: Transform pos: 98.5,-73.5 parent: 2 - - uid: 6769 + - uid: 6728 components: - type: Transform pos: 98.5,-74.5 parent: 2 - - uid: 6770 + - uid: 6729 components: - type: Transform pos: 98.5,-75.5 parent: 2 - - uid: 6771 + - uid: 6730 components: - type: Transform pos: 98.5,-76.5 parent: 2 - - uid: 6772 + - uid: 6731 components: - type: Transform pos: 99.5,-75.5 parent: 2 - - uid: 6773 + - uid: 6732 components: - type: Transform pos: 97.5,-75.5 parent: 2 - - uid: 6774 + - uid: 6733 components: - type: Transform pos: 98.5,-72.5 parent: 2 - - uid: 6775 + - uid: 6734 components: - type: Transform pos: 98.5,-71.5 parent: 2 - - uid: 6776 + - uid: 6735 components: - type: Transform pos: 98.5,-70.5 parent: 2 - - uid: 6777 + - uid: 6736 components: - type: Transform pos: 98.5,-69.5 parent: 2 - - uid: 6778 + - uid: 6737 components: - type: Transform pos: 98.5,-68.5 parent: 2 - - uid: 6779 + - uid: 6738 components: - type: Transform pos: 98.5,-67.5 parent: 2 - - uid: 6780 + - uid: 6739 components: - type: Transform pos: 99.5,-67.5 parent: 2 - - uid: 6781 + - uid: 6740 components: - type: Transform pos: 97.5,-67.5 parent: 2 - - uid: 6782 + - uid: 6741 components: - type: Transform pos: 99.5,-71.5 parent: 2 - - uid: 6783 + - uid: 6742 components: - type: Transform pos: 97.5,-71.5 parent: 2 - - uid: 6784 + - uid: 6743 components: - type: Transform pos: 97.5,-66.5 parent: 2 - - uid: 6785 + - uid: 6744 components: - type: Transform pos: 99.5,-66.5 parent: 2 - - uid: 6786 + - uid: 6745 components: - type: Transform pos: 100.5,-68.5 parent: 2 - - uid: 6787 + - uid: 6746 components: - type: Transform pos: 101.5,-68.5 parent: 2 - - uid: 6788 + - uid: 6747 components: - type: Transform pos: 102.5,-68.5 parent: 2 - - uid: 6789 + - uid: 6748 components: - type: Transform pos: 103.5,-67.5 parent: 2 - - uid: 6790 + - uid: 6749 components: - type: Transform pos: 103.5,-68.5 parent: 2 - - uid: 6791 + - uid: 6750 components: - type: Transform pos: 103.5,-69.5 parent: 2 - - uid: 6792 + - uid: 6751 components: - type: Transform pos: 103.5,-70.5 parent: 2 - - uid: 6793 + - uid: 6752 components: - type: Transform pos: 103.5,-71.5 parent: 2 - - uid: 6794 + - uid: 6753 components: - type: Transform pos: 96.5,-68.5 parent: 2 - - uid: 6795 + - uid: 6754 components: - type: Transform pos: 95.5,-68.5 parent: 2 - - uid: 6796 + - uid: 6755 components: - type: Transform pos: 94.5,-68.5 parent: 2 - - uid: 6797 + - uid: 6756 components: - type: Transform pos: 93.5,-67.5 parent: 2 - - uid: 6798 + - uid: 6757 components: - type: Transform pos: 93.5,-68.5 parent: 2 - - uid: 6799 + - uid: 6758 components: - type: Transform pos: 93.5,-69.5 parent: 2 - - uid: 6800 + - uid: 6759 components: - type: Transform pos: 93.5,-70.5 parent: 2 - - uid: 6801 + - uid: 6760 components: - type: Transform pos: 93.5,-71.5 parent: 2 - - uid: 6802 + - uid: 6761 components: - type: Transform pos: 101.5,-62.5 parent: 2 - - uid: 6803 + - uid: 6762 components: - type: Transform pos: 100.5,-62.5 parent: 2 - - uid: 6804 + - uid: 6763 components: - type: Transform pos: 99.5,-62.5 parent: 2 - - uid: 6805 + - uid: 6764 components: - type: Transform pos: 98.5,-62.5 parent: 2 - - uid: 6806 + - uid: 6765 components: - type: Transform pos: 97.5,-62.5 parent: 2 - - uid: 6807 + - uid: 6766 components: - type: Transform pos: 97.5,-63.5 parent: 2 - - uid: 6808 + - uid: 6767 components: - type: Transform pos: 97.5,-64.5 parent: 2 - - uid: 6809 + - uid: 6768 components: - type: Transform pos: 98.5,-64.5 parent: 2 - - uid: 6810 + - uid: 6769 components: - type: Transform pos: 90.5,-79.5 parent: 2 - - uid: 6811 + - uid: 6770 components: - type: Transform pos: 91.5,-79.5 parent: 2 - - uid: 6812 + - uid: 6771 components: - type: Transform pos: 89.5,-79.5 parent: 2 - - uid: 6813 + - uid: 6772 components: - type: Transform pos: 89.5,-78.5 parent: 2 - - uid: 6814 + - uid: 6773 components: - type: Transform pos: 89.5,-77.5 parent: 2 - - uid: 6815 + - uid: 6774 components: - type: Transform pos: 89.5,-76.5 parent: 2 - - uid: 6816 + - uid: 6775 components: - type: Transform pos: 89.5,-75.5 parent: 2 - - uid: 6817 + - uid: 6776 components: - type: Transform pos: 89.5,-74.5 parent: 2 - - uid: 6818 + - uid: 6777 components: - type: Transform pos: 88.5,-74.5 parent: 2 - - uid: 6819 + - uid: 6778 components: - type: Transform pos: 87.5,-74.5 parent: 2 - - uid: 6820 + - uid: 6779 components: - type: Transform pos: 86.5,-74.5 parent: 2 - - uid: 6821 + - uid: 6780 components: - type: Transform pos: 85.5,-74.5 parent: 2 - - uid: 6822 + - uid: 6781 components: - type: Transform pos: 84.5,-74.5 parent: 2 - - uid: 6823 + - uid: 6782 components: - type: Transform pos: 83.5,-74.5 parent: 2 - - uid: 6824 + - uid: 6783 components: - type: Transform pos: 81.5,-74.5 parent: 2 - - uid: 6825 + - uid: 6784 components: - type: Transform pos: 73.5,-46.5 parent: 2 - - uid: 6826 + - uid: 6785 components: - type: Transform pos: 74.5,-46.5 parent: 2 - - uid: 6827 + - uid: 6786 components: - type: Transform pos: 109.5,-46.5 parent: 2 - - uid: 6828 + - uid: 6787 components: - type: Transform pos: 109.5,-47.5 parent: 2 - - uid: 6829 + - uid: 6788 components: - type: Transform pos: 109.5,-48.5 parent: 2 - - uid: 6830 + - uid: 6789 components: - type: Transform pos: 109.5,-49.5 parent: 2 - - uid: 6831 + - uid: 6790 components: - type: Transform pos: 82.5,-74.5 parent: 2 - - uid: 6832 + - uid: 6791 components: - type: Transform pos: 80.5,-74.5 parent: 2 - - uid: 6833 + - uid: 6792 components: - type: Transform pos: 80.5,-73.5 parent: 2 - - uid: 6834 + - uid: 6793 components: - type: Transform pos: 79.5,-73.5 parent: 2 - - uid: 6835 + - uid: 6794 components: - type: Transform pos: 78.5,-73.5 parent: 2 - - uid: 6836 + - uid: 6795 components: - type: Transform pos: 77.5,-73.5 parent: 2 - - uid: 6837 + - uid: 6796 components: - type: Transform pos: 77.5,-72.5 parent: 2 - - uid: 6838 + - uid: 6797 components: - type: Transform pos: 76.5,-72.5 parent: 2 - - uid: 6839 + - uid: 6798 components: - type: Transform pos: 75.5,-72.5 parent: 2 - - uid: 6840 + - uid: 6799 components: - type: Transform pos: 74.5,-72.5 parent: 2 - - uid: 6841 + - uid: 6800 components: - type: Transform pos: 73.5,-72.5 parent: 2 - - uid: 6842 + - uid: 6801 components: - type: Transform pos: 72.5,-72.5 parent: 2 - - uid: 6843 + - uid: 6802 components: - type: Transform pos: 71.5,-72.5 parent: 2 - - uid: 6844 + - uid: 6803 components: - type: Transform pos: 70.5,-72.5 parent: 2 - - uid: 6845 + - uid: 6804 components: - type: Transform pos: 69.5,-72.5 parent: 2 - - uid: 6846 + - uid: 6805 components: - type: Transform pos: -56.5,-119.5 parent: 2 - - uid: 6847 + - uid: 6806 components: - type: Transform pos: -57.5,-119.5 parent: 2 - - uid: 6848 + - uid: 6807 components: - type: Transform pos: -58.5,-119.5 parent: 2 - - uid: 6849 + - uid: 6808 components: - type: Transform pos: 39.5,-12.5 parent: 2 - - uid: 6850 + - uid: 6809 components: - type: Transform pos: 38.5,2.5 parent: 2 - - uid: 6851 + - uid: 6810 components: - type: Transform pos: 37.5,2.5 parent: 2 - - uid: 6852 + - uid: 6811 components: - type: Transform pos: 36.5,2.5 parent: 2 - - uid: 6853 + - uid: 6812 components: - type: Transform pos: 35.5,2.5 parent: 2 - - uid: 6854 + - uid: 6813 components: - type: Transform pos: 35.5,1.5 parent: 2 - - uid: 6855 + - uid: 6814 components: - type: Transform pos: 35.5,0.5 parent: 2 - - uid: 6856 + - uid: 6815 components: - type: Transform pos: 35.5,-0.5 parent: 2 - - uid: 6857 + - uid: 6816 components: - type: Transform pos: 35.5,-1.5 parent: 2 - - uid: 6858 + - uid: 6817 components: - type: Transform pos: 36.5,-0.5 parent: 2 - - uid: 6859 + - uid: 6818 components: - type: Transform pos: 37.5,-0.5 parent: 2 - - uid: 6860 + - uid: 6819 components: - type: Transform pos: 34.5,-1.5 parent: 2 - - uid: 6861 + - uid: 6820 components: - type: Transform pos: 33.5,-1.5 parent: 2 - - uid: 6862 + - uid: 6821 components: - type: Transform pos: 32.5,-1.5 parent: 2 - - uid: 6863 + - uid: 6822 components: - type: Transform pos: 31.5,-1.5 parent: 2 - - uid: 6864 + - uid: 6823 components: - type: Transform pos: 30.5,-1.5 parent: 2 - - uid: 6865 + - uid: 6824 components: - type: Transform pos: 30.5,-2.5 parent: 2 - - uid: 6866 + - uid: 6825 components: - type: Transform pos: 30.5,-0.5 parent: 2 - - uid: 6867 + - uid: 6826 components: - type: Transform pos: 30.5,0.5 parent: 2 - - uid: 6868 + - uid: 6827 components: - type: Transform pos: 30.5,1.5 parent: 2 - - uid: 6869 + - uid: 6828 components: - type: Transform pos: 30.5,2.5 parent: 2 - - uid: 6870 + - uid: 6829 components: - type: Transform pos: 31.5,2.5 parent: 2 - - uid: 6871 + - uid: 6830 components: - type: Transform pos: 32.5,2.5 parent: 2 - - uid: 6872 + - uid: 6831 components: - type: Transform pos: 33.5,2.5 parent: 2 - - uid: 6873 + - uid: 6832 components: - type: Transform pos: 33.5,3.5 parent: 2 - - uid: 6874 + - uid: 6833 components: - type: Transform pos: 33.5,4.5 parent: 2 - - uid: 6875 + - uid: 6834 components: - type: Transform pos: 33.5,5.5 parent: 2 - - uid: 6876 + - uid: 6835 components: - type: Transform pos: 33.5,6.5 parent: 2 - - uid: 6877 + - uid: 6836 components: - type: Transform pos: 34.5,6.5 parent: 2 - - uid: 6878 + - uid: 6837 components: - type: Transform pos: 35.5,6.5 parent: 2 - - uid: 6879 + - uid: 6838 components: - type: Transform pos: 36.5,6.5 parent: 2 - - uid: 6880 + - uid: 6839 components: - type: Transform pos: 37.5,6.5 parent: 2 - - uid: 6881 + - uid: 6840 components: - type: Transform pos: 33.5,7.5 parent: 2 - - uid: 6882 + - uid: 6841 components: - type: Transform pos: 32.5,7.5 parent: 2 - - uid: 6883 + - uid: 6842 components: - type: Transform pos: 31.5,7.5 parent: 2 - - uid: 6884 + - uid: 6843 components: - type: Transform pos: 30.5,7.5 parent: 2 - - uid: 6885 + - uid: 6844 components: - type: Transform pos: 29.5,7.5 parent: 2 - - uid: 6886 + - uid: 6845 components: - type: Transform pos: 29.5,6.5 parent: 2 - - uid: 6887 + - uid: 6846 components: - type: Transform pos: 29.5,5.5 parent: 2 - - uid: 6888 + - uid: 6847 components: - type: Transform pos: 29.5,4.5 parent: 2 - - uid: 6889 + - uid: 6848 components: - type: Transform pos: 29.5,3.5 parent: 2 - - uid: 6890 + - uid: 6849 components: - type: Transform pos: 29.5,2.5 parent: 2 - - uid: 6891 + - uid: 6850 components: - type: Transform pos: 33.5,29.5 parent: 2 - - uid: 6892 + - uid: 6851 components: - type: Transform pos: 33.5,28.5 parent: 2 - - uid: 6893 + - uid: 6852 components: - type: Transform pos: 34.5,28.5 parent: 2 - - uid: 6894 + - uid: 6853 components: - type: Transform pos: 35.5,28.5 parent: 2 - - uid: 6895 + - uid: 6854 components: - type: Transform pos: 35.5,27.5 parent: 2 - - uid: 6896 + - uid: 6855 components: - type: Transform pos: 35.5,29.5 parent: 2 - - uid: 6897 + - uid: 6856 components: - type: Transform pos: 35.5,30.5 parent: 2 - - uid: 6898 + - uid: 6857 components: - type: Transform pos: 32.5,28.5 parent: 2 - - uid: 6899 + - uid: 6858 components: - type: Transform pos: 31.5,28.5 parent: 2 - - uid: 6900 + - uid: 6859 components: - type: Transform pos: 30.5,28.5 parent: 2 - - uid: 6901 + - uid: 6860 components: - type: Transform pos: 30.5,29.5 parent: 2 - - uid: 6902 + - uid: 6861 components: - type: Transform pos: 30.5,27.5 parent: 2 - - uid: 6903 + - uid: 6862 components: - type: Transform pos: 29.5,27.5 parent: 2 - - uid: 6904 + - uid: 6863 components: - type: Transform pos: 28.5,27.5 parent: 2 - - uid: 6905 + - uid: 6864 components: - type: Transform pos: 27.5,27.5 parent: 2 - - uid: 6906 + - uid: 6865 components: - type: Transform pos: 27.5,28.5 parent: 2 - - uid: 6907 + - uid: 6866 components: - type: Transform pos: 29.5,29.5 parent: 2 - - uid: 6908 + - uid: 6867 components: - type: Transform pos: 32.5,29.5 parent: 2 - - uid: 6909 + - uid: 6868 components: - type: Transform pos: -21.5,-92.5 parent: 2 - - uid: 6910 + - uid: 6869 components: - type: Transform pos: -22.5,-92.5 parent: 2 - - uid: 6911 + - uid: 6870 components: - type: Transform pos: -23.5,-92.5 parent: 2 - - uid: 6912 + - uid: 6871 components: - type: Transform pos: -24.5,-92.5 parent: 2 - - uid: 6913 + - uid: 6872 components: - type: Transform pos: -25.5,-92.5 parent: 2 - - uid: 6914 + - uid: 6873 components: - type: Transform pos: -24.5,-91.5 parent: 2 - - uid: 6915 + - uid: 6874 components: - type: Transform pos: -25.5,-93.5 parent: 2 - - uid: 6916 + - uid: 6875 components: - type: Transform pos: -25.5,-94.5 parent: 2 - - uid: 6917 + - uid: 6876 components: - type: Transform pos: 41.5,31.5 parent: 2 - - uid: 6918 + - uid: 6877 components: - type: Transform pos: 41.5,30.5 parent: 2 - - uid: 6919 + - uid: 6878 components: - type: Transform pos: 41.5,29.5 parent: 2 - - uid: 6920 + - uid: 6879 components: - type: Transform pos: 41.5,28.5 parent: 2 - - uid: 6921 + - uid: 6880 components: - type: Transform pos: 41.5,27.5 parent: 2 - - uid: 6922 + - uid: 6881 components: - type: Transform pos: 40.5,29.5 parent: 2 - - uid: 6923 + - uid: 6882 components: - type: Transform pos: 42.5,27.5 parent: 2 - - uid: 6924 + - uid: 6883 components: - type: Transform pos: 43.5,27.5 parent: 2 - - uid: 6925 + - uid: 6884 components: - type: Transform pos: 44.5,27.5 parent: 2 - - uid: 6926 + - uid: 6885 components: - type: Transform pos: 44.5,28.5 parent: 2 - - uid: 6927 + - uid: 6886 components: - type: Transform pos: 44.5,29.5 parent: 2 - - uid: 6928 + - uid: 6887 components: - type: Transform pos: 44.5,30.5 parent: 2 - - uid: 6929 + - uid: 6888 components: - type: Transform pos: 40.5,27.5 parent: 2 - - uid: 6930 + - uid: 6889 components: - type: Transform pos: 39.5,27.5 parent: 2 - - uid: 6931 + - uid: 6890 components: - type: Transform pos: 38.5,27.5 parent: 2 - - uid: 6932 + - uid: 6891 components: - type: Transform pos: 38.5,28.5 parent: 2 - - uid: 6933 + - uid: 6892 components: - type: Transform pos: 38.5,29.5 parent: 2 - - uid: 6934 + - uid: 6893 components: - type: Transform pos: 38.5,30.5 parent: 2 - - uid: 6935 + - uid: 6894 components: - type: Transform pos: -33.5,-117.5 parent: 2 - - uid: 6936 + - uid: 6895 components: - type: Transform pos: -34.5,-117.5 parent: 2 - - uid: 6937 + - uid: 6896 components: - type: Transform pos: -55.5,-35.5 parent: 2 - - uid: 6938 + - uid: 6897 components: - type: Transform pos: -54.5,-35.5 parent: 2 - - uid: 6939 + - uid: 6898 components: - type: Transform pos: -53.5,-35.5 parent: 2 - - uid: 6940 + - uid: 6899 components: - type: Transform pos: -56.5,-31.5 parent: 2 - - uid: 6941 + - uid: 6900 components: - type: Transform pos: -57.5,-37.5 parent: 2 - - uid: 6942 + - uid: 6901 components: - type: Transform pos: -55.5,-39.5 parent: 2 - - uid: 6986 + - uid: 6902 components: - type: Transform pos: -45.5,-35.5 parent: 2 - - uid: 6987 + - uid: 6903 components: - type: Transform pos: -45.5,-31.5 parent: 2 - - uid: 6988 + - uid: 6904 components: - type: Transform pos: -44.5,-31.5 parent: 2 - - uid: 6989 + - uid: 6905 components: - type: Transform pos: -44.5,-34.5 parent: 2 - - uid: 6990 + - uid: 6906 components: - type: Transform pos: -46.5,-32.5 parent: 2 - - uid: 6994 + - uid: 6907 components: - type: Transform pos: 37.5,-4.5 parent: 2 - - uid: 6995 + - uid: 6908 components: - type: Transform pos: 37.5,-7.5 parent: 2 - - uid: 6996 + - uid: 6909 components: - type: Transform pos: 37.5,-6.5 parent: 2 - - uid: 6997 + - uid: 6910 components: - type: Transform pos: 38.5,-7.5 parent: 2 - - uid: 6998 + - uid: 6911 components: - type: Transform pos: 37.5,-5.5 parent: 2 - - uid: 6999 + - uid: 6912 components: - type: Transform pos: -48.5,-36.5 parent: 2 - - uid: 7000 + - uid: 6913 components: - type: Transform pos: -50.5,-39.5 parent: 2 - - uid: 7001 + - uid: 6914 components: - type: Transform pos: -51.5,-39.5 parent: 2 - - uid: 7002 + - uid: 6915 components: - type: Transform pos: -48.5,-34.5 parent: 2 - - uid: 7003 + - uid: 6916 components: - type: Transform pos: -49.5,-39.5 parent: 2 - - uid: 7004 + - uid: 6917 components: - type: Transform pos: -49.5,-37.5 parent: 2 - - uid: 7005 + - uid: 6918 components: - type: Transform pos: -49.5,-38.5 parent: 2 - - uid: 7006 + - uid: 6919 components: - type: Transform pos: -84.5,-20.5 parent: 2 - - uid: 7007 + - uid: 6920 components: - type: Transform pos: -85.5,-20.5 parent: 2 - - uid: 7008 + - uid: 6921 components: - type: Transform pos: -86.5,-20.5 parent: 2 - - uid: 7009 + - uid: 6922 components: - type: Transform pos: -86.5,-21.5 parent: 2 - - uid: 7010 + - uid: 6923 components: - type: Transform pos: -87.5,-19.5 parent: 2 - - uid: 7011 + - uid: 6924 components: - type: Transform pos: -87.5,-20.5 parent: 2 - - uid: 7012 + - uid: 6925 components: - type: Transform pos: -88.5,-20.5 parent: 2 - - uid: 7013 + - uid: 6926 components: - type: Transform pos: -89.5,-20.5 parent: 2 - - uid: 7014 + - uid: 6927 components: - type: Transform pos: -90.5,-20.5 parent: 2 - - uid: 7015 + - uid: 6928 components: - type: Transform pos: 47.5,-104.5 parent: 2 - - uid: 7016 + - uid: 6929 components: - type: Transform pos: 47.5,-94.5 parent: 2 - - uid: 7017 + - uid: 6930 components: - type: Transform pos: 47.5,-93.5 parent: 2 - - uid: 7018 + - uid: 6931 components: - type: Transform pos: 44.5,-95.5 parent: 2 - - uid: 7019 + - uid: 6932 components: - type: Transform pos: 43.5,-95.5 parent: 2 - - uid: 7020 + - uid: 6933 components: - type: Transform pos: 38.5,34.5 parent: 2 - - uid: 7021 + - uid: 6934 components: - type: Transform pos: 38.5,33.5 parent: 2 - - uid: 7022 + - uid: 6935 components: - type: Transform pos: 32.5,21.5 parent: 2 - - uid: 7023 + - uid: 6936 components: - type: Transform pos: 33.5,21.5 parent: 2 - - uid: 7024 + - uid: 6937 components: - type: Transform pos: 34.5,21.5 parent: 2 - - uid: 7025 + - uid: 6938 components: - type: Transform pos: 35.5,21.5 parent: 2 - - uid: 7026 + - uid: 6939 components: - type: Transform pos: 34.5,22.5 parent: 2 - - uid: 7027 + - uid: 6940 components: - type: Transform pos: 34.5,23.5 parent: 2 - - uid: 7028 + - uid: 6941 components: - type: Transform pos: 35.5,23.5 parent: 2 - - uid: 7029 + - uid: 6942 components: - type: Transform pos: 36.5,21.5 parent: 2 - - uid: 7030 + - uid: 6943 components: - type: Transform pos: 36.5,20.5 parent: 2 - - uid: 7031 + - uid: 6944 components: - type: Transform pos: 37.5,20.5 parent: 2 - - uid: 7032 + - uid: 6945 components: - type: Transform pos: 38.5,20.5 parent: 2 - - uid: 7033 + - uid: 6946 components: - type: Transform pos: 38.5,21.5 parent: 2 - - uid: 7034 + - uid: 6947 components: - type: Transform pos: 38.5,22.5 parent: 2 - - uid: 7035 + - uid: 6948 components: - type: Transform pos: 38.5,23.5 parent: 2 - - uid: 7036 + - uid: 6949 components: - type: Transform pos: -23.5,-98.5 parent: 2 - - uid: 7037 + - uid: 6950 components: - type: Transform pos: -65.5,-103.5 parent: 2 - - uid: 7038 + - uid: 6951 components: - type: Transform pos: -67.5,-103.5 parent: 2 - - uid: 7039 + - uid: 6952 components: - type: Transform pos: -66.5,-103.5 parent: 2 - - uid: 7040 + - uid: 6953 components: - type: Transform pos: -65.5,-104.5 parent: 2 - - uid: 7041 + - uid: 6954 components: - type: Transform pos: -65.5,-105.5 parent: 2 - - uid: 7042 + - uid: 6955 components: - type: Transform pos: -65.5,-106.5 parent: 2 - - uid: 7043 + - uid: 6956 components: - type: Transform pos: -65.5,-107.5 parent: 2 - - uid: 7044 + - uid: 6957 components: - type: Transform pos: -71.5,-107.5 parent: 2 - - uid: 7045 + - uid: 6958 components: - type: Transform pos: -71.5,-106.5 parent: 2 - - uid: 7046 + - uid: 6959 components: - type: Transform pos: -71.5,-105.5 parent: 2 - - uid: 7047 + - uid: 6960 components: - type: Transform pos: -71.5,-104.5 parent: 2 - - uid: 7048 + - uid: 6961 components: - type: Transform pos: -70.5,-103.5 parent: 2 - - uid: 7049 + - uid: 6962 components: - type: Transform pos: -69.5,-103.5 parent: 2 - - uid: 7050 + - uid: 6963 components: - type: Transform pos: -71.5,-103.5 parent: 2 - - uid: 7051 + - uid: 6964 components: - type: Transform pos: 43.5,-80.5 parent: 2 - - uid: 7052 + - uid: 6965 components: - type: Transform pos: 43.5,-79.5 parent: 2 - - uid: 7053 + - uid: 6966 components: - type: Transform pos: 43.5,-78.5 parent: 2 - - uid: 7054 + - uid: 6967 components: - type: Transform pos: 42.5,-78.5 parent: 2 - - uid: 7055 + - uid: 6968 components: - type: Transform pos: 41.5,-78.5 parent: 2 - - uid: 7056 + - uid: 6969 components: - type: Transform pos: 40.5,-78.5 parent: 2 - - uid: 7057 + - uid: 6970 components: - type: Transform pos: 39.5,-78.5 parent: 2 - - uid: 7058 + - uid: 6971 components: - type: Transform pos: 38.5,-78.5 parent: 2 - - uid: 7059 + - uid: 6972 components: - type: Transform pos: 37.5,-78.5 parent: 2 - - uid: 7060 + - uid: 6973 components: - type: Transform pos: 37.5,-79.5 parent: 2 - - uid: 7061 + - uid: 6974 components: - type: Transform pos: 37.5,-80.5 parent: 2 - - uid: 7062 + - uid: 6975 components: - type: Transform pos: 40.5,-79.5 parent: 2 - - uid: 7063 + - uid: 6976 components: - type: Transform pos: 40.5,-80.5 parent: 2 - - uid: 7064 + - uid: 6977 components: - type: Transform pos: 40.5,-81.5 parent: 2 - - uid: 7065 + - uid: 6978 components: - type: Transform pos: 40.5,-82.5 parent: 2 - - uid: 7090 + - uid: 6979 components: - type: Transform pos: -32.5,-113.5 parent: 2 - - uid: 7786 + - uid: 6980 components: - type: Transform pos: 86.5,-1.5 parent: 2 - - uid: 7791 + - uid: 6981 components: - type: Transform pos: 68.5,16.5 parent: 2 - - uid: 7792 + - uid: 6982 components: - type: Transform pos: 68.5,15.5 parent: 2 - - uid: 9707 + - uid: 6983 components: - type: Transform pos: 63.5,8.5 parent: 2 - - uid: 9708 + - uid: 6984 components: - type: Transform pos: 61.5,8.5 parent: 2 - - uid: 9949 + - uid: 6985 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 9950 + - uid: 6986 components: - type: Transform pos: 60.5,8.5 parent: 2 - - uid: 9951 + - uid: 6987 components: - type: Transform pos: 62.5,8.5 parent: 2 - - uid: 10884 + - uid: 6988 components: - type: Transform pos: 58.5,8.5 parent: 2 - - uid: 10949 + - uid: 6989 components: - type: Transform pos: 47.5,-17.5 parent: 2 - - uid: 11480 + - uid: 6990 components: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 12320 + - uid: 6991 components: - type: Transform pos: 83.5,-65.5 parent: 2 - - uid: 13274 + - uid: 6992 components: - type: Transform pos: 82.5,-65.5 parent: 2 - - uid: 13449 + - uid: 6993 components: - type: Transform pos: 26.5,-35.5 parent: 2 - - uid: 13452 + - uid: 6994 components: - type: Transform pos: 25.5,-36.5 parent: 2 - - uid: 13453 + - uid: 6995 components: - type: Transform pos: 25.5,-37.5 parent: 2 - - uid: 13454 + - uid: 6996 components: - type: Transform pos: 25.5,-38.5 parent: 2 - - uid: 13456 + - uid: 6997 components: - type: Transform pos: 29.5,-39.5 parent: 2 - - uid: 13457 + - uid: 6998 components: - type: Transform pos: 28.5,-36.5 parent: 2 - - uid: 13459 + - uid: 6999 components: - type: Transform pos: 28.5,-39.5 parent: 2 - - uid: 13460 + - uid: 7000 components: - type: Transform pos: 26.5,-41.5 parent: 2 - - uid: 13461 + - uid: 7001 components: - type: Transform pos: 27.5,-42.5 parent: 2 - - uid: 13462 + - uid: 7002 components: - type: Transform pos: 26.5,-36.5 parent: 2 - - uid: 13463 + - uid: 7003 components: - type: Transform pos: 26.5,-42.5 parent: 2 - - uid: 13464 + - uid: 7004 components: - type: Transform pos: 25.5,-42.5 parent: 2 - - uid: 13465 + - uid: 7005 components: - type: Transform pos: 25.5,-43.5 parent: 2 - - uid: 13466 + - uid: 7006 components: - type: Transform pos: 25.5,-44.5 parent: 2 - - uid: 13468 + - uid: 7007 components: - type: Transform pos: 28.5,-42.5 parent: 2 - - uid: 13469 + - uid: 7008 components: - type: Transform pos: 29.5,-42.5 parent: 2 - - uid: 13470 + - uid: 7009 components: - type: Transform pos: 29.5,-43.5 parent: 2 - - uid: 13471 + - uid: 7010 components: - type: Transform pos: 29.5,-44.5 parent: 2 - - uid: 13473 + - uid: 7011 components: - type: Transform pos: 27.5,-39.5 parent: 2 - - uid: 13474 + - uid: 7012 components: - type: Transform pos: 27.5,-36.5 parent: 2 - - uid: 13475 + - uid: 7013 components: - type: Transform pos: 26.5,-39.5 parent: 2 - - uid: 13476 + - uid: 7014 components: - type: Transform pos: 29.5,-36.5 parent: 2 - - uid: 13484 + - uid: 7015 components: - type: Transform pos: 26.5,-40.5 parent: 2 - - uid: 14190 + - uid: 7016 components: - type: Transform pos: -7.5,-29.5 parent: 2 - - uid: 14334 + - uid: 7017 components: - type: Transform pos: -62.5,-15.5 parent: 2 - - uid: 14735 + - uid: 7018 components: - type: Transform pos: 42.5,-0.5 parent: 2 - - uid: 14739 + - uid: 7019 components: - type: Transform pos: 43.5,-1.5 parent: 2 - - uid: 14740 + - uid: 7020 components: - type: Transform pos: 43.5,-2.5 parent: 2 - - uid: 14910 + - uid: 7021 components: - type: Transform pos: 64.5,-12.5 parent: 2 - - uid: 15016 + - uid: 7022 components: - type: Transform pos: 49.5,18.5 parent: 2 - - uid: 15282 + - uid: 7023 components: - type: Transform pos: 57.5,-9.5 parent: 2 - - uid: 15284 + - uid: 7024 components: - type: Transform pos: 47.5,-15.5 parent: 2 - - uid: 15292 + - uid: 7025 components: - type: Transform pos: 60.5,-17.5 parent: 2 - - uid: 15357 + - uid: 7026 components: - type: Transform pos: 50.5,-14.5 parent: 2 - - uid: 15589 + - uid: 7027 components: - type: Transform pos: 44.5,-4.5 parent: 2 - - uid: 15604 + - uid: 7028 components: - type: Transform pos: 44.5,-5.5 parent: 2 - - uid: 15605 + - uid: 7029 components: - type: Transform pos: 56.5,-0.5 parent: 2 - - uid: 15731 + - uid: 7030 components: - type: Transform pos: 57.5,-11.5 parent: 2 - - uid: 16228 + - uid: 7031 components: - type: Transform pos: 45.5,-4.5 parent: 2 - - uid: 16996 + - uid: 7032 components: - type: Transform pos: 47.5,-14.5 parent: 2 - - uid: 17464 + - uid: 7033 components: - type: Transform pos: 57.5,-10.5 parent: 2 - - uid: 17801 + - uid: 7034 components: - type: Transform pos: -58.5,-20.5 parent: 2 - - uid: 17849 + - uid: 7035 components: - type: Transform pos: 48.5,-14.5 parent: 2 - - uid: 18455 + - uid: 7036 components: - type: Transform pos: 58.5,6.5 parent: 2 - - uid: 18458 + - uid: 7037 components: - type: Transform pos: 57.5,6.5 parent: 2 - - uid: 18576 + - uid: 7038 components: - type: Transform pos: 59.5,13.5 parent: 2 - - uid: 18595 + - uid: 7039 components: - type: Transform pos: 59.5,12.5 parent: 2 - - uid: 18611 + - uid: 7040 components: - type: Transform pos: 59.5,14.5 parent: 2 - - uid: 18650 + - uid: 7041 components: - type: Transform pos: 48.5,-19.5 parent: 2 - - uid: 18667 + - uid: 7042 components: - type: Transform pos: -58.5,-19.5 parent: 2 - - uid: 18668 + - uid: 7043 components: - type: Transform pos: -62.5,-16.5 parent: 2 - - uid: 18965 + - uid: 7044 components: - type: Transform pos: 58.5,14.5 parent: 2 - - uid: 18970 + - uid: 7045 components: - type: Transform pos: 57.5,14.5 parent: 2 - - uid: 18971 + - uid: 7046 components: - type: Transform pos: 62.5,14.5 parent: 2 - - uid: 18984 + - uid: 7047 components: - type: Transform pos: 60.5,14.5 parent: 2 - - uid: 18986 + - uid: 7048 components: - type: Transform pos: 68.5,14.5 parent: 2 - - uid: 18988 + - uid: 7049 components: - type: Transform pos: 62.5,15.5 parent: 2 - - uid: 18989 + - uid: 7050 components: - type: Transform pos: 64.5,14.5 parent: 2 - - uid: 19024 + - uid: 7051 components: - type: Transform pos: 63.5,14.5 parent: 2 - - uid: 19025 + - uid: 7052 components: - type: Transform pos: 65.5,14.5 parent: 2 - - uid: 19091 + - uid: 7053 components: - type: Transform pos: 66.5,14.5 parent: 2 - - uid: 19092 + - uid: 7054 components: - type: Transform pos: 61.5,14.5 parent: 2 - - uid: 19110 + - uid: 7055 components: - type: Transform pos: 67.5,14.5 parent: 2 - - uid: 19452 + - uid: 7056 components: - type: Transform pos: 41.5,-0.5 parent: 2 - - uid: 19453 + - uid: 7057 components: - type: Transform pos: 41.5,0.5 parent: 2 - - uid: 19576 + - uid: 7058 components: - type: Transform pos: 57.5,7.5 parent: 2 - - uid: 19577 + - uid: 7059 components: - type: Transform pos: 57.5,8.5 parent: 2 - - uid: 19645 + - uid: 7060 components: - type: Transform pos: 66.5,10.5 parent: 2 - - uid: 19646 + - uid: 7061 components: - type: Transform pos: 62.5,10.5 parent: 2 - - uid: 19647 + - uid: 7062 components: - type: Transform pos: 62.5,9.5 parent: 2 - - uid: 21314 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 21045 - - uid: 21315 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 21045 - - uid: 21316 - components: - - type: Transform - pos: -0.5,0.5 - parent: 21045 - - uid: 21317 - components: - - type: Transform - pos: 0.5,0.5 - parent: 21045 - - uid: 21533 - components: - - type: Transform - pos: 0.5,1.5 - parent: 21045 - - uid: 21534 - components: - - type: Transform - pos: 0.5,2.5 - parent: 21045 - - uid: 21535 - components: - - type: Transform - pos: 0.5,3.5 - parent: 21045 - - uid: 21536 - components: - - type: Transform - pos: 1.5,0.5 - parent: 21045 - - uid: 21563 - components: - - type: Transform - pos: 2.5,0.5 - parent: 21045 - - uid: 21564 - components: - - type: Transform - pos: 2.5,1.5 - parent: 21045 - - uid: 21600 - components: - - type: Transform - pos: 3.5,1.5 - parent: 21045 - - uid: 21608 - components: - - type: Transform - pos: 4.5,1.5 - parent: 21045 - - uid: 21610 - components: - - type: Transform - pos: -1.5,0.5 - parent: 21045 - - uid: 21622 - components: - - type: Transform - pos: -1.5,1.5 - parent: 21045 - - uid: 21623 - components: - - type: Transform - pos: -2.5,1.5 - parent: 21045 - - uid: 21624 - components: - - type: Transform - pos: -3.5,1.5 - parent: 21045 - - uid: 22394 + - uid: 7063 components: - type: Transform pos: 84.5,-65.5 parent: 2 - - uid: 22774 + - uid: 7064 components: - type: Transform pos: -61.5,-16.5 parent: 2 - - uid: 23048 + - uid: 7065 components: - type: Transform pos: 40.5,-0.5 parent: 2 - - uid: 23156 + - uid: 7066 components: - type: Transform pos: -18.5,19.5 parent: 2 - - uid: 23278 + - uid: 7067 components: - type: Transform pos: 85.5,-65.5 parent: 2 - - uid: 23908 + - uid: 7068 components: - type: Transform pos: 56.5,4.5 parent: 2 - - uid: 24336 + - uid: 7069 components: - type: Transform pos: 77.5,-8.5 parent: 2 - - uid: 24698 + - uid: 7070 components: - type: Transform pos: 72.5,-2.5 parent: 2 - - uid: 24700 + - uid: 7071 components: - type: Transform pos: 67.5,-3.5 parent: 2 - - uid: 24702 + - uid: 7072 components: - type: Transform pos: 68.5,-3.5 parent: 2 - - uid: 24703 + - uid: 7073 components: - type: Transform pos: 69.5,-3.5 parent: 2 - - uid: 24783 + - uid: 7074 components: - type: Transform pos: -10.5,-10.5 parent: 2 - - uid: 24789 + - uid: 7075 components: - type: Transform pos: -17.5,-10.5 parent: 2 - - uid: 24825 + - uid: 7076 components: - type: Transform pos: 71.5,3.5 parent: 2 - - uid: 24839 + - uid: 7077 components: - type: Transform pos: -16.5,-10.5 parent: 2 - - uid: 24840 + - uid: 7078 components: - type: Transform pos: -15.5,-10.5 parent: 2 - - uid: 24927 + - uid: 7079 components: - type: Transform pos: -14.5,-10.5 parent: 2 - - uid: 24937 + - uid: 7080 components: - type: Transform pos: -13.5,-10.5 parent: 2 - - uid: 24938 + - uid: 7081 components: - type: Transform pos: -12.5,-10.5 parent: 2 - - uid: 24939 + - uid: 7082 components: - type: Transform pos: -11.5,-10.5 parent: 2 - - uid: 24954 + - uid: 7083 components: - type: Transform pos: -10.5,-11.5 parent: 2 - - uid: 24969 + - uid: 7084 components: - type: Transform pos: -9.5,-11.5 parent: 2 - - uid: 24972 + - uid: 7085 components: - type: Transform pos: -8.5,-11.5 parent: 2 - - uid: 24973 + - uid: 7086 components: - type: Transform pos: -7.5,-11.5 parent: 2 - - uid: 24974 + - uid: 7087 components: - type: Transform pos: -6.5,-11.5 parent: 2 - - uid: 24975 + - uid: 7088 components: - type: Transform pos: -5.5,-11.5 parent: 2 - - uid: 24976 + - uid: 7089 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 24977 + - uid: 7090 components: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 24978 + - uid: 7091 components: - type: Transform pos: -2.5,-11.5 parent: 2 - - uid: 24979 + - uid: 7092 components: - type: Transform pos: -1.5,-11.5 parent: 2 - - uid: 24980 + - uid: 7093 components: - type: Transform pos: -1.5,-12.5 parent: 2 - - uid: 24981 + - uid: 7094 components: - type: Transform pos: -1.5,-13.5 parent: 2 - - uid: 24982 + - uid: 7095 components: - type: Transform pos: -1.5,-14.5 parent: 2 - - uid: 24983 + - uid: 7096 components: - type: Transform pos: -0.5,-14.5 parent: 2 - - uid: 24984 + - uid: 7097 components: - type: Transform pos: 0.5,-14.5 parent: 2 - - uid: 24985 + - uid: 7098 components: - type: Transform pos: 1.5,-14.5 parent: 2 - - uid: 25016 + - uid: 7099 components: - type: Transform pos: 2.5,-14.5 parent: 2 - - uid: 25029 + - uid: 7100 components: - type: Transform pos: 3.5,-14.5 parent: 2 - - uid: 25030 + - uid: 7101 components: - type: Transform pos: 4.5,-14.5 parent: 2 - - uid: 25251 + - uid: 7102 components: - type: Transform pos: 77.5,-3.5 parent: 2 - - uid: 26208 + - uid: 7103 components: - type: Transform pos: -58.5,-18.5 parent: 2 - - uid: 26342 + - uid: 7104 components: - type: Transform pos: -58.5,-22.5 parent: 2 - - uid: 26343 + - uid: 7105 components: - type: Transform pos: -58.5,-23.5 parent: 2 - - uid: 26345 + - uid: 7106 components: - type: Transform pos: -58.5,-21.5 parent: 2 - - uid: 26379 + - uid: 7107 components: - type: Transform pos: -61.5,-18.5 parent: 2 - - uid: 26787 + - uid: 7108 components: - type: Transform pos: 77.5,-9.5 parent: 2 - - uid: 27383 + - uid: 7109 components: - type: Transform pos: 71.5,-2.5 parent: 2 - - uid: 27430 + - uid: 7110 components: - type: Transform pos: 74.5,-2.5 parent: 2 - - uid: 27743 + - uid: 7111 components: - type: Transform pos: 82.5,-0.5 parent: 2 - - uid: 27744 + - uid: 7112 components: - type: Transform pos: 86.5,-2.5 parent: 2 - - uid: 27831 + - uid: 7113 components: - type: Transform pos: 74.5,-3.5 parent: 2 - - uid: 27832 + - uid: 7114 components: - type: Transform pos: 82.5,-2.5 parent: 2 - - uid: 27934 + - uid: 7115 components: - type: Transform pos: -18.5,17.5 parent: 2 - - uid: 27966 + - uid: 7116 components: - type: Transform pos: 82.5,0.5 parent: 2 - - uid: 27970 + - uid: 7117 components: - type: Transform pos: -18.5,16.5 parent: 2 - - uid: 28053 + - uid: 7118 components: - type: Transform pos: -18.5,18.5 parent: 2 - - uid: 28689 + - uid: 7119 components: - type: Transform pos: -61.5,-16.5 parent: 2 - - uid: 29243 + - uid: 7120 components: - type: Transform pos: 75.5,-3.5 parent: 2 - - uid: 29298 + - uid: 7121 components: - type: Transform pos: 76.5,-3.5 parent: 2 - - uid: 29909 + - uid: 7122 components: - type: Transform pos: -8.5,-7.5 parent: 2 - - uid: 29910 + - uid: 7123 components: - type: Transform pos: -7.5,-7.5 parent: 2 - - uid: 29911 + - uid: 7124 components: - type: Transform pos: -6.5,-7.5 parent: 2 - - uid: 29955 + - uid: 7125 components: - type: Transform pos: -6.5,-6.5 parent: 2 - - uid: 29956 + - uid: 7126 components: - type: Transform pos: -6.5,-5.5 parent: 2 - - uid: 29957 + - uid: 7127 components: - type: Transform pos: -5.5,-5.5 parent: 2 - - uid: 29958 + - uid: 7128 components: - type: Transform pos: -4.5,-5.5 parent: 2 - - uid: 29968 + - uid: 7129 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 29969 + - uid: 7130 components: - type: Transform pos: -3.5,-6.5 parent: 2 - - uid: 29976 + - uid: 7131 components: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 30267 + - uid: 7132 components: - type: Transform pos: 6.5,-9.5 parent: 2 - - uid: 30268 + - uid: 7133 components: - type: Transform pos: 6.5,-8.5 parent: 2 - - uid: 30269 + - uid: 7134 components: - type: Transform pos: 6.5,-7.5 parent: 2 - - uid: 30270 + - uid: 7135 components: - type: Transform pos: 7.5,-7.5 parent: 2 - - uid: 30271 + - uid: 7136 components: - type: Transform pos: 8.5,-7.5 parent: 2 - - uid: 30278 + - uid: 7137 components: - type: Transform pos: 5.5,-7.5 parent: 2 - - uid: 30279 + - uid: 7138 components: - type: Transform pos: 4.5,-7.5 parent: 2 - - uid: 30282 + - uid: 7139 components: - type: Transform pos: 3.5,-7.5 parent: 2 - - uid: 30399 + - uid: 7140 components: - type: Transform pos: 59.5,-12.5 parent: 2 - - uid: 30415 + - uid: 7141 components: - type: Transform pos: 70.5,-2.5 parent: 2 - - uid: 31431 + - uid: 7142 components: - type: Transform pos: 79.5,-3.5 parent: 2 - - uid: 31432 + - uid: 7143 components: - type: Transform pos: 78.5,-3.5 parent: 2 - - uid: 31433 + - uid: 7144 components: - type: Transform pos: 80.5,-3.5 parent: 2 - - uid: 31456 + - uid: 7145 components: - type: Transform pos: 82.5,-3.5 parent: 2 - - uid: 31459 + - uid: 7146 components: - type: Transform pos: 81.5,-3.5 parent: 2 - - uid: 31471 + - uid: 7147 components: - type: Transform pos: 84.5,-3.5 parent: 2 - - uid: 31473 + - uid: 7148 components: - type: Transform pos: 85.5,-3.5 parent: 2 - - uid: 31474 + - uid: 7149 components: - type: Transform pos: 86.5,-3.5 parent: 2 - - uid: 31475 + - uid: 7150 components: - type: Transform pos: 83.5,-3.5 parent: 2 - - uid: 31476 + - uid: 7151 components: - type: Transform pos: 86.5,-0.5 parent: 2 - - uid: 31477 + - uid: 7152 components: - type: Transform pos: 86.5,0.5 parent: 2 - - uid: 31478 + - uid: 7153 components: - type: Transform pos: 82.5,-1.5 parent: 2 - - uid: 31479 + - uid: 7154 components: - type: Transform pos: 78.5,-2.5 parent: 2 - - uid: 31480 + - uid: 7155 components: - type: Transform pos: 78.5,-1.5 parent: 2 - - uid: 31481 + - uid: 7156 components: - type: Transform pos: 78.5,-0.5 parent: 2 - - uid: 31482 + - uid: 7157 components: - type: Transform pos: 78.5,0.5 parent: 2 - - uid: 31483 + - uid: 7158 components: - type: Transform pos: 81.5,-4.5 parent: 2 - - uid: 31484 + - uid: 7159 components: - type: Transform pos: 81.5,-6.5 parent: 2 - - uid: 31485 + - uid: 7160 components: - type: Transform pos: 81.5,-7.5 parent: 2 - - uid: 31486 + - uid: 7161 components: - type: Transform pos: 81.5,-8.5 parent: 2 - - uid: 31487 + - uid: 7162 components: - type: Transform pos: 81.5,-9.5 parent: 2 - - uid: 31488 + - uid: 7163 components: - type: Transform pos: 81.5,-10.5 parent: 2 - - uid: 31489 + - uid: 7164 components: - type: Transform pos: 81.5,-5.5 parent: 2 - - uid: 31490 + - uid: 7165 components: - type: Transform pos: 74.5,2.5 parent: 2 - - uid: 31492 + - uid: 7166 components: - type: Transform pos: 77.5,-10.5 parent: 2 - - uid: 31493 + - uid: 7167 components: - type: Transform pos: 76.5,-10.5 parent: 2 - - uid: 31495 + - uid: 7168 components: - type: Transform pos: 76.5,-11.5 parent: 2 - - uid: 31496 + - uid: 7169 components: - type: Transform pos: 75.5,-11.5 parent: 2 - - uid: 31497 + - uid: 7170 components: - type: Transform pos: 73.5,-11.5 parent: 2 - - uid: 31498 + - uid: 7171 components: - type: Transform pos: 72.5,-11.5 parent: 2 - - uid: 31499 + - uid: 7172 components: - type: Transform pos: 74.5,-11.5 parent: 2 - - uid: 31500 + - uid: 7173 components: - type: Transform pos: 72.5,-12.5 parent: 2 - - uid: 31501 + - uid: 7174 components: - type: Transform pos: 82.5,-7.5 parent: 2 - - uid: 31502 + - uid: 7175 components: - type: Transform pos: 84.5,-7.5 parent: 2 - - uid: 31503 + - uid: 7176 components: - type: Transform pos: 85.5,-7.5 parent: 2 - - uid: 31504 + - uid: 7177 components: - type: Transform pos: 86.5,-7.5 parent: 2 - - uid: 31505 + - uid: 7178 components: - type: Transform pos: 87.5,-7.5 parent: 2 - - uid: 31506 + - uid: 7179 components: - type: Transform pos: 88.5,-7.5 parent: 2 - - uid: 31507 + - uid: 7180 components: - type: Transform pos: 83.5,-7.5 parent: 2 - - uid: 31508 + - uid: 7181 components: - type: Transform pos: 89.5,-7.5 parent: 2 - - uid: 31509 + - uid: 7182 components: - type: Transform pos: 89.5,-6.5 parent: 2 - - uid: 31510 + - uid: 7183 components: - type: Transform pos: 89.5,-4.5 parent: 2 - - uid: 31511 + - uid: 7184 components: - type: Transform pos: 89.5,-5.5 parent: 2 - - uid: 31512 + - uid: 7185 components: - type: Transform pos: 87.5,-8.5 parent: 2 - - uid: 31513 + - uid: 7186 components: - type: Transform pos: 87.5,-10.5 parent: 2 - - uid: 31514 + - uid: 7187 components: - type: Transform pos: 87.5,-9.5 parent: 2 - - uid: 31515 + - uid: 7188 components: - type: Transform pos: 73.5,-2.5 parent: 2 - - uid: 31517 + - uid: 7189 components: - type: Transform pos: 69.5,-2.5 parent: 2 - - uid: 32762 + - uid: 7190 components: - type: Transform pos: 58.5,-12.5 parent: 2 - - uid: 33833 + - uid: 7191 components: - type: Transform pos: 59.5,-57.5 parent: 2 - - uid: 33834 + - uid: 7192 components: - type: Transform pos: 59.5,-56.5 parent: 2 - - uid: 33835 + - uid: 7193 components: - type: Transform pos: 59.5,-55.5 parent: 2 - - uid: 33836 + - uid: 7194 components: - type: Transform pos: 58.5,-55.5 parent: 2 - - uid: 33837 + - uid: 7195 components: - type: Transform pos: 57.5,-55.5 parent: 2 - - uid: 33838 + - uid: 7196 components: - type: Transform pos: 57.5,-54.5 parent: 2 - - uid: 33839 + - uid: 7197 components: - type: Transform pos: 57.5,-53.5 parent: 2 - - uid: 33840 + - uid: 7198 components: - type: Transform pos: 57.5,-52.5 parent: 2 - - uid: 33841 + - uid: 7199 components: - type: Transform pos: 57.5,-51.5 parent: 2 - - uid: 33842 + - uid: 7200 components: - type: Transform pos: 57.5,-50.5 parent: 2 - - uid: 33843 + - uid: 7201 components: - type: Transform pos: 56.5,-50.5 parent: 2 - - uid: 33844 + - uid: 7202 components: - type: Transform pos: 58.5,-50.5 parent: 2 - - uid: 33845 + - uid: 7203 components: - type: Transform pos: 59.5,-50.5 parent: 2 - - uid: 33846 + - uid: 7204 components: - type: Transform pos: 60.5,-50.5 parent: 2 - - uid: 33847 + - uid: 7205 components: - type: Transform pos: 55.5,-50.5 parent: 2 - - uid: 33848 + - uid: 7206 components: - type: Transform pos: 56.5,-55.5 parent: 2 - - uid: 33849 + - uid: 7207 components: - type: Transform pos: 55.5,-55.5 parent: 2 - - uid: 33850 + - uid: 7208 components: - type: Transform pos: 60.5,-55.5 parent: 2 - - uid: 33879 + - uid: 7209 components: - type: Transform pos: -61.5,-17.5 parent: 2 - - uid: 33880 + - uid: 7210 components: - type: Transform pos: -58.5,-17.5 parent: 2 - - uid: 34258 + - uid: 7211 components: - type: Transform pos: -94.5,-9.5 parent: 2 - - uid: 34525 + - uid: 7212 components: - type: Transform pos: 79.5,5.5 parent: 2 - - uid: 35084 + - uid: 7213 components: - type: Transform pos: 79.5,4.5 parent: 2 - - uid: 35087 + - uid: 7214 components: - type: Transform pos: 74.5,4.5 parent: 2 - - uid: 35088 + - uid: 7215 components: - type: Transform pos: 79.5,6.5 parent: 2 - - uid: 35089 + - uid: 7216 components: - type: Transform pos: 78.5,4.5 parent: 2 - - uid: 35090 + - uid: 7217 components: - type: Transform pos: 77.5,4.5 parent: 2 - - uid: 35091 + - uid: 7218 components: - type: Transform pos: 76.5,4.5 parent: 2 - - uid: 35092 + - uid: 7219 components: - type: Transform pos: 75.5,4.5 parent: 2 - - uid: 35094 + - uid: 7220 components: - type: Transform pos: 73.5,3.5 parent: 2 - - uid: 35095 + - uid: 7221 components: - type: Transform pos: 74.5,5.5 parent: 2 - - uid: 35096 + - uid: 7222 components: - type: Transform pos: 54.5,4.5 parent: 2 - - uid: 35097 + - uid: 7223 components: - type: Transform pos: 74.5,6.5 parent: 2 - - uid: 35098 + - uid: 7224 components: - type: Transform pos: 53.5,4.5 parent: 2 - - uid: 35106 + - uid: 7225 components: - type: Transform pos: 52.5,4.5 parent: 2 - - uid: 35554 + - uid: 7226 components: - type: Transform pos: 51.5,4.5 parent: 2 - - uid: 35764 + - uid: 7227 components: - type: Transform pos: 18.5,20.5 parent: 2 - - uid: 35765 + - uid: 7228 components: - type: Transform pos: 17.5,20.5 parent: 2 - - uid: 35766 + - uid: 7229 components: - type: Transform pos: 16.5,20.5 parent: 2 - - uid: 35767 + - uid: 7230 components: - type: Transform pos: 15.5,20.5 parent: 2 - - uid: 35768 + - uid: 7231 components: - type: Transform pos: 14.5,20.5 parent: 2 - - uid: 35772 + - uid: 7232 components: - type: Transform pos: 14.5,21.5 parent: 2 - - uid: 35773 + - uid: 7233 components: - type: Transform pos: 14.5,22.5 parent: 2 - - uid: 35774 + - uid: 7234 components: - type: Transform pos: 18.5,19.5 parent: 2 - - uid: 35775 + - uid: 7235 components: - type: Transform pos: 18.5,18.5 parent: 2 - - uid: 35776 + - uid: 7236 components: - type: Transform pos: 14.5,19.5 parent: 2 - - uid: 35777 + - uid: 7237 components: - type: Transform pos: 14.5,18.5 parent: 2 - - uid: 35778 + - uid: 7238 components: - type: Transform pos: 18.5,21.5 parent: 2 - - uid: 35779 + - uid: 7239 components: - type: Transform pos: 18.5,22.5 parent: 2 - - uid: 35783 + - uid: 7240 components: - type: Transform pos: 51.5,5.5 parent: 2 - - uid: 35784 + - uid: 7241 components: - type: Transform pos: 51.5,3.5 parent: 2 - - uid: 36064 + - uid: 7242 components: - type: Transform pos: 71.5,-5.5 parent: 2 - - uid: 36072 + - uid: 7243 components: - type: Transform pos: 74.5,3.5 parent: 2 - - uid: 36719 + - uid: 7244 components: - type: Transform pos: 18.5,17.5 parent: 2 - - uid: 36725 + - uid: 7245 components: - type: Transform pos: -11.5,19.5 parent: 2 - - uid: 36764 + - uid: 7246 components: - type: Transform pos: -10.5,19.5 parent: 2 - - uid: 36769 + - uid: 7247 components: - type: Transform pos: -12.5,19.5 parent: 2 - - uid: 36828 + - uid: 7248 components: - type: Transform pos: -13.5,19.5 parent: 2 - - uid: 36836 + - uid: 7249 components: - type: Transform pos: -13.5,18.5 parent: 2 - - uid: 36845 + - uid: 7250 components: - type: Transform pos: -13.5,17.5 parent: 2 - - uid: 36876 + - uid: 7251 components: - type: Transform pos: -13.5,20.5 parent: 2 - - uid: 36881 + - uid: 7252 components: - type: Transform pos: 72.5,3.5 parent: 2 - - uid: 36889 + - uid: 7253 components: - type: Transform pos: 55.5,4.5 parent: 2 - - uid: 36890 + - uid: 7254 components: - type: Transform pos: 66.5,-0.5 parent: 2 - - uid: 36891 + - uid: 7255 components: - type: Transform pos: 66.5,-1.5 parent: 2 - - uid: 36892 + - uid: 7256 components: - type: Transform pos: 65.5,-1.5 parent: 2 - - uid: 36893 + - uid: 7257 components: - type: Transform pos: 64.5,-1.5 parent: 2 - - uid: 36895 + - uid: 7258 components: - type: Transform pos: 64.5,-2.5 parent: 2 - - uid: 36896 + - uid: 7259 components: - type: Transform pos: 64.5,-4.5 parent: 2 - - uid: 36897 + - uid: 7260 components: - type: Transform pos: 64.5,-3.5 parent: 2 - - uid: 36898 + - uid: 7261 components: - type: Transform pos: 60.5,-0.5 parent: 2 - - uid: 36900 + - uid: 7262 components: - type: Transform pos: 61.5,-0.5 parent: 2 - - uid: 36904 + - uid: 7263 components: - type: Transform pos: 59.5,-0.5 parent: 2 - - uid: 36905 + - uid: 7264 components: - type: Transform pos: 58.5,-0.5 parent: 2 - - uid: 36906 + - uid: 7265 components: - type: Transform pos: 57.5,-0.5 parent: 2 - - uid: 36909 + - uid: 7266 components: - type: Transform pos: 63.5,4.5 parent: 2 - - uid: 36910 + - uid: 7267 components: - type: Transform pos: 55.5,-0.5 parent: 2 - - uid: 36911 + - uid: 7268 components: - type: Transform pos: 58.5,-1.5 parent: 2 - - uid: 36912 + - uid: 7269 components: - type: Transform pos: 58.5,-2.5 parent: 2 - - uid: 36913 + - uid: 7270 components: - type: Transform pos: 58.5,-3.5 parent: 2 - - uid: 36914 + - uid: 7271 components: - type: Transform pos: 58.5,-4.5 parent: 2 - - uid: 36930 + - uid: 7272 components: - type: Transform pos: 70.5,-5.5 parent: 2 - - uid: 36957 + - uid: 7273 components: - type: Transform pos: 69.5,-5.5 parent: 2 - - uid: 36979 + - uid: 7274 components: - type: Transform pos: 69.5,-6.5 parent: 2 - - uid: 36985 + - uid: 7275 components: - type: Transform pos: 69.5,-8.5 parent: 2 - - uid: 37004 + - uid: 7276 components: - type: Transform pos: 69.5,-9.5 parent: 2 - - uid: 37005 + - uid: 7277 components: - type: Transform pos: 69.5,-10.5 parent: 2 - - uid: 37006 + - uid: 7278 components: - type: Transform pos: 69.5,-7.5 parent: 2 - - uid: 37007 + - uid: 7279 components: - type: Transform pos: 69.5,-11.5 parent: 2 - - uid: 37008 + - uid: 7280 components: - type: Transform pos: 68.5,-7.5 parent: 2 - - uid: 37009 + - uid: 7281 components: - type: Transform pos: 67.5,-7.5 parent: 2 - - uid: 37010 + - uid: 7282 components: - type: Transform pos: 66.5,-7.5 parent: 2 - - uid: 37011 + - uid: 7283 components: - type: Transform pos: 65.5,-7.5 parent: 2 - - uid: 37031 + - uid: 7284 components: - type: Transform pos: 64.5,-7.5 parent: 2 - - uid: 37035 + - uid: 7285 components: - type: Transform pos: 62.5,-7.5 parent: 2 - - uid: 37050 + - uid: 7286 components: - type: Transform pos: 61.5,-7.5 parent: 2 - - uid: 37051 + - uid: 7287 components: - type: Transform pos: 60.5,-7.5 parent: 2 - - uid: 37052 + - uid: 7288 components: - type: Transform pos: 59.5,-7.5 parent: 2 - - uid: 37053 + - uid: 7289 components: - type: Transform pos: 63.5,-7.5 parent: 2 - - uid: 37062 + - uid: 7290 components: - type: Transform pos: 57.5,-13.5 parent: 2 - - uid: 37063 + - uid: 7291 components: - type: Transform pos: 57.5,-14.5 parent: 2 - - uid: 37065 + - uid: 7292 components: - type: Transform pos: 56.5,-14.5 parent: 2 - - uid: 37077 + - uid: 7293 components: - type: Transform pos: 54.5,-14.5 parent: 2 - - uid: 37082 + - uid: 7294 components: - type: Transform pos: 56.5,-81.5 parent: 2 - - uid: 37084 + - uid: 7295 components: - type: Transform pos: 57.5,-81.5 parent: 2 - - uid: 37086 + - uid: 7296 components: - type: Transform pos: 58.5,-81.5 parent: 2 - - uid: 37096 + - uid: 7297 components: - type: Transform pos: 55.5,-14.5 parent: 2 - - uid: 37098 + - uid: 7298 components: - type: Transform pos: 53.5,-14.5 parent: 2 - - uid: 37100 + - uid: 7299 components: - type: Transform pos: 49.5,-3.5 parent: 2 - - uid: 37101 + - uid: 7300 components: - type: Transform pos: 49.5,-2.5 parent: 2 - - uid: 37102 + - uid: 7301 components: - type: Transform pos: 43.5,-4.5 parent: 2 - - uid: 37176 + - uid: 7302 components: - type: Transform pos: 59.5,-81.5 parent: 2 - - uid: 37252 + - uid: 7303 components: - type: Transform pos: 44.5,-6.5 parent: 2 - - uid: 37253 + - uid: 7304 components: - type: Transform pos: 44.5,-7.5 parent: 2 - - uid: 37324 + - uid: 7305 components: - type: Transform pos: 44.5,-8.5 parent: 2 - - uid: 37325 + - uid: 7306 components: - type: Transform pos: 44.5,-9.5 parent: 2 - - uid: 37339 + - uid: 7307 components: - type: Transform pos: 44.5,-11.5 parent: 2 - - uid: 37340 + - uid: 7308 components: - type: Transform pos: 44.5,-10.5 parent: 2 - - uid: 37342 + - uid: 7309 components: - type: Transform pos: 45.5,-14.5 parent: 2 - - uid: 37348 + - uid: 7310 components: - type: Transform pos: 46.5,-14.5 parent: 2 - - uid: 37353 + - uid: 7311 components: - type: Transform pos: 44.5,-14.5 parent: 2 - - uid: 37358 + - uid: 7312 components: - type: Transform pos: 44.5,-15.5 parent: 2 - - uid: 37359 + - uid: 7313 components: - type: Transform pos: 44.5,-16.5 parent: 2 - - uid: 37360 + - uid: 7314 components: - type: Transform pos: 44.5,-17.5 parent: 2 - - uid: 37365 + - uid: 7315 components: - type: Transform pos: 44.5,-18.5 parent: 2 - - uid: 37374 + - uid: 7316 components: - type: Transform pos: 59.5,-80.5 parent: 2 - - uid: 37375 + - uid: 7317 components: - type: Transform pos: 59.5,-82.5 parent: 2 - - uid: 37379 + - uid: 7318 components: - type: Transform pos: 44.5,-19.5 parent: 2 - - uid: 37380 + - uid: 7319 components: - type: Transform pos: 44.5,-20.5 parent: 2 - - uid: 37381 + - uid: 7320 components: - type: Transform pos: 43.5,-20.5 parent: 2 - - uid: 37463 + - uid: 7321 components: - type: Transform pos: 56.5,-80.5 parent: 2 - - uid: 37465 + - uid: 7322 components: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 37466 + - uid: 7323 components: - type: Transform pos: 43.5,-22.5 parent: 2 - - uid: 37467 + - uid: 7324 components: - type: Transform pos: 43.5,-23.5 parent: 2 - - uid: 37468 + - uid: 7325 components: - type: Transform pos: 43.5,-24.5 parent: 2 - - uid: 37514 + - uid: 7326 components: - type: Transform pos: 56.5,-82.5 parent: 2 - - uid: 37693 + - uid: 7327 components: - type: Transform pos: -93.5,-9.5 parent: 2 - - uid: 37694 + - uid: 7328 components: - type: Transform pos: -92.5,-9.5 parent: 2 - - uid: 37695 + - uid: 7329 components: - type: Transform pos: -91.5,-9.5 parent: 2 - - uid: 37696 + - uid: 7330 components: - type: Transform pos: -91.5,-8.5 parent: 2 - - uid: 37697 + - uid: 7331 components: - type: Transform pos: -90.5,-8.5 parent: 2 - - uid: 37698 + - uid: 7332 components: - type: Transform pos: -89.5,-8.5 parent: 2 - - uid: 37699 + - uid: 7333 components: - type: Transform pos: -88.5,-8.5 parent: 2 - - uid: 37700 + - uid: 7334 components: - type: Transform pos: -88.5,-7.5 parent: 2 - - uid: 37701 + - uid: 7335 components: - type: Transform pos: -88.5,-6.5 parent: 2 - - uid: 37702 + - uid: 7336 components: - type: Transform pos: -88.5,-5.5 parent: 2 - - uid: 37836 + - uid: 7337 components: - type: Transform pos: 69.5,2.5 parent: 2 - - uid: 37837 + - uid: 7338 components: - type: Transform pos: 69.5,3.5 parent: 2 - - uid: 37838 + - uid: 7339 components: - type: Transform pos: 70.5,3.5 parent: 2 - - uid: 37844 + - uid: 7340 components: - type: Transform pos: 47.5,18.5 parent: 2 - - uid: 37845 + - uid: 7341 components: - type: Transform pos: 46.5,18.5 parent: 2 - - uid: 37846 + - uid: 7342 components: - type: Transform pos: 48.5,18.5 parent: 2 - - uid: 37948 - components: - - type: Transform - pos: -5.5,-5.5 - parent: 37887 - - uid: 37949 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 37887 - - uid: 37950 - components: - - type: Transform - pos: -3.5,-5.5 - parent: 37887 - - uid: 37951 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 37887 - - uid: 37952 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 37887 - - uid: 37953 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 37887 - - uid: 37954 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 37887 - - uid: 37955 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 37887 - - uid: 37956 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 37887 - - uid: 37957 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 37887 - - uid: 37958 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 37887 - - uid: 37959 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 37887 - - uid: 37960 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 37887 - - uid: 37961 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 37887 - - uid: 37962 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 37887 - - uid: 37963 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 37887 - - uid: 37964 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 37887 - - uid: 37965 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 37887 - - uid: 37966 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 37887 - - uid: 37967 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 37887 - - uid: 37968 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 37887 - - uid: 37969 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 37887 - - uid: 37970 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 37887 - - uid: 37971 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 37887 - - uid: 37972 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 37887 - - uid: 37973 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 37887 - - uid: 37974 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 37887 - - uid: 37975 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 37887 - - uid: 37976 - components: - - type: Transform - pos: 1.5,-8.5 - parent: 37887 - - uid: 37977 - components: - - type: Transform - pos: 1.5,-9.5 - parent: 37887 - - uid: 37978 - components: - - type: Transform - pos: 2.5,-7.5 - parent: 37887 - - uid: 37979 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 37887 - - uid: 37980 - components: - - type: Transform - pos: 2.5,-9.5 - parent: 37887 - - uid: 37981 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 37887 - - uid: 37982 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 37887 - - uid: 37983 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 37887 - - uid: 37984 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 37887 - - uid: 37985 - components: - - type: Transform - pos: 4.5,-10.5 - parent: 37887 - - uid: 37986 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 37887 - - uid: 37987 - components: - - type: Transform - pos: 4.5,-12.5 - parent: 37887 - - uid: 37988 - components: - - type: Transform - pos: 5.5,-12.5 - parent: 37887 - - uid: 37989 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 37887 - - uid: 37990 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 37887 - - uid: 37991 - components: - - type: Transform - pos: -0.5,-8.5 - parent: 37887 - - uid: 37992 - components: - - type: Transform - pos: -0.5,-9.5 - parent: 37887 - - uid: 37993 - components: - - type: Transform - pos: -1.5,-7.5 - parent: 37887 - - uid: 37994 - components: - - type: Transform - pos: -2.5,-7.5 - parent: 37887 - - uid: 37995 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 37887 - - uid: 37996 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 37887 - - uid: 37997 - components: - - type: Transform - pos: -3.5,-9.5 - parent: 37887 - - uid: 37998 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 37887 - - uid: 37999 - components: - - type: Transform - pos: -5.5,-9.5 - parent: 37887 - - uid: 38000 - components: - - type: Transform - pos: -3.5,-10.5 - parent: 37887 - - uid: 38001 - components: - - type: Transform - pos: -3.5,-11.5 - parent: 37887 - - uid: 38002 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 37887 - - uid: 38003 - components: - - type: Transform - pos: -4.5,-12.5 - parent: 37887 - - uid: 38004 - components: - - type: Transform - pos: 1.5,-10.5 - parent: 37887 - - uid: 38005 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 37887 - - uid: 38006 - components: - - type: Transform - pos: -0.5,-10.5 - parent: 37887 - - uid: 38007 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 37887 - - uid: 38008 - components: - - type: Transform - pos: -5.5,-4.5 - parent: 37887 - - uid: 38759 - components: - - type: Transform - pos: 4.5,4.5 - parent: 38722 - - uid: 38760 - components: - - type: Transform - pos: 4.5,3.5 - parent: 38722 - - uid: 38761 - components: - - type: Transform - pos: 4.5,2.5 - parent: 38722 - - uid: 38762 - components: - - type: Transform - pos: 4.5,1.5 - parent: 38722 - - uid: 38763 - components: - - type: Transform - pos: 4.5,5.5 - parent: 38722 - - uid: 38764 - components: - - type: Transform - pos: 5.5,5.5 - parent: 38722 - - uid: 38765 - components: - - type: Transform - pos: 3.5,5.5 - parent: 38722 - - uid: 38766 - components: - - type: Transform - pos: 1.5,-8.5 - parent: 38722 - - uid: 38767 - components: - - type: Transform - pos: 2.5,-8.5 - parent: 38722 - - uid: 38768 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 38722 - - uid: 38769 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 38722 - - uid: 38770 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 38722 - - uid: 38771 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 38722 - - uid: 38772 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 38722 - - uid: 38773 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 38722 - - uid: 38774 - components: - - type: Transform - pos: 4.5,-10.5 - parent: 38722 - - uid: 38775 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 38722 - - uid: 38776 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 38722 - - uid: 38777 - components: - - type: Transform - pos: 4.5,-4.5 - parent: 38722 - - uid: 38778 - components: - - type: Transform - pos: 5.5,-4.5 - parent: 38722 - - uid: 38779 - components: - - type: Transform - pos: 1.5,-9.5 - parent: 38722 - - uid: 38780 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 38722 - - uid: 38781 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 38722 - - uid: 38782 - components: - - type: Transform - pos: 6.5,1.5 - parent: 38722 - - uid: 38783 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 38722 - - uid: 38784 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 38722 - - uid: 38785 - components: - - type: Transform - pos: 5.5,1.5 - parent: 38722 - - uid: 38786 - components: - - type: Transform - pos: 4.5,-7.5 - parent: 38722 - - uid: 38787 - components: - - type: Transform - pos: 1.5,1.5 - parent: 38722 - - uid: 38788 - components: - - type: Transform - pos: 6.5,-10.5 - parent: 38722 - - uid: 38789 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 38722 - - uid: 38790 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 38722 - - uid: 38791 - components: - - type: Transform - pos: 3.5,1.5 - parent: 38722 - - uid: 38792 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 38722 - - uid: 38793 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 38722 - - uid: 38794 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 38722 - - uid: 38795 - components: - - type: Transform - pos: 3.5,0.5 - parent: 38722 - - uid: 38796 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 38722 - - uid: 38797 - components: - - type: Transform - pos: 2.5,1.5 - parent: 38722 - - uid: 38798 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 38722 - - uid: 38799 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 38722 - - uid: 38800 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 38722 - - uid: 39176 + - uid: 7343 components: - type: Transform pos: -9.5,-24.5 parent: 2 - - uid: 39177 + - uid: 7344 components: - type: Transform pos: -10.5,-24.5 parent: 2 - - uid: 39178 + - uid: 7345 components: - type: Transform pos: -10.5,-25.5 parent: 2 - - uid: 39179 + - uid: 7346 components: - type: Transform pos: -10.5,-26.5 parent: 2 - - uid: 39180 + - uid: 7347 components: - type: Transform pos: -10.5,-27.5 parent: 2 - - uid: 39181 + - uid: 7348 components: - type: Transform pos: -10.5,-28.5 parent: 2 - - uid: 39183 + - uid: 7349 components: - type: Transform pos: -9.5,-29.5 parent: 2 - - uid: 39184 + - uid: 7350 components: - type: Transform pos: -8.5,-29.5 parent: 2 - - uid: 39185 + - uid: 7351 components: - type: Transform pos: -11.5,-28.5 parent: 2 - - uid: 39186 + - uid: 7352 components: - type: Transform pos: -13.5,-28.5 parent: 2 - - uid: 39187 + - uid: 7353 components: - type: Transform pos: -12.5,-28.5 parent: 2 - - uid: 39188 + - uid: 7354 components: - type: Transform pos: -11.5,-24.5 parent: 2 - - uid: 39189 + - uid: 7355 components: - type: Transform pos: -12.5,-24.5 parent: 2 - - uid: 39190 + - uid: 7356 components: - type: Transform pos: -18.5,-20.5 parent: 2 - - uid: 39191 + - uid: 7357 components: - type: Transform pos: -18.5,-21.5 parent: 2 - - uid: 39192 + - uid: 7358 components: - type: Transform pos: -18.5,-22.5 parent: 2 - - uid: 39193 + - uid: 7359 components: - type: Transform pos: -18.5,-23.5 parent: 2 - - uid: 39194 + - uid: 7360 components: - type: Transform pos: -18.5,-24.5 parent: 2 - - uid: 39195 + - uid: 7361 components: - type: Transform pos: -18.5,-25.5 parent: 2 - - uid: 39196 + - uid: 7362 components: - type: Transform pos: -5.5,-20.5 parent: 2 - - uid: 39197 + - uid: 7363 components: - type: Transform pos: -5.5,-19.5 parent: 2 - - uid: 39198 + - uid: 7364 components: - type: Transform pos: -5.5,-18.5 parent: 2 - - uid: 39199 + - uid: 7365 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 39200 + - uid: 7366 components: - type: Transform pos: -5.5,-16.5 parent: 2 - - uid: 39201 + - uid: 7367 components: - type: Transform pos: -5.5,-15.5 parent: 2 - - uid: 39202 + - uid: 7368 components: - type: Transform pos: -6.5,-15.5 parent: 2 - - uid: 39203 + - uid: 7369 components: - type: Transform pos: -7.5,-15.5 parent: 2 - - uid: 39204 + - uid: 7370 components: - type: Transform pos: -8.5,-15.5 parent: 2 - - uid: 39205 + - uid: 7371 components: - type: Transform pos: -9.5,-15.5 parent: 2 - - uid: 39206 + - uid: 7372 components: - type: Transform pos: -10.5,-15.5 parent: 2 - - uid: 39207 + - uid: 7373 components: - type: Transform pos: -10.5,-14.5 parent: 2 - - uid: 39208 + - uid: 7374 components: - type: Transform pos: -10.5,-13.5 parent: 2 - - uid: 39209 + - uid: 7375 components: - type: Transform pos: -11.5,-14.5 parent: 2 - - uid: 39210 + - uid: 7376 components: - type: Transform pos: -12.5,-14.5 parent: 2 - - uid: 39211 + - uid: 7377 components: - type: Transform pos: -13.5,-14.5 parent: 2 - - uid: 39212 + - uid: 7378 components: - type: Transform pos: -14.5,-14.5 parent: 2 - - uid: 39213 + - uid: 7379 components: - type: Transform pos: -15.5,-14.5 parent: 2 - - uid: 39214 + - uid: 7380 components: - type: Transform pos: -4.5,-15.5 parent: 2 - - uid: 39215 + - uid: 7381 components: - type: Transform pos: -3.5,-15.5 parent: 2 - - uid: 39216 + - uid: 7382 components: - type: Transform pos: -2.5,-15.5 parent: 2 - - uid: 39217 + - uid: 7383 components: - type: Transform pos: -2.5,-16.5 parent: 2 - - uid: 39218 + - uid: 7384 components: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 39219 + - uid: 7385 components: - type: Transform pos: -1.5,-17.5 parent: 2 - - uid: 39220 + - uid: 7386 components: - type: Transform pos: -0.5,-17.5 parent: 2 - - uid: 39221 + - uid: 7387 components: - type: Transform pos: 0.5,-17.5 parent: 2 - - uid: 39222 + - uid: 7388 components: - type: Transform pos: 1.5,-17.5 parent: 2 - - uid: 39223 + - uid: 7389 components: - type: Transform pos: 2.5,-17.5 parent: 2 - - uid: 39224 + - uid: 7390 components: - type: Transform pos: 3.5,-17.5 parent: 2 - - uid: 39225 + - uid: 7391 components: - type: Transform pos: 4.5,-17.5 parent: 2 - - uid: 39226 + - uid: 7392 components: - type: Transform pos: 5.5,-17.5 parent: 2 - - uid: 39227 + - uid: 7393 components: - type: Transform pos: 5.5,-16.5 parent: 2 - - uid: 39228 + - uid: 7394 components: - type: Transform pos: 5.5,-15.5 parent: 2 - - uid: 39229 + - uid: 7395 components: - type: Transform pos: 5.5,-14.5 parent: 2 - - uid: 39230 + - uid: 7396 components: - type: Transform pos: 5.5,-13.5 parent: 2 - - uid: 39231 + - uid: 7397 components: - type: Transform pos: 5.5,-12.5 parent: 2 - - uid: 39232 + - uid: 7398 components: - type: Transform pos: 4.5,-12.5 parent: 2 - - uid: 39233 + - uid: 7399 components: - type: Transform pos: 3.5,-12.5 parent: 2 - - uid: 39234 + - uid: 7400 components: - type: Transform pos: 2.5,-12.5 parent: 2 - - uid: 39235 + - uid: 7401 components: - type: Transform pos: 1.5,-12.5 parent: 2 - - uid: 39236 + - uid: 7402 components: - type: Transform pos: 0.5,-12.5 parent: 2 - - uid: 39237 + - uid: 7403 components: - type: Transform pos: 5.5,-18.5 parent: 2 - - uid: 39238 + - uid: 7404 components: - type: Transform pos: 5.5,-19.5 parent: 2 - - uid: 39239 + - uid: 7405 components: - type: Transform pos: 6.5,-19.5 parent: 2 - - uid: 39240 + - uid: 7406 components: - type: Transform pos: 6.5,-20.5 parent: 2 - - uid: 39241 + - uid: 7407 components: - type: Transform pos: -9.5,-31.5 parent: 2 - - uid: 39243 + - uid: 7408 components: - type: Transform pos: -9.5,-33.5 parent: 2 - - uid: 39244 + - uid: 7409 components: - type: Transform pos: -10.5,-33.5 parent: 2 - - uid: 39245 + - uid: 7410 components: - type: Transform pos: -10.5,-34.5 parent: 2 - - uid: 39246 + - uid: 7411 components: - type: Transform pos: -10.5,-35.5 parent: 2 - - uid: 39248 + - uid: 7412 components: - type: Transform pos: -7.5,-32.5 parent: 2 - - uid: 39249 + - uid: 7413 components: - type: Transform pos: -6.5,-32.5 parent: 2 - - uid: 39250 + - uid: 7414 components: - type: Transform pos: -5.5,-32.5 parent: 2 - - uid: 39251 + - uid: 7415 components: - type: Transform pos: -5.5,-33.5 parent: 2 - - uid: 39252 + - uid: 7416 components: - type: Transform pos: -16.5,-30.5 parent: 2 - - uid: 39253 + - uid: 7417 components: - type: Transform pos: -16.5,-31.5 parent: 2 - - uid: 39254 + - uid: 7418 components: - type: Transform pos: -5.5,-23.5 parent: 2 - - uid: 39255 + - uid: 7419 components: - type: Transform pos: -5.5,-27.5 parent: 2 - - uid: 39256 + - uid: 7420 components: - type: Transform pos: -16.5,-34.5 parent: 2 - - uid: 39257 + - uid: 7421 components: - type: Transform pos: -5.5,-29.5 parent: 2 - - uid: 39258 + - uid: 7422 components: - type: Transform pos: -5.5,-28.5 parent: 2 - - uid: 39259 + - uid: 7423 components: - type: Transform pos: -5.5,-26.5 parent: 2 - - uid: 39260 + - uid: 7424 components: - type: Transform pos: -5.5,-25.5 parent: 2 - - uid: 39261 + - uid: 7425 components: - type: Transform pos: -5.5,-24.5 parent: 2 - - uid: 39262 + - uid: 7426 components: - type: Transform pos: -17.5,-31.5 parent: 2 - - uid: 39263 + - uid: 7427 components: - type: Transform pos: -18.5,-31.5 parent: 2 - - uid: 39264 + - uid: 7428 components: - type: Transform pos: -18.5,-32.5 parent: 2 - - uid: 39265 + - uid: 7429 components: - type: Transform pos: -18.5,-33.5 parent: 2 - - uid: 39266 + - uid: 7430 components: - type: Transform pos: -18.5,-34.5 parent: 2 - - uid: 39267 + - uid: 7431 components: - type: Transform pos: -18.5,-35.5 parent: 2 - - uid: 39268 + - uid: 7432 components: - type: Transform pos: -18.5,-36.5 parent: 2 - - uid: 39269 + - uid: 7433 components: - type: Transform pos: -18.5,-37.5 parent: 2 - - uid: 39270 + - uid: 7434 components: - type: Transform pos: -18.5,-38.5 parent: 2 - - uid: 39271 + - uid: 7435 components: - type: Transform pos: -18.5,-39.5 parent: 2 - - uid: 39272 + - uid: 7436 components: - type: Transform pos: -18.5,-40.5 parent: 2 - - uid: 39273 + - uid: 7437 components: - type: Transform pos: -5.5,-21.5 parent: 2 - - uid: 39274 + - uid: 7438 components: - type: Transform pos: -5.5,-22.5 parent: 2 - - uid: 39275 + - uid: 7439 components: - type: Transform pos: -14.5,-40.5 parent: 2 - - uid: 39276 + - uid: 7440 components: - type: Transform pos: -5.5,-20.5 parent: 2 - - uid: 39277 + - uid: 7441 components: - type: Transform pos: -14.5,-39.5 parent: 2 - - uid: 39278 + - uid: 7442 components: - type: Transform pos: -14.5,-38.5 parent: 2 - - uid: 39279 + - uid: 7443 components: - type: Transform pos: -14.5,-37.5 parent: 2 - - uid: 39280 + - uid: 7444 components: - type: Transform pos: -14.5,-36.5 parent: 2 - - uid: 39281 + - uid: 7445 components: - type: Transform pos: -14.5,-35.5 parent: 2 - - uid: 39282 + - uid: 7446 components: - type: Transform pos: -14.5,-34.5 parent: 2 - - uid: 39283 + - uid: 7447 components: - type: Transform pos: -14.5,-33.5 parent: 2 - - uid: 39284 + - uid: 7448 components: - type: Transform pos: -14.5,-32.5 parent: 2 - - uid: 39285 + - uid: 7449 components: - type: Transform pos: -14.5,-31.5 parent: 2 - - uid: 39286 + - uid: 7450 components: - type: Transform pos: -15.5,-31.5 parent: 2 - - uid: 39287 + - uid: 7451 components: - type: Transform pos: -4.5,-29.5 parent: 2 - - uid: 39288 + - uid: 7452 components: - type: Transform pos: -3.5,-29.5 parent: 2 - - uid: 39289 + - uid: 7453 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 39290 + - uid: 7454 components: - type: Transform pos: -1.5,-29.5 parent: 2 - - uid: 39291 + - uid: 7455 components: - type: Transform pos: -0.5,-29.5 parent: 2 - - uid: 39292 + - uid: 7456 components: - type: Transform pos: 0.5,-29.5 parent: 2 - - uid: 39293 + - uid: 7457 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 39294 + - uid: 7458 components: - type: Transform pos: 1.5,-28.5 parent: 2 - - uid: 39295 + - uid: 7459 components: - type: Transform pos: 1.5,-27.5 parent: 2 - - uid: 39296 + - uid: 7460 components: - type: Transform pos: 1.5,-26.5 parent: 2 - - uid: 39297 + - uid: 7461 components: - type: Transform pos: 1.5,-25.5 parent: 2 - - uid: 39298 + - uid: 7462 components: - type: Transform pos: 2.5,-25.5 parent: 2 - - uid: 39299 + - uid: 7463 components: - type: Transform pos: 3.5,-25.5 parent: 2 - - uid: 39300 + - uid: 7464 components: - type: Transform pos: 1.5,-24.5 parent: 2 - - uid: 39301 + - uid: 7465 components: - type: Transform pos: 1.5,-23.5 parent: 2 - - uid: 39302 + - uid: 7466 components: - type: Transform pos: 1.5,-22.5 parent: 2 - - uid: 39303 + - uid: 7467 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 39304 + - uid: 7468 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 39305 + - uid: 7469 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 39306 + - uid: 7470 components: - type: Transform pos: 1.5,-32.5 parent: 2 - - uid: 39307 + - uid: 7471 components: - type: Transform pos: 4.5,-25.5 parent: 2 - - uid: 39308 + - uid: 7472 components: - type: Transform pos: 5.5,-25.5 parent: 2 - - uid: 39309 + - uid: 7473 components: - type: Transform pos: 6.5,-25.5 parent: 2 - - uid: 39310 + - uid: 7474 components: - type: Transform pos: 6.5,-24.5 parent: 2 - - uid: 39311 + - uid: 7475 components: - type: Transform pos: 5.5,-26.5 parent: 2 - - uid: 39312 + - uid: 7476 components: - type: Transform pos: 5.5,-27.5 parent: 2 - - uid: 39313 + - uid: 7477 components: - type: Transform pos: 12.5,-12.5 parent: 2 - - uid: 39314 + - uid: 7478 components: - type: Transform pos: 11.5,-12.5 parent: 2 - - uid: 39315 + - uid: 7479 components: - type: Transform pos: 11.5,-13.5 parent: 2 - - uid: 39316 + - uid: 7480 components: - type: Transform pos: 11.5,-14.5 parent: 2 - - uid: 39317 + - uid: 7481 components: - type: Transform pos: 10.5,-14.5 parent: 2 - - uid: 39318 + - uid: 7482 components: - type: Transform pos: 10.5,-15.5 parent: 2 - - uid: 39319 + - uid: 7483 components: - type: Transform pos: 10.5,-16.5 parent: 2 - - uid: 39320 + - uid: 7484 components: - type: Transform pos: 10.5,-17.5 parent: 2 - - uid: 39321 + - uid: 7485 components: - type: Transform pos: 10.5,-18.5 parent: 2 - - uid: 39322 + - uid: 7486 components: - type: Transform pos: 10.5,-19.5 parent: 2 - - uid: 39323 + - uid: 7487 components: - type: Transform pos: 10.5,-20.5 parent: 2 - - uid: 39324 + - uid: 7488 components: - type: Transform pos: 10.5,-21.5 parent: 2 - - uid: 39325 + - uid: 7489 components: - type: Transform pos: 10.5,-22.5 parent: 2 - - uid: 39326 + - uid: 7490 components: - type: Transform pos: 10.5,-23.5 parent: 2 - - uid: 39327 + - uid: 7491 components: - type: Transform pos: 10.5,-24.5 parent: 2 - - uid: 39328 + - uid: 7492 components: - type: Transform pos: 10.5,-25.5 parent: 2 - - uid: 39329 + - uid: 7493 components: - type: Transform pos: 10.5,-26.5 parent: 2 - - uid: 39330 + - uid: 7494 components: - type: Transform pos: 10.5,-27.5 parent: 2 - - uid: 39331 + - uid: 7495 components: - type: Transform pos: 10.5,-28.5 parent: 2 - - uid: 39332 + - uid: 7496 components: - type: Transform pos: 11.5,-28.5 parent: 2 - - uid: 39333 + - uid: 7497 components: - type: Transform pos: 18.5,-21.5 parent: 2 - - uid: 39334 + - uid: 7498 components: - type: Transform pos: 17.5,-21.5 parent: 2 - - uid: 39335 + - uid: 7499 components: - type: Transform pos: 17.5,-20.5 parent: 2 - - uid: 39336 + - uid: 7500 components: - type: Transform pos: 17.5,-19.5 parent: 2 - - uid: 39337 + - uid: 7501 components: - type: Transform pos: 17.5,-18.5 parent: 2 - - uid: 39338 + - uid: 7502 components: - type: Transform pos: 17.5,-17.5 parent: 2 - - uid: 39339 + - uid: 7503 components: - type: Transform pos: 17.5,-16.5 parent: 2 - - uid: 39340 + - uid: 7504 components: - type: Transform pos: 17.5,-15.5 parent: 2 - - uid: 39341 + - uid: 7505 components: - type: Transform pos: 17.5,-14.5 parent: 2 - - uid: 39342 + - uid: 7506 components: - type: Transform pos: 17.5,-13.5 parent: 2 - - uid: 39343 + - uid: 7507 components: - type: Transform pos: 16.5,-16.5 parent: 2 - - uid: 39344 + - uid: 7508 components: - type: Transform pos: 15.5,-16.5 parent: 2 - - uid: 39345 + - uid: 7509 components: - type: Transform pos: 14.5,-16.5 parent: 2 - - uid: 39346 + - uid: 7510 components: - type: Transform pos: 18.5,-16.5 parent: 2 - - uid: 39347 + - uid: 7511 components: - type: Transform pos: 19.5,-16.5 parent: 2 - - uid: 39348 + - uid: 7512 components: - type: Transform pos: 20.5,-16.5 parent: 2 - - uid: 39349 + - uid: 7513 components: - type: Transform pos: 18.5,-19.5 parent: 2 - - uid: 39350 + - uid: 7514 components: - type: Transform pos: 19.5,-19.5 parent: 2 - - uid: 39351 + - uid: 7515 components: - type: Transform pos: 20.5,-19.5 parent: 2 - - uid: 39352 + - uid: 7516 components: - type: Transform pos: 16.5,-19.5 parent: 2 - - uid: 39353 + - uid: 7517 components: - type: Transform pos: 15.5,-19.5 parent: 2 - - uid: 39354 + - uid: 7518 components: - type: Transform pos: 14.5,-19.5 parent: 2 - - uid: 39355 + - uid: 7519 components: - type: Transform pos: 17.5,-22.5 parent: 2 - - uid: 39356 + - uid: 7520 components: - type: Transform pos: 18.5,-22.5 parent: 2 - - uid: 39357 + - uid: 7521 components: - type: Transform pos: 19.5,-22.5 parent: 2 - - uid: 39358 + - uid: 7522 components: - type: Transform pos: 20.5,-22.5 parent: 2 - - uid: 39359 + - uid: 7523 components: - type: Transform pos: 21.5,-22.5 parent: 2 - - uid: 39360 + - uid: 7524 components: - type: Transform pos: 22.5,-22.5 parent: 2 - - uid: 39361 + - uid: 7525 components: - type: Transform pos: 16.5,-22.5 parent: 2 - - uid: 39362 + - uid: 7526 components: - type: Transform pos: 15.5,-22.5 parent: 2 - - uid: 39363 + - uid: 7527 components: - type: Transform pos: 17.5,-23.5 parent: 2 - - uid: 39364 + - uid: 7528 components: - type: Transform pos: 17.5,-24.5 parent: 2 - - uid: 39365 + - uid: 7529 components: - type: Transform pos: 17.5,-25.5 parent: 2 - - uid: 39366 + - uid: 7530 components: - type: Transform pos: 18.5,-25.5 parent: 2 - - uid: 39367 + - uid: 7531 components: - type: Transform pos: 19.5,-25.5 parent: 2 - - uid: 39368 + - uid: 7532 components: - type: Transform pos: 19.5,-26.5 parent: 2 - - uid: 39369 + - uid: 7533 components: - type: Transform pos: 19.5,-27.5 parent: 2 - - uid: 39370 + - uid: 7534 components: - type: Transform pos: 19.5,-28.5 parent: 2 - - uid: 39371 + - uid: 7535 components: - type: Transform pos: 18.5,-28.5 parent: 2 - - uid: 39372 + - uid: 7536 components: - type: Transform pos: 17.5,-28.5 parent: 2 - - uid: 39373 + - uid: 7537 components: - type: Transform pos: 16.5,-28.5 parent: 2 - - uid: 39374 + - uid: 7538 components: - type: Transform pos: 15.5,-28.5 parent: 2 - - uid: 39375 + - uid: 7539 components: - type: Transform pos: 15.5,-29.5 parent: 2 - - uid: 39376 + - uid: 7540 components: - type: Transform pos: 15.5,-30.5 parent: 2 - - uid: 39377 + - uid: 7541 components: - type: Transform pos: 4.5,-49.5 parent: 2 - - uid: 39378 + - uid: 7542 components: - type: Transform pos: 4.5,-48.5 parent: 2 - - uid: 39379 + - uid: 7543 components: - type: Transform pos: 4.5,-47.5 parent: 2 - - uid: 39380 + - uid: 7544 components: - type: Transform pos: 5.5,-47.5 parent: 2 - - uid: 39381 + - uid: 7545 components: - type: Transform pos: 6.5,-47.5 parent: 2 - - uid: 39382 + - uid: 7546 components: - type: Transform pos: 7.5,-47.5 parent: 2 - - uid: 39383 + - uid: 7547 components: - type: Transform pos: 8.5,-47.5 parent: 2 - - uid: 39384 + - uid: 7548 components: - type: Transform pos: 9.5,-47.5 parent: 2 - - uid: 39385 + - uid: 7549 components: - type: Transform pos: 10.5,-47.5 parent: 2 - - uid: 39386 + - uid: 7550 components: - type: Transform pos: 11.5,-47.5 parent: 2 - - uid: 39387 + - uid: 7551 components: - type: Transform pos: 10.5,-48.5 parent: 2 - - uid: 39388 + - uid: 7552 components: - type: Transform pos: 10.5,-49.5 parent: 2 - - uid: 39389 + - uid: 7553 components: - type: Transform pos: 10.5,-50.5 parent: 2 - - uid: 39390 + - uid: 7554 components: - type: Transform pos: 12.5,-47.5 parent: 2 - - uid: 39391 + - uid: 7555 components: - type: Transform pos: 13.5,-47.5 parent: 2 - - uid: 39392 + - uid: 7556 components: - type: Transform pos: 14.5,-47.5 parent: 2 - - uid: 39393 + - uid: 7557 components: - type: Transform pos: 14.5,-46.5 parent: 2 - - uid: 39396 + - uid: 7558 components: - type: Transform pos: -8.5,-50.5 parent: 2 - - uid: 39397 + - uid: 7559 components: - type: Transform pos: -8.5,-49.5 parent: 2 - - uid: 39398 + - uid: 7560 components: - type: Transform pos: -7.5,-49.5 parent: 2 - - uid: 39399 + - uid: 7561 components: - type: Transform pos: -6.5,-49.5 parent: 2 - - uid: 39400 + - uid: 7562 components: - type: Transform pos: -5.5,-49.5 parent: 2 - - uid: 39401 + - uid: 7563 components: - type: Transform pos: -5.5,-50.5 parent: 2 - - uid: 39402 + - uid: 7564 components: - type: Transform pos: -5.5,-51.5 parent: 2 - - uid: 39403 + - uid: 7565 components: - type: Transform pos: -5.5,-52.5 parent: 2 - - uid: 39404 + - uid: 7566 components: - type: Transform pos: -5.5,-53.5 parent: 2 - - uid: 39405 + - uid: 7567 components: - type: Transform pos: -6.5,-54.5 parent: 2 - - uid: 39406 + - uid: 7568 components: - type: Transform pos: -7.5,-54.5 parent: 2 - - uid: 39407 + - uid: 7569 components: - type: Transform pos: -8.5,-54.5 parent: 2 - - uid: 39408 + - uid: 7570 components: - type: Transform pos: -4.5,-54.5 parent: 2 - - uid: 39409 + - uid: 7571 components: - type: Transform pos: -3.5,-54.5 parent: 2 - - uid: 39410 + - uid: 7572 components: - type: Transform pos: -2.5,-54.5 parent: 2 - - uid: 39411 + - uid: 7573 components: - type: Transform pos: -5.5,-53.5 parent: 2 - - uid: 39412 + - uid: 7574 components: - type: Transform pos: -5.5,-54.5 parent: 2 - - uid: 39413 + - uid: 7575 components: - type: Transform pos: -5.5,-48.5 parent: 2 - - uid: 39414 + - uid: 7576 components: - type: Transform pos: -4.5,-48.5 parent: 2 - - uid: 39415 + - uid: 7577 components: - type: Transform pos: -3.5,-48.5 parent: 2 - - uid: 39416 + - uid: 7578 components: - type: Transform pos: -2.5,-48.5 parent: 2 - - uid: 39417 + - uid: 7579 components: - type: Transform pos: -2.5,-47.5 parent: 2 - - uid: 39418 + - uid: 7580 components: - type: Transform pos: -2.5,-46.5 parent: 2 - - uid: 39419 + - uid: 7581 components: - type: Transform pos: -2.5,-49.5 parent: 2 - - uid: 39420 + - uid: 7582 components: - type: Transform pos: -2.5,-50.5 parent: 2 - - uid: 39421 + - uid: 7583 components: - type: Transform pos: -2.5,-51.5 parent: 2 - - uid: 39422 + - uid: 7584 components: - type: Transform pos: -9.5,-49.5 parent: 2 - - uid: 39423 + - uid: 7585 components: - type: Transform pos: -10.5,-49.5 parent: 2 - - uid: 39424 + - uid: 7586 components: - type: Transform pos: -11.5,-49.5 parent: 2 - - uid: 39425 + - uid: 7587 components: - type: Transform pos: -12.5,-49.5 parent: 2 - - uid: 39426 + - uid: 7588 components: - type: Transform pos: -12.5,-48.5 parent: 2 - - uid: 39427 + - uid: 7589 components: - type: Transform pos: -12.5,-47.5 parent: 2 - - uid: 39428 + - uid: 7590 components: - type: Transform pos: -12.5,-46.5 parent: 2 - - uid: 39429 + - uid: 7591 components: - type: Transform pos: -12.5,-45.5 parent: 2 - - uid: 39430 + - uid: 7592 components: - type: Transform pos: -2.5,-45.5 parent: 2 - - uid: 39431 + - uid: 7593 components: - type: Transform pos: -2.5,-44.5 parent: 2 - - uid: 39432 + - uid: 7594 components: - type: Transform pos: -2.5,-43.5 parent: 2 - - uid: 39433 + - uid: 7595 components: - type: Transform pos: -1.5,-43.5 parent: 2 - - uid: 39434 + - uid: 7596 components: - type: Transform pos: -0.5,-43.5 parent: 2 - - uid: 39435 + - uid: 7597 components: - type: Transform pos: -0.5,-44.5 parent: 2 - - uid: 40029 + - uid: 7598 components: - type: Transform pos: 25.5,-31.5 parent: 2 - - uid: 40030 + - uid: 7599 components: - type: Transform pos: 25.5,-30.5 parent: 2 - - uid: 40031 + - uid: 7600 components: - type: Transform pos: 25.5,-29.5 parent: 2 - - uid: 40032 + - uid: 7601 components: - type: Transform pos: -27.5,-42.5 parent: 2 - - uid: 40033 + - uid: 7602 components: - type: Transform pos: -27.5,-41.5 parent: 2 - - uid: 40034 + - uid: 7603 components: - type: Transform pos: -27.5,-40.5 parent: 2 - - uid: 40162 + - uid: 7604 components: - type: Transform pos: -62.5,-18.5 parent: 2 - - uid: 40163 + - uid: 7605 components: - type: Transform pos: -62.5,-19.5 parent: 2 - - uid: 40164 + - uid: 7606 components: - type: Transform pos: -62.5,-20.5 parent: 2 - - uid: 40207 + - uid: 7607 components: - type: Transform pos: 50.5,18.5 parent: 2 - - uid: 40208 + - uid: 7608 components: - type: Transform pos: 51.5,18.5 parent: 2 - - uid: 40209 + - uid: 7609 components: - type: Transform pos: 52.5,18.5 parent: 2 - - uid: 40210 + - uid: 7610 components: - type: Transform pos: 53.5,18.5 parent: 2 - - uid: 40211 + - uid: 7611 components: - type: Transform pos: 54.5,18.5 parent: 2 - - uid: 40212 + - uid: 7612 components: - type: Transform pos: 54.5,17.5 parent: 2 - - uid: 40213 + - uid: 7613 components: - type: Transform pos: 49.5,22.5 parent: 2 - - uid: 40215 + - uid: 7614 components: - type: Transform pos: 51.5,21.5 parent: 2 - - uid: 40216 + - uid: 7615 components: - type: Transform pos: 51.5,20.5 parent: 2 - - uid: 40291 + - uid: 7616 components: - type: Transform pos: 43.5,0.5 parent: 2 - - uid: 40292 + - uid: 7617 components: - type: Transform pos: 43.5,1.5 parent: 2 - - uid: 40293 + - uid: 7618 components: - type: Transform pos: 43.5,2.5 parent: 2 - - uid: 40294 + - uid: 7619 components: - type: Transform pos: 43.5,3.5 parent: 2 - - uid: 40295 + - uid: 7620 components: - type: Transform pos: 43.5,4.5 parent: 2 - - uid: 40296 + - uid: 7621 components: - type: Transform pos: 43.5,5.5 parent: 2 - - uid: 40297 + - uid: 7622 components: - type: Transform pos: 43.5,6.5 parent: 2 - - uid: 40298 + - uid: 7623 components: - type: Transform pos: 43.5,7.5 parent: 2 - - uid: 40299 + - uid: 7624 components: - type: Transform pos: 43.5,8.5 parent: 2 - - uid: 40300 + - uid: 7625 components: - type: Transform pos: 43.5,9.5 parent: 2 - - uid: 40301 + - uid: 7626 components: - type: Transform pos: 42.5,5.5 parent: 2 - - uid: 40303 + - uid: 7627 components: - type: Transform pos: 41.5,5.5 parent: 2 - - uid: 40304 + - uid: 7628 components: - type: Transform pos: 40.5,5.5 parent: 2 - - uid: 40305 + - uid: 7629 components: - type: Transform pos: 42.5,2.5 parent: 2 - - uid: 40306 + - uid: 7630 components: - type: Transform pos: 41.5,2.5 parent: 2 - - uid: 40307 + - uid: 7631 components: - type: Transform pos: 40.5,2.5 parent: 2 - - uid: 40309 + - uid: 7632 components: - type: Transform pos: 44.5,6.5 parent: 2 - - uid: 40310 + - uid: 7633 components: - type: Transform pos: 45.5,6.5 parent: 2 - - uid: 40311 + - uid: 7634 components: - type: Transform pos: 46.5,6.5 parent: 2 - - uid: 40312 + - uid: 7635 components: - type: Transform pos: 47.5,6.5 parent: 2 - - uid: 40313 + - uid: 7636 components: - type: Transform pos: 47.5,7.5 parent: 2 - - uid: 40315 + - uid: 7637 components: - type: Transform pos: 47.5,8.5 parent: 2 - - uid: 40316 + - uid: 7638 components: - type: Transform pos: 47.5,9.5 parent: 2 - - uid: 40317 + - uid: 7639 components: - type: Transform pos: 44.5,4.5 parent: 2 - - uid: 40318 + - uid: 7640 components: - type: Transform pos: 45.5,4.5 parent: 2 - - uid: 40319 + - uid: 7641 components: - type: Transform pos: 46.5,4.5 parent: 2 - - uid: 40320 + - uid: 7642 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 40321 + - uid: 7643 components: - type: Transform pos: 48.5,4.5 parent: 2 - - uid: 40322 + - uid: 7644 components: - type: Transform pos: 44.5,1.5 parent: 2 - - uid: 40323 + - uid: 7645 components: - type: Transform pos: 45.5,1.5 parent: 2 - - uid: 40324 + - uid: 7646 components: - type: Transform pos: 46.5,1.5 parent: 2 - - uid: 40325 + - uid: 7647 components: - type: Transform pos: 47.5,1.5 parent: 2 - - uid: 40327 + - uid: 7648 components: - type: Transform pos: 47.5,-2.5 parent: 2 - - uid: 40329 + - uid: 7649 components: - type: Transform pos: 42.5,-4.5 parent: 2 - - uid: 40331 + - uid: 7650 components: - type: Transform pos: 41.5,-4.5 parent: 2 - - uid: 40336 + - uid: 7651 components: - type: Transform pos: 39.5,-22.5 parent: 2 - - uid: 40337 + - uid: 7652 components: - type: Transform pos: 39.5,-23.5 parent: 2 - - uid: 40338 + - uid: 7653 components: - type: Transform pos: 39.5,-24.5 parent: 2 - - uid: 40339 + - uid: 7654 components: - type: Transform pos: 38.5,-24.5 parent: 2 - - uid: 40340 + - uid: 7655 components: - type: Transform pos: 38.5,-25.5 parent: 2 - - uid: 40341 + - uid: 7656 components: - type: Transform pos: 38.5,-26.5 parent: 2 - - uid: 40342 + - uid: 7657 components: - type: Transform pos: 38.5,-27.5 parent: 2 - - uid: 40343 + - uid: 7658 components: - type: Transform pos: 40.5,-24.5 parent: 2 - - uid: 40344 + - uid: 7659 components: - type: Transform pos: 41.5,-24.5 parent: 2 - - uid: 40345 + - uid: 7660 components: - type: Transform pos: 39.5,-27.5 parent: 2 - - uid: 40346 + - uid: 7661 components: - type: Transform pos: 40.5,-27.5 parent: 2 - - uid: 40347 + - uid: 7662 components: - type: Transform pos: 48.5,-20.5 parent: 2 - - uid: 40348 + - uid: 7663 components: - type: Transform pos: 48.5,-21.5 parent: 2 - - uid: 40349 + - uid: 7664 components: - type: Transform pos: 48.5,-22.5 parent: 2 - - uid: 40350 + - uid: 7665 components: - type: Transform pos: 48.5,-23.5 parent: 2 - - uid: 40351 + - uid: 7666 components: - type: Transform pos: 48.5,-24.5 parent: 2 - - uid: 40352 + - uid: 7667 components: - type: Transform pos: 63.5,-14.5 parent: 2 - - uid: 40353 + - uid: 7668 components: - type: Transform pos: 48.5,-25.5 parent: 2 - - uid: 40354 + - uid: 7669 components: - type: Transform pos: 63.5,-16.5 parent: 2 - - uid: 40355 + - uid: 7670 components: - type: Transform pos: 63.5,-15.5 parent: 2 - - uid: 40382 + - uid: 7671 components: - type: Transform pos: 66.5,0.5 parent: 2 - - uid: 40384 + - uid: 7672 components: - type: Transform pos: 66.5,1.5 parent: 2 - - uid: 40385 + - uid: 7673 components: - type: Transform pos: 63.5,-1.5 parent: 2 - - uid: 40386 + - uid: 7674 components: - type: Transform pos: 63.5,-0.5 parent: 2 - - uid: 40387 + - uid: 7675 components: - type: Transform pos: 63.5,0.5 parent: 2 - - uid: 40390 + - uid: 7676 components: - type: Transform pos: 63.5,-4.5 parent: 2 - - uid: 40391 + - uid: 7677 components: - type: Transform pos: 65.5,-4.5 parent: 2 - - uid: 40424 + - uid: 7678 components: - type: Transform pos: 47.5,22.5 parent: 2 - - uid: 40425 + - uid: 7679 components: - type: Transform pos: 48.5,22.5 parent: 2 - - uid: 40437 + - uid: 7680 components: - type: Transform pos: 43.5,21.5 parent: 2 - - uid: 40522 + - uid: 7681 components: - type: Transform pos: 80.5,-7.5 parent: 2 - - uid: 40523 + - uid: 7682 components: - type: Transform pos: 79.5,-7.5 parent: 2 - - uid: 40524 + - uid: 7683 components: - type: Transform pos: 78.5,-7.5 parent: 2 - - uid: 40525 + - uid: 7684 components: - type: Transform pos: 77.5,-7.5 parent: 2 - - uid: 40526 + - uid: 7685 components: - type: Transform pos: 76.5,-7.5 parent: 2 - - uid: 40527 + - uid: 7686 components: - type: Transform pos: 75.5,-7.5 parent: 2 - - uid: 40528 + - uid: 7687 components: - type: Transform pos: 74.5,-7.5 parent: 2 - - uid: 40529 + - uid: 7688 components: - type: Transform pos: 73.5,-7.5 parent: 2 - - uid: 40530 + - uid: 7689 components: - type: Transform pos: 72.5,-7.5 parent: 2 - - uid: 40531 + - uid: 7690 components: - type: Transform pos: 71.5,-7.5 parent: 2 - - uid: 40532 + - uid: 7691 components: - type: Transform pos: 74.5,1.5 parent: 2 - - uid: 40533 + - uid: 7692 components: - type: Transform pos: 45.5,-9.5 parent: 2 - - uid: 40534 + - uid: 7693 components: - type: Transform pos: 46.5,-9.5 parent: 2 - - uid: 40535 + - uid: 7694 components: - type: Transform pos: 47.5,-9.5 parent: 2 - - uid: 40536 + - uid: 7695 components: - type: Transform pos: 48.5,-9.5 parent: 2 - - uid: 40666 + - uid: 7696 components: - type: Transform pos: 51.5,11.5 parent: 2 - - uid: 40667 + - uid: 7697 components: - type: Transform pos: 51.5,13.5 parent: 2 - - uid: 40668 + - uid: 7698 components: - type: Transform pos: 52.5,10.5 parent: 2 - - uid: 40669 + - uid: 7699 components: - type: Transform pos: 53.5,10.5 parent: 2 - - uid: 40670 + - uid: 7700 components: - type: Transform pos: 52.5,12.5 parent: 2 - - uid: 40671 + - uid: 7701 components: - type: Transform pos: 51.5,14.5 parent: 2 - - uid: 40672 + - uid: 7702 components: - type: Transform pos: 50.5,14.5 parent: 2 - - uid: 40673 + - uid: 7703 components: - type: Transform pos: 49.5,14.5 parent: 2 - - uid: 40674 + - uid: 7704 components: - type: Transform pos: 48.5,14.5 parent: 2 - - uid: 40675 + - uid: 7705 components: - type: Transform pos: 48.5,15.5 parent: 2 - - uid: 40676 + - uid: 7706 components: - type: Transform pos: 47.5,15.5 parent: 2 - - uid: 40677 + - uid: 7707 components: - type: Transform pos: 48.5,13.5 parent: 2 - - uid: 40678 + - uid: 7708 components: - type: Transform pos: 48.5,12.5 parent: 2 - - uid: 40679 + - uid: 7709 components: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 40680 + - uid: 7710 components: - type: Transform pos: 46.5,12.5 parent: 2 - - uid: 40681 + - uid: 7711 components: - type: Transform pos: 45.5,12.5 parent: 2 - - uid: 40682 + - uid: 7712 components: - type: Transform pos: 44.5,12.5 parent: 2 - - uid: 40683 + - uid: 7713 components: - type: Transform pos: 43.5,12.5 parent: 2 - - uid: 40684 + - uid: 7714 components: - type: Transform pos: 43.5,13.5 parent: 2 - - uid: 40685 + - uid: 7715 components: - type: Transform pos: 43.5,14.5 parent: 2 - - uid: 40686 + - uid: 7716 components: - type: Transform pos: 43.5,15.5 parent: 2 - - uid: 40687 + - uid: 7717 components: - type: Transform pos: 51.5,15.5 parent: 2 - - uid: 40699 + - uid: 7718 components: - type: Transform pos: 49.5,11.5 parent: 2 - - uid: 40700 + - uid: 7719 components: - type: Transform pos: 52.5,13.5 parent: 2 - - uid: 40706 + - uid: 7720 components: - type: Transform pos: 54.5,16.5 parent: 2 - - uid: 40707 + - uid: 7721 components: - type: Transform pos: 54.5,15.5 parent: 2 - - uid: 40708 + - uid: 7722 components: - type: Transform pos: 54.5,14.5 parent: 2 - - uid: 40748 + - uid: 7723 components: - type: Transform pos: 52.5,-8.5 parent: 2 - - uid: 40749 + - uid: 7724 components: - type: Transform pos: 52.5,-9.5 parent: 2 - - uid: 40750 + - uid: 7725 components: - type: Transform pos: 52.5,-10.5 parent: 2 - - uid: 40751 + - uid: 7726 components: - type: Transform pos: 52.5,-11.5 parent: 2 - - uid: 40752 + - uid: 7727 components: - type: Transform pos: 52.5,-12.5 parent: 2 - - uid: 40753 + - uid: 7728 components: - type: Transform pos: 52.5,-13.5 parent: 2 - - uid: 40754 + - uid: 7729 components: - type: Transform pos: 52.5,-14.5 parent: 2 - - uid: 40826 + - uid: 7730 components: - type: Transform pos: 37.5,-24.5 parent: 2 - - uid: 40827 + - uid: 7731 components: - type: Transform pos: 36.5,-24.5 parent: 2 - - uid: 40857 + - uid: 7732 components: - type: Transform pos: 111.5,-37.5 parent: 2 - - uid: 40858 + - uid: 7733 components: - type: Transform pos: 111.5,-38.5 parent: 2 - - uid: 40862 + - uid: 7734 components: - type: Transform pos: 112.5,-40.5 parent: 2 - - uid: 40863 + - uid: 7735 components: - type: Transform pos: 113.5,-40.5 parent: 2 - - uid: 40864 + - uid: 7736 components: - type: Transform pos: 114.5,-40.5 parent: 2 - - uid: 40865 + - uid: 7737 components: - type: Transform pos: 115.5,-40.5 parent: 2 - - uid: 40866 + - uid: 7738 components: - type: Transform pos: 116.5,-40.5 parent: 2 - - uid: 40867 + - uid: 7739 components: - type: Transform pos: 117.5,-40.5 parent: 2 - - uid: 40868 + - uid: 7740 components: - type: Transform pos: 118.5,-40.5 parent: 2 - - uid: 40869 + - uid: 7741 components: - type: Transform pos: 119.5,-40.5 parent: 2 - - uid: 40870 + - uid: 7742 components: - type: Transform pos: 120.5,-40.5 parent: 2 - - uid: 40871 + - uid: 7743 components: - type: Transform pos: 121.5,-40.5 parent: 2 - - uid: 40872 + - uid: 7744 components: - type: Transform pos: 122.5,-40.5 parent: 2 - - uid: 40873 + - uid: 7745 components: - type: Transform pos: 123.5,-40.5 parent: 2 - - uid: 40874 + - uid: 7746 components: - type: Transform pos: 124.5,-40.5 parent: 2 - - uid: 40875 + - uid: 7747 components: - type: Transform pos: 125.5,-40.5 parent: 2 - - uid: 40876 + - uid: 7748 components: - type: Transform pos: 126.5,-40.5 parent: 2 - - uid: 40877 + - uid: 7749 components: - type: Transform pos: 127.5,-40.5 parent: 2 - - uid: 40878 + - uid: 7750 components: - type: Transform pos: 128.5,-40.5 parent: 2 - - uid: 40879 + - uid: 7751 components: - type: Transform pos: 129.5,-40.5 parent: 2 - - uid: 40880 + - uid: 7752 components: - type: Transform pos: 130.5,-40.5 parent: 2 - - uid: 40881 + - uid: 7753 components: - type: Transform pos: 131.5,-40.5 parent: 2 - - uid: 40882 + - uid: 7754 components: - type: Transform pos: 132.5,-40.5 parent: 2 - - uid: 40883 + - uid: 7755 components: - type: Transform pos: 110.5,-39.5 parent: 2 - - uid: 40884 + - uid: 7756 components: - type: Transform pos: 110.5,-40.5 parent: 2 - - uid: 40885 + - uid: 7757 components: - type: Transform pos: 110.5,-42.5 parent: 2 - - uid: 40886 + - uid: 7758 components: - type: Transform pos: 110.5,-38.5 parent: 2 - - uid: 40887 + - uid: 7759 components: - type: Transform pos: 110.5,-41.5 parent: 2 - - uid: 40888 + - uid: 7760 components: - type: Transform pos: 112.5,-38.5 parent: 2 - - uid: 40889 + - uid: 7761 components: - type: Transform pos: 112.5,-39.5 parent: 2 + - uid: 7762 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 + - uid: 7763 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 7765 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 7766 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 7767 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 7768 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 7769 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 7770 + components: + - type: Transform + pos: -15.5,7.5 + parent: 2 + - uid: 7771 + components: + - type: Transform + pos: -15.5,8.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + pos: -15.5,9.5 + parent: 2 + - uid: 7773 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 7775 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 7776 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 + - uid: 40675 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 40666 + - uid: 40676 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 40666 + - uid: 40677 + components: + - type: Transform + pos: -0.5,0.5 + parent: 40666 + - uid: 40678 + components: + - type: Transform + pos: 0.5,0.5 + parent: 40666 + - uid: 40679 + components: + - type: Transform + pos: 0.5,1.5 + parent: 40666 + - uid: 40680 + components: + - type: Transform + pos: 0.5,2.5 + parent: 40666 + - uid: 40681 + components: + - type: Transform + pos: 0.5,3.5 + parent: 40666 + - uid: 40682 + components: + - type: Transform + pos: 1.5,0.5 + parent: 40666 + - uid: 40683 + components: + - type: Transform + pos: 2.5,0.5 + parent: 40666 + - uid: 40684 + components: + - type: Transform + pos: 2.5,1.5 + parent: 40666 + - uid: 40685 + components: + - type: Transform + pos: 3.5,1.5 + parent: 40666 + - uid: 40686 + components: + - type: Transform + pos: 4.5,1.5 + parent: 40666 + - uid: 40687 + components: + - type: Transform + pos: -1.5,0.5 + parent: 40666 + - uid: 40688 + components: + - type: Transform + pos: -1.5,1.5 + parent: 40666 + - uid: 40689 + components: + - type: Transform + pos: -2.5,1.5 + parent: 40666 + - uid: 40690 + components: + - type: Transform + pos: -3.5,1.5 + parent: 40666 + - uid: 40889 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 40828 + - uid: 40890 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 40828 + - uid: 40891 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 40828 + - uid: 40892 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 40828 + - uid: 40893 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 40828 + - uid: 40894 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 40828 + - uid: 40895 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 40828 + - uid: 40896 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 40828 + - uid: 40897 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 40828 + - uid: 40898 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 40828 + - uid: 40899 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 40828 + - uid: 40900 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 40828 + - uid: 40901 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 40828 + - uid: 40902 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 40828 + - uid: 40903 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 40828 + - uid: 40904 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 40828 + - uid: 40905 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 40828 + - uid: 40906 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 40828 + - uid: 40907 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 40828 + - uid: 40908 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 40828 + - uid: 40909 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 40828 + - uid: 40910 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 40828 + - uid: 40911 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 40828 + - uid: 40912 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 40828 + - uid: 40913 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 40828 + - uid: 40914 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 40828 + - uid: 40915 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 40828 + - uid: 40916 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 40828 + - uid: 40917 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 40828 + - uid: 40918 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 40828 + - uid: 40919 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 40828 + - uid: 40920 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 40828 + - uid: 40921 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 40828 + - uid: 40922 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 40828 + - uid: 40923 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 40828 + - uid: 40924 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 40828 + - uid: 40925 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 40828 + - uid: 40926 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 40828 + - uid: 40927 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 40828 + - uid: 40928 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 40828 + - uid: 40929 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 40828 + - uid: 40930 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 40828 + - uid: 40931 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 40828 + - uid: 40932 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 40828 + - uid: 40933 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 40828 + - uid: 40934 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 40828 + - uid: 40935 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 40828 + - uid: 40936 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 40828 + - uid: 40937 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 40828 + - uid: 40938 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 40828 + - uid: 40939 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 40828 + - uid: 40940 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 40828 + - uid: 40941 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 40828 + - uid: 40942 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 40828 + - uid: 40943 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 40828 + - uid: 40944 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 40828 + - uid: 40945 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 40828 + - uid: 40946 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 40828 + - uid: 40947 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 40828 + - uid: 40948 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 40828 + - uid: 40949 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 40828 + - uid: 41705 + components: + - type: Transform + pos: 4.5,4.5 + parent: 41669 + - uid: 41706 + components: + - type: Transform + pos: 4.5,3.5 + parent: 41669 + - uid: 41707 + components: + - type: Transform + pos: 4.5,2.5 + parent: 41669 + - uid: 41708 + components: + - type: Transform + pos: 4.5,1.5 + parent: 41669 + - uid: 41709 + components: + - type: Transform + pos: 4.5,5.5 + parent: 41669 + - uid: 41710 + components: + - type: Transform + pos: 5.5,5.5 + parent: 41669 + - uid: 41711 + components: + - type: Transform + pos: 3.5,5.5 + parent: 41669 + - uid: 41712 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 41669 + - uid: 41713 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 41669 + - uid: 41714 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 41669 + - uid: 41715 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 41669 + - uid: 41716 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 41669 + - uid: 41717 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 41669 + - uid: 41718 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 41669 + - uid: 41719 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 41669 + - uid: 41720 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 41669 + - uid: 41721 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 41669 + - uid: 41722 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 41669 + - uid: 41723 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 41669 + - uid: 41724 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 41669 + - uid: 41725 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 41669 + - uid: 41726 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 41669 + - uid: 41727 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 41669 + - uid: 41728 + components: + - type: Transform + pos: 6.5,1.5 + parent: 41669 + - uid: 41729 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 41669 + - uid: 41730 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 41669 + - uid: 41731 + components: + - type: Transform + pos: 5.5,1.5 + parent: 41669 + - uid: 41732 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 41669 + - uid: 41733 + components: + - type: Transform + pos: 1.5,1.5 + parent: 41669 + - uid: 41734 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 41669 + - uid: 41735 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 41669 + - uid: 41736 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 41669 + - uid: 41737 + components: + - type: Transform + pos: 3.5,1.5 + parent: 41669 + - uid: 41738 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 41669 + - uid: 41739 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 41669 + - uid: 41740 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 41669 + - uid: 41741 + components: + - type: Transform + pos: 3.5,0.5 + parent: 41669 + - uid: 41742 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 41669 + - uid: 41743 + components: + - type: Transform + pos: 2.5,1.5 + parent: 41669 + - uid: 41744 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 41669 + - uid: 41745 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 41669 + - uid: 41746 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 41669 - proto: CableApcStack entities: - - uid: 7096 + - uid: 7778 components: - type: Transform pos: 52.6168,-84.34865 parent: 2 - - uid: 7097 + - uid: 7779 components: - type: Transform pos: -27.535309,-77.58326 parent: 2 - - uid: 7098 + - uid: 7780 components: - type: Transform pos: 52.569923,-84.5049 parent: 2 - - uid: 7099 + - uid: 7781 components: - type: Transform pos: -50.446594,-60.864414 parent: 2 - - uid: 7100 + - uid: 7782 components: - type: Transform pos: -69.09691,-62.419525 parent: 2 - - uid: 7101 + - uid: 7783 components: - type: Transform pos: -27.527275,-77.66927 parent: 2 - - uid: 7103 + - uid: 7784 components: - type: Transform pos: -40.56684,-53.460392 parent: 2 - - uid: 7104 + - uid: 7785 components: - type: Transform pos: 108.50711,-22.322971 parent: 2 - - uid: 7105 + - uid: 7786 components: - type: Transform pos: -40.459167,-62.80593 parent: 2 - - uid: 7107 + - uid: 7787 components: - type: Transform pos: 21.5,19.5 parent: 2 - - uid: 7108 + - uid: 7788 components: - type: Transform pos: -68.49457,-15.588883 parent: 2 - - uid: 7109 + - uid: 7789 components: - type: Transform pos: -68.49457,-15.588883 parent: 2 - - uid: 7110 + - uid: 7790 components: - type: Transform pos: 40.48218,-35.22666 parent: 2 - - uid: 7111 + - uid: 7791 components: - type: Transform pos: -38.5,-49.5 parent: 2 - - uid: 7114 + - uid: 7792 components: - type: Transform pos: -42.437763,-112.45888 parent: 2 - - uid: 7115 + - uid: 7793 components: - type: Transform pos: 104.5,-57.5 parent: 2 - - uid: 7116 + - uid: 7794 components: - type: Transform pos: 44.584576,-62.591125 parent: 2 - - uid: 7117 + - uid: 7795 components: - type: Transform pos: 48.471825,-60.322002 parent: 2 - - uid: 7118 + - uid: 7796 components: - type: Transform pos: -86.5,-7.5 parent: 2 - - uid: 7119 + - uid: 7797 components: - type: Transform pos: 94.5,-88.5 parent: 2 - - uid: 7120 + - uid: 7798 components: - type: Transform pos: 101.5,-80.5 parent: 2 - - uid: 34377 + - uid: 7799 components: - type: Transform pos: -0.5112078,-70.54928 parent: 2 - - uid: 38009 + - uid: 40950 components: - type: Transform pos: -1.4512177,-7.4963074 - parent: 37887 + parent: 40828 - proto: CableApcStack1 entities: - - uid: 7121 + - uid: 7800 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.612465,3.6482325 parent: 2 - - uid: 7122 + - uid: 7801 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.6546,-95.272865 parent: 2 - - uid: 7124 + - uid: 7802 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.655058,-96.45677 parent: 2 - - uid: 7125 + - uid: 7803 components: - type: Transform rot: 3.141592653589793 rad pos: -63.683983,-34.081646 parent: 2 - - uid: 7126 + - uid: 7804 components: - type: Transform rot: 3.141592653589793 rad pos: -64.65273,-33.34727 parent: 2 - - uid: 7127 + - uid: 7805 components: - type: Transform rot: 3.141592653589793 rad pos: -65.71523,-33.862896 parent: 2 - - uid: 7128 + - uid: 7806 components: - type: Transform rot: 3.141592653589793 rad pos: -63.887108,-32.331646 parent: 2 - - uid: 7129 + - uid: 7807 components: - type: Transform rot: 3.141592653589793 rad pos: -48.95072,15.547344 parent: 2 - - uid: 7130 + - uid: 7808 components: - type: Transform pos: -46.466347,12.812969 parent: 2 - - uid: 7131 + - uid: 7809 components: - type: Transform pos: -46.372597,12.656719 parent: 2 - - uid: 7134 + - uid: 7810 components: - type: Transform pos: -54.694817,-69.482445 parent: 2 - - uid: 7135 + - uid: 7811 components: - type: Transform pos: -51.84081,-71.32561 parent: 2 - - uid: 7136 + - uid: 7812 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.62812,-4.557947 parent: 2 - - uid: 7137 + - uid: 7813 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.50673,-47.736145 parent: 2 - - uid: 7138 + - uid: 7814 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.014717,-96.48067 parent: 2 - - uid: 7153 + - uid: 7815 components: - type: Transform pos: -23.637703,-97.33215 parent: 2 - - uid: 7154 + - uid: 7816 components: - type: Transform rot: 3.141592653589793 rad pos: -53.220226,0.5929835 parent: 2 - - uid: 7155 + - uid: 7817 components: - type: Transform rot: 1.5707963267948966 rad @@ -62648,24340 +63637,24375 @@ entities: parent: 2 - proto: CableApcStack10 entities: - - uid: 7156 + - uid: 7818 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.494995,-27.123253 parent: 2 - - uid: 7157 + - uid: 7819 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.44812,-27.076378 parent: 2 - - uid: 7158 + - uid: 7820 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.401245,-27.029503 parent: 2 - - uid: 7159 + - uid: 7821 components: - type: Transform pos: -38.534832,-32.576935 parent: 2 - - uid: 7160 + - uid: 7822 components: - type: Transform pos: -57.555103,-90.05232 parent: 2 - proto: CableHV entities: - - uid: 654 + - uid: 7823 components: - type: Transform pos: 60.5,-54.5 parent: 2 - - uid: 680 + - uid: 7824 components: - type: Transform pos: 62.5,-54.5 parent: 2 - - uid: 681 + - uid: 7825 components: - type: Transform pos: 62.5,-53.5 parent: 2 - - uid: 684 + - uid: 7826 components: - type: Transform pos: 61.5,-54.5 parent: 2 - - uid: 691 + - uid: 7827 components: - type: Transform pos: 58.5,-51.5 parent: 2 - - uid: 792 + - uid: 7828 components: - type: Transform pos: 56.5,-52.5 parent: 2 - - uid: 802 + - uid: 7829 components: - type: Transform pos: 58.5,-52.5 parent: 2 - - uid: 885 + - uid: 7830 components: - type: Transform pos: 56.5,-51.5 parent: 2 - - uid: 947 + - uid: 7831 components: - type: Transform pos: 56.5,-49.5 parent: 2 - - uid: 1051 + - uid: 7832 components: - type: Transform pos: 57.5,-51.5 parent: 2 - - uid: 1118 + - uid: 7833 components: - type: Transform pos: 59.5,-50.5 parent: 2 - - uid: 1198 + - uid: 7834 components: - type: Transform pos: 57.5,-52.5 parent: 2 - - uid: 1557 + - uid: 7835 components: - type: Transform pos: 57.5,-53.5 parent: 2 - - uid: 1589 + - uid: 7836 components: - type: Transform pos: 57.5,-49.5 parent: 2 - - uid: 1592 + - uid: 7837 components: - type: Transform pos: 58.5,-53.5 parent: 2 - - uid: 2091 + - uid: 7838 components: - type: Transform pos: 0.5,-2.5 parent: 2 - - uid: 2121 + - uid: 7839 components: - type: Transform pos: 59.5,-53.5 parent: 2 - - uid: 2125 + - uid: 7840 components: - type: Transform pos: 59.5,-51.5 parent: 2 - - uid: 2128 + - uid: 7841 components: - type: Transform pos: 58.5,-49.5 parent: 2 - - uid: 2213 + - uid: 7842 components: - type: Transform pos: 57.5,-55.5 parent: 2 - - uid: 2214 + - uid: 7843 components: - type: Transform pos: 55.5,-55.5 parent: 2 - - uid: 2304 + - uid: 7844 components: - type: Transform pos: 56.5,-53.5 parent: 2 - - uid: 2305 + - uid: 7845 components: - type: Transform pos: 55.5,-54.5 parent: 2 - - uid: 2306 + - uid: 7846 components: - type: Transform pos: 57.5,-54.5 parent: 2 - - uid: 2309 + - uid: 7847 components: - type: Transform pos: 57.5,-56.5 parent: 2 - - uid: 2310 + - uid: 7848 components: - type: Transform pos: 57.5,-57.5 parent: 2 - - uid: 2311 + - uid: 7849 components: - type: Transform pos: 57.5,-58.5 parent: 2 - - uid: 2314 + - uid: 7850 components: - type: Transform pos: 55.5,-56.5 parent: 2 - - uid: 2768 + - uid: 7851 components: - type: Transform pos: 40.5,-4.5 parent: 2 - - uid: 4595 + - uid: 7852 components: - type: Transform pos: -5.5,-6.5 parent: 2 - - uid: 4818 + - uid: 7853 components: - type: Transform pos: 59.5,-49.5 parent: 2 - - uid: 6184 + - uid: 7854 components: - type: Transform pos: -6.5,-6.5 parent: 2 - - uid: 6187 + - uid: 7855 components: - type: Transform pos: 59.5,-52.5 parent: 2 - - uid: 6197 + - uid: 7856 components: - type: Transform pos: 58.5,-54.5 parent: 2 - - uid: 6199 + - uid: 7857 components: - type: Transform pos: 62.5,-52.5 parent: 2 - - uid: 6218 + - uid: 7858 components: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 6220 + - uid: 7859 components: - type: Transform pos: -3.5,-6.5 parent: 2 - - uid: 6221 + - uid: 7860 components: - type: Transform pos: -1.5,-6.5 parent: 2 - - uid: 6319 + - uid: 7861 components: - type: Transform pos: 0.5,-5.5 parent: 2 - - uid: 6958 + - uid: 7862 components: - type: Transform pos: 0.5,-6.5 parent: 2 - - uid: 6961 + - uid: 7863 components: - type: Transform pos: 0.5,0.5 parent: 2 - - uid: 6968 + - uid: 7864 components: - type: Transform pos: 0.5,-0.5 parent: 2 - - uid: 7146 + - uid: 7865 components: - type: Transform pos: 0.5,-3.5 parent: 2 - - uid: 7163 + - uid: 7866 components: - type: Transform pos: -66.5,7.5 parent: 2 - - uid: 7164 + - uid: 7867 components: - type: Transform pos: 34.5,7.5 parent: 2 - - uid: 7165 + - uid: 7868 components: - type: Transform pos: 66.5,-61.5 parent: 2 - - uid: 7166 + - uid: 7869 components: - type: Transform pos: 78.5,-52.5 parent: 2 - - uid: 7167 + - uid: 7870 components: - type: Transform pos: 32.5,-2.5 parent: 2 - - uid: 7168 + - uid: 7871 components: - type: Transform pos: 76.5,-52.5 parent: 2 - - uid: 7169 + - uid: 7872 components: - type: Transform pos: 77.5,-52.5 parent: 2 - - uid: 7170 + - uid: 7873 components: - type: Transform pos: 34.5,5.5 parent: 2 - - uid: 7171 + - uid: 7874 components: - type: Transform pos: -67.5,4.5 parent: 2 - - uid: 7172 + - uid: 7875 components: - type: Transform pos: -68.5,7.5 parent: 2 - - uid: 7173 + - uid: 7876 components: - type: Transform pos: -68.5,8.5 parent: 2 - - uid: 7174 + - uid: 7877 components: - type: Transform pos: -68.5,4.5 parent: 2 - - uid: 7175 + - uid: 7878 components: - type: Transform pos: 35.5,-38.5 parent: 2 - - uid: 7176 + - uid: 7879 components: - type: Transform pos: -68.5,5.5 parent: 2 - - uid: 7177 + - uid: 7880 components: - type: Transform pos: -68.5,9.5 parent: 2 - - uid: 7178 + - uid: 7881 components: - type: Transform pos: -68.5,10.5 parent: 2 - - uid: 7179 + - uid: 7882 components: - type: Transform pos: -68.5,6.5 parent: 2 - - uid: 7180 + - uid: 7883 components: - type: Transform pos: -72.5,10.5 parent: 2 - - uid: 7181 + - uid: 7884 components: - type: Transform pos: -73.5,10.5 parent: 2 - - uid: 7182 + - uid: 7885 components: - type: Transform pos: -63.5,7.5 parent: 2 - - uid: 7183 + - uid: 7886 components: - type: Transform pos: -54.5,5.5 parent: 2 - - uid: 7184 + - uid: 7887 components: - type: Transform pos: -56.5,6.5 parent: 2 - - uid: 7185 + - uid: 7888 components: - type: Transform pos: -57.5,7.5 parent: 2 - - uid: 7186 + - uid: 7889 components: - type: Transform pos: -61.5,7.5 parent: 2 - - uid: 7187 + - uid: 7890 components: - type: Transform pos: -74.5,10.5 parent: 2 - - uid: 7188 + - uid: 7891 components: - type: Transform pos: -75.5,10.5 parent: 2 - - uid: 7189 + - uid: 7892 components: - type: Transform pos: -71.5,11.5 parent: 2 - - uid: 7190 + - uid: 7893 components: - type: Transform pos: -70.5,11.5 parent: 2 - - uid: 7191 + - uid: 7894 components: - type: Transform pos: -67.5,2.5 parent: 2 - - uid: 7192 + - uid: 7895 components: - type: Transform pos: -70.5,10.5 parent: 2 - - uid: 7193 + - uid: 7896 components: - type: Transform pos: -69.5,10.5 parent: 2 - - uid: 7194 + - uid: 7897 components: - type: Transform pos: -72.5,11.5 parent: 2 - - uid: 7195 + - uid: 7898 components: - type: Transform pos: 67.5,-65.5 parent: 2 - - uid: 7196 + - uid: 7899 components: - type: Transform pos: 68.5,-65.5 parent: 2 - - uid: 7197 + - uid: 7900 components: - type: Transform pos: 66.5,-55.5 parent: 2 - - uid: 7198 + - uid: 7901 components: - type: Transform pos: 42.5,-79.5 parent: 2 - - uid: 7199 + - uid: 7902 components: - type: Transform pos: 39.5,-81.5 parent: 2 - - uid: 7200 + - uid: 7903 components: - type: Transform pos: 34.5,0.5 parent: 2 - - uid: 7201 + - uid: 7904 components: - type: Transform pos: 35.5,-2.5 parent: 2 - - uid: 7202 + - uid: 7905 components: - type: Transform pos: 35.5,7.5 parent: 2 - - uid: 7203 + - uid: 7906 components: - type: Transform pos: 37.5,-4.5 parent: 2 - - uid: 7204 + - uid: 7907 components: - type: Transform pos: 34.5,-81.5 parent: 2 - - uid: 7205 + - uid: 7908 components: - type: Transform pos: 79.5,-96.5 parent: 2 - - uid: 7206 + - uid: 7909 components: - type: Transform pos: 81.5,-94.5 parent: 2 - - uid: 7207 + - uid: 7910 components: - type: Transform pos: -53.5,-81.5 parent: 2 - - uid: 7208 + - uid: 7911 components: - type: Transform pos: 72.5,-96.5 parent: 2 - - uid: 7209 + - uid: 7912 components: - type: Transform pos: 49.5,-74.5 parent: 2 - - uid: 7210 + - uid: 7913 components: - type: Transform pos: 49.5,-76.5 parent: 2 - - uid: 7211 + - uid: 7914 components: - type: Transform pos: 65.5,-59.5 parent: 2 - - uid: 7212 + - uid: 7915 components: - type: Transform pos: 64.5,-76.5 parent: 2 - - uid: 7213 + - uid: 7916 components: - type: Transform pos: 74.5,-96.5 parent: 2 - - uid: 7214 + - uid: 7917 components: - type: Transform pos: 64.5,-75.5 parent: 2 - - uid: 7215 + - uid: 7918 components: - type: Transform pos: -41.5,-88.5 parent: 2 - - uid: 7216 + - uid: 7919 components: - type: Transform pos: 64.5,-77.5 parent: 2 - - uid: 7217 + - uid: 7920 components: - type: Transform pos: 73.5,-96.5 parent: 2 - - uid: 7218 + - uid: 7921 components: - type: Transform pos: 74.5,-95.5 parent: 2 - - uid: 7219 + - uid: 7922 components: - type: Transform pos: 51.5,-67.5 parent: 2 - - uid: 7220 + - uid: 7923 components: - type: Transform pos: 49.5,-75.5 parent: 2 - - uid: 7221 + - uid: 7924 components: - type: Transform pos: 51.5,-68.5 parent: 2 - - uid: 7222 + - uid: 7925 components: - type: Transform pos: 51.5,-65.5 parent: 2 - - uid: 7223 + - uid: 7926 components: - type: Transform pos: 51.5,-66.5 parent: 2 - - uid: 7224 + - uid: 7927 components: - type: Transform pos: 51.5,-69.5 parent: 2 - - uid: 7225 + - uid: 7928 components: - type: Transform pos: 49.5,-77.5 parent: 2 - - uid: 7226 + - uid: 7929 components: - type: Transform pos: 46.5,-83.5 parent: 2 - - uid: 7227 + - uid: 7930 components: - type: Transform pos: 45.5,-83.5 parent: 2 - - uid: 7228 + - uid: 7931 components: - type: Transform pos: 46.5,-84.5 parent: 2 - - uid: 7229 + - uid: 7932 components: - type: Transform pos: 46.5,-79.5 parent: 2 - - uid: 7230 + - uid: 7933 components: - type: Transform pos: 64.5,-73.5 parent: 2 - - uid: 7231 + - uid: 7934 components: - type: Transform pos: 49.5,-78.5 parent: 2 - - uid: 7232 + - uid: 7935 components: - type: Transform pos: 48.5,-78.5 parent: 2 - - uid: 7233 + - uid: 7936 components: - type: Transform pos: 47.5,-78.5 parent: 2 - - uid: 7234 + - uid: 7937 components: - type: Transform pos: 64.5,-74.5 parent: 2 - - uid: 7235 + - uid: 7938 components: - type: Transform pos: -39.5,-88.5 parent: 2 - - uid: 7236 + - uid: 7939 components: - type: Transform pos: -53.5,-85.5 parent: 2 - - uid: 7237 + - uid: 7940 components: - type: Transform pos: -53.5,-78.5 parent: 2 - - uid: 7238 + - uid: 7941 components: - type: Transform pos: -47.5,-78.5 parent: 2 - - uid: 7239 + - uid: 7942 components: - type: Transform pos: -50.5,-78.5 parent: 2 - - uid: 7240 + - uid: 7943 components: - type: Transform pos: -40.5,-88.5 parent: 2 - - uid: 7241 + - uid: 7944 components: - type: Transform pos: -48.5,-78.5 parent: 2 - - uid: 7242 + - uid: 7945 components: - type: Transform pos: -51.5,-78.5 parent: 2 - - uid: 7243 + - uid: 7946 components: - type: Transform pos: -53.5,-82.5 parent: 2 - - uid: 7244 + - uid: 7947 components: - type: Transform pos: -53.5,-79.5 parent: 2 - - uid: 7245 + - uid: 7948 components: - type: Transform pos: -53.5,-84.5 parent: 2 - - uid: 7246 + - uid: 7949 components: - type: Transform pos: -64.5,7.5 parent: 2 - - uid: 7247 + - uid: 7950 components: - type: Transform pos: 36.5,-77.5 parent: 2 - - uid: 7249 + - uid: 7951 components: - type: Transform pos: 12.5,8.5 parent: 2 - - uid: 7250 + - uid: 7952 components: - type: Transform pos: 12.5,7.5 parent: 2 - - uid: 7251 + - uid: 7953 components: - type: Transform pos: 12.5,6.5 parent: 2 - - uid: 7252 + - uid: 7954 components: - type: Transform pos: 11.5,6.5 parent: 2 - - uid: 7257 + - uid: 7955 components: - type: Transform pos: -56.5,5.5 parent: 2 - - uid: 7258 + - uid: 7956 components: - type: Transform pos: 55.5,-86.5 parent: 2 - - uid: 7260 + - uid: 7957 components: - type: Transform pos: 30.5,-36.5 parent: 2 - - uid: 7261 + - uid: 7958 components: - type: Transform pos: -11.5,-87.5 parent: 2 - - uid: 7262 + - uid: 7959 components: - type: Transform pos: -11.5,-88.5 parent: 2 - - uid: 7263 + - uid: 7960 components: - type: Transform pos: 52.5,-86.5 parent: 2 - - uid: 7264 + - uid: 7961 components: - type: Transform pos: 54.5,-46.5 parent: 2 - - uid: 7265 + - uid: 7962 components: - type: Transform pos: 53.5,-46.5 parent: 2 - - uid: 7266 + - uid: 7963 components: - type: Transform pos: -38.5,-88.5 parent: 2 - - uid: 7267 + - uid: 7964 components: - type: Transform pos: -53.5,-80.5 parent: 2 - - uid: 7268 + - uid: 7965 components: - type: Transform pos: -60.5,-86.5 parent: 2 - - uid: 7269 + - uid: 7966 components: - type: Transform pos: -59.5,-86.5 parent: 2 - - uid: 7270 + - uid: 7967 components: - type: Transform pos: -58.5,-86.5 parent: 2 - - uid: 7271 + - uid: 7968 components: - type: Transform pos: -57.5,-86.5 parent: 2 - - uid: 7272 + - uid: 7969 components: - type: Transform pos: -53.5,-83.5 parent: 2 - - uid: 7273 + - uid: 7970 components: - type: Transform pos: -49.5,-78.5 parent: 2 - - uid: 7274 + - uid: 7971 components: - type: Transform pos: -52.5,-78.5 parent: 2 - - uid: 7275 + - uid: 7972 components: - type: Transform pos: -74.5,-96.5 parent: 2 - - uid: 7276 + - uid: 7973 components: - type: Transform pos: 73.5,-94.5 parent: 2 - - uid: 7277 + - uid: 7974 components: - type: Transform pos: 78.5,-96.5 parent: 2 - - uid: 7278 + - uid: 7975 components: - type: Transform pos: -57.5,-85.5 parent: 2 - - uid: 7279 + - uid: 7976 components: - type: Transform pos: 55.5,-88.5 parent: 2 - - uid: 7280 + - uid: 7977 components: - type: Transform pos: -55.5,-86.5 parent: 2 - - uid: 7281 + - uid: 7978 components: - type: Transform pos: -54.5,-86.5 parent: 2 - - uid: 7282 + - uid: 7979 components: - type: Transform pos: -53.5,-86.5 parent: 2 - - uid: 7283 + - uid: 7980 components: - type: Transform pos: -55.5,-85.5 parent: 2 - - uid: 7284 + - uid: 7981 components: - type: Transform pos: 61.5,-47.5 parent: 2 - - uid: 7285 + - uid: 7982 components: - type: Transform pos: 59.5,-47.5 parent: 2 - - uid: 7286 + - uid: 7983 components: - type: Transform pos: -62.5,7.5 parent: 2 - - uid: 7287 + - uid: 7984 components: - type: Transform pos: -58.5,7.5 parent: 2 - - uid: 7288 + - uid: 7985 components: - type: Transform pos: -56.5,7.5 parent: 2 - - uid: 7289 + - uid: 7986 components: - type: Transform pos: -55.5,5.5 parent: 2 - - uid: 7290 + - uid: 7987 components: - type: Transform pos: -64.5,-2.5 parent: 2 - - uid: 7291 + - uid: 7988 components: - type: Transform pos: -64.5,-4.5 parent: 2 - - uid: 7292 + - uid: 7989 components: - type: Transform pos: -64.5,-1.5 parent: 2 - - uid: 7293 + - uid: 7990 components: - type: Transform pos: -64.5,-3.5 parent: 2 - - uid: 7294 + - uid: 7991 components: - type: Transform pos: -65.5,0.5 parent: 2 - - uid: 7295 + - uid: 7992 components: - type: Transform pos: -67.5,0.5 parent: 2 - - uid: 7296 + - uid: 7993 components: - type: Transform pos: -64.5,-0.5 parent: 2 - - uid: 7297 + - uid: 7994 components: - type: Transform pos: -67.5,1.5 parent: 2 - - uid: 7298 + - uid: 7995 components: - type: Transform pos: -66.5,0.5 parent: 2 - - uid: 7299 + - uid: 7996 components: - type: Transform pos: -67.5,3.5 parent: 2 - - uid: 7300 + - uid: 7997 components: - type: Transform pos: -64.5,0.5 parent: 2 - - uid: 7301 + - uid: 7998 components: - type: Transform pos: 35.5,-80.5 parent: 2 - - uid: 7303 + - uid: 7999 components: - type: Transform pos: -64.5,-5.5 parent: 2 - - uid: 7304 + - uid: 8000 components: - type: Transform pos: -64.5,-6.5 parent: 2 - - uid: 7305 + - uid: 8001 components: - type: Transform pos: 50.5,-69.5 parent: 2 - - uid: 7306 + - uid: 8002 components: - type: Transform pos: 62.5,-59.5 parent: 2 - - uid: 7308 + - uid: 8003 components: - type: Transform pos: 54.5,-86.5 parent: 2 - - uid: 7309 + - uid: 8004 components: - type: Transform pos: 67.5,-63.5 parent: 2 - - uid: 7310 + - uid: 8005 components: - type: Transform pos: 46.5,-80.5 parent: 2 - - uid: 7311 + - uid: 8006 components: - type: Transform pos: 46.5,-82.5 parent: 2 - - uid: 7312 + - uid: 8007 components: - type: Transform pos: 46.5,-81.5 parent: 2 - - uid: 7313 + - uid: 8008 components: - type: Transform pos: -56.5,-85.5 parent: 2 - - uid: 7314 + - uid: 8009 components: - type: Transform pos: 42.5,-83.5 parent: 2 - - uid: 7323 + - uid: 8010 components: - type: Transform pos: 80.5,-94.5 parent: 2 - - uid: 7324 + - uid: 8011 components: - type: Transform pos: 63.5,-68.5 parent: 2 - - uid: 7325 + - uid: 8012 components: - type: Transform pos: 64.5,-67.5 parent: 2 - - uid: 7326 + - uid: 8013 components: - type: Transform pos: 65.5,-67.5 parent: 2 - - uid: 7327 + - uid: 8014 components: - type: Transform pos: 64.5,-69.5 parent: 2 - - uid: 7328 + - uid: 8015 components: - type: Transform pos: 64.5,-70.5 parent: 2 - - uid: 7329 + - uid: 8016 components: - type: Transform pos: 64.5,-71.5 parent: 2 - - uid: 7330 + - uid: 8017 components: - type: Transform pos: 64.5,-72.5 parent: 2 - - uid: 7331 + - uid: 8018 components: - type: Transform pos: 20.5,-86.5 parent: 2 - - uid: 7333 + - uid: 8019 components: - type: Transform pos: 0.5,-4.5 parent: 2 - - uid: 7334 + - uid: 8020 components: - type: Transform pos: 58.5,-59.5 parent: 2 - - uid: 7335 + - uid: 8021 components: - type: Transform pos: 62.5,-68.5 parent: 2 - - uid: 7336 + - uid: 8022 components: - type: Transform pos: 65.5,-69.5 parent: 2 - - uid: 7337 + - uid: 8023 components: - type: Transform pos: -13.5,-88.5 parent: 2 - - uid: 7338 + - uid: 8024 components: - type: Transform pos: -13.5,-89.5 parent: 2 - - uid: 7339 + - uid: 8025 components: - type: Transform pos: -12.5,-88.5 parent: 2 - - uid: 7340 + - uid: 8026 components: - type: Transform pos: 32.5,-81.5 parent: 2 - - uid: 7341 + - uid: 8027 components: - type: Transform pos: 79.5,-24.5 parent: 2 - - uid: 7345 + - uid: 8028 components: - type: Transform pos: 44.5,-83.5 parent: 2 - - uid: 7346 + - uid: 8029 components: - type: Transform pos: 41.5,-83.5 parent: 2 - - uid: 7347 + - uid: 8030 components: - type: Transform pos: 42.5,-78.5 parent: 2 - - uid: 7348 + - uid: 8031 components: - type: Transform pos: 37.5,-77.5 parent: 2 - - uid: 7349 + - uid: 8032 components: - type: Transform pos: 43.5,-83.5 parent: 2 - - uid: 7350 + - uid: 8033 components: - type: Transform pos: 46.5,-85.5 parent: 2 - - uid: 7352 + - uid: 8034 components: - type: Transform pos: 61.5,-59.5 parent: 2 - - uid: 7353 + - uid: 8035 components: - type: Transform pos: 32.5,-82.5 parent: 2 - - uid: 7354 + - uid: 8036 components: - type: Transform pos: 57.5,-59.5 parent: 2 - - uid: 7355 + - uid: 8037 components: - type: Transform pos: 56.5,-59.5 parent: 2 - - uid: 7356 + - uid: 8038 components: - type: Transform pos: 32.5,-79.5 parent: 2 - - uid: 7357 + - uid: 8039 components: - type: Transform pos: 42.5,-82.5 parent: 2 - - uid: 7358 + - uid: 8040 components: - type: Transform pos: 33.5,-82.5 parent: 2 - - uid: 7359 + - uid: 8041 components: - type: Transform pos: 32.5,-80.5 parent: 2 - - uid: 7360 + - uid: 8042 components: - type: Transform pos: 66.5,-64.5 parent: 2 - - uid: 7361 + - uid: 8043 components: - type: Transform pos: 66.5,-65.5 parent: 2 - - uid: 7362 + - uid: 8044 components: - type: Transform pos: 51.5,-59.5 parent: 2 - - uid: 7363 + - uid: 8045 components: - type: Transform pos: 51.5,-60.5 parent: 2 - - uid: 7364 + - uid: 8046 components: - type: Transform pos: 51.5,-61.5 parent: 2 - - uid: 7365 + - uid: 8047 components: - type: Transform pos: 51.5,-62.5 parent: 2 - - uid: 7366 + - uid: 8048 components: - type: Transform pos: 51.5,-63.5 parent: 2 - - uid: 7367 + - uid: 8049 components: - type: Transform pos: 51.5,-64.5 parent: 2 - - uid: 7368 + - uid: 8050 components: - type: Transform pos: 46.5,-78.5 parent: 2 - - uid: 7369 + - uid: 8051 components: - type: Transform pos: 49.5,-73.5 parent: 2 - - uid: 7370 + - uid: 8052 components: - type: Transform pos: 49.5,-72.5 parent: 2 - - uid: 7371 + - uid: 8053 components: - type: Transform pos: 49.5,-71.5 parent: 2 - - uid: 7372 + - uid: 8054 components: - type: Transform pos: 49.5,-70.5 parent: 2 - - uid: 7373 + - uid: 8055 components: - type: Transform pos: 49.5,-69.5 parent: 2 - - uid: 7374 + - uid: 8056 components: - type: Transform pos: -23.5,-67.5 parent: 2 - - uid: 7375 + - uid: 8057 components: - type: Transform pos: -28.5,-45.5 parent: 2 - - uid: 7376 + - uid: 8058 components: - type: Transform pos: -28.5,-46.5 parent: 2 - - uid: 7377 + - uid: 8059 components: - type: Transform pos: -28.5,-47.5 parent: 2 - - uid: 7378 + - uid: 8060 components: - type: Transform pos: -28.5,-48.5 parent: 2 - - uid: 7379 + - uid: 8061 components: - type: Transform pos: -28.5,-49.5 parent: 2 - - uid: 7380 + - uid: 8062 components: - type: Transform pos: -28.5,-50.5 parent: 2 - - uid: 7381 + - uid: 8063 components: - type: Transform pos: -28.5,-51.5 parent: 2 - - uid: 7382 + - uid: 8064 components: - type: Transform pos: -27.5,-51.5 parent: 2 - - uid: 7383 + - uid: 8065 components: - type: Transform pos: -26.5,-51.5 parent: 2 - - uid: 7384 + - uid: 8066 components: - type: Transform pos: -25.5,-51.5 parent: 2 - - uid: 7385 + - uid: 8067 components: - type: Transform pos: -25.5,-52.5 parent: 2 - - uid: 7386 + - uid: 8068 components: - type: Transform pos: -25.5,-53.5 parent: 2 - - uid: 7387 + - uid: 8069 components: - type: Transform pos: -25.5,-54.5 parent: 2 - - uid: 7388 + - uid: 8070 components: - type: Transform pos: -25.5,-55.5 parent: 2 - - uid: 7389 + - uid: 8071 components: - type: Transform pos: -25.5,-56.5 parent: 2 - - uid: 7390 + - uid: 8072 components: - type: Transform pos: -25.5,-57.5 parent: 2 - - uid: 7391 + - uid: 8073 components: - type: Transform pos: -25.5,-58.5 parent: 2 - - uid: 7392 + - uid: 8074 components: - type: Transform pos: -25.5,-59.5 parent: 2 - - uid: 7393 + - uid: 8075 components: - type: Transform pos: -25.5,-60.5 parent: 2 - - uid: 7394 + - uid: 8076 components: - type: Transform pos: -25.5,-61.5 parent: 2 - - uid: 7395 + - uid: 8077 components: - type: Transform pos: -25.5,-62.5 parent: 2 - - uid: 7396 + - uid: 8078 components: - type: Transform pos: -25.5,-63.5 parent: 2 - - uid: 7397 + - uid: 8079 components: - type: Transform pos: -25.5,-64.5 parent: 2 - - uid: 7398 + - uid: 8080 components: - type: Transform pos: -24.5,-64.5 parent: 2 - - uid: 7399 + - uid: 8081 components: - type: Transform pos: -24.5,-65.5 parent: 2 - - uid: 7400 + - uid: 8082 components: - type: Transform pos: -24.5,-66.5 parent: 2 - - uid: 7401 + - uid: 8083 components: - type: Transform pos: -24.5,-67.5 parent: 2 - - uid: 7402 + - uid: 8084 components: - type: Transform pos: -22.5,-67.5 parent: 2 - - uid: 7403 + - uid: 8085 components: - type: Transform pos: -21.5,-67.5 parent: 2 - - uid: 7404 + - uid: 8086 components: - type: Transform pos: -20.5,-67.5 parent: 2 - - uid: 7405 + - uid: 8087 components: - type: Transform pos: -19.5,-67.5 parent: 2 - - uid: 7406 + - uid: 8088 components: - type: Transform pos: -18.5,-67.5 parent: 2 - - uid: 7407 + - uid: 8089 components: - type: Transform pos: -18.5,-68.5 parent: 2 - - uid: 7408 + - uid: 8090 components: - type: Transform pos: -7.5,-70.5 parent: 2 - - uid: 7409 + - uid: 8091 components: - type: Transform pos: -18.5,-69.5 parent: 2 - - uid: 7410 + - uid: 8092 components: - type: Transform pos: -17.5,-69.5 parent: 2 - - uid: 7411 + - uid: 8093 components: - type: Transform pos: -16.5,-69.5 parent: 2 - - uid: 7412 + - uid: 8094 components: - type: Transform pos: -15.5,-69.5 parent: 2 - - uid: 7413 + - uid: 8095 components: - type: Transform pos: -14.5,-69.5 parent: 2 - - uid: 7414 + - uid: 8096 components: - type: Transform pos: -13.5,-69.5 parent: 2 - - uid: 7415 + - uid: 8097 components: - type: Transform pos: -12.5,-69.5 parent: 2 - - uid: 7416 + - uid: 8098 components: - type: Transform pos: -11.5,-69.5 parent: 2 - - uid: 7417 + - uid: 8099 components: - type: Transform pos: -10.5,-69.5 parent: 2 - - uid: 7418 + - uid: 8100 components: - type: Transform pos: -9.5,-69.5 parent: 2 - - uid: 7419 + - uid: 8101 components: - type: Transform pos: -8.5,-69.5 parent: 2 - - uid: 7420 + - uid: 8102 components: - type: Transform pos: -7.5,-69.5 parent: 2 - - uid: 7421 + - uid: 8103 components: - type: Transform pos: -6.5,-70.5 parent: 2 - - uid: 7422 + - uid: 8104 components: - type: Transform pos: -5.5,-70.5 parent: 2 - - uid: 7423 + - uid: 8105 components: - type: Transform pos: -4.5,-70.5 parent: 2 - - uid: 7424 + - uid: 8106 components: - type: Transform pos: -3.5,-70.5 parent: 2 - - uid: 7425 + - uid: 8107 components: - type: Transform pos: -2.5,-70.5 parent: 2 - - uid: 7426 + - uid: 8108 components: - type: Transform pos: 3.5,-70.5 parent: 2 - - uid: 7427 + - uid: 8109 components: - type: Transform pos: -2.5,-69.5 parent: 2 - - uid: 7428 + - uid: 8110 components: - type: Transform pos: -1.5,-69.5 parent: 2 - - uid: 7429 + - uid: 8111 components: - type: Transform pos: -0.5,-69.5 parent: 2 - - uid: 7430 + - uid: 8112 components: - type: Transform pos: 0.5,-69.5 parent: 2 - - uid: 7431 + - uid: 8113 components: - type: Transform pos: 1.5,-69.5 parent: 2 - - uid: 7432 + - uid: 8114 components: - type: Transform pos: 2.5,-69.5 parent: 2 - - uid: 7433 + - uid: 8115 components: - type: Transform pos: 4.5,-70.5 parent: 2 - - uid: 7434 + - uid: 8116 components: - type: Transform pos: 5.5,-70.5 parent: 2 - - uid: 7435 + - uid: 8117 components: - type: Transform pos: 6.5,-70.5 parent: 2 - - uid: 7436 + - uid: 8118 components: - type: Transform pos: 7.5,-70.5 parent: 2 - - uid: 7437 + - uid: 8119 components: - type: Transform pos: 8.5,-70.5 parent: 2 - - uid: 7438 + - uid: 8120 components: - type: Transform pos: 8.5,-69.5 parent: 2 - - uid: 7439 + - uid: 8121 components: - type: Transform pos: 9.5,-69.5 parent: 2 - - uid: 7440 + - uid: 8122 components: - type: Transform pos: 10.5,-69.5 parent: 2 - - uid: 7441 + - uid: 8123 components: - type: Transform pos: 11.5,-69.5 parent: 2 - - uid: 7442 + - uid: 8124 components: - type: Transform pos: 12.5,-69.5 parent: 2 - - uid: 7443 + - uid: 8125 components: - type: Transform pos: 13.5,-69.5 parent: 2 - - uid: 7444 + - uid: 8126 components: - type: Transform pos: 14.5,-69.5 parent: 2 - - uid: 7445 + - uid: 8127 components: - type: Transform pos: 15.5,-69.5 parent: 2 - - uid: 7446 + - uid: 8128 components: - type: Transform pos: 16.5,-69.5 parent: 2 - - uid: 7447 + - uid: 8129 components: - type: Transform pos: 17.5,-69.5 parent: 2 - - uid: 7448 + - uid: 8130 components: - type: Transform pos: 18.5,-69.5 parent: 2 - - uid: 7449 + - uid: 8131 components: - type: Transform pos: 19.5,-69.5 parent: 2 - - uid: 7450 + - uid: 8132 components: - type: Transform pos: 19.5,-68.5 parent: 2 - - uid: 7451 + - uid: 8133 components: - type: Transform pos: 19.5,-67.5 parent: 2 - - uid: 7452 + - uid: 8134 components: - type: Transform pos: 20.5,-67.5 parent: 2 - - uid: 7453 + - uid: 8135 components: - type: Transform pos: 21.5,-67.5 parent: 2 - - uid: 7454 + - uid: 8136 components: - type: Transform pos: 22.5,-67.5 parent: 2 - - uid: 7455 + - uid: 8137 components: - type: Transform pos: 23.5,-67.5 parent: 2 - - uid: 7456 + - uid: 8138 components: - type: Transform pos: 24.5,-67.5 parent: 2 - - uid: 7457 + - uid: 8139 components: - type: Transform pos: 25.5,-67.5 parent: 2 - - uid: 7458 + - uid: 8140 components: - type: Transform pos: 25.5,-66.5 parent: 2 - - uid: 7459 + - uid: 8141 components: - type: Transform pos: 25.5,-65.5 parent: 2 - - uid: 7460 + - uid: 8142 components: - type: Transform pos: 26.5,-65.5 parent: 2 - - uid: 7461 + - uid: 8143 components: - type: Transform pos: 26.5,-64.5 parent: 2 - - uid: 7462 + - uid: 8144 components: - type: Transform pos: 26.5,-63.5 parent: 2 - - uid: 7463 + - uid: 8145 components: - type: Transform pos: 26.5,-62.5 parent: 2 - - uid: 7464 + - uid: 8146 components: - type: Transform pos: 26.5,-61.5 parent: 2 - - uid: 7465 + - uid: 8147 components: - type: Transform pos: 26.5,-60.5 parent: 2 - - uid: 7466 + - uid: 8148 components: - type: Transform pos: 26.5,-59.5 parent: 2 - - uid: 7467 + - uid: 8149 components: - type: Transform pos: 26.5,-58.5 parent: 2 - - uid: 7468 + - uid: 8150 components: - type: Transform pos: 26.5,-57.5 parent: 2 - - uid: 7469 + - uid: 8151 components: - type: Transform pos: 26.5,-56.5 parent: 2 - - uid: 7470 + - uid: 8152 components: - type: Transform pos: 26.5,-55.5 parent: 2 - - uid: 7471 + - uid: 8153 components: - type: Transform pos: 26.5,-54.5 parent: 2 - - uid: 7472 + - uid: 8154 components: - type: Transform pos: 26.5,-53.5 parent: 2 - - uid: 7473 + - uid: 8155 components: - type: Transform pos: 26.5,-52.5 parent: 2 - - uid: 7474 + - uid: 8156 components: - type: Transform pos: 0.5,-1.5 parent: 2 - - uid: 7475 + - uid: 8157 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 7476 + - uid: 8158 components: - type: Transform pos: -0.5,-6.5 parent: 2 - - uid: 7477 + - uid: 8159 components: - type: Transform pos: 26.5,-26.5 parent: 2 - - uid: 7478 + - uid: 8160 components: - type: Transform pos: 26.5,-25.5 parent: 2 - - uid: 7479 + - uid: 8161 components: - type: Transform pos: 26.5,-24.5 parent: 2 - - uid: 7480 + - uid: 8162 components: - type: Transform pos: 26.5,-23.5 parent: 2 - - uid: 7481 + - uid: 8163 components: - type: Transform pos: 26.5,-22.5 parent: 2 - - uid: 7482 + - uid: 8164 components: - type: Transform pos: 26.5,-21.5 parent: 2 - - uid: 7483 + - uid: 8165 components: - type: Transform pos: 26.5,-20.5 parent: 2 - - uid: 7484 + - uid: 8166 components: - type: Transform pos: 26.5,-19.5 parent: 2 - - uid: 7485 + - uid: 8167 components: - type: Transform pos: 26.5,-18.5 parent: 2 - - uid: 7486 + - uid: 8168 components: - type: Transform pos: 26.5,-17.5 parent: 2 - - uid: 7487 + - uid: 8169 components: - type: Transform pos: 26.5,-16.5 parent: 2 - - uid: 7488 + - uid: 8170 components: - type: Transform pos: 26.5,-15.5 parent: 2 - - uid: 7489 + - uid: 8171 components: - type: Transform pos: 26.5,-14.5 parent: 2 - - uid: 7490 + - uid: 8172 components: - type: Transform pos: 26.5,-13.5 parent: 2 - - uid: 7491 + - uid: 8173 components: - type: Transform pos: 26.5,-12.5 parent: 2 - - uid: 7492 + - uid: 8174 components: - type: Transform pos: 25.5,-12.5 parent: 2 - - uid: 7493 + - uid: 8175 components: - type: Transform pos: 25.5,-11.5 parent: 2 - - uid: 7494 + - uid: 8176 components: - type: Transform pos: 25.5,-10.5 parent: 2 - - uid: 7495 + - uid: 8177 components: - type: Transform pos: 19.5,-4.5 parent: 2 - - uid: 7496 + - uid: 8178 components: - type: Transform pos: 24.5,-10.5 parent: 2 - - uid: 7497 + - uid: 8179 components: - type: Transform pos: 24.5,-9.5 parent: 2 - - uid: 7498 + - uid: 8180 components: - type: Transform pos: 24.5,-8.5 parent: 2 - - uid: 7499 + - uid: 8181 components: - type: Transform pos: 23.5,-8.5 parent: 2 - - uid: 7500 + - uid: 8182 components: - type: Transform pos: 23.5,-7.5 parent: 2 - - uid: 7501 + - uid: 8183 components: - type: Transform pos: 22.5,-7.5 parent: 2 - - uid: 7502 + - uid: 8184 components: - type: Transform pos: 22.5,-6.5 parent: 2 - - uid: 7503 + - uid: 8185 components: - type: Transform pos: 21.5,-6.5 parent: 2 - - uid: 7504 + - uid: 8186 components: - type: Transform pos: 21.5,-5.5 parent: 2 - - uid: 7505 + - uid: 8187 components: - type: Transform pos: 20.5,-5.5 parent: 2 - - uid: 7506 + - uid: 8188 components: - type: Transform pos: 20.5,-4.5 parent: 2 - - uid: 7507 + - uid: 8189 components: - type: Transform pos: 18.5,-4.5 parent: 2 - - uid: 7508 + - uid: 8190 components: - type: Transform pos: 18.5,-3.5 parent: 2 - - uid: 7509 + - uid: 8191 components: - type: Transform pos: 17.5,-3.5 parent: 2 - - uid: 7510 + - uid: 8192 components: - type: Transform pos: 16.5,-3.5 parent: 2 - - uid: 7511 + - uid: 8193 components: - type: Transform pos: 16.5,-2.5 parent: 2 - - uid: 7512 + - uid: 8194 components: - type: Transform pos: 15.5,-2.5 parent: 2 - - uid: 7513 + - uid: 8195 components: - type: Transform pos: 14.5,-2.5 parent: 2 - - uid: 7514 + - uid: 8196 components: - type: Transform pos: 13.5,-2.5 parent: 2 - - uid: 7515 + - uid: 8197 components: - type: Transform pos: 12.5,-2.5 parent: 2 - - uid: 7531 + - uid: 8198 components: - type: Transform pos: -10.5,-2.5 parent: 2 - - uid: 7532 + - uid: 8199 components: - type: Transform pos: -11.5,-2.5 parent: 2 - - uid: 7533 + - uid: 8200 components: - type: Transform pos: -12.5,-2.5 parent: 2 - - uid: 7534 + - uid: 8201 components: - type: Transform pos: -13.5,-2.5 parent: 2 - - uid: 7535 + - uid: 8202 components: - type: Transform pos: -14.5,-2.5 parent: 2 - - uid: 7536 + - uid: 8203 components: - type: Transform pos: -15.5,-2.5 parent: 2 - - uid: 7537 + - uid: 8204 components: - type: Transform pos: -16.5,-2.5 parent: 2 - - uid: 7538 + - uid: 8205 components: - type: Transform pos: -16.5,-3.5 parent: 2 - - uid: 7539 + - uid: 8206 components: - type: Transform pos: -17.5,-3.5 parent: 2 - - uid: 7540 + - uid: 8207 components: - type: Transform pos: -17.5,-4.5 parent: 2 - - uid: 7541 + - uid: 8208 components: - type: Transform pos: -18.5,-4.5 parent: 2 - - uid: 7542 + - uid: 8209 components: - type: Transform pos: -19.5,-4.5 parent: 2 - - uid: 7543 + - uid: 8210 components: - type: Transform pos: -19.5,-5.5 parent: 2 - - uid: 7544 + - uid: 8211 components: - type: Transform pos: -20.5,-5.5 parent: 2 - - uid: 7545 + - uid: 8212 components: - type: Transform pos: -20.5,-6.5 parent: 2 - - uid: 7546 + - uid: 8213 components: - type: Transform pos: -21.5,-6.5 parent: 2 - - uid: 7547 + - uid: 8214 components: - type: Transform pos: -21.5,-7.5 parent: 2 - - uid: 7548 + - uid: 8215 components: - type: Transform pos: -22.5,-7.5 parent: 2 - - uid: 7549 + - uid: 8216 components: - type: Transform pos: -22.5,-8.5 parent: 2 - - uid: 7550 + - uid: 8217 components: - type: Transform pos: -23.5,-8.5 parent: 2 - - uid: 7551 + - uid: 8218 components: - type: Transform pos: -23.5,-9.5 parent: 2 - - uid: 7552 + - uid: 8219 components: - type: Transform pos: -23.5,-10.5 parent: 2 - - uid: 7553 + - uid: 8220 components: - type: Transform pos: -24.5,-10.5 parent: 2 - - uid: 7554 + - uid: 8221 components: - type: Transform pos: -24.5,-11.5 parent: 2 - - uid: 7555 + - uid: 8222 components: - type: Transform pos: -24.5,-12.5 parent: 2 - - uid: 7556 + - uid: 8223 components: - type: Transform pos: -25.5,-12.5 parent: 2 - - uid: 7557 + - uid: 8224 components: - type: Transform pos: -25.5,-13.5 parent: 2 - - uid: 7558 + - uid: 8225 components: - type: Transform pos: -25.5,-14.5 parent: 2 - - uid: 7559 + - uid: 8226 components: - type: Transform pos: -25.5,-15.5 parent: 2 - - uid: 7560 + - uid: 8227 components: - type: Transform pos: -25.5,-16.5 parent: 2 - - uid: 7561 + - uid: 8228 components: - type: Transform pos: -25.5,-17.5 parent: 2 - - uid: 7562 + - uid: 8229 components: - type: Transform pos: -25.5,-18.5 parent: 2 - - uid: 7563 + - uid: 8230 components: - type: Transform pos: -25.5,-19.5 parent: 2 - - uid: 7564 + - uid: 8231 components: - type: Transform pos: -25.5,-20.5 parent: 2 - - uid: 7565 + - uid: 8232 components: - type: Transform pos: -25.5,-21.5 parent: 2 - - uid: 7566 + - uid: 8233 components: - type: Transform pos: -25.5,-22.5 parent: 2 - - uid: 7567 + - uid: 8234 components: - type: Transform pos: -25.5,-23.5 parent: 2 - - uid: 7568 + - uid: 8235 components: - type: Transform pos: -25.5,-24.5 parent: 2 - - uid: 7569 + - uid: 8236 components: - type: Transform pos: -25.5,-25.5 parent: 2 - - uid: 7570 + - uid: 8237 components: - type: Transform pos: -25.5,-26.5 parent: 2 - - uid: 7571 + - uid: 8238 components: - type: Transform pos: -25.5,-27.5 parent: 2 - - uid: 7572 + - uid: 8239 components: - type: Transform pos: -25.5,-28.5 parent: 2 - - uid: 7573 + - uid: 8240 components: - type: Transform pos: -25.5,-29.5 parent: 2 - - uid: 7574 + - uid: 8241 components: - type: Transform pos: -25.5,-30.5 parent: 2 - - uid: 7575 + - uid: 8242 components: - type: Transform pos: -25.5,-31.5 parent: 2 - - uid: 7576 + - uid: 8243 components: - type: Transform pos: -25.5,-32.5 parent: 2 - - uid: 7577 + - uid: 8244 components: - type: Transform pos: -25.5,-33.5 parent: 2 - - uid: 7578 + - uid: 8245 components: - type: Transform pos: -25.5,-34.5 parent: 2 - - uid: 7579 + - uid: 8246 components: - type: Transform pos: -25.5,-35.5 parent: 2 - - uid: 7580 + - uid: 8247 components: - type: Transform pos: -26.5,-35.5 parent: 2 - - uid: 7581 + - uid: 8248 components: - type: Transform pos: -27.5,-35.5 parent: 2 - - uid: 7582 + - uid: 8249 components: - type: Transform pos: -28.5,-35.5 parent: 2 - - uid: 7583 + - uid: 8250 components: - type: Transform pos: -28.5,-36.5 parent: 2 - - uid: 7584 + - uid: 8251 components: - type: Transform pos: -28.5,-37.5 parent: 2 - - uid: 7585 + - uid: 8252 components: - type: Transform pos: -28.5,-38.5 parent: 2 - - uid: 7586 + - uid: 8253 components: - type: Transform pos: -28.5,-39.5 parent: 2 - - uid: 7587 + - uid: 8254 components: - type: Transform pos: -28.5,-40.5 parent: 2 - - uid: 7588 + - uid: 8255 components: - type: Transform pos: -28.5,-45.5 parent: 2 - - uid: 7589 + - uid: 8256 components: - type: Transform pos: -28.5,-44.5 parent: 2 - - uid: 7590 + - uid: 8257 components: - type: Transform pos: -28.5,-43.5 parent: 2 - - uid: 7591 + - uid: 8258 components: - type: Transform pos: -28.5,-42.5 parent: 2 - - uid: 7592 + - uid: 8259 components: - type: Transform pos: -28.5,-41.5 parent: 2 - - uid: 7593 + - uid: 8260 components: - type: Transform pos: -29.5,-43.5 parent: 2 - - uid: 7594 + - uid: 8261 components: - type: Transform pos: -30.5,-43.5 parent: 2 - - uid: 7595 + - uid: 8262 components: - type: Transform pos: -31.5,-43.5 parent: 2 - - uid: 7596 + - uid: 8263 components: - type: Transform pos: -39.5,-93.5 parent: 2 - - uid: 7597 + - uid: 8264 components: - type: Transform pos: 37.5,-78.5 parent: 2 - - uid: 7598 + - uid: 8265 components: - type: Transform pos: 41.5,-78.5 parent: 2 - - uid: 7599 + - uid: 8266 components: - type: Transform pos: 39.5,-82.5 parent: 2 - - uid: 7600 + - uid: 8267 components: - type: Transform pos: 52.5,-59.5 parent: 2 - - uid: 7601 + - uid: 8268 components: - type: Transform pos: 40.5,-83.5 parent: 2 - - uid: 7602 + - uid: 8269 components: - type: Transform pos: 53.5,-59.5 parent: 2 - - uid: 7604 + - uid: 8270 components: - type: Transform pos: 56.5,-50.5 parent: 2 - - uid: 7606 + - uid: 8271 components: - type: Transform pos: 62.5,-50.5 parent: 2 - - uid: 7607 + - uid: 8272 components: - type: Transform pos: 62.5,-49.5 parent: 2 - - uid: 7608 + - uid: 8273 components: - type: Transform pos: 62.5,-48.5 parent: 2 - - uid: 7609 + - uid: 8274 components: - type: Transform pos: 62.5,-47.5 parent: 2 - - uid: 7610 + - uid: 8275 components: - type: Transform pos: 58.5,-47.5 parent: 2 - - uid: 7611 + - uid: 8276 components: - type: Transform pos: 60.5,-47.5 parent: 2 - - uid: 7612 + - uid: 8277 components: - type: Transform pos: 66.5,-82.5 parent: 2 - - uid: 7613 + - uid: 8278 components: - type: Transform pos: 57.5,-47.5 parent: 2 - - uid: 7614 + - uid: 8279 components: - type: Transform pos: 56.5,-47.5 parent: 2 - - uid: 7615 + - uid: 8280 components: - type: Transform pos: 55.5,-47.5 parent: 2 - - uid: 7616 + - uid: 8281 components: - type: Transform pos: 54.5,-47.5 parent: 2 - - uid: 7617 + - uid: 8282 components: - type: Transform pos: 52.5,-69.5 parent: 2 - - uid: 7618 + - uid: 8283 components: - type: Transform pos: 53.5,-69.5 parent: 2 - - uid: 7619 + - uid: 8284 components: - type: Transform pos: 54.5,-69.5 parent: 2 - - uid: 7620 + - uid: 8285 components: - type: Transform pos: 54.5,-70.5 parent: 2 - - uid: 7621 + - uid: 8286 components: - type: Transform pos: 54.5,-71.5 parent: 2 - - uid: 7622 + - uid: 8287 components: - type: Transform pos: 54.5,-72.5 parent: 2 - - uid: 7623 + - uid: 8288 components: - type: Transform pos: 54.5,-73.5 parent: 2 - - uid: 7624 + - uid: 8289 components: - type: Transform pos: 53.5,-73.5 parent: 2 - - uid: 7625 + - uid: 8290 components: - type: Transform pos: 52.5,-73.5 parent: 2 - - uid: 7626 + - uid: 8291 components: - type: Transform pos: 52.5,-74.5 parent: 2 - - uid: 7627 + - uid: 8292 components: - type: Transform pos: 52.5,-75.5 parent: 2 - - uid: 7628 + - uid: 8293 components: - type: Transform pos: 52.5,-76.5 parent: 2 - - uid: 7629 + - uid: 8294 components: - type: Transform pos: 53.5,-76.5 parent: 2 - - uid: 7634 + - uid: 8295 components: - type: Transform pos: 34.5,-23.5 parent: 2 - - uid: 7635 + - uid: 8296 components: - type: Transform pos: 33.5,-23.5 parent: 2 - - uid: 7636 + - uid: 8297 components: - type: Transform pos: 33.5,-24.5 parent: 2 - - uid: 7637 + - uid: 8298 components: - type: Transform pos: 32.5,-24.5 parent: 2 - - uid: 7638 + - uid: 8299 components: - type: Transform pos: 61.5,-46.5 parent: 2 - - uid: 7639 + - uid: 8300 components: - type: Transform pos: 61.5,-45.5 parent: 2 - - uid: 7640 + - uid: 8301 components: - type: Transform pos: 61.5,-44.5 parent: 2 - - uid: 7641 + - uid: 8302 components: - type: Transform pos: 60.5,-44.5 parent: 2 - - uid: 7642 + - uid: 8303 components: - type: Transform pos: 59.5,-44.5 parent: 2 - - uid: 7643 + - uid: 8304 components: - type: Transform pos: 58.5,-44.5 parent: 2 - - uid: 7644 + - uid: 8305 components: - type: Transform pos: 57.5,-44.5 parent: 2 - - uid: 7645 + - uid: 8306 components: - type: Transform pos: 56.5,-44.5 parent: 2 - - uid: 7646 + - uid: 8307 components: - type: Transform pos: 55.5,-44.5 parent: 2 - - uid: 7647 + - uid: 8308 components: - type: Transform pos: 54.5,-44.5 parent: 2 - - uid: 7648 + - uid: 8309 components: - type: Transform pos: 53.5,-44.5 parent: 2 - - uid: 7649 + - uid: 8310 components: - type: Transform pos: 52.5,-44.5 parent: 2 - - uid: 7650 + - uid: 8311 components: - type: Transform pos: 51.5,-44.5 parent: 2 - - uid: 7651 + - uid: 8312 components: - type: Transform pos: 50.5,-44.5 parent: 2 - - uid: 7652 + - uid: 8313 components: - type: Transform pos: 49.5,-44.5 parent: 2 - - uid: 7653 + - uid: 8314 components: - type: Transform pos: 48.5,-44.5 parent: 2 - - uid: 7654 + - uid: 8315 components: - type: Transform pos: 47.5,-44.5 parent: 2 - - uid: 7655 + - uid: 8316 components: - type: Transform pos: 46.5,-44.5 parent: 2 - - uid: 7656 + - uid: 8317 components: - type: Transform pos: 45.5,-44.5 parent: 2 - - uid: 7657 + - uid: 8318 components: - type: Transform pos: 44.5,-44.5 parent: 2 - - uid: 7658 + - uid: 8319 components: - type: Transform pos: 44.5,-43.5 parent: 2 - - uid: 7659 + - uid: 8320 components: - type: Transform pos: 44.5,-42.5 parent: 2 - - uid: 7660 + - uid: 8321 components: - type: Transform pos: 44.5,-41.5 parent: 2 - - uid: 7661 + - uid: 8322 components: - type: Transform pos: 44.5,-40.5 parent: 2 - - uid: 7662 + - uid: 8323 components: - type: Transform pos: 44.5,-39.5 parent: 2 - - uid: 7663 + - uid: 8324 components: - type: Transform pos: 44.5,-38.5 parent: 2 - - uid: 7664 + - uid: 8325 components: - type: Transform pos: 44.5,-37.5 parent: 2 - - uid: 7665 + - uid: 8326 components: - type: Transform pos: 44.5,-36.5 parent: 2 - - uid: 7666 + - uid: 8327 components: - type: Transform pos: 44.5,-35.5 parent: 2 - - uid: 7667 + - uid: 8328 components: - type: Transform pos: 44.5,-34.5 parent: 2 - - uid: 7668 + - uid: 8329 components: - type: Transform pos: 44.5,-33.5 parent: 2 - - uid: 7669 + - uid: 8330 components: - type: Transform pos: 44.5,-32.5 parent: 2 - - uid: 7670 + - uid: 8331 components: - type: Transform pos: 44.5,-31.5 parent: 2 - - uid: 7671 + - uid: 8332 components: - type: Transform pos: 44.5,-30.5 parent: 2 - - uid: 7672 + - uid: 8333 components: - type: Transform pos: 44.5,-29.5 parent: 2 - - uid: 7673 + - uid: 8334 components: - type: Transform pos: 43.5,-29.5 parent: 2 - - uid: 7674 + - uid: 8335 components: - type: Transform pos: 42.5,-29.5 parent: 2 - - uid: 7675 + - uid: 8336 components: - type: Transform pos: 41.5,-29.5 parent: 2 - - uid: 7676 + - uid: 8337 components: - type: Transform pos: 40.5,-29.5 parent: 2 - - uid: 7677 + - uid: 8338 components: - type: Transform pos: 39.5,-29.5 parent: 2 - - uid: 7678 + - uid: 8339 components: - type: Transform pos: 38.5,-29.5 parent: 2 - - uid: 7679 + - uid: 8340 components: - type: Transform pos: 37.5,-29.5 parent: 2 - - uid: 7680 + - uid: 8341 components: - type: Transform pos: 36.5,-29.5 parent: 2 - - uid: 7681 + - uid: 8342 components: - type: Transform pos: 35.5,-29.5 parent: 2 - - uid: 7682 + - uid: 8343 components: - type: Transform pos: 35.5,-28.5 parent: 2 - - uid: 7683 + - uid: 8344 components: - type: Transform pos: 35.5,-27.5 parent: 2 - - uid: 7684 + - uid: 8345 components: - type: Transform pos: 35.5,-26.5 parent: 2 - - uid: 7685 + - uid: 8346 components: - type: Transform pos: 35.5,-25.5 parent: 2 - - uid: 7686 + - uid: 8347 components: - type: Transform pos: 35.5,-24.5 parent: 2 - - uid: 7687 + - uid: 8348 components: - type: Transform pos: 35.5,-23.5 parent: 2 - - uid: 7688 + - uid: 8349 components: - type: Transform pos: 44.5,-28.5 parent: 2 - - uid: 7689 + - uid: 8350 components: - type: Transform pos: 44.5,-27.5 parent: 2 - - uid: 7690 + - uid: 8351 components: - type: Transform pos: 44.5,-26.5 parent: 2 - - uid: 7713 + - uid: 8352 components: - type: Transform pos: 39.5,-6.5 parent: 2 - - uid: 7714 + - uid: 8353 components: - type: Transform pos: 39.5,-7.5 parent: 2 - - uid: 7715 + - uid: 8354 components: - type: Transform pos: 40.5,-7.5 parent: 2 - - uid: 7716 + - uid: 8355 components: - type: Transform pos: 40.5,-8.5 parent: 2 - - uid: 7717 + - uid: 8356 components: - type: Transform pos: 40.5,-9.5 parent: 2 - - uid: 7718 + - uid: 8357 components: - type: Transform pos: 40.5,-10.5 parent: 2 - - uid: 7719 + - uid: 8358 components: - type: Transform pos: 40.5,-11.5 parent: 2 - - uid: 7720 + - uid: 8359 components: - type: Transform pos: 40.5,-12.5 parent: 2 - - uid: 7721 + - uid: 8360 components: - type: Transform pos: 40.5,-13.5 parent: 2 - - uid: 7722 + - uid: 8361 components: - type: Transform pos: 40.5,-14.5 parent: 2 - - uid: 7723 + - uid: 8362 components: - type: Transform pos: 40.5,-15.5 parent: 2 - - uid: 7724 + - uid: 8363 components: - type: Transform pos: 40.5,-16.5 parent: 2 - - uid: 7725 + - uid: 8364 components: - type: Transform pos: 40.5,-17.5 parent: 2 - - uid: 7726 + - uid: 8365 components: - type: Transform pos: 40.5,-18.5 parent: 2 - - uid: 7727 + - uid: 8366 components: - type: Transform pos: 40.5,-19.5 parent: 2 - - uid: 7728 + - uid: 8367 components: - type: Transform pos: 40.5,-20.5 parent: 2 - - uid: 7729 + - uid: 8368 components: - type: Transform pos: 39.5,-20.5 parent: 2 - - uid: 7730 + - uid: 8369 components: - type: Transform pos: 38.5,-20.5 parent: 2 - - uid: 7731 + - uid: 8370 components: - type: Transform pos: 37.5,-20.5 parent: 2 - - uid: 7732 + - uid: 8371 components: - type: Transform pos: 36.5,-20.5 parent: 2 - - uid: 7733 + - uid: 8372 components: - type: Transform pos: 35.5,-20.5 parent: 2 - - uid: 7734 + - uid: 8373 components: - type: Transform pos: 35.5,-21.5 parent: 2 - - uid: 7735 + - uid: 8374 components: - type: Transform pos: 35.5,-22.5 parent: 2 - - uid: 7736 + - uid: 8375 components: - type: Transform pos: 45.5,-27.5 parent: 2 - - uid: 7737 + - uid: 8376 components: - type: Transform pos: 46.5,-27.5 parent: 2 - - uid: 7738 + - uid: 8377 components: - type: Transform pos: 47.5,-27.5 parent: 2 - - uid: 7739 + - uid: 8378 components: - type: Transform pos: 48.5,-27.5 parent: 2 - - uid: 7740 + - uid: 8379 components: - type: Transform pos: 49.5,-27.5 parent: 2 - - uid: 7741 + - uid: 8380 components: - type: Transform pos: 49.5,-28.5 parent: 2 - - uid: 7742 + - uid: 8381 components: - type: Transform pos: 50.5,-28.5 parent: 2 - - uid: 7743 + - uid: 8382 components: - type: Transform pos: 51.5,-28.5 parent: 2 - - uid: 7744 + - uid: 8383 components: - type: Transform pos: 52.5,-28.5 parent: 2 - - uid: 7745 + - uid: 8384 components: - type: Transform pos: 53.5,-28.5 parent: 2 - - uid: 7746 + - uid: 8385 components: - type: Transform pos: 54.5,-28.5 parent: 2 - - uid: 7747 + - uid: 8386 components: - type: Transform pos: 55.5,-28.5 parent: 2 - - uid: 7748 + - uid: 8387 components: - type: Transform pos: 56.5,-28.5 parent: 2 - - uid: 7749 + - uid: 8388 components: - type: Transform pos: 57.5,-28.5 parent: 2 - - uid: 7750 + - uid: 8389 components: - type: Transform pos: 57.5,-29.5 parent: 2 - - uid: 7751 + - uid: 8390 components: - type: Transform pos: 58.5,-29.5 parent: 2 - - uid: 7752 + - uid: 8391 components: - type: Transform pos: 59.5,-29.5 parent: 2 - - uid: 7753 + - uid: 8392 components: - type: Transform pos: 60.5,-29.5 parent: 2 - - uid: 7754 + - uid: 8393 components: - type: Transform pos: 60.5,-28.5 parent: 2 - - uid: 7755 + - uid: 8394 components: - type: Transform pos: 60.5,-27.5 parent: 2 - - uid: 7756 + - uid: 8395 components: - type: Transform pos: 60.5,-26.5 parent: 2 - - uid: 7757 + - uid: 8396 components: - type: Transform pos: 60.5,-25.5 parent: 2 - - uid: 7758 + - uid: 8397 components: - type: Transform pos: 60.5,-24.5 parent: 2 - - uid: 7759 + - uid: 8398 components: - type: Transform pos: 60.5,-23.5 parent: 2 - - uid: 7760 + - uid: 8399 components: - type: Transform pos: 60.5,-22.5 parent: 2 - - uid: 7761 + - uid: 8400 components: - type: Transform pos: 61.5,-22.5 parent: 2 - - uid: 7762 + - uid: 8401 components: - type: Transform pos: 62.5,-22.5 parent: 2 - - uid: 7763 + - uid: 8402 components: - type: Transform pos: 63.5,-22.5 parent: 2 - - uid: 7764 + - uid: 8403 components: - type: Transform pos: 64.5,-22.5 parent: 2 - - uid: 7765 + - uid: 8404 components: - type: Transform pos: 65.5,-22.5 parent: 2 - - uid: 7766 + - uid: 8405 components: - type: Transform pos: 66.5,-22.5 parent: 2 - - uid: 7767 + - uid: 8406 components: - type: Transform pos: 67.5,-22.5 parent: 2 - - uid: 7768 + - uid: 8407 components: - type: Transform pos: 68.5,-22.5 parent: 2 - - uid: 7769 + - uid: 8408 components: - type: Transform pos: 69.5,-22.5 parent: 2 - - uid: 7771 + - uid: 8409 components: - type: Transform pos: 69.5,-15.5 parent: 2 - - uid: 7772 + - uid: 8410 components: - type: Transform pos: 69.5,-16.5 parent: 2 - - uid: 7773 + - uid: 8411 components: - type: Transform pos: 69.5,-17.5 parent: 2 - - uid: 7774 + - uid: 8412 components: - type: Transform pos: 69.5,-18.5 parent: 2 - - uid: 7775 + - uid: 8413 components: - type: Transform pos: 69.5,-19.5 parent: 2 - - uid: 7776 + - uid: 8414 components: - type: Transform pos: 69.5,-20.5 parent: 2 - - uid: 7777 + - uid: 8415 components: - type: Transform pos: 69.5,-21.5 parent: 2 - - uid: 7806 + - uid: 8416 components: - type: Transform pos: 76.5,-23.5 parent: 2 - - uid: 7807 + - uid: 8417 components: - type: Transform pos: 77.5,-23.5 parent: 2 - - uid: 7808 + - uid: 8418 components: - type: Transform pos: 78.5,-23.5 parent: 2 - - uid: 7809 + - uid: 8419 components: - type: Transform pos: 78.5,-24.5 parent: 2 - - uid: 7810 + - uid: 8420 components: - type: Transform pos: 76.5,-22.5 parent: 2 - - uid: 7811 + - uid: 8421 components: - type: Transform pos: 76.5,-21.5 parent: 2 - - uid: 7812 + - uid: 8422 components: - type: Transform pos: 75.5,-21.5 parent: 2 - - uid: 7813 + - uid: 8423 components: - type: Transform pos: 74.5,-21.5 parent: 2 - - uid: 7814 + - uid: 8424 components: - type: Transform pos: 73.5,-21.5 parent: 2 - - uid: 7815 + - uid: 8425 components: - type: Transform pos: 72.5,-21.5 parent: 2 - - uid: 7816 + - uid: 8426 components: - type: Transform pos: 71.5,-21.5 parent: 2 - - uid: 7817 + - uid: 8427 components: - type: Transform pos: 70.5,-21.5 parent: 2 - - uid: 7818 + - uid: 8428 components: - type: Transform pos: 36.5,-37.5 parent: 2 - - uid: 7819 + - uid: 8429 components: - type: Transform pos: 35.5,-39.5 parent: 2 - - uid: 7820 + - uid: 8430 components: - type: Transform pos: 35.5,-37.5 parent: 2 - - uid: 7821 + - uid: 8431 components: - type: Transform pos: 37.5,-37.5 parent: 2 - - uid: 7822 + - uid: 8432 components: - type: Transform pos: 38.5,-37.5 parent: 2 - - uid: 7823 + - uid: 8433 components: - type: Transform pos: 39.5,-37.5 parent: 2 - - uid: 7824 + - uid: 8434 components: - type: Transform pos: 40.5,-37.5 parent: 2 - - uid: 7825 + - uid: 8435 components: - type: Transform pos: 43.5,-37.5 parent: 2 - - uid: 7826 + - uid: 8436 components: - type: Transform pos: 41.5,-39.5 parent: 2 - - uid: 7827 + - uid: 8437 components: - type: Transform pos: 41.5,-40.5 parent: 2 - - uid: 7828 + - uid: 8438 components: - type: Transform pos: 42.5,-37.5 parent: 2 - - uid: 7829 + - uid: 8439 components: - type: Transform pos: 41.5,-37.5 parent: 2 - - uid: 7830 + - uid: 8440 components: - type: Transform pos: 38.5,-2.5 parent: 2 - - uid: 7831 + - uid: 8441 components: - type: Transform pos: 37.5,-2.5 parent: 2 - - uid: 7832 + - uid: 8442 components: - type: Transform pos: 39.5,-4.5 parent: 2 - - uid: 7833 + - uid: 8443 components: - type: Transform pos: 37.5,7.5 parent: 2 - - uid: 7834 + - uid: 8444 components: - type: Transform pos: 38.5,7.5 parent: 2 - - uid: 7835 + - uid: 8445 components: - type: Transform pos: 39.5,7.5 parent: 2 - - uid: 7836 + - uid: 8446 components: - type: Transform pos: 40.5,7.5 parent: 2 - - uid: 7837 + - uid: 8447 components: - type: Transform pos: 40.5,8.5 parent: 2 - - uid: 7838 + - uid: 8448 components: - type: Transform pos: 40.5,9.5 parent: 2 - - uid: 7839 + - uid: 8449 components: - type: Transform pos: 40.5,10.5 parent: 2 - - uid: 7840 + - uid: 8450 components: - type: Transform pos: 40.5,11.5 parent: 2 - - uid: 7841 + - uid: 8451 components: - type: Transform pos: 40.5,12.5 parent: 2 - - uid: 7842 + - uid: 8452 components: - type: Transform pos: 40.5,13.5 parent: 2 - - uid: 7843 + - uid: 8453 components: - type: Transform pos: 40.5,14.5 parent: 2 - - uid: 7844 + - uid: 8454 components: - type: Transform pos: 40.5,15.5 parent: 2 - - uid: 7845 + - uid: 8455 components: - type: Transform pos: 40.5,16.5 parent: 2 - - uid: 7846 + - uid: 8456 components: - type: Transform pos: 40.5,17.5 parent: 2 - - uid: 7847 + - uid: 8457 components: - type: Transform pos: 39.5,17.5 parent: 2 - - uid: 7848 + - uid: 8458 components: - type: Transform pos: 38.5,17.5 parent: 2 - - uid: 7849 + - uid: 8459 components: - type: Transform pos: 37.5,17.5 parent: 2 - - uid: 7850 + - uid: 8460 components: - type: Transform pos: 36.5,17.5 parent: 2 - - uid: 7851 + - uid: 8461 components: - type: Transform pos: 35.5,17.5 parent: 2 - - uid: 7852 + - uid: 8462 components: - type: Transform pos: 34.5,17.5 parent: 2 - - uid: 7853 + - uid: 8463 components: - type: Transform pos: 33.5,17.5 parent: 2 - - uid: 7854 + - uid: 8464 components: - type: Transform pos: 32.5,17.5 parent: 2 - - uid: 7855 + - uid: 8465 components: - type: Transform pos: 31.5,17.5 parent: 2 - - uid: 7856 + - uid: 8466 components: - type: Transform pos: 30.5,17.5 parent: 2 - - uid: 7857 + - uid: 8467 components: - type: Transform pos: 30.5,16.5 parent: 2 - - uid: 7858 + - uid: 8468 components: - type: Transform pos: 29.5,16.5 parent: 2 - - uid: 7859 + - uid: 8469 components: - type: Transform pos: 28.5,16.5 parent: 2 - - uid: 7860 + - uid: 8470 components: - type: Transform pos: 27.5,16.5 parent: 2 - - uid: 7861 + - uid: 8471 components: - type: Transform pos: 26.5,16.5 parent: 2 - - uid: 7862 + - uid: 8472 components: - type: Transform pos: 25.5,16.5 parent: 2 - - uid: 7863 + - uid: 8473 components: - type: Transform pos: 24.5,16.5 parent: 2 - - uid: 7864 + - uid: 8474 components: - type: Transform pos: 23.5,16.5 parent: 2 - - uid: 7865 + - uid: 8475 components: - type: Transform pos: 22.5,16.5 parent: 2 - - uid: 7866 + - uid: 8476 components: - type: Transform pos: 22.5,17.5 parent: 2 - - uid: 7867 + - uid: 8477 components: - type: Transform pos: 22.5,18.5 parent: 2 - - uid: 7868 + - uid: 8478 components: - type: Transform pos: 21.5,18.5 parent: 2 - - uid: 7869 + - uid: 8479 components: - type: Transform pos: 21.5,16.5 parent: 2 - - uid: 7870 + - uid: 8480 components: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 7871 + - uid: 8481 components: - type: Transform pos: 21.5,14.5 parent: 2 - - uid: 7872 + - uid: 8482 components: - type: Transform pos: 21.5,13.5 parent: 2 - - uid: 7873 + - uid: 8483 components: - type: Transform pos: 21.5,12.5 parent: 2 - - uid: 7874 + - uid: 8484 components: - type: Transform pos: 21.5,11.5 parent: 2 - - uid: 7875 + - uid: 8485 components: - type: Transform pos: 20.5,11.5 parent: 2 - - uid: 7876 + - uid: 8486 components: - type: Transform pos: 20.5,10.5 parent: 2 - - uid: 7877 + - uid: 8487 components: - type: Transform pos: 20.5,9.5 parent: 2 - - uid: 7878 + - uid: 8488 components: - type: Transform pos: 20.5,7.5 parent: 2 - - uid: 7879 + - uid: 8489 components: - type: Transform pos: 20.5,6.5 parent: 2 - - uid: 7880 + - uid: 8490 components: - type: Transform pos: 19.5,6.5 parent: 2 - - uid: 7881 + - uid: 8491 components: - type: Transform pos: 18.5,6.5 parent: 2 - - uid: 7882 + - uid: 8492 components: - type: Transform pos: 17.5,6.5 parent: 2 - - uid: 7883 + - uid: 8493 components: - type: Transform pos: 16.5,6.5 parent: 2 - - uid: 7884 + - uid: 8494 components: - type: Transform pos: 15.5,6.5 parent: 2 - - uid: 7885 + - uid: 8495 components: - type: Transform pos: 15.5,7.5 parent: 2 - - uid: 7886 + - uid: 8496 components: - type: Transform pos: 15.5,8.5 parent: 2 - - uid: 7887 + - uid: 8497 components: - type: Transform pos: 15.5,9.5 parent: 2 - - uid: 7888 + - uid: 8498 components: - type: Transform pos: 14.5,9.5 parent: 2 - - uid: 7889 + - uid: 8499 components: - type: Transform pos: 13.5,9.5 parent: 2 - - uid: 7890 + - uid: 8500 components: - type: Transform pos: 12.5,9.5 parent: 2 - - uid: 7891 + - uid: 8501 components: - type: Transform pos: 15.5,5.5 parent: 2 - - uid: 7892 + - uid: 8502 components: - type: Transform pos: 15.5,4.5 parent: 2 - - uid: 7893 + - uid: 8503 components: - type: Transform pos: 15.5,3.5 parent: 2 - - uid: 7894 + - uid: 8504 components: - type: Transform pos: 15.5,2.5 parent: 2 - - uid: 7895 + - uid: 8505 components: - type: Transform pos: 15.5,1.5 parent: 2 - - uid: 7896 + - uid: 8506 components: - type: Transform pos: 15.5,0.5 parent: 2 - - uid: 7897 + - uid: 8507 components: - type: Transform pos: 14.5,0.5 parent: 2 - - uid: 7898 + - uid: 8508 components: - type: Transform pos: 13.5,0.5 parent: 2 - - uid: 7899 + - uid: 8509 components: - type: Transform pos: 12.5,0.5 parent: 2 - - uid: 7900 + - uid: 8510 components: - type: Transform pos: 12.5,1.5 parent: 2 - - uid: 7901 + - uid: 8511 components: - type: Transform pos: 12.5,2.5 parent: 2 - - uid: 7902 + - uid: 8512 components: - type: Transform pos: 12.5,3.5 parent: 2 - - uid: 7903 + - uid: 8513 components: - type: Transform pos: 12.5,4.5 parent: 2 - - uid: 7904 + - uid: 8514 components: - type: Transform pos: 11.5,4.5 parent: 2 - - uid: 7905 + - uid: 8515 components: - type: Transform pos: 10.5,4.5 parent: 2 - - uid: 7906 + - uid: 8516 components: - type: Transform pos: 9.5,4.5 parent: 2 - - uid: 7907 + - uid: 8517 components: - type: Transform pos: 8.5,4.5 parent: 2 - - uid: 7908 + - uid: 8518 components: - type: Transform pos: 7.5,4.5 parent: 2 - - uid: 7909 + - uid: 8519 components: - type: Transform pos: 6.5,4.5 parent: 2 - - uid: 7910 + - uid: 8520 components: - type: Transform pos: 5.5,4.5 parent: 2 - - uid: 7911 + - uid: 8521 components: - type: Transform pos: 4.5,4.5 parent: 2 - - uid: 7912 + - uid: 8522 components: - type: Transform pos: 3.5,4.5 parent: 2 - - uid: 7913 + - uid: 8523 components: - type: Transform pos: 2.5,4.5 parent: 2 - - uid: 7914 + - uid: 8524 components: - type: Transform pos: 1.5,4.5 parent: 2 - - uid: 7915 + - uid: 8525 components: - type: Transform pos: 0.5,4.5 parent: 2 - - uid: 7916 + - uid: 8526 components: - type: Transform pos: -0.5,4.5 parent: 2 - - uid: 7917 + - uid: 8527 components: - type: Transform pos: -1.5,4.5 parent: 2 - - uid: 7918 + - uid: 8528 components: - type: Transform pos: -2.5,4.5 parent: 2 - - uid: 7919 + - uid: 8529 components: - type: Transform pos: -3.5,4.5 parent: 2 - - uid: 7920 + - uid: 8530 components: - type: Transform pos: -4.5,4.5 parent: 2 - - uid: 7921 + - uid: 8531 components: - type: Transform pos: -5.5,4.5 parent: 2 - - uid: 7922 + - uid: 8532 components: - type: Transform pos: -6.5,4.5 parent: 2 - - uid: 7923 + - uid: 8533 components: - type: Transform pos: -7.5,4.5 parent: 2 - - uid: 7924 + - uid: 8534 components: - type: Transform pos: -8.5,4.5 parent: 2 - - uid: 7925 + - uid: 8535 components: - type: Transform pos: -9.5,4.5 parent: 2 - - uid: 7926 + - uid: 8536 components: - type: Transform pos: -10.5,4.5 parent: 2 - - uid: 7927 + - uid: 8537 components: - type: Transform pos: -11.5,4.5 parent: 2 - - uid: 7928 + - uid: 8538 components: - type: Transform pos: -11.5,3.5 parent: 2 - - uid: 7929 + - uid: 8539 components: - type: Transform pos: -11.5,2.5 parent: 2 - - uid: 7930 + - uid: 8540 components: - type: Transform pos: -11.5,1.5 parent: 2 - - uid: 7931 + - uid: 8541 components: - type: Transform pos: -11.5,0.5 parent: 2 - - uid: 7932 + - uid: 8542 components: - type: Transform pos: -12.5,0.5 parent: 2 - - uid: 7933 + - uid: 8543 components: - type: Transform pos: -13.5,0.5 parent: 2 - - uid: 7934 + - uid: 8544 components: - type: Transform pos: -14.5,0.5 parent: 2 - - uid: 7935 + - uid: 8545 components: - type: Transform pos: -15.5,0.5 parent: 2 - - uid: 7936 + - uid: 8546 components: - type: Transform pos: -15.5,1.5 parent: 2 - - uid: 7937 + - uid: 8547 components: - type: Transform pos: -15.5,2.5 parent: 2 - - uid: 7938 - components: - - type: Transform - pos: -15.5,3.5 - parent: 2 - - uid: 7939 + - uid: 8548 components: - type: Transform pos: 0.5,3.5 parent: 2 - - uid: 7940 + - uid: 8549 components: - type: Transform pos: 0.5,2.5 parent: 2 - - uid: 7941 + - uid: 8550 components: - type: Transform pos: 0.5,1.5 parent: 2 - - uid: 7949 + - uid: 8551 components: - type: Transform pos: -59.5,-27.5 parent: 2 - - uid: 7950 + - uid: 8552 components: - type: Transform pos: -59.5,-28.5 parent: 2 - - uid: 7951 + - uid: 8553 components: - type: Transform pos: -38.5,8.5 parent: 2 - - uid: 7952 + - uid: 8554 components: - type: Transform pos: -37.5,8.5 parent: 2 - - uid: 7953 + - uid: 8555 components: - type: Transform pos: -36.5,8.5 parent: 2 - - uid: 7954 + - uid: 8556 components: - type: Transform pos: -36.5,9.5 parent: 2 - - uid: 7955 + - uid: 8557 components: - type: Transform pos: -39.5,8.5 parent: 2 - - uid: 7956 + - uid: 8558 components: - type: Transform pos: -39.5,7.5 parent: 2 - - uid: 7957 + - uid: 8559 components: - type: Transform pos: -39.5,6.5 parent: 2 - - uid: 7958 + - uid: 8560 components: - type: Transform pos: -39.5,5.5 parent: 2 - - uid: 7959 + - uid: 8561 components: - type: Transform pos: -39.5,4.5 parent: 2 - - uid: 7960 + - uid: 8562 components: - type: Transform pos: -39.5,3.5 parent: 2 - - uid: 7961 + - uid: 8563 components: - type: Transform pos: -39.5,2.5 parent: 2 - - uid: 7962 + - uid: 8564 components: - type: Transform pos: -39.5,1.5 parent: 2 - - uid: 7963 + - uid: 8565 components: - type: Transform pos: -38.5,1.5 parent: 2 - - uid: 7964 + - uid: 8566 components: - type: Transform pos: -37.5,1.5 parent: 2 - - uid: 7965 + - uid: 8567 components: - type: Transform pos: -36.5,1.5 parent: 2 - - uid: 7966 + - uid: 8568 components: - type: Transform pos: -35.5,1.5 parent: 2 - - uid: 7967 + - uid: 8569 components: - type: Transform pos: -34.5,1.5 parent: 2 - - uid: 7968 + - uid: 8570 components: - type: Transform pos: -33.5,1.5 parent: 2 - - uid: 7969 + - uid: 8571 components: - type: Transform pos: -32.5,1.5 parent: 2 - - uid: 7970 + - uid: 8572 components: - type: Transform pos: -32.5,0.5 parent: 2 - - uid: 7971 + - uid: 8573 components: - type: Transform pos: -32.5,-0.5 parent: 2 - - uid: 7972 + - uid: 8574 components: - type: Transform pos: -32.5,-1.5 parent: 2 - - uid: 7973 + - uid: 8575 components: - type: Transform pos: -32.5,-2.5 parent: 2 - - uid: 7974 + - uid: 8576 components: - type: Transform pos: -32.5,-3.5 parent: 2 - - uid: 7975 + - uid: 8577 components: - type: Transform pos: -32.5,-4.5 parent: 2 - - uid: 7976 + - uid: 8578 components: - type: Transform pos: -32.5,-5.5 parent: 2 - - uid: 7977 + - uid: 8579 components: - type: Transform pos: -32.5,-6.5 parent: 2 - - uid: 7978 + - uid: 8580 components: - type: Transform pos: -32.5,-7.5 parent: 2 - - uid: 7979 + - uid: 8581 components: - type: Transform pos: -32.5,-8.5 parent: 2 - - uid: 7980 + - uid: 8582 components: - type: Transform pos: -32.5,-9.5 parent: 2 - - uid: 7981 + - uid: 8583 components: - type: Transform pos: -32.5,-10.5 parent: 2 - - uid: 7982 + - uid: 8584 components: - type: Transform pos: -32.5,-11.5 parent: 2 - - uid: 7983 + - uid: 8585 components: - type: Transform pos: -32.5,-12.5 parent: 2 - - uid: 7984 + - uid: 8586 components: - type: Transform pos: -32.5,-13.5 parent: 2 - - uid: 7985 + - uid: 8587 components: - type: Transform pos: -32.5,-14.5 parent: 2 - - uid: 7986 + - uid: 8588 components: - type: Transform pos: -32.5,-15.5 parent: 2 - - uid: 7987 + - uid: 8589 components: - type: Transform pos: -32.5,-16.5 parent: 2 - - uid: 7988 + - uid: 8590 components: - type: Transform pos: -32.5,-17.5 parent: 2 - - uid: 7989 + - uid: 8591 components: - type: Transform pos: -31.5,-17.5 parent: 2 - - uid: 7990 + - uid: 8592 components: - type: Transform pos: -31.5,-18.5 parent: 2 - - uid: 7991 + - uid: 8593 components: - type: Transform pos: -31.5,-19.5 parent: 2 - - uid: 7992 + - uid: 8594 components: - type: Transform pos: -31.5,-20.5 parent: 2 - - uid: 7993 + - uid: 8595 components: - type: Transform pos: -31.5,-21.5 parent: 2 - - uid: 7994 + - uid: 8596 components: - type: Transform pos: -31.5,-22.5 parent: 2 - - uid: 7995 + - uid: 8597 components: - type: Transform pos: -31.5,-23.5 parent: 2 - - uid: 7996 + - uid: 8598 components: - type: Transform pos: -31.5,-24.5 parent: 2 - - uid: 7997 + - uid: 8599 components: - type: Transform pos: -32.5,-24.5 parent: 2 - - uid: 7998 + - uid: 8600 components: - type: Transform pos: -32.5,-25.5 parent: 2 - - uid: 7999 + - uid: 8601 components: - type: Transform pos: -32.5,-26.5 parent: 2 - - uid: 8000 + - uid: 8602 components: - type: Transform pos: -32.5,-27.5 parent: 2 - - uid: 8001 + - uid: 8603 components: - type: Transform pos: -32.5,-28.5 parent: 2 - - uid: 8002 + - uid: 8604 components: - type: Transform pos: -32.5,-29.5 parent: 2 - - uid: 8003 + - uid: 8605 components: - type: Transform pos: -32.5,-30.5 parent: 2 - - uid: 8004 + - uid: 8606 components: - type: Transform pos: -32.5,-31.5 parent: 2 - - uid: 8005 + - uid: 8607 components: - type: Transform pos: -32.5,-32.5 parent: 2 - - uid: 8006 + - uid: 8608 components: - type: Transform pos: -31.5,-32.5 parent: 2 - - uid: 8007 + - uid: 8609 components: - type: Transform pos: -31.5,-33.5 parent: 2 - - uid: 8008 + - uid: 8610 components: - type: Transform pos: -31.5,-34.5 parent: 2 - - uid: 8009 + - uid: 8611 components: - type: Transform pos: -31.5,-35.5 parent: 2 - - uid: 8010 + - uid: 8612 components: - type: Transform pos: -31.5,-36.5 parent: 2 - - uid: 8011 + - uid: 8613 components: - type: Transform pos: -31.5,-37.5 parent: 2 - - uid: 8012 + - uid: 8614 components: - type: Transform pos: -31.5,-38.5 parent: 2 - - uid: 8013 + - uid: 8615 components: - type: Transform pos: -31.5,-39.5 parent: 2 - - uid: 8014 + - uid: 8616 components: - type: Transform pos: -31.5,-40.5 parent: 2 - - uid: 8015 + - uid: 8617 components: - type: Transform pos: -31.5,-41.5 parent: 2 - - uid: 8016 + - uid: 8618 components: - type: Transform pos: -31.5,-42.5 parent: 2 - - uid: 8017 + - uid: 8619 components: - type: Transform pos: -32.5,-43.5 parent: 2 - - uid: 8018 + - uid: 8620 components: - type: Transform pos: -33.5,-43.5 parent: 2 - - uid: 8019 + - uid: 8621 components: - type: Transform pos: -34.5,-43.5 parent: 2 - - uid: 8020 + - uid: 8622 components: - type: Transform pos: -35.5,-43.5 parent: 2 - - uid: 8021 + - uid: 8623 components: - type: Transform pos: -36.5,-43.5 parent: 2 - - uid: 8022 + - uid: 8624 components: - type: Transform pos: -37.5,-43.5 parent: 2 - - uid: 8023 + - uid: 8625 components: - type: Transform pos: -38.5,-43.5 parent: 2 - - uid: 8024 + - uid: 8626 components: - type: Transform pos: -39.5,-43.5 parent: 2 - - uid: 8025 + - uid: 8627 components: - type: Transform pos: -40.5,-43.5 parent: 2 - - uid: 8026 + - uid: 8628 components: - type: Transform pos: -41.5,-43.5 parent: 2 - - uid: 8027 + - uid: 8629 components: - type: Transform pos: -42.5,-43.5 parent: 2 - - uid: 8028 + - uid: 8630 components: - type: Transform pos: -43.5,-43.5 parent: 2 - - uid: 8029 + - uid: 8631 components: - type: Transform pos: -44.5,-43.5 parent: 2 - - uid: 8030 + - uid: 8632 components: - type: Transform pos: -45.5,-43.5 parent: 2 - - uid: 8031 + - uid: 8633 components: - type: Transform pos: -46.5,-43.5 parent: 2 - - uid: 8032 + - uid: 8634 components: - type: Transform pos: -47.5,-43.5 parent: 2 - - uid: 8033 + - uid: 8635 components: - type: Transform pos: -48.5,-43.5 parent: 2 - - uid: 8034 + - uid: 8636 components: - type: Transform pos: -49.5,-43.5 parent: 2 - - uid: 8035 + - uid: 8637 components: - type: Transform pos: -50.5,-43.5 parent: 2 - - uid: 8036 + - uid: 8638 components: - type: Transform pos: -51.5,-43.5 parent: 2 - - uid: 8037 + - uid: 8639 components: - type: Transform pos: -52.5,-43.5 parent: 2 - - uid: 8038 + - uid: 8640 components: - type: Transform pos: -53.5,-43.5 parent: 2 - - uid: 8039 + - uid: 8641 components: - type: Transform pos: -54.5,-43.5 parent: 2 - - uid: 8040 + - uid: 8642 components: - type: Transform pos: -55.5,-43.5 parent: 2 - - uid: 8041 + - uid: 8643 components: - type: Transform pos: -56.5,-43.5 parent: 2 - - uid: 8042 + - uid: 8644 components: - type: Transform pos: -57.5,-43.5 parent: 2 - - uid: 8043 + - uid: 8645 components: - type: Transform pos: -59.5,-38.5 parent: 2 - - uid: 8044 + - uid: 8646 components: - type: Transform pos: -59.5,-37.5 parent: 2 - - uid: 8045 + - uid: 8647 components: - type: Transform pos: -59.5,-36.5 parent: 2 - - uid: 8046 + - uid: 8648 components: - type: Transform pos: -59.5,-35.5 parent: 2 - - uid: 8047 + - uid: 8649 components: - type: Transform pos: -59.5,-34.5 parent: 2 - - uid: 8048 + - uid: 8650 components: - type: Transform pos: -59.5,-33.5 parent: 2 - - uid: 8049 + - uid: 8651 components: - type: Transform pos: -59.5,-32.5 parent: 2 - - uid: 8050 + - uid: 8652 components: - type: Transform pos: -59.5,-31.5 parent: 2 - - uid: 8051 + - uid: 8653 components: - type: Transform pos: -59.5,-30.5 parent: 2 - - uid: 8052 + - uid: 8654 components: - type: Transform pos: -59.5,-29.5 parent: 2 - - uid: 8053 + - uid: 8655 components: - type: Transform pos: -58.5,-28.5 parent: 2 - - uid: 8054 + - uid: 8656 components: - type: Transform pos: -57.5,-28.5 parent: 2 - - uid: 8055 + - uid: 8657 components: - type: Transform pos: -56.5,-28.5 parent: 2 - - uid: 8056 + - uid: 8658 components: - type: Transform pos: -55.5,-28.5 parent: 2 - - uid: 8057 + - uid: 8659 components: - type: Transform pos: -54.5,-28.5 parent: 2 - - uid: 8058 + - uid: 8660 components: - type: Transform pos: -53.5,-28.5 parent: 2 - - uid: 8059 + - uid: 8661 components: - type: Transform pos: -52.5,-28.5 parent: 2 - - uid: 8060 + - uid: 8662 components: - type: Transform pos: -51.5,-28.5 parent: 2 - - uid: 8061 + - uid: 8663 components: - type: Transform pos: -50.5,-28.5 parent: 2 - - uid: 8062 + - uid: 8664 components: - type: Transform pos: -49.5,-28.5 parent: 2 - - uid: 8063 + - uid: 8665 components: - type: Transform pos: -48.5,-28.5 parent: 2 - - uid: 8064 + - uid: 8666 components: - type: Transform pos: -47.5,-28.5 parent: 2 - - uid: 8065 + - uid: 8667 components: - type: Transform pos: -46.5,-28.5 parent: 2 - - uid: 8066 + - uid: 8668 components: - type: Transform pos: -45.5,-28.5 parent: 2 - - uid: 8067 + - uid: 8669 components: - type: Transform pos: -44.5,-28.5 parent: 2 - - uid: 8068 + - uid: 8670 components: - type: Transform pos: -43.5,-28.5 parent: 2 - - uid: 8069 + - uid: 8671 components: - type: Transform pos: -42.5,-28.5 parent: 2 - - uid: 8070 + - uid: 8672 components: - type: Transform pos: -41.5,-28.5 parent: 2 - - uid: 8071 + - uid: 8673 components: - type: Transform pos: -41.5,-27.5 parent: 2 - - uid: 8073 + - uid: 8674 components: - type: Transform pos: -46.5,-78.5 parent: 2 - - uid: 8074 + - uid: 8675 components: - type: Transform pos: -65.5,-53.5 parent: 2 - - uid: 8075 + - uid: 8676 components: - type: Transform pos: -66.5,-53.5 parent: 2 - - uid: 8076 + - uid: 8677 components: - type: Transform pos: -67.5,-53.5 parent: 2 - - uid: 8077 + - uid: 8678 components: - type: Transform pos: -68.5,-53.5 parent: 2 - - uid: 8079 + - uid: 8679 components: - type: Transform pos: -46.5,-79.5 parent: 2 - - uid: 8080 + - uid: 8680 components: - type: Transform pos: -46.5,-80.5 parent: 2 - - uid: 8081 + - uid: 8681 components: - type: Transform pos: -45.5,-80.5 parent: 2 - - uid: 8082 + - uid: 8682 components: - type: Transform pos: -44.5,-80.5 parent: 2 - - uid: 8083 + - uid: 8683 components: - type: Transform pos: -43.5,-80.5 parent: 2 - - uid: 8084 + - uid: 8684 components: - type: Transform pos: -42.5,-80.5 parent: 2 - - uid: 8085 + - uid: 8685 components: - type: Transform pos: -41.5,-80.5 parent: 2 - - uid: 8086 + - uid: 8686 components: - type: Transform pos: -41.5,-81.5 parent: 2 - - uid: 8087 + - uid: 8687 components: - type: Transform pos: -41.5,-82.5 parent: 2 - - uid: 8088 + - uid: 8688 components: - type: Transform pos: -41.5,-83.5 parent: 2 - - uid: 8089 + - uid: 8689 components: - type: Transform pos: -41.5,-84.5 parent: 2 - - uid: 8090 + - uid: 8690 components: - type: Transform pos: -41.5,-85.5 parent: 2 - - uid: 8091 + - uid: 8691 components: - type: Transform pos: -40.5,-85.5 parent: 2 - - uid: 8092 + - uid: 8692 components: - type: Transform pos: -39.5,-85.5 parent: 2 - - uid: 8093 + - uid: 8693 components: - type: Transform pos: -38.5,-85.5 parent: 2 - - uid: 8094 + - uid: 8694 components: - type: Transform pos: -38.5,-86.5 parent: 2 - - uid: 8095 + - uid: 8695 components: - type: Transform pos: -38.5,-87.5 parent: 2 - - uid: 8096 + - uid: 8696 components: - type: Transform pos: -38.5,-92.5 parent: 2 - - uid: 8097 + - uid: 8697 components: - type: Transform pos: -39.5,-92.5 parent: 2 - - uid: 8098 + - uid: 8698 components: - type: Transform pos: -40.5,-92.5 parent: 2 - - uid: 8099 + - uid: 8699 components: - type: Transform pos: -41.5,-92.5 parent: 2 - - uid: 8100 + - uid: 8700 components: - type: Transform pos: 63.5,-67.5 parent: 2 - - uid: 8101 + - uid: 8701 components: - type: Transform pos: -38.5,-91.5 parent: 2 - - uid: 8102 + - uid: 8702 components: - type: Transform pos: -38.5,-90.5 parent: 2 - - uid: 8103 + - uid: 8703 components: - type: Transform pos: -38.5,-89.5 parent: 2 - - uid: 8104 + - uid: 8704 components: - type: Transform pos: 14.5,-82.5 parent: 2 - - uid: 8105 + - uid: 8705 components: - type: Transform pos: 19.5,-86.5 parent: 2 - - uid: 8106 + - uid: 8706 components: - type: Transform pos: 22.5,-87.5 parent: 2 - - uid: 8107 + - uid: 8707 components: - type: Transform pos: 21.5,-87.5 parent: 2 - - uid: 8108 + - uid: 8708 components: - type: Transform pos: 20.5,-87.5 parent: 2 - - uid: 8109 + - uid: 8709 components: - type: Transform pos: 22.5,-86.5 parent: 2 - - uid: 8110 + - uid: 8710 components: - type: Transform pos: 22.5,-85.5 parent: 2 - - uid: 8111 + - uid: 8711 components: - type: Transform pos: 22.5,-84.5 parent: 2 - - uid: 8112 + - uid: 8712 components: - type: Transform pos: -13.5,-90.5 parent: 2 - - uid: 8113 + - uid: 8713 components: - type: Transform pos: -14.5,-90.5 parent: 2 - - uid: 8114 + - uid: 8714 components: - type: Transform pos: -15.5,-90.5 parent: 2 - - uid: 8115 + - uid: 8715 components: - type: Transform pos: -15.5,-89.5 parent: 2 - - uid: 8116 + - uid: 8716 components: - type: Transform pos: -15.5,-88.5 parent: 2 - - uid: 8117 + - uid: 8717 components: - type: Transform pos: -15.5,-87.5 parent: 2 - - uid: 8118 + - uid: 8718 components: - type: Transform pos: -15.5,-86.5 parent: 2 - - uid: 8119 + - uid: 8719 components: - type: Transform pos: -15.5,-85.5 parent: 2 - - uid: 8120 + - uid: 8720 components: - type: Transform pos: -15.5,-84.5 parent: 2 - - uid: 8121 + - uid: 8721 components: - type: Transform pos: -15.5,-83.5 parent: 2 - - uid: 8122 + - uid: 8722 components: - type: Transform pos: -15.5,-82.5 parent: 2 - - uid: 8123 + - uid: 8723 components: - type: Transform pos: -15.5,-81.5 parent: 2 - - uid: 8124 + - uid: 8724 components: - type: Transform pos: -15.5,-80.5 parent: 2 - - uid: 8125 + - uid: 8725 components: - type: Transform pos: -14.5,-80.5 parent: 2 - - uid: 8126 + - uid: 8726 components: - type: Transform pos: -13.5,-80.5 parent: 2 - - uid: 8127 + - uid: 8727 components: - type: Transform pos: -12.5,-80.5 parent: 2 - - uid: 8128 + - uid: 8728 components: - type: Transform pos: -11.5,-80.5 parent: 2 - - uid: 8129 + - uid: 8729 components: - type: Transform pos: -11.5,-79.5 parent: 2 - - uid: 8130 + - uid: 8730 components: - type: Transform pos: -11.5,-78.5 parent: 2 - - uid: 8131 + - uid: 8731 components: - type: Transform pos: -12.5,-90.5 parent: 2 - - uid: 8132 + - uid: 8732 components: - type: Transform pos: -11.5,-90.5 parent: 2 - - uid: 8133 + - uid: 8733 components: - type: Transform pos: -10.5,-90.5 parent: 2 - - uid: 8134 + - uid: 8734 components: - type: Transform pos: -9.5,-90.5 parent: 2 - - uid: 8135 + - uid: 8735 components: - type: Transform pos: -8.5,-90.5 parent: 2 - - uid: 8136 + - uid: 8736 components: - type: Transform pos: -7.5,-90.5 parent: 2 - - uid: 8137 + - uid: 8737 components: - type: Transform pos: -7.5,-89.5 parent: 2 - - uid: 8138 + - uid: 8738 components: - type: Transform pos: -7.5,-88.5 parent: 2 - - uid: 8139 + - uid: 8739 components: - type: Transform pos: -7.5,-87.5 parent: 2 - - uid: 8140 + - uid: 8740 components: - type: Transform pos: -6.5,-87.5 parent: 2 - - uid: 8141 + - uid: 8741 components: - type: Transform pos: -5.5,-87.5 parent: 2 - - uid: 8142 + - uid: 8742 components: - type: Transform pos: -4.5,-87.5 parent: 2 - - uid: 8143 + - uid: 8743 components: - type: Transform pos: -3.5,-87.5 parent: 2 - - uid: 8144 + - uid: 8744 components: - type: Transform pos: -2.5,-87.5 parent: 2 - - uid: 8145 + - uid: 8745 components: - type: Transform pos: -1.5,-87.5 parent: 2 - - uid: 8146 + - uid: 8746 components: - type: Transform pos: -0.5,-87.5 parent: 2 - - uid: 8147 + - uid: 8747 components: - type: Transform pos: 0.5,-87.5 parent: 2 - - uid: 8148 + - uid: 8748 components: - type: Transform pos: 1.5,-87.5 parent: 2 - - uid: 8149 + - uid: 8749 components: - type: Transform pos: 1.5,-88.5 parent: 2 - - uid: 8150 + - uid: 8750 components: - type: Transform pos: 2.5,-88.5 parent: 2 - - uid: 8151 + - uid: 8751 components: - type: Transform pos: 3.5,-88.5 parent: 2 - - uid: 8152 + - uid: 8752 components: - type: Transform pos: 4.5,-88.5 parent: 2 - - uid: 8153 + - uid: 8753 components: - type: Transform pos: 5.5,-88.5 parent: 2 - - uid: 8154 + - uid: 8754 components: - type: Transform pos: 6.5,-88.5 parent: 2 - - uid: 8155 + - uid: 8755 components: - type: Transform pos: 7.5,-88.5 parent: 2 - - uid: 8156 + - uid: 8756 components: - type: Transform pos: 8.5,-88.5 parent: 2 - - uid: 8157 + - uid: 8757 components: - type: Transform pos: 8.5,-87.5 parent: 2 - - uid: 8158 + - uid: 8758 components: - type: Transform pos: 9.5,-87.5 parent: 2 - - uid: 8159 + - uid: 8759 components: - type: Transform pos: 10.5,-87.5 parent: 2 - - uid: 8160 + - uid: 8760 components: - type: Transform pos: 10.5,-86.5 parent: 2 - - uid: 8161 + - uid: 8761 components: - type: Transform pos: 10.5,-85.5 parent: 2 - - uid: 8162 + - uid: 8762 components: - type: Transform pos: 10.5,-84.5 parent: 2 - - uid: 8163 + - uid: 8763 components: - type: Transform pos: 10.5,-83.5 parent: 2 - - uid: 8164 + - uid: 8764 components: - type: Transform pos: 11.5,-83.5 parent: 2 - - uid: 8165 + - uid: 8765 components: - type: Transform pos: 12.5,-83.5 parent: 2 - - uid: 8166 + - uid: 8766 components: - type: Transform pos: 13.5,-83.5 parent: 2 - - uid: 8167 + - uid: 8767 components: - type: Transform pos: 14.5,-84.5 parent: 2 - - uid: 8168 + - uid: 8768 components: - type: Transform pos: 15.5,-84.5 parent: 2 - - uid: 8169 + - uid: 8769 components: - type: Transform pos: 16.5,-84.5 parent: 2 - - uid: 8170 + - uid: 8770 components: - type: Transform pos: 17.5,-84.5 parent: 2 - - uid: 8171 + - uid: 8771 components: - type: Transform pos: 18.5,-84.5 parent: 2 - - uid: 8172 + - uid: 8772 components: - type: Transform pos: 19.5,-84.5 parent: 2 - - uid: 8173 + - uid: 8773 components: - type: Transform pos: 20.5,-84.5 parent: 2 - - uid: 8174 + - uid: 8774 components: - type: Transform pos: 21.5,-84.5 parent: 2 - - uid: 8175 + - uid: 8775 components: - type: Transform pos: 14.5,-81.5 parent: 2 - - uid: 8176 + - uid: 8776 components: - type: Transform pos: 14.5,-80.5 parent: 2 - - uid: 8177 + - uid: 8777 components: - type: Transform pos: 14.5,-79.5 parent: 2 - - uid: 8178 + - uid: 8778 components: - type: Transform pos: 14.5,-78.5 parent: 2 - - uid: 8179 + - uid: 8779 components: - type: Transform pos: 14.5,-77.5 parent: 2 - - uid: 8180 + - uid: 8780 components: - type: Transform pos: 14.5,-76.5 parent: 2 - - uid: 8181 + - uid: 8781 components: - type: Transform pos: 14.5,-75.5 parent: 2 - - uid: 8182 + - uid: 8782 components: - type: Transform pos: 13.5,-75.5 parent: 2 - - uid: 8183 + - uid: 8783 components: - type: Transform pos: 12.5,-75.5 parent: 2 - - uid: 8184 + - uid: 8784 components: - type: Transform pos: 11.5,-75.5 parent: 2 - - uid: 8185 + - uid: 8785 components: - type: Transform pos: 10.5,-75.5 parent: 2 - - uid: 8186 + - uid: 8786 components: - type: Transform pos: 9.5,-75.5 parent: 2 - - uid: 8187 + - uid: 8787 components: - type: Transform pos: 8.5,-75.5 parent: 2 - - uid: 8188 + - uid: 8788 components: - type: Transform pos: 7.5,-75.5 parent: 2 - - uid: 8189 + - uid: 8789 components: - type: Transform pos: 6.5,-75.5 parent: 2 - - uid: 8190 + - uid: 8790 components: - type: Transform pos: 5.5,-75.5 parent: 2 - - uid: 8191 + - uid: 8791 components: - type: Transform pos: 4.5,-75.5 parent: 2 - - uid: 8192 + - uid: 8792 components: - type: Transform pos: 3.5,-75.5 parent: 2 - - uid: 8193 + - uid: 8793 components: - type: Transform pos: 2.5,-75.5 parent: 2 - - uid: 8194 + - uid: 8794 components: - type: Transform pos: 1.5,-75.5 parent: 2 - - uid: 8195 + - uid: 8795 components: - type: Transform pos: 0.5,-75.5 parent: 2 - - uid: 8196 + - uid: 8796 components: - type: Transform pos: -0.5,-75.5 parent: 2 - - uid: 8197 + - uid: 8797 components: - type: Transform pos: -1.5,-75.5 parent: 2 - - uid: 8198 + - uid: 8798 components: - type: Transform pos: -2.5,-75.5 parent: 2 - - uid: 8199 + - uid: 8799 components: - type: Transform pos: -3.5,-75.5 parent: 2 - - uid: 8200 + - uid: 8800 components: - type: Transform pos: -4.5,-75.5 parent: 2 - - uid: 8201 + - uid: 8801 components: - type: Transform pos: -5.5,-75.5 parent: 2 - - uid: 8202 + - uid: 8802 components: - type: Transform pos: -6.5,-75.5 parent: 2 - - uid: 8203 + - uid: 8803 components: - type: Transform pos: -7.5,-75.5 parent: 2 - - uid: 8204 + - uid: 8804 components: - type: Transform pos: -8.5,-75.5 parent: 2 - - uid: 8205 + - uid: 8805 components: - type: Transform pos: -9.5,-75.5 parent: 2 - - uid: 8206 + - uid: 8806 components: - type: Transform pos: -10.5,-75.5 parent: 2 - - uid: 8207 + - uid: 8807 components: - type: Transform pos: -11.5,-75.5 parent: 2 - - uid: 8208 + - uid: 8808 components: - type: Transform pos: -11.5,-76.5 parent: 2 - - uid: 8209 + - uid: 8809 components: - type: Transform pos: -11.5,-77.5 parent: 2 - - uid: 8210 + - uid: 8810 components: - type: Transform pos: 0.5,-74.5 parent: 2 - - uid: 8211 + - uid: 8811 components: - type: Transform pos: 0.5,-73.5 parent: 2 - - uid: 8212 + - uid: 8812 components: - type: Transform pos: 0.5,-72.5 parent: 2 - - uid: 8213 + - uid: 8813 components: - type: Transform pos: 0.5,-71.5 parent: 2 - - uid: 8214 + - uid: 8814 components: - type: Transform pos: 0.5,-70.5 parent: 2 - - uid: 8215 + - uid: 8815 components: - type: Transform pos: -43.5,-94.5 parent: 2 - - uid: 8216 + - uid: 8816 components: - type: Transform pos: -41.5,-94.5 parent: 2 - - uid: 8217 + - uid: 8817 components: - type: Transform pos: -42.5,-94.5 parent: 2 - - uid: 8218 + - uid: 8818 components: - type: Transform pos: -39.5,-94.5 parent: 2 - - uid: 8219 + - uid: 8819 components: - type: Transform pos: -40.5,-94.5 parent: 2 - - uid: 8220 + - uid: 8820 components: - type: Transform pos: -44.5,-94.5 parent: 2 - - uid: 8221 + - uid: 8821 components: - type: Transform pos: -45.5,-94.5 parent: 2 - - uid: 8222 + - uid: 8822 components: - type: Transform pos: -46.5,-94.5 parent: 2 - - uid: 8223 + - uid: 8823 components: - type: Transform pos: -47.5,-94.5 parent: 2 - - uid: 8224 + - uid: 8824 components: - type: Transform pos: -48.5,-94.5 parent: 2 - - uid: 8225 + - uid: 8825 components: - type: Transform pos: -49.5,-94.5 parent: 2 - - uid: 8226 + - uid: 8826 components: - type: Transform pos: -50.5,-94.5 parent: 2 - - uid: 8227 + - uid: 8827 components: - type: Transform pos: -51.5,-94.5 parent: 2 - - uid: 8228 + - uid: 8828 components: - type: Transform pos: -52.5,-94.5 parent: 2 - - uid: 8229 + - uid: 8829 components: - type: Transform pos: -52.5,-93.5 parent: 2 - - uid: 8230 + - uid: 8830 components: - type: Transform pos: -52.5,-92.5 parent: 2 - - uid: 8231 + - uid: 8831 components: - type: Transform pos: -52.5,-91.5 parent: 2 - - uid: 8232 + - uid: 8832 components: - type: Transform pos: -53.5,-91.5 parent: 2 - - uid: 8233 + - uid: 8833 components: - type: Transform pos: -53.5,-90.5 parent: 2 - - uid: 8234 + - uid: 8834 components: - type: Transform pos: -53.5,-89.5 parent: 2 - - uid: 8235 + - uid: 8835 components: - type: Transform pos: -53.5,-88.5 parent: 2 - - uid: 8236 + - uid: 8836 components: - type: Transform pos: -53.5,-87.5 parent: 2 - - uid: 8237 + - uid: 8837 components: - type: Transform pos: -64.5,-53.5 parent: 2 - - uid: 8238 + - uid: 8838 components: - type: Transform pos: -64.5,-54.5 parent: 2 - - uid: 8239 + - uid: 8839 components: - type: Transform pos: -64.5,-55.5 parent: 2 - - uid: 8240 + - uid: 8840 components: - type: Transform pos: -64.5,-56.5 parent: 2 - - uid: 8241 + - uid: 8841 components: - type: Transform pos: -64.5,-57.5 parent: 2 - - uid: 8242 + - uid: 8842 components: - type: Transform pos: -64.5,-58.5 parent: 2 - - uid: 8243 + - uid: 8843 components: - type: Transform pos: -64.5,-59.5 parent: 2 - - uid: 8244 + - uid: 8844 components: - type: Transform pos: -64.5,-60.5 parent: 2 - - uid: 8245 + - uid: 8845 components: - type: Transform pos: -63.5,-60.5 parent: 2 - - uid: 8246 + - uid: 8846 components: - type: Transform pos: -62.5,-60.5 parent: 2 - - uid: 8247 + - uid: 8847 components: - type: Transform pos: -61.5,-60.5 parent: 2 - - uid: 8248 + - uid: 8848 components: - type: Transform pos: -60.5,-60.5 parent: 2 - - uid: 8249 + - uid: 8849 components: - type: Transform pos: -59.5,-60.5 parent: 2 - - uid: 8250 + - uid: 8850 components: - type: Transform pos: -58.5,-60.5 parent: 2 - - uid: 8251 + - uid: 8851 components: - type: Transform pos: -57.5,-60.5 parent: 2 - - uid: 8252 + - uid: 8852 components: - type: Transform pos: -57.5,-61.5 parent: 2 - - uid: 8253 + - uid: 8853 components: - type: Transform pos: -57.5,-62.5 parent: 2 - - uid: 8254 + - uid: 8854 components: - type: Transform pos: -57.5,-63.5 parent: 2 - - uid: 8255 + - uid: 8855 components: - type: Transform pos: -57.5,-64.5 parent: 2 - - uid: 8256 + - uid: 8856 components: - type: Transform pos: -57.5,-65.5 parent: 2 - - uid: 8257 + - uid: 8857 components: - type: Transform pos: -58.5,-65.5 parent: 2 - - uid: 8258 + - uid: 8858 components: - type: Transform pos: -58.5,-66.5 parent: 2 - - uid: 8259 + - uid: 8859 components: - type: Transform pos: -58.5,-67.5 parent: 2 - - uid: 8260 + - uid: 8860 components: - type: Transform pos: -58.5,-68.5 parent: 2 - - uid: 8261 + - uid: 8861 components: - type: Transform pos: -58.5,-69.5 parent: 2 - - uid: 8262 + - uid: 8862 components: - type: Transform pos: -56.5,-77.5 parent: 2 - - uid: 8263 + - uid: 8863 components: - type: Transform pos: -55.5,-77.5 parent: 2 - - uid: 8264 + - uid: 8864 components: - type: Transform pos: -54.5,-77.5 parent: 2 - - uid: 8265 + - uid: 8865 components: - type: Transform pos: -53.5,-77.5 parent: 2 - - uid: 8266 + - uid: 8866 components: - type: Transform pos: -64.5,-52.5 parent: 2 - - uid: 8267 + - uid: 8867 components: - type: Transform pos: -63.5,-52.5 parent: 2 - - uid: 8268 + - uid: 8868 components: - type: Transform pos: -62.5,-52.5 parent: 2 - - uid: 8269 + - uid: 8869 components: - type: Transform pos: -61.5,-52.5 parent: 2 - - uid: 8270 + - uid: 8870 components: - type: Transform pos: -60.5,-52.5 parent: 2 - - uid: 8271 + - uid: 8871 components: - type: Transform pos: -59.5,-52.5 parent: 2 - - uid: 8272 + - uid: 8872 components: - type: Transform pos: -59.5,-51.5 parent: 2 - - uid: 8273 + - uid: 8873 components: - type: Transform pos: -59.5,-50.5 parent: 2 - - uid: 8274 + - uid: 8874 components: - type: Transform pos: -59.5,-49.5 parent: 2 - - uid: 8275 + - uid: 8875 components: - type: Transform pos: -59.5,-48.5 parent: 2 - - uid: 8276 + - uid: 8876 components: - type: Transform pos: -59.5,-47.5 parent: 2 - - uid: 8277 + - uid: 8877 components: - type: Transform pos: -59.5,-46.5 parent: 2 - - uid: 8278 + - uid: 8878 components: - type: Transform pos: -59.5,-45.5 parent: 2 - - uid: 8279 + - uid: 8879 components: - type: Transform pos: -59.5,-44.5 parent: 2 - - uid: 8280 + - uid: 8880 components: - type: Transform pos: -59.5,-43.5 parent: 2 - - uid: 8281 + - uid: 8881 components: - type: Transform pos: -58.5,-43.5 parent: 2 - - uid: 8282 + - uid: 8882 components: - type: Transform pos: -16.5,0.5 parent: 2 - - uid: 8283 + - uid: 8883 components: - type: Transform pos: -17.5,0.5 parent: 2 - - uid: 8284 + - uid: 8884 components: - type: Transform pos: -18.5,0.5 parent: 2 - - uid: 8285 + - uid: 8885 components: - type: Transform pos: -18.5,-0.5 parent: 2 - - uid: 8286 + - uid: 8886 components: - type: Transform pos: -19.5,-0.5 parent: 2 - - uid: 8287 + - uid: 8887 components: - type: Transform pos: -20.5,-0.5 parent: 2 - - uid: 8288 + - uid: 8888 components: - type: Transform pos: -20.5,-1.5 parent: 2 - - uid: 8289 + - uid: 8889 components: - type: Transform pos: -21.5,-1.5 parent: 2 - - uid: 8290 + - uid: 8890 components: - type: Transform pos: -21.5,-2.5 parent: 2 - - uid: 8291 + - uid: 8891 components: - type: Transform pos: -22.5,-2.5 parent: 2 - - uid: 8292 + - uid: 8892 components: - type: Transform pos: -22.5,-3.5 parent: 2 - - uid: 8293 + - uid: 8893 components: - type: Transform pos: -23.5,-3.5 parent: 2 - - uid: 8294 + - uid: 8894 components: - type: Transform pos: -23.5,-4.5 parent: 2 - - uid: 8295 + - uid: 8895 components: - type: Transform pos: -24.5,-4.5 parent: 2 - - uid: 8296 + - uid: 8896 components: - type: Transform pos: -25.5,-4.5 parent: 2 - - uid: 8297 + - uid: 8897 components: - type: Transform pos: -25.5,-5.5 parent: 2 - - uid: 8298 + - uid: 8898 components: - type: Transform pos: -26.5,-5.5 parent: 2 - - uid: 8299 + - uid: 8899 components: - type: Transform pos: -26.5,-6.5 parent: 2 - - uid: 8300 + - uid: 8900 components: - type: Transform pos: -26.5,-7.5 parent: 2 - - uid: 8301 + - uid: 8901 components: - type: Transform pos: -27.5,-7.5 parent: 2 - - uid: 8302 + - uid: 8902 components: - type: Transform pos: -28.5,-7.5 parent: 2 - - uid: 8303 + - uid: 8903 components: - type: Transform pos: -29.5,-7.5 parent: 2 - - uid: 8304 + - uid: 8904 components: - type: Transform pos: -30.5,-7.5 parent: 2 - - uid: 8305 + - uid: 8905 components: - type: Transform pos: -31.5,-7.5 parent: 2 - - uid: 8306 + - uid: 8906 components: - type: Transform pos: -30.5,-32.5 parent: 2 - - uid: 8307 + - uid: 8907 components: - type: Transform pos: -29.5,-32.5 parent: 2 - - uid: 8308 + - uid: 8908 components: - type: Transform pos: -28.5,-32.5 parent: 2 - - uid: 8309 + - uid: 8909 components: - type: Transform pos: -28.5,-31.5 parent: 2 - - uid: 8310 + - uid: 8910 components: - type: Transform pos: -28.5,-30.5 parent: 2 - - uid: 8311 + - uid: 8911 components: - type: Transform pos: -28.5,-29.5 parent: 2 - - uid: 8312 + - uid: 8912 components: - type: Transform pos: -28.5,-28.5 parent: 2 - - uid: 8313 + - uid: 8913 components: - type: Transform pos: -28.5,-27.5 parent: 2 - - uid: 8314 + - uid: 8914 components: - type: Transform pos: -28.5,-26.5 parent: 2 - - uid: 8315 + - uid: 8915 components: - type: Transform pos: -28.5,-25.5 parent: 2 - - uid: 8316 + - uid: 8916 components: - type: Transform pos: -28.5,-24.5 parent: 2 - - uid: 8317 + - uid: 8917 components: - type: Transform pos: -28.5,-23.5 parent: 2 - - uid: 8318 + - uid: 8918 components: - type: Transform pos: -28.5,-22.5 parent: 2 - - uid: 8319 + - uid: 8919 components: - type: Transform pos: -28.5,-21.5 parent: 2 - - uid: 8320 + - uid: 8920 components: - type: Transform pos: -28.5,-20.5 parent: 2 - - uid: 8321 + - uid: 8921 components: - type: Transform pos: -28.5,-19.5 parent: 2 - - uid: 8322 + - uid: 8922 components: - type: Transform pos: -28.5,-18.5 parent: 2 - - uid: 8323 + - uid: 8923 components: - type: Transform pos: -28.5,-17.5 parent: 2 - - uid: 8324 + - uid: 8924 components: - type: Transform pos: -28.5,-16.5 parent: 2 - - uid: 8325 + - uid: 8925 components: - type: Transform pos: -28.5,-15.5 parent: 2 - - uid: 8326 + - uid: 8926 components: - type: Transform pos: -28.5,-14.5 parent: 2 - - uid: 8327 + - uid: 8927 components: - type: Transform pos: -28.5,-13.5 parent: 2 - - uid: 8328 + - uid: 8928 components: - type: Transform pos: -28.5,-12.5 parent: 2 - - uid: 8329 + - uid: 8929 components: - type: Transform pos: -28.5,-11.5 parent: 2 - - uid: 8330 + - uid: 8930 components: - type: Transform pos: -28.5,-10.5 parent: 2 - - uid: 8331 + - uid: 8931 components: - type: Transform pos: -28.5,-9.5 parent: 2 - - uid: 8332 + - uid: 8932 components: - type: Transform pos: -28.5,-8.5 parent: 2 - - uid: 8333 + - uid: 8933 components: - type: Transform pos: -31.5,-44.5 parent: 2 - - uid: 8334 + - uid: 8934 components: - type: Transform pos: -31.5,-45.5 parent: 2 - - uid: 8335 + - uid: 8935 components: - type: Transform pos: -31.5,-46.5 parent: 2 - - uid: 8336 + - uid: 8936 components: - type: Transform pos: -31.5,-47.5 parent: 2 - - uid: 8337 + - uid: 8937 components: - type: Transform pos: -31.5,-48.5 parent: 2 - - uid: 8338 + - uid: 8938 components: - type: Transform pos: -31.5,-49.5 parent: 2 - - uid: 8339 + - uid: 8939 components: - type: Transform pos: -31.5,-50.5 parent: 2 - - uid: 8340 + - uid: 8940 components: - type: Transform pos: -31.5,-51.5 parent: 2 - - uid: 8341 + - uid: 8941 components: - type: Transform pos: -31.5,-52.5 parent: 2 - - uid: 8342 + - uid: 8942 components: - type: Transform pos: -31.5,-53.5 parent: 2 - - uid: 8343 + - uid: 8943 components: - type: Transform pos: -31.5,-54.5 parent: 2 - - uid: 8344 + - uid: 8944 components: - type: Transform pos: -38.5,-84.5 parent: 2 - - uid: 8345 + - uid: 8945 components: - type: Transform pos: -38.5,-83.5 parent: 2 - - uid: 8346 + - uid: 8946 components: - type: Transform pos: -38.5,-82.5 parent: 2 - - uid: 8347 + - uid: 8947 components: - type: Transform pos: -38.5,-81.5 parent: 2 - - uid: 8348 + - uid: 8948 components: - type: Transform pos: -38.5,-80.5 parent: 2 - - uid: 8349 + - uid: 8949 components: - type: Transform pos: -38.5,-79.5 parent: 2 - - uid: 8350 + - uid: 8950 components: - type: Transform pos: -38.5,-78.5 parent: 2 - - uid: 8351 + - uid: 8951 components: - type: Transform pos: -38.5,-77.5 parent: 2 - - uid: 8352 + - uid: 8952 components: - type: Transform pos: -38.5,-76.5 parent: 2 - - uid: 8353 + - uid: 8953 components: - type: Transform pos: -37.5,-76.5 parent: 2 - - uid: 8354 + - uid: 8954 components: - type: Transform pos: -36.5,-76.5 parent: 2 - - uid: 8355 + - uid: 8955 components: - type: Transform pos: -35.5,-76.5 parent: 2 - - uid: 8356 + - uid: 8956 components: - type: Transform pos: -34.5,-76.5 parent: 2 - - uid: 8357 + - uid: 8957 components: - type: Transform pos: -33.5,-76.5 parent: 2 - - uid: 8358 + - uid: 8958 components: - type: Transform pos: -32.5,-76.5 parent: 2 - - uid: 8359 + - uid: 8959 components: - type: Transform pos: -32.5,-75.5 parent: 2 - - uid: 8360 + - uid: 8960 components: - type: Transform pos: -32.5,-74.5 parent: 2 - - uid: 8361 + - uid: 8961 components: - type: Transform pos: -32.5,-73.5 parent: 2 - - uid: 8362 + - uid: 8962 components: - type: Transform pos: -32.5,-72.5 parent: 2 - - uid: 8363 + - uid: 8963 components: - type: Transform pos: -32.5,-71.5 parent: 2 - - uid: 8364 + - uid: 8964 components: - type: Transform pos: -32.5,-70.5 parent: 2 - - uid: 8365 + - uid: 8965 components: - type: Transform pos: -31.5,-70.5 parent: 2 - - uid: 8366 + - uid: 8966 components: - type: Transform pos: -31.5,-69.5 parent: 2 - - uid: 8367 + - uid: 8967 components: - type: Transform pos: -31.5,-68.5 parent: 2 - - uid: 8368 + - uid: 8968 components: - type: Transform pos: -31.5,-67.5 parent: 2 - - uid: 8369 + - uid: 8969 components: - type: Transform pos: -31.5,-66.5 parent: 2 - - uid: 8370 + - uid: 8970 components: - type: Transform pos: -31.5,-65.5 parent: 2 - - uid: 8371 + - uid: 8971 components: - type: Transform pos: -31.5,-64.5 parent: 2 - - uid: 8372 + - uid: 8972 components: - type: Transform pos: -32.5,-64.5 parent: 2 - - uid: 8373 + - uid: 8973 components: - type: Transform pos: -32.5,-63.5 parent: 2 - - uid: 8374 + - uid: 8974 components: - type: Transform pos: -32.5,-62.5 parent: 2 - - uid: 8375 + - uid: 8975 components: - type: Transform pos: -32.5,-61.5 parent: 2 - - uid: 8376 + - uid: 8976 components: - type: Transform pos: -32.5,-60.5 parent: 2 - - uid: 8377 + - uid: 8977 components: - type: Transform pos: -32.5,-59.5 parent: 2 - - uid: 8378 + - uid: 8978 components: - type: Transform pos: -32.5,-58.5 parent: 2 - - uid: 8379 + - uid: 8979 components: - type: Transform pos: -32.5,-57.5 parent: 2 - - uid: 8380 + - uid: 8980 components: - type: Transform pos: -32.5,-56.5 parent: 2 - - uid: 8381 + - uid: 8981 components: - type: Transform pos: -32.5,-55.5 parent: 2 - - uid: 8382 + - uid: 8982 components: - type: Transform pos: -32.5,-54.5 parent: 2 - - uid: 8383 + - uid: 8983 components: - type: Transform pos: -30.5,-54.5 parent: 2 - - uid: 8384 + - uid: 8984 components: - type: Transform pos: -29.5,-54.5 parent: 2 - - uid: 8385 + - uid: 8985 components: - type: Transform pos: -28.5,-54.5 parent: 2 - - uid: 8386 + - uid: 8986 components: - type: Transform pos: -28.5,-55.5 parent: 2 - - uid: 8387 + - uid: 8987 components: - type: Transform pos: -28.5,-56.5 parent: 2 - - uid: 8388 + - uid: 8988 components: - type: Transform pos: -28.5,-57.5 parent: 2 - - uid: 8389 + - uid: 8989 components: - type: Transform pos: -28.5,-58.5 parent: 2 - - uid: 8390 + - uid: 8990 components: - type: Transform pos: -28.5,-59.5 parent: 2 - - uid: 8391 + - uid: 8991 components: - type: Transform pos: -28.5,-60.5 parent: 2 - - uid: 8392 + - uid: 8992 components: - type: Transform pos: -28.5,-61.5 parent: 2 - - uid: 8393 + - uid: 8993 components: - type: Transform pos: -28.5,-62.5 parent: 2 - - uid: 8394 + - uid: 8994 components: - type: Transform pos: -28.5,-63.5 parent: 2 - - uid: 8395 + - uid: 8995 components: - type: Transform pos: -28.5,-64.5 parent: 2 - - uid: 8396 + - uid: 8996 components: - type: Transform pos: -28.5,-65.5 parent: 2 - - uid: 8397 + - uid: 8997 components: - type: Transform pos: -28.5,-66.5 parent: 2 - - uid: 8398 + - uid: 8998 components: - type: Transform pos: -28.5,-67.5 parent: 2 - - uid: 8399 + - uid: 8999 components: - type: Transform pos: -28.5,-68.5 parent: 2 - - uid: 8400 + - uid: 9000 components: - type: Transform pos: -28.5,-69.5 parent: 2 - - uid: 8401 + - uid: 9001 components: - type: Transform pos: -28.5,-70.5 parent: 2 - - uid: 8402 + - uid: 9002 components: - type: Transform pos: -28.5,-71.5 parent: 2 - - uid: 8403 + - uid: 9003 components: - type: Transform pos: -28.5,-72.5 parent: 2 - - uid: 8404 + - uid: 9004 components: - type: Transform pos: -28.5,-73.5 parent: 2 - - uid: 8405 + - uid: 9005 components: - type: Transform pos: -28.5,-74.5 parent: 2 - - uid: 8406 + - uid: 9006 components: - type: Transform pos: -28.5,-75.5 parent: 2 - - uid: 8407 + - uid: 9007 components: - type: Transform pos: -28.5,-76.5 parent: 2 - - uid: 8408 + - uid: 9008 components: - type: Transform pos: -28.5,-77.5 parent: 2 - - uid: 8409 + - uid: 9009 components: - type: Transform pos: -29.5,-77.5 parent: 2 - - uid: 8410 + - uid: 9010 components: - type: Transform pos: -30.5,-77.5 parent: 2 - - uid: 8411 + - uid: 9011 components: - type: Transform pos: -31.5,-77.5 parent: 2 - - uid: 8412 + - uid: 9012 components: - type: Transform pos: -27.5,-70.5 parent: 2 - - uid: 8413 + - uid: 9013 components: - type: Transform pos: -26.5,-70.5 parent: 2 - - uid: 8414 + - uid: 9014 components: - type: Transform pos: -25.5,-70.5 parent: 2 - - uid: 8415 + - uid: 9015 components: - type: Transform pos: -24.5,-70.5 parent: 2 - - uid: 8416 + - uid: 9016 components: - type: Transform pos: -23.5,-70.5 parent: 2 - - uid: 8417 + - uid: 9017 components: - type: Transform pos: -22.5,-70.5 parent: 2 - - uid: 8418 + - uid: 9018 components: - type: Transform pos: -22.5,-71.5 parent: 2 - - uid: 8419 + - uid: 9019 components: - type: Transform pos: -21.5,-71.5 parent: 2 - - uid: 8420 + - uid: 9020 components: - type: Transform pos: -21.5,-72.5 parent: 2 - - uid: 8421 + - uid: 9021 components: - type: Transform pos: -20.5,-72.5 parent: 2 - - uid: 8422 + - uid: 9022 components: - type: Transform pos: -19.5,-72.5 parent: 2 - - uid: 8423 + - uid: 9023 components: - type: Transform pos: -18.5,-72.5 parent: 2 - - uid: 8424 + - uid: 9024 components: - type: Transform pos: -17.5,-72.5 parent: 2 - - uid: 8425 + - uid: 9025 components: - type: Transform pos: -16.5,-72.5 parent: 2 - - uid: 8426 + - uid: 9026 components: - type: Transform pos: -15.5,-72.5 parent: 2 - - uid: 8427 + - uid: 9027 components: - type: Transform pos: -14.5,-72.5 parent: 2 - - uid: 8428 + - uid: 9028 components: - type: Transform pos: -13.5,-72.5 parent: 2 - - uid: 8429 + - uid: 9029 components: - type: Transform pos: -12.5,-72.5 parent: 2 - - uid: 8430 + - uid: 9030 components: - type: Transform pos: -11.5,-72.5 parent: 2 - - uid: 8431 + - uid: 9031 components: - type: Transform pos: -10.5,-72.5 parent: 2 - - uid: 8432 + - uid: 9032 components: - type: Transform pos: -10.5,-73.5 parent: 2 - - uid: 8433 + - uid: 9033 components: - type: Transform pos: -10.5,-74.5 parent: 2 - - uid: 8434 + - uid: 9034 components: - type: Transform pos: 11.5,-74.5 parent: 2 - - uid: 8435 + - uid: 9035 components: - type: Transform pos: 11.5,-73.5 parent: 2 - - uid: 8436 + - uid: 9036 components: - type: Transform pos: 11.5,-72.5 parent: 2 - - uid: 8437 + - uid: 9037 components: - type: Transform pos: 12.5,-72.5 parent: 2 - - uid: 8438 + - uid: 9038 components: - type: Transform pos: 13.5,-72.5 parent: 2 - - uid: 8439 + - uid: 9039 components: - type: Transform pos: 14.5,-72.5 parent: 2 - - uid: 8440 + - uid: 9040 components: - type: Transform pos: 15.5,-72.5 parent: 2 - - uid: 8441 + - uid: 9041 components: - type: Transform pos: 16.5,-72.5 parent: 2 - - uid: 8442 + - uid: 9042 components: - type: Transform pos: 17.5,-72.5 parent: 2 - - uid: 8443 + - uid: 9043 components: - type: Transform pos: 18.5,-72.5 parent: 2 - - uid: 8444 + - uid: 9044 components: - type: Transform pos: 19.5,-72.5 parent: 2 - - uid: 8445 + - uid: 9045 components: - type: Transform pos: 20.5,-72.5 parent: 2 - - uid: 8446 + - uid: 9046 components: - type: Transform pos: 21.5,-72.5 parent: 2 - - uid: 8447 + - uid: 9047 components: - type: Transform pos: 22.5,-72.5 parent: 2 - - uid: 8448 + - uid: 9048 components: - type: Transform pos: 22.5,-71.5 parent: 2 - - uid: 8449 + - uid: 9049 components: - type: Transform pos: 22.5,-70.5 parent: 2 - - uid: 8450 + - uid: 9050 components: - type: Transform pos: 23.5,-70.5 parent: 2 - - uid: 8451 + - uid: 9051 components: - type: Transform pos: 24.5,-70.5 parent: 2 - - uid: 8452 + - uid: 9052 components: - type: Transform pos: 25.5,-70.5 parent: 2 - - uid: 8453 + - uid: 9053 components: - type: Transform pos: 26.5,-70.5 parent: 2 - - uid: 8454 + - uid: 9054 components: - type: Transform pos: 27.5,-70.5 parent: 2 - - uid: 8455 + - uid: 9055 components: - type: Transform pos: 28.5,-70.5 parent: 2 - - uid: 8456 + - uid: 9056 components: - type: Transform pos: 29.5,-70.5 parent: 2 - - uid: 8457 + - uid: 9057 components: - type: Transform pos: 29.5,-71.5 parent: 2 - - uid: 8458 + - uid: 9058 components: - type: Transform pos: 30.5,-71.5 parent: 2 - - uid: 8459 + - uid: 9059 components: - type: Transform pos: 31.5,-71.5 parent: 2 - - uid: 8460 + - uid: 9060 components: - type: Transform pos: 31.5,-72.5 parent: 2 - - uid: 8461 + - uid: 9061 components: - type: Transform pos: 31.5,-73.5 parent: 2 - - uid: 8462 + - uid: 9062 components: - type: Transform pos: 31.5,-74.5 parent: 2 - - uid: 8463 + - uid: 9063 components: - type: Transform pos: 31.5,-75.5 parent: 2 - - uid: 8464 + - uid: 9064 components: - type: Transform pos: 32.5,-78.5 parent: 2 - - uid: 8465 + - uid: 9065 components: - type: Transform pos: 32.5,-77.5 parent: 2 - - uid: 8466 + - uid: 9066 components: - type: Transform pos: 32.5,-76.5 parent: 2 - - uid: 8467 + - uid: 9067 components: - type: Transform pos: 32.5,-75.5 parent: 2 - - uid: 8468 + - uid: 9068 components: - type: Transform pos: 33.5,-75.5 parent: 2 - - uid: 8469 + - uid: 9069 components: - type: Transform pos: 34.5,-75.5 parent: 2 - - uid: 8470 + - uid: 9070 components: - type: Transform pos: 35.5,-75.5 parent: 2 - - uid: 8471 + - uid: 9071 components: - type: Transform pos: 36.5,-75.5 parent: 2 - - uid: 8472 + - uid: 9072 components: - type: Transform pos: 37.5,-75.5 parent: 2 - - uid: 8473 + - uid: 9073 components: - type: Transform pos: 38.5,-75.5 parent: 2 - - uid: 8474 + - uid: 9074 components: - type: Transform pos: 39.5,-75.5 parent: 2 - - uid: 8475 + - uid: 9075 components: - type: Transform pos: 39.5,-74.5 parent: 2 - - uid: 8476 + - uid: 9076 components: - type: Transform pos: 39.5,-73.5 parent: 2 - - uid: 8477 + - uid: 9077 components: - type: Transform pos: 39.5,-72.5 parent: 2 - - uid: 8478 + - uid: 9078 components: - type: Transform pos: 39.5,-71.5 parent: 2 - - uid: 8479 + - uid: 9079 components: - type: Transform pos: 39.5,-70.5 parent: 2 - - uid: 8480 + - uid: 9080 components: - type: Transform pos: 39.5,-69.5 parent: 2 - - uid: 8481 + - uid: 9081 components: - type: Transform pos: 39.5,-68.5 parent: 2 - - uid: 8482 + - uid: 9082 components: - type: Transform pos: 40.5,-68.5 parent: 2 - - uid: 8483 + - uid: 9083 components: - type: Transform pos: 40.5,-67.5 parent: 2 - - uid: 8484 + - uid: 9084 components: - type: Transform pos: 40.5,-66.5 parent: 2 - - uid: 8485 + - uid: 9085 components: - type: Transform pos: 40.5,-65.5 parent: 2 - - uid: 8486 + - uid: 9086 components: - type: Transform pos: 40.5,-64.5 parent: 2 - - uid: 8487 + - uid: 9087 components: - type: Transform pos: 40.5,-63.5 parent: 2 - - uid: 8488 + - uid: 9088 components: - type: Transform pos: 40.5,-62.5 parent: 2 - - uid: 8489 + - uid: 9089 components: - type: Transform pos: 40.5,-61.5 parent: 2 - - uid: 8490 + - uid: 9090 components: - type: Transform pos: 40.5,-60.5 parent: 2 - - uid: 8491 + - uid: 9091 components: - type: Transform pos: 40.5,-59.5 parent: 2 - - uid: 8492 + - uid: 9092 components: - type: Transform pos: 40.5,-58.5 parent: 2 - - uid: 8493 + - uid: 9093 components: - type: Transform pos: 40.5,-57.5 parent: 2 - - uid: 8494 + - uid: 9094 components: - type: Transform pos: 40.5,-56.5 parent: 2 - - uid: 8495 + - uid: 9095 components: - type: Transform pos: 40.5,-55.5 parent: 2 - - uid: 8496 + - uid: 9096 components: - type: Transform pos: 40.5,-54.5 parent: 2 - - uid: 8497 + - uid: 9097 components: - type: Transform pos: 39.5,-54.5 parent: 2 - - uid: 8498 + - uid: 9098 components: - type: Transform pos: 38.5,-54.5 parent: 2 - - uid: 8499 + - uid: 9099 components: - type: Transform pos: 37.5,-54.5 parent: 2 - - uid: 8500 + - uid: 9100 components: - type: Transform pos: 36.5,-54.5 parent: 2 - - uid: 8501 + - uid: 9101 components: - type: Transform pos: 35.5,-54.5 parent: 2 - - uid: 8502 + - uid: 9102 components: - type: Transform pos: 34.5,-54.5 parent: 2 - - uid: 8503 + - uid: 9103 components: - type: Transform pos: 33.5,-54.5 parent: 2 - - uid: 8504 + - uid: 9104 components: - type: Transform pos: 32.5,-54.5 parent: 2 - - uid: 8505 + - uid: 9105 components: - type: Transform pos: 31.5,-54.5 parent: 2 - - uid: 8506 + - uid: 9106 components: - type: Transform pos: 30.5,-54.5 parent: 2 - - uid: 8507 + - uid: 9107 components: - type: Transform pos: 29.5,-54.5 parent: 2 - - uid: 8508 + - uid: 9108 components: - type: Transform pos: 29.5,-55.5 parent: 2 - - uid: 8509 + - uid: 9109 components: - type: Transform pos: 29.5,-56.5 parent: 2 - - uid: 8510 + - uid: 9110 components: - type: Transform pos: 29.5,-57.5 parent: 2 - - uid: 8511 + - uid: 9111 components: - type: Transform pos: 29.5,-58.5 parent: 2 - - uid: 8512 + - uid: 9112 components: - type: Transform pos: 29.5,-59.5 parent: 2 - - uid: 8513 + - uid: 9113 components: - type: Transform pos: 29.5,-60.5 parent: 2 - - uid: 8514 + - uid: 9114 components: - type: Transform pos: 29.5,-61.5 parent: 2 - - uid: 8515 + - uid: 9115 components: - type: Transform pos: 29.5,-62.5 parent: 2 - - uid: 8516 + - uid: 9116 components: - type: Transform pos: 29.5,-63.5 parent: 2 - - uid: 8517 + - uid: 9117 components: - type: Transform pos: 29.5,-64.5 parent: 2 - - uid: 8518 + - uid: 9118 components: - type: Transform pos: 29.5,-65.5 parent: 2 - - uid: 8519 + - uid: 9119 components: - type: Transform pos: 29.5,-66.5 parent: 2 - - uid: 8520 + - uid: 9120 components: - type: Transform pos: 29.5,-67.5 parent: 2 - - uid: 8521 + - uid: 9121 components: - type: Transform pos: 29.5,-68.5 parent: 2 - - uid: 8522 + - uid: 9122 components: - type: Transform pos: 29.5,-69.5 parent: 2 - - uid: 8523 + - uid: 9123 components: - type: Transform pos: 32.5,-53.5 parent: 2 - - uid: 8524 + - uid: 9124 components: - type: Transform pos: 32.5,-52.5 parent: 2 - - uid: 8525 + - uid: 9125 components: - type: Transform pos: 32.5,-51.5 parent: 2 - - uid: 8526 + - uid: 9126 components: - type: Transform pos: 32.5,-50.5 parent: 2 - - uid: 8527 + - uid: 9127 components: - type: Transform pos: 32.5,-49.5 parent: 2 - - uid: 8528 + - uid: 9128 components: - type: Transform pos: 32.5,-48.5 parent: 2 - - uid: 8529 + - uid: 9129 components: - type: Transform pos: 32.5,-47.5 parent: 2 - - uid: 8530 + - uid: 9130 components: - type: Transform pos: 32.5,-46.5 parent: 2 - - uid: 8531 + - uid: 9131 components: - type: Transform pos: 32.5,-45.5 parent: 2 - - uid: 8532 + - uid: 9132 components: - type: Transform pos: 32.5,-44.5 parent: 2 - - uid: 8533 + - uid: 9133 components: - type: Transform pos: 32.5,-43.5 parent: 2 - - uid: 8534 + - uid: 9134 components: - type: Transform pos: 32.5,-42.5 parent: 2 - - uid: 8535 + - uid: 9135 components: - type: Transform pos: 32.5,-41.5 parent: 2 - - uid: 8536 + - uid: 9136 components: - type: Transform pos: 32.5,-40.5 parent: 2 - - uid: 8537 + - uid: 9137 components: - type: Transform pos: 32.5,-39.5 parent: 2 - - uid: 8538 + - uid: 9138 components: - type: Transform pos: 32.5,-38.5 parent: 2 - - uid: 8539 + - uid: 9139 components: - type: Transform pos: 32.5,-37.5 parent: 2 - - uid: 8540 + - uid: 9140 components: - type: Transform pos: 32.5,-36.5 parent: 2 - - uid: 8541 + - uid: 9141 components: - type: Transform pos: 32.5,-35.5 parent: 2 - - uid: 8542 + - uid: 9142 components: - type: Transform pos: 32.5,-34.5 parent: 2 - - uid: 8543 + - uid: 9143 components: - type: Transform pos: 32.5,-33.5 parent: 2 - - uid: 8544 + - uid: 9144 components: - type: Transform pos: 32.5,-32.5 parent: 2 - - uid: 8545 + - uid: 9145 components: - type: Transform pos: 33.5,-32.5 parent: 2 - - uid: 8546 + - uid: 9146 components: - type: Transform pos: 34.5,-32.5 parent: 2 - - uid: 8547 + - uid: 9147 components: - type: Transform pos: 35.5,-32.5 parent: 2 - - uid: 8548 + - uid: 9148 components: - type: Transform pos: 36.5,-32.5 parent: 2 - - uid: 8549 + - uid: 9149 components: - type: Transform pos: 37.5,-32.5 parent: 2 - - uid: 8550 + - uid: 9150 components: - type: Transform pos: 38.5,-32.5 parent: 2 - - uid: 8551 + - uid: 9151 components: - type: Transform pos: 39.5,-32.5 parent: 2 - - uid: 8552 + - uid: 9152 components: - type: Transform pos: 40.5,-32.5 parent: 2 - - uid: 8553 + - uid: 9153 components: - type: Transform pos: 41.5,-32.5 parent: 2 - - uid: 8554 + - uid: 9154 components: - type: Transform pos: 42.5,-32.5 parent: 2 - - uid: 8555 + - uid: 9155 components: - type: Transform pos: 43.5,-32.5 parent: 2 - - uid: 8556 + - uid: 9156 components: - type: Transform pos: 31.5,-32.5 parent: 2 - - uid: 8557 + - uid: 9157 components: - type: Transform pos: 30.5,-32.5 parent: 2 - - uid: 8558 + - uid: 9158 components: - type: Transform pos: 29.5,-32.5 parent: 2 - - uid: 8559 + - uid: 9159 components: - type: Transform pos: 29.5,-31.5 parent: 2 - - uid: 8560 + - uid: 9160 components: - type: Transform pos: 29.5,-30.5 parent: 2 - - uid: 8561 + - uid: 9161 components: - type: Transform pos: 29.5,-29.5 parent: 2 - - uid: 8562 + - uid: 9162 components: - type: Transform pos: 29.5,-28.5 parent: 2 - - uid: 8563 + - uid: 9163 components: - type: Transform pos: 29.5,-27.5 parent: 2 - - uid: 8564 + - uid: 9164 components: - type: Transform pos: 29.5,-26.5 parent: 2 - - uid: 8565 + - uid: 9165 components: - type: Transform pos: 29.5,-25.5 parent: 2 - - uid: 8566 + - uid: 9166 components: - type: Transform pos: 29.5,-24.5 parent: 2 - - uid: 8567 + - uid: 9167 components: - type: Transform pos: 29.5,-23.5 parent: 2 - - uid: 8568 + - uid: 9168 components: - type: Transform pos: 29.5,-22.5 parent: 2 - - uid: 8569 + - uid: 9169 components: - type: Transform pos: 29.5,-21.5 parent: 2 - - uid: 8570 + - uid: 9170 components: - type: Transform pos: 29.5,-20.5 parent: 2 - - uid: 8571 + - uid: 9171 components: - type: Transform pos: 29.5,-19.5 parent: 2 - - uid: 8572 + - uid: 9172 components: - type: Transform pos: 29.5,-18.5 parent: 2 - - uid: 8573 + - uid: 9173 components: - type: Transform pos: 29.5,-17.5 parent: 2 - - uid: 8574 + - uid: 9174 components: - type: Transform pos: 29.5,-16.5 parent: 2 - - uid: 8575 + - uid: 9175 components: - type: Transform pos: 29.5,-15.5 parent: 2 - - uid: 8576 + - uid: 9176 components: - type: Transform pos: 29.5,-14.5 parent: 2 - - uid: 8577 + - uid: 9177 components: - type: Transform pos: 29.5,-13.5 parent: 2 - - uid: 8578 + - uid: 9178 components: - type: Transform pos: 29.5,-12.5 parent: 2 - - uid: 8579 + - uid: 9179 components: - type: Transform pos: 29.5,-11.5 parent: 2 - - uid: 8580 + - uid: 9180 components: - type: Transform pos: 29.5,-10.5 parent: 2 - - uid: 8581 + - uid: 9181 components: - type: Transform pos: 29.5,-9.5 parent: 2 - - uid: 8582 + - uid: 9182 components: - type: Transform pos: 28.5,-9.5 parent: 2 - - uid: 8583 + - uid: 9183 components: - type: Transform pos: 28.5,-8.5 parent: 2 - - uid: 8584 + - uid: 9184 components: - type: Transform pos: 28.5,-7.5 parent: 2 - - uid: 8585 + - uid: 9185 components: - type: Transform pos: 27.5,-7.5 parent: 2 - - uid: 8586 + - uid: 9186 components: - type: Transform pos: 27.5,-6.5 parent: 2 - - uid: 8587 + - uid: 9187 components: - type: Transform pos: 27.5,-5.5 parent: 2 - - uid: 8588 + - uid: 9188 components: - type: Transform pos: 26.5,-5.5 parent: 2 - - uid: 8589 + - uid: 9189 components: - type: Transform pos: 26.5,-4.5 parent: 2 - - uid: 8590 + - uid: 9190 components: - type: Transform pos: 26.5,-3.5 parent: 2 - - uid: 8591 + - uid: 9191 components: - type: Transform pos: 25.5,-3.5 parent: 2 - - uid: 8592 + - uid: 9192 components: - type: Transform pos: 24.5,-2.5 parent: 2 - - uid: 8593 + - uid: 9193 components: - type: Transform pos: 24.5,-3.5 parent: 2 - - uid: 8594 + - uid: 9194 components: - type: Transform pos: 23.5,-2.5 parent: 2 - - uid: 8595 + - uid: 9195 components: - type: Transform pos: 23.5,-1.5 parent: 2 - - uid: 8596 + - uid: 9196 components: - type: Transform pos: 22.5,-1.5 parent: 2 - - uid: 8597 + - uid: 9197 components: - type: Transform pos: 21.5,-1.5 parent: 2 - - uid: 8598 + - uid: 9198 components: - type: Transform pos: 21.5,-0.5 parent: 2 - - uid: 8599 + - uid: 9199 components: - type: Transform pos: 20.5,-0.5 parent: 2 - - uid: 8600 + - uid: 9200 components: - type: Transform pos: 19.5,-0.5 parent: 2 - - uid: 8601 + - uid: 9201 components: - type: Transform pos: 20.5,0.5 parent: 2 - - uid: 8602 + - uid: 9202 components: - type: Transform pos: 20.5,1.5 parent: 2 - - uid: 8603 + - uid: 9203 components: - type: Transform pos: 20.5,2.5 parent: 2 - - uid: 8604 + - uid: 9204 components: - type: Transform pos: 20.5,3.5 parent: 2 - - uid: 8605 + - uid: 9205 components: - type: Transform pos: 20.5,4.5 parent: 2 - - uid: 8606 + - uid: 9206 components: - type: Transform pos: 20.5,5.5 parent: 2 - - uid: 8607 + - uid: 9207 components: - type: Transform pos: 18.5,-0.5 parent: 2 - - uid: 8608 + - uid: 9208 components: - type: Transform pos: 18.5,0.5 parent: 2 - - uid: 8609 + - uid: 9209 components: - type: Transform pos: 17.5,0.5 parent: 2 - - uid: 8610 + - uid: 9210 components: - type: Transform pos: 16.5,0.5 parent: 2 - - uid: 8611 + - uid: 9211 components: - type: Transform pos: -25.5,-3.5 parent: 2 - - uid: 8612 + - uid: 9212 components: - type: Transform pos: -25.5,-2.5 parent: 2 - - uid: 8613 + - uid: 9213 components: - type: Transform pos: -25.5,-1.5 parent: 2 - - uid: 8614 + - uid: 9214 components: - type: Transform pos: -25.5,-0.5 parent: 2 - - uid: 8615 + - uid: 9215 components: - type: Transform pos: -25.5,0.5 parent: 2 - - uid: 8616 + - uid: 9216 components: - type: Transform pos: -25.5,1.5 parent: 2 - - uid: 8617 + - uid: 9217 components: - type: Transform pos: -26.5,1.5 parent: 2 - - uid: 8618 + - uid: 9218 components: - type: Transform pos: -27.5,1.5 parent: 2 - - uid: 8619 + - uid: 9219 components: - type: Transform pos: -28.5,1.5 parent: 2 - - uid: 8620 + - uid: 9220 components: - type: Transform pos: -29.5,1.5 parent: 2 - - uid: 8621 + - uid: 9221 components: - type: Transform pos: -30.5,1.5 parent: 2 - - uid: 8622 + - uid: 9222 components: - type: Transform pos: -31.5,1.5 parent: 2 - - uid: 8623 + - uid: 9223 components: - type: Transform pos: 26.5,-2.5 parent: 2 - - uid: 8624 + - uid: 9224 components: - type: Transform pos: 27.5,-2.5 parent: 2 - - uid: 8625 + - uid: 9225 components: - type: Transform pos: 28.5,-2.5 parent: 2 - - uid: 8626 + - uid: 9226 components: - type: Transform pos: 20.5,8.5 parent: 2 - - uid: 8627 + - uid: 9227 components: - type: Transform pos: 45.5,-32.5 parent: 2 - - uid: 8628 + - uid: 9228 components: - type: Transform pos: 46.5,-32.5 parent: 2 - - uid: 8629 + - uid: 9229 components: - type: Transform pos: 47.5,-32.5 parent: 2 - - uid: 8630 + - uid: 9230 components: - type: Transform pos: 48.5,-32.5 parent: 2 - - uid: 8631 + - uid: 9231 components: - type: Transform pos: 49.5,-32.5 parent: 2 - - uid: 8632 + - uid: 9232 components: - type: Transform pos: 50.5,-32.5 parent: 2 - - uid: 8633 + - uid: 9233 components: - type: Transform pos: 51.5,-32.5 parent: 2 - - uid: 8634 + - uid: 9234 components: - type: Transform pos: 52.5,-32.5 parent: 2 - - uid: 8635 + - uid: 9235 components: - type: Transform pos: 53.5,-32.5 parent: 2 - - uid: 8636 + - uid: 9236 components: - type: Transform pos: 54.5,-32.5 parent: 2 - - uid: 8637 + - uid: 9237 components: - type: Transform pos: 55.5,-32.5 parent: 2 - - uid: 8638 + - uid: 9238 components: - type: Transform pos: 56.5,-32.5 parent: 2 - - uid: 8639 + - uid: 9239 components: - type: Transform pos: 57.5,-32.5 parent: 2 - - uid: 8640 + - uid: 9240 components: - type: Transform pos: 58.5,-32.5 parent: 2 - - uid: 8641 + - uid: 9241 components: - type: Transform pos: 59.5,-32.5 parent: 2 - - uid: 8642 + - uid: 9242 components: - type: Transform pos: 60.5,-32.5 parent: 2 - - uid: 8643 + - uid: 9243 components: - type: Transform pos: 60.5,-31.5 parent: 2 - - uid: 8644 + - uid: 9244 components: - type: Transform pos: 22.5,-83.5 parent: 2 - - uid: 8645 + - uid: 9245 components: - type: Transform pos: 22.5,-82.5 parent: 2 - - uid: 8646 + - uid: 9246 components: - type: Transform pos: 22.5,-81.5 parent: 2 - - uid: 8647 + - uid: 9247 components: - type: Transform pos: 22.5,-80.5 parent: 2 - - uid: 8648 + - uid: 9248 components: - type: Transform pos: 22.5,-79.5 parent: 2 - - uid: 8649 + - uid: 9249 components: - type: Transform pos: 22.5,-78.5 parent: 2 - - uid: 8650 + - uid: 9250 components: - type: Transform pos: 23.5,-78.5 parent: 2 - - uid: 8651 + - uid: 9251 components: - type: Transform pos: 24.5,-78.5 parent: 2 - - uid: 8652 + - uid: 9252 components: - type: Transform pos: 25.5,-78.5 parent: 2 - - uid: 8653 + - uid: 9253 components: - type: Transform pos: 26.5,-78.5 parent: 2 - - uid: 8654 + - uid: 9254 components: - type: Transform pos: 27.5,-78.5 parent: 2 - - uid: 8655 + - uid: 9255 components: - type: Transform pos: 28.5,-78.5 parent: 2 - - uid: 8656 + - uid: 9256 components: - type: Transform pos: 29.5,-78.5 parent: 2 - - uid: 8657 + - uid: 9257 components: - type: Transform pos: 30.5,-78.5 parent: 2 - - uid: 8658 + - uid: 9258 components: - type: Transform pos: 31.5,-78.5 parent: 2 - - uid: 8659 + - uid: 9259 components: - type: Transform pos: 60.5,-30.5 parent: 2 - - uid: 8662 + - uid: 9260 components: - type: Transform pos: 54.5,-68.5 parent: 2 - - uid: 8663 + - uid: 9261 components: - type: Transform pos: 55.5,-68.5 parent: 2 - - uid: 8664 + - uid: 9262 components: - type: Transform pos: 56.5,-68.5 parent: 2 - - uid: 8665 + - uid: 9263 components: - type: Transform pos: 57.5,-68.5 parent: 2 - - uid: 8666 + - uid: 9264 components: - type: Transform pos: 58.5,-68.5 parent: 2 - - uid: 8667 + - uid: 9265 components: - type: Transform pos: 59.5,-68.5 parent: 2 - - uid: 8668 + - uid: 9266 components: - type: Transform pos: 60.5,-68.5 parent: 2 - - uid: 8669 + - uid: 9267 components: - type: Transform pos: 61.5,-68.5 parent: 2 - - uid: 8672 + - uid: 9268 components: - type: Transform pos: 55.5,-87.5 parent: 2 - - uid: 8677 + - uid: 9269 components: - type: Transform pos: -41.5,8.5 parent: 2 - - uid: 8678 + - uid: 9270 components: - type: Transform pos: -40.5,8.5 parent: 2 - - uid: 8679 + - uid: 9271 components: - type: Transform pos: -42.5,8.5 parent: 2 - - uid: 8680 + - uid: 9272 components: - type: Transform pos: -43.5,8.5 parent: 2 - - uid: 8681 + - uid: 9273 components: - type: Transform pos: -44.5,8.5 parent: 2 - - uid: 8682 + - uid: 9274 components: - type: Transform pos: -45.5,8.5 parent: 2 - - uid: 8683 + - uid: 9275 components: - type: Transform pos: -46.5,8.5 parent: 2 - - uid: 8684 + - uid: 9276 components: - type: Transform pos: -47.5,8.5 parent: 2 - - uid: 8685 + - uid: 9277 components: - type: Transform pos: -48.5,8.5 parent: 2 - - uid: 8686 + - uid: 9278 components: - type: Transform pos: -49.5,8.5 parent: 2 - - uid: 8687 + - uid: 9279 components: - type: Transform pos: -49.5,9.5 parent: 2 - - uid: 8688 + - uid: 9280 components: - type: Transform pos: -50.5,9.5 parent: 2 - - uid: 8689 + - uid: 9281 components: - type: Transform pos: -51.5,9.5 parent: 2 - - uid: 8690 + - uid: 9282 components: - type: Transform pos: -52.5,9.5 parent: 2 - - uid: 8691 + - uid: 9283 components: - type: Transform pos: -53.5,9.5 parent: 2 - - uid: 8692 + - uid: 9284 components: - type: Transform pos: -53.5,8.5 parent: 2 - - uid: 8693 + - uid: 9285 components: - type: Transform pos: -53.5,7.5 parent: 2 - - uid: 8694 + - uid: 9286 components: - type: Transform pos: -53.5,6.5 parent: 2 - - uid: 8695 + - uid: 9287 components: - type: Transform pos: -53.5,5.5 parent: 2 - - uid: 8696 + - uid: 9288 components: - type: Transform pos: -53.5,4.5 parent: 2 - - uid: 8697 + - uid: 9289 components: - type: Transform pos: -53.5,3.5 parent: 2 - - uid: 8698 + - uid: 9290 components: - type: Transform pos: -53.5,2.5 parent: 2 - - uid: 8699 + - uid: 9291 components: - type: Transform pos: -54.5,2.5 parent: 2 - - uid: 8700 + - uid: 9292 components: - type: Transform pos: -55.5,2.5 parent: 2 - - uid: 8701 + - uid: 9293 components: - type: Transform pos: -56.5,2.5 parent: 2 - - uid: 8702 + - uid: 9294 components: - type: Transform pos: -57.5,2.5 parent: 2 - - uid: 8703 + - uid: 9295 components: - type: Transform pos: -57.5,1.5 parent: 2 - - uid: 8704 + - uid: 9296 components: - type: Transform pos: -57.5,0.5 parent: 2 - - uid: 8705 + - uid: 9297 components: - type: Transform pos: -57.5,-0.5 parent: 2 - - uid: 8706 + - uid: 9298 components: - type: Transform pos: -57.5,-1.5 parent: 2 - - uid: 8707 + - uid: 9299 components: - type: Transform pos: -57.5,-2.5 parent: 2 - - uid: 8708 + - uid: 9300 components: - type: Transform pos: -57.5,-3.5 parent: 2 - - uid: 8709 + - uid: 9301 components: - type: Transform pos: -57.5,-4.5 parent: 2 - - uid: 8710 + - uid: 9302 components: - type: Transform pos: -57.5,-5.5 parent: 2 - - uid: 8711 + - uid: 9303 components: - type: Transform pos: -57.5,-6.5 parent: 2 - - uid: 8712 + - uid: 9304 components: - type: Transform pos: -58.5,-6.5 parent: 2 - - uid: 8713 + - uid: 9305 components: - type: Transform pos: -59.5,-6.5 parent: 2 - - uid: 8714 + - uid: 9306 components: - type: Transform pos: -60.5,-6.5 parent: 2 - - uid: 8715 + - uid: 9307 components: - type: Transform pos: -61.5,-6.5 parent: 2 - - uid: 8716 + - uid: 9308 components: - type: Transform pos: -62.5,-6.5 parent: 2 - - uid: 8717 + - uid: 9309 components: - type: Transform pos: -63.5,-6.5 parent: 2 - - uid: 8718 + - uid: 9310 components: - type: Transform pos: -60.5,-29.5 parent: 2 - - uid: 8719 + - uid: 9311 components: - type: Transform pos: -61.5,-29.5 parent: 2 - - uid: 8720 + - uid: 9312 components: - type: Transform pos: -62.5,-29.5 parent: 2 - - uid: 8721 + - uid: 9313 components: - type: Transform pos: -62.5,-28.5 parent: 2 - - uid: 8722 + - uid: 9314 components: - type: Transform pos: -62.5,-27.5 parent: 2 - - uid: 8723 + - uid: 9315 components: - type: Transform pos: -62.5,-26.5 parent: 2 - - uid: 8724 + - uid: 9316 components: - type: Transform pos: -62.5,-25.5 parent: 2 - - uid: 8725 + - uid: 9317 components: - type: Transform pos: -62.5,-24.5 parent: 2 - - uid: 8726 + - uid: 9318 components: - type: Transform pos: -62.5,-23.5 parent: 2 - - uid: 8727 + - uid: 9319 components: - type: Transform pos: -62.5,-22.5 parent: 2 - - uid: 8728 + - uid: 9320 components: - type: Transform pos: -62.5,-21.5 parent: 2 - - uid: 8729 + - uid: 9321 components: - type: Transform pos: -63.5,-21.5 parent: 2 - - uid: 8730 + - uid: 9322 components: - type: Transform pos: -64.5,-21.5 parent: 2 - - uid: 8731 + - uid: 9323 components: - type: Transform pos: -64.5,-20.5 parent: 2 - - uid: 8732 + - uid: 9324 components: - type: Transform pos: -64.5,-19.5 parent: 2 - - uid: 8733 + - uid: 9325 components: - type: Transform pos: -64.5,-18.5 parent: 2 - - uid: 8734 + - uid: 9326 components: - type: Transform pos: -64.5,-17.5 parent: 2 - - uid: 8735 + - uid: 9327 components: - type: Transform pos: -64.5,-16.5 parent: 2 - - uid: 8736 + - uid: 9328 components: - type: Transform pos: -64.5,-15.5 parent: 2 - - uid: 8737 + - uid: 9329 components: - type: Transform pos: -64.5,-14.5 parent: 2 - - uid: 8738 + - uid: 9330 components: - type: Transform pos: -64.5,-13.5 parent: 2 - - uid: 8739 + - uid: 9331 components: - type: Transform pos: -64.5,-12.5 parent: 2 - - uid: 8740 + - uid: 9332 components: - type: Transform pos: -64.5,-11.5 parent: 2 - - uid: 8741 + - uid: 9333 components: - type: Transform pos: -64.5,-10.5 parent: 2 - - uid: 8742 + - uid: 9334 components: - type: Transform pos: -64.5,-9.5 parent: 2 - - uid: 8743 + - uid: 9335 components: - type: Transform pos: -64.5,-8.5 parent: 2 - - uid: 8744 + - uid: 9336 components: - type: Transform pos: -64.5,-7.5 parent: 2 - - uid: 8745 + - uid: 9337 components: - type: Transform pos: 31.5,-36.5 parent: 2 - - uid: 8751 + - uid: 9338 components: - type: Transform pos: 50.5,-86.5 parent: 2 - - uid: 8752 + - uid: 9339 components: - type: Transform pos: 49.5,-86.5 parent: 2 - - uid: 8753 + - uid: 9340 components: - type: Transform pos: 48.5,-86.5 parent: 2 - - uid: 8754 + - uid: 9341 components: - type: Transform pos: 47.5,-86.5 parent: 2 - - uid: 8755 + - uid: 9342 components: - type: Transform pos: 46.5,-86.5 parent: 2 - - uid: 8756 + - uid: 9343 components: - type: Transform pos: 51.5,-86.5 parent: 2 - - uid: 8757 + - uid: 9344 components: - type: Transform pos: 65.5,-68.5 parent: 2 - - uid: 8758 + - uid: 9345 components: - type: Transform pos: 65.5,-67.5 parent: 2 - - uid: 8759 + - uid: 9346 components: - type: Transform pos: 3.5,-69.5 parent: 2 - - uid: 8760 + - uid: 9347 components: - type: Transform pos: -41.5,-91.5 parent: 2 - - uid: 8761 + - uid: 9348 components: - type: Transform pos: -41.5,-89.5 parent: 2 - - uid: 8762 + - uid: 9349 components: - type: Transform pos: -34.5,-110.5 parent: 2 - - uid: 8763 + - uid: 9350 components: - type: Transform pos: -34.5,-111.5 parent: 2 - - uid: 8764 + - uid: 9351 components: - type: Transform pos: -36.5,-114.5 parent: 2 - - uid: 8766 + - uid: 9352 components: - type: Transform pos: 44.5,-52.5 parent: 2 - - uid: 8767 + - uid: 9353 components: - type: Transform pos: -65.5,7.5 parent: 2 - - uid: 8768 + - uid: 9354 components: - type: Transform pos: 34.5,-82.5 parent: 2 - - uid: 8769 + - uid: 9355 components: - type: Transform pos: 38.5,-78.5 parent: 2 - - uid: 8771 + - uid: 9356 components: - type: Transform pos: 36.5,7.5 parent: 2 - - uid: 8772 + - uid: 9357 components: - type: Transform pos: 34.5,-2.5 parent: 2 - - uid: 8774 + - uid: 9358 components: - type: Transform pos: 54.5,-59.5 parent: 2 - - uid: 8775 + - uid: 9359 components: - type: Transform pos: 55.5,-59.5 parent: 2 - - uid: 8777 + - uid: 9360 components: - type: Transform pos: 71.5,-94.5 parent: 2 - - uid: 8778 + - uid: 9361 components: - type: Transform pos: 79.5,-94.5 parent: 2 - - uid: 8779 + - uid: 9362 components: - type: Transform pos: 74.5,-94.5 parent: 2 - - uid: 8780 + - uid: 9363 components: - type: Transform pos: 72.5,-94.5 parent: 2 - - uid: 8781 + - uid: 9364 components: - type: Transform pos: 69.5,-66.5 parent: 2 - - uid: 8782 + - uid: 9365 components: - type: Transform pos: 38.5,-77.5 parent: 2 - - uid: 8783 + - uid: 9366 components: - type: Transform pos: 79.5,-56.5 parent: 2 - - uid: 8784 + - uid: 9367 components: - type: Transform pos: 77.5,-56.5 parent: 2 - - uid: 8785 + - uid: 9368 components: - type: Transform pos: 76.5,-56.5 parent: 2 - - uid: 8786 + - uid: 9369 components: - type: Transform pos: 75.5,-56.5 parent: 2 - - uid: 8787 + - uid: 9370 components: - type: Transform pos: 74.5,-56.5 parent: 2 - - uid: 8788 + - uid: 9371 components: - type: Transform pos: 73.5,-56.5 parent: 2 - - uid: 8789 + - uid: 9372 components: - type: Transform pos: 72.5,-56.5 parent: 2 - - uid: 8790 + - uid: 9373 components: - type: Transform pos: 71.5,-56.5 parent: 2 - - uid: 8791 + - uid: 9374 components: - type: Transform pos: 77.5,-62.5 parent: 2 - - uid: 8792 + - uid: 9375 components: - type: Transform pos: 78.5,-94.5 parent: 2 - - uid: 8793 + - uid: 9376 components: - type: Transform pos: 78.5,-95.5 parent: 2 - - uid: 8794 + - uid: 9377 components: - type: Transform pos: 75.5,-62.5 parent: 2 - - uid: 8795 + - uid: 9378 components: - type: Transform pos: 79.5,-62.5 parent: 2 - - uid: 8796 + - uid: 9379 components: - type: Transform pos: 79.5,-60.5 parent: 2 - - uid: 8797 + - uid: 9380 components: - type: Transform pos: 79.5,-59.5 parent: 2 - - uid: 8798 + - uid: 9381 components: - type: Transform pos: 79.5,-58.5 parent: 2 - - uid: 8799 + - uid: 9382 components: - type: Transform pos: 79.5,-57.5 parent: 2 - - uid: 8800 + - uid: 9383 components: - type: Transform pos: 78.5,-62.5 parent: 2 - - uid: 8801 + - uid: 9384 components: - type: Transform pos: 81.5,-96.5 parent: 2 - - uid: 8802 + - uid: 9385 components: - type: Transform pos: 80.5,-96.5 parent: 2 - - uid: 8803 + - uid: 9386 components: - type: Transform pos: 71.5,-96.5 parent: 2 - - uid: 8804 + - uid: 9387 components: - type: Transform pos: 70.5,-56.5 parent: 2 - - uid: 8805 + - uid: 9388 components: - type: Transform pos: 79.5,-61.5 parent: 2 - - uid: 8806 + - uid: 9389 components: - type: Transform pos: 78.5,-56.5 parent: 2 - - uid: 8807 + - uid: 9390 components: - type: Transform pos: 67.5,-55.5 parent: 2 - - uid: 8808 + - uid: 9391 components: - type: Transform pos: 69.5,-62.5 parent: 2 - - uid: 8809 + - uid: 9392 components: - type: Transform pos: 66.5,-59.5 parent: 2 - - uid: 8810 + - uid: 9393 components: - type: Transform pos: 76.5,-62.5 parent: 2 - - uid: 8811 + - uid: 9394 components: - type: Transform pos: 36.5,-78.5 parent: 2 - - uid: 8812 + - uid: 9395 components: - type: Transform pos: 66.5,-62.5 parent: 2 - - uid: 8813 + - uid: 9396 components: - type: Transform pos: 69.5,-65.5 parent: 2 - - uid: 8814 + - uid: 9397 components: - type: Transform pos: 66.5,-63.5 parent: 2 - - uid: 8815 + - uid: 9398 components: - type: Transform pos: 39.5,-80.5 parent: 2 - - uid: 8816 + - uid: 9399 components: - type: Transform pos: 79.5,-52.5 parent: 2 - - uid: 8817 + - uid: 9400 components: - type: Transform pos: 66.5,-57.5 parent: 2 - - uid: 8818 + - uid: 9401 components: - type: Transform pos: 66.5,-60.5 parent: 2 - - uid: 8819 + - uid: 9402 components: - type: Transform pos: 66.5,-58.5 parent: 2 - - uid: 8820 + - uid: 9403 components: - type: Transform pos: 66.5,-53.5 parent: 2 - - uid: 8822 + - uid: 9404 components: - type: Transform pos: 14.5,-83.5 parent: 2 - - uid: 8823 + - uid: 9405 components: - type: Transform pos: -36.5,-113.5 parent: 2 - - uid: 8824 + - uid: 9406 components: - type: Transform pos: -39.5,-114.5 parent: 2 - - uid: 8825 + - uid: 9407 components: - type: Transform pos: -36.5,-112.5 parent: 2 - - uid: 8826 + - uid: 9408 components: - type: Transform pos: -35.5,-114.5 parent: 2 - - uid: 8827 + - uid: 9409 components: - type: Transform pos: -34.5,-112.5 parent: 2 - - uid: 8828 + - uid: 9410 components: - type: Transform pos: -34.5,-114.5 parent: 2 - - uid: 8829 + - uid: 9411 components: - type: Transform pos: -38.5,-114.5 parent: 2 - - uid: 8830 + - uid: 9412 components: - type: Transform pos: -34.5,-113.5 parent: 2 - - uid: 8831 + - uid: 9413 components: - type: Transform pos: -34.5,-115.5 parent: 2 - - uid: 8832 + - uid: 9414 components: - type: Transform pos: -36.5,-115.5 parent: 2 - - uid: 8833 + - uid: 9415 components: - type: Transform pos: -37.5,-114.5 parent: 2 - - uid: 8834 + - uid: 9416 components: - type: Transform pos: -36.5,-116.5 parent: 2 - - uid: 8835 + - uid: 9417 components: - type: Transform pos: -35.5,-116.5 parent: 2 - - uid: 8836 + - uid: 9418 components: - type: Transform pos: -35.5,-112.5 parent: 2 - - uid: 8837 + - uid: 9419 components: - type: Transform pos: -34.5,-116.5 parent: 2 - - uid: 8838 + - uid: 9420 components: - type: Transform pos: -40.5,-114.5 parent: 2 - - uid: 8839 + - uid: 9421 components: - type: Transform pos: -58.5,-71.5 parent: 2 - - uid: 8840 + - uid: 9422 components: - type: Transform pos: -58.5,-70.5 parent: 2 - - uid: 8841 + - uid: 9423 components: - type: Transform pos: -58.5,-73.5 parent: 2 - - uid: 8842 + - uid: 9424 components: - type: Transform pos: -58.5,-74.5 parent: 2 - - uid: 8843 + - uid: 9425 components: - type: Transform pos: -58.5,-76.5 parent: 2 - - uid: 8844 + - uid: 9426 components: - type: Transform pos: -58.5,-75.5 parent: 2 - - uid: 8845 + - uid: 9427 components: - type: Transform pos: 38.5,-4.5 parent: 2 - - uid: 8849 + - uid: 9428 components: - type: Transform pos: 40.5,-80.5 parent: 2 - - uid: 8850 + - uid: 9429 components: - type: Transform pos: 34.5,-0.5 parent: 2 - - uid: 8851 + - uid: 9430 components: - type: Transform pos: -35.5,-26.5 parent: 2 - - uid: 8852 + - uid: 9431 components: - type: Transform pos: -36.5,-26.5 parent: 2 - - uid: 8853 + - uid: 9432 components: - type: Transform pos: 34.5,-1.5 parent: 2 - - uid: 8854 + - uid: 9433 components: - type: Transform pos: 36.5,-2.5 parent: 2 - - uid: 8855 + - uid: 9434 components: - type: Transform pos: -37.5,-26.5 parent: 2 - - uid: 8856 + - uid: 9435 components: - type: Transform pos: -38.5,-26.5 parent: 2 - - uid: 8858 + - uid: 9436 components: - type: Transform pos: -39.5,-26.5 parent: 2 - - uid: 8859 + - uid: 9437 components: - type: Transform pos: 38.5,-3.5 parent: 2 - - uid: 8860 + - uid: 9438 components: - type: Transform pos: -33.5,-26.5 parent: 2 - - uid: 8861 + - uid: 9439 components: - type: Transform pos: -34.5,-26.5 parent: 2 - - uid: 8863 + - uid: 9440 components: - type: Transform pos: 68.5,-52.5 parent: 2 - - uid: 8864 + - uid: 9441 components: - type: Transform pos: 37.5,-5.5 parent: 2 - - uid: 8865 + - uid: 9442 components: - type: Transform pos: 37.5,-7.5 parent: 2 - - uid: 8866 + - uid: 9443 components: - type: Transform pos: 66.5,-52.5 parent: 2 - - uid: 8867 + - uid: 9444 components: - type: Transform pos: 69.5,-63.5 parent: 2 - - uid: 8868 + - uid: 9445 components: - type: Transform pos: 67.5,-52.5 parent: 2 - - uid: 8869 + - uid: 9446 components: - type: Transform pos: 66.5,-54.5 parent: 2 - - uid: 8870 + - uid: 9447 components: - type: Transform pos: 66.5,-56.5 parent: 2 - - uid: 8871 + - uid: 9448 components: - type: Transform pos: 80.5,-52.5 parent: 2 - - uid: 8872 + - uid: 9449 components: - type: Transform pos: 81.5,-52.5 parent: 2 - - uid: 8873 + - uid: 9450 components: - type: Transform pos: 81.5,-53.5 parent: 2 - - uid: 8874 + - uid: 9451 components: - type: Transform pos: 81.5,-54.5 parent: 2 - - uid: 8875 + - uid: 9452 components: - type: Transform pos: 81.5,-55.5 parent: 2 - - uid: 8876 + - uid: 9453 components: - type: Transform pos: 81.5,-56.5 parent: 2 - - uid: 8877 + - uid: 9454 components: - type: Transform pos: 81.5,-57.5 parent: 2 - - uid: 8878 + - uid: 9455 components: - type: Transform pos: 81.5,-58.5 parent: 2 - - uid: 8879 + - uid: 9456 components: - type: Transform pos: 81.5,-59.5 parent: 2 - - uid: 8880 + - uid: 9457 components: - type: Transform pos: 81.5,-60.5 parent: 2 - - uid: 8881 + - uid: 9458 components: - type: Transform pos: 81.5,-61.5 parent: 2 - - uid: 8882 + - uid: 9459 components: - type: Transform pos: 81.5,-62.5 parent: 2 - - uid: 8883 + - uid: 9460 components: - type: Transform pos: 81.5,-63.5 parent: 2 - - uid: 8884 + - uid: 9461 components: - type: Transform pos: 81.5,-64.5 parent: 2 - - uid: 8885 + - uid: 9462 components: - type: Transform pos: 81.5,-65.5 parent: 2 - - uid: 8886 + - uid: 9463 components: - type: Transform pos: 81.5,-66.5 parent: 2 - - uid: 8887 + - uid: 9464 components: - type: Transform pos: 80.5,-66.5 parent: 2 - - uid: 8888 + - uid: 9465 components: - type: Transform pos: 79.5,-66.5 parent: 2 - - uid: 8889 + - uid: 9466 components: - type: Transform pos: 78.5,-66.5 parent: 2 - - uid: 8890 + - uid: 9467 components: - type: Transform pos: 77.5,-66.5 parent: 2 - - uid: 8891 + - uid: 9468 components: - type: Transform pos: 76.5,-66.5 parent: 2 - - uid: 8892 + - uid: 9469 components: - type: Transform pos: 75.5,-66.5 parent: 2 - - uid: 8893 + - uid: 9470 components: - type: Transform pos: 74.5,-66.5 parent: 2 - - uid: 8894 + - uid: 9471 components: - type: Transform pos: 30.5,-2.5 parent: 2 - - uid: 8895 + - uid: 9472 components: - type: Transform pos: -59.5,-39.5 parent: 2 - - uid: 8896 + - uid: 9473 components: - type: Transform pos: 80.5,-56.5 parent: 2 - - uid: 8897 + - uid: 9474 components: - type: Transform pos: -72.5,-92.5 parent: 2 - - uid: 8898 + - uid: 9475 components: - type: Transform pos: -73.5,-92.5 parent: 2 - - uid: 8899 + - uid: 9476 components: - type: Transform pos: -70.5,-92.5 parent: 2 - - uid: 8900 + - uid: 9477 components: - type: Transform pos: -71.5,-92.5 parent: 2 - - uid: 8901 + - uid: 9478 components: - type: Transform pos: -73.5,-94.5 parent: 2 - - uid: 8902 + - uid: 9479 components: - type: Transform pos: -70.5,-94.5 parent: 2 - - uid: 8903 + - uid: 9480 components: - type: Transform pos: -71.5,-94.5 parent: 2 - - uid: 8904 + - uid: 9481 components: - type: Transform pos: -72.5,-94.5 parent: 2 - - uid: 8905 + - uid: 9482 components: - type: Transform pos: -71.5,-96.5 parent: 2 - - uid: 8906 + - uid: 9483 components: - type: Transform pos: -70.5,-93.5 parent: 2 - - uid: 8907 + - uid: 9484 components: - type: Transform pos: -73.5,-96.5 parent: 2 - - uid: 8908 + - uid: 9485 components: - type: Transform pos: -72.5,-96.5 parent: 2 - - uid: 8909 + - uid: 9486 components: - type: Transform pos: -70.5,-97.5 parent: 2 - - uid: 8910 + - uid: 9487 components: - type: Transform pos: -70.5,-96.5 parent: 2 - - uid: 8911 + - uid: 9488 components: - type: Transform pos: -67.5,7.5 parent: 2 - - uid: 8913 + - uid: 9489 components: - type: Transform pos: 72.5,-62.5 parent: 2 - - uid: 8914 + - uid: 9490 components: - type: Transform pos: -59.5,7.5 parent: 2 - - uid: 8915 + - uid: 9491 components: - type: Transform pos: -60.5,7.5 parent: 2 - - uid: 8916 + - uid: 9492 components: - type: Transform pos: -72.5,-100.5 parent: 2 - - uid: 8917 + - uid: 9493 components: - type: Transform pos: -66.5,-100.5 parent: 2 - - uid: 8918 + - uid: 9494 components: - type: Transform pos: -70.5,-98.5 parent: 2 - - uid: 8919 + - uid: 9495 components: - type: Transform pos: -70.5,-90.5 parent: 2 - - uid: 8920 + - uid: 9496 components: - type: Transform pos: 64.5,-59.5 parent: 2 - - uid: 8921 + - uid: 9497 components: - type: Transform pos: 63.5,-59.5 parent: 2 - - uid: 8922 + - uid: 9498 components: - type: Transform pos: 34.5,6.5 parent: 2 - - uid: 8923 + - uid: 9499 components: - type: Transform pos: -71.5,-88.5 parent: 2 - - uid: 8924 + - uid: 9500 components: - type: Transform pos: -64.5,-88.5 parent: 2 - - uid: 8925 + - uid: 9501 components: - type: Transform pos: -72.5,-88.5 parent: 2 - - uid: 8926 + - uid: 9502 components: - type: Transform pos: -70.5,-89.5 parent: 2 - - uid: 8927 + - uid: 9503 components: - type: Transform pos: -70.5,-88.5 parent: 2 - - uid: 8929 + - uid: 9504 components: - type: Transform pos: -58.5,-77.5 parent: 2 - - uid: 8930 + - uid: 9505 components: - type: Transform pos: 34.5,1.5 parent: 2 - - uid: 8931 + - uid: 9506 components: - type: Transform pos: 34.5,4.5 parent: 2 - - uid: 8932 + - uid: 9507 components: - type: Transform pos: 34.5,3.5 parent: 2 - - uid: 8933 + - uid: 9508 components: - type: Transform pos: 34.5,-80.5 parent: 2 - - uid: 8934 + - uid: 9509 components: - type: Transform pos: 82.5,-92.5 parent: 2 - - uid: 8935 + - uid: 9510 components: - type: Transform pos: 71.5,-88.5 parent: 2 - - uid: 8936 + - uid: 9511 components: - type: Transform pos: 73.5,-86.5 parent: 2 - - uid: 8937 + - uid: 9512 components: - type: Transform pos: 72.5,-90.5 parent: 2 - - uid: 8938 + - uid: 9513 components: - type: Transform pos: 73.5,-90.5 parent: 2 - - uid: 8939 + - uid: 9514 components: - type: Transform pos: 71.5,-92.5 parent: 2 - - uid: 8940 + - uid: 9515 components: - type: Transform pos: 74.5,-92.5 parent: 2 - - uid: 8941 + - uid: 9516 components: - type: Transform pos: 72.5,-92.5 parent: 2 - - uid: 8942 + - uid: 9517 components: - type: Transform pos: 74.5,-91.5 parent: 2 - - uid: 8943 + - uid: 9518 components: - type: Transform pos: 78.5,-90.5 parent: 2 - - uid: 8944 + - uid: 9519 components: - type: Transform pos: 78.5,-92.5 parent: 2 - - uid: 8945 + - uid: 9520 components: - type: Transform pos: 79.5,-92.5 parent: 2 - - uid: 8946 + - uid: 9521 components: - type: Transform pos: 73.5,-92.5 parent: 2 - - uid: 8947 + - uid: 9522 components: - type: Transform pos: 81.5,-92.5 parent: 2 - - uid: 8948 + - uid: 9523 components: - type: Transform pos: -71.5,-98.5 parent: 2 - - uid: 8949 + - uid: 9524 components: - type: Transform pos: -72.5,-98.5 parent: 2 - - uid: 8950 + - uid: 9525 components: - type: Transform pos: -64.5,-100.5 parent: 2 - - uid: 8951 + - uid: 9526 components: - type: Transform pos: -64.5,-96.5 parent: 2 - - uid: 8952 + - uid: 9527 components: - type: Transform pos: -62.5,-96.5 parent: 2 - - uid: 8953 + - uid: 9528 components: - type: Transform pos: -63.5,-96.5 parent: 2 - - uid: 8954 + - uid: 9529 components: - type: Transform pos: -66.5,-94.5 parent: 2 - - uid: 8955 + - uid: 9530 components: - type: Transform pos: -64.5,-90.5 parent: 2 - - uid: 8956 + - uid: 9531 components: - type: Transform pos: -65.5,-94.5 parent: 2 - - uid: 8957 + - uid: 9532 components: - type: Transform pos: -66.5,-92.5 parent: 2 - - uid: 8958 + - uid: 9533 components: - type: Transform pos: -65.5,-92.5 parent: 2 - - uid: 8959 + - uid: 9534 components: - type: Transform pos: -64.5,-92.5 parent: 2 - - uid: 8960 + - uid: 9535 components: - type: Transform pos: -64.5,-94.5 parent: 2 - - uid: 8961 + - uid: 9536 components: - type: Transform pos: -63.5,-94.5 parent: 2 - - uid: 8962 + - uid: 9537 components: - type: Transform pos: -66.5,-93.5 parent: 2 - - uid: 8963 + - uid: 9538 components: - type: Transform pos: -63.5,-92.5 parent: 2 - - uid: 8964 + - uid: 9539 components: - type: Transform pos: -65.5,-90.5 parent: 2 - - uid: 8965 + - uid: 9540 components: - type: Transform pos: -66.5,-90.5 parent: 2 - - uid: 8966 + - uid: 9541 components: - type: Transform pos: -65.5,-88.5 parent: 2 - - uid: 8967 + - uid: 9542 components: - type: Transform pos: -66.5,-89.5 parent: 2 - - uid: 8968 + - uid: 9543 components: - type: Transform pos: -66.5,-88.5 parent: 2 - - uid: 8969 + - uid: 9544 components: - type: Transform pos: -73.5,-98.5 parent: 2 - - uid: 8970 + - uid: 9545 components: - type: Transform pos: -74.5,-98.5 parent: 2 - - uid: 8971 + - uid: 9546 components: - type: Transform pos: -71.5,-100.5 parent: 2 - - uid: 8972 + - uid: 9547 components: - type: Transform pos: -64.5,-102.5 parent: 2 - - uid: 8973 + - uid: 9548 components: - type: Transform pos: -66.5,-98.5 parent: 2 - - uid: 8974 + - uid: 9549 components: - type: Transform pos: -65.5,-102.5 parent: 2 - - uid: 8975 + - uid: 9550 components: - type: Transform pos: -65.5,-98.5 parent: 2 - - uid: 8976 + - uid: 9551 components: - type: Transform pos: -66.5,-102.5 parent: 2 - - uid: 8977 + - uid: 9552 components: - type: Transform pos: -66.5,-101.5 parent: 2 - - uid: 8978 + - uid: 9553 components: - type: Transform pos: -65.5,-100.5 parent: 2 - - uid: 8979 + - uid: 9554 components: - type: Transform pos: -64.5,-98.5 parent: 2 - - uid: 8980 + - uid: 9555 components: - type: Transform pos: 44.5,-53.5 parent: 2 - - uid: 8981 + - uid: 9556 components: - type: Transform pos: 44.5,-54.5 parent: 2 - - uid: 8982 + - uid: 9557 components: - type: Transform pos: 44.5,-55.5 parent: 2 - - uid: 8983 + - uid: 9558 components: - type: Transform pos: 79.5,-90.5 parent: 2 - - uid: 8984 + - uid: 9559 components: - type: Transform pos: -70.5,-101.5 parent: 2 - - uid: 8985 + - uid: 9560 components: - type: Transform pos: 34.5,2.5 parent: 2 - - uid: 8986 + - uid: 9561 components: - type: Transform pos: -63.5,-98.5 parent: 2 - - uid: 8987 + - uid: 9562 components: - type: Transform pos: -70.5,-100.5 parent: 2 - - uid: 8988 + - uid: 9563 components: - type: Transform pos: -71.5,-102.5 parent: 2 - - uid: 8989 + - uid: 9564 components: - type: Transform pos: -70.5,-102.5 parent: 2 - - uid: 8990 + - uid: 9565 components: - type: Transform pos: -72.5,-102.5 parent: 2 - - uid: 8991 + - uid: 9566 components: - type: Transform pos: -62.5,-98.5 parent: 2 - - uid: 8992 + - uid: 9567 components: - type: Transform pos: -66.5,-96.5 parent: 2 - - uid: 8993 + - uid: 9568 components: - type: Transform pos: -65.5,-96.5 parent: 2 - - uid: 8994 + - uid: 9569 components: - type: Transform pos: -40.5,-112.5 parent: 2 - - uid: 8995 + - uid: 9570 components: - type: Transform pos: -39.5,-112.5 parent: 2 - - uid: 8996 + - uid: 9571 components: - type: Transform pos: -40.5,-113.5 parent: 2 - - uid: 8997 + - uid: 9572 components: - type: Transform pos: 73.5,-62.5 parent: 2 - - uid: 8998 + - uid: 9573 components: - type: Transform pos: 75.5,-52.5 parent: 2 - - uid: 8999 + - uid: 9574 components: - type: Transform pos: -66.5,-97.5 parent: 2 - - uid: 9000 + - uid: 9575 components: - type: Transform pos: 74.5,-90.5 parent: 2 - - uid: 9001 + - uid: 9576 components: - type: Transform pos: -71.5,-90.5 parent: 2 - - uid: 9002 + - uid: 9577 components: - type: Transform pos: 75.5,-50.5 parent: 2 - - uid: 9003 + - uid: 9578 components: - type: Transform pos: 69.5,-55.5 parent: 2 - - uid: 9004 + - uid: 9579 components: - type: Transform pos: -78.5,12.5 parent: 2 - - uid: 9005 + - uid: 9580 components: - type: Transform pos: 70.5,-62.5 parent: 2 - - uid: 9006 + - uid: 9581 components: - type: Transform pos: 69.5,-56.5 parent: 2 - - uid: 9007 + - uid: 9582 components: - type: Transform pos: 71.5,-62.5 parent: 2 - - uid: 9008 + - uid: 9583 components: - type: Transform pos: 74.5,-62.5 parent: 2 - - uid: 9009 + - uid: 9584 components: - type: Transform pos: 75.5,-51.5 parent: 2 - - uid: 9010 + - uid: 9585 components: - type: Transform pos: 33.5,-2.5 parent: 2 - - uid: 9011 + - uid: 9586 components: - type: Transform pos: 40.5,-78.5 parent: 2 - - uid: 9012 + - uid: 9587 components: - type: Transform pos: -58.5,-72.5 parent: 2 - - uid: 9013 + - uid: 9588 components: - type: Transform pos: -57.5,-77.5 parent: 2 - - uid: 9014 + - uid: 9589 components: - type: Transform pos: -72.5,-90.5 parent: 2 - - uid: 9015 + - uid: 9590 components: - type: Transform pos: 73.5,-61.5 parent: 2 - - uid: 9037 + - uid: 9591 components: - type: Transform pos: 39.5,-78.5 parent: 2 - - uid: 9038 + - uid: 9592 components: - type: Transform pos: 73.5,-60.5 parent: 2 - - uid: 9039 + - uid: 9593 components: - type: Transform pos: 73.5,-59.5 parent: 2 - - uid: 9040 + - uid: 9594 components: - type: Transform pos: 73.5,-58.5 parent: 2 - - uid: 9041 + - uid: 9595 components: - type: Transform pos: 26.5,-30.5 parent: 2 - - uid: 9042 + - uid: 9596 components: - type: Transform pos: 25.5,-30.5 parent: 2 - - uid: 9043 + - uid: 9597 components: - type: Transform pos: 24.5,-30.5 parent: 2 - - uid: 9044 + - uid: 9598 components: - type: Transform pos: 23.5,-30.5 parent: 2 - - uid: 9045 + - uid: 9599 components: - type: Transform pos: 23.5,-31.5 parent: 2 - - uid: 9046 + - uid: 9600 components: - type: Transform pos: 23.5,-32.5 parent: 2 - - uid: 9047 + - uid: 9601 components: - type: Transform pos: 23.5,-33.5 parent: 2 - - uid: 9048 + - uid: 9602 components: - type: Transform pos: -27.5,-41.5 parent: 2 - - uid: 9049 + - uid: 9603 components: - type: Transform pos: -26.5,-41.5 parent: 2 - - uid: 9050 + - uid: 9604 components: - type: Transform pos: -26.5,-42.5 parent: 2 - - uid: 9051 + - uid: 9605 components: - type: Transform pos: -26.5,-43.5 parent: 2 - - uid: 9052 + - uid: 9606 components: - type: Transform pos: -26.5,-44.5 parent: 2 - - uid: 9053 + - uid: 9607 components: - type: Transform pos: -26.5,-45.5 parent: 2 - - uid: 9054 + - uid: 9608 components: - type: Transform pos: -27.5,-45.5 parent: 2 - - uid: 9055 + - uid: 9609 components: - type: Transform pos: -76.5,10.5 parent: 2 - - uid: 9056 + - uid: 9610 components: - type: Transform pos: -66.5,3.5 parent: 2 - - uid: 9057 + - uid: 9611 components: - type: Transform pos: -65.5,3.5 parent: 2 - - uid: 9058 + - uid: 9612 components: - type: Transform pos: -65.5,4.5 parent: 2 - - uid: 9072 + - uid: 9613 components: - type: Transform pos: -35.5,9.5 parent: 2 - - uid: 9073 + - uid: 9614 components: - type: Transform pos: -79.5,21.5 parent: 2 - - uid: 9074 + - uid: 9615 components: - type: Transform pos: -79.5,22.5 parent: 2 - - uid: 9075 + - uid: 9616 components: - type: Transform pos: -80.5,22.5 parent: 2 - - uid: 9076 + - uid: 9617 components: - type: Transform pos: -85.5,21.5 parent: 2 - - uid: 9077 + - uid: 9618 components: - type: Transform pos: -82.5,25.5 parent: 2 - - uid: 9078 + - uid: 9619 components: - type: Transform pos: -40.5,-26.5 parent: 2 - - uid: 9079 + - uid: 9620 components: - type: Transform pos: -41.5,-26.5 parent: 2 - - uid: 9082 + - uid: 9621 components: - type: Transform pos: 59.5,-59.5 parent: 2 - - uid: 9083 + - uid: 9622 components: - type: Transform pos: 60.5,-59.5 parent: 2 - - uid: 9086 + - uid: 9623 components: - type: Transform pos: 44.5,-56.5 parent: 2 - - uid: 9087 + - uid: 9624 components: - type: Transform pos: 45.5,-56.5 parent: 2 - - uid: 9088 + - uid: 9625 components: - type: Transform pos: 46.5,-56.5 parent: 2 - - uid: 9089 + - uid: 9626 components: - type: Transform pos: 47.5,-56.5 parent: 2 - - uid: 9090 + - uid: 9627 components: - type: Transform pos: 48.5,-56.5 parent: 2 - - uid: 9091 + - uid: 9628 components: - type: Transform pos: 49.5,-56.5 parent: 2 - - uid: 9092 + - uid: 9629 components: - type: Transform pos: 50.5,-56.5 parent: 2 - - uid: 9093 + - uid: 9630 components: - type: Transform pos: 51.5,-56.5 parent: 2 - - uid: 9094 + - uid: 9631 components: - type: Transform pos: 52.5,-56.5 parent: 2 - - uid: 9095 + - uid: 9632 components: - type: Transform pos: 53.5,-56.5 parent: 2 - - uid: 9096 + - uid: 9633 components: - type: Transform pos: 54.5,-56.5 parent: 2 - - uid: 9097 + - uid: 9634 components: - type: Transform pos: 54.5,-88.5 parent: 2 - - uid: 9098 + - uid: 9635 components: - type: Transform pos: 53.5,-88.5 parent: 2 - - uid: 9099 + - uid: 9636 components: - type: Transform pos: 52.5,-88.5 parent: 2 - - uid: 9101 + - uid: 9637 components: - type: Transform pos: 52.5,-87.5 parent: 2 - - uid: 9102 + - uid: 9638 components: - type: Transform pos: 73.5,-57.5 parent: 2 - - uid: 9103 + - uid: 9639 components: - type: Transform pos: -53.5,-94.5 parent: 2 - - uid: 9104 + - uid: 9640 components: - type: Transform pos: -54.5,-94.5 parent: 2 - - uid: 9105 + - uid: 9641 components: - type: Transform pos: -55.5,-94.5 parent: 2 - - uid: 9106 + - uid: 9642 components: - type: Transform pos: -55.5,-95.5 parent: 2 - - uid: 9107 + - uid: 9643 components: - type: Transform pos: -55.5,-96.5 parent: 2 - - uid: 9108 + - uid: 9644 components: - type: Transform pos: -55.5,-97.5 parent: 2 - - uid: 9109 + - uid: 9645 components: - type: Transform pos: -55.5,-98.5 parent: 2 - - uid: 9110 + - uid: 9646 components: - type: Transform pos: -55.5,-99.5 parent: 2 - - uid: 9111 + - uid: 9647 components: - type: Transform pos: -55.5,-100.5 parent: 2 - - uid: 9112 + - uid: 9648 components: - type: Transform pos: -55.5,-101.5 parent: 2 - - uid: 9113 + - uid: 9649 components: - type: Transform pos: -55.5,-102.5 parent: 2 - - uid: 9114 + - uid: 9650 components: - type: Transform pos: -55.5,-103.5 parent: 2 - - uid: 9115 + - uid: 9651 components: - type: Transform pos: -54.5,-103.5 parent: 2 - - uid: 9116 + - uid: 9652 components: - type: Transform pos: -55.5,-106.5 parent: 2 - - uid: 9117 + - uid: 9653 components: - type: Transform pos: -55.5,-104.5 parent: 2 - - uid: 9118 + - uid: 9654 components: - type: Transform pos: -55.5,-105.5 parent: 2 - - uid: 9119 + - uid: 9655 components: - type: Transform pos: -54.5,-106.5 parent: 2 - - uid: 9120 + - uid: 9656 components: - type: Transform pos: -53.5,-106.5 parent: 2 - - uid: 9121 + - uid: 9657 components: - type: Transform pos: -52.5,-106.5 parent: 2 - - uid: 9122 + - uid: 9658 components: - type: Transform pos: -51.5,-106.5 parent: 2 - - uid: 9123 + - uid: 9659 components: - type: Transform pos: -50.5,-106.5 parent: 2 - - uid: 9124 + - uid: 9660 components: - type: Transform pos: -49.5,-106.5 parent: 2 - - uid: 9125 + - uid: 9661 components: - type: Transform pos: -49.5,-105.5 parent: 2 - - uid: 9126 + - uid: 9662 components: - type: Transform pos: -48.5,-105.5 parent: 2 - - uid: 9127 + - uid: 9663 components: - type: Transform pos: -47.5,-105.5 parent: 2 - - uid: 9128 + - uid: 9664 components: - type: Transform pos: -46.5,-105.5 parent: 2 - - uid: 9129 + - uid: 9665 components: - type: Transform pos: -45.5,-105.5 parent: 2 - - uid: 9130 + - uid: 9666 components: - type: Transform pos: -44.5,-105.5 parent: 2 - - uid: 9131 + - uid: 9667 components: - type: Transform pos: -43.5,-105.5 parent: 2 - - uid: 9132 + - uid: 9668 components: - type: Transform pos: -42.5,-105.5 parent: 2 - - uid: 9133 + - uid: 9669 components: - type: Transform pos: -41.5,-105.5 parent: 2 - - uid: 9134 + - uid: 9670 components: - type: Transform pos: -40.5,-105.5 parent: 2 - - uid: 9135 + - uid: 9671 components: - type: Transform pos: -39.5,-105.5 parent: 2 - - uid: 9136 + - uid: 9672 components: - type: Transform pos: -38.5,-105.5 parent: 2 - - uid: 9137 + - uid: 9673 components: - type: Transform pos: -38.5,-106.5 parent: 2 - - uid: 9138 + - uid: 9674 components: - type: Transform pos: -38.5,-107.5 parent: 2 - - uid: 9139 + - uid: 9675 components: - type: Transform pos: -38.5,-108.5 parent: 2 - - uid: 9140 + - uid: 9676 components: - type: Transform pos: -38.5,-109.5 parent: 2 - - uid: 9141 + - uid: 9677 components: - type: Transform pos: -39.5,-109.5 parent: 2 - - uid: 9142 + - uid: 9678 components: - type: Transform pos: -40.5,-109.5 parent: 2 - - uid: 9143 + - uid: 9679 components: - type: Transform pos: -41.5,-109.5 parent: 2 - - uid: 9144 + - uid: 9680 components: - type: Transform pos: -42.5,-109.5 parent: 2 - - uid: 9145 + - uid: 9681 components: - type: Transform pos: -42.5,-110.5 parent: 2 - - uid: 9146 + - uid: 9682 components: - type: Transform pos: -37.5,-109.5 parent: 2 - - uid: 9147 + - uid: 9683 components: - type: Transform pos: -36.5,-109.5 parent: 2 - - uid: 9148 + - uid: 9684 components: - type: Transform pos: -35.5,-109.5 parent: 2 - - uid: 9149 + - uid: 9685 components: - type: Transform pos: -34.5,-109.5 parent: 2 - - uid: 9150 + - uid: 9686 components: - type: Transform pos: -33.5,-109.5 parent: 2 - - uid: 9151 + - uid: 9687 components: - type: Transform pos: -32.5,-109.5 parent: 2 - - uid: 9152 + - uid: 9688 components: - type: Transform pos: -31.5,-109.5 parent: 2 - - uid: 9153 + - uid: 9689 components: - type: Transform pos: -30.5,-109.5 parent: 2 - - uid: 9154 + - uid: 9690 components: - type: Transform pos: -30.5,-110.5 parent: 2 - - uid: 9155 + - uid: 9691 components: - type: Transform pos: -29.5,-110.5 parent: 2 - - uid: 9156 + - uid: 9692 components: - type: Transform pos: -28.5,-110.5 parent: 2 - - uid: 9157 + - uid: 9693 components: - type: Transform pos: -27.5,-110.5 parent: 2 - - uid: 9158 + - uid: 9694 components: - type: Transform pos: -26.5,-110.5 parent: 2 - - uid: 9159 + - uid: 9695 components: - type: Transform pos: -26.5,-109.5 parent: 2 - - uid: 9160 + - uid: 9696 components: - type: Transform pos: -26.5,-108.5 parent: 2 - - uid: 9161 + - uid: 9697 components: - type: Transform pos: -26.5,-107.5 parent: 2 - - uid: 9162 + - uid: 9698 components: - type: Transform pos: -26.5,-106.5 parent: 2 - - uid: 9163 + - uid: 9699 components: - type: Transform pos: -26.5,-105.5 parent: 2 - - uid: 9164 + - uid: 9700 components: - type: Transform pos: -26.5,-104.5 parent: 2 - - uid: 9165 + - uid: 9701 components: - type: Transform pos: -26.5,-103.5 parent: 2 - - uid: 9166 + - uid: 9702 components: - type: Transform pos: -26.5,-102.5 parent: 2 - - uid: 9167 + - uid: 9703 components: - type: Transform pos: -26.5,-101.5 parent: 2 - - uid: 9168 + - uid: 9704 components: - type: Transform pos: -26.5,-100.5 parent: 2 - - uid: 9169 + - uid: 9705 components: - type: Transform pos: -26.5,-99.5 parent: 2 - - uid: 9170 + - uid: 9706 components: - type: Transform pos: -26.5,-98.5 parent: 2 - - uid: 9171 + - uid: 9707 components: - type: Transform pos: -26.5,-97.5 parent: 2 - - uid: 9172 + - uid: 9708 components: - type: Transform pos: -26.5,-96.5 parent: 2 - - uid: 9173 + - uid: 9709 components: - type: Transform pos: -26.5,-95.5 parent: 2 - - uid: 9174 + - uid: 9710 components: - type: Transform pos: -25.5,-95.5 parent: 2 - - uid: 9175 + - uid: 9711 components: - type: Transform pos: -24.5,-95.5 parent: 2 - - uid: 9176 + - uid: 9712 components: - type: Transform pos: -23.5,-95.5 parent: 2 - - uid: 9177 + - uid: 9713 components: - type: Transform pos: -22.5,-95.5 parent: 2 - - uid: 9178 + - uid: 9714 components: - type: Transform pos: -21.5,-95.5 parent: 2 - - uid: 9179 + - uid: 9715 components: - type: Transform pos: -20.5,-95.5 parent: 2 - - uid: 9180 + - uid: 9716 components: - type: Transform pos: -19.5,-95.5 parent: 2 - - uid: 9181 + - uid: 9717 components: - type: Transform pos: -18.5,-95.5 parent: 2 - - uid: 9182 + - uid: 9718 components: - type: Transform pos: -17.5,-95.5 parent: 2 - - uid: 9183 + - uid: 9719 components: - type: Transform pos: -16.5,-95.5 parent: 2 - - uid: 9184 + - uid: 9720 components: - type: Transform pos: -15.5,-95.5 parent: 2 - - uid: 9185 + - uid: 9721 components: - type: Transform pos: -15.5,-94.5 parent: 2 - - uid: 9186 + - uid: 9722 components: - type: Transform pos: -15.5,-93.5 parent: 2 - - uid: 9187 + - uid: 9723 components: - type: Transform pos: -15.5,-92.5 parent: 2 - - uid: 9188 + - uid: 9724 components: - type: Transform pos: -15.5,-91.5 parent: 2 - - uid: 9189 + - uid: 9725 components: - type: Transform pos: -83.5,26.5 parent: 2 - - uid: 9190 + - uid: 9726 components: - type: Transform pos: -79.5,12.5 parent: 2 - - uid: 9191 + - uid: 9727 components: - type: Transform pos: -80.5,12.5 parent: 2 - - uid: 9192 + - uid: 9728 components: - type: Transform pos: -78.5,14.5 parent: 2 - - uid: 9193 + - uid: 9729 components: - type: Transform pos: -79.5,14.5 parent: 2 - - uid: 9194 + - uid: 9730 components: - type: Transform pos: -80.5,14.5 parent: 2 - - uid: 9195 + - uid: 9731 components: - type: Transform pos: -80.5,13.5 parent: 2 - - uid: 9196 + - uid: 9732 components: - type: Transform pos: -77.5,16.5 parent: 2 - - uid: 9197 + - uid: 9733 components: - type: Transform pos: -78.5,16.5 parent: 2 - - uid: 9198 + - uid: 9734 components: - type: Transform pos: -79.5,16.5 parent: 2 - - uid: 9199 + - uid: 9735 components: - type: Transform pos: -80.5,16.5 parent: 2 - - uid: 9200 + - uid: 9736 components: - type: Transform pos: -80.5,17.5 parent: 2 - - uid: 9201 + - uid: 9737 components: - type: Transform pos: -80.5,18.5 parent: 2 - - uid: 9202 + - uid: 9738 components: - type: Transform pos: -79.5,18.5 parent: 2 - - uid: 9203 + - uid: 9739 components: - type: Transform pos: -78.5,18.5 parent: 2 - - uid: 9204 + - uid: 9740 components: - type: Transform pos: -77.5,18.5 parent: 2 - - uid: 9205 + - uid: 9741 components: - type: Transform pos: -84.5,18.5 parent: 2 - - uid: 9206 + - uid: 9742 components: - type: Transform pos: -85.5,18.5 parent: 2 - - uid: 9207 + - uid: 9743 components: - type: Transform pos: -86.5,18.5 parent: 2 - - uid: 9208 + - uid: 9744 components: - type: Transform pos: -87.5,18.5 parent: 2 - - uid: 9209 + - uid: 9745 components: - type: Transform pos: -87.5,16.5 parent: 2 - - uid: 9210 + - uid: 9746 components: - type: Transform pos: -86.5,16.5 parent: 2 - - uid: 9211 + - uid: 9747 components: - type: Transform pos: -85.5,16.5 parent: 2 - - uid: 9212 + - uid: 9748 components: - type: Transform pos: -84.5,16.5 parent: 2 - - uid: 9213 + - uid: 9749 components: - type: Transform pos: -84.5,17.5 parent: 2 - - uid: 9214 + - uid: 9750 components: - type: Transform pos: -86.5,14.5 parent: 2 - - uid: 9215 + - uid: 9751 components: - type: Transform pos: -85.5,14.5 parent: 2 - - uid: 9216 + - uid: 9752 components: - type: Transform pos: -84.5,14.5 parent: 2 - - uid: 9217 + - uid: 9753 components: - type: Transform pos: -84.5,13.5 parent: 2 - - uid: 9218 + - uid: 9754 components: - type: Transform pos: -84.5,12.5 parent: 2 - - uid: 9219 + - uid: 9755 components: - type: Transform pos: -85.5,12.5 parent: 2 - - uid: 9220 + - uid: 9756 components: - type: Transform pos: -86.5,12.5 parent: 2 - - uid: 9221 + - uid: 9757 components: - type: Transform pos: -78.5,22.5 parent: 2 - - uid: 9222 + - uid: 9758 components: - type: Transform pos: -86.5,24.5 parent: 2 - - uid: 9223 + - uid: 9759 components: - type: Transform pos: -82.5,26.5 parent: 2 - - uid: 9224 + - uid: 9760 components: - type: Transform pos: -81.5,29.5 parent: 2 - - uid: 9225 + - uid: 9761 components: - type: Transform pos: -78.5,23.5 parent: 2 - - uid: 9226 + - uid: 9762 components: - type: Transform pos: -86.5,23.5 parent: 2 - - uid: 9227 + - uid: 9763 components: - type: Transform pos: -79.5,20.5 parent: 2 - - uid: 9228 + - uid: 9764 components: - type: Transform pos: -84.5,23.5 parent: 2 - - uid: 9229 + - uid: 9765 components: - type: Transform pos: -81.5,28.5 parent: 2 - - uid: 9230 + - uid: 9766 components: - type: Transform pos: -83.5,27.5 parent: 2 - - uid: 9231 + - uid: 9767 components: - type: Transform pos: -84.5,22.5 parent: 2 - - uid: 9232 + - uid: 9768 components: - type: Transform pos: -83.5,29.5 parent: 2 - - uid: 9233 + - uid: 9769 components: - type: Transform pos: -84.5,24.5 parent: 2 - - uid: 9234 + - uid: 9770 components: - type: Transform pos: -80.5,24.5 parent: 2 - - uid: 9235 + - uid: 9771 components: - type: Transform pos: -80.5,23.5 parent: 2 - - uid: 9236 + - uid: 9772 components: - type: Transform pos: -85.5,22.5 parent: 2 - - uid: 9237 + - uid: 9773 components: - type: Transform pos: -78.5,24.5 parent: 2 - - uid: 9238 + - uid: 9774 components: - type: Transform pos: -86.5,22.5 parent: 2 - - uid: 9239 + - uid: 9775 components: - type: Transform pos: -82.5,30.5 parent: 2 - - uid: 9240 + - uid: 9776 components: - type: Transform pos: -81.5,27.5 parent: 2 - - uid: 9241 + - uid: 9777 components: - type: Transform pos: -81.5,26.5 parent: 2 - - uid: 9242 + - uid: 9778 components: - type: Transform pos: -82.5,29.5 parent: 2 - - uid: 9243 + - uid: 9779 components: - type: Transform pos: -83.5,28.5 parent: 2 - - uid: 9244 + - uid: 9780 components: - type: Transform pos: -85.5,20.5 parent: 2 - - uid: 9245 + - uid: 9781 components: - type: Transform pos: 100.5,-63.5 parent: 2 - - uid: 9246 + - uid: 9782 components: - type: Transform pos: 100.5,-62.5 parent: 2 - - uid: 9247 + - uid: 9783 components: - type: Transform pos: 99.5,-62.5 parent: 2 - - uid: 9248 + - uid: 9784 components: - type: Transform pos: 98.5,-62.5 parent: 2 - - uid: 9249 + - uid: 9785 components: - type: Transform pos: 97.5,-62.5 parent: 2 - - uid: 9250 + - uid: 9786 components: - type: Transform pos: 97.5,-61.5 parent: 2 - - uid: 9251 + - uid: 9787 components: - type: Transform pos: 99.5,-61.5 parent: 2 - - uid: 9252 + - uid: 9788 components: - type: Transform pos: 98.5,-61.5 parent: 2 - - uid: 9253 + - uid: 9789 components: - type: Transform pos: 100.5,-64.5 parent: 2 - - uid: 9254 + - uid: 9790 components: - type: Transform pos: 99.5,-64.5 parent: 2 - - uid: 9255 + - uid: 9791 components: - type: Transform pos: 98.5,-64.5 parent: 2 - - uid: 9256 + - uid: 9792 components: - type: Transform pos: 97.5,-64.5 parent: 2 - - uid: 9257 + - uid: 9793 components: - type: Transform pos: 96.5,-64.5 parent: 2 - - uid: 9258 + - uid: 9794 components: - type: Transform pos: 44.5,-51.5 parent: 2 - - uid: 9259 + - uid: 9795 components: - type: Transform pos: 44.5,-50.5 parent: 2 - - uid: 9260 + - uid: 9796 components: - type: Transform pos: 44.5,-49.5 parent: 2 - - uid: 9261 + - uid: 9797 components: - type: Transform pos: 44.5,-48.5 parent: 2 - - uid: 9262 + - uid: 9798 components: - type: Transform pos: 44.5,-47.5 parent: 2 - - uid: 9263 + - uid: 9799 components: - type: Transform pos: 44.5,-46.5 parent: 2 - - uid: 9264 + - uid: 9800 components: - type: Transform pos: 44.5,-45.5 parent: 2 - - uid: 9266 + - uid: 9801 components: - type: Transform pos: 35.5,-39.5 parent: 2 - - uid: 9267 + - uid: 9802 components: - type: Transform pos: 35.5,-40.5 parent: 2 - - uid: 9268 + - uid: 9803 components: - type: Transform pos: 36.5,-40.5 parent: 2 - - uid: 9269 + - uid: 9804 components: - type: Transform pos: 37.5,-40.5 parent: 2 - - uid: 9270 + - uid: 9805 components: - type: Transform pos: 37.5,-39.5 parent: 2 - - uid: 9271 + - uid: 9806 components: - type: Transform pos: 38.5,-39.5 parent: 2 - - uid: 9272 + - uid: 9807 components: - type: Transform pos: 39.5,-39.5 parent: 2 - - uid: 9273 + - uid: 9808 components: - type: Transform pos: 40.5,-39.5 parent: 2 - - uid: 9277 + - uid: 9809 components: - type: Transform pos: 29.5,-2.5 parent: 2 - - uid: 9278 + - uid: 9810 components: - type: Transform pos: 31.5,-2.5 parent: 2 - - uid: 9279 + - uid: 9811 components: - type: Transform pos: -59.5,-40.5 parent: 2 - - uid: 9280 + - uid: 9812 components: - type: Transform pos: 37.5,-6.5 parent: 2 - - uid: 9281 + - uid: 9813 components: - type: Transform pos: 38.5,-7.5 parent: 2 - - uid: 9282 + - uid: 9814 components: - type: Transform pos: -59.5,-41.5 parent: 2 - - uid: 9283 + - uid: 9815 components: - type: Transform pos: -59.5,-42.5 parent: 2 - - uid: 9285 + - uid: 9816 components: - type: Transform pos: 81.5,-90.5 parent: 2 - - uid: 9286 + - uid: 9817 components: - type: Transform pos: -64.5,-107.5 parent: 2 - - uid: 9287 + - uid: 9818 components: - type: Transform pos: -64.5,-106.5 parent: 2 - - uid: 9288 + - uid: 9819 components: - type: Transform pos: -64.5,-105.5 parent: 2 - - uid: 9289 + - uid: 9820 components: - type: Transform pos: -66.5,-107.5 parent: 2 - - uid: 9290 + - uid: 9821 components: - type: Transform pos: -66.5,-106.5 parent: 2 - - uid: 9291 + - uid: 9822 components: - type: Transform pos: -66.5,-105.5 parent: 2 - - uid: 9292 + - uid: 9823 components: - type: Transform pos: -70.5,-107.5 parent: 2 - - uid: 9293 + - uid: 9824 components: - type: Transform pos: -70.5,-106.5 parent: 2 - - uid: 9294 + - uid: 9825 components: - type: Transform pos: -70.5,-105.5 parent: 2 - - uid: 9295 + - uid: 9826 components: - type: Transform pos: -72.5,-107.5 parent: 2 - - uid: 9296 + - uid: 9827 components: - type: Transform pos: -72.5,-106.5 parent: 2 - - uid: 9297 + - uid: 9828 components: - type: Transform pos: -72.5,-105.5 parent: 2 - - uid: 9298 + - uid: 9829 components: - type: Transform pos: -71.5,-105.5 parent: 2 - - uid: 9299 + - uid: 9830 components: - type: Transform pos: -71.5,-104.5 parent: 2 - - uid: 9300 + - uid: 9831 components: - type: Transform pos: -65.5,-104.5 parent: 2 - - uid: 9301 + - uid: 9832 components: - type: Transform pos: -68.5,-104.5 parent: 2 - - uid: 9302 + - uid: 9833 components: - type: Transform pos: -68.5,-103.5 parent: 2 - - uid: 9304 + - uid: 9834 components: - type: Transform pos: -65.5,-104.5 parent: 2 - - uid: 9305 + - uid: 9835 components: - type: Transform pos: -65.5,-105.5 parent: 2 - - uid: 9306 + - uid: 9836 components: - type: Transform pos: 72.5,-88.5 parent: 2 - - uid: 9307 + - uid: 9837 components: - type: Transform pos: 80.5,-90.5 parent: 2 - - uid: 9308 + - uid: 9838 components: - type: Transform pos: 80.5,-92.5 parent: 2 - - uid: 9309 + - uid: 9839 components: - type: Transform pos: 71.5,-90.5 parent: 2 - - uid: 9310 + - uid: 9840 components: - type: Transform pos: 70.5,-92.5 parent: 2 - - uid: 9311 + - uid: 9841 components: - type: Transform pos: 78.5,-91.5 parent: 2 - - uid: 9312 + - uid: 9842 components: - type: Transform pos: 82.5,-90.5 parent: 2 - - uid: 9313 + - uid: 9843 components: - type: Transform pos: 73.5,-88.5 parent: 2 - - uid: 9314 + - uid: 9844 components: - type: Transform pos: 74.5,-88.5 parent: 2 - - uid: 9315 + - uid: 9845 components: - type: Transform pos: 70.5,-90.5 parent: 2 - - uid: 9316 + - uid: 9846 components: - type: Transform pos: 72.5,-86.5 parent: 2 - - uid: 9317 + - uid: 9847 components: - type: Transform pos: 74.5,-87.5 parent: 2 - - uid: 9318 + - uid: 9848 components: - type: Transform pos: 71.5,-86.5 parent: 2 - - uid: 9319 + - uid: 9849 components: - type: Transform pos: 74.5,-86.5 parent: 2 - - uid: 9320 + - uid: 9850 components: - type: Transform pos: 81.5,-88.5 parent: 2 - - uid: 9321 + - uid: 9851 components: - type: Transform pos: 80.5,-88.5 parent: 2 - - uid: 9322 + - uid: 9852 components: - type: Transform pos: 79.5,-88.5 parent: 2 - - uid: 9323 + - uid: 9853 components: - type: Transform pos: 78.5,-88.5 parent: 2 - - uid: 9324 + - uid: 9854 components: - type: Transform pos: 81.5,-86.5 parent: 2 - - uid: 9325 + - uid: 9855 components: - type: Transform pos: 80.5,-86.5 parent: 2 - - uid: 9326 + - uid: 9856 components: - type: Transform pos: 79.5,-86.5 parent: 2 - - uid: 9327 + - uid: 9857 components: - type: Transform pos: 78.5,-86.5 parent: 2 - - uid: 9328 + - uid: 9858 components: - type: Transform pos: 78.5,-87.5 parent: 2 - - uid: 9329 + - uid: 9859 components: - type: Transform pos: 76.5,-97.5 parent: 2 - - uid: 9330 + - uid: 9860 components: - type: Transform pos: 76.5,-96.5 parent: 2 - - uid: 9331 + - uid: 9861 components: - type: Transform pos: 70.5,-66.5 parent: 2 - - uid: 9332 + - uid: 9862 components: - type: Transform pos: 71.5,-66.5 parent: 2 - - uid: 9333 + - uid: 9863 components: - type: Transform pos: 72.5,-66.5 parent: 2 - - uid: 9334 + - uid: 9864 components: - type: Transform pos: 73.5,-66.5 parent: 2 - - uid: 9335 + - uid: 9865 components: - type: Transform pos: 74.5,-52.5 parent: 2 - - uid: 9336 + - uid: 9866 components: - type: Transform pos: 73.5,-52.5 parent: 2 - - uid: 9337 + - uid: 9867 components: - type: Transform pos: 72.5,-52.5 parent: 2 - - uid: 9338 + - uid: 9868 components: - type: Transform pos: 71.5,-52.5 parent: 2 - - uid: 9339 + - uid: 9869 components: - type: Transform pos: 70.5,-52.5 parent: 2 - - uid: 9340 + - uid: 9870 components: - type: Transform pos: 69.5,-52.5 parent: 2 - - uid: 9341 + - uid: 9871 components: - type: Transform pos: 80.5,-62.5 parent: 2 - - uid: 9342 + - uid: 9872 components: - type: Transform pos: 39.5,-79.5 parent: 2 - - uid: 9343 + - uid: 9873 components: - type: Transform pos: 36.5,-76.5 parent: 2 - - uid: 9344 + - uid: 9874 components: - type: Transform pos: 39.5,-83.5 parent: 2 - - uid: 11623 + - uid: 9875 components: - type: Transform pos: -62.5,-20.5 parent: 2 - - uid: 11668 + - uid: 9876 components: - type: Transform pos: -62.5,-18.5 parent: 2 - - uid: 12689 + - uid: 9877 components: - type: Transform pos: -62.5,-19.5 parent: 2 - - uid: 13233 + - uid: 9878 components: - type: Transform pos: 61.5,-51.5 parent: 2 - - uid: 13442 + - uid: 9879 components: - type: Transform pos: 29.5,-36.5 parent: 2 - - uid: 13444 + - uid: 9880 components: - type: Transform pos: 29.5,-35.5 parent: 2 - - uid: 13445 + - uid: 9881 components: - type: Transform pos: 28.5,-35.5 parent: 2 - - uid: 13446 + - uid: 9882 components: - type: Transform pos: 27.5,-35.5 parent: 2 - - uid: 13472 + - uid: 9883 components: - type: Transform pos: 62.5,-51.5 parent: 2 - - uid: 13514 + - uid: 9884 components: - type: Transform pos: 60.5,-55.5 parent: 2 - - uid: 13516 + - uid: 9885 components: - type: Transform pos: 60.5,-56.5 parent: 2 - - uid: 14398 + - uid: 9886 components: - type: Transform pos: -62.5,-17.5 parent: 2 - - uid: 18776 + - uid: 9887 components: - type: Transform pos: 67.5,-11.5 parent: 2 - - uid: 21285 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 21045 - - uid: 21286 + - uid: 9888 components: - type: Transform - pos: -0.5,-0.5 - parent: 21045 - - uid: 21287 + pos: 74.5,-6.5 + parent: 2 + - uid: 9889 components: - type: Transform - pos: 0.5,-0.5 - parent: 21045 - - uid: 21288 + pos: 74.5,-7.5 + parent: 2 + - uid: 9890 components: - type: Transform - pos: 1.5,-0.5 - parent: 21045 - - uid: 21289 + pos: -61.5,-17.5 + parent: 2 + - uid: 9891 components: - type: Transform - pos: 2.5,-0.5 - parent: 21045 - - uid: 21290 + pos: -6.5,-5.5 + parent: 2 + - uid: 9892 components: - type: Transform - pos: 3.5,-0.5 - parent: 21045 - - uid: 21291 + pos: -6.5,-4.5 + parent: 2 + - uid: 9893 components: - type: Transform - pos: -1.5,-0.5 - parent: 21045 - - uid: 21629 + pos: -5.5,-4.5 + parent: 2 + - uid: 9894 components: - type: Transform - pos: 0.5,0.5 - parent: 21045 - - uid: 21630 + pos: -4.5,-4.5 + parent: 2 + - uid: 9895 components: - type: Transform - pos: 0.5,1.5 - parent: 21045 - - uid: 21634 + pos: 0.5,-7.5 + parent: 2 + - uid: 9896 components: - type: Transform - pos: 0.5,2.5 - parent: 21045 - - uid: 21635 + pos: 1.5,-7.5 + parent: 2 + - uid: 9897 components: - type: Transform - pos: 1.5,2.5 - parent: 21045 - - uid: 21636 + pos: 2.5,-7.5 + parent: 2 + - uid: 9898 components: - type: Transform - pos: -0.5,2.5 - parent: 21045 - - uid: 21651 + pos: 3.5,-7.5 + parent: 2 + - uid: 9899 components: - type: Transform - pos: -0.5,3.5 - parent: 21045 - - uid: 21654 + pos: 4.5,-7.5 + parent: 2 + - uid: 9900 components: - type: Transform - pos: -0.5,4.5 - parent: 21045 - - uid: 21673 + pos: 5.5,-7.5 + parent: 2 + - uid: 9901 components: - type: Transform - pos: -0.5,5.5 - parent: 21045 - - uid: 21675 + pos: 5.5,-6.5 + parent: 2 + - uid: 9902 components: - type: Transform - pos: 0.5,5.5 - parent: 21045 - - uid: 21679 + pos: 1.5,-45.5 + parent: 2 + - uid: 9903 components: - type: Transform - pos: 1.5,5.5 - parent: 21045 - - uid: 21680 + pos: 52.5,-89.5 + parent: 2 + - uid: 9904 components: - type: Transform - pos: 1.5,4.5 - parent: 21045 - - uid: 21681 + pos: 90.5,-3.5 + parent: 2 + - uid: 9905 components: - type: Transform - pos: 1.5,3.5 - parent: 21045 - - uid: 21682 + pos: 90.5,-5.5 + parent: 2 + - uid: 9906 components: - type: Transform - pos: 3.5,0.5 - parent: 21045 - - uid: 21683 + pos: 90.5,-6.5 + parent: 2 + - uid: 9907 components: - type: Transform - pos: 3.5,1.5 - parent: 21045 - - uid: 21684 + pos: 90.5,-7.5 + parent: 2 + - uid: 9908 components: - type: Transform - pos: 4.5,1.5 - parent: 21045 - - uid: 21685 + pos: 90.5,-4.5 + parent: 2 + - uid: 9909 components: - type: Transform - pos: 4.5,2.5 - parent: 21045 - - uid: 21686 + pos: 90.5,-8.5 + parent: 2 + - uid: 9910 components: - type: Transform - pos: -2.5,0.5 - parent: 21045 - - uid: 21687 + pos: 89.5,-8.5 + parent: 2 + - uid: 9911 components: - type: Transform - pos: -2.5,1.5 - parent: 21045 - - uid: 21688 + pos: 88.5,-8.5 + parent: 2 + - uid: 9912 components: - type: Transform - pos: -3.5,1.5 - parent: 21045 - - uid: 21689 - components: - - type: Transform - pos: -3.5,2.5 - parent: 21045 - - uid: 26805 - components: - - type: Transform - pos: 74.5,-6.5 - parent: 2 - - uid: 26811 - components: - - type: Transform - pos: 74.5,-7.5 - parent: 2 - - uid: 28760 - components: - - type: Transform - pos: -61.5,-17.5 - parent: 2 - - uid: 29577 - components: - - type: Transform - pos: -6.5,-5.5 - parent: 2 - - uid: 29578 - components: - - type: Transform - pos: -6.5,-4.5 - parent: 2 - - uid: 29579 - components: - - type: Transform - pos: -5.5,-4.5 - parent: 2 - - uid: 29580 - components: - - type: Transform - pos: -4.5,-4.5 - parent: 2 - - uid: 29581 - components: - - type: Transform - pos: 0.5,-7.5 - parent: 2 - - uid: 29582 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 2 - - uid: 29700 - components: - - type: Transform - pos: 2.5,-7.5 - parent: 2 - - uid: 29702 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 2 - - uid: 29731 - components: - - type: Transform - pos: 4.5,-7.5 - parent: 2 - - uid: 29738 - components: - - type: Transform - pos: 5.5,-7.5 - parent: 2 - - uid: 29739 - components: - - type: Transform - pos: 5.5,-6.5 - parent: 2 - - uid: 30475 - components: - - type: Transform - pos: 1.5,-45.5 - parent: 2 - - uid: 30563 - components: - - type: Transform - pos: 52.5,-89.5 - parent: 2 - - uid: 31541 - components: - - type: Transform - pos: 90.5,-3.5 - parent: 2 - - uid: 31544 - components: - - type: Transform - pos: 90.5,-5.5 - parent: 2 - - uid: 31545 - components: - - type: Transform - pos: 90.5,-6.5 - parent: 2 - - uid: 31546 - components: - - type: Transform - pos: 90.5,-7.5 - parent: 2 - - uid: 31547 - components: - - type: Transform - pos: 90.5,-4.5 - parent: 2 - - uid: 31548 - components: - - type: Transform - pos: 90.5,-8.5 - parent: 2 - - uid: 31549 - components: - - type: Transform - pos: 89.5,-8.5 - parent: 2 - - uid: 31550 - components: - - type: Transform - pos: 88.5,-8.5 - parent: 2 - - uid: 31551 - components: - - type: Transform - pos: 87.5,-8.5 - parent: 2 - - uid: 31552 + pos: 87.5,-8.5 + parent: 2 + - uid: 9913 components: - type: Transform pos: 86.5,-8.5 parent: 2 - - uid: 31553 + - uid: 9914 components: - type: Transform pos: 85.5,-8.5 parent: 2 - - uid: 31554 + - uid: 9915 components: - type: Transform pos: 84.5,-8.5 parent: 2 - - uid: 31555 + - uid: 9916 components: - type: Transform pos: 83.5,-8.5 parent: 2 - - uid: 31556 + - uid: 9917 components: - type: Transform pos: 82.5,-8.5 parent: 2 - - uid: 31557 + - uid: 9918 components: - type: Transform pos: 81.5,-8.5 parent: 2 - - uid: 31558 + - uid: 9919 components: - type: Transform pos: 80.5,-8.5 parent: 2 - - uid: 31559 + - uid: 9920 components: - type: Transform pos: 79.5,-8.5 parent: 2 - - uid: 31560 + - uid: 9921 components: - type: Transform pos: 78.5,-8.5 parent: 2 - - uid: 31561 + - uid: 9922 components: - type: Transform pos: 76.5,-8.5 parent: 2 - - uid: 31562 + - uid: 9923 components: - type: Transform pos: 75.5,-8.5 parent: 2 - - uid: 31563 + - uid: 9924 components: - type: Transform pos: 74.5,-8.5 parent: 2 - - uid: 31564 + - uid: 9925 components: - type: Transform pos: 73.5,-8.5 parent: 2 - - uid: 31565 + - uid: 9926 components: - type: Transform pos: 77.5,-8.5 parent: 2 - - uid: 31566 + - uid: 9927 components: - type: Transform pos: 72.5,-8.5 parent: 2 - - uid: 31567 + - uid: 9928 components: - type: Transform pos: 70.5,-8.5 parent: 2 - - uid: 31568 + - uid: 9929 components: - type: Transform pos: 69.5,-8.5 parent: 2 - - uid: 31569 + - uid: 9930 components: - type: Transform pos: 71.5,-8.5 parent: 2 - - uid: 31570 + - uid: 9931 components: - type: Transform pos: 69.5,-9.5 parent: 2 - - uid: 31571 + - uid: 9932 components: - type: Transform pos: 69.5,-10.5 parent: 2 - - uid: 31572 + - uid: 9933 components: - type: Transform pos: 69.5,-11.5 parent: 2 - - uid: 31573 + - uid: 9934 components: - type: Transform pos: 68.5,-11.5 parent: 2 - - uid: 31635 - components: - - type: Transform - pos: -15.5,5.5 - parent: 2 - - uid: 32562 - components: - - type: Transform - pos: -15.5,4.5 - parent: 2 - - uid: 32586 + - uid: 9935 components: - type: Transform pos: 69.5,-13.5 parent: 2 - - uid: 32738 + - uid: 9936 components: - type: Transform pos: 69.5,-14.5 parent: 2 - - uid: 33926 + - uid: 9937 components: - type: Transform pos: -8.5,-46.5 parent: 2 - - uid: 33927 + - uid: 9938 components: - type: Transform pos: -7.5,-46.5 parent: 2 - - uid: 33928 + - uid: 9939 components: - type: Transform pos: -6.5,-46.5 parent: 2 - - uid: 33929 + - uid: 9940 components: - type: Transform pos: -3.5,-46.5 parent: 2 - - uid: 33933 + - uid: 9941 components: - type: Transform pos: -1.5,-47.5 parent: 2 - - uid: 33934 + - uid: 9942 components: - type: Transform pos: -1.5,-45.5 parent: 2 - - uid: 33936 + - uid: 9943 components: - type: Transform pos: -9.5,-46.5 parent: 2 - - uid: 33937 + - uid: 9944 components: - type: Transform pos: -9.5,-47.5 parent: 2 - - uid: 33939 + - uid: 9945 components: - type: Transform pos: -9.5,-48.5 parent: 2 - - uid: 33940 + - uid: 9946 components: - type: Transform pos: -9.5,-49.5 parent: 2 - - uid: 33944 + - uid: 9947 components: - type: Transform pos: -3.5,-45.5 parent: 2 - - uid: 33945 + - uid: 9948 components: - type: Transform pos: -1.5,-48.5 parent: 2 - - uid: 33946 + - uid: 9949 components: - type: Transform pos: -1.5,-49.5 parent: 2 - - uid: 33947 + - uid: 9950 components: - type: Transform pos: -2.5,-49.5 parent: 2 - - uid: 33949 + - uid: 9951 components: - type: Transform pos: -4.5,-49.5 parent: 2 - - uid: 33950 + - uid: 9952 components: - type: Transform pos: -5.5,-49.5 parent: 2 - - uid: 33951 + - uid: 9953 components: - type: Transform pos: -6.5,-49.5 parent: 2 - - uid: 33952 + - uid: 9954 components: - type: Transform pos: -7.5,-49.5 parent: 2 - - uid: 33953 + - uid: 9955 components: - type: Transform pos: -8.5,-49.5 parent: 2 - - uid: 33954 + - uid: 9956 components: - type: Transform pos: -1.5,-46.5 parent: 2 - - uid: 33959 + - uid: 9957 components: - type: Transform pos: 0.5,-45.5 parent: 2 - - uid: 33960 + - uid: 9958 components: - type: Transform pos: -0.5,-45.5 parent: 2 - - uid: 33961 + - uid: 9959 components: - type: Transform pos: 5.5,-44.5 parent: 2 - - uid: 33962 + - uid: 9960 components: - type: Transform pos: 5.5,-43.5 parent: 2 - - uid: 33963 + - uid: 9961 components: - type: Transform pos: 5.5,-42.5 parent: 2 - - uid: 33964 + - uid: 9962 components: - type: Transform pos: 5.5,-41.5 parent: 2 - - uid: 33965 + - uid: 9963 components: - type: Transform pos: 5.5,-40.5 parent: 2 - - uid: 33966 + - uid: 9964 components: - type: Transform pos: 6.5,-40.5 parent: 2 - - uid: 33967 + - uid: 9965 components: - type: Transform pos: 7.5,-40.5 parent: 2 - - uid: 33968 + - uid: 9966 components: - type: Transform pos: 8.5,-40.5 parent: 2 - - uid: 33969 + - uid: 9967 components: - type: Transform pos: 9.5,-40.5 parent: 2 - - uid: 33970 + - uid: 9968 components: - type: Transform pos: 9.5,-41.5 parent: 2 - - uid: 33971 + - uid: 9969 components: - type: Transform pos: 10.5,-41.5 parent: 2 - - uid: 33972 + - uid: 9970 components: - type: Transform pos: 11.5,-41.5 parent: 2 - - uid: 33973 + - uid: 9971 components: - type: Transform pos: 12.5,-41.5 parent: 2 - - uid: 33974 + - uid: 9972 components: - type: Transform pos: 13.5,-41.5 parent: 2 - - uid: 33975 + - uid: 9973 components: - type: Transform pos: 14.5,-41.5 parent: 2 - - uid: 33976 + - uid: 9974 components: - type: Transform pos: 15.5,-41.5 parent: 2 - - uid: 33977 + - uid: 9975 components: - type: Transform pos: 16.5,-41.5 parent: 2 - - uid: 33978 + - uid: 9976 components: - type: Transform pos: 17.5,-41.5 parent: 2 - - uid: 33979 + - uid: 9977 components: - type: Transform pos: 18.5,-41.5 parent: 2 - - uid: 33980 + - uid: 9978 components: - type: Transform pos: 18.5,-42.5 parent: 2 - - uid: 33981 + - uid: 9979 components: - type: Transform pos: 18.5,-43.5 parent: 2 - - uid: 33982 + - uid: 9980 components: - type: Transform pos: 18.5,-44.5 parent: 2 - - uid: 33983 + - uid: 9981 components: - type: Transform pos: 18.5,-45.5 parent: 2 - - uid: 33984 + - uid: 9982 components: - type: Transform pos: 18.5,-46.5 parent: 2 - - uid: 33985 + - uid: 9983 components: - type: Transform pos: 17.5,-46.5 parent: 2 - - uid: 33986 + - uid: 9984 components: - type: Transform pos: 16.5,-46.5 parent: 2 - - uid: 33987 + - uid: 9985 components: - type: Transform pos: 15.5,-46.5 parent: 2 - - uid: 33988 + - uid: 9986 components: - type: Transform pos: 14.5,-46.5 parent: 2 - - uid: 33989 + - uid: 9987 components: - type: Transform pos: 14.5,-47.5 parent: 2 - - uid: 33990 + - uid: 9988 components: - type: Transform pos: 13.5,-47.5 parent: 2 - - uid: 33991 + - uid: 9989 components: - type: Transform pos: 12.5,-47.5 parent: 2 - - uid: 33992 + - uid: 9990 components: - type: Transform pos: 11.5,-47.5 parent: 2 - - uid: 33993 + - uid: 9991 components: - type: Transform pos: 10.5,-47.5 parent: 2 - - uid: 33994 + - uid: 9992 components: - type: Transform pos: 9.5,-47.5 parent: 2 - - uid: 33995 + - uid: 9993 components: - type: Transform pos: 8.5,-47.5 parent: 2 - - uid: 33996 + - uid: 9994 components: - type: Transform pos: 7.5,-47.5 parent: 2 - - uid: 33997 + - uid: 9995 components: - type: Transform pos: 6.5,-47.5 parent: 2 - - uid: 33998 + - uid: 9996 components: - type: Transform pos: 6.5,-46.5 parent: 2 - - uid: 33999 + - uid: 9997 components: - type: Transform pos: 5.5,-39.5 parent: 2 - - uid: 34000 + - uid: 9998 components: - type: Transform pos: 5.5,-38.5 parent: 2 - - uid: 34001 + - uid: 9999 components: - type: Transform pos: 5.5,-37.5 parent: 2 - - uid: 34002 + - uid: 10000 components: - type: Transform pos: 5.5,-36.5 parent: 2 - - uid: 34003 + - uid: 10001 components: - type: Transform pos: 5.5,-35.5 parent: 2 - - uid: 34004 + - uid: 10002 components: - type: Transform pos: 5.5,-34.5 parent: 2 - - uid: 34005 + - uid: 10003 components: - type: Transform pos: 5.5,-33.5 parent: 2 - - uid: 34006 + - uid: 10004 components: - type: Transform pos: 5.5,-32.5 parent: 2 - - uid: 34007 + - uid: 10005 components: - type: Transform pos: 5.5,-31.5 parent: 2 - - uid: 34008 + - uid: 10006 components: - type: Transform pos: 5.5,-30.5 parent: 2 - - uid: 34009 + - uid: 10007 components: - type: Transform pos: 5.5,-29.5 parent: 2 - - uid: 34010 + - uid: 10008 components: - type: Transform pos: 5.5,-28.5 parent: 2 - - uid: 34011 + - uid: 10009 components: - type: Transform pos: 5.5,-27.5 parent: 2 - - uid: 34012 + - uid: 10010 components: - type: Transform pos: 5.5,-26.5 parent: 2 - - uid: 34013 + - uid: 10011 components: - type: Transform pos: 5.5,-25.5 parent: 2 - - uid: 34014 + - uid: 10012 components: - type: Transform pos: 5.5,-24.5 parent: 2 - - uid: 34015 + - uid: 10013 components: - type: Transform pos: 5.5,-23.5 parent: 2 - - uid: 34016 + - uid: 10014 components: - type: Transform pos: 5.5,-22.5 parent: 2 - - uid: 34017 + - uid: 10015 components: - type: Transform pos: 5.5,-21.5 parent: 2 - - uid: 34018 + - uid: 10016 components: - type: Transform pos: 5.5,-20.5 parent: 2 - - uid: 34019 + - uid: 10017 components: - type: Transform pos: 5.5,-19.5 parent: 2 - - uid: 34020 + - uid: 10018 components: - type: Transform pos: 4.5,-19.5 parent: 2 - - uid: 34021 + - uid: 10019 components: - type: Transform pos: 3.5,-19.5 parent: 2 - - uid: 34022 + - uid: 10020 components: - type: Transform pos: 2.5,-19.5 parent: 2 - - uid: 34023 + - uid: 10021 components: - type: Transform pos: 1.5,-19.5 parent: 2 - - uid: 34024 + - uid: 10022 components: - type: Transform pos: 0.5,-19.5 parent: 2 - - uid: 34025 + - uid: 10023 components: - type: Transform pos: -0.5,-19.5 parent: 2 - - uid: 34026 + - uid: 10024 components: - type: Transform pos: -1.5,-19.5 parent: 2 - - uid: 34027 + - uid: 10025 components: - type: Transform pos: -2.5,-19.5 parent: 2 - - uid: 34028 + - uid: 10026 components: - type: Transform pos: -3.5,-19.5 parent: 2 - - uid: 34029 + - uid: 10027 components: - type: Transform pos: -4.5,-19.5 parent: 2 - - uid: 34030 + - uid: 10028 components: - type: Transform pos: -4.5,-18.5 parent: 2 - - uid: 34031 + - uid: 10029 components: - type: Transform pos: -4.5,-17.5 parent: 2 - - uid: 34032 + - uid: 10030 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 34033 + - uid: 10031 components: - type: Transform pos: -6.5,-17.5 parent: 2 - - uid: 34034 + - uid: 10032 components: - type: Transform pos: -7.5,-17.5 parent: 2 - - uid: 34035 + - uid: 10033 components: - type: Transform pos: -8.5,-17.5 parent: 2 - - uid: 34036 + - uid: 10034 components: - type: Transform pos: -9.5,-17.5 parent: 2 - - uid: 34037 + - uid: 10035 components: - type: Transform pos: -10.5,-17.5 parent: 2 - - uid: 34038 + - uid: 10036 components: - type: Transform pos: -11.5,-17.5 parent: 2 - - uid: 34039 + - uid: 10037 components: - type: Transform pos: -12.5,-17.5 parent: 2 - - uid: 34040 + - uid: 10038 components: - type: Transform pos: -13.5,-17.5 parent: 2 - - uid: 34041 + - uid: 10039 components: - type: Transform pos: -14.5,-17.5 parent: 2 - - uid: 34042 + - uid: 10040 components: - type: Transform pos: -15.5,-17.5 parent: 2 - - uid: 34043 + - uid: 10041 components: - type: Transform pos: -15.5,-18.5 parent: 2 - - uid: 34044 + - uid: 10042 components: - type: Transform pos: -15.5,-19.5 parent: 2 - - uid: 34045 + - uid: 10043 components: - type: Transform pos: -15.5,-20.5 parent: 2 - - uid: 34046 + - uid: 10044 components: - type: Transform pos: -15.5,-21.5 parent: 2 - - uid: 34047 + - uid: 10045 components: - type: Transform pos: -15.5,-22.5 parent: 2 - - uid: 34048 + - uid: 10046 components: - type: Transform pos: -15.5,-23.5 parent: 2 - - uid: 34049 + - uid: 10047 components: - type: Transform pos: -15.5,-24.5 parent: 2 - - uid: 34050 + - uid: 10048 components: - type: Transform pos: -14.5,-24.5 parent: 2 - - uid: 34051 + - uid: 10049 components: - type: Transform pos: -13.5,-24.5 parent: 2 - - uid: 34052 + - uid: 10050 components: - type: Transform pos: -12.5,-24.5 parent: 2 - - uid: 34053 + - uid: 10051 components: - type: Transform pos: -11.5,-24.5 parent: 2 - - uid: 34054 + - uid: 10052 components: - type: Transform pos: -11.5,-23.5 parent: 2 - - uid: 34055 + - uid: 10053 components: - type: Transform pos: -11.5,-22.5 parent: 2 - - uid: 34056 + - uid: 10054 components: - type: Transform pos: -11.5,-21.5 parent: 2 - - uid: 34057 + - uid: 10055 components: - type: Transform pos: 6.5,-32.5 parent: 2 - - uid: 34058 + - uid: 10056 components: - type: Transform pos: 7.5,-32.5 parent: 2 - - uid: 34059 + - uid: 10057 components: - type: Transform pos: 8.5,-32.5 parent: 2 - - uid: 34060 + - uid: 10058 components: - type: Transform pos: 9.5,-32.5 parent: 2 - - uid: 34061 + - uid: 10059 components: - type: Transform pos: 10.5,-32.5 parent: 2 - - uid: 34062 + - uid: 10060 components: - type: Transform pos: 11.5,-32.5 parent: 2 - - uid: 34063 + - uid: 10061 components: - type: Transform pos: 12.5,-32.5 parent: 2 - - uid: 34064 + - uid: 10062 components: - type: Transform pos: 13.5,-32.5 parent: 2 - - uid: 34065 + - uid: 10063 components: - type: Transform pos: 14.5,-32.5 parent: 2 - - uid: 34066 + - uid: 10064 components: - type: Transform pos: 15.5,-32.5 parent: 2 - - uid: 34067 + - uid: 10065 components: - type: Transform pos: 15.5,-31.5 parent: 2 - - uid: 34068 + - uid: 10066 components: - type: Transform pos: 15.5,-30.5 parent: 2 - - uid: 34069 + - uid: 10067 components: - type: Transform pos: 15.5,-29.5 parent: 2 - - uid: 34070 + - uid: 10068 components: - type: Transform pos: 15.5,-28.5 parent: 2 - - uid: 34071 + - uid: 10069 components: - type: Transform pos: 14.5,-28.5 parent: 2 - - uid: 34072 + - uid: 10070 components: - type: Transform pos: 13.5,-28.5 parent: 2 - - uid: 34073 + - uid: 10071 components: - type: Transform pos: 12.5,-28.5 parent: 2 - - uid: 34074 + - uid: 10072 components: - type: Transform pos: 12.5,-29.5 parent: 2 - - uid: 34269 + - uid: 10073 components: - type: Transform pos: -4.5,-47.5 parent: 2 - - uid: 34270 + - uid: 10074 components: - type: Transform pos: -5.5,-47.5 parent: 2 - - uid: 34271 + - uid: 10075 components: - type: Transform pos: -3.5,-47.5 parent: 2 - - uid: 34272 + - uid: 10076 components: - type: Transform pos: -5.5,-46.5 parent: 2 - - uid: 34331 + - uid: 10077 components: - type: Transform pos: -4.5,-50.5 parent: 2 - - uid: 34332 + - uid: 10078 components: - type: Transform pos: -4.5,-51.5 parent: 2 - - uid: 34333 + - uid: 10079 components: - type: Transform pos: -4.5,-52.5 parent: 2 - - uid: 34334 + - uid: 10080 components: - type: Transform pos: -3.5,-52.5 parent: 2 - - uid: 34335 + - uid: 10081 components: - type: Transform pos: -2.5,-52.5 parent: 2 - - uid: 34336 + - uid: 10082 components: - type: Transform pos: -1.5,-52.5 parent: 2 - - uid: 34337 + - uid: 10083 components: - type: Transform pos: -0.5,-52.5 parent: 2 - - uid: 34338 + - uid: 10084 components: - type: Transform pos: -0.5,-51.5 parent: 2 - - uid: 34339 + - uid: 10085 components: - type: Transform pos: -0.5,-50.5 parent: 2 - - uid: 34340 + - uid: 10086 components: - type: Transform pos: -0.5,-49.5 parent: 2 - - uid: 35795 + - uid: 10087 components: - type: Transform pos: -61.5,-16.5 parent: 2 - - uid: 35905 + - uid: 10088 components: - type: Transform pos: 67.5,-12.5 parent: 2 - - uid: 35972 + - uid: 10089 components: - type: Transform pos: 69.5,-12.5 parent: 2 - - uid: 37710 + - uid: 10090 components: - type: Transform pos: 2.5,-45.5 parent: 2 - - uid: 37711 + - uid: 10091 components: - type: Transform pos: 3.5,-45.5 parent: 2 - - uid: 37712 + - uid: 10092 components: - type: Transform pos: 4.5,-45.5 parent: 2 - - uid: 37717 + - uid: 10093 components: - type: Transform pos: 5.5,-45.5 parent: 2 - - uid: 38010 + - uid: 10094 + components: + - type: Transform + pos: 59.5,-54.5 + parent: 2 + - uid: 10095 + components: + - type: Transform + pos: 56.5,-54.5 + parent: 2 + - uid: 10096 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - uid: 10097 + components: + - type: Transform + pos: 42.5,12.5 + parent: 2 + - uid: 10098 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 10099 + components: + - type: Transform + pos: 43.5,13.5 + parent: 2 + - uid: 10100 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 10101 + components: + - type: Transform + pos: 44.5,15.5 + parent: 2 + - uid: 10102 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 + - uid: 40691 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 40666 + - uid: 40692 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 40666 + - uid: 40693 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 40666 + - uid: 40694 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 40666 + - uid: 40695 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 40666 + - uid: 40696 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 40666 + - uid: 40697 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 40666 + - uid: 40698 + components: + - type: Transform + pos: 0.5,0.5 + parent: 40666 + - uid: 40699 + components: + - type: Transform + pos: 0.5,1.5 + parent: 40666 + - uid: 40700 + components: + - type: Transform + pos: 0.5,2.5 + parent: 40666 + - uid: 40701 + components: + - type: Transform + pos: 1.5,2.5 + parent: 40666 + - uid: 40702 + components: + - type: Transform + pos: -0.5,2.5 + parent: 40666 + - uid: 40703 + components: + - type: Transform + pos: -0.5,3.5 + parent: 40666 + - uid: 40704 + components: + - type: Transform + pos: -0.5,4.5 + parent: 40666 + - uid: 40705 + components: + - type: Transform + pos: -0.5,5.5 + parent: 40666 + - uid: 40706 + components: + - type: Transform + pos: 0.5,5.5 + parent: 40666 + - uid: 40707 + components: + - type: Transform + pos: 1.5,5.5 + parent: 40666 + - uid: 40708 + components: + - type: Transform + pos: 1.5,4.5 + parent: 40666 + - uid: 40709 + components: + - type: Transform + pos: 1.5,3.5 + parent: 40666 + - uid: 40710 + components: + - type: Transform + pos: 3.5,0.5 + parent: 40666 + - uid: 40711 + components: + - type: Transform + pos: 3.5,1.5 + parent: 40666 + - uid: 40712 + components: + - type: Transform + pos: 4.5,1.5 + parent: 40666 + - uid: 40713 + components: + - type: Transform + pos: 4.5,2.5 + parent: 40666 + - uid: 40714 + components: + - type: Transform + pos: -2.5,0.5 + parent: 40666 + - uid: 40715 + components: + - type: Transform + pos: -2.5,1.5 + parent: 40666 + - uid: 40716 + components: + - type: Transform + pos: -3.5,1.5 + parent: 40666 + - uid: 40717 + components: + - type: Transform + pos: -3.5,2.5 + parent: 40666 + - uid: 40951 components: - type: Transform pos: 4.5,-3.5 - parent: 37887 - - uid: 38011 + parent: 40828 + - uid: 40952 components: - type: Transform pos: -6.5,-0.5 - parent: 37887 - - uid: 38012 + parent: 40828 + - uid: 40953 components: - type: Transform pos: -6.5,-2.5 - parent: 37887 - - uid: 38013 + parent: 40828 + - uid: 40954 components: - type: Transform pos: 7.5,-1.5 - parent: 37887 - - uid: 38014 + parent: 40828 + - uid: 40955 components: - type: Transform pos: 7.5,-0.5 - parent: 37887 - - uid: 38015 + parent: 40828 + - uid: 40956 components: - type: Transform pos: -6.5,-1.5 - parent: 37887 - - uid: 38016 + parent: 40828 + - uid: 40957 components: - type: Transform pos: 2.5,-11.5 - parent: 37887 - - uid: 38017 + parent: 40828 + - uid: 40958 components: - type: Transform pos: 2.5,-12.5 - parent: 37887 - - uid: 38018 + parent: 40828 + - uid: 40959 components: - type: Transform pos: 1.5,-12.5 - parent: 37887 - - uid: 38019 + parent: 40828 + - uid: 40960 components: - type: Transform pos: 0.5,-12.5 - parent: 37887 - - uid: 38020 + parent: 40828 + - uid: 40961 components: - type: Transform pos: -0.5,-11.5 - parent: 37887 - - uid: 38021 + parent: 40828 + - uid: 40962 components: - type: Transform pos: -0.5,-12.5 - parent: 37887 - - uid: 38022 + parent: 40828 + - uid: 40963 components: - type: Transform pos: -0.5,-13.5 - parent: 37887 - - uid: 38023 + parent: 40828 + - uid: 40964 components: - type: Transform pos: -0.5,-14.5 - parent: 37887 - - uid: 38024 + parent: 40828 + - uid: 40965 components: - type: Transform pos: 0.5,-14.5 - parent: 37887 - - uid: 38025 + parent: 40828 + - uid: 40966 components: - type: Transform pos: 1.5,-14.5 - parent: 37887 - - uid: 38026 + parent: 40828 + - uid: 40967 components: - type: Transform pos: 2.5,-14.5 - parent: 37887 - - uid: 38027 + parent: 40828 + - uid: 40968 components: - type: Transform pos: 3.5,-14.5 - parent: 37887 - - uid: 38028 + parent: 40828 + - uid: 40969 components: - type: Transform pos: 4.5,-14.5 - parent: 37887 - - uid: 38029 + parent: 40828 + - uid: 40970 components: - type: Transform pos: 5.5,-14.5 - parent: 37887 - - uid: 38030 + parent: 40828 + - uid: 40971 components: - type: Transform pos: 6.5,-14.5 - parent: 37887 - - uid: 38031 + parent: 40828 + - uid: 40972 components: - type: Transform pos: 7.5,-14.5 - parent: 37887 - - uid: 38032 + parent: 40828 + - uid: 40973 components: - type: Transform pos: 4.5,-15.5 - parent: 37887 - - uid: 38033 + parent: 40828 + - uid: 40974 components: - type: Transform pos: 5.5,-15.5 - parent: 37887 - - uid: 38034 + parent: 40828 + - uid: 40975 components: - type: Transform pos: 6.5,-15.5 - parent: 37887 - - uid: 38035 + parent: 40828 + - uid: 40976 components: - type: Transform pos: 7.5,-13.5 - parent: 37887 - - uid: 38036 + parent: 40828 + - uid: 40977 components: - type: Transform pos: 7.5,-12.5 - parent: 37887 - - uid: 38037 + parent: 40828 + - uid: 40978 components: - type: Transform pos: 7.5,-11.5 - parent: 37887 - - uid: 38038 + parent: 40828 + - uid: 40979 components: - type: Transform pos: 7.5,-10.5 - parent: 37887 - - uid: 38039 + parent: 40828 + - uid: 40980 components: - type: Transform pos: 7.5,-9.5 - parent: 37887 - - uid: 38040 + parent: 40828 + - uid: 40981 components: - type: Transform pos: 7.5,-8.5 - parent: 37887 - - uid: 38041 + parent: 40828 + - uid: 40982 components: - type: Transform pos: 7.5,-7.5 - parent: 37887 - - uid: 38042 + parent: 40828 + - uid: 40983 components: - type: Transform pos: 7.5,-6.5 - parent: 37887 - - uid: 38043 + parent: 40828 + - uid: 40984 components: - type: Transform pos: 7.5,-5.5 - parent: 37887 - - uid: 38044 + parent: 40828 + - uid: 40985 components: - type: Transform pos: 7.5,-4.5 - parent: 37887 - - uid: 38045 + parent: 40828 + - uid: 40986 components: - type: Transform pos: 8.5,-4.5 - parent: 37887 - - uid: 38046 + parent: 40828 + - uid: 40987 components: - type: Transform pos: 8.5,-5.5 - parent: 37887 - - uid: 38047 + parent: 40828 + - uid: 40988 components: - type: Transform pos: 8.5,-6.5 - parent: 37887 - - uid: 38048 + parent: 40828 + - uid: 40989 components: - type: Transform pos: 8.5,-7.5 - parent: 37887 - - uid: 38049 + parent: 40828 + - uid: 40990 components: - type: Transform pos: 8.5,-10.5 - parent: 37887 - - uid: 38050 + parent: 40828 + - uid: 40991 components: - type: Transform pos: 8.5,-11.5 - parent: 37887 - - uid: 38051 + parent: 40828 + - uid: 40992 components: - type: Transform pos: 8.5,-12.5 - parent: 37887 - - uid: 38052 + parent: 40828 + - uid: 40993 components: - type: Transform pos: 8.5,-13.5 - parent: 37887 - - uid: 38053 + parent: 40828 + - uid: 40994 components: - type: Transform pos: 7.5,-3.5 - parent: 37887 - - uid: 38054 + parent: 40828 + - uid: 40995 components: - type: Transform pos: 6.5,-3.5 - parent: 37887 - - uid: 38055 + parent: 40828 + - uid: 40996 components: - type: Transform pos: 5.5,-3.5 - parent: 37887 - - uid: 38056 + parent: 40828 + - uid: 40997 components: - type: Transform pos: 6.5,-1.5 - parent: 37887 - - uid: 38057 + parent: 40828 + - uid: 40998 components: - type: Transform pos: 6.5,-0.5 - parent: 37887 - - uid: 38058 + parent: 40828 + - uid: 40999 components: - type: Transform pos: 7.5,-2.5 - parent: 37887 - - uid: 38059 + parent: 40828 + - uid: 41000 components: - type: Transform pos: 6.5,-2.5 - parent: 37887 - - uid: 38060 + parent: 40828 + - uid: 41001 components: - type: Transform pos: 3.5,-3.5 - parent: 37887 - - uid: 38061 + parent: 40828 + - uid: 41002 components: - type: Transform pos: 2.5,-3.5 - parent: 37887 - - uid: 38062 + parent: 40828 + - uid: 41003 components: - type: Transform pos: 1.5,-3.5 - parent: 37887 - - uid: 38063 + parent: 40828 + - uid: 41004 components: - type: Transform pos: 0.5,-3.5 - parent: 37887 - - uid: 38064 + parent: 40828 + - uid: 41005 components: - type: Transform pos: -0.5,-3.5 - parent: 37887 - - uid: 38065 + parent: 40828 + - uid: 41006 components: - type: Transform pos: -1.5,-3.5 - parent: 37887 - - uid: 38066 + parent: 40828 + - uid: 41007 components: - type: Transform pos: -2.5,-3.5 - parent: 37887 - - uid: 38067 + parent: 40828 + - uid: 41008 components: - type: Transform pos: -3.5,-3.5 - parent: 37887 - - uid: 38068 + parent: 40828 + - uid: 41009 components: - type: Transform pos: -4.5,-3.5 - parent: 37887 - - uid: 38069 + parent: 40828 + - uid: 41010 components: - type: Transform pos: -5.5,-3.5 - parent: 37887 - - uid: 38070 + parent: 40828 + - uid: 41011 components: - type: Transform pos: -6.5,-3.5 - parent: 37887 - - uid: 38071 + parent: 40828 + - uid: 41012 components: - type: Transform pos: -6.5,-4.5 - parent: 37887 - - uid: 38072 + parent: 40828 + - uid: 41013 components: - type: Transform pos: -6.5,-5.5 - parent: 37887 - - uid: 38073 + parent: 40828 + - uid: 41014 components: - type: Transform pos: -6.5,-6.5 - parent: 37887 - - uid: 38074 + parent: 40828 + - uid: 41015 components: - type: Transform pos: -6.5,-7.5 - parent: 37887 - - uid: 38075 + parent: 40828 + - uid: 41016 components: - type: Transform pos: -6.5,-8.5 - parent: 37887 - - uid: 38076 + parent: 40828 + - uid: 41017 components: - type: Transform pos: -6.5,-9.5 - parent: 37887 - - uid: 38077 + parent: 40828 + - uid: 41018 components: - type: Transform pos: -6.5,-10.5 - parent: 37887 - - uid: 38078 + parent: 40828 + - uid: 41019 components: - type: Transform pos: -6.5,-11.5 - parent: 37887 - - uid: 38079 + parent: 40828 + - uid: 41020 components: - type: Transform pos: -6.5,-12.5 - parent: 37887 - - uid: 38080 + parent: 40828 + - uid: 41021 components: - type: Transform pos: -6.5,-13.5 - parent: 37887 - - uid: 38081 + parent: 40828 + - uid: 41022 components: - type: Transform pos: -6.5,-14.5 - parent: 37887 - - uid: 38082 + parent: 40828 + - uid: 41023 components: - type: Transform pos: -5.5,-14.5 - parent: 37887 - - uid: 38083 + parent: 40828 + - uid: 41024 components: - type: Transform pos: -4.5,-14.5 - parent: 37887 - - uid: 38084 + parent: 40828 + - uid: 41025 components: - type: Transform pos: -3.5,-14.5 - parent: 37887 - - uid: 38085 + parent: 40828 + - uid: 41026 components: - type: Transform pos: -2.5,-14.5 - parent: 37887 - - uid: 38086 + parent: 40828 + - uid: 41027 components: - type: Transform pos: -1.5,-14.5 - parent: 37887 - - uid: 38087 + parent: 40828 + - uid: 41028 components: - type: Transform pos: -3.5,-15.5 - parent: 37887 - - uid: 38088 + parent: 40828 + - uid: 41029 components: - type: Transform pos: -4.5,-15.5 - parent: 37887 - - uid: 38089 + parent: 40828 + - uid: 41030 components: - type: Transform pos: -5.5,-15.5 - parent: 37887 - - uid: 38090 + parent: 40828 + - uid: 41031 components: - type: Transform pos: -7.5,-13.5 - parent: 37887 - - uid: 38091 + parent: 40828 + - uid: 41032 components: - type: Transform pos: -7.5,-12.5 - parent: 37887 - - uid: 38092 + parent: 40828 + - uid: 41033 components: - type: Transform pos: -7.5,-11.5 - parent: 37887 - - uid: 38093 + parent: 40828 + - uid: 41034 components: - type: Transform pos: -7.5,-10.5 - parent: 37887 - - uid: 38094 + parent: 40828 + - uid: 41035 components: - type: Transform pos: -7.5,-7.5 - parent: 37887 - - uid: 38095 + parent: 40828 + - uid: 41036 components: - type: Transform pos: -7.5,-6.5 - parent: 37887 - - uid: 38096 + parent: 40828 + - uid: 41037 components: - type: Transform pos: -7.5,-5.5 - parent: 37887 - - uid: 38097 + parent: 40828 + - uid: 41038 components: - type: Transform pos: -7.5,-4.5 - parent: 37887 - - uid: 38098 + parent: 40828 + - uid: 41039 components: - type: Transform pos: -5.5,-0.5 - parent: 37887 - - uid: 38099 + parent: 40828 + - uid: 41040 components: - type: Transform pos: -5.5,-1.5 - parent: 37887 - - uid: 38100 + parent: 40828 + - uid: 41041 components: - type: Transform pos: -5.5,-2.5 - parent: 37887 - - uid: 38101 + parent: 40828 + - uid: 41042 components: - type: Transform pos: -1.5,-11.5 - parent: 37887 - - uid: 38801 + parent: 40828 + - uid: 41747 components: - type: Transform pos: 6.5,-7.5 - parent: 38722 - - uid: 38802 + parent: 41669 + - uid: 41748 components: - type: Transform pos: 4.5,-7.5 - parent: 38722 - - uid: 38803 + parent: 41669 + - uid: 41749 components: - type: Transform pos: 5.5,-9.5 - parent: 38722 - - uid: 38804 + parent: 41669 + - uid: 41750 components: - type: Transform pos: 2.5,-7.5 - parent: 38722 - - uid: 38805 + parent: 41669 + - uid: 41751 components: - type: Transform pos: 3.5,-7.5 - parent: 38722 - - uid: 38806 + parent: 41669 + - uid: 41752 components: - type: Transform pos: 5.5,-8.5 - parent: 38722 - - uid: 38807 + parent: 41669 + - uid: 41753 components: - type: Transform pos: 5.5,-7.5 - parent: 38722 - - uid: 38808 + parent: 41669 + - uid: 41754 components: - type: Transform pos: 7.5,-7.5 - parent: 38722 - - uid: 38809 + parent: 41669 + - uid: 41755 components: - type: Transform pos: 1.5,-7.5 - parent: 38722 - - uid: 40006 - components: - - type: Transform - pos: 59.5,-54.5 - parent: 2 - - uid: 40007 - components: - - type: Transform - pos: 56.5,-54.5 - parent: 2 - - uid: 40644 - components: - - type: Transform - pos: 41.5,12.5 - parent: 2 - - uid: 40646 - components: - - type: Transform - pos: 42.5,12.5 - parent: 2 - - uid: 40647 - components: - - type: Transform - pos: 43.5,12.5 - parent: 2 - - uid: 40648 - components: - - type: Transform - pos: 43.5,13.5 - parent: 2 - - uid: 40651 - components: - - type: Transform - pos: 43.5,14.5 - parent: 2 - - uid: 40653 - components: - - type: Transform - pos: 44.5,15.5 - parent: 2 - - uid: 40654 - components: - - type: Transform - pos: 44.5,14.5 - parent: 2 + parent: 41669 - proto: CableHVStack entities: - - uid: 9367 + - uid: 10103 components: - type: Transform pos: 63.523483,-69.58788 parent: 2 - - uid: 9368 + - uid: 10104 components: - type: Transform pos: 40.435307,-35.304787 parent: 2 - - uid: 9370 + - uid: 10105 components: - type: Transform pos: 108.49322,-22.496582 parent: 2 - - uid: 9371 + - uid: 10106 components: - type: Transform pos: -68.57269,-15.354508 parent: 2 - - uid: 9372 + - uid: 10107 components: - type: Transform pos: -68.57269,-15.354508 parent: 2 - - uid: 9373 + - uid: 10108 components: - type: Transform pos: 44.55705,-62.383957 parent: 2 - - uid: 9374 + - uid: 10109 components: - type: Transform pos: 52.871582,-84.37189 parent: 2 - - uid: 9375 + - uid: 10110 components: - type: Transform pos: 49.548855,-79.334694 parent: 2 - - uid: 9376 + - uid: 10111 components: - type: Transform pos: 48.565575,-60.509502 parent: 2 - - uid: 9377 + - uid: 10112 components: - type: Transform pos: -70.5,9.5 parent: 2 - - uid: 9378 + - uid: 10113 components: - type: Transform pos: -56.5,-87.5 parent: 2 - - uid: 38102 + - uid: 41043 components: - type: Transform pos: -1.4234314,-7.2307434 - parent: 37887 + parent: 40828 - proto: CableMV entities: - - uid: 57 + - uid: 10114 components: - type: Transform pos: 52.5,-18.5 parent: 2 - - uid: 158 + - uid: 10115 components: - type: Transform pos: 43.5,-0.5 parent: 2 - - uid: 176 + - uid: 10116 components: - type: Transform pos: 59.5,-18.5 parent: 2 - - uid: 249 + - uid: 10117 components: - type: Transform pos: 44.5,-7.5 parent: 2 - - uid: 250 + - uid: 10118 components: - type: Transform pos: 44.5,-8.5 parent: 2 - - uid: 252 + - uid: 10119 components: - type: Transform pos: 63.5,-6.5 parent: 2 - - uid: 272 + - uid: 10120 components: - type: Transform pos: 44.5,-13.5 parent: 2 - - uid: 279 + - uid: 10121 components: - type: Transform pos: 44.5,-14.5 parent: 2 - - uid: 736 + - uid: 10122 components: - type: Transform pos: 60.5,-18.5 parent: 2 - - uid: 1574 + - uid: 10123 components: - type: Transform pos: -62.5,-15.5 parent: 2 - - uid: 1879 + - uid: 10124 components: - type: Transform pos: 44.5,-0.5 parent: 2 - - uid: 1886 + - uid: 10125 components: - type: Transform pos: 55.5,-22.5 parent: 2 - - uid: 1892 + - uid: 10126 components: - type: Transform pos: 56.5,-18.5 parent: 2 - - uid: 2002 + - uid: 10127 components: - type: Transform pos: -61.5,-17.5 parent: 2 - - uid: 2628 + - uid: 10128 components: - type: Transform pos: 59.5,12.5 parent: 2 - - uid: 2669 + - uid: 10129 components: - type: Transform pos: 47.5,-16.5 parent: 2 - - uid: 2718 + - uid: 10130 components: - type: Transform pos: 44.5,19.5 parent: 2 - - uid: 2798 + - uid: 10131 components: - type: Transform pos: 47.5,-18.5 parent: 2 - - uid: 3100 + - uid: 10132 components: - type: Transform pos: 44.5,-2.5 parent: 2 - - uid: 5352 + - uid: 10133 components: - type: Transform pos: -54.5,-24.5 parent: 2 - - uid: 6022 + - uid: 10134 components: - type: Transform pos: 64.5,-11.5 parent: 2 - - uid: 6027 + - uid: 10135 components: - type: Transform pos: 65.5,-11.5 parent: 2 - - uid: 6028 + - uid: 10136 components: - type: Transform pos: 62.5,-11.5 parent: 2 - - uid: 6029 + - uid: 10137 components: - type: Transform pos: 63.5,-11.5 parent: 2 - - uid: 6030 + - uid: 10138 components: - type: Transform pos: 66.5,-11.5 parent: 2 - - uid: 7315 + - uid: 10139 components: - type: Transform pos: 27.5,-39.5 parent: 2 - - uid: 7692 + - uid: 10140 components: - type: Transform pos: 68.5,-12.5 parent: 2 - - uid: 8675 + - uid: 10141 components: - type: Transform pos: 27.5,-36.5 parent: 2 - - uid: 9381 + - uid: 10142 components: - type: Transform pos: -32.5,-113.5 parent: 2 - - uid: 9382 + - uid: 10143 components: - type: Transform pos: 37.5,-4.5 parent: 2 - - uid: 9383 + - uid: 10144 components: - type: Transform pos: 62.5,-52.5 parent: 2 - - uid: 9384 + - uid: 10145 components: - type: Transform pos: 106.5,-55.5 parent: 2 - - uid: 9385 + - uid: 10146 components: - type: Transform pos: 109.5,-49.5 parent: 2 - - uid: 9386 + - uid: 10147 components: - type: Transform pos: 82.5,-44.5 parent: 2 - - uid: 9389 + - uid: 10148 components: - type: Transform pos: 35.5,-10.5 parent: 2 - - uid: 9390 + - uid: 10149 components: - type: Transform pos: 75.5,-47.5 parent: 2 - - uid: 9391 + - uid: 10150 components: - type: Transform pos: 34.5,-10.5 parent: 2 - - uid: 9392 + - uid: 10151 components: - type: Transform pos: 62.5,-51.5 parent: 2 - - uid: 9393 + - uid: 10152 components: - type: Transform pos: 72.5,-58.5 parent: 2 - - uid: 9395 + - uid: 10153 components: - type: Transform pos: 28.5,1.5 parent: 2 - - uid: 9396 + - uid: 10154 components: - type: Transform pos: 33.5,-10.5 parent: 2 - - uid: 9397 + - uid: 10155 components: - type: Transform pos: 32.5,-10.5 parent: 2 - - uid: 9398 + - uid: 10156 components: - type: Transform pos: 31.5,-10.5 parent: 2 - - uid: 9399 + - uid: 10157 components: - type: Transform pos: 37.5,-10.5 parent: 2 - - uid: 9400 + - uid: 10158 components: - type: Transform pos: 23.5,3.5 parent: 2 - - uid: 9401 + - uid: 10159 components: - type: Transform pos: 36.5,-10.5 parent: 2 - - uid: 9402 + - uid: 10160 components: - type: Transform pos: 37.5,-11.5 parent: 2 - - uid: 9403 + - uid: 10161 components: - type: Transform pos: 37.5,-12.5 parent: 2 - - uid: 9404 + - uid: 10162 components: - type: Transform pos: 39.5,-12.5 parent: 2 - - uid: 9405 + - uid: 10163 components: - type: Transform pos: 26.5,1.5 parent: 2 - - uid: 9406 + - uid: 10164 components: - type: Transform pos: 38.5,-12.5 parent: 2 - - uid: 9407 + - uid: 10165 components: - type: Transform pos: 23.5,2.5 parent: 2 - - uid: 9408 + - uid: 10166 components: - type: Transform pos: 23.5,5.5 parent: 2 - - uid: 9409 + - uid: 10167 components: - type: Transform pos: 23.5,1.5 parent: 2 - - uid: 9410 + - uid: 10168 components: - type: Transform pos: -63.5,-69.5 parent: 2 - - uid: 9411 + - uid: 10169 components: - type: Transform pos: -62.5,-69.5 parent: 2 - - uid: 9412 + - uid: 10170 components: - type: Transform pos: 73.5,-45.5 parent: 2 - - uid: 9413 + - uid: 10171 components: - type: Transform pos: -38.5,-116.5 parent: 2 - - uid: 9414 + - uid: 10172 components: - type: Transform pos: -33.5,-118.5 parent: 2 - - uid: 9415 + - uid: 10173 components: - type: Transform pos: -40.5,-116.5 parent: 2 - - uid: 9417 + - uid: 10174 components: - type: Transform pos: 38.5,-83.5 parent: 2 - - uid: 9418 + - uid: 10175 components: - type: Transform pos: -39.5,-116.5 parent: 2 - - uid: 9419 + - uid: 10176 components: - type: Transform pos: 35.5,-81.5 parent: 2 - - uid: 9420 + - uid: 10177 components: - type: Transform pos: 48.5,-86.5 parent: 2 - - uid: 9421 + - uid: 10178 components: - type: Transform pos: 35.5,-80.5 parent: 2 - - uid: 9422 + - uid: 10179 components: - type: Transform pos: 62.5,-49.5 parent: 2 - - uid: 9423 + - uid: 10180 components: - type: Transform pos: 108.5,-51.5 parent: 2 - - uid: 9424 + - uid: 10181 components: - type: Transform pos: 107.5,-55.5 parent: 2 - - uid: 9428 + - uid: 10182 components: - type: Transform pos: -39.5,-26.5 parent: 2 - - uid: 9429 + - uid: 10183 components: - type: Transform pos: -38.5,-26.5 parent: 2 - - uid: 9430 + - uid: 10184 components: - type: Transform pos: -37.5,-26.5 parent: 2 - - uid: 9431 + - uid: 10185 components: - type: Transform pos: -36.5,-26.5 parent: 2 - - uid: 9432 + - uid: 10186 components: - type: Transform pos: -35.5,-26.5 parent: 2 - - uid: 9433 + - uid: 10187 components: - type: Transform pos: -34.5,-26.5 parent: 2 - - uid: 9434 + - uid: 10188 components: - type: Transform pos: -33.5,-26.5 parent: 2 - - uid: 9435 + - uid: 10189 components: - type: Transform pos: -58.5,-70.5 parent: 2 - - uid: 9436 + - uid: 10190 components: - type: Transform pos: -56.5,-69.5 parent: 2 - - uid: 9437 + - uid: 10191 components: - type: Transform pos: -49.5,-68.5 parent: 2 - - uid: 9438 + - uid: 10192 components: - type: Transform pos: 23.5,6.5 parent: 2 - - uid: 9439 + - uid: 10193 components: - type: Transform pos: 23.5,8.5 parent: 2 - - uid: 9440 + - uid: 10194 components: - type: Transform pos: 27.5,11.5 parent: 2 - - uid: 9441 + - uid: 10195 components: - type: Transform pos: 28.5,11.5 parent: 2 - - uid: 9442 + - uid: 10196 components: - type: Transform pos: -32.5,-26.5 parent: 2 - - uid: 9443 + - uid: 10197 components: - type: Transform pos: 23.5,18.5 parent: 2 - - uid: 9444 + - uid: 10198 components: - type: Transform pos: -60.5,-25.5 parent: 2 - - uid: 9446 + - uid: 10199 components: - type: Transform pos: 72.5,-59.5 parent: 2 - - uid: 9447 + - uid: 10200 components: - type: Transform pos: 71.5,-54.5 parent: 2 - - uid: 9448 + - uid: 10201 components: - type: Transform pos: 53.5,-86.5 parent: 2 - - uid: 9449 + - uid: 10202 components: - type: Transform pos: 49.5,-86.5 parent: 2 - - uid: 9450 + - uid: 10203 components: - type: Transform pos: 52.5,-86.5 parent: 2 - - uid: 9451 + - uid: 10204 components: - type: Transform pos: 51.5,-86.5 parent: 2 - - uid: 9452 + - uid: 10205 components: - type: Transform pos: 66.5,-46.5 parent: 2 - - uid: 9453 + - uid: 10206 components: - type: Transform pos: 64.5,-46.5 parent: 2 - - uid: 9454 + - uid: 10207 components: - type: Transform pos: 72.5,-61.5 parent: 2 - - uid: 9455 + - uid: 10208 components: - type: Transform pos: 72.5,-60.5 parent: 2 - - uid: 9456 + - uid: 10209 components: - type: Transform pos: 67.5,-63.5 parent: 2 - - uid: 9457 + - uid: 10210 components: - type: Transform pos: 62.5,-46.5 parent: 2 - - uid: 9458 + - uid: 10211 components: - type: Transform pos: 67.5,-45.5 parent: 2 - - uid: 9459 + - uid: 10212 components: - type: Transform pos: 73.5,-46.5 parent: 2 - - uid: 9462 + - uid: 10213 components: - type: Transform pos: 63.5,-46.5 parent: 2 - - uid: 9463 + - uid: 10214 components: - type: Transform pos: 65.5,-46.5 parent: 2 - - uid: 9464 + - uid: 10215 components: - type: Transform pos: 67.5,-46.5 parent: 2 - - uid: 9465 + - uid: 10216 components: - type: Transform pos: 73.5,-44.5 parent: 2 - - uid: 9466 + - uid: 10217 components: - type: Transform pos: 67.5,-44.5 parent: 2 - - uid: 9467 + - uid: 10218 components: - type: Transform pos: 68.5,-44.5 parent: 2 - - uid: 9468 + - uid: 10219 components: - type: Transform pos: 69.5,-44.5 parent: 2 - - uid: 9469 + - uid: 10220 components: - type: Transform pos: 70.5,-44.5 parent: 2 - - uid: 9470 + - uid: 10221 components: - type: Transform pos: 53.5,-85.5 parent: 2 - - uid: 9471 + - uid: 10222 components: - type: Transform pos: 19.5,-86.5 parent: 2 - - uid: 9472 + - uid: 10223 components: - type: Transform pos: 71.5,-44.5 parent: 2 - - uid: 9475 + - uid: 10224 components: - type: Transform pos: 79.5,-24.5 parent: 2 - - uid: 9476 + - uid: 10225 components: - type: Transform pos: 72.5,-44.5 parent: 2 - - uid: 9477 + - uid: 10226 components: - type: Transform pos: 19.5,-87.5 parent: 2 - - uid: 9478 + - uid: 10227 components: - type: Transform pos: -56.5,-85.5 parent: 2 - - uid: 9479 + - uid: 10228 components: - type: Transform pos: -55.5,-85.5 parent: 2 - - uid: 9480 + - uid: 10229 components: - type: Transform pos: -55.5,-84.5 parent: 2 - - uid: 9481 + - uid: 10230 components: - type: Transform pos: 71.5,-34.5 parent: 2 - - uid: 9482 + - uid: 10231 components: - type: Transform pos: 71.5,-33.5 parent: 2 - - uid: 9483 + - uid: 10232 components: - type: Transform pos: -67.5,-52.5 parent: 2 - - uid: 9486 + - uid: 10233 components: - type: Transform pos: 64.5,-68.5 parent: 2 - - uid: 9487 + - uid: 10234 components: - type: Transform pos: 11.5,7.5 parent: 2 - - uid: 9488 + - uid: 10235 components: - type: Transform pos: 11.5,6.5 parent: 2 - - uid: 9489 + - uid: 10236 components: - type: Transform pos: -67.5,-51.5 parent: 2 - - uid: 9490 + - uid: 10237 components: - type: Transform pos: 66.5,-63.5 parent: 2 - - uid: 9491 + - uid: 10238 components: - type: Transform pos: 34.5,-82.5 parent: 2 - - uid: 9492 + - uid: 10239 components: - type: Transform pos: 35.5,-82.5 parent: 2 - - uid: 9493 + - uid: 10240 components: - type: Transform pos: 36.5,-82.5 parent: 2 - - uid: 9494 + - uid: 10241 components: - type: Transform pos: 37.5,-82.5 parent: 2 - - uid: 9495 + - uid: 10242 components: - type: Transform pos: 39.5,-83.5 parent: 2 - - uid: 9496 + - uid: 10243 components: - type: Transform pos: 40.5,-83.5 parent: 2 - - uid: 9497 + - uid: 10244 components: - type: Transform pos: 41.5,-83.5 parent: 2 - - uid: 9498 + - uid: 10245 components: - type: Transform pos: 42.5,-83.5 parent: 2 - - uid: 9499 + - uid: 10246 components: - type: Transform pos: 43.5,-83.5 parent: 2 - - uid: 9500 + - uid: 10247 components: - type: Transform pos: 44.5,-83.5 parent: 2 - - uid: 9501 + - uid: 10248 components: - type: Transform pos: 45.5,-83.5 parent: 2 - - uid: 9502 + - uid: 10249 components: - type: Transform pos: 46.5,-83.5 parent: 2 - - uid: 9503 + - uid: 10250 components: - type: Transform pos: 46.5,-82.5 parent: 2 - - uid: 9504 + - uid: 10251 components: - type: Transform pos: 46.5,-81.5 parent: 2 - - uid: 9505 + - uid: 10252 components: - type: Transform pos: 46.5,-80.5 parent: 2 - - uid: 9506 + - uid: 10253 components: - type: Transform pos: 45.5,-80.5 parent: 2 - - uid: 9507 + - uid: 10254 components: - type: Transform pos: 44.5,-80.5 parent: 2 - - uid: 9508 + - uid: 10255 components: - type: Transform pos: 47.5,-83.5 parent: 2 - - uid: 9509 + - uid: 10256 components: - type: Transform pos: 48.5,-83.5 parent: 2 - - uid: 9510 + - uid: 10257 components: - type: Transform pos: 49.5,-83.5 parent: 2 - - uid: 9511 + - uid: 10258 components: - type: Transform pos: 50.5,-83.5 parent: 2 - - uid: 9512 + - uid: 10259 components: - type: Transform pos: 51.5,-83.5 parent: 2 - - uid: 9513 + - uid: 10260 components: - type: Transform pos: 52.5,-83.5 parent: 2 - - uid: 9514 + - uid: 10261 components: - type: Transform pos: 52.5,-82.5 parent: 2 - - uid: 9515 + - uid: 10262 components: - type: Transform pos: 52.5,-81.5 parent: 2 - - uid: 9516 + - uid: 10263 components: - type: Transform pos: 52.5,-80.5 parent: 2 - - uid: 9517 + - uid: 10264 components: - type: Transform pos: 51.5,-80.5 parent: 2 - - uid: 9518 + - uid: 10265 components: - type: Transform pos: 46.5,-79.5 parent: 2 - - uid: 9519 + - uid: 10266 components: - type: Transform pos: 46.5,-78.5 parent: 2 - - uid: 9520 + - uid: 10267 components: - type: Transform pos: 47.5,-78.5 parent: 2 - - uid: 9521 + - uid: 10268 components: - type: Transform pos: 48.5,-78.5 parent: 2 - - uid: 9522 + - uid: 10269 components: - type: Transform pos: 49.5,-78.5 parent: 2 - - uid: 9523 + - uid: 10270 components: - type: Transform pos: 49.5,-77.5 parent: 2 - - uid: 9524 + - uid: 10271 components: - type: Transform pos: 49.5,-76.5 parent: 2 - - uid: 9525 + - uid: 10272 components: - type: Transform pos: 49.5,-75.5 parent: 2 - - uid: 9526 + - uid: 10273 components: - type: Transform pos: 49.5,-74.5 parent: 2 - - uid: 9527 + - uid: 10274 components: - type: Transform pos: 49.5,-73.5 parent: 2 - - uid: 9528 + - uid: 10275 components: - type: Transform pos: 49.5,-72.5 parent: 2 - - uid: 9529 + - uid: 10276 components: - type: Transform pos: 49.5,-71.5 parent: 2 - - uid: 9530 + - uid: 10277 components: - type: Transform pos: 48.5,-71.5 parent: 2 - - uid: 9531 + - uid: 10278 components: - type: Transform pos: 47.5,-71.5 parent: 2 - - uid: 9532 + - uid: 10279 components: - type: Transform pos: 49.5,-70.5 parent: 2 - - uid: 9533 + - uid: 10280 components: - type: Transform pos: 49.5,-69.5 parent: 2 - - uid: 9534 + - uid: 10281 components: - type: Transform pos: 50.5,-69.5 parent: 2 - - uid: 9535 + - uid: 10282 components: - type: Transform pos: 51.5,-69.5 parent: 2 - - uid: 9536 + - uid: 10283 components: - type: Transform pos: 52.5,-69.5 parent: 2 - - uid: 9537 + - uid: 10284 components: - type: Transform pos: 53.5,-69.5 parent: 2 - - uid: 9538 + - uid: 10285 components: - type: Transform pos: 54.5,-69.5 parent: 2 - - uid: 9539 + - uid: 10286 components: - type: Transform pos: 54.5,-70.5 parent: 2 - - uid: 9540 + - uid: 10287 components: - type: Transform pos: 54.5,-71.5 parent: 2 - - uid: 9541 + - uid: 10288 components: - type: Transform pos: 54.5,-72.5 parent: 2 - - uid: 9542 + - uid: 10289 components: - type: Transform pos: 54.5,-73.5 parent: 2 - - uid: 9543 + - uid: 10290 components: - type: Transform pos: 55.5,-73.5 parent: 2 - - uid: 9544 + - uid: 10291 components: - type: Transform pos: 56.5,-73.5 parent: 2 - - uid: 9545 + - uid: 10292 components: - type: Transform pos: 56.5,-74.5 parent: 2 - - uid: 9546 + - uid: 10293 components: - type: Transform pos: 65.5,-68.5 parent: 2 - - uid: 9547 + - uid: 10294 components: - type: Transform pos: 66.5,-68.5 parent: 2 - - uid: 9548 + - uid: 10295 components: - type: Transform pos: 53.5,-46.5 parent: 2 - - uid: 9549 + - uid: 10296 components: - type: Transform pos: 53.5,-47.5 parent: 2 - - uid: 9550 + - uid: 10297 components: - type: Transform pos: 54.5,-47.5 parent: 2 - - uid: 9551 + - uid: 10298 components: - type: Transform pos: 55.5,-47.5 parent: 2 - - uid: 9552 + - uid: 10299 components: - type: Transform pos: 56.5,-47.5 parent: 2 - - uid: 9553 + - uid: 10300 components: - type: Transform pos: 57.5,-47.5 parent: 2 - - uid: 9554 + - uid: 10301 components: - type: Transform pos: 58.5,-47.5 parent: 2 - - uid: 9555 + - uid: 10302 components: - type: Transform pos: 59.5,-47.5 parent: 2 - - uid: 9556 + - uid: 10303 components: - type: Transform pos: 60.5,-47.5 parent: 2 - - uid: 9557 + - uid: 10304 components: - type: Transform pos: 61.5,-47.5 parent: 2 - - uid: 9558 + - uid: 10305 components: - type: Transform pos: 68.5,-63.5 parent: 2 - - uid: 9559 + - uid: 10306 components: - type: Transform pos: 52.5,-56.5 parent: 2 - - uid: 9560 + - uid: 10307 components: - type: Transform pos: 51.5,-56.5 parent: 2 - - uid: 9561 + - uid: 10308 components: - type: Transform pos: 50.5,-56.5 parent: 2 - - uid: 9562 + - uid: 10309 components: - type: Transform pos: 49.5,-56.5 parent: 2 - - uid: 9563 + - uid: 10310 components: - type: Transform pos: 48.5,-56.5 parent: 2 - - uid: 9564 + - uid: 10311 components: - type: Transform pos: 48.5,-55.5 parent: 2 - - uid: 9565 + - uid: 10312 components: - type: Transform pos: 48.5,-54.5 parent: 2 - - uid: 9566 + - uid: 10313 components: - type: Transform pos: 48.5,-53.5 parent: 2 - - uid: 9567 + - uid: 10314 components: - type: Transform pos: 48.5,-52.5 parent: 2 - - uid: 9568 + - uid: 10315 components: - type: Transform pos: 47.5,-52.5 parent: 2 - - uid: 9569 + - uid: 10316 components: - type: Transform pos: 48.5,-57.5 parent: 2 - - uid: 9570 + - uid: 10317 components: - type: Transform pos: 47.5,-57.5 parent: 2 - - uid: 9571 + - uid: 10318 components: - type: Transform pos: 46.5,-57.5 parent: 2 - - uid: 9572 + - uid: 10319 components: - type: Transform pos: 45.5,-57.5 parent: 2 - - uid: 9573 + - uid: 10320 components: - type: Transform pos: 44.5,-57.5 parent: 2 - - uid: 9574 + - uid: 10321 components: - type: Transform pos: 43.5,-57.5 parent: 2 - - uid: 9575 + - uid: 10322 components: - type: Transform pos: 43.5,-56.5 parent: 2 - - uid: 9576 + - uid: 10323 components: - type: Transform pos: 43.5,-55.5 parent: 2 - - uid: 9577 + - uid: 10324 components: - type: Transform pos: 43.5,-54.5 parent: 2 - - uid: 9578 + - uid: 10325 components: - type: Transform pos: 43.5,-53.5 parent: 2 - - uid: 9579 + - uid: 10326 components: - type: Transform pos: 43.5,-52.5 parent: 2 - - uid: 9580 + - uid: 10327 components: - type: Transform pos: 43.5,-51.5 parent: 2 - - uid: 9581 + - uid: 10328 components: - type: Transform pos: 42.5,-51.5 parent: 2 - - uid: 9582 + - uid: 10329 components: - type: Transform pos: 41.5,-51.5 parent: 2 - - uid: 9583 + - uid: 10330 components: - type: Transform pos: 41.5,-50.5 parent: 2 - - uid: 9584 + - uid: 10331 components: - type: Transform pos: 52.5,-57.5 parent: 2 - - uid: 9585 + - uid: 10332 components: - type: Transform pos: 52.5,-58.5 parent: 2 - - uid: 9586 + - uid: 10333 components: - type: Transform pos: 52.5,-59.5 parent: 2 - - uid: 9587 + - uid: 10334 components: - type: Transform pos: 52.5,-60.5 parent: 2 - - uid: 9588 + - uid: 10335 components: - type: Transform pos: 53.5,-60.5 parent: 2 - - uid: 9589 + - uid: 10336 components: - type: Transform pos: 54.5,-60.5 parent: 2 - - uid: 9590 + - uid: 10337 components: - type: Transform pos: 55.5,-60.5 parent: 2 - - uid: 9591 + - uid: 10338 components: - type: Transform pos: 56.5,-60.5 parent: 2 - - uid: 9592 + - uid: 10339 components: - type: Transform pos: 57.5,-60.5 parent: 2 - - uid: 9593 + - uid: 10340 components: - type: Transform pos: 57.5,-61.5 parent: 2 - - uid: 9594 + - uid: 10341 components: - type: Transform pos: 57.5,-62.5 parent: 2 - - uid: 9595 + - uid: 10342 components: - type: Transform pos: 57.5,-63.5 parent: 2 - - uid: 9596 + - uid: 10343 components: - type: Transform pos: 56.5,-63.5 parent: 2 - - uid: 9597 + - uid: 10344 components: - type: Transform pos: 55.5,-63.5 parent: 2 - - uid: 9598 + - uid: 10345 components: - type: Transform pos: 62.5,-50.5 parent: 2 - - uid: 9599 + - uid: 10346 components: - type: Transform pos: 62.5,-47.5 parent: 2 - - uid: 9600 + - uid: 10347 components: - type: Transform pos: 62.5,-54.5 parent: 2 - - uid: 9601 + - uid: 10348 components: - type: Transform pos: 62.5,-53.5 parent: 2 - - uid: 9602 + - uid: 10349 components: - type: Transform pos: 64.5,-60.5 parent: 2 - - uid: 9603 + - uid: 10350 components: - type: Transform pos: 64.5,-61.5 parent: 2 - - uid: 9604 + - uid: 10351 components: - type: Transform pos: 64.5,-62.5 parent: 2 - - uid: 9605 + - uid: 10352 components: - type: Transform pos: 64.5,-63.5 parent: 2 - - uid: 9606 + - uid: 10353 components: - type: Transform pos: 32.5,-82.5 parent: 2 - - uid: 9607 + - uid: 10354 components: - type: Transform pos: 32.5,-81.5 parent: 2 - - uid: 9608 + - uid: 10355 components: - type: Transform pos: 32.5,-80.5 parent: 2 - - uid: 9609 + - uid: 10356 components: - type: Transform pos: 32.5,-79.5 parent: 2 - - uid: 9610 + - uid: 10357 components: - type: Transform pos: 32.5,-78.5 parent: 2 - - uid: 9611 + - uid: 10358 components: - type: Transform pos: 32.5,-77.5 parent: 2 - - uid: 9612 + - uid: 10359 components: - type: Transform pos: 32.5,-76.5 parent: 2 - - uid: 9613 + - uid: 10360 components: - type: Transform pos: 32.5,-75.5 parent: 2 - - uid: 9614 + - uid: 10361 components: - type: Transform pos: 33.5,-82.5 parent: 2 - - uid: 9615 + - uid: 10362 components: - type: Transform pos: 33.5,-75.5 parent: 2 - - uid: 9616 + - uid: 10363 components: - type: Transform pos: 34.5,-75.5 parent: 2 - - uid: 9617 + - uid: 10364 components: - type: Transform pos: 35.5,-75.5 parent: 2 - - uid: 9618 + - uid: 10365 components: - type: Transform pos: 36.5,-75.5 parent: 2 - - uid: 9619 + - uid: 10366 components: - type: Transform pos: 37.5,-75.5 parent: 2 - - uid: 9620 + - uid: 10367 components: - type: Transform pos: 38.5,-75.5 parent: 2 - - uid: 9621 + - uid: 10368 components: - type: Transform pos: 39.5,-75.5 parent: 2 - - uid: 9622 + - uid: 10369 components: - type: Transform pos: 39.5,-74.5 parent: 2 - - uid: 9623 + - uid: 10370 components: - type: Transform pos: 39.5,-73.5 parent: 2 - - uid: 9624 + - uid: 10371 components: - type: Transform pos: 39.5,-72.5 parent: 2 - - uid: 9625 + - uid: 10372 components: - type: Transform pos: 39.5,-71.5 parent: 2 - - uid: 9626 + - uid: 10373 components: - type: Transform pos: 39.5,-70.5 parent: 2 - - uid: 9627 + - uid: 10374 components: - type: Transform pos: 38.5,-72.5 parent: 2 - - uid: 9628 + - uid: 10375 components: - type: Transform pos: 37.5,-72.5 parent: 2 - - uid: 9629 + - uid: 10376 components: - type: Transform pos: 36.5,-72.5 parent: 2 - - uid: 9630 + - uid: 10377 components: - type: Transform pos: 36.5,-71.5 parent: 2 - - uid: 9631 + - uid: 10378 components: - type: Transform pos: 36.5,-70.5 parent: 2 - - uid: 9632 + - uid: 10379 components: - type: Transform pos: 35.5,-70.5 parent: 2 - - uid: 9633 + - uid: 10380 components: - type: Transform pos: 39.5,-69.5 parent: 2 - - uid: 9634 + - uid: 10381 components: - type: Transform pos: 39.5,-68.5 parent: 2 - - uid: 9635 + - uid: 10382 components: - type: Transform pos: 40.5,-68.5 parent: 2 - - uid: 9636 + - uid: 10383 components: - type: Transform pos: 40.5,-67.5 parent: 2 - - uid: 9637 + - uid: 10384 components: - type: Transform pos: 40.5,-66.5 parent: 2 - - uid: 9638 + - uid: 10385 components: - type: Transform pos: 40.5,-65.5 parent: 2 - - uid: 9639 + - uid: 10386 components: - type: Transform pos: 40.5,-64.5 parent: 2 - - uid: 9640 + - uid: 10387 components: - type: Transform pos: 40.5,-63.5 parent: 2 - - uid: 9641 + - uid: 10388 components: - type: Transform pos: 40.5,-62.5 parent: 2 - - uid: 9642 + - uid: 10389 components: - type: Transform pos: 40.5,-61.5 parent: 2 - - uid: 9643 + - uid: 10390 components: - type: Transform pos: 40.5,-60.5 parent: 2 - - uid: 9644 + - uid: 10391 components: - type: Transform pos: 39.5,-60.5 parent: 2 - - uid: 9645 + - uid: 10392 components: - type: Transform pos: 41.5,-68.5 parent: 2 - - uid: 9646 + - uid: 10393 components: - type: Transform pos: 42.5,-68.5 parent: 2 - - uid: 9647 + - uid: 10394 components: - type: Transform pos: 43.5,-68.5 parent: 2 - - uid: 9648 + - uid: 10395 components: - type: Transform pos: 44.5,-68.5 parent: 2 - - uid: 9649 + - uid: 10396 components: - type: Transform pos: 45.5,-68.5 parent: 2 - - uid: 9650 + - uid: 10397 components: - type: Transform pos: 46.5,-68.5 parent: 2 - - uid: 9651 + - uid: 10398 components: - type: Transform pos: 47.5,-68.5 parent: 2 - - uid: 9652 + - uid: 10399 components: - type: Transform pos: 48.5,-68.5 parent: 2 - - uid: 9653 + - uid: 10400 components: - type: Transform pos: 49.5,-68.5 parent: 2 - - uid: 9654 + - uid: 10401 components: - type: Transform pos: 33.5,-23.5 parent: 2 - - uid: 9655 + - uid: 10402 components: - type: Transform pos: 34.5,-23.5 parent: 2 - - uid: 9656 + - uid: 10403 components: - type: Transform pos: 35.5,-23.5 parent: 2 - - uid: 9658 + - uid: 10404 components: - type: Transform pos: 35.5,-22.5 parent: 2 - - uid: 9659 + - uid: 10405 components: - type: Transform pos: 35.5,-21.5 parent: 2 - - uid: 9660 + - uid: 10406 components: - type: Transform pos: 35.5,-20.5 parent: 2 - - uid: 9661 + - uid: 10407 components: - type: Transform pos: 36.5,-20.5 parent: 2 - - uid: 9662 + - uid: 10408 components: - type: Transform pos: 37.5,-20.5 parent: 2 - - uid: 9663 + - uid: 10409 components: - type: Transform pos: 38.5,-20.5 parent: 2 - - uid: 9664 + - uid: 10410 components: - type: Transform pos: 39.5,-20.5 parent: 2 - - uid: 9665 + - uid: 10411 components: - type: Transform pos: 40.5,-20.5 parent: 2 - - uid: 9666 + - uid: 10412 components: - type: Transform pos: 40.5,-19.5 parent: 2 - - uid: 9667 + - uid: 10413 components: - type: Transform pos: 40.5,-18.5 parent: 2 - - uid: 9668 + - uid: 10414 components: - type: Transform pos: 40.5,-17.5 parent: 2 - - uid: 9669 + - uid: 10415 components: - type: Transform pos: 40.5,-16.5 parent: 2 - - uid: 9670 + - uid: 10416 components: - type: Transform pos: 40.5,-15.5 parent: 2 - - uid: 9671 + - uid: 10417 components: - type: Transform pos: 40.5,-14.5 parent: 2 - - uid: 9672 + - uid: 10418 components: - type: Transform pos: 40.5,-13.5 parent: 2 - - uid: 9673 + - uid: 10419 components: - type: Transform pos: 40.5,-12.5 parent: 2 - - uid: 9674 + - uid: 10420 components: - type: Transform pos: 40.5,-11.5 parent: 2 - - uid: 9675 + - uid: 10421 components: - type: Transform pos: 40.5,-10.5 parent: 2 - - uid: 9676 + - uid: 10422 components: - type: Transform pos: 40.5,-9.5 parent: 2 - - uid: 9677 + - uid: 10423 components: - type: Transform pos: 40.5,-8.5 parent: 2 - - uid: 9678 + - uid: 10424 components: - type: Transform pos: 40.5,-7.5 parent: 2 - - uid: 9679 + - uid: 10425 components: - type: Transform pos: 39.5,-7.5 parent: 2 - - uid: 9680 + - uid: 10426 components: - type: Transform pos: 39.5,-6.5 parent: 2 - - uid: 9682 + - uid: 10427 components: - type: Transform pos: 39.5,-4.5 parent: 2 - - uid: 9683 + - uid: 10428 components: - type: Transform pos: 40.5,-4.5 parent: 2 - - uid: 9687 + - uid: 10429 components: - type: Transform pos: -42.5,-34.5 parent: 2 - - uid: 9697 + - uid: 10430 components: - type: Transform pos: 50.5,-18.5 parent: 2 - - uid: 9701 + - uid: 10431 components: - type: Transform pos: 55.5,-20.5 parent: 2 - - uid: 9713 + - uid: 10432 components: - type: Transform pos: 44.5,-4.5 parent: 2 - - uid: 9715 + - uid: 10433 components: - type: Transform pos: 47.5,-17.5 parent: 2 - - uid: 9716 + - uid: 10434 components: - type: Transform pos: 54.5,-18.5 parent: 2 - - uid: 9718 + - uid: 10435 components: - type: Transform pos: 54.5,-22.5 parent: 2 - - uid: 9737 + - uid: 10436 components: - type: Transform pos: 55.5,-16.5 parent: 2 - - uid: 9762 + - uid: 10437 components: - type: Transform pos: 35.5,-24.5 parent: 2 - - uid: 9763 + - uid: 10438 components: - type: Transform pos: 35.5,-25.5 parent: 2 - - uid: 9764 + - uid: 10439 components: - type: Transform pos: 35.5,-26.5 parent: 2 - - uid: 9765 + - uid: 10440 components: - type: Transform pos: 35.5,-27.5 parent: 2 - - uid: 9766 + - uid: 10441 components: - type: Transform pos: 35.5,-28.5 parent: 2 - - uid: 9767 + - uid: 10442 components: - type: Transform pos: 35.5,-29.5 parent: 2 - - uid: 9768 + - uid: 10443 components: - type: Transform pos: 36.5,-29.5 parent: 2 - - uid: 9769 + - uid: 10444 components: - type: Transform pos: 37.5,-29.5 parent: 2 - - uid: 9770 + - uid: 10445 components: - type: Transform pos: 38.5,-29.5 parent: 2 - - uid: 9771 + - uid: 10446 components: - type: Transform pos: 39.5,-29.5 parent: 2 - - uid: 9772 + - uid: 10447 components: - type: Transform pos: 40.5,-29.5 parent: 2 - - uid: 9773 + - uid: 10448 components: - type: Transform pos: 41.5,-29.5 parent: 2 - - uid: 9774 + - uid: 10449 components: - type: Transform pos: 42.5,-29.5 parent: 2 - - uid: 9775 + - uid: 10450 components: - type: Transform pos: 43.5,-29.5 parent: 2 - - uid: 9776 + - uid: 10451 components: - type: Transform pos: 44.5,-29.5 parent: 2 - - uid: 9777 + - uid: 10452 components: - type: Transform pos: 44.5,-28.5 parent: 2 - - uid: 9778 + - uid: 10453 components: - type: Transform pos: 44.5,-27.5 parent: 2 - - uid: 9779 + - uid: 10454 components: - type: Transform pos: 44.5,-26.5 parent: 2 - - uid: 9780 + - uid: 10455 components: - type: Transform pos: 45.5,-26.5 parent: 2 - - uid: 9781 + - uid: 10456 components: - type: Transform pos: 46.5,-26.5 parent: 2 - - uid: 9782 + - uid: 10457 components: - type: Transform pos: 78.5,-24.5 parent: 2 - - uid: 9783 + - uid: 10458 components: - type: Transform pos: 78.5,-23.5 parent: 2 - - uid: 9784 + - uid: 10459 components: - type: Transform pos: 77.5,-23.5 parent: 2 - - uid: 9785 + - uid: 10460 components: - type: Transform pos: 76.5,-23.5 parent: 2 - - uid: 9786 + - uid: 10461 components: - type: Transform pos: 76.5,-24.5 parent: 2 - - uid: 9787 + - uid: 10462 components: - type: Transform pos: 76.5,-25.5 parent: 2 - - uid: 9788 + - uid: 10463 components: - type: Transform pos: 76.5,-26.5 parent: 2 - - uid: 9789 + - uid: 10464 components: - type: Transform pos: 76.5,-27.5 parent: 2 - - uid: 9790 + - uid: 10465 components: - type: Transform pos: 76.5,-28.5 parent: 2 - - uid: 9791 + - uid: 10466 components: - type: Transform pos: 78.5,-25.5 parent: 2 - - uid: 9792 + - uid: 10467 components: - type: Transform pos: 75.5,-28.5 parent: 2 - - uid: 9793 + - uid: 10468 components: - type: Transform pos: 74.5,-28.5 parent: 2 - - uid: 9794 + - uid: 10469 components: - type: Transform pos: 73.5,-28.5 parent: 2 - - uid: 9795 + - uid: 10470 components: - type: Transform pos: 73.5,-29.5 parent: 2 - - uid: 9796 + - uid: 10471 components: - type: Transform pos: 73.5,-30.5 parent: 2 - - uid: 9797 + - uid: 10472 components: - type: Transform pos: 73.5,-31.5 parent: 2 - - uid: 9798 + - uid: 10473 components: - type: Transform pos: 73.5,-32.5 parent: 2 - - uid: 9799 + - uid: 10474 components: - type: Transform pos: 74.5,-32.5 parent: 2 - - uid: 9800 + - uid: 10475 components: - type: Transform pos: 75.5,-32.5 parent: 2 - - uid: 9801 + - uid: 10476 components: - type: Transform pos: 76.5,-32.5 parent: 2 - - uid: 9802 + - uid: 10477 components: - type: Transform pos: 77.5,-32.5 parent: 2 - - uid: 9803 + - uid: 10478 components: - type: Transform pos: 78.5,-32.5 parent: 2 - - uid: 9804 + - uid: 10479 components: - type: Transform pos: 79.5,-32.5 parent: 2 - - uid: 9805 + - uid: 10480 components: - type: Transform pos: 80.5,-32.5 parent: 2 - - uid: 9806 + - uid: 10481 components: - type: Transform pos: 81.5,-32.5 parent: 2 - - uid: 9807 + - uid: 10482 components: - type: Transform pos: 82.5,-32.5 parent: 2 - - uid: 9808 + - uid: 10483 components: - type: Transform pos: 82.5,-31.5 parent: 2 - - uid: 9809 + - uid: 10484 components: - type: Transform pos: 82.5,-30.5 parent: 2 - - uid: 9810 + - uid: 10485 components: - type: Transform pos: 82.5,-29.5 parent: 2 - - uid: 9811 + - uid: 10486 components: - type: Transform pos: 82.5,-28.5 parent: 2 - - uid: 9812 + - uid: 10487 components: - type: Transform pos: 82.5,-27.5 parent: 2 - - uid: 9813 + - uid: 10488 components: - type: Transform pos: 82.5,-26.5 parent: 2 - - uid: 9814 + - uid: 10489 components: - type: Transform pos: 82.5,-25.5 parent: 2 - - uid: 9815 + - uid: 10490 components: - type: Transform pos: 82.5,-24.5 parent: 2 - - uid: 9816 + - uid: 10491 components: - type: Transform pos: 82.5,-23.5 parent: 2 - - uid: 9817 + - uid: 10492 components: - type: Transform pos: 82.5,-22.5 parent: 2 - - uid: 9818 + - uid: 10493 components: - type: Transform pos: 82.5,-21.5 parent: 2 - - uid: 9819 + - uid: 10494 components: - type: Transform pos: 81.5,-21.5 parent: 2 - - uid: 9820 + - uid: 10495 components: - type: Transform pos: 80.5,-21.5 parent: 2 - - uid: 9821 + - uid: 10496 components: - type: Transform pos: 79.5,-21.5 parent: 2 - - uid: 9822 + - uid: 10497 components: - type: Transform pos: 78.5,-21.5 parent: 2 - - uid: 9823 + - uid: 10498 components: - type: Transform pos: 77.5,-21.5 parent: 2 - - uid: 9824 + - uid: 10499 components: - type: Transform pos: 76.5,-21.5 parent: 2 - - uid: 9825 + - uid: 10500 components: - type: Transform pos: 76.5,-22.5 parent: 2 - - uid: 9826 + - uid: 10501 components: - type: Transform pos: 83.5,-22.5 parent: 2 - - uid: 9827 + - uid: 10502 components: - type: Transform pos: 84.5,-22.5 parent: 2 - - uid: 9828 + - uid: 10503 components: - type: Transform pos: 85.5,-22.5 parent: 2 - - uid: 9829 + - uid: 10504 components: - type: Transform pos: 86.5,-22.5 parent: 2 - - uid: 9830 + - uid: 10505 components: - type: Transform pos: 87.5,-22.5 parent: 2 - - uid: 9831 + - uid: 10506 components: - type: Transform pos: 88.5,-22.5 parent: 2 - - uid: 9832 + - uid: 10507 components: - type: Transform pos: 89.5,-22.5 parent: 2 - - uid: 9833 + - uid: 10508 components: - type: Transform pos: 90.5,-22.5 parent: 2 - - uid: 9834 + - uid: 10509 components: - type: Transform pos: 90.5,-21.5 parent: 2 - - uid: 9835 + - uid: 10510 components: - type: Transform pos: 90.5,-20.5 parent: 2 - - uid: 9836 + - uid: 10511 components: - type: Transform pos: 91.5,-22.5 parent: 2 - - uid: 9837 + - uid: 10512 components: - type: Transform pos: 92.5,-22.5 parent: 2 - - uid: 9838 + - uid: 10513 components: - type: Transform pos: 93.5,-22.5 parent: 2 - - uid: 9839 + - uid: 10514 components: - type: Transform pos: 94.5,-22.5 parent: 2 - - uid: 9840 + - uid: 10515 components: - type: Transform pos: 95.5,-22.5 parent: 2 - - uid: 9841 + - uid: 10516 components: - type: Transform pos: 96.5,-22.5 parent: 2 - - uid: 9842 + - uid: 10517 components: - type: Transform pos: 97.5,-22.5 parent: 2 - - uid: 9843 + - uid: 10518 components: - type: Transform pos: 98.5,-22.5 parent: 2 - - uid: 9844 + - uid: 10519 components: - type: Transform pos: 99.5,-22.5 parent: 2 - - uid: 9845 + - uid: 10520 components: - type: Transform pos: 100.5,-22.5 parent: 2 - - uid: 9846 + - uid: 10521 components: - type: Transform pos: 101.5,-22.5 parent: 2 - - uid: 9847 + - uid: 10522 components: - type: Transform pos: 102.5,-22.5 parent: 2 - - uid: 9848 + - uid: 10523 components: - type: Transform pos: 103.5,-22.5 parent: 2 - - uid: 9849 + - uid: 10524 components: - type: Transform pos: 104.5,-22.5 parent: 2 - - uid: 9850 + - uid: 10525 components: - type: Transform pos: 91.5,-42.5 parent: 2 - - uid: 9851 + - uid: 10526 components: - type: Transform pos: 104.5,-23.5 parent: 2 - - uid: 9852 + - uid: 10527 components: - type: Transform pos: 91.5,-41.5 parent: 2 - - uid: 9853 + - uid: 10528 components: - type: Transform pos: 91.5,-40.5 parent: 2 - - uid: 9854 + - uid: 10529 components: - type: Transform pos: 90.5,-40.5 parent: 2 - - uid: 9855 + - uid: 10530 components: - type: Transform pos: 89.5,-40.5 parent: 2 - - uid: 9856 + - uid: 10531 components: - type: Transform pos: 88.5,-40.5 parent: 2 - - uid: 9857 + - uid: 10532 components: - type: Transform pos: 87.5,-40.5 parent: 2 - - uid: 9858 + - uid: 10533 components: - type: Transform pos: 86.5,-40.5 parent: 2 - - uid: 9859 + - uid: 10534 components: - type: Transform pos: 85.5,-40.5 parent: 2 - - uid: 9860 + - uid: 10535 components: - type: Transform pos: 84.5,-40.5 parent: 2 - - uid: 9861 + - uid: 10536 components: - type: Transform pos: 83.5,-40.5 parent: 2 - - uid: 9862 + - uid: 10537 components: - type: Transform pos: 82.5,-40.5 parent: 2 - - uid: 9863 + - uid: 10538 components: - type: Transform pos: 82.5,-39.5 parent: 2 - - uid: 9864 + - uid: 10539 components: - type: Transform pos: 82.5,-38.5 parent: 2 - - uid: 9865 + - uid: 10540 components: - type: Transform pos: 82.5,-37.5 parent: 2 - - uid: 9866 + - uid: 10541 components: - type: Transform pos: 82.5,-36.5 parent: 2 - - uid: 9867 + - uid: 10542 components: - type: Transform pos: 82.5,-35.5 parent: 2 - - uid: 9868 + - uid: 10543 components: - type: Transform pos: 82.5,-34.5 parent: 2 - - uid: 9869 + - uid: 10544 components: - type: Transform pos: 82.5,-33.5 parent: 2 - - uid: 9870 + - uid: 10545 components: - type: Transform pos: 78.5,-34.5 parent: 2 - - uid: 9871 + - uid: 10546 components: - type: Transform pos: 78.5,-33.5 parent: 2 - - uid: 9872 + - uid: 10547 components: - type: Transform pos: 78.5,-35.5 parent: 2 - - uid: 9873 + - uid: 10548 components: - type: Transform pos: 78.5,-36.5 parent: 2 - - uid: 9874 + - uid: 10549 components: - type: Transform pos: 78.5,-37.5 parent: 2 - - uid: 9875 + - uid: 10550 components: - type: Transform pos: 78.5,-38.5 parent: 2 - - uid: 9876 + - uid: 10551 components: - type: Transform pos: 78.5,-39.5 parent: 2 - - uid: 9877 + - uid: 10552 components: - type: Transform pos: 78.5,-40.5 parent: 2 - - uid: 9878 + - uid: 10553 components: - type: Transform pos: 78.5,-41.5 parent: 2 - - uid: 9879 + - uid: 10554 components: - type: Transform pos: 79.5,-41.5 parent: 2 - - uid: 9880 + - uid: 10555 components: - type: Transform pos: 80.5,-41.5 parent: 2 - - uid: 9881 + - uid: 10556 components: - type: Transform pos: 81.5,-41.5 parent: 2 - - uid: 9882 + - uid: 10557 components: - type: Transform pos: 82.5,-41.5 parent: 2 - - uid: 9883 + - uid: 10558 components: - type: Transform pos: 41.5,-40.5 parent: 2 - - uid: 9884 + - uid: 10559 components: - type: Transform pos: 41.5,-39.5 parent: 2 - - uid: 9885 + - uid: 10560 components: - type: Transform pos: 41.5,-38.5 parent: 2 - - uid: 9886 + - uid: 10561 components: - type: Transform pos: 40.5,-38.5 parent: 2 - - uid: 9887 + - uid: 10562 components: - type: Transform pos: 39.5,-38.5 parent: 2 - - uid: 9888 + - uid: 10563 components: - type: Transform pos: 39.5,-39.5 parent: 2 - - uid: 9889 + - uid: 10564 components: - type: Transform pos: 39.5,-40.5 parent: 2 - - uid: 9890 + - uid: 10565 components: - type: Transform pos: 43.5,-50.5 parent: 2 - - uid: 9891 + - uid: 10566 components: - type: Transform pos: 43.5,-49.5 parent: 2 - - uid: 9892 + - uid: 10567 components: - type: Transform pos: 43.5,-48.5 parent: 2 - - uid: 9893 + - uid: 10568 components: - type: Transform pos: 43.5,-47.5 parent: 2 - - uid: 9894 + - uid: 10569 components: - type: Transform pos: 43.5,-46.5 parent: 2 - - uid: 9895 + - uid: 10570 components: - type: Transform pos: 43.5,-45.5 parent: 2 - - uid: 9896 + - uid: 10571 components: - type: Transform pos: 43.5,-44.5 parent: 2 - - uid: 9897 + - uid: 10572 components: - type: Transform pos: 43.5,-43.5 parent: 2 - - uid: 9898 + - uid: 10573 components: - type: Transform pos: 43.5,-42.5 parent: 2 - - uid: 9899 + - uid: 10574 components: - type: Transform pos: 43.5,-41.5 parent: 2 - - uid: 9900 + - uid: 10575 components: - type: Transform pos: 43.5,-40.5 parent: 2 - - uid: 9901 + - uid: 10576 components: - type: Transform pos: 43.5,-39.5 parent: 2 - - uid: 9902 + - uid: 10577 components: - type: Transform pos: 43.5,-38.5 parent: 2 - - uid: 9903 + - uid: 10578 components: - type: Transform pos: 43.5,-37.5 parent: 2 - - uid: 9904 + - uid: 10579 components: - type: Transform pos: 43.5,-36.5 parent: 2 - - uid: 9905 + - uid: 10580 components: - type: Transform pos: 43.5,-35.5 parent: 2 - - uid: 9906 + - uid: 10581 components: - type: Transform pos: 42.5,-35.5 parent: 2 - - uid: 9907 + - uid: 10582 components: - type: Transform pos: 44.5,-44.5 parent: 2 - - uid: 9908 + - uid: 10583 components: - type: Transform pos: 45.5,-44.5 parent: 2 - - uid: 9909 + - uid: 10584 components: - type: Transform pos: 46.5,-44.5 parent: 2 - - uid: 9910 + - uid: 10585 components: - type: Transform pos: 47.5,-44.5 parent: 2 - - uid: 9911 + - uid: 10586 components: - type: Transform pos: 48.5,-44.5 parent: 2 - - uid: 9912 + - uid: 10587 components: - type: Transform pos: 49.5,-44.5 parent: 2 - - uid: 9913 + - uid: 10588 components: - type: Transform pos: 50.5,-44.5 parent: 2 - - uid: 9914 + - uid: 10589 components: - type: Transform pos: 51.5,-44.5 parent: 2 - - uid: 9915 + - uid: 10590 components: - type: Transform pos: 52.5,-44.5 parent: 2 - - uid: 9916 + - uid: 10591 components: - type: Transform pos: 53.5,-44.5 parent: 2 - - uid: 9917 + - uid: 10592 components: - type: Transform pos: 54.5,-44.5 parent: 2 - - uid: 9918 + - uid: 10593 components: - type: Transform pos: 55.5,-44.5 parent: 2 - - uid: 9919 + - uid: 10594 components: - type: Transform pos: 56.5,-44.5 parent: 2 - - uid: 9920 + - uid: 10595 components: - type: Transform pos: 57.5,-44.5 parent: 2 - - uid: 9921 + - uid: 10596 components: - type: Transform pos: 58.5,-44.5 parent: 2 - - uid: 9922 + - uid: 10597 components: - type: Transform pos: 59.5,-44.5 parent: 2 - - uid: 9923 + - uid: 10598 components: - type: Transform pos: 60.5,-44.5 parent: 2 - - uid: 9924 + - uid: 10599 components: - type: Transform pos: 61.5,-44.5 parent: 2 - - uid: 9925 + - uid: 10600 components: - type: Transform pos: 61.5,-45.5 parent: 2 - - uid: 9926 + - uid: 10601 components: - type: Transform pos: 61.5,-46.5 parent: 2 - - uid: 9952 + - uid: 10602 components: - type: Transform pos: 0.5,7.5 parent: 2 - - uid: 9953 + - uid: 10603 components: - type: Transform pos: 21.5,18.5 parent: 2 - - uid: 9954 + - uid: 10604 components: - type: Transform pos: 22.5,18.5 parent: 2 - - uid: 9955 + - uid: 10605 components: - type: Transform pos: 22.5,17.5 parent: 2 - - uid: 9956 + - uid: 10606 components: - type: Transform pos: 22.5,16.5 parent: 2 - - uid: 9957 + - uid: 10607 components: - type: Transform pos: 21.5,16.5 parent: 2 - - uid: 9958 + - uid: 10608 components: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 9959 + - uid: 10609 components: - type: Transform pos: 21.5,14.5 parent: 2 - - uid: 9960 + - uid: 10610 components: - type: Transform pos: 21.5,13.5 parent: 2 - - uid: 9961 + - uid: 10611 components: - type: Transform pos: 21.5,12.5 parent: 2 - - uid: 9962 + - uid: 10612 components: - type: Transform pos: 21.5,11.5 parent: 2 - - uid: 9963 + - uid: 10613 components: - type: Transform pos: 20.5,11.5 parent: 2 - - uid: 9964 + - uid: 10614 components: - type: Transform pos: 20.5,10.5 parent: 2 - - uid: 9965 + - uid: 10615 components: - type: Transform pos: 20.5,9.5 parent: 2 - - uid: 9966 + - uid: 10616 components: - type: Transform pos: 20.5,8.5 parent: 2 - - uid: 9967 + - uid: 10617 components: - type: Transform pos: 21.5,8.5 parent: 2 - - uid: 9968 + - uid: 10618 components: - type: Transform pos: 29.5,11.5 parent: 2 - - uid: 9969 + - uid: 10619 components: - type: Transform pos: 27.5,1.5 parent: 2 - - uid: 9970 + - uid: 10620 components: - type: Transform pos: 26.5,11.5 parent: 2 - - uid: 9971 + - uid: 10621 components: - type: Transform pos: 23.5,16.5 parent: 2 - - uid: 9972 + - uid: 10622 components: - type: Transform pos: 24.5,16.5 parent: 2 - - uid: 9973 + - uid: 10623 components: - type: Transform pos: 25.5,16.5 parent: 2 - - uid: 9974 + - uid: 10624 components: - type: Transform pos: 26.5,16.5 parent: 2 - - uid: 9975 + - uid: 10625 components: - type: Transform pos: 27.5,16.5 parent: 2 - - uid: 9976 + - uid: 10626 components: - type: Transform pos: 28.5,16.5 parent: 2 - - uid: 9977 + - uid: 10627 components: - type: Transform pos: 29.5,16.5 parent: 2 - - uid: 9978 + - uid: 10628 components: - type: Transform pos: 30.5,16.5 parent: 2 - - uid: 9979 + - uid: 10629 components: - type: Transform pos: 30.5,15.5 parent: 2 - - uid: 9980 + - uid: 10630 components: - type: Transform pos: 12.5,7.5 parent: 2 - - uid: 9981 + - uid: 10631 components: - type: Transform pos: 12.5,8.5 parent: 2 - - uid: 9982 + - uid: 10632 components: - type: Transform pos: 13.5,8.5 parent: 2 - - uid: 9983 + - uid: 10633 components: - type: Transform pos: 12.5,9.5 parent: 2 - - uid: 9984 + - uid: 10634 components: - type: Transform pos: 12.5,10.5 parent: 2 - - uid: 9985 + - uid: 10635 components: - type: Transform pos: 12.5,11.5 parent: 2 - - uid: 9986 + - uid: 10636 components: - type: Transform pos: 13.5,11.5 parent: 2 - - uid: 9987 + - uid: 10637 components: - type: Transform pos: 14.5,11.5 parent: 2 - - uid: 9988 + - uid: 10638 components: - type: Transform pos: 14.5,12.5 parent: 2 - - uid: 9989 + - uid: 10639 components: - type: Transform pos: 14.5,13.5 parent: 2 - - uid: 9990 + - uid: 10640 components: - type: Transform pos: 13.5,13.5 parent: 2 - - uid: 9991 + - uid: 10641 components: - type: Transform pos: 12.5,13.5 parent: 2 - - uid: 9992 + - uid: 10642 components: - type: Transform pos: 11.5,13.5 parent: 2 - - uid: 9993 + - uid: 10643 components: - type: Transform pos: 11.5,12.5 parent: 2 - - uid: 9994 + - uid: 10644 components: - type: Transform pos: 11.5,14.5 parent: 2 - - uid: 9995 + - uid: 10645 components: - type: Transform pos: 10.5,14.5 parent: 2 - - uid: 9996 + - uid: 10646 components: - type: Transform pos: 9.5,14.5 parent: 2 - - uid: 9997 + - uid: 10647 components: - type: Transform pos: 8.5,14.5 parent: 2 - - uid: 9998 + - uid: 10648 components: - type: Transform pos: 8.5,15.5 parent: 2 - - uid: 9999 + - uid: 10649 components: - type: Transform pos: 8.5,16.5 parent: 2 - - uid: 10000 + - uid: 10650 components: - type: Transform pos: 8.5,17.5 parent: 2 - - uid: 10001 + - uid: 10651 components: - type: Transform pos: 8.5,18.5 parent: 2 - - uid: 10002 + - uid: 10652 components: - type: Transform pos: 8.5,19.5 parent: 2 - - uid: 10003 + - uid: 10653 components: - type: Transform pos: 8.5,20.5 parent: 2 - - uid: 10004 + - uid: 10654 components: - type: Transform pos: 7.5,16.5 parent: 2 - - uid: 10005 + - uid: 10655 components: - type: Transform pos: 6.5,16.5 parent: 2 - - uid: 10006 + - uid: 10656 components: - type: Transform pos: 5.5,16.5 parent: 2 - - uid: 10007 + - uid: 10657 components: - type: Transform pos: 4.5,16.5 parent: 2 - - uid: 10008 + - uid: 10658 components: - type: Transform pos: 3.5,16.5 parent: 2 - - uid: 10009 + - uid: 10659 components: - type: Transform pos: 2.5,16.5 parent: 2 - - uid: 10010 + - uid: 10660 components: - type: Transform pos: 1.5,16.5 parent: 2 - - uid: 10011 + - uid: 10661 components: - type: Transform pos: 0.5,16.5 parent: 2 - - uid: 10012 + - uid: 10662 components: - type: Transform pos: -0.5,16.5 parent: 2 - - uid: 10013 + - uid: 10663 components: - type: Transform pos: -1.5,16.5 parent: 2 - - uid: 10014 + - uid: 10664 components: - type: Transform pos: -2.5,16.5 parent: 2 - - uid: 10015 + - uid: 10665 components: - type: Transform pos: -3.5,16.5 parent: 2 - - uid: 10016 + - uid: 10666 components: - type: Transform pos: -4.5,16.5 parent: 2 - - uid: 10017 + - uid: 10667 components: - type: Transform pos: -5.5,16.5 parent: 2 - - uid: 10018 + - uid: 10668 components: - type: Transform pos: -6.5,16.5 parent: 2 - - uid: 10019 + - uid: 10669 components: - type: Transform pos: -7.5,16.5 parent: 2 - - uid: 10020 + - uid: 10670 components: - type: Transform pos: -0.5,17.5 parent: 2 - - uid: 10021 + - uid: 10671 components: - type: Transform pos: -0.5,18.5 parent: 2 - - uid: 10022 + - uid: 10672 components: - type: Transform pos: -0.5,19.5 parent: 2 - - uid: 10023 + - uid: 10673 components: - type: Transform pos: -0.5,20.5 parent: 2 - - uid: 10024 + - uid: 10674 components: - type: Transform pos: -0.5,21.5 parent: 2 - - uid: 10025 + - uid: 10675 components: - type: Transform pos: -0.5,22.5 parent: 2 - - uid: 10026 + - uid: 10676 components: - type: Transform pos: 0.5,22.5 parent: 2 - - uid: 10027 + - uid: 10677 components: - type: Transform pos: 1.5,22.5 parent: 2 - - uid: 10028 + - uid: 10678 components: - type: Transform pos: 2.5,22.5 parent: 2 - - uid: 10029 + - uid: 10679 components: - type: Transform pos: 3.5,22.5 parent: 2 - - uid: 10030 + - uid: 10680 components: - type: Transform pos: 4.5,22.5 parent: 2 - - uid: 10031 + - uid: 10681 components: - type: Transform pos: 5.5,22.5 parent: 2 - - uid: 10032 + - uid: 10682 components: - type: Transform pos: 6.5,22.5 parent: 2 - - uid: 10033 + - uid: 10683 components: - type: Transform pos: 7.5,22.5 parent: 2 - - uid: 10034 + - uid: 10684 components: - type: Transform pos: 8.5,22.5 parent: 2 - - uid: 10035 + - uid: 10685 components: - type: Transform pos: 8.5,21.5 parent: 2 - - uid: 10036 + - uid: 10686 components: - type: Transform pos: 2.5,21.5 parent: 2 - - uid: 10037 + - uid: 10687 components: - type: Transform pos: 2.5,20.5 parent: 2 - - uid: 10038 + - uid: 10688 components: - type: Transform pos: 0.5,15.5 parent: 2 - - uid: 10039 + - uid: 10689 components: - type: Transform pos: 0.5,14.5 parent: 2 - - uid: 10040 + - uid: 10690 components: - type: Transform pos: 0.5,13.5 parent: 2 - - uid: 10041 + - uid: 10691 components: - type: Transform pos: 0.5,12.5 parent: 2 - - uid: 10042 + - uid: 10692 components: - type: Transform pos: 0.5,11.5 parent: 2 - - uid: 10043 + - uid: 10693 components: - type: Transform pos: 0.5,10.5 parent: 2 - - uid: 10044 + - uid: 10694 components: - type: Transform pos: 0.5,9.5 parent: 2 - - uid: 10045 + - uid: 10695 components: - type: Transform pos: 0.5,8.5 parent: 2 - - uid: 10046 + - uid: 10696 components: - type: Transform pos: 1.5,8.5 parent: 2 - - uid: 10047 + - uid: 10697 components: - type: Transform pos: 2.5,8.5 parent: 2 - - uid: 10048 + - uid: 10698 components: - type: Transform pos: 3.5,8.5 parent: 2 - - uid: 10049 + - uid: 10699 components: - type: Transform pos: 4.5,8.5 parent: 2 - - uid: 10050 + - uid: 10700 components: - type: Transform pos: 5.5,8.5 parent: 2 - - uid: 10051 + - uid: 10701 components: - type: Transform pos: 6.5,8.5 parent: 2 - - uid: 10052 + - uid: 10702 components: - type: Transform pos: 7.5,8.5 parent: 2 - - uid: 10053 + - uid: 10703 components: - type: Transform pos: 8.5,8.5 parent: 2 - - uid: 10054 + - uid: 10704 components: - type: Transform pos: 9.5,8.5 parent: 2 - - uid: 10055 + - uid: 10705 components: - type: Transform pos: 10.5,8.5 parent: 2 - - uid: 10056 + - uid: 10706 components: - type: Transform pos: -0.5,10.5 parent: 2 - - uid: 10057 + - uid: 10707 components: - type: Transform pos: -1.5,10.5 parent: 2 - - uid: 10058 + - uid: 10708 components: - type: Transform pos: -2.5,10.5 parent: 2 - - uid: 10059 + - uid: 10709 components: - type: Transform pos: -3.5,10.5 parent: 2 - - uid: 10060 + - uid: 10710 components: - type: Transform pos: -4.5,10.5 parent: 2 - - uid: 10061 + - uid: 10711 components: - type: Transform pos: -5.5,10.5 parent: 2 - - uid: 10062 + - uid: 10712 components: - type: Transform pos: -6.5,10.5 parent: 2 - - uid: 10063 + - uid: 10713 components: - type: Transform pos: -7.5,10.5 parent: 2 - - uid: 10064 + - uid: 10714 components: - type: Transform pos: -8.5,10.5 parent: 2 - - uid: 10065 + - uid: 10715 components: - type: Transform pos: -8.5,9.5 parent: 2 - - uid: 10066 + - uid: 10716 components: - type: Transform pos: -8.5,8.5 parent: 2 - - uid: 10067 + - uid: 10717 components: - type: Transform pos: 0.5,6.5 parent: 2 - - uid: 10068 + - uid: 10718 components: - type: Transform pos: 0.5,5.5 parent: 2 - - uid: 10069 + - uid: 10719 components: - type: Transform pos: -0.5,5.5 parent: 2 - - uid: 10070 + - uid: 10720 components: - type: Transform pos: -1.5,5.5 parent: 2 - - uid: 10074 + - uid: 10721 components: - type: Transform pos: -36.5,8.5 parent: 2 - - uid: 10075 + - uid: 10722 components: - type: Transform pos: -37.5,8.5 parent: 2 - - uid: 10076 + - uid: 10723 components: - type: Transform pos: -38.5,8.5 parent: 2 - - uid: 10077 + - uid: 10724 components: - type: Transform pos: -39.5,8.5 parent: 2 - - uid: 10078 + - uid: 10725 components: - type: Transform pos: -39.5,7.5 parent: 2 - - uid: 10079 + - uid: 10726 components: - type: Transform pos: -39.5,6.5 parent: 2 - - uid: 10080 + - uid: 10727 components: - type: Transform pos: -39.5,5.5 parent: 2 - - uid: 10081 + - uid: 10728 components: - type: Transform pos: -39.5,4.5 parent: 2 - - uid: 10082 + - uid: 10729 components: - type: Transform pos: -39.5,3.5 parent: 2 - - uid: 10083 + - uid: 10730 components: - type: Transform pos: -39.5,2.5 parent: 2 - - uid: 10084 + - uid: 10731 components: - type: Transform pos: -39.5,1.5 parent: 2 - - uid: 10085 + - uid: 10732 components: - type: Transform pos: -38.5,1.5 parent: 2 - - uid: 10086 + - uid: 10733 components: - type: Transform pos: -37.5,1.5 parent: 2 - - uid: 10087 + - uid: 10734 components: - type: Transform pos: -36.5,1.5 parent: 2 - - uid: 10088 + - uid: 10735 components: - type: Transform pos: -35.5,1.5 parent: 2 - - uid: 10089 + - uid: 10736 components: - type: Transform pos: -34.5,1.5 parent: 2 - - uid: 10090 + - uid: 10737 components: - type: Transform pos: -33.5,1.5 parent: 2 - - uid: 10091 + - uid: 10738 components: - type: Transform pos: -32.5,1.5 parent: 2 - - uid: 10092 + - uid: 10739 components: - type: Transform pos: -31.5,1.5 parent: 2 - - uid: 10093 + - uid: 10740 components: - type: Transform pos: -30.5,1.5 parent: 2 - - uid: 10094 + - uid: 10741 components: - type: Transform pos: -29.5,1.5 parent: 2 - - uid: 10095 + - uid: 10742 components: - type: Transform pos: -30.5,2.5 parent: 2 - - uid: 10096 + - uid: 10743 components: - type: Transform pos: -30.5,3.5 parent: 2 - - uid: 10097 + - uid: 10744 components: - type: Transform pos: -30.5,4.5 parent: 2 - - uid: 10098 + - uid: 10745 components: - type: Transform pos: -30.5,5.5 parent: 2 - - uid: 10099 + - uid: 10746 components: - type: Transform pos: -30.5,6.5 parent: 2 - - uid: 10100 + - uid: 10747 components: - type: Transform pos: -30.5,7.5 parent: 2 - - uid: 10101 + - uid: 10748 components: - type: Transform pos: -30.5,8.5 parent: 2 - - uid: 10102 + - uid: 10749 components: - type: Transform pos: -30.5,9.5 parent: 2 - - uid: 10103 + - uid: 10750 components: - type: Transform pos: -30.5,10.5 parent: 2 - - uid: 10104 + - uid: 10751 components: - type: Transform pos: -31.5,10.5 parent: 2 - - uid: 10105 + - uid: 10752 components: - type: Transform pos: -32.5,10.5 parent: 2 - - uid: 10106 + - uid: 10753 components: - type: Transform pos: -28.5,1.5 parent: 2 - - uid: 10107 + - uid: 10754 components: - type: Transform pos: -27.5,1.5 parent: 2 - - uid: 10108 + - uid: 10755 components: - type: Transform pos: -26.5,1.5 parent: 2 - - uid: 10109 + - uid: 10756 components: - type: Transform pos: -25.5,1.5 parent: 2 - - uid: 10110 + - uid: 10757 components: - type: Transform pos: -24.5,1.5 parent: 2 - - uid: 10111 + - uid: 10758 components: - type: Transform pos: -23.5,1.5 parent: 2 - - uid: 10112 + - uid: 10759 components: - type: Transform pos: -22.5,1.5 parent: 2 - - uid: 10113 + - uid: 10760 components: - type: Transform pos: -21.5,1.5 parent: 2 - - uid: 10114 + - uid: 10761 components: - type: Transform pos: -20.5,1.5 parent: 2 - - uid: 10115 + - uid: 10762 components: - type: Transform pos: -20.5,2.5 parent: 2 - - uid: 10116 + - uid: 10763 components: - type: Transform pos: -20.5,3.5 parent: 2 - - uid: 10117 + - uid: 10764 components: - type: Transform pos: -20.5,4.5 parent: 2 - - uid: 10118 + - uid: 10765 components: - type: Transform pos: -19.5,4.5 parent: 2 - - uid: 10119 + - uid: 10766 components: - type: Transform pos: -18.5,4.5 parent: 2 - - uid: 10120 + - uid: 10767 components: - type: Transform pos: -40.5,8.5 parent: 2 - - uid: 10121 + - uid: 10768 components: - type: Transform pos: -41.5,8.5 parent: 2 - - uid: 10122 + - uid: 10769 components: - type: Transform pos: -42.5,8.5 parent: 2 - - uid: 10123 + - uid: 10770 components: - type: Transform pos: -43.5,8.5 parent: 2 - - uid: 10124 + - uid: 10771 components: - type: Transform pos: -44.5,8.5 parent: 2 - - uid: 10125 + - uid: 10772 components: - type: Transform pos: -45.5,8.5 parent: 2 - - uid: 10126 + - uid: 10773 components: - type: Transform pos: -46.5,8.5 parent: 2 - - uid: 10127 + - uid: 10774 components: - type: Transform pos: -47.5,8.5 parent: 2 - - uid: 10128 + - uid: 10775 components: - type: Transform pos: -48.5,8.5 parent: 2 - - uid: 10129 + - uid: 10776 components: - type: Transform pos: -49.5,8.5 parent: 2 - - uid: 10130 + - uid: 10777 components: - type: Transform pos: -49.5,7.5 parent: 2 - - uid: 10131 + - uid: 10778 components: - type: Transform pos: -49.5,6.5 parent: 2 - - uid: 10132 + - uid: 10779 components: - type: Transform pos: -49.5,5.5 parent: 2 - - uid: 10133 + - uid: 10780 components: - type: Transform pos: -49.5,4.5 parent: 2 - - uid: 10134 + - uid: 10781 components: - type: Transform pos: -49.5,3.5 parent: 2 - - uid: 10135 + - uid: 10782 components: - type: Transform pos: -49.5,1.5 parent: 2 - - uid: 10136 + - uid: 10783 components: - type: Transform pos: -50.5,1.5 parent: 2 - - uid: 10137 + - uid: 10784 components: - type: Transform pos: -51.5,1.5 parent: 2 - - uid: 10138 + - uid: 10785 components: - type: Transform pos: -49.5,0.5 parent: 2 - - uid: 10139 + - uid: 10786 components: - type: Transform pos: -49.5,-0.5 parent: 2 - - uid: 10140 + - uid: 10787 components: - type: Transform pos: -49.5,-1.5 parent: 2 - - uid: 10141 + - uid: 10788 components: - type: Transform pos: -49.5,-2.5 parent: 2 - - uid: 10142 + - uid: 10789 components: - type: Transform pos: -50.5,-2.5 parent: 2 - - uid: 10143 + - uid: 10790 components: - type: Transform pos: -51.5,-2.5 parent: 2 - - uid: 10144 + - uid: 10791 components: - type: Transform pos: -52.5,-2.5 parent: 2 - - uid: 10145 + - uid: 10792 components: - type: Transform pos: -53.5,-2.5 parent: 2 - - uid: 10146 + - uid: 10793 components: - type: Transform pos: -54.5,-2.5 parent: 2 - - uid: 10147 + - uid: 10794 components: - type: Transform pos: -54.5,-3.5 parent: 2 - - uid: 10148 + - uid: 10795 components: - type: Transform pos: -54.5,-4.5 parent: 2 - - uid: 10149 + - uid: 10796 components: - type: Transform pos: -54.5,-5.5 parent: 2 - - uid: 10150 + - uid: 10797 components: - type: Transform pos: -54.5,-6.5 parent: 2 - - uid: 10151 + - uid: 10798 components: - type: Transform pos: -53.5,-6.5 parent: 2 - - uid: 10152 + - uid: 10799 components: - type: Transform pos: -52.5,-6.5 parent: 2 - - uid: 10153 + - uid: 10800 components: - type: Transform pos: -51.5,-6.5 parent: 2 - - uid: 10154 + - uid: 10801 components: - type: Transform pos: -48.5,3.5 parent: 2 - - uid: 10155 + - uid: 10802 components: - type: Transform pos: -47.5,3.5 parent: 2 - - uid: 10156 + - uid: 10803 components: - type: Transform pos: -46.5,3.5 parent: 2 - - uid: 10157 + - uid: 10804 components: - type: Transform pos: -45.5,3.5 parent: 2 - - uid: 10158 + - uid: 10805 components: - type: Transform pos: -44.5,3.5 parent: 2 - - uid: 10159 + - uid: 10806 components: - type: Transform pos: -43.5,3.5 parent: 2 - - uid: 10160 + - uid: 10807 components: - type: Transform pos: -42.5,3.5 parent: 2 - - uid: 10161 + - uid: 10808 components: - type: Transform pos: -42.5,2.5 parent: 2 - - uid: 10162 + - uid: 10809 components: - type: Transform pos: -42.5,1.5 parent: 2 - - uid: 10163 + - uid: 10810 components: - type: Transform pos: -42.5,0.5 parent: 2 - - uid: 10164 + - uid: 10811 components: - type: Transform pos: -42.5,-0.5 parent: 2 - - uid: 10165 + - uid: 10812 components: - type: Transform pos: -42.5,-1.5 parent: 2 - - uid: 10166 + - uid: 10813 components: - type: Transform pos: -42.5,-2.5 parent: 2 - - uid: 10167 + - uid: 10814 components: - type: Transform pos: -42.5,-3.5 parent: 2 - - uid: 10168 + - uid: 10815 components: - type: Transform pos: -41.5,-3.5 parent: 2 - - uid: 10169 + - uid: 10816 components: - type: Transform pos: -40.5,-3.5 parent: 2 - - uid: 10170 + - uid: 10817 components: - type: Transform pos: -39.5,-3.5 parent: 2 - - uid: 10171 + - uid: 10818 components: - type: Transform pos: -38.5,-3.5 parent: 2 - - uid: 10172 + - uid: 10819 components: - type: Transform pos: -37.5,-3.5 parent: 2 - - uid: 10173 + - uid: 10820 components: - type: Transform pos: -37.5,-2.5 parent: 2 - - uid: 10174 + - uid: 10821 components: - type: Transform pos: -36.5,-2.5 parent: 2 - - uid: 10175 + - uid: 10822 components: - type: Transform pos: -35.5,-2.5 parent: 2 - - uid: 10176 + - uid: 10823 components: - type: Transform pos: -34.5,-2.5 parent: 2 - - uid: 10177 + - uid: 10824 components: - type: Transform pos: -33.5,-2.5 parent: 2 - - uid: 10178 + - uid: 10825 components: - type: Transform pos: -32.5,-2.5 parent: 2 - - uid: 10179 + - uid: 10826 components: - type: Transform pos: -32.5,-1.5 parent: 2 - - uid: 10180 + - uid: 10827 components: - type: Transform pos: -32.5,-0.5 parent: 2 - - uid: 10181 + - uid: 10828 components: - type: Transform pos: -32.5,0.5 parent: 2 - - uid: 10182 + - uid: 10829 components: - type: Transform pos: -42.5,-4.5 parent: 2 - - uid: 10183 + - uid: 10830 components: - type: Transform pos: -42.5,-5.5 parent: 2 - - uid: 10184 + - uid: 10831 components: - type: Transform pos: -42.5,-6.5 parent: 2 - - uid: 10185 + - uid: 10832 components: - type: Transform pos: -41.5,-6.5 parent: 2 - - uid: 10186 + - uid: 10833 components: - type: Transform pos: -40.5,-6.5 parent: 2 - - uid: 10187 + - uid: 10834 components: - type: Transform pos: -42.5,-7.5 parent: 2 - - uid: 10188 + - uid: 10835 components: - type: Transform pos: -42.5,-8.5 parent: 2 - - uid: 10189 + - uid: 10836 components: - type: Transform pos: -42.5,-9.5 parent: 2 - - uid: 10190 + - uid: 10837 components: - type: Transform pos: -42.5,-10.5 parent: 2 - - uid: 10191 + - uid: 10838 components: - type: Transform pos: -42.5,-11.5 parent: 2 - - uid: 10192 + - uid: 10839 components: - type: Transform pos: -42.5,-12.5 parent: 2 - - uid: 10193 + - uid: 10840 components: - type: Transform pos: -42.5,-13.5 parent: 2 - - uid: 10194 + - uid: 10841 components: - type: Transform pos: -42.5,-14.5 parent: 2 - - uid: 10195 + - uid: 10842 components: - type: Transform pos: -41.5,-8.5 parent: 2 - - uid: 10196 + - uid: 10843 components: - type: Transform pos: -40.5,-8.5 parent: 2 - - uid: 10197 + - uid: 10844 components: - type: Transform pos: -39.5,-8.5 parent: 2 - - uid: 10198 + - uid: 10845 components: - type: Transform pos: -38.5,-8.5 parent: 2 - - uid: 10199 + - uid: 10846 components: - type: Transform pos: -37.5,-8.5 parent: 2 - - uid: 10200 + - uid: 10847 components: - type: Transform pos: -36.5,-8.5 parent: 2 - - uid: 10201 + - uid: 10848 components: - type: Transform pos: -36.5,-9.5 parent: 2 - - uid: 10202 + - uid: 10849 components: - type: Transform pos: -36.5,-10.5 parent: 2 - - uid: 10203 + - uid: 10850 components: - type: Transform pos: -37.5,-10.5 parent: 2 - - uid: 10204 + - uid: 10851 components: - type: Transform pos: -42.5,-15.5 parent: 2 - - uid: 10205 + - uid: 10852 components: - type: Transform pos: -43.5,-15.5 parent: 2 - - uid: 10206 + - uid: 10853 components: - type: Transform pos: -44.5,-15.5 parent: 2 - - uid: 10207 + - uid: 10854 components: - type: Transform pos: -45.5,-15.5 parent: 2 - - uid: 10208 + - uid: 10855 components: - type: Transform pos: -46.5,-15.5 parent: 2 - - uid: 10209 + - uid: 10856 components: - type: Transform pos: -47.5,-15.5 parent: 2 - - uid: 10210 + - uid: 10857 components: - type: Transform pos: -48.5,-15.5 parent: 2 - - uid: 10211 + - uid: 10858 components: - type: Transform pos: -49.5,-15.5 parent: 2 - - uid: 10212 + - uid: 10859 components: - type: Transform pos: -50.5,-15.5 parent: 2 - - uid: 10213 + - uid: 10860 components: - type: Transform pos: -51.5,-15.5 parent: 2 - - uid: 10214 + - uid: 10861 components: - type: Transform pos: -52.5,-15.5 parent: 2 - - uid: 10215 + - uid: 10862 components: - type: Transform pos: -52.5,-14.5 parent: 2 - - uid: 10216 + - uid: 10863 components: - type: Transform pos: -52.5,-13.5 parent: 2 - - uid: 10217 + - uid: 10864 components: - type: Transform pos: -52.5,-12.5 parent: 2 - - uid: 10218 + - uid: 10865 components: - type: Transform pos: -52.5,-11.5 parent: 2 - - uid: 10221 + - uid: 10866 components: - type: Transform pos: -59.5,-25.5 parent: 2 - - uid: 10223 + - uid: 10867 components: - type: Transform pos: -59.5,-27.5 parent: 2 - - uid: 10224 + - uid: 10868 components: - type: Transform pos: -59.5,-28.5 parent: 2 - - uid: 10225 + - uid: 10869 components: - type: Transform pos: -58.5,-28.5 parent: 2 - - uid: 10226 + - uid: 10870 components: - type: Transform pos: -57.5,-28.5 parent: 2 - - uid: 10227 + - uid: 10871 components: - type: Transform pos: -56.5,-28.5 parent: 2 - - uid: 10228 + - uid: 10872 components: - type: Transform pos: -55.5,-28.5 parent: 2 - - uid: 10229 + - uid: 10873 components: - type: Transform pos: -54.5,-28.5 parent: 2 - - uid: 10230 + - uid: 10874 components: - type: Transform pos: -53.5,-28.5 parent: 2 - - uid: 10231 + - uid: 10875 components: - type: Transform pos: -52.5,-28.5 parent: 2 - - uid: 10232 + - uid: 10876 components: - type: Transform pos: -51.5,-28.5 parent: 2 - - uid: 10233 + - uid: 10877 components: - type: Transform pos: -50.5,-28.5 parent: 2 - - uid: 10234 + - uid: 10878 components: - type: Transform pos: -49.5,-28.5 parent: 2 - - uid: 10235 + - uid: 10879 components: - type: Transform pos: -48.5,-28.5 parent: 2 - - uid: 10236 + - uid: 10880 components: - type: Transform pos: -47.5,-28.5 parent: 2 - - uid: 10237 + - uid: 10881 components: - type: Transform pos: -46.5,-28.5 parent: 2 - - uid: 10238 + - uid: 10882 components: - type: Transform pos: -45.5,-28.5 parent: 2 - - uid: 10239 + - uid: 10883 components: - type: Transform pos: -44.5,-28.5 parent: 2 - - uid: 10240 + - uid: 10884 components: - type: Transform pos: -44.5,-27.5 parent: 2 - - uid: 10241 + - uid: 10885 components: - type: Transform pos: -44.5,-26.5 parent: 2 - - uid: 10242 + - uid: 10886 components: - type: Transform pos: -52.5,-27.5 parent: 2 - - uid: 10243 + - uid: 10887 components: - type: Transform pos: -52.5,-26.5 parent: 2 - - uid: 10244 + - uid: 10888 components: - type: Transform pos: -52.5,-25.5 parent: 2 - - uid: 10245 + - uid: 10889 components: - type: Transform pos: -52.5,-24.5 parent: 2 - - uid: 10246 + - uid: 10890 components: - type: Transform pos: -51.5,-24.5 parent: 2 - - uid: 10247 + - uid: 10891 components: - type: Transform pos: -50.5,-24.5 parent: 2 - - uid: 10248 + - uid: 10892 components: - type: Transform pos: -50.5,-29.5 parent: 2 - - uid: 10249 + - uid: 10893 components: - type: Transform pos: -50.5,-30.5 parent: 2 - - uid: 10250 + - uid: 10894 components: - type: Transform pos: -50.5,-31.5 parent: 2 - - uid: 10251 + - uid: 10895 components: - type: Transform pos: -50.5,-32.5 parent: 2 - - uid: 10252 + - uid: 10896 components: - type: Transform pos: -50.5,-33.5 parent: 2 - - uid: 10253 + - uid: 10897 components: - type: Transform pos: -51.5,-33.5 parent: 2 - - uid: 10254 + - uid: 10898 components: - type: Transform pos: -43.5,-28.5 parent: 2 - - uid: 10255 + - uid: 10899 components: - type: Transform pos: -42.5,-28.5 parent: 2 - - uid: 10256 + - uid: 10900 components: - type: Transform pos: -41.5,-28.5 parent: 2 - - uid: 10257 + - uid: 10901 components: - type: Transform pos: -41.5,-29.5 parent: 2 - - uid: 10258 + - uid: 10902 components: - type: Transform pos: -41.5,-30.5 parent: 2 - - uid: 10259 + - uid: 10903 components: - type: Transform pos: -41.5,-31.5 parent: 2 - - uid: 10260 + - uid: 10904 components: - type: Transform pos: -41.5,-32.5 parent: 2 - - uid: 10261 + - uid: 10905 components: - type: Transform pos: -41.5,-33.5 parent: 2 - - uid: 10262 + - uid: 10906 components: - type: Transform pos: -41.5,-34.5 parent: 2 - - uid: 10263 + - uid: 10907 components: - type: Transform pos: -41.5,-35.5 parent: 2 - - uid: 10264 + - uid: 10908 components: - type: Transform pos: -41.5,-36.5 parent: 2 - - uid: 10265 + - uid: 10909 components: - type: Transform pos: -41.5,-37.5 parent: 2 - - uid: 10266 + - uid: 10910 components: - type: Transform pos: -42.5,-37.5 parent: 2 - - uid: 10267 + - uid: 10911 components: - type: Transform pos: -43.5,-37.5 parent: 2 - - uid: 10268 + - uid: 10912 components: - type: Transform pos: -44.5,-37.5 parent: 2 - - uid: 10269 + - uid: 10913 components: - type: Transform pos: -45.5,-37.5 parent: 2 - - uid: 10270 + - uid: 10914 components: - type: Transform pos: -40.5,-33.5 parent: 2 - - uid: 10271 + - uid: 10915 components: - type: Transform pos: -39.5,-33.5 parent: 2 - - uid: 10272 + - uid: 10916 components: - type: Transform pos: -41.5,-27.5 parent: 2 - - uid: 10273 + - uid: 10917 components: - type: Transform pos: -41.5,-26.5 parent: 2 - - uid: 10274 + - uid: 10918 components: - type: Transform pos: -41.5,-25.5 parent: 2 - - uid: 10275 + - uid: 10919 components: - type: Transform pos: -41.5,-24.5 parent: 2 - - uid: 10276 + - uid: 10920 components: - type: Transform pos: -41.5,-23.5 parent: 2 - - uid: 10277 + - uid: 10921 components: - type: Transform pos: -41.5,-22.5 parent: 2 - - uid: 10278 + - uid: 10922 components: - type: Transform pos: -41.5,-21.5 parent: 2 - - uid: 10279 + - uid: 10923 components: - type: Transform pos: -41.5,-20.5 parent: 2 - - uid: 10280 + - uid: 10924 components: - type: Transform pos: -41.5,-19.5 parent: 2 - - uid: 10281 + - uid: 10925 components: - type: Transform pos: -41.5,-18.5 parent: 2 - - uid: 10282 + - uid: 10926 components: - type: Transform pos: -40.5,-18.5 parent: 2 - - uid: 10283 + - uid: 10927 components: - type: Transform pos: -39.5,-18.5 parent: 2 - - uid: 10284 + - uid: 10928 components: - type: Transform pos: -59.5,-39.5 parent: 2 - - uid: 10285 + - uid: 10929 components: - type: Transform pos: -59.5,-38.5 parent: 2 - - uid: 10286 + - uid: 10930 components: - type: Transform pos: -59.5,-37.5 parent: 2 - - uid: 10287 + - uid: 10931 components: - type: Transform pos: -59.5,-36.5 parent: 2 - - uid: 10288 + - uid: 10932 components: - type: Transform pos: -59.5,-35.5 parent: 2 - - uid: 10289 + - uid: 10933 components: - type: Transform pos: -59.5,-34.5 parent: 2 - - uid: 10290 + - uid: 10934 components: - type: Transform pos: -59.5,-33.5 parent: 2 - - uid: 10291 + - uid: 10935 components: - type: Transform pos: -59.5,-32.5 parent: 2 - - uid: 10292 + - uid: 10936 components: - type: Transform pos: -59.5,-31.5 parent: 2 - - uid: 10293 + - uid: 10937 components: - type: Transform pos: -59.5,-30.5 parent: 2 - - uid: 10294 + - uid: 10938 components: - type: Transform pos: -59.5,-29.5 parent: 2 - - uid: 10295 + - uid: 10939 components: - type: Transform pos: 50.5,-86.5 parent: 2 - - uid: 10296 + - uid: 10940 components: - type: Transform pos: -68.5,-53.5 parent: 2 - - uid: 10297 + - uid: 10941 components: - type: Transform pos: -67.5,-53.5 parent: 2 - - uid: 10298 + - uid: 10942 components: - type: Transform pos: -66.5,-53.5 parent: 2 - - uid: 10299 + - uid: 10943 components: - type: Transform pos: -65.5,-53.5 parent: 2 - - uid: 10300 + - uid: 10944 components: - type: Transform pos: -64.5,-53.5 parent: 2 - - uid: 10301 + - uid: 10945 components: - type: Transform pos: -64.5,-52.5 parent: 2 - - uid: 10302 + - uid: 10946 components: - type: Transform pos: -63.5,-52.5 parent: 2 - - uid: 10303 + - uid: 10947 components: - type: Transform pos: -62.5,-52.5 parent: 2 - - uid: 10304 + - uid: 10948 components: - type: Transform pos: -61.5,-52.5 parent: 2 - - uid: 10305 + - uid: 10949 components: - type: Transform pos: -60.5,-52.5 parent: 2 - - uid: 10306 + - uid: 10950 components: - type: Transform pos: -59.5,-52.5 parent: 2 - - uid: 10307 + - uid: 10951 components: - type: Transform pos: -59.5,-51.5 parent: 2 - - uid: 10308 + - uid: 10952 components: - type: Transform pos: -59.5,-50.5 parent: 2 - - uid: 10309 + - uid: 10953 components: - type: Transform pos: -59.5,-49.5 parent: 2 - - uid: 10310 + - uid: 10954 components: - type: Transform pos: -59.5,-48.5 parent: 2 - - uid: 10311 + - uid: 10955 components: - type: Transform pos: -59.5,-47.5 parent: 2 - - uid: 10312 + - uid: 10956 components: - type: Transform pos: -59.5,-46.5 parent: 2 - - uid: 10313 + - uid: 10957 components: - type: Transform pos: -59.5,-45.5 parent: 2 - - uid: 10314 + - uid: 10958 components: - type: Transform pos: -59.5,-44.5 parent: 2 - - uid: 10315 + - uid: 10959 components: - type: Transform pos: -59.5,-43.5 parent: 2 - - uid: 10316 + - uid: 10960 components: - type: Transform pos: -60.5,-43.5 parent: 2 - - uid: 10317 + - uid: 10961 components: - type: Transform pos: -61.5,-43.5 parent: 2 - - uid: 10318 + - uid: 10962 components: - type: Transform pos: -62.5,-43.5 parent: 2 - - uid: 10319 + - uid: 10963 components: - type: Transform pos: -63.5,-43.5 parent: 2 - - uid: 10320 + - uid: 10964 components: - type: Transform pos: -64.5,-43.5 parent: 2 - - uid: 10321 + - uid: 10965 components: - type: Transform pos: -65.5,-43.5 parent: 2 - - uid: 10322 + - uid: 10966 components: - type: Transform pos: -66.5,-43.5 parent: 2 - - uid: 10323 + - uid: 10967 components: - type: Transform pos: -67.5,-43.5 parent: 2 - - uid: 10324 + - uid: 10968 components: - type: Transform pos: -68.5,-43.5 parent: 2 - - uid: 10325 + - uid: 10969 components: - type: Transform pos: -69.5,-43.5 parent: 2 - - uid: 10326 + - uid: 10970 components: - type: Transform pos: -70.5,-43.5 parent: 2 - - uid: 10327 + - uid: 10971 components: - type: Transform pos: -71.5,-43.5 parent: 2 - - uid: 10328 + - uid: 10972 components: - type: Transform pos: -72.5,-43.5 parent: 2 - - uid: 10329 + - uid: 10973 components: - type: Transform pos: -73.5,-43.5 parent: 2 - - uid: 10330 + - uid: 10974 components: - type: Transform pos: -74.5,-43.5 parent: 2 - - uid: 10331 + - uid: 10975 components: - type: Transform pos: -75.5,-43.5 parent: 2 - - uid: 10332 + - uid: 10976 components: - type: Transform pos: -76.5,-43.5 parent: 2 - - uid: 10333 + - uid: 10977 components: - type: Transform pos: -76.5,-44.5 parent: 2 - - uid: 10334 + - uid: 10978 components: - type: Transform pos: -76.5,-45.5 parent: 2 - - uid: 10335 + - uid: 10979 components: - type: Transform pos: -76.5,-46.5 parent: 2 - - uid: 10336 + - uid: 10980 components: - type: Transform pos: -60.5,-45.5 parent: 2 - - uid: 10337 + - uid: 10981 components: - type: Transform pos: -76.5,-42.5 parent: 2 - - uid: 10338 + - uid: 10982 components: - type: Transform pos: -76.5,-41.5 parent: 2 - - uid: 10339 + - uid: 10983 components: - type: Transform pos: -76.5,-40.5 parent: 2 - - uid: 10340 + - uid: 10984 components: - type: Transform pos: -76.5,-39.5 parent: 2 - - uid: 10341 + - uid: 10985 components: - type: Transform pos: -76.5,-38.5 parent: 2 - - uid: 10342 + - uid: 10986 components: - type: Transform pos: -77.5,-38.5 parent: 2 - - uid: 10343 + - uid: 10987 components: - type: Transform pos: -58.5,-52.5 parent: 2 - - uid: 10344 + - uid: 10988 components: - type: Transform pos: -57.5,-52.5 parent: 2 - - uid: 10345 + - uid: 10989 components: - type: Transform pos: -56.5,-52.5 parent: 2 - - uid: 10346 + - uid: 10990 components: - type: Transform pos: -55.5,-52.5 parent: 2 - - uid: 10347 + - uid: 10991 components: - type: Transform pos: -54.5,-52.5 parent: 2 - - uid: 10348 + - uid: 10992 components: - type: Transform pos: -53.5,-52.5 parent: 2 - - uid: 10349 + - uid: 10993 components: - type: Transform pos: -52.5,-52.5 parent: 2 - - uid: 10350 + - uid: 10994 components: - type: Transform pos: -51.5,-52.5 parent: 2 - - uid: 10351 + - uid: 10995 components: - type: Transform pos: -50.5,-52.5 parent: 2 - - uid: 10352 + - uid: 10996 components: - type: Transform pos: -49.5,-52.5 parent: 2 - - uid: 10353 + - uid: 10997 components: - type: Transform pos: -49.5,-53.5 parent: 2 - - uid: 10354 + - uid: 10998 components: - type: Transform pos: -49.5,-54.5 parent: 2 - - uid: 10355 + - uid: 10999 components: - type: Transform pos: -49.5,-55.5 parent: 2 - - uid: 10356 + - uid: 11000 components: - type: Transform pos: -50.5,-55.5 parent: 2 - - uid: 10357 + - uid: 11001 components: - type: Transform pos: -51.5,-55.5 parent: 2 - - uid: 10358 + - uid: 11002 components: - type: Transform pos: -51.5,-56.5 parent: 2 - - uid: 10359 + - uid: 11003 components: - type: Transform pos: -51.5,-57.5 parent: 2 - - uid: 10360 + - uid: 11004 components: - type: Transform pos: -51.5,-58.5 parent: 2 - - uid: 10361 + - uid: 11005 components: - type: Transform pos: -51.5,-59.5 parent: 2 - - uid: 10362 + - uid: 11006 components: - type: Transform pos: -51.5,-60.5 parent: 2 - - uid: 10363 + - uid: 11007 components: - type: Transform pos: -51.5,-61.5 parent: 2 - - uid: 10364 + - uid: 11008 components: - type: Transform pos: -51.5,-62.5 parent: 2 - - uid: 10365 + - uid: 11009 components: - type: Transform pos: -51.5,-63.5 parent: 2 - - uid: 10366 + - uid: 11010 components: - type: Transform pos: -51.5,-64.5 parent: 2 - - uid: 10367 + - uid: 11011 components: - type: Transform pos: -50.5,-57.5 parent: 2 - - uid: 10368 + - uid: 11012 components: - type: Transform pos: -49.5,-57.5 parent: 2 - - uid: 10369 + - uid: 11013 components: - type: Transform pos: -51.5,-65.5 parent: 2 - - uid: 10370 + - uid: 11014 components: - type: Transform pos: -52.5,-65.5 parent: 2 - - uid: 10371 + - uid: 11015 components: - type: Transform pos: -53.5,-65.5 parent: 2 - - uid: 10372 + - uid: 11016 components: - type: Transform pos: -54.5,-65.5 parent: 2 - - uid: 10373 + - uid: 11017 components: - type: Transform pos: -55.5,-65.5 parent: 2 - - uid: 10374 + - uid: 11018 components: - type: Transform pos: -56.5,-65.5 parent: 2 - - uid: 10375 + - uid: 11019 components: - type: Transform pos: -57.5,-65.5 parent: 2 - - uid: 10376 + - uid: 11020 components: - type: Transform pos: -57.5,-64.5 parent: 2 - - uid: 10377 + - uid: 11021 components: - type: Transform pos: -57.5,-63.5 parent: 2 - - uid: 10378 + - uid: 11022 components: - type: Transform pos: -57.5,-62.5 parent: 2 - - uid: 10379 + - uid: 11023 components: - type: Transform pos: -57.5,-61.5 parent: 2 - - uid: 10380 + - uid: 11024 components: - type: Transform pos: -57.5,-60.5 parent: 2 - - uid: 10381 + - uid: 11025 components: - type: Transform pos: -58.5,-60.5 parent: 2 - - uid: 10382 + - uid: 11026 components: - type: Transform pos: -59.5,-60.5 parent: 2 - - uid: 10383 + - uid: 11027 components: - type: Transform pos: -60.5,-60.5 parent: 2 - - uid: 10384 + - uid: 11028 components: - type: Transform pos: -61.5,-60.5 parent: 2 - - uid: 10385 + - uid: 11029 components: - type: Transform pos: -62.5,-60.5 parent: 2 - - uid: 10386 + - uid: 11030 components: - type: Transform pos: -63.5,-60.5 parent: 2 - - uid: 10387 + - uid: 11031 components: - type: Transform pos: -64.5,-60.5 parent: 2 - - uid: 10388 + - uid: 11032 components: - type: Transform pos: -64.5,-59.5 parent: 2 - - uid: 10389 + - uid: 11033 components: - type: Transform pos: -64.5,-58.5 parent: 2 - - uid: 10390 + - uid: 11034 components: - type: Transform pos: -64.5,-57.5 parent: 2 - - uid: 10391 + - uid: 11035 components: - type: Transform pos: -64.5,-56.5 parent: 2 - - uid: 10392 + - uid: 11036 components: - type: Transform pos: -64.5,-55.5 parent: 2 - - uid: 10393 + - uid: 11037 components: - type: Transform pos: -64.5,-54.5 parent: 2 - - uid: 10394 + - uid: 11038 components: - type: Transform pos: -58.5,-65.5 parent: 2 - - uid: 10395 + - uid: 11039 components: - type: Transform pos: -59.5,-65.5 parent: 2 - - uid: 10396 + - uid: 11040 components: - type: Transform pos: -60.5,-65.5 parent: 2 - - uid: 10397 + - uid: 11041 components: - type: Transform pos: -61.5,-65.5 parent: 2 - - uid: 10398 + - uid: 11042 components: - type: Transform pos: -62.5,-65.5 parent: 2 - - uid: 10399 + - uid: 11043 components: - type: Transform pos: -63.5,-65.5 parent: 2 - - uid: 10400 + - uid: 11044 components: - type: Transform pos: -64.5,-65.5 parent: 2 - - uid: 10401 + - uid: 11045 components: - type: Transform pos: -65.5,-65.5 parent: 2 - - uid: 10402 + - uid: 11046 components: - type: Transform pos: -65.5,-64.5 parent: 2 - - uid: 10403 + - uid: 11047 components: - type: Transform pos: -65.5,-63.5 parent: 2 - - uid: 10404 + - uid: 11048 components: - type: Transform pos: -50.5,-65.5 parent: 2 - - uid: 10405 + - uid: 11049 components: - type: Transform pos: -49.5,-65.5 parent: 2 - - uid: 10406 + - uid: 11050 components: - type: Transform pos: -49.5,-66.5 parent: 2 - - uid: 10407 + - uid: 11051 components: - type: Transform pos: -49.5,-67.5 parent: 2 - - uid: 10408 + - uid: 11052 components: - type: Transform pos: -52.5,-68.5 parent: 2 - - uid: 10409 + - uid: 11053 components: - type: Transform pos: -58.5,-69.5 parent: 2 - - uid: 10410 + - uid: 11054 components: - type: Transform pos: -58.5,-68.5 parent: 2 - - uid: 10411 + - uid: 11055 components: - type: Transform pos: -58.5,-67.5 parent: 2 - - uid: 10412 + - uid: 11056 components: - type: Transform pos: -58.5,-66.5 parent: 2 - - uid: 10413 + - uid: 11057 components: - type: Transform pos: -41.5,-89.5 parent: 2 - - uid: 10414 + - uid: 11058 components: - type: Transform pos: -41.5,-88.5 parent: 2 - - uid: 10415 + - uid: 11059 components: - type: Transform pos: -40.5,-88.5 parent: 2 - - uid: 10416 + - uid: 11060 components: - type: Transform pos: -39.5,-88.5 parent: 2 - - uid: 10417 + - uid: 11061 components: - type: Transform pos: -38.5,-88.5 parent: 2 - - uid: 10418 + - uid: 11062 components: - type: Transform pos: -38.5,-87.5 parent: 2 - - uid: 10419 + - uid: 11063 components: - type: Transform pos: -38.5,-86.5 parent: 2 - - uid: 10420 + - uid: 11064 components: - type: Transform pos: -38.5,-85.5 parent: 2 - - uid: 10421 + - uid: 11065 components: - type: Transform pos: -39.5,-85.5 parent: 2 - - uid: 10422 + - uid: 11066 components: - type: Transform pos: -40.5,-85.5 parent: 2 - - uid: 10423 + - uid: 11067 components: - type: Transform pos: -41.5,-85.5 parent: 2 - - uid: 10424 + - uid: 11068 components: - type: Transform pos: -41.5,-84.5 parent: 2 - - uid: 10425 + - uid: 11069 components: - type: Transform pos: -41.5,-83.5 parent: 2 - - uid: 10426 + - uid: 11070 components: - type: Transform pos: -41.5,-82.5 parent: 2 - - uid: 10427 + - uid: 11071 components: - type: Transform pos: -41.5,-81.5 parent: 2 - - uid: 10428 + - uid: 11072 components: - type: Transform pos: -41.5,-80.5 parent: 2 - - uid: 10429 + - uid: 11073 components: - type: Transform pos: -42.5,-80.5 parent: 2 - - uid: 10430 + - uid: 11074 components: - type: Transform pos: -43.5,-80.5 parent: 2 - - uid: 10431 + - uid: 11075 components: - type: Transform pos: -44.5,-80.5 parent: 2 - - uid: 10432 + - uid: 11076 components: - type: Transform pos: -45.5,-80.5 parent: 2 - - uid: 10433 + - uid: 11077 components: - type: Transform pos: -45.5,-81.5 parent: 2 - - uid: 10434 + - uid: 11078 components: - type: Transform pos: -45.5,-82.5 parent: 2 - - uid: 10435 + - uid: 11079 components: - type: Transform pos: -43.5,-79.5 parent: 2 - - uid: 10436 + - uid: 11080 components: - type: Transform pos: -43.5,-78.5 parent: 2 - - uid: 10437 + - uid: 11081 components: - type: Transform pos: -43.5,-77.5 parent: 2 - - uid: 10438 + - uid: 11082 components: - type: Transform pos: -43.5,-76.5 parent: 2 - - uid: 10439 + - uid: 11083 components: - type: Transform pos: -43.5,-75.5 parent: 2 - - uid: 10440 + - uid: 11084 components: - type: Transform pos: -43.5,-74.5 parent: 2 - - uid: 10441 + - uid: 11085 components: - type: Transform pos: -43.5,-73.5 parent: 2 - - uid: 10442 + - uid: 11086 components: - type: Transform pos: -43.5,-72.5 parent: 2 - - uid: 10443 + - uid: 11087 components: - type: Transform pos: -43.5,-71.5 parent: 2 - - uid: 10444 + - uid: 11088 components: - type: Transform pos: -42.5,-71.5 parent: 2 - - uid: 10445 + - uid: 11089 components: - type: Transform pos: -41.5,-71.5 parent: 2 - - uid: 10446 + - uid: 11090 components: - type: Transform pos: -42.5,-73.5 parent: 2 - - uid: 10447 + - uid: 11091 components: - type: Transform pos: -41.5,-73.5 parent: 2 - - uid: 10448 + - uid: 11092 components: - type: Transform pos: -40.5,-73.5 parent: 2 - - uid: 10449 + - uid: 11093 components: - type: Transform pos: -39.5,-73.5 parent: 2 - - uid: 10450 + - uid: 11094 components: - type: Transform pos: -38.5,-73.5 parent: 2 - - uid: 10451 + - uid: 11095 components: - type: Transform pos: -37.5,-73.5 parent: 2 - - uid: 10452 + - uid: 11096 components: - type: Transform pos: -37.5,-72.5 parent: 2 - - uid: 10453 + - uid: 11097 components: - type: Transform pos: -41.5,-70.5 parent: 2 - - uid: 10454 + - uid: 11098 components: - type: Transform pos: -40.5,-70.5 parent: 2 - - uid: 10455 + - uid: 11099 components: - type: Transform pos: -39.5,-70.5 parent: 2 - - uid: 10456 + - uid: 11100 components: - type: Transform pos: -38.5,-70.5 parent: 2 - - uid: 10457 + - uid: 11101 components: - type: Transform pos: -37.5,-70.5 parent: 2 - - uid: 10458 + - uid: 11102 components: - type: Transform pos: -36.5,-70.5 parent: 2 - - uid: 10459 + - uid: 11103 components: - type: Transform pos: -43.5,-70.5 parent: 2 - - uid: 10460 + - uid: 11104 components: - type: Transform pos: -43.5,-69.5 parent: 2 - - uid: 10461 + - uid: 11105 components: - type: Transform pos: -43.5,-68.5 parent: 2 - - uid: 10462 + - uid: 11106 components: - type: Transform pos: -43.5,-67.5 parent: 2 - - uid: 10463 + - uid: 11107 components: - type: Transform pos: -43.5,-66.5 parent: 2 - - uid: 10464 + - uid: 11108 components: - type: Transform pos: -43.5,-65.5 parent: 2 - - uid: 10465 + - uid: 11109 components: - type: Transform pos: -43.5,-64.5 parent: 2 - - uid: 10466 + - uid: 11110 components: - type: Transform pos: -42.5,-64.5 parent: 2 - - uid: 10467 + - uid: 11111 components: - type: Transform pos: -41.5,-64.5 parent: 2 - - uid: 10468 + - uid: 11112 components: - type: Transform pos: -40.5,-64.5 parent: 2 - - uid: 10469 + - uid: 11113 components: - type: Transform pos: -39.5,-64.5 parent: 2 - - uid: 10470 + - uid: 11114 components: - type: Transform pos: -38.5,-64.5 parent: 2 - - uid: 10471 + - uid: 11115 components: - type: Transform pos: -37.5,-64.5 parent: 2 - - uid: 10472 + - uid: 11116 components: - type: Transform pos: -36.5,-64.5 parent: 2 - - uid: 10473 + - uid: 11117 components: - type: Transform pos: -35.5,-64.5 parent: 2 - - uid: 10474 + - uid: 11118 components: - type: Transform pos: -35.5,-63.5 parent: 2 - - uid: 10475 + - uid: 11119 components: - type: Transform pos: -35.5,-62.5 parent: 2 - - uid: 10476 + - uid: 11120 components: - type: Transform pos: -34.5,-62.5 parent: 2 - - uid: 10477 + - uid: 11121 components: - type: Transform pos: -33.5,-62.5 parent: 2 - - uid: 10478 + - uid: 11122 components: - type: Transform pos: -43.5,-63.5 parent: 2 - - uid: 10479 + - uid: 11123 components: - type: Transform pos: -43.5,-62.5 parent: 2 - - uid: 10480 + - uid: 11124 components: - type: Transform pos: -43.5,-61.5 parent: 2 - - uid: 10481 + - uid: 11125 components: - type: Transform pos: -43.5,-60.5 parent: 2 - - uid: 10482 + - uid: 11126 components: - type: Transform pos: -43.5,-59.5 parent: 2 - - uid: 10483 + - uid: 11127 components: - type: Transform pos: -43.5,-58.5 parent: 2 - - uid: 10484 + - uid: 11128 components: - type: Transform pos: -42.5,-58.5 parent: 2 - - uid: 10485 + - uid: 11129 components: - type: Transform pos: -41.5,-58.5 parent: 2 - - uid: 10486 + - uid: 11130 components: - type: Transform pos: -40.5,-58.5 parent: 2 - - uid: 10487 + - uid: 11131 components: - type: Transform pos: -39.5,-58.5 parent: 2 - - uid: 10488 + - uid: 11132 components: - type: Transform pos: -38.5,-58.5 parent: 2 - - uid: 10489 + - uid: 11133 components: - type: Transform pos: -37.5,-58.5 parent: 2 - - uid: 10490 + - uid: 11134 components: - type: Transform pos: -37.5,-57.5 parent: 2 - - uid: 10491 + - uid: 11135 components: - type: Transform pos: -37.5,-56.5 parent: 2 - - uid: 10492 + - uid: 11136 components: - type: Transform pos: -40.5,-57.5 parent: 2 - - uid: 10493 + - uid: 11137 components: - type: Transform pos: -40.5,-56.5 parent: 2 - - uid: 10494 + - uid: 11138 components: - type: Transform pos: -43.5,-57.5 parent: 2 - - uid: 10495 + - uid: 11139 components: - type: Transform pos: -43.5,-56.5 parent: 2 - - uid: 10496 + - uid: 11140 components: - type: Transform pos: -43.5,-55.5 parent: 2 - - uid: 10497 + - uid: 11141 components: - type: Transform pos: -43.5,-54.5 parent: 2 - - uid: 10498 + - uid: 11142 components: - type: Transform pos: -43.5,-53.5 parent: 2 - - uid: 10499 + - uid: 11143 components: - type: Transform pos: -43.5,-52.5 parent: 2 - - uid: 10500 + - uid: 11144 components: - type: Transform pos: -44.5,-52.5 parent: 2 - - uid: 10501 + - uid: 11145 components: - type: Transform pos: -45.5,-52.5 parent: 2 - - uid: 10502 + - uid: 11146 components: - type: Transform pos: -45.5,-51.5 parent: 2 - - uid: 10503 + - uid: 11147 components: - type: Transform pos: -38.5,-84.5 parent: 2 - - uid: 10504 + - uid: 11148 components: - type: Transform pos: -38.5,-83.5 parent: 2 - - uid: 10505 + - uid: 11149 components: - type: Transform pos: -38.5,-82.5 parent: 2 - - uid: 10506 + - uid: 11150 components: - type: Transform pos: -38.5,-81.5 parent: 2 - - uid: 10507 + - uid: 11151 components: - type: Transform pos: -38.5,-80.5 parent: 2 - - uid: 10508 + - uid: 11152 components: - type: Transform pos: -38.5,-79.5 parent: 2 - - uid: 10509 + - uid: 11153 components: - type: Transform pos: -38.5,-78.5 parent: 2 - - uid: 10510 + - uid: 11154 components: - type: Transform pos: -38.5,-77.5 parent: 2 - - uid: 10511 + - uid: 11155 components: - type: Transform pos: -38.5,-76.5 parent: 2 - - uid: 10512 + - uid: 11156 components: - type: Transform pos: -37.5,-76.5 parent: 2 - - uid: 10513 + - uid: 11157 components: - type: Transform pos: -36.5,-76.5 parent: 2 - - uid: 10514 + - uid: 11158 components: - type: Transform pos: -35.5,-76.5 parent: 2 - - uid: 10515 + - uid: 11159 components: - type: Transform pos: -34.5,-76.5 parent: 2 - - uid: 10516 + - uid: 11160 components: - type: Transform pos: -33.5,-76.5 parent: 2 - - uid: 10517 + - uid: 11161 components: - type: Transform pos: -32.5,-76.5 parent: 2 - - uid: 10518 + - uid: 11162 components: - type: Transform pos: -32.5,-75.5 parent: 2 - - uid: 10519 + - uid: 11163 components: - type: Transform pos: -32.5,-74.5 parent: 2 - - uid: 10520 + - uid: 11164 components: - type: Transform pos: -32.5,-73.5 parent: 2 - - uid: 10521 + - uid: 11165 components: - type: Transform pos: -32.5,-72.5 parent: 2 - - uid: 10522 + - uid: 11166 components: - type: Transform pos: -32.5,-71.5 parent: 2 - - uid: 10523 + - uid: 11167 components: - type: Transform pos: -32.5,-70.5 parent: 2 - - uid: 10524 + - uid: 11168 components: - type: Transform pos: -31.5,-70.5 parent: 2 - - uid: 10525 + - uid: 11169 components: - type: Transform pos: -31.5,-69.5 parent: 2 - - uid: 10526 + - uid: 11170 components: - type: Transform pos: -31.5,-68.5 parent: 2 - - uid: 10527 + - uid: 11171 components: - type: Transform pos: -31.5,-67.5 parent: 2 - - uid: 10528 + - uid: 11172 components: - type: Transform pos: -31.5,-66.5 parent: 2 - - uid: 10529 + - uid: 11173 components: - type: Transform pos: -31.5,-65.5 parent: 2 - - uid: 10530 + - uid: 11174 components: - type: Transform pos: -31.5,-64.5 parent: 2 - - uid: 10531 + - uid: 11175 components: - type: Transform pos: -32.5,-64.5 parent: 2 - - uid: 10532 + - uid: 11176 components: - type: Transform pos: -32.5,-63.5 parent: 2 - - uid: 10533 + - uid: 11177 components: - type: Transform pos: -32.5,-62.5 parent: 2 - - uid: 10534 + - uid: 11178 components: - type: Transform pos: -32.5,-61.5 parent: 2 - - uid: 10535 + - uid: 11179 components: - type: Transform pos: -32.5,-60.5 parent: 2 - - uid: 10536 + - uid: 11180 components: - type: Transform pos: -32.5,-59.5 parent: 2 - - uid: 10537 + - uid: 11181 components: - type: Transform pos: -32.5,-58.5 parent: 2 - - uid: 10538 + - uid: 11182 components: - type: Transform pos: -33.5,-58.5 parent: 2 - - uid: 10539 + - uid: 11183 components: - type: Transform pos: -34.5,-58.5 parent: 2 - - uid: 10540 + - uid: 11184 components: - type: Transform pos: -35.5,-58.5 parent: 2 - - uid: 10541 + - uid: 11185 components: - type: Transform pos: -36.5,-58.5 parent: 2 - - uid: 10542 + - uid: 11186 components: - type: Transform pos: -32.5,-77.5 parent: 2 - - uid: 10543 + - uid: 11187 components: - type: Transform pos: -24.5,-80.5 parent: 2 - - uid: 10544 + - uid: 11188 components: - type: Transform pos: -24.5,-79.5 parent: 2 - - uid: 10545 + - uid: 11189 components: - type: Transform pos: -24.5,-78.5 parent: 2 - - uid: 10546 + - uid: 11190 components: - type: Transform pos: -24.5,-77.5 parent: 2 - - uid: 10547 + - uid: 11191 components: - type: Transform pos: -24.5,-76.5 parent: 2 - - uid: 10548 + - uid: 11192 components: - type: Transform pos: -24.5,-75.5 parent: 2 - - uid: 10549 + - uid: 11193 components: - type: Transform pos: -24.5,-74.5 parent: 2 - - uid: 10550 + - uid: 11194 components: - type: Transform pos: -25.5,-74.5 parent: 2 - - uid: 10551 + - uid: 11195 components: - type: Transform pos: -26.5,-74.5 parent: 2 - - uid: 10552 + - uid: 11196 components: - type: Transform pos: -24.5,-81.5 parent: 2 - - uid: 10553 + - uid: 11197 components: - type: Transform pos: -23.5,-77.5 parent: 2 - - uid: 10554 + - uid: 11198 components: - type: Transform pos: -22.5,-77.5 parent: 2 - - uid: 10555 + - uid: 11199 components: - type: Transform pos: -24.5,-82.5 parent: 2 - - uid: 10556 + - uid: 11200 components: - type: Transform pos: -25.5,-82.5 parent: 2 - - uid: 10557 + - uid: 11201 components: - type: Transform pos: -26.5,-82.5 parent: 2 - - uid: 10558 + - uid: 11202 components: - type: Transform pos: -25.5,-80.5 parent: 2 - - uid: 10559 + - uid: 11203 components: - type: Transform pos: -26.5,-80.5 parent: 2 - - uid: 10560 + - uid: 11204 components: - type: Transform pos: -27.5,-80.5 parent: 2 - - uid: 10561 + - uid: 11205 components: - type: Transform pos: -28.5,-80.5 parent: 2 - - uid: 10562 + - uid: 11206 components: - type: Transform pos: -29.5,-80.5 parent: 2 - - uid: 10563 + - uid: 11207 components: - type: Transform pos: -30.5,-80.5 parent: 2 - - uid: 10564 + - uid: 11208 components: - type: Transform pos: -31.5,-80.5 parent: 2 - - uid: 10565 + - uid: 11209 components: - type: Transform pos: -32.5,-80.5 parent: 2 - - uid: 10566 + - uid: 11210 components: - type: Transform pos: -32.5,-81.5 parent: 2 - - uid: 10567 + - uid: 11211 components: - type: Transform pos: -32.5,-82.5 parent: 2 - - uid: 10568 + - uid: 11212 components: - type: Transform pos: -32.5,-83.5 parent: 2 - - uid: 10569 + - uid: 11213 components: - type: Transform pos: -32.5,-84.5 parent: 2 - - uid: 10570 + - uid: 11214 components: - type: Transform pos: -32.5,-85.5 parent: 2 - - uid: 10571 + - uid: 11215 components: - type: Transform pos: -32.5,-86.5 parent: 2 - - uid: 10572 + - uid: 11216 components: - type: Transform pos: -32.5,-87.5 parent: 2 - - uid: 10573 + - uid: 11217 components: - type: Transform pos: -32.5,-88.5 parent: 2 - - uid: 10574 + - uid: 11218 components: - type: Transform pos: -32.5,-89.5 parent: 2 - - uid: 10575 + - uid: 11219 components: - type: Transform pos: -32.5,-90.5 parent: 2 - - uid: 10576 + - uid: 11220 components: - type: Transform pos: -32.5,-91.5 parent: 2 - - uid: 10577 + - uid: 11221 components: - type: Transform pos: -33.5,-93.5 parent: 2 - - uid: 10578 + - uid: 11222 components: - type: Transform pos: -32.5,-93.5 parent: 2 - - uid: 10579 + - uid: 11223 components: - type: Transform pos: -33.5,-91.5 parent: 2 - - uid: 10580 + - uid: 11224 components: - type: Transform pos: -31.5,-93.5 parent: 2 - - uid: 10581 + - uid: 11225 components: - type: Transform pos: -30.5,-93.5 parent: 2 - - uid: 10582 + - uid: 11226 components: - type: Transform pos: -30.5,-94.5 parent: 2 - - uid: 10583 + - uid: 11227 components: - type: Transform pos: -30.5,-95.5 parent: 2 - - uid: 10584 + - uid: 11228 components: - type: Transform pos: -30.5,-96.5 parent: 2 - - uid: 10585 + - uid: 11229 components: - type: Transform pos: -29.5,-96.5 parent: 2 - - uid: 10586 + - uid: 11230 components: - type: Transform pos: -28.5,-96.5 parent: 2 - - uid: 10587 + - uid: 11231 components: - type: Transform pos: -33.5,-92.5 parent: 2 - - uid: 10588 + - uid: 11232 components: - type: Transform pos: -34.5,-92.5 parent: 2 - - uid: 10589 + - uid: 11233 components: - type: Transform pos: -35.5,-92.5 parent: 2 - - uid: 10590 + - uid: 11234 components: - type: Transform pos: -36.5,-92.5 parent: 2 - - uid: 10591 + - uid: 11235 components: - type: Transform pos: -37.5,-92.5 parent: 2 - - uid: 10592 + - uid: 11236 components: - type: Transform pos: -38.5,-92.5 parent: 2 - - uid: 10593 + - uid: 11237 components: - type: Transform pos: -39.5,-92.5 parent: 2 - - uid: 10594 + - uid: 11238 components: - type: Transform pos: -40.5,-92.5 parent: 2 - - uid: 10595 + - uid: 11239 components: - type: Transform pos: -41.5,-92.5 parent: 2 - - uid: 10596 + - uid: 11240 components: - type: Transform pos: -41.5,-91.5 parent: 2 - - uid: 10597 + - uid: 11241 components: - type: Transform pos: 31.5,-76.5 parent: 2 - - uid: 10598 + - uid: 11242 components: - type: Transform pos: 30.5,-76.5 parent: 2 - - uid: 10599 + - uid: 11243 components: - type: Transform pos: 29.5,-76.5 parent: 2 - - uid: 10600 + - uid: 11244 components: - type: Transform pos: 29.5,-77.5 parent: 2 - - uid: 10601 + - uid: 11245 components: - type: Transform pos: 20.5,-87.5 parent: 2 - - uid: 10602 + - uid: 11246 components: - type: Transform pos: 21.5,-87.5 parent: 2 - - uid: 10603 + - uid: 11247 components: - type: Transform pos: 22.5,-87.5 parent: 2 - - uid: 10604 + - uid: 11248 components: - type: Transform pos: 22.5,-86.5 parent: 2 - - uid: 10605 + - uid: 11249 components: - type: Transform pos: 22.5,-85.5 parent: 2 - - uid: 10606 + - uid: 11250 components: - type: Transform pos: 22.5,-84.5 parent: 2 - - uid: 10607 + - uid: 11251 components: - type: Transform pos: 21.5,-84.5 parent: 2 - - uid: 10608 + - uid: 11252 components: - type: Transform pos: 20.5,-84.5 parent: 2 - - uid: 10609 + - uid: 11253 components: - type: Transform pos: 19.5,-84.5 parent: 2 - - uid: 10610 + - uid: 11254 components: - type: Transform pos: 18.5,-84.5 parent: 2 - - uid: 10611 + - uid: 11255 components: - type: Transform pos: 17.5,-84.5 parent: 2 - - uid: 10612 + - uid: 11256 components: - type: Transform pos: 16.5,-84.5 parent: 2 - - uid: 10613 + - uid: 11257 components: - type: Transform pos: 15.5,-84.5 parent: 2 - - uid: 10614 + - uid: 11258 components: - type: Transform pos: 14.5,-84.5 parent: 2 - - uid: 10615 + - uid: 11259 components: - type: Transform pos: 14.5,-83.5 parent: 2 - - uid: 10616 + - uid: 11260 components: - type: Transform pos: 13.5,-83.5 parent: 2 - - uid: 10617 + - uid: 11261 components: - type: Transform pos: 13.5,-82.5 parent: 2 - - uid: 10618 + - uid: 11262 components: - type: Transform pos: 12.5,-83.5 parent: 2 - - uid: 10619 + - uid: 11263 components: - type: Transform pos: 11.5,-83.5 parent: 2 - - uid: 10620 + - uid: 11264 components: - type: Transform pos: 10.5,-83.5 parent: 2 - - uid: 10621 + - uid: 11265 components: - type: Transform pos: 10.5,-84.5 parent: 2 - - uid: 10622 + - uid: 11266 components: - type: Transform pos: 10.5,-85.5 parent: 2 - - uid: 10623 + - uid: 11267 components: - type: Transform pos: 10.5,-86.5 parent: 2 - - uid: 10624 + - uid: 11268 components: - type: Transform pos: 10.5,-87.5 parent: 2 - - uid: 10625 + - uid: 11269 components: - type: Transform pos: 9.5,-87.5 parent: 2 - - uid: 10626 + - uid: 11270 components: - type: Transform pos: 8.5,-87.5 parent: 2 - - uid: 10627 + - uid: 11271 components: - type: Transform pos: 7.5,-87.5 parent: 2 - - uid: 10628 + - uid: 11272 components: - type: Transform pos: 7.5,-88.5 parent: 2 - - uid: 10629 + - uid: 11273 components: - type: Transform pos: 7.5,-89.5 parent: 2 - - uid: 10630 + - uid: 11274 components: - type: Transform pos: 7.5,-90.5 parent: 2 - - uid: 10631 + - uid: 11275 components: - type: Transform pos: 6.5,-90.5 parent: 2 - - uid: 10632 + - uid: 11276 components: - type: Transform pos: 5.5,-90.5 parent: 2 - - uid: 10633 + - uid: 11277 components: - type: Transform pos: 4.5,-90.5 parent: 2 - - uid: 10634 + - uid: 11278 components: - type: Transform pos: 3.5,-90.5 parent: 2 - - uid: 10635 + - uid: 11279 components: - type: Transform pos: 2.5,-90.5 parent: 2 - - uid: 10636 + - uid: 11280 components: - type: Transform pos: 1.5,-90.5 parent: 2 - - uid: 10637 + - uid: 11281 components: - type: Transform pos: 1.5,-91.5 parent: 2 - - uid: 10638 + - uid: 11282 components: - type: Transform pos: 1.5,-92.5 parent: 2 - - uid: 10639 + - uid: 11283 components: - type: Transform pos: 0.5,-90.5 parent: 2 - - uid: 10640 + - uid: 11284 components: - type: Transform pos: -0.5,-90.5 parent: 2 - - uid: 10641 + - uid: 11285 components: - type: Transform pos: -1.5,-90.5 parent: 2 - - uid: 10642 + - uid: 11286 components: - type: Transform pos: -1.5,-91.5 parent: 2 - - uid: 10643 + - uid: 11287 components: - type: Transform pos: -1.5,-92.5 parent: 2 - - uid: 10644 + - uid: 11288 components: - type: Transform pos: -1.5,-93.5 parent: 2 - - uid: 10645 + - uid: 11289 components: - type: Transform pos: -1.5,-94.5 parent: 2 - - uid: 10646 + - uid: 11290 components: - type: Transform pos: -1.5,-95.5 parent: 2 - - uid: 10647 + - uid: 11291 components: - type: Transform pos: -1.5,-96.5 parent: 2 - - uid: 10648 + - uid: 11292 components: - type: Transform pos: -1.5,-97.5 parent: 2 - - uid: 10649 + - uid: 11293 components: - type: Transform pos: -2.5,-97.5 parent: 2 - - uid: 10650 + - uid: 11294 components: - type: Transform pos: -0.5,-89.5 parent: 2 - - uid: 10651 + - uid: 11295 components: - type: Transform pos: -0.5,-88.5 parent: 2 - - uid: 10652 + - uid: 11296 components: - type: Transform pos: -0.5,-87.5 parent: 2 - - uid: 10653 + - uid: 11297 components: - type: Transform pos: -0.5,-86.5 parent: 2 - - uid: 10654 + - uid: 11298 components: - type: Transform pos: -0.5,-85.5 parent: 2 - - uid: 10655 + - uid: 11299 components: - type: Transform pos: -0.5,-84.5 parent: 2 - - uid: 10656 + - uid: 11300 components: - type: Transform pos: -1.5,-84.5 parent: 2 - - uid: 10657 + - uid: 11301 components: - type: Transform pos: -2.5,-84.5 parent: 2 - - uid: 10658 + - uid: 11302 components: - type: Transform pos: -3.5,-84.5 parent: 2 - - uid: 10659 + - uid: 11303 components: - type: Transform pos: -3.5,-83.5 parent: 2 - - uid: 10660 + - uid: 11304 components: - type: Transform pos: -3.5,-82.5 parent: 2 - - uid: 10661 + - uid: 11305 components: - type: Transform pos: -4.5,-82.5 parent: 2 - - uid: 10662 + - uid: 11306 components: - type: Transform pos: -5.5,-82.5 parent: 2 - - uid: 10663 + - uid: 11307 components: - type: Transform pos: 10.5,-82.5 parent: 2 - - uid: 10664 + - uid: 11308 components: - type: Transform pos: 10.5,-81.5 parent: 2 - - uid: 10665 + - uid: 11309 components: - type: Transform pos: 10.5,-80.5 parent: 2 - - uid: 10666 + - uid: 11310 components: - type: Transform pos: 10.5,-79.5 parent: 2 - - uid: 10667 + - uid: 11311 components: - type: Transform pos: 9.5,-79.5 parent: 2 - - uid: 10668 + - uid: 11312 components: - type: Transform pos: 8.5,-79.5 parent: 2 - - uid: 10669 + - uid: 11313 components: - type: Transform pos: 7.5,-79.5 parent: 2 - - uid: 10670 + - uid: 11314 components: - type: Transform pos: 6.5,-79.5 parent: 2 - - uid: 10671 + - uid: 11315 components: - type: Transform pos: 5.5,-79.5 parent: 2 - - uid: 10672 + - uid: 11316 components: - type: Transform pos: 4.5,-79.5 parent: 2 - - uid: 10673 + - uid: 11317 components: - type: Transform pos: 3.5,-79.5 parent: 2 - - uid: 10674 + - uid: 11318 components: - type: Transform pos: 2.5,-79.5 parent: 2 - - uid: 10675 + - uid: 11319 components: - type: Transform pos: 1.5,-79.5 parent: 2 - - uid: 10676 + - uid: 11320 components: - type: Transform pos: 0.5,-79.5 parent: 2 - - uid: 10677 + - uid: 11321 components: - type: Transform pos: -0.5,-79.5 parent: 2 - - uid: 10678 + - uid: 11322 components: - type: Transform pos: -0.5,-80.5 parent: 2 - - uid: 10679 + - uid: 11323 components: - type: Transform pos: -0.5,-81.5 parent: 2 - - uid: 10680 + - uid: 11324 components: - type: Transform pos: -0.5,-82.5 parent: 2 - - uid: 10681 + - uid: 11325 components: - type: Transform pos: -0.5,-83.5 parent: 2 - - uid: 10682 + - uid: 11326 components: - type: Transform pos: -11.5,-87.5 parent: 2 - - uid: 10683 + - uid: 11327 components: - type: Transform pos: -12.5,-87.5 parent: 2 - - uid: 10684 + - uid: 11328 components: - type: Transform pos: -13.5,-87.5 parent: 2 - - uid: 10685 + - uid: 11329 components: - type: Transform pos: -13.5,-88.5 parent: 2 - - uid: 10686 + - uid: 11330 components: - type: Transform pos: -13.5,-89.5 parent: 2 - - uid: 10687 + - uid: 11331 components: - type: Transform pos: -13.5,-90.5 parent: 2 - - uid: 10688 + - uid: 11332 components: - type: Transform pos: -12.5,-90.5 parent: 2 - - uid: 10689 + - uid: 11333 components: - type: Transform pos: -11.5,-90.5 parent: 2 - - uid: 10690 + - uid: 11334 components: - type: Transform pos: -10.5,-90.5 parent: 2 - - uid: 10691 + - uid: 11335 components: - type: Transform pos: -9.5,-90.5 parent: 2 - - uid: 10692 + - uid: 11336 components: - type: Transform pos: -8.5,-90.5 parent: 2 - - uid: 10693 + - uid: 11337 components: - type: Transform pos: -7.5,-90.5 parent: 2 - - uid: 10694 + - uid: 11338 components: - type: Transform pos: -6.5,-90.5 parent: 2 - - uid: 10695 + - uid: 11339 components: - type: Transform pos: -6.5,-91.5 parent: 2 - - uid: 10696 + - uid: 11340 components: - type: Transform pos: -6.5,-92.5 parent: 2 - - uid: 10697 + - uid: 11341 components: - type: Transform pos: -6.5,-89.5 parent: 2 - - uid: 10698 + - uid: 11342 components: - type: Transform pos: -6.5,-88.5 parent: 2 - - uid: 10699 + - uid: 11343 components: - type: Transform pos: -6.5,-87.5 parent: 2 - - uid: 10700 + - uid: 11344 components: - type: Transform pos: -6.5,-86.5 parent: 2 - - uid: 10701 + - uid: 11345 components: - type: Transform pos: -6.5,-85.5 parent: 2 - - uid: 10702 + - uid: 11346 components: - type: Transform pos: -5.5,-85.5 parent: 2 - - uid: 10703 + - uid: 11347 components: - type: Transform pos: 72.5,-32.5 parent: 2 - - uid: 10704 + - uid: 11348 components: - type: Transform pos: 71.5,-32.5 parent: 2 - - uid: 10705 + - uid: 11349 components: - type: Transform pos: 71.5,-31.5 parent: 2 - - uid: 10706 + - uid: 11350 components: - type: Transform pos: 71.5,-30.5 parent: 2 - - uid: 10707 + - uid: 11351 components: - type: Transform pos: -0.5,-78.5 parent: 2 - - uid: 10708 + - uid: 11352 components: - type: Transform pos: -0.5,-77.5 parent: 2 - - uid: 10709 + - uid: 11353 components: - type: Transform pos: -0.5,-76.5 parent: 2 - - uid: 10710 + - uid: 11354 components: - type: Transform pos: -0.5,-75.5 parent: 2 - - uid: 10711 + - uid: 11355 components: - type: Transform pos: -0.5,-74.5 parent: 2 - - uid: 10712 + - uid: 11356 components: - type: Transform pos: 40.5,-59.5 parent: 2 - - uid: 10713 + - uid: 11357 components: - type: Transform pos: 40.5,-58.5 parent: 2 - - uid: 10714 + - uid: 11358 components: - type: Transform pos: 40.5,-57.5 parent: 2 - - uid: 10715 + - uid: 11359 components: - type: Transform pos: 40.5,-56.5 parent: 2 - - uid: 10716 + - uid: 11360 components: - type: Transform pos: 40.5,-55.5 parent: 2 - - uid: 10717 + - uid: 11361 components: - type: Transform pos: 40.5,-54.5 parent: 2 - - uid: 10718 + - uid: 11362 components: - type: Transform pos: 39.5,-54.5 parent: 2 - - uid: 10719 + - uid: 11363 components: - type: Transform pos: 38.5,-54.5 parent: 2 - - uid: 10720 + - uid: 11364 components: - type: Transform pos: 37.5,-54.5 parent: 2 - - uid: 10721 + - uid: 11365 components: - type: Transform pos: 36.5,-54.5 parent: 2 - - uid: 10722 + - uid: 11366 components: - type: Transform pos: 35.5,-54.5 parent: 2 - - uid: 10723 + - uid: 11367 components: - type: Transform pos: 34.5,-54.5 parent: 2 - - uid: 10724 + - uid: 11368 components: - type: Transform pos: 33.5,-54.5 parent: 2 - - uid: 10725 + - uid: 11369 components: - type: Transform pos: 32.5,-54.5 parent: 2 - - uid: 10726 + - uid: 11370 components: - type: Transform pos: 31.5,-54.5 parent: 2 - - uid: 10727 + - uid: 11371 components: - type: Transform pos: 30.5,-54.5 parent: 2 - - uid: 10728 + - uid: 11372 components: - type: Transform pos: 30.5,-53.5 parent: 2 - - uid: 10729 + - uid: 11373 components: - type: Transform pos: 30.5,-52.5 parent: 2 - - uid: 10730 + - uid: 11374 components: - type: Transform pos: 44.5,-30.5 parent: 2 - - uid: 10731 + - uid: 11375 components: - type: Transform pos: 44.5,-31.5 parent: 2 - - uid: 10732 + - uid: 11376 components: - type: Transform pos: 44.5,-32.5 parent: 2 - - uid: 10733 + - uid: 11377 components: - type: Transform pos: 43.5,-32.5 parent: 2 - - uid: 10734 + - uid: 11378 components: - type: Transform pos: 42.5,-32.5 parent: 2 - - uid: 10735 + - uid: 11379 components: - type: Transform pos: 41.5,-32.5 parent: 2 - - uid: 10736 + - uid: 11380 components: - type: Transform pos: 40.5,-32.5 parent: 2 - - uid: 10737 + - uid: 11381 components: - type: Transform pos: 39.5,-32.5 parent: 2 - - uid: 10738 + - uid: 11382 components: - type: Transform pos: 38.5,-32.5 parent: 2 - - uid: 10739 + - uid: 11383 components: - type: Transform pos: 37.5,-32.5 parent: 2 - - uid: 10740 + - uid: 11384 components: - type: Transform pos: 36.5,-32.5 parent: 2 - - uid: 10741 + - uid: 11385 components: - type: Transform pos: 35.5,-32.5 parent: 2 - - uid: 10742 + - uid: 11386 components: - type: Transform pos: 34.5,-32.5 parent: 2 - - uid: 10743 + - uid: 11387 components: - type: Transform pos: 33.5,-32.5 parent: 2 - - uid: 10744 + - uid: 11388 components: - type: Transform pos: 32.5,-32.5 parent: 2 - - uid: 10745 + - uid: 11389 components: - type: Transform pos: 31.5,-32.5 parent: 2 - - uid: 10746 + - uid: 11390 components: - type: Transform pos: 30.5,-32.5 parent: 2 - - uid: 10747 + - uid: 11391 components: - type: Transform pos: 29.5,-32.5 parent: 2 - - uid: 10748 + - uid: 11392 components: - type: Transform pos: 28.5,-32.5 parent: 2 - - uid: 10749 + - uid: 11393 components: - type: Transform pos: 27.5,-32.5 parent: 2 - - uid: 10750 + - uid: 11394 components: - type: Transform pos: 26.5,-32.5 parent: 2 - - uid: 10751 + - uid: 11395 components: - type: Transform pos: 25.5,-32.5 parent: 2 - - uid: 10754 + - uid: 11396 components: - type: Transform pos: 29.5,-31.5 parent: 2 - - uid: 10755 + - uid: 11397 components: - type: Transform pos: 29.5,-30.5 parent: 2 - - uid: 10756 + - uid: 11398 components: - type: Transform pos: 29.5,-29.5 parent: 2 - - uid: 10757 + - uid: 11399 components: - type: Transform pos: 29.5,-28.5 parent: 2 - - uid: 10758 + - uid: 11400 components: - type: Transform pos: 29.5,-27.5 parent: 2 - - uid: 10759 + - uid: 11401 components: - type: Transform pos: 29.5,-26.5 parent: 2 - - uid: 10760 + - uid: 11402 components: - type: Transform pos: 29.5,-25.5 parent: 2 - - uid: 10761 + - uid: 11403 components: - type: Transform pos: 30.5,-25.5 parent: 2 - - uid: 10762 + - uid: 11404 components: - type: Transform pos: 31.5,-25.5 parent: 2 - - uid: 10763 + - uid: 11405 components: - type: Transform pos: 22.5,8.5 parent: 2 - - uid: 10764 + - uid: 11406 components: - type: Transform pos: 26.5,-2.5 parent: 2 - - uid: 10765 + - uid: 11407 components: - type: Transform pos: 25.5,-2.5 parent: 2 - - uid: 10766 + - uid: 11408 components: - type: Transform pos: 24.5,-2.5 parent: 2 - - uid: 10767 + - uid: 11409 components: - type: Transform pos: 23.5,-2.5 parent: 2 - - uid: 10768 + - uid: 11410 components: - type: Transform pos: 23.5,-1.5 parent: 2 - - uid: 10769 + - uid: 11411 components: - type: Transform pos: 23.5,-0.5 parent: 2 - - uid: 10770 + - uid: 11412 components: - type: Transform pos: -25.5,0.5 parent: 2 - - uid: 10771 + - uid: 11413 components: - type: Transform pos: -25.5,-0.5 parent: 2 - - uid: 10772 + - uid: 11414 components: - type: Transform pos: -25.5,-1.5 parent: 2 - - uid: 10773 + - uid: 11415 components: - type: Transform pos: -24.5,-1.5 parent: 2 - - uid: 10774 + - uid: 11416 components: - type: Transform pos: -32.5,-27.5 parent: 2 - - uid: 10775 + - uid: 11417 components: - type: Transform pos: -32.5,-28.5 parent: 2 - - uid: 10776 + - uid: 11418 components: - type: Transform pos: -32.5,-29.5 parent: 2 - - uid: 10777 + - uid: 11419 components: - type: Transform pos: -32.5,-30.5 parent: 2 - - uid: 10778 + - uid: 11420 components: - type: Transform pos: -31.5,-30.5 parent: 2 - - uid: 10779 + - uid: 11421 components: - type: Transform pos: -40.5,-37.5 parent: 2 - - uid: 10780 + - uid: 11422 components: - type: Transform pos: -39.5,-37.5 parent: 2 - - uid: 10781 + - uid: 11423 components: - type: Transform pos: -38.5,-37.5 parent: 2 - - uid: 10782 + - uid: 11424 components: - type: Transform pos: -37.5,-37.5 parent: 2 - - uid: 10783 + - uid: 11425 components: - type: Transform pos: -36.5,-37.5 parent: 2 - - uid: 10784 + - uid: 11426 components: - type: Transform pos: -35.5,-37.5 parent: 2 - - uid: 10785 + - uid: 11427 components: - type: Transform pos: -35.5,-38.5 parent: 2 - - uid: 10786 + - uid: 11428 components: - type: Transform pos: -35.5,-39.5 parent: 2 - - uid: 10787 + - uid: 11429 components: - type: Transform pos: -35.5,-40.5 parent: 2 - - uid: 10788 + - uid: 11430 components: - type: Transform pos: -35.5,-41.5 parent: 2 - - uid: 10789 + - uid: 11431 components: - type: Transform pos: -35.5,-42.5 parent: 2 - - uid: 10790 + - uid: 11432 components: - type: Transform pos: -35.5,-43.5 parent: 2 - - uid: 10791 + - uid: 11433 components: - type: Transform pos: -34.5,-43.5 parent: 2 - - uid: 10792 + - uid: 11434 components: - type: Transform pos: -33.5,-43.5 parent: 2 - - uid: 10793 + - uid: 11435 components: - type: Transform pos: -33.5,-44.5 parent: 2 - - uid: 10794 + - uid: 11436 components: - type: Transform pos: -33.5,-45.5 parent: 2 - - uid: 10795 + - uid: 11437 components: - type: Transform pos: -32.5,-57.5 parent: 2 - - uid: 10796 + - uid: 11438 components: - type: Transform pos: -32.5,-56.5 parent: 2 - - uid: 10797 + - uid: 11439 components: - type: Transform pos: -32.5,-55.5 parent: 2 - - uid: 10798 + - uid: 11440 components: - type: Transform pos: -31.5,-55.5 parent: 2 - - uid: 10799 + - uid: 11441 components: - type: Transform pos: -30.5,-55.5 parent: 2 - - uid: 10800 + - uid: 11442 components: - type: Transform pos: -30.5,-56.5 parent: 2 - - uid: 10806 + - uid: 11443 components: - type: Transform pos: 23.5,7.5 parent: 2 - - uid: 10807 + - uid: 11444 components: - type: Transform pos: 26.5,-0.5 parent: 2 - - uid: 10808 + - uid: 11445 components: - type: Transform pos: 26.5,-1.5 parent: 2 - - uid: 10809 + - uid: 11446 components: - type: Transform pos: 34.5,1.5 parent: 2 - - uid: 10810 + - uid: 11447 components: - type: Transform pos: 32.5,1.5 parent: 2 - - uid: 10811 + - uid: 11448 components: - type: Transform pos: -41.5,-93.5 parent: 2 - - uid: 10812 + - uid: 11449 components: - type: Transform pos: -60.5,-29.5 parent: 2 - - uid: 10813 + - uid: 11450 components: - type: Transform pos: -61.5,-29.5 parent: 2 - - uid: 10814 + - uid: 11451 components: - type: Transform pos: -62.5,-29.5 parent: 2 - - uid: 10815 + - uid: 11452 components: - type: Transform pos: -62.5,-28.5 parent: 2 - - uid: 10816 + - uid: 11453 components: - type: Transform pos: -62.5,-27.5 parent: 2 - - uid: 10817 + - uid: 11454 components: - type: Transform pos: -62.5,-26.5 parent: 2 - - uid: 10818 + - uid: 11455 components: - type: Transform pos: -62.5,-25.5 parent: 2 - - uid: 10819 + - uid: 11456 components: - type: Transform pos: -62.5,-24.5 parent: 2 - - uid: 10820 + - uid: 11457 components: - type: Transform pos: -62.5,-23.5 parent: 2 - - uid: 10821 + - uid: 11458 components: - type: Transform pos: -62.5,-22.5 parent: 2 - - uid: 10822 + - uid: 11459 components: - type: Transform pos: -62.5,-21.5 parent: 2 - - uid: 10823 + - uid: 11460 components: - type: Transform pos: -63.5,-21.5 parent: 2 - - uid: 10824 + - uid: 11461 components: - type: Transform pos: -64.5,-21.5 parent: 2 - - uid: 10825 + - uid: 11462 components: - type: Transform pos: -64.5,-20.5 parent: 2 - - uid: 10826 + - uid: 11463 components: - type: Transform pos: -64.5,-19.5 parent: 2 - - uid: 10827 + - uid: 11464 components: - type: Transform pos: -64.5,-18.5 parent: 2 - - uid: 10828 + - uid: 11465 components: - type: Transform pos: -64.5,-17.5 parent: 2 - - uid: 10829 + - uid: 11466 components: - type: Transform pos: -65.5,-17.5 parent: 2 - - uid: 10830 + - uid: 11467 components: - type: Transform pos: -66.5,-17.5 parent: 2 - - uid: 10831 + - uid: 11468 components: - type: Transform pos: -66.5,-16.5 parent: 2 - - uid: 10832 + - uid: 11469 components: - type: Transform pos: 47.5,-86.5 parent: 2 - - uid: 10833 + - uid: 11470 components: - type: Transform pos: 46.5,-86.5 parent: 2 - - uid: 10834 + - uid: 11471 components: - type: Transform pos: 45.5,-86.5 parent: 2 - - uid: 10835 + - uid: 11472 components: - type: Transform pos: 45.5,-87.5 parent: 2 - - uid: 10836 + - uid: 11473 components: - type: Transform pos: 45.5,-88.5 parent: 2 - - uid: 10837 + - uid: 11474 components: - type: Transform pos: 45.5,-89.5 parent: 2 - - uid: 10838 + - uid: 11475 components: - type: Transform pos: 45.5,-90.5 parent: 2 - - uid: 10839 + - uid: 11476 components: - type: Transform pos: 69.5,-63.5 parent: 2 - - uid: 10840 + - uid: 11477 components: - type: Transform pos: 44.5,-91.5 parent: 2 - - uid: 10841 + - uid: 11478 components: - type: Transform pos: -44.5,9.5 parent: 2 - - uid: 10842 + - uid: 11479 components: - type: Transform pos: -44.5,10.5 parent: 2 - - uid: 10843 + - uid: 11480 components: - type: Transform pos: -38.5,7.5 parent: 2 - - uid: 10844 + - uid: 11481 components: - type: Transform pos: -55.5,-51.5 parent: 2 - - uid: 10845 + - uid: 11482 components: - type: Transform pos: -55.5,-50.5 parent: 2 - - uid: 10846 + - uid: 11483 components: - type: Transform pos: 63.5,-68.5 parent: 2 - - uid: 10847 + - uid: 11484 components: - type: Transform pos: 63.5,-67.5 parent: 2 - - uid: 10848 + - uid: 11485 components: - type: Transform pos: 32.5,-23.5 parent: 2 - - uid: 10849 + - uid: 11486 components: - type: Transform pos: 74.5,-64.5 parent: 2 - - uid: 10850 + - uid: 11487 components: - type: Transform pos: 69.5,-58.5 parent: 2 - - uid: 10851 + - uid: 11488 components: - type: Transform pos: 69.5,-57.5 parent: 2 - - uid: 10852 + - uid: 11489 components: - type: Transform pos: 69.5,-59.5 parent: 2 - - uid: 10853 + - uid: 11490 components: - type: Transform pos: 62.5,-48.5 parent: 2 - - uid: 10854 + - uid: 11491 components: - type: Transform pos: 77.5,-64.5 parent: 2 - - uid: 10855 + - uid: 11492 components: - type: Transform pos: 70.5,-63.5 parent: 2 - - uid: 10856 + - uid: 11493 components: - type: Transform pos: 78.5,-64.5 parent: 2 - - uid: 10857 + - uid: 11494 components: - type: Transform pos: 74.5,-54.5 parent: 2 - - uid: 10858 + - uid: 11495 components: - type: Transform pos: 72.5,-63.5 parent: 2 - - uid: 10859 + - uid: 11496 components: - type: Transform pos: 65.5,-60.5 parent: 2 - - uid: 10860 + - uid: 11497 components: - type: Transform pos: 69.5,-60.5 parent: 2 - - uid: 10861 + - uid: 11498 components: - type: Transform pos: 66.5,-60.5 parent: 2 - - uid: 10862 + - uid: 11499 components: - type: Transform pos: 67.5,-60.5 parent: 2 - - uid: 10863 + - uid: 11500 components: - type: Transform pos: 69.5,-61.5 parent: 2 - - uid: 10864 + - uid: 11501 components: - type: Transform pos: 68.5,-60.5 parent: 2 - - uid: 10865 + - uid: 11502 components: - type: Transform pos: 75.5,-54.5 parent: 2 - - uid: 10866 + - uid: 11503 components: - type: Transform pos: 77.5,-54.5 parent: 2 - - uid: 10867 + - uid: 11504 components: - type: Transform pos: 96.5,-40.5 parent: 2 - - uid: 10868 + - uid: 11505 components: - type: Transform pos: 106.5,-45.5 parent: 2 - - uid: 10869 + - uid: 11506 components: - type: Transform pos: -34.5,-111.5 parent: 2 - - uid: 10870 + - uid: 11507 components: - type: Transform pos: -34.5,-114.5 parent: 2 - - uid: 10871 + - uid: 11508 components: - type: Transform pos: -35.5,-121.5 parent: 2 - - uid: 10872 + - uid: 11509 components: - type: Transform pos: -41.5,-116.5 parent: 2 - - uid: 10873 + - uid: 11510 components: - type: Transform pos: -34.5,-110.5 parent: 2 - - uid: 10874 + - uid: 11511 components: - type: Transform pos: -33.5,-117.5 parent: 2 - - uid: 10875 + - uid: 11512 components: - type: Transform pos: -34.5,-117.5 parent: 2 - - uid: 10876 + - uid: 11513 components: - type: Transform pos: -33.5,-121.5 parent: 2 - - uid: 10877 + - uid: 11514 components: - type: Transform pos: 76.5,-54.5 parent: 2 - - uid: 10878 + - uid: 11515 components: - type: Transform pos: 73.5,-64.5 parent: 2 - - uid: 10879 + - uid: 11516 components: - type: Transform pos: 78.5,-54.5 parent: 2 - - uid: 10880 + - uid: 11517 components: - type: Transform pos: 73.5,-54.5 parent: 2 - - uid: 10881 + - uid: 11518 components: - type: Transform pos: 32.5,17.5 parent: 2 - - uid: 10882 + - uid: 11519 components: - type: Transform pos: 33.5,17.5 parent: 2 - - uid: 10883 + - uid: 11520 components: - type: Transform pos: 30.5,17.5 parent: 2 - - uid: 10885 + - uid: 11521 components: - type: Transform pos: 31.5,17.5 parent: 2 - - uid: 10886 + - uid: 11522 components: - type: Transform pos: -33.5,-119.5 parent: 2 - - uid: 10887 + - uid: 11523 components: - type: Transform pos: 69.5,-55.5 parent: 2 - - uid: 10888 + - uid: 11524 components: - type: Transform pos: -34.5,-121.5 parent: 2 - - uid: 10889 + - uid: 11525 components: - type: Transform pos: 37.5,-83.5 parent: 2 - - uid: 10890 + - uid: 11526 components: - type: Transform pos: -33.5,-120.5 parent: 2 - - uid: 10891 + - uid: 11527 components: - type: Transform pos: -34.5,-113.5 parent: 2 - - uid: 10892 + - uid: 11528 components: - type: Transform pos: -34.5,-115.5 parent: 2 - - uid: 10893 + - uid: 11529 components: - type: Transform pos: -34.5,-112.5 parent: 2 - - uid: 10894 + - uid: 11530 components: - type: Transform pos: -34.5,-116.5 parent: 2 - - uid: 10895 + - uid: 11531 components: - type: Transform pos: -62.5,-66.5 parent: 2 - - uid: 10896 + - uid: 11532 components: - type: Transform pos: 109.5,-46.5 parent: 2 - - uid: 10897 + - uid: 11533 components: - type: Transform pos: 109.5,-44.5 parent: 2 - - uid: 10898 + - uid: 11534 components: - type: Transform pos: 107.5,-54.5 parent: 2 - - uid: 10899 + - uid: 11535 components: - type: Transform pos: 108.5,-54.5 parent: 2 - - uid: 10900 + - uid: 11536 components: - type: Transform pos: 34.5,17.5 parent: 2 - - uid: 10901 + - uid: 11537 components: - type: Transform pos: 33.5,1.5 parent: 2 - - uid: 10902 + - uid: 11538 components: - type: Transform pos: 100.5,-52.5 parent: 2 - - uid: 10903 + - uid: 11539 components: - type: Transform pos: 30.5,11.5 parent: 2 - - uid: 10904 + - uid: 11540 components: - type: Transform pos: -62.5,-68.5 parent: 2 - - uid: 10905 + - uid: 11541 components: - type: Transform pos: 66.5,-62.5 parent: 2 - - uid: 10906 + - uid: 11542 components: - type: Transform pos: 66.5,-61.5 parent: 2 - - uid: 10907 + - uid: 11543 components: - type: Transform pos: 70.5,-55.5 parent: 2 - - uid: 10908 + - uid: 11544 components: - type: Transform pos: 70.5,-54.5 parent: 2 - - uid: 10909 + - uid: 11545 components: - type: Transform pos: 72.5,-64.5 parent: 2 - - uid: 10910 + - uid: 11546 components: - type: Transform pos: 61.5,-54.5 parent: 2 - - uid: 10919 + - uid: 11547 components: - type: Transform pos: 54.5,-56.5 parent: 2 - - uid: 10920 + - uid: 11548 components: - type: Transform pos: 53.5,-56.5 parent: 2 - - uid: 10921 + - uid: 11549 components: - type: Transform pos: 30.5,13.5 parent: 2 - - uid: 10922 + - uid: 11550 components: - type: Transform pos: 30.5,12.5 parent: 2 - - uid: 10923 + - uid: 11551 components: - type: Transform pos: 22.5,1.5 parent: 2 - - uid: 10924 + - uid: 11552 components: - type: Transform pos: -62.5,-67.5 parent: 2 - - uid: 10925 + - uid: 11553 components: - type: Transform pos: -73.5,6.5 parent: 2 - - uid: 10926 + - uid: 11554 components: - type: Transform pos: 21.5,1.5 parent: 2 - - uid: 10928 + - uid: 11555 components: - type: Transform pos: 100.5,-47.5 parent: 2 - - uid: 10929 + - uid: 11556 components: - type: Transform pos: 100.5,-49.5 parent: 2 - - uid: 10930 + - uid: 11557 components: - type: Transform pos: -55.5,-97.5 parent: 2 - - uid: 10931 + - uid: 11558 components: - type: Transform pos: -55.5,-95.5 parent: 2 - - uid: 10932 + - uid: 11559 components: - type: Transform pos: -3.5,-74.5 parent: 2 - - uid: 10933 + - uid: 11560 components: - type: Transform pos: -55.5,-94.5 parent: 2 - - uid: 10934 + - uid: 11561 components: - type: Transform pos: 30.5,14.5 parent: 2 - - uid: 10935 + - uid: 11562 components: - type: Transform pos: 104.5,-53.5 parent: 2 - - uid: 10936 + - uid: 11563 components: - type: Transform pos: -1.5,-74.5 parent: 2 - - uid: 10937 + - uid: 11564 components: - type: Transform pos: -47.5,-13.5 parent: 2 - - uid: 10938 + - uid: 11565 components: - type: Transform pos: -47.5,-14.5 parent: 2 - - uid: 10939 + - uid: 11566 components: - type: Transform pos: -48.5,-11.5 parent: 2 - - uid: 10940 + - uid: 11567 components: - type: Transform pos: -47.5,-11.5 parent: 2 - - uid: 10941 + - uid: 11568 components: - type: Transform pos: -47.5,-12.5 parent: 2 - - uid: 10942 + - uid: 11569 components: - type: Transform pos: -65.5,-69.5 parent: 2 - - uid: 10943 + - uid: 11570 components: - type: Transform pos: -5.5,-74.5 parent: 2 - - uid: 10945 + - uid: 11571 components: - type: Transform pos: 34.5,16.5 parent: 2 - - uid: 10946 + - uid: 11572 components: - type: Transform pos: 30.5,1.5 parent: 2 - - uid: 10947 + - uid: 11573 components: - type: Transform pos: 29.5,1.5 parent: 2 - - uid: 10948 + - uid: 11574 components: - type: Transform pos: -66.5,-69.5 parent: 2 - - uid: 10950 + - uid: 11575 components: - type: Transform pos: 25.5,1.5 parent: 2 - - uid: 10951 + - uid: 11576 components: - type: Transform pos: -44.5,-119.5 parent: 2 - - uid: 10952 + - uid: 11577 components: - type: Transform pos: 31.5,1.5 parent: 2 - - uid: 10953 + - uid: 11578 components: - type: Transform pos: -42.5,-119.5 parent: 2 - - uid: 10954 + - uid: 11579 components: - type: Transform pos: 32.5,-24.5 parent: 2 - - uid: 10956 + - uid: 11580 components: - type: Transform pos: 86.5,-48.5 parent: 2 - - uid: 10957 + - uid: 11581 components: - type: Transform pos: 86.5,-47.5 parent: 2 - - uid: 10958 + - uid: 11582 components: - type: Transform pos: 45.5,-91.5 parent: 2 - - uid: 10959 + - uid: 11583 components: - type: Transform pos: 85.5,-44.5 parent: 2 - - uid: 10960 + - uid: 11584 components: - type: Transform pos: -41.5,-120.5 parent: 2 - - uid: 10961 + - uid: 11585 components: - type: Transform pos: 23.5,4.5 parent: 2 - - uid: 10962 + - uid: 11586 components: - type: Transform pos: -43.5,-119.5 parent: 2 - - uid: 10963 + - uid: 11587 components: - type: Transform pos: 24.5,1.5 parent: 2 - - uid: 10964 + - uid: 11588 components: - type: Transform pos: 51.5,-18.5 parent: 2 - - uid: 10965 + - uid: 11589 components: - type: Transform pos: 46.5,-16.5 parent: 2 - - uid: 10966 + - uid: 11590 components: - type: Transform pos: -35.5,8.5 parent: 2 - - uid: 10969 + - uid: 11591 components: - type: Transform pos: 100.5,-45.5 parent: 2 - - uid: 10970 + - uid: 11592 components: - type: Transform pos: 101.5,-52.5 parent: 2 - - uid: 10971 + - uid: 11593 components: - type: Transform pos: 103.5,-52.5 parent: 2 - - uid: 10972 + - uid: 11594 components: - type: Transform pos: 102.5,-52.5 parent: 2 - - uid: 10973 + - uid: 11595 components: - type: Transform pos: 101.5,-45.5 parent: 2 - - uid: 10974 + - uid: 11596 components: - type: Transform pos: 99.5,-45.5 parent: 2 - - uid: 10975 + - uid: 11597 components: - type: Transform pos: -36.5,-116.5 parent: 2 - - uid: 10976 + - uid: 11598 components: - type: Transform pos: -37.5,-116.5 parent: 2 - - uid: 10977 + - uid: 11599 components: - type: Transform pos: -35.5,-116.5 parent: 2 - - uid: 10978 + - uid: 11600 components: - type: Transform pos: -64.5,-69.5 parent: 2 - - uid: 10979 + - uid: 11601 components: - type: Transform pos: 74.5,-46.5 parent: 2 - - uid: 10980 + - uid: 11602 components: - type: Transform pos: -37.5,-121.5 parent: 2 - - uid: 10981 + - uid: 11603 components: - type: Transform pos: -41.5,-119.5 parent: 2 - - uid: 10982 + - uid: 11604 components: - type: Transform pos: -38.5,-121.5 parent: 2 - - uid: 10983 + - uid: 11605 components: - type: Transform pos: 75.5,-46.5 parent: 2 - - uid: 10984 + - uid: 11606 components: - type: Transform pos: -36.5,-121.5 parent: 2 - - uid: 10985 + - uid: 11607 components: - type: Transform pos: -39.5,-121.5 parent: 2 - - uid: 10986 + - uid: 11608 components: - type: Transform pos: 98.5,-47.5 parent: 2 - - uid: 10987 + - uid: 11609 components: - type: Transform pos: 98.5,-43.5 parent: 2 - - uid: 10988 + - uid: 11610 components: - type: Transform pos: 98.5,-45.5 parent: 2 - - uid: 10989 + - uid: 11611 components: - type: Transform pos: 94.5,-40.5 parent: 2 - - uid: 10990 + - uid: 11612 components: - type: Transform pos: 104.5,-55.5 parent: 2 - - uid: 10991 + - uid: 11613 components: - type: Transform pos: 99.5,-47.5 parent: 2 - - uid: 10992 + - uid: 11614 components: - type: Transform pos: 104.5,-52.5 parent: 2 - - uid: 10993 + - uid: 11615 components: - type: Transform pos: 109.5,-50.5 parent: 2 - - uid: 10994 + - uid: 11616 components: - type: Transform pos: 105.5,-55.5 parent: 2 - - uid: 10995 + - uid: 11617 components: - type: Transform pos: 109.5,-51.5 parent: 2 - - uid: 10996 + - uid: 11618 components: - type: Transform pos: 97.5,-40.5 parent: 2 - - uid: 10997 + - uid: 11619 components: - type: Transform pos: 100.5,-50.5 parent: 2 - - uid: 10998 + - uid: 11620 components: - type: Transform pos: 108.5,-53.5 parent: 2 - - uid: 10999 + - uid: 11621 components: - type: Transform pos: 93.5,-40.5 parent: 2 - - uid: 11000 + - uid: 11622 components: - type: Transform pos: 104.5,-45.5 parent: 2 - - uid: 11001 + - uid: 11623 components: - type: Transform pos: 106.5,-44.5 parent: 2 - - uid: 11002 + - uid: 11624 components: - type: Transform pos: 102.5,-45.5 parent: 2 - - uid: 11003 + - uid: 11625 components: - type: Transform pos: 105.5,-45.5 parent: 2 - - uid: 11004 + - uid: 11626 components: - type: Transform pos: 108.5,-52.5 parent: 2 - - uid: 11005 + - uid: 11627 components: - type: Transform pos: 107.5,-44.5 parent: 2 - - uid: 11006 + - uid: 11628 components: - type: Transform pos: 109.5,-45.5 parent: 2 - - uid: 11007 + - uid: 11629 components: - type: Transform pos: 98.5,-44.5 parent: 2 - - uid: 11008 + - uid: 11630 components: - type: Transform pos: 100.5,-48.5 parent: 2 - - uid: 11009 + - uid: 11631 components: - type: Transform pos: 108.5,-44.5 parent: 2 - - uid: 11010 + - uid: 11632 components: - type: Transform pos: 95.5,-40.5 parent: 2 - - uid: 11011 + - uid: 11633 components: - type: Transform pos: 98.5,-40.5 parent: 2 - - uid: 11012 + - uid: 11634 components: - type: Transform pos: 98.5,-42.5 parent: 2 - - uid: 11013 + - uid: 11635 components: - type: Transform pos: 98.5,-41.5 parent: 2 - - uid: 11014 + - uid: 11636 components: - type: Transform pos: 109.5,-48.5 parent: 2 - - uid: 11015 + - uid: 11637 components: - type: Transform pos: 109.5,-47.5 parent: 2 - - uid: 11016 + - uid: 11638 components: - type: Transform pos: 104.5,-54.5 parent: 2 - - uid: 11017 + - uid: 11639 components: - type: Transform pos: 98.5,-46.5 parent: 2 - - uid: 11018 + - uid: 11640 components: - type: Transform pos: 103.5,-45.5 parent: 2 - - uid: 11019 + - uid: 11641 components: - type: Transform pos: 99.5,-51.5 parent: 2 - - uid: 11020 + - uid: 11642 components: - type: Transform pos: 98.5,-62.5 parent: 2 - - uid: 11021 + - uid: 11643 components: - type: Transform pos: 99.5,-62.5 parent: 2 - - uid: 11022 + - uid: 11644 components: - type: Transform pos: 101.5,-62.5 parent: 2 - - uid: 11023 + - uid: 11645 components: - type: Transform pos: 100.5,-62.5 parent: 2 - - uid: 11024 + - uid: 11646 components: - type: Transform pos: 47.5,-59.5 parent: 2 - - uid: 11025 + - uid: 11647 components: - type: Transform pos: 47.5,-58.5 parent: 2 - - uid: 11026 + - uid: 11648 components: - type: Transform pos: 47.5,-60.5 parent: 2 - - uid: 11027 + - uid: 11649 components: - type: Transform pos: 47.5,-61.5 parent: 2 - - uid: 11031 + - uid: 11650 components: - type: Transform pos: -50.5,-69.5 parent: 2 - - uid: 11034 + - uid: 11651 components: - type: Transform pos: 84.5,-44.5 parent: 2 - - uid: 11035 + - uid: 11652 components: - type: Transform pos: 83.5,-44.5 parent: 2 - - uid: 11036 + - uid: 11653 components: - type: Transform pos: 86.5,-43.5 parent: 2 - - uid: 11037 + - uid: 11654 components: - type: Transform pos: -49.5,-11.5 parent: 2 - - uid: 11038 + - uid: 11655 components: - type: Transform pos: -50.5,-11.5 parent: 2 - - uid: 11039 + - uid: 11656 components: - type: Transform pos: 86.5,-44.5 parent: 2 - - uid: 11040 + - uid: 11657 components: - type: Transform pos: 92.5,-40.5 parent: 2 - - uid: 11041 + - uid: 11658 components: - type: Transform pos: 100.5,-51.5 parent: 2 - - uid: 11042 + - uid: 11659 components: - type: Transform pos: -4.5,-74.5 parent: 2 - - uid: 11043 + - uid: 11660 components: - type: Transform pos: -5.5,-73.5 parent: 2 - - uid: 11044 + - uid: 11661 components: - type: Transform pos: -2.5,-74.5 parent: 2 - - uid: 11046 + - uid: 11662 components: - type: Transform pos: 9.5,20.5 parent: 2 - - uid: 11047 + - uid: 11663 components: - type: Transform pos: 10.5,20.5 parent: 2 - - uid: 11048 + - uid: 11664 components: - type: Transform pos: 11.5,20.5 parent: 2 - - uid: 11049 + - uid: 11665 components: - type: Transform pos: 12.5,20.5 parent: 2 - - uid: 11050 + - uid: 11666 components: - type: Transform pos: 13.5,20.5 parent: 2 - - uid: 11056 + - uid: 11667 components: - type: Transform pos: 19.5,20.5 parent: 2 - - uid: 11073 + - uid: 11668 components: - type: Transform pos: 30.5,18.5 parent: 2 - - uid: 11076 + - uid: 11669 components: - type: Transform pos: 44.5,-16.5 parent: 2 - - uid: 11082 + - uid: 11670 components: - type: Transform pos: -40.5,-121.5 parent: 2 - - uid: 11083 + - uid: 11671 components: - type: Transform pos: -41.5,-121.5 parent: 2 - - uid: 11084 + - uid: 11672 components: - type: Transform pos: -55.5,-102.5 parent: 2 - - uid: 11085 + - uid: 11673 components: - type: Transform pos: 30.5,19.5 parent: 2 - - uid: 11086 + - uid: 11674 components: - type: Transform pos: 82.5,-46.5 parent: 2 - - uid: 11087 + - uid: 11675 components: - type: Transform pos: 82.5,-45.5 parent: 2 - - uid: 11088 + - uid: 11676 components: - type: Transform pos: 82.5,-47.5 parent: 2 - - uid: 11089 + - uid: 11677 components: - type: Transform pos: 81.5,-47.5 parent: 2 - - uid: 11090 + - uid: 11678 components: - type: Transform pos: -54.5,-94.5 parent: 2 - - uid: 11091 + - uid: 11679 components: - type: Transform pos: 80.5,-47.5 parent: 2 - - uid: 11092 + - uid: 11680 components: - type: Transform pos: 85.5,-47.5 parent: 2 - - uid: 11093 + - uid: 11681 components: - type: Transform pos: 84.5,-47.5 parent: 2 - - uid: 11094 + - uid: 11682 components: - type: Transform pos: 83.5,-47.5 parent: 2 - - uid: 11095 + - uid: 11683 components: - type: Transform pos: -65.5,4.5 parent: 2 - - uid: 11096 + - uid: 11684 components: - type: Transform pos: -65.5,3.5 parent: 2 - - uid: 11097 + - uid: 11685 components: - type: Transform pos: -65.5,2.5 parent: 2 - - uid: 11098 + - uid: 11686 components: - type: Transform pos: -66.5,2.5 parent: 2 - - uid: 11099 + - uid: 11687 components: - type: Transform pos: -67.5,2.5 parent: 2 - - uid: 11100 + - uid: 11688 components: - type: Transform pos: -67.5,3.5 parent: 2 - - uid: 11101 + - uid: 11689 components: - type: Transform pos: -67.5,4.5 parent: 2 - - uid: 11102 + - uid: 11690 components: - type: Transform pos: -68.5,4.5 parent: 2 - - uid: 11103 + - uid: 11691 components: - type: Transform pos: -68.5,5.5 parent: 2 - - uid: 11104 + - uid: 11692 components: - type: Transform pos: -68.5,6.5 parent: 2 - - uid: 11105 + - uid: 11693 components: - type: Transform pos: -68.5,7.5 parent: 2 - - uid: 11106 + - uid: 11694 components: - type: Transform pos: -67.5,7.5 parent: 2 - - uid: 11107 + - uid: 11695 components: - type: Transform pos: -66.5,7.5 parent: 2 - - uid: 11108 + - uid: 11696 components: - type: Transform pos: -65.5,7.5 parent: 2 - - uid: 11109 + - uid: 11697 components: - type: Transform pos: -64.5,7.5 parent: 2 - - uid: 11110 + - uid: 11698 components: - type: Transform pos: -63.5,7.5 parent: 2 - - uid: 11111 + - uid: 11699 components: - type: Transform pos: -62.5,7.5 parent: 2 - - uid: 11112 + - uid: 11700 components: - type: Transform pos: -61.5,7.5 parent: 2 - - uid: 11113 + - uid: 11701 components: - type: Transform pos: -61.5,8.5 parent: 2 - - uid: 11114 + - uid: 11702 components: - type: Transform pos: -64.5,-16.5 parent: 2 - - uid: 11115 + - uid: 11703 components: - type: Transform pos: -64.5,-15.5 parent: 2 - - uid: 11116 + - uid: 11704 components: - type: Transform pos: -64.5,-14.5 parent: 2 - - uid: 11117 + - uid: 11705 components: - type: Transform pos: -65.5,-14.5 parent: 2 - - uid: 11118 + - uid: 11706 components: - type: Transform pos: -70.5,10.5 parent: 2 - - uid: 11119 + - uid: 11707 components: - type: Transform pos: -70.5,11.5 parent: 2 - - uid: 11150 + - uid: 11708 components: - type: Transform pos: -49.5,-69.5 parent: 2 - - uid: 11151 + - uid: 11709 components: - type: Transform pos: -51.5,-69.5 parent: 2 - - uid: 11152 + - uid: 11710 components: - type: Transform pos: -53.5,-69.5 parent: 2 - - uid: 11153 + - uid: 11711 components: - type: Transform pos: -55.5,-69.5 parent: 2 - - uid: 11154 + - uid: 11712 components: - type: Transform pos: -58.5,-71.5 parent: 2 - - uid: 11155 + - uid: 11713 components: - type: Transform pos: -58.5,-72.5 parent: 2 - - uid: 11156 + - uid: 11714 components: - type: Transform pos: -58.5,-73.5 parent: 2 - - uid: 11157 + - uid: 11715 components: - type: Transform pos: -59.5,-73.5 parent: 2 - - uid: 11158 + - uid: 11716 components: - type: Transform pos: -60.5,-73.5 parent: 2 - - uid: 11159 + - uid: 11717 components: - type: Transform pos: -61.5,-73.5 parent: 2 - - uid: 11160 + - uid: 11718 components: - type: Transform pos: -62.5,-73.5 parent: 2 - - uid: 11161 + - uid: 11719 components: - type: Transform pos: -62.5,-72.5 parent: 2 - - uid: 11162 + - uid: 11720 components: - type: Transform pos: -62.5,-71.5 parent: 2 - - uid: 11163 + - uid: 11721 components: - type: Transform pos: -62.5,-70.5 parent: 2 - - uid: 11164 + - uid: 11722 components: - type: Transform pos: -53.5,-68.5 parent: 2 - - uid: 11165 + - uid: 11723 components: - type: Transform pos: -51.5,-68.5 parent: 2 - - uid: 11166 + - uid: 11724 components: - type: Transform pos: -35.5,9.5 parent: 2 - - uid: 11167 + - uid: 11725 components: - type: Transform pos: -40.5,-26.5 parent: 2 - - uid: 11168 + - uid: 11726 components: - type: Transform pos: -0.5,-73.5 parent: 2 - - uid: 11169 + - uid: 11727 components: - type: Transform pos: -0.5,-72.5 parent: 2 - - uid: 11170 + - uid: 11728 components: - type: Transform pos: -1.5,-72.5 parent: 2 - - uid: 11171 + - uid: 11729 components: - type: Transform pos: 86.5,-42.5 parent: 2 - - uid: 11172 + - uid: 11730 components: - type: Transform pos: 86.5,-41.5 parent: 2 - - uid: 11173 + - uid: 11731 components: - type: Transform pos: 46.5,-85.5 parent: 2 - - uid: 11174 + - uid: 11732 components: - type: Transform pos: 46.5,-84.5 parent: 2 - - uid: 11175 + - uid: 11733 components: - type: Transform pos: 69.5,-45.5 parent: 2 - - uid: 11176 + - uid: 11734 components: - type: Transform pos: 69.5,-46.5 parent: 2 - - uid: 11177 + - uid: 11735 components: - type: Transform pos: 69.5,-47.5 parent: 2 - - uid: 11178 + - uid: 11736 components: - type: Transform pos: 68.5,-47.5 parent: 2 - - uid: 11179 + - uid: 11737 components: - type: Transform pos: 30.5,20.5 parent: 2 - - uid: 11180 + - uid: 11738 components: - type: Transform pos: 30.5,21.5 parent: 2 - - uid: 11181 + - uid: 11739 components: - type: Transform pos: 30.5,22.5 parent: 2 - - uid: 11182 + - uid: 11740 components: - type: Transform pos: 30.5,23.5 parent: 2 - - uid: 11183 + - uid: 11741 components: - type: Transform pos: 30.5,24.5 parent: 2 - - uid: 11184 + - uid: 11742 components: - type: Transform pos: 29.5,24.5 parent: 2 - - uid: 11185 + - uid: 11743 components: - type: Transform pos: 28.5,24.5 parent: 2 - - uid: 11186 + - uid: 11744 components: - type: Transform pos: 27.5,24.5 parent: 2 - - uid: 11187 + - uid: 11745 components: - type: Transform pos: 26.5,24.5 parent: 2 - - uid: 11188 + - uid: 11746 components: - type: Transform pos: -55.5,-99.5 parent: 2 - - uid: 11189 + - uid: 11747 components: - type: Transform pos: -55.5,-100.5 parent: 2 - - uid: 11190 + - uid: 11748 components: - type: Transform pos: -55.5,-101.5 parent: 2 - - uid: 11191 + - uid: 11749 components: - type: Transform pos: -55.5,-98.5 parent: 2 - - uid: 11192 + - uid: 11750 components: - type: Transform pos: -55.5,-96.5 parent: 2 - - uid: 11193 + - uid: 11751 components: - type: Transform pos: -55.5,-103.5 parent: 2 - - uid: 11194 + - uid: 11752 components: - type: Transform pos: -54.5,-103.5 parent: 2 - - uid: 11195 + - uid: 11753 components: - type: Transform pos: -42.5,-110.5 parent: 2 - - uid: 11196 + - uid: 11754 components: - type: Transform pos: -41.5,-110.5 parent: 2 - - uid: 11197 + - uid: 11755 components: - type: Transform pos: -40.5,-110.5 parent: 2 - - uid: 11198 + - uid: 11756 components: - type: Transform pos: -40.5,-109.5 parent: 2 - - uid: 11199 + - uid: 11757 components: - type: Transform pos: -39.5,-109.5 parent: 2 - - uid: 11200 + - uid: 11758 components: - type: Transform pos: -38.5,-109.5 parent: 2 - - uid: 11201 + - uid: 11759 components: - type: Transform pos: -37.5,-109.5 parent: 2 - - uid: 11202 + - uid: 11760 components: - type: Transform pos: -36.5,-109.5 parent: 2 - - uid: 11203 + - uid: 11761 components: - type: Transform pos: -35.5,-109.5 parent: 2 - - uid: 11204 + - uid: 11762 components: - type: Transform pos: -34.5,-109.5 parent: 2 - - uid: 11205 + - uid: 11763 components: - type: Transform pos: -33.5,-109.5 parent: 2 - - uid: 11206 + - uid: 11764 components: - type: Transform pos: -32.5,-109.5 parent: 2 - - uid: 11207 + - uid: 11765 components: - type: Transform pos: -31.5,-109.5 parent: 2 - - uid: 11208 + - uid: 11766 components: - type: Transform pos: -30.5,-109.5 parent: 2 - - uid: 11209 + - uid: 11767 components: - type: Transform pos: -30.5,-108.5 parent: 2 - - uid: 11210 + - uid: 11768 components: - type: Transform pos: -30.5,-107.5 parent: 2 - - uid: 11211 + - uid: 11769 components: - type: Transform pos: -30.5,-106.5 parent: 2 - - uid: 11212 + - uid: 11770 components: - type: Transform pos: -30.5,-105.5 parent: 2 - - uid: 11213 + - uid: 11771 components: - type: Transform pos: -30.5,-104.5 parent: 2 - - uid: 11214 + - uid: 11772 components: - type: Transform pos: -29.5,-104.5 parent: 2 - - uid: 11215 + - uid: 11773 components: - type: Transform pos: -38.5,-108.5 parent: 2 - - uid: 11216 + - uid: 11774 components: - type: Transform pos: -38.5,-107.5 parent: 2 - - uid: 11217 + - uid: 11775 components: - type: Transform pos: -38.5,-106.5 parent: 2 - - uid: 11218 + - uid: 11776 components: - type: Transform pos: -38.5,-105.5 parent: 2 - - uid: 11219 + - uid: 11777 components: - type: Transform pos: -39.5,-105.5 parent: 2 - - uid: 11220 + - uid: 11778 components: - type: Transform pos: -40.5,-105.5 parent: 2 - - uid: 11221 + - uid: 11779 components: - type: Transform pos: -41.5,-105.5 parent: 2 - - uid: 11222 + - uid: 11780 components: - type: Transform pos: -42.5,-105.5 parent: 2 - - uid: 11223 + - uid: 11781 components: - type: Transform pos: -43.5,-105.5 parent: 2 - - uid: 11224 + - uid: 11782 components: - type: Transform pos: -44.5,-105.5 parent: 2 - - uid: 11225 + - uid: 11783 components: - type: Transform pos: -45.5,-105.5 parent: 2 - - uid: 11226 + - uid: 11784 components: - type: Transform pos: -46.5,-105.5 parent: 2 - - uid: 11227 + - uid: 11785 components: - type: Transform pos: -47.5,-105.5 parent: 2 - - uid: 11228 + - uid: 11786 components: - type: Transform pos: -48.5,-105.5 parent: 2 - - uid: 11229 + - uid: 11787 components: - type: Transform pos: -49.5,-105.5 parent: 2 - - uid: 11230 + - uid: 11788 components: - type: Transform pos: -49.5,-106.5 parent: 2 - - uid: 11231 + - uid: 11789 components: - type: Transform pos: -50.5,-106.5 parent: 2 - - uid: 11232 + - uid: 11790 components: - type: Transform pos: -50.5,-107.5 parent: 2 - - uid: 11233 + - uid: 11791 components: - type: Transform pos: -50.5,-108.5 parent: 2 - - uid: 11234 + - uid: 11792 components: - type: Transform pos: -50.5,-109.5 parent: 2 - - uid: 11235 + - uid: 11793 components: - type: Transform pos: -50.5,-110.5 parent: 2 - - uid: 11236 + - uid: 11794 components: - type: Transform pos: -50.5,-111.5 parent: 2 - - uid: 11237 + - uid: 11795 components: - type: Transform pos: -50.5,-112.5 parent: 2 - - uid: 11238 + - uid: 11796 components: - type: Transform pos: -50.5,-113.5 parent: 2 - - uid: 11239 + - uid: 11797 components: - type: Transform pos: -55.5,-107.5 parent: 2 - - uid: 11240 + - uid: 11798 components: - type: Transform pos: -51.5,-106.5 parent: 2 - - uid: 11241 + - uid: 11799 components: - type: Transform pos: -52.5,-106.5 parent: 2 - - uid: 11242 + - uid: 11800 components: - type: Transform pos: -53.5,-106.5 parent: 2 - - uid: 11243 + - uid: 11801 components: - type: Transform pos: -54.5,-106.5 parent: 2 - - uid: 11244 + - uid: 11802 components: - type: Transform pos: -55.5,-106.5 parent: 2 - - uid: 11245 + - uid: 11803 components: - type: Transform pos: -55.5,-108.5 parent: 2 - - uid: 11246 + - uid: 11804 components: - type: Transform pos: -55.5,-109.5 parent: 2 - - uid: 11247 + - uid: 11805 components: - type: Transform pos: -55.5,-110.5 parent: 2 - - uid: 11248 + - uid: 11806 components: - type: Transform pos: -55.5,-111.5 parent: 2 - - uid: 11249 + - uid: 11807 components: - type: Transform pos: -55.5,-112.5 parent: 2 - - uid: 11250 + - uid: 11808 components: - type: Transform pos: -55.5,-113.5 parent: 2 - - uid: 11251 + - uid: 11809 components: - type: Transform pos: -55.5,-114.5 parent: 2 - - uid: 11252 + - uid: 11810 components: - type: Transform pos: -55.5,-115.5 parent: 2 - - uid: 11253 + - uid: 11811 components: - type: Transform pos: -55.5,-116.5 parent: 2 - - uid: 11254 + - uid: 11812 components: - type: Transform pos: -55.5,-117.5 parent: 2 - - uid: 11255 + - uid: 11813 components: - type: Transform pos: -55.5,-118.5 parent: 2 - - uid: 11256 + - uid: 11814 components: - type: Transform pos: -55.5,-119.5 parent: 2 - - uid: 11257 + - uid: 11815 components: - type: Transform pos: -54.5,-119.5 parent: 2 - - uid: 11258 + - uid: 11816 components: - type: Transform pos: -53.5,-119.5 parent: 2 - - uid: 11259 + - uid: 11817 components: - type: Transform pos: -52.5,-119.5 parent: 2 - - uid: 11260 + - uid: 11818 components: - type: Transform pos: -52.5,-118.5 parent: 2 - - uid: 11261 + - uid: 11819 components: - type: Transform pos: -51.5,-118.5 parent: 2 - - uid: 11262 + - uid: 11820 components: - type: Transform pos: -50.5,-118.5 parent: 2 - - uid: 11263 + - uid: 11821 components: - type: Transform pos: -49.5,-118.5 parent: 2 - - uid: 11264 + - uid: 11822 components: - type: Transform pos: -48.5,-118.5 parent: 2 - - uid: 11265 + - uid: 11823 components: - type: Transform pos: -48.5,-119.5 parent: 2 - - uid: 11266 + - uid: 11824 components: - type: Transform pos: -47.5,-119.5 parent: 2 - - uid: 11267 + - uid: 11825 components: - type: Transform pos: -46.5,-119.5 parent: 2 - - uid: 11268 + - uid: 11826 components: - type: Transform pos: -45.5,-119.5 parent: 2 - - uid: 11269 + - uid: 11827 components: - type: Transform pos: -45.5,-118.5 parent: 2 - - uid: 11270 + - uid: 11828 components: - type: Transform pos: -45.5,-117.5 parent: 2 - - uid: 11271 + - uid: 11829 components: - type: Transform pos: -46.5,-117.5 parent: 2 - - uid: 11272 + - uid: 11830 components: - type: Transform pos: -47.5,-117.5 parent: 2 - - uid: 11273 + - uid: 11831 components: - type: Transform pos: -68.5,3.5 parent: 2 - - uid: 11274 + - uid: 11832 components: - type: Transform pos: -69.5,3.5 parent: 2 - - uid: 11275 + - uid: 11833 components: - type: Transform pos: -69.5,7.5 parent: 2 - - uid: 11276 + - uid: 11834 components: - type: Transform pos: -70.5,7.5 parent: 2 - - uid: 11277 + - uid: 11835 components: - type: Transform pos: -71.5,7.5 parent: 2 - - uid: 11278 + - uid: 11836 components: - type: Transform pos: -72.5,7.5 parent: 2 - - uid: 11279 + - uid: 11837 components: - type: Transform pos: -73.5,7.5 parent: 2 - - uid: 11280 + - uid: 11838 components: - type: Transform pos: -70.5,9.5 parent: 2 - - uid: 11281 + - uid: 11839 components: - type: Transform pos: -69.5,9.5 parent: 2 - - uid: 11282 + - uid: 11840 components: - type: Transform pos: -74.5,6.5 parent: 2 - - uid: 11283 + - uid: 11841 components: - type: Transform pos: -75.5,6.5 parent: 2 - - uid: 11284 + - uid: 11842 components: - type: Transform pos: -76.5,6.5 parent: 2 - - uid: 11285 + - uid: 11843 components: - type: Transform pos: -77.5,6.5 parent: 2 - - uid: 11286 + - uid: 11844 components: - type: Transform pos: -78.5,6.5 parent: 2 - - uid: 11287 + - uid: 11845 components: - type: Transform pos: -78.5,5.5 parent: 2 - - uid: 11288 + - uid: 11846 components: - type: Transform pos: -78.5,4.5 parent: 2 - - uid: 11289 + - uid: 11847 components: - type: Transform pos: -78.5,3.5 parent: 2 - - uid: 11290 + - uid: 11848 components: - type: Transform pos: -78.5,2.5 parent: 2 - - uid: 11291 + - uid: 11849 components: - type: Transform pos: -78.5,1.5 parent: 2 - - uid: 11292 + - uid: 11850 components: - type: Transform pos: -78.5,0.5 parent: 2 - - uid: 11293 + - uid: 11851 components: - type: Transform pos: -78.5,-0.5 parent: 2 - - uid: 11294 + - uid: 11852 components: - type: Transform pos: -78.5,-1.5 parent: 2 - - uid: 11295 + - uid: 11853 components: - type: Transform pos: -78.5,-2.5 parent: 2 - - uid: 11296 + - uid: 11854 components: - type: Transform pos: -78.5,-3.5 parent: 2 - - uid: 11297 + - uid: 11855 components: - type: Transform pos: -79.5,-3.5 parent: 2 - - uid: 11298 + - uid: 11856 components: - type: Transform pos: -79.5,-4.5 parent: 2 - - uid: 11299 + - uid: 11857 components: - type: Transform pos: -80.5,-4.5 parent: 2 - - uid: 11300 + - uid: 11858 components: - type: Transform pos: -81.5,-4.5 parent: 2 - - uid: 11301 + - uid: 11859 components: - type: Transform pos: -82.5,-4.5 parent: 2 - - uid: 11302 + - uid: 11860 components: - type: Transform pos: -83.5,-4.5 parent: 2 - - uid: 11303 + - uid: 11861 components: - type: Transform pos: -83.5,-3.5 parent: 2 - - uid: 11304 + - uid: 11862 components: - type: Transform pos: -83.5,-2.5 parent: 2 - - uid: 11305 + - uid: 11863 components: - type: Transform pos: -79.5,-5.5 parent: 2 - - uid: 11306 + - uid: 11864 components: - type: Transform pos: -79.5,-6.5 parent: 2 - - uid: 11307 + - uid: 11865 components: - type: Transform pos: -79.5,-7.5 parent: 2 - - uid: 11308 + - uid: 11866 components: - type: Transform pos: -79.5,-8.5 parent: 2 - - uid: 11309 + - uid: 11867 components: - type: Transform pos: -79.5,-9.5 parent: 2 - - uid: 11310 + - uid: 11868 components: - type: Transform pos: -79.5,-10.5 parent: 2 - - uid: 11311 + - uid: 11869 components: - type: Transform pos: -79.5,-11.5 parent: 2 - - uid: 11312 + - uid: 11870 components: - type: Transform pos: -79.5,-12.5 parent: 2 - - uid: 11313 + - uid: 11871 components: - type: Transform pos: -79.5,-13.5 parent: 2 - - uid: 11314 + - uid: 11872 components: - type: Transform pos: -79.5,-14.5 parent: 2 - - uid: 11315 + - uid: 11873 components: - type: Transform pos: -78.5,-14.5 parent: 2 - - uid: 11316 + - uid: 11874 components: - type: Transform pos: -77.5,-14.5 parent: 2 - - uid: 11317 + - uid: 11875 components: - type: Transform pos: -76.5,-14.5 parent: 2 - - uid: 11318 + - uid: 11876 components: - type: Transform pos: -76.5,-15.5 parent: 2 - - uid: 11319 + - uid: 11877 components: - type: Transform pos: -76.5,-16.5 parent: 2 - - uid: 11320 + - uid: 11878 components: - type: Transform pos: -76.5,-17.5 parent: 2 - - uid: 11321 + - uid: 11879 components: - type: Transform pos: -76.5,-18.5 parent: 2 - - uid: 11322 + - uid: 11880 components: - type: Transform pos: -76.5,-19.5 parent: 2 - - uid: 11323 + - uid: 11881 components: - type: Transform pos: -76.5,-20.5 parent: 2 - - uid: 11324 + - uid: 11882 components: - type: Transform pos: -76.5,-21.5 parent: 2 - - uid: 11325 + - uid: 11883 components: - type: Transform pos: -76.5,-22.5 parent: 2 - - uid: 11326 + - uid: 11884 components: - type: Transform pos: -76.5,-23.5 parent: 2 - - uid: 11327 + - uid: 11885 components: - type: Transform pos: -75.5,-23.5 parent: 2 - - uid: 11328 + - uid: 11886 components: - type: Transform pos: -80.5,-14.5 parent: 2 - - uid: 11329 + - uid: 11887 components: - type: Transform pos: -81.5,-14.5 parent: 2 - - uid: 11330 + - uid: 11888 components: - type: Transform pos: -81.5,-15.5 parent: 2 - - uid: 11331 + - uid: 11889 components: - type: Transform pos: -81.5,-16.5 parent: 2 - - uid: 11332 + - uid: 11890 components: - type: Transform pos: -80.5,-16.5 parent: 2 - - uid: 11333 + - uid: 11891 components: - type: Transform pos: -84.5,-4.5 parent: 2 - - uid: 11334 + - uid: 11892 components: - type: Transform pos: -84.5,-5.5 parent: 2 - - uid: 11335 + - uid: 11893 components: - type: Transform pos: -84.5,-6.5 parent: 2 - - uid: 11336 + - uid: 11894 components: - type: Transform pos: -78.5,-10.5 parent: 2 - - uid: 11337 + - uid: 11895 components: - type: Transform pos: -77.5,-10.5 parent: 2 - - uid: 11338 + - uid: 11896 components: - type: Transform pos: -76.5,-10.5 parent: 2 - - uid: 11339 + - uid: 11897 components: - type: Transform pos: -75.5,-10.5 parent: 2 - - uid: 11340 + - uid: 11898 components: - type: Transform pos: -74.5,-10.5 parent: 2 - - uid: 11341 + - uid: 11899 components: - type: Transform pos: -74.5,-11.5 parent: 2 - - uid: 11342 + - uid: 11900 components: - type: Transform pos: -33.5,-113.5 parent: 2 - - uid: 11343 + - uid: 11901 components: - type: Transform pos: 98.5,-63.5 parent: 2 - - uid: 11344 + - uid: 11902 components: - type: Transform pos: 98.5,-64.5 parent: 2 - - uid: 11345 + - uid: 11903 components: - type: Transform pos: 98.5,-65.5 parent: 2 - - uid: 11346 + - uid: 11904 components: - type: Transform pos: 98.5,-66.5 parent: 2 - - uid: 11347 + - uid: 11905 components: - type: Transform pos: 98.5,-67.5 parent: 2 - - uid: 11348 + - uid: 11906 components: - type: Transform pos: 98.5,-68.5 parent: 2 - - uid: 11349 + - uid: 11907 components: - type: Transform pos: 99.5,-68.5 parent: 2 - - uid: 11350 + - uid: 11908 components: - type: Transform pos: 100.5,-68.5 parent: 2 - - uid: 11351 + - uid: 11909 components: - type: Transform pos: 97.5,-68.5 parent: 2 - - uid: 11352 + - uid: 11910 components: - type: Transform pos: 96.5,-68.5 parent: 2 - - uid: 11353 + - uid: 11911 components: - type: Transform pos: 98.5,-69.5 parent: 2 - - uid: 11354 + - uid: 11912 components: - type: Transform pos: 98.5,-70.5 parent: 2 - - uid: 11355 + - uid: 11913 components: - type: Transform pos: 98.5,-71.5 parent: 2 - - uid: 11356 + - uid: 11914 components: - type: Transform pos: 98.5,-72.5 parent: 2 - - uid: 11357 + - uid: 11915 components: - type: Transform pos: 98.5,-73.5 parent: 2 - - uid: 11358 + - uid: 11916 components: - type: Transform pos: 98.5,-74.5 parent: 2 - - uid: 11359 + - uid: 11917 components: - type: Transform pos: 98.5,-75.5 parent: 2 - - uid: 11360 + - uid: 11918 components: - type: Transform pos: 98.5,-76.5 parent: 2 - - uid: 11361 + - uid: 11919 components: - type: Transform pos: 98.5,-77.5 parent: 2 - - uid: 11362 + - uid: 11920 components: - type: Transform pos: 98.5,-78.5 parent: 2 - - uid: 11363 + - uid: 11921 components: - type: Transform pos: 98.5,-79.5 parent: 2 - - uid: 11364 + - uid: 11922 components: - type: Transform pos: 97.5,-77.5 parent: 2 - - uid: 11365 + - uid: 11923 components: - type: Transform pos: 96.5,-77.5 parent: 2 - - uid: 11366 + - uid: 11924 components: - type: Transform pos: 98.5,-80.5 parent: 2 - - uid: 11367 + - uid: 11925 components: - type: Transform pos: 98.5,-81.5 parent: 2 - - uid: 11368 + - uid: 11926 components: - type: Transform pos: 98.5,-82.5 parent: 2 - - uid: 11369 + - uid: 11927 components: - type: Transform pos: 98.5,-83.5 parent: 2 - - uid: 11370 + - uid: 11928 components: - type: Transform pos: 98.5,-84.5 parent: 2 - - uid: 11371 + - uid: 11929 components: - type: Transform pos: 98.5,-85.5 parent: 2 - - uid: 11372 + - uid: 11930 components: - type: Transform pos: 99.5,-85.5 parent: 2 - - uid: 11373 + - uid: 11931 components: - type: Transform pos: 97.5,-64.5 parent: 2 - - uid: 11374 + - uid: 11932 components: - type: Transform pos: 96.5,-64.5 parent: 2 - - uid: 11375 + - uid: 11933 components: - type: Transform pos: 26.5,0.5 parent: 2 - - uid: 11376 + - uid: 11934 components: - type: Transform pos: 87.5,-48.5 parent: 2 - - uid: 11377 + - uid: 11935 components: - type: Transform pos: 88.5,-48.5 parent: 2 - - uid: 11378 + - uid: 11936 components: - type: Transform pos: 88.5,-47.5 parent: 2 - - uid: 11379 + - uid: 11937 components: - type: Transform pos: 88.5,-46.5 parent: 2 - - uid: 11380 + - uid: 11938 components: - type: Transform pos: 88.5,-45.5 parent: 2 - - uid: 11381 + - uid: 11939 components: - type: Transform pos: 89.5,-45.5 parent: 2 - - uid: 11382 + - uid: 11940 components: - type: Transform pos: 90.5,-45.5 parent: 2 - - uid: 11383 + - uid: 11941 components: - type: Transform pos: 91.5,-45.5 parent: 2 - - uid: 11384 + - uid: 11942 components: - type: Transform pos: 91.5,-44.5 parent: 2 - - uid: 11385 + - uid: 11943 components: - type: Transform pos: 92.5,-44.5 parent: 2 - - uid: 11386 + - uid: 11944 components: - type: Transform pos: 93.5,-44.5 parent: 2 - - uid: 11387 + - uid: 11945 components: - type: Transform pos: 94.5,-44.5 parent: 2 - - uid: 11388 + - uid: 11946 components: - type: Transform pos: 95.5,-44.5 parent: 2 - - uid: 11389 + - uid: 11947 components: - type: Transform pos: 96.5,-44.5 parent: 2 - - uid: 11390 + - uid: 11948 components: - type: Transform pos: 97.5,-44.5 parent: 2 - - uid: 11391 + - uid: 11949 components: - type: Transform pos: 34.5,2.5 parent: 2 - - uid: 11392 + - uid: 11950 components: - type: Transform pos: 35.5,2.5 parent: 2 - - uid: 11393 + - uid: 11951 components: - type: Transform pos: 36.5,2.5 parent: 2 - - uid: 11394 + - uid: 11952 components: - type: Transform pos: 37.5,2.5 parent: 2 - - uid: 11395 + - uid: 11953 components: - type: Transform pos: 38.5,2.5 parent: 2 - - uid: 11396 + - uid: 11954 components: - type: Transform pos: 31.5,11.5 parent: 2 - - uid: 11397 + - uid: 11955 components: - type: Transform pos: 32.5,11.5 parent: 2 - - uid: 11398 + - uid: 11956 components: - type: Transform pos: 33.5,11.5 parent: 2 - - uid: 11399 + - uid: 11957 components: - type: Transform pos: 33.5,10.5 parent: 2 - - uid: 11400 + - uid: 11958 components: - type: Transform pos: 33.5,9.5 parent: 2 - - uid: 11401 + - uid: 11959 components: - type: Transform pos: 33.5,8.5 parent: 2 - - uid: 11402 + - uid: 11960 components: - type: Transform pos: 33.5,7.5 parent: 2 - - uid: 11403 + - uid: 11961 components: - type: Transform pos: 33.5,6.5 parent: 2 - - uid: 11404 + - uid: 11962 components: - type: Transform pos: 33.5,5.5 parent: 2 - - uid: 11405 + - uid: 11963 components: - type: Transform pos: 33.5,4.5 parent: 2 - - uid: 11406 + - uid: 11964 components: - type: Transform pos: 33.5,3.5 parent: 2 - - uid: 11407 + - uid: 11965 components: - type: Transform pos: 34.5,3.5 parent: 2 - - uid: 11408 + - uid: 11966 components: - type: Transform pos: 25.5,24.5 parent: 2 - - uid: 11409 + - uid: 11967 components: - type: Transform pos: 24.5,24.5 parent: 2 - - uid: 11410 + - uid: 11968 components: - type: Transform pos: 24.5,23.5 parent: 2 - - uid: 11411 + - uid: 11969 components: - type: Transform pos: 30.5,25.5 parent: 2 - - uid: 11412 + - uid: 11970 components: - type: Transform pos: 31.5,25.5 parent: 2 - - uid: 11413 + - uid: 11971 components: - type: Transform pos: 32.5,25.5 parent: 2 - - uid: 11414 + - uid: 11972 components: - type: Transform pos: 33.5,25.5 parent: 2 - - uid: 11415 + - uid: 11973 components: - type: Transform pos: 34.5,25.5 parent: 2 - - uid: 11416 + - uid: 11974 components: - type: Transform pos: 35.5,25.5 parent: 2 - - uid: 11417 + - uid: 11975 components: - type: Transform pos: 35.5,26.5 parent: 2 - - uid: 11418 + - uid: 11976 components: - type: Transform pos: 35.5,27.5 parent: 2 - - uid: 11419 + - uid: 11977 components: - type: Transform pos: 35.5,28.5 parent: 2 - - uid: 11420 + - uid: 11978 components: - type: Transform pos: 35.5,29.5 parent: 2 - - uid: 11421 + - uid: 11979 components: - type: Transform pos: 34.5,29.5 parent: 2 - - uid: 11422 + - uid: 11980 components: - type: Transform pos: 33.5,29.5 parent: 2 - - uid: 11423 + - uid: 11981 components: - type: Transform pos: -27.5,-96.5 parent: 2 - - uid: 11424 + - uid: 11982 components: - type: Transform pos: -26.5,-96.5 parent: 2 - - uid: 11425 + - uid: 11983 components: - type: Transform pos: -25.5,-96.5 parent: 2 - - uid: 11426 + - uid: 11984 components: - type: Transform pos: -24.5,-96.5 parent: 2 - - uid: 11427 + - uid: 11985 components: - type: Transform pos: -24.5,-95.5 parent: 2 - - uid: 11428 + - uid: 11986 components: - type: Transform pos: -24.5,-94.5 parent: 2 - - uid: 11429 + - uid: 11987 components: - type: Transform pos: -24.5,-93.5 parent: 2 - - uid: 11430 + - uid: 11988 components: - type: Transform pos: -24.5,-92.5 parent: 2 - - uid: 11431 + - uid: 11989 components: - type: Transform pos: -23.5,-92.5 parent: 2 - - uid: 11432 + - uid: 11990 components: - type: Transform pos: -22.5,-92.5 parent: 2 - - uid: 11433 + - uid: 11991 components: - type: Transform pos: -21.5,-92.5 parent: 2 - - uid: 11434 + - uid: 11992 components: - type: Transform pos: -24.5,-91.5 parent: 2 - - uid: 11435 + - uid: 11993 components: - type: Transform pos: -24.5,-90.5 parent: 2 - - uid: 11436 + - uid: 11994 components: - type: Transform pos: -24.5,-89.5 parent: 2 - - uid: 11437 + - uid: 11995 components: - type: Transform pos: -24.5,-88.5 parent: 2 - - uid: 11438 + - uid: 11996 components: - type: Transform pos: -24.5,-87.5 parent: 2 - - uid: 11439 + - uid: 11997 components: - type: Transform pos: -24.5,-86.5 parent: 2 - - uid: 11440 + - uid: 11998 components: - type: Transform pos: -24.5,-85.5 parent: 2 - - uid: 11441 + - uid: 11999 components: - type: Transform pos: -24.5,-84.5 parent: 2 - - uid: 11442 + - uid: 12000 components: - type: Transform pos: -24.5,-83.5 parent: 2 - - uid: 11443 + - uid: 12001 components: - type: Transform pos: 36.5,27.5 parent: 2 - - uid: 11444 + - uid: 12002 components: - type: Transform pos: 37.5,27.5 parent: 2 - - uid: 11445 + - uid: 12003 components: - type: Transform pos: 38.5,27.5 parent: 2 - - uid: 11446 + - uid: 12004 components: - type: Transform pos: 39.5,27.5 parent: 2 - - uid: 11447 + - uid: 12005 components: - type: Transform pos: 40.5,27.5 parent: 2 - - uid: 11448 + - uid: 12006 components: - type: Transform pos: 40.5,28.5 parent: 2 - - uid: 11449 + - uid: 12007 components: - type: Transform pos: 40.5,29.5 parent: 2 - - uid: 11481 + - uid: 12008 components: - type: Transform pos: -43.5,-34.5 parent: 2 - - uid: 11482 + - uid: 12009 components: - type: Transform pos: -44.5,-34.5 parent: 2 - - uid: 11483 + - uid: 12010 components: - type: Transform pos: -45.5,-34.5 parent: 2 - - uid: 11484 + - uid: 12011 components: - type: Transform pos: -45.5,-35.5 parent: 2 - - uid: 11495 + - uid: 12012 components: - type: Transform pos: 38.5,-7.5 parent: 2 - - uid: 11496 + - uid: 12013 components: - type: Transform pos: 37.5,-7.5 parent: 2 - - uid: 11497 + - uid: 12014 components: - type: Transform pos: 37.5,-6.5 parent: 2 - - uid: 11498 + - uid: 12015 components: - type: Transform pos: 37.5,-5.5 parent: 2 - - uid: 11499 + - uid: 12016 components: - type: Transform pos: 38.5,-4.5 parent: 2 - - uid: 11500 + - uid: 12017 components: - type: Transform pos: -50.5,-34.5 parent: 2 - - uid: 11501 + - uid: 12018 components: - type: Transform pos: -50.5,-35.5 parent: 2 - - uid: 11502 + - uid: 12019 components: - type: Transform pos: -50.5,-36.5 parent: 2 - - uid: 11503 + - uid: 12020 components: - type: Transform pos: -50.5,-37.5 parent: 2 - - uid: 11504 + - uid: 12021 components: - type: Transform pos: -49.5,-37.5 parent: 2 - - uid: 11505 + - uid: 12022 components: - type: Transform pos: -50.5,-38.5 parent: 2 - - uid: 11506 + - uid: 12023 components: - type: Transform pos: -51.5,-38.5 parent: 2 - - uid: 11507 + - uid: 12024 components: - type: Transform pos: -52.5,-38.5 parent: 2 - - uid: 11508 + - uid: 12025 components: - type: Transform pos: 45.5,-92.5 parent: 2 - - uid: 11509 + - uid: 12026 components: - type: Transform pos: 46.5,-92.5 parent: 2 - - uid: 11510 + - uid: 12027 components: - type: Transform pos: 46.5,-93.5 parent: 2 - - uid: 11511 + - uid: 12028 components: - type: Transform pos: 46.5,-94.5 parent: 2 - - uid: 11512 + - uid: 12029 components: - type: Transform pos: 46.5,-95.5 parent: 2 - - uid: 11513 + - uid: 12030 components: - type: Transform pos: 46.5,-96.5 parent: 2 - - uid: 11514 + - uid: 12031 components: - type: Transform pos: 46.5,-97.5 parent: 2 - - uid: 11515 + - uid: 12032 components: - type: Transform pos: 46.5,-98.5 parent: 2 - - uid: 11516 + - uid: 12033 components: - type: Transform pos: 46.5,-99.5 parent: 2 - - uid: 11517 + - uid: 12034 components: - type: Transform pos: 46.5,-100.5 parent: 2 - - uid: 11518 + - uid: 12035 components: - type: Transform pos: 46.5,-101.5 parent: 2 - - uid: 11519 + - uid: 12036 components: - type: Transform pos: 46.5,-102.5 parent: 2 - - uid: 11520 + - uid: 12037 components: - type: Transform pos: 46.5,-103.5 parent: 2 - - uid: 11521 + - uid: 12038 components: - type: Transform pos: 46.5,-104.5 parent: 2 - - uid: 11522 + - uid: 12039 components: - type: Transform pos: 47.5,-104.5 parent: 2 - - uid: 11523 + - uid: 12040 components: - type: Transform pos: 31.5,21.5 parent: 2 - - uid: 11524 + - uid: 12041 components: - type: Transform pos: 32.5,21.5 parent: 2 - - uid: 11533 + - uid: 12042 components: - type: Transform pos: 48.5,-104.5 parent: 2 - - uid: 11534 + - uid: 12043 components: - type: Transform pos: 50.5,-104.5 parent: 2 - - uid: 11535 + - uid: 12044 components: - type: Transform pos: 55.5,-104.5 parent: 2 - - uid: 11536 + - uid: 12045 components: - type: Transform pos: 54.5,-104.5 parent: 2 - - uid: 11537 + - uid: 12046 components: - type: Transform pos: 53.5,-104.5 parent: 2 - - uid: 11538 + - uid: 12047 components: - type: Transform pos: 56.5,-104.5 parent: 2 - - uid: 11539 + - uid: 12048 components: - type: Transform pos: 52.5,-104.5 parent: 2 - - uid: 11540 + - uid: 12049 components: - type: Transform pos: 51.5,-104.5 parent: 2 - - uid: 11541 + - uid: 12050 components: - type: Transform pos: 49.5,-104.5 parent: 2 - - uid: 11542 + - uid: 12051 components: - type: Transform pos: 56.5,-103.5 parent: 2 - - uid: 11543 + - uid: 12052 components: - type: Transform pos: 56.5,-102.5 parent: 2 - - uid: 11544 + - uid: 12053 components: - type: Transform pos: 56.5,-101.5 parent: 2 - - uid: 11545 + - uid: 12054 components: - type: Transform pos: 56.5,-100.5 parent: 2 - - uid: 11546 + - uid: 12055 components: - type: Transform pos: 56.5,-99.5 parent: 2 - - uid: 11547 + - uid: 12056 components: - type: Transform pos: 56.5,-98.5 parent: 2 - - uid: 11548 + - uid: 12057 components: - type: Transform pos: 56.5,-97.5 parent: 2 - - uid: 11549 + - uid: 12058 components: - type: Transform pos: 56.5,-96.5 parent: 2 - - uid: 11550 + - uid: 12059 components: - type: Transform pos: 45.5,-104.5 parent: 2 - - uid: 11551 + - uid: 12060 components: - type: Transform pos: 44.5,-104.5 parent: 2 - - uid: 11552 + - uid: 12061 components: - type: Transform pos: 43.5,-104.5 parent: 2 - - uid: 11553 + - uid: 12062 components: - type: Transform pos: 42.5,-104.5 parent: 2 - - uid: 11554 + - uid: 12063 components: - type: Transform pos: 41.5,-104.5 parent: 2 - - uid: 11555 + - uid: 12064 components: - type: Transform pos: 40.5,-104.5 parent: 2 - - uid: 11556 + - uid: 12065 components: - type: Transform pos: 39.5,-104.5 parent: 2 - - uid: 11557 + - uid: 12066 components: - type: Transform pos: 38.5,-104.5 parent: 2 - - uid: 11558 + - uid: 12067 components: - type: Transform pos: 37.5,-104.5 parent: 2 - - uid: 11559 + - uid: 12068 components: - type: Transform pos: 36.5,-104.5 parent: 2 - - uid: 11560 + - uid: 12069 components: - type: Transform pos: 35.5,-104.5 parent: 2 - - uid: 11561 + - uid: 12070 components: - type: Transform pos: 35.5,-103.5 parent: 2 - - uid: 11562 + - uid: 12071 components: - type: Transform pos: 35.5,-102.5 parent: 2 - - uid: 11563 + - uid: 12072 components: - type: Transform pos: 35.5,-101.5 parent: 2 - - uid: 11564 + - uid: 12073 components: - type: Transform pos: 35.5,-100.5 parent: 2 - - uid: 11565 + - uid: 12074 components: - type: Transform pos: 35.5,-99.5 parent: 2 - - uid: 11566 + - uid: 12075 components: - type: Transform pos: 35.5,-98.5 parent: 2 - - uid: 11567 + - uid: 12076 components: - type: Transform pos: 35.5,-97.5 parent: 2 - - uid: 11568 + - uid: 12077 components: - type: Transform pos: 35.5,-96.5 parent: 2 - - uid: 11569 + - uid: 12078 components: - type: Transform pos: 35.5,-95.5 parent: 2 - - uid: 11570 + - uid: 12079 components: - type: Transform pos: 35.5,-94.5 parent: 2 - - uid: 11571 + - uid: 12080 components: - type: Transform pos: 35.5,-93.5 parent: 2 - - uid: 11572 + - uid: 12081 components: - type: Transform pos: 35.5,-92.5 parent: 2 - - uid: 11573 + - uid: 12082 components: - type: Transform pos: 35.5,-91.5 parent: 2 - - uid: 11574 + - uid: 12083 components: - type: Transform pos: 35.5,-90.5 parent: 2 - - uid: 11575 + - uid: 12084 components: - type: Transform pos: 35.5,-89.5 parent: 2 - - uid: 11576 + - uid: 12085 components: - type: Transform pos: 35.5,-88.5 parent: 2 - - uid: 11577 + - uid: 12086 components: - type: Transform pos: 35.5,-87.5 parent: 2 - - uid: 11578 + - uid: 12087 components: - type: Transform pos: 35.5,-86.5 parent: 2 - - uid: 11579 + - uid: 12088 components: - type: Transform pos: 35.5,-85.5 parent: 2 - - uid: 11580 + - uid: 12089 components: - type: Transform pos: 35.5,-84.5 parent: 2 - - uid: 13362 + - uid: 12090 components: - type: Transform pos: 27.5,-37.5 parent: 2 - - uid: 13447 + - uid: 12091 components: - type: Transform pos: 27.5,-35.5 parent: 2 - - uid: 13448 + - uid: 12092 components: - type: Transform pos: 26.5,-35.5 parent: 2 - - uid: 13451 + - uid: 12093 components: - type: Transform pos: 27.5,-38.5 parent: 2 - - uid: 13483 + - uid: 12094 components: - type: Transform pos: 26.5,-39.5 parent: 2 - - uid: 13515 + - uid: 12095 components: - type: Transform pos: 55.5,-56.5 parent: 2 - - uid: 13517 + - uid: 12096 components: - type: Transform pos: 56.5,-56.5 parent: 2 - - uid: 13518 + - uid: 12097 components: - type: Transform pos: 57.5,-56.5 parent: 2 - - uid: 13519 + - uid: 12098 components: - type: Transform pos: 58.5,-56.5 parent: 2 - - uid: 13520 + - uid: 12099 components: - type: Transform pos: 59.5,-56.5 parent: 2 - - uid: 13521 + - uid: 12100 components: - type: Transform pos: 60.5,-56.5 parent: 2 - - uid: 13963 + - uid: 12101 components: - type: Transform pos: 55.5,-17.5 parent: 2 - - uid: 14151 + - uid: 12102 components: - type: Transform pos: -62.5,-19.5 parent: 2 - - uid: 14544 + - uid: 12103 components: - type: Transform pos: 44.5,-15.5 parent: 2 - - uid: 14731 + - uid: 12104 components: - type: Transform pos: 37.5,-24.5 parent: 2 - - uid: 14745 + - uid: 12105 components: - type: Transform pos: 57.5,10.5 parent: 2 - - uid: 14870 + - uid: 12106 components: - type: Transform pos: 57.5,8.5 parent: 2 - - uid: 14871 + - uid: 12107 components: - type: Transform pos: 57.5,6.5 parent: 2 - - uid: 14872 + - uid: 12108 components: - type: Transform pos: 58.5,6.5 parent: 2 - - uid: 15300 + - uid: 12109 components: - type: Transform pos: 60.5,-17.5 parent: 2 - - uid: 16221 + - uid: 12110 components: - type: Transform pos: 48.5,-18.5 parent: 2 - - uid: 16223 + - uid: 12111 components: - type: Transform pos: 55.5,-21.5 parent: 2 - - uid: 16630 + - uid: 12112 components: - type: Transform pos: 60.5,-16.5 parent: 2 - - uid: 16631 + - uid: 12113 components: - type: Transform pos: 49.5,-18.5 parent: 2 - - uid: 16632 + - uid: 12114 components: - type: Transform pos: 60.5,-13.5 parent: 2 - - uid: 16633 + - uid: 12115 components: - type: Transform pos: 55.5,-18.5 parent: 2 - - uid: 16634 + - uid: 12116 components: - type: Transform pos: 54.5,-18.5 parent: 2 - - uid: 16635 + - uid: 12117 components: - type: Transform pos: 53.5,-18.5 parent: 2 - - uid: 16636 + - uid: 12118 components: - type: Transform pos: 61.5,-11.5 parent: 2 - - uid: 16638 + - uid: 12119 components: - type: Transform pos: 60.5,-12.5 parent: 2 - - uid: 16666 + - uid: 12120 components: - type: Transform pos: 55.5,-19.5 parent: 2 - - uid: 16902 + - uid: 12121 components: - type: Transform pos: 60.5,-11.5 parent: 2 - - uid: 16903 + - uid: 12122 components: - type: Transform pos: 60.5,-14.5 parent: 2 - - uid: 17700 + - uid: 12123 components: - type: Transform pos: 57.5,7.5 parent: 2 - - uid: 17704 + - uid: 12124 components: - type: Transform pos: 60.5,-15.5 parent: 2 - - uid: 18273 + - uid: 12125 components: - type: Transform pos: 45.5,-16.5 parent: 2 - - uid: 18446 + - uid: 12126 components: - type: Transform pos: 57.5,11.5 parent: 2 - - uid: 18460 + - uid: 12127 components: - type: Transform pos: 57.5,12.5 parent: 2 - - uid: 18488 + - uid: 12128 components: - type: Transform pos: 57.5,9.5 parent: 2 - - uid: 18489 + - uid: 12129 components: - type: Transform pos: 57.5,13.5 parent: 2 - - uid: 18497 + - uid: 12130 components: - type: Transform pos: 58.5,13.5 parent: 2 - - uid: 18508 + - uid: 12131 components: - type: Transform pos: 59.5,13.5 parent: 2 - - uid: 18587 + - uid: 12132 components: - type: Transform pos: 42.5,-0.5 parent: 2 - - uid: 18612 + - uid: 12133 components: - type: Transform pos: 41.5,-0.5 parent: 2 - - uid: 18614 + - uid: 12134 components: - type: Transform pos: 44.5,-11.5 parent: 2 - - uid: 18647 + - uid: 12135 components: - type: Transform pos: 44.5,-12.5 parent: 2 - - uid: 18648 + - uid: 12136 components: - type: Transform pos: 44.5,-9.5 parent: 2 - - uid: 18649 + - uid: 12137 components: - type: Transform pos: 44.5,-10.5 parent: 2 - - uid: 18780 + - uid: 12138 components: - type: Transform pos: 44.5,-6.5 parent: 2 - - uid: 18955 + - uid: 12139 components: - type: Transform pos: 41.5,0.5 parent: 2 - - uid: 18985 + - uid: 12140 components: - type: Transform pos: 58.5,-18.5 parent: 2 - - uid: 18987 + - uid: 12141 components: - type: Transform pos: 57.5,-18.5 parent: 2 - - uid: 19082 + - uid: 12142 components: - type: Transform pos: 44.5,-3.5 parent: 2 - - uid: 19592 + - uid: 12143 components: - type: Transform pos: 44.5,-5.5 parent: 2 - - uid: 21044 + - uid: 12144 components: - type: Transform pos: 44.5,-1.5 parent: 2 - - uid: 21292 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 21045 - - uid: 21293 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 21045 - - uid: 21294 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 21045 - - uid: 21295 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 21045 - - uid: 21296 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 21045 - - uid: 21297 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 21045 - - uid: 23125 + - uid: 12145 components: - type: Transform pos: 36.5,-24.5 parent: 2 - - uid: 23855 + - uid: 12146 components: - type: Transform pos: 39.5,-24.5 parent: 2 - - uid: 23856 + - uid: 12147 components: - type: Transform pos: 38.5,-24.5 parent: 2 - - uid: 24031 + - uid: 12148 components: - type: Transform pos: 39.5,-23.5 parent: 2 - - uid: 24035 + - uid: 12149 components: - type: Transform pos: 39.5,-22.5 parent: 2 - - uid: 24395 + - uid: 12150 components: - type: Transform pos: -55.5,-24.5 parent: 2 - - uid: 25845 + - uid: 12151 components: - type: Transform pos: 57.5,-6.5 parent: 2 - - uid: 26341 + - uid: 12152 components: - type: Transform pos: -58.5,-25.5 parent: 2 - - uid: 26344 + - uid: 12153 components: - type: Transform pos: -62.5,-16.5 parent: 2 - - uid: 28083 + - uid: 12154 components: - type: Transform pos: -62.5,-20.5 parent: 2 - - uid: 28234 + - uid: 12155 components: - type: Transform pos: -61.5,-16.5 parent: 2 - - uid: 28640 + - uid: 12156 components: - type: Transform pos: -61.5,-18.5 parent: 2 - - uid: 28729 + - uid: 12157 components: - type: Transform pos: -62.5,-18.5 parent: 2 - - uid: 29746 + - uid: 12158 components: - type: Transform pos: -4.5,-4.5 parent: 2 - - uid: 29809 + - uid: 12159 components: - type: Transform pos: -4.5,-5.5 parent: 2 - - uid: 29838 + - uid: 12160 components: - type: Transform pos: -4.5,-6.5 parent: 2 - - uid: 29857 + - uid: 12161 components: - type: Transform pos: -4.5,-7.5 parent: 2 - - uid: 29858 + - uid: 12162 components: - type: Transform pos: -5.5,-7.5 parent: 2 - - uid: 29878 + - uid: 12163 components: - type: Transform pos: -6.5,-7.5 parent: 2 - - uid: 29879 + - uid: 12164 components: - type: Transform pos: -7.5,-7.5 parent: 2 - - uid: 29880 + - uid: 12165 components: - type: Transform pos: -8.5,-7.5 parent: 2 - - uid: 30050 + - uid: 12166 components: - type: Transform pos: 5.5,-6.5 parent: 2 - - uid: 30053 + - uid: 12167 components: - type: Transform pos: 6.5,-6.5 parent: 2 - - uid: 30061 + - uid: 12168 components: - type: Transform pos: 6.5,-7.5 parent: 2 - - uid: 30091 + - uid: 12169 components: - type: Transform pos: 6.5,-8.5 parent: 2 - - uid: 30155 + - uid: 12170 components: - type: Transform pos: 6.5,-9.5 parent: 2 - - uid: 30157 + - uid: 12171 components: - type: Transform pos: 7.5,-7.5 parent: 2 - - uid: 30158 + - uid: 12172 components: - type: Transform pos: 8.5,-7.5 parent: 2 - - uid: 30624 + - uid: 12173 components: - type: Transform pos: -58.5,-24.5 parent: 2 - - uid: 30984 + - uid: 12174 components: - type: Transform pos: -57.5,-24.5 parent: 2 - - uid: 31353 + - uid: 12175 components: - type: Transform pos: -56.5,-24.5 parent: 2 - - uid: 31527 + - uid: 12176 components: - type: Transform pos: 69.5,-2.5 parent: 2 - - uid: 31529 + - uid: 12177 components: - type: Transform pos: 69.5,-3.5 parent: 2 - - uid: 31530 + - uid: 12178 components: - type: Transform pos: 69.5,-4.5 parent: 2 - - uid: 31531 + - uid: 12179 components: - type: Transform pos: 69.5,-5.5 parent: 2 - - uid: 31533 + - uid: 12180 components: - type: Transform pos: 69.5,-6.5 parent: 2 - - uid: 31534 + - uid: 12181 components: - type: Transform pos: 69.5,-7.5 parent: 2 - - uid: 31535 + - uid: 12182 components: - type: Transform pos: 69.5,-8.5 parent: 2 - - uid: 31536 + - uid: 12183 components: - type: Transform pos: 69.5,-9.5 parent: 2 - - uid: 31537 + - uid: 12184 components: - type: Transform pos: 69.5,-10.5 parent: 2 - - uid: 31538 + - uid: 12185 components: - type: Transform pos: 69.5,-11.5 parent: 2 - - uid: 33832 + - uid: 12186 components: - type: Transform pos: 59.5,-57.5 parent: 2 - - uid: 33881 + - uid: 12187 components: - type: Transform pos: -53.5,-24.5 parent: 2 - - uid: 34082 + - uid: 12188 components: - type: Transform pos: -11.5,-21.5 parent: 2 - - uid: 34083 + - uid: 12189 components: - type: Transform pos: -11.5,-22.5 parent: 2 - - uid: 34084 + - uid: 12190 components: - type: Transform pos: -11.5,-23.5 parent: 2 - - uid: 34085 + - uid: 12191 components: - type: Transform pos: -11.5,-24.5 parent: 2 - - uid: 34086 + - uid: 12192 components: - type: Transform pos: -10.5,-24.5 parent: 2 - - uid: 34087 + - uid: 12193 components: - type: Transform pos: -9.5,-24.5 parent: 2 - - uid: 34088 + - uid: 12194 components: - type: Transform pos: -12.5,-24.5 parent: 2 - - uid: 34089 + - uid: 12195 components: - type: Transform pos: -13.5,-24.5 parent: 2 - - uid: 34090 + - uid: 12196 components: - type: Transform pos: -14.5,-24.5 parent: 2 - - uid: 34091 + - uid: 12197 components: - type: Transform pos: -15.5,-24.5 parent: 2 - - uid: 34092 + - uid: 12198 components: - type: Transform pos: -16.5,-24.5 parent: 2 - - uid: 34093 + - uid: 12199 components: - type: Transform pos: -17.5,-24.5 parent: 2 - - uid: 34094 + - uid: 12200 components: - type: Transform pos: -18.5,-24.5 parent: 2 - - uid: 34095 + - uid: 12201 components: - type: Transform pos: -18.5,-23.5 parent: 2 - - uid: 34096 + - uid: 12202 components: - type: Transform pos: -18.5,-22.5 parent: 2 - - uid: 34097 + - uid: 12203 components: - type: Transform pos: -18.5,-21.5 parent: 2 - - uid: 34098 + - uid: 12204 components: - type: Transform pos: -18.5,-20.5 parent: 2 - - uid: 34099 + - uid: 12205 components: - type: Transform pos: -15.5,-23.5 parent: 2 - - uid: 34100 + - uid: 12206 components: - type: Transform pos: -15.5,-22.5 parent: 2 - - uid: 34101 + - uid: 12207 components: - type: Transform pos: -15.5,-21.5 parent: 2 - - uid: 34102 + - uid: 12208 components: - type: Transform pos: -15.5,-20.5 parent: 2 - - uid: 34103 + - uid: 12209 components: - type: Transform pos: -15.5,-19.5 parent: 2 - - uid: 34104 + - uid: 12210 components: - type: Transform pos: -15.5,-18.5 parent: 2 - - uid: 34105 + - uid: 12211 components: - type: Transform pos: -15.5,-17.5 parent: 2 - - uid: 34106 + - uid: 12212 components: - type: Transform pos: -14.5,-17.5 parent: 2 - - uid: 34107 + - uid: 12213 components: - type: Transform pos: -13.5,-17.5 parent: 2 - - uid: 34108 + - uid: 12214 components: - type: Transform pos: -12.5,-17.5 parent: 2 - - uid: 34109 + - uid: 12215 components: - type: Transform pos: -11.5,-17.5 parent: 2 - - uid: 34110 + - uid: 12216 components: - type: Transform pos: -10.5,-17.5 parent: 2 - - uid: 34111 + - uid: 12217 components: - type: Transform pos: -9.5,-17.5 parent: 2 - - uid: 34112 + - uid: 12218 components: - type: Transform pos: -8.5,-17.5 parent: 2 - - uid: 34113 + - uid: 12219 components: - type: Transform pos: -7.5,-17.5 parent: 2 - - uid: 34114 + - uid: 12220 components: - type: Transform pos: -6.5,-17.5 parent: 2 - - uid: 34115 + - uid: 12221 components: - type: Transform pos: -5.5,-17.5 parent: 2 - - uid: 34116 + - uid: 12222 components: - type: Transform pos: -4.5,-17.5 parent: 2 - - uid: 34117 + - uid: 12223 components: - type: Transform pos: -4.5,-18.5 parent: 2 - - uid: 34118 + - uid: 12224 components: - type: Transform pos: -4.5,-19.5 parent: 2 - - uid: 34119 + - uid: 12225 components: - type: Transform pos: -5.5,-19.5 parent: 2 - - uid: 34120 + - uid: 12226 components: - type: Transform pos: -5.5,-20.5 parent: 2 - - uid: 34121 + - uid: 12227 components: - type: Transform pos: -11.5,-25.5 parent: 2 - - uid: 34122 + - uid: 12228 components: - type: Transform pos: -11.5,-26.5 parent: 2 - - uid: 34123 + - uid: 12229 components: - type: Transform pos: -11.5,-27.5 parent: 2 - - uid: 34124 + - uid: 12230 components: - type: Transform pos: -11.5,-28.5 parent: 2 - - uid: 34125 + - uid: 12231 components: - type: Transform pos: -11.5,-29.5 parent: 2 - - uid: 34126 + - uid: 12232 components: - type: Transform pos: -11.5,-30.5 parent: 2 - - uid: 34127 + - uid: 12233 components: - type: Transform pos: -12.5,-30.5 parent: 2 - - uid: 34128 + - uid: 12234 components: - type: Transform pos: -13.5,-30.5 parent: 2 - - uid: 34129 + - uid: 12235 components: - type: Transform pos: -14.5,-30.5 parent: 2 - - uid: 34130 + - uid: 12236 components: - type: Transform pos: -15.5,-30.5 parent: 2 - - uid: 34131 + - uid: 12237 components: - type: Transform pos: -16.5,-30.5 parent: 2 - - uid: 34133 + - uid: 12238 components: - type: Transform pos: -9.5,-30.5 parent: 2 - - uid: 34134 + - uid: 12239 components: - type: Transform pos: -9.5,-31.5 parent: 2 - - uid: 34136 + - uid: 12240 components: - type: Transform pos: 12.5,-29.5 parent: 2 - - uid: 34137 + - uid: 12241 components: - type: Transform pos: 12.5,-28.5 parent: 2 - - uid: 34138 + - uid: 12242 components: - type: Transform pos: 11.5,-28.5 parent: 2 - - uid: 34139 + - uid: 12243 components: - type: Transform pos: 10.5,-28.5 parent: 2 - - uid: 34140 + - uid: 12244 components: - type: Transform pos: 10.5,-27.5 parent: 2 - - uid: 34141 + - uid: 12245 components: - type: Transform pos: 10.5,-26.5 parent: 2 - - uid: 34142 + - uid: 12246 components: - type: Transform pos: 10.5,-25.5 parent: 2 - - uid: 34143 + - uid: 12247 components: - type: Transform pos: 10.5,-24.5 parent: 2 - - uid: 34144 + - uid: 12248 components: - type: Transform pos: 10.5,-23.5 parent: 2 - - uid: 34145 + - uid: 12249 components: - type: Transform pos: 10.5,-22.5 parent: 2 - - uid: 34146 + - uid: 12250 components: - type: Transform pos: 10.5,-21.5 parent: 2 - - uid: 34147 + - uid: 12251 components: - type: Transform pos: 10.5,-20.5 parent: 2 - - uid: 34148 + - uid: 12252 components: - type: Transform pos: 10.5,-19.5 parent: 2 - - uid: 34149 + - uid: 12253 components: - type: Transform pos: 10.5,-18.5 parent: 2 - - uid: 34150 + - uid: 12254 components: - type: Transform pos: 10.5,-17.5 parent: 2 - - uid: 34151 + - uid: 12255 components: - type: Transform pos: 10.5,-16.5 parent: 2 - - uid: 34152 + - uid: 12256 components: - type: Transform pos: 10.5,-15.5 parent: 2 - - uid: 34153 + - uid: 12257 components: - type: Transform pos: 10.5,-14.5 parent: 2 - - uid: 34154 + - uid: 12258 components: - type: Transform pos: 11.5,-14.5 parent: 2 - - uid: 34155 + - uid: 12259 components: - type: Transform pos: 11.5,-13.5 parent: 2 - - uid: 34156 + - uid: 12260 components: - type: Transform pos: 11.5,-12.5 parent: 2 - - uid: 34157 + - uid: 12261 components: - type: Transform pos: 12.5,-12.5 parent: 2 - - uid: 34158 + - uid: 12262 components: - type: Transform pos: 13.5,-28.5 parent: 2 - - uid: 34159 + - uid: 12263 components: - type: Transform pos: 14.5,-28.5 parent: 2 - - uid: 34160 + - uid: 12264 components: - type: Transform pos: 15.5,-28.5 parent: 2 - - uid: 34161 + - uid: 12265 components: - type: Transform pos: 16.5,-28.5 parent: 2 - - uid: 34162 + - uid: 12266 components: - type: Transform pos: 17.5,-28.5 parent: 2 - - uid: 34163 + - uid: 12267 components: - type: Transform pos: 18.5,-28.5 parent: 2 - - uid: 34164 + - uid: 12268 components: - type: Transform pos: 19.5,-28.5 parent: 2 - - uid: 34165 + - uid: 12269 components: - type: Transform pos: 19.5,-27.5 parent: 2 - - uid: 34166 + - uid: 12270 components: - type: Transform pos: 19.5,-26.5 parent: 2 - - uid: 34167 + - uid: 12271 components: - type: Transform pos: 19.5,-25.5 parent: 2 - - uid: 34168 + - uid: 12272 components: - type: Transform pos: 18.5,-25.5 parent: 2 - - uid: 34169 + - uid: 12273 components: - type: Transform pos: 17.5,-25.5 parent: 2 - - uid: 34170 + - uid: 12274 components: - type: Transform pos: 17.5,-24.5 parent: 2 - - uid: 34171 + - uid: 12275 components: - type: Transform pos: 17.5,-23.5 parent: 2 - - uid: 34172 + - uid: 12276 components: - type: Transform pos: 17.5,-22.5 parent: 2 - - uid: 34173 + - uid: 12277 components: - type: Transform pos: 17.5,-21.5 parent: 2 - - uid: 34174 + - uid: 12278 components: - type: Transform pos: 18.5,-21.5 parent: 2 - - uid: 34176 + - uid: 12279 components: - type: Transform pos: 6.5,-46.5 parent: 2 - - uid: 34177 + - uid: 12280 components: - type: Transform pos: 6.5,-47.5 parent: 2 - - uid: 34178 + - uid: 12281 components: - type: Transform pos: 5.5,-47.5 parent: 2 - - uid: 34179 + - uid: 12282 components: - type: Transform pos: 4.5,-47.5 parent: 2 - - uid: 34180 + - uid: 12283 components: - type: Transform pos: 4.5,-48.5 parent: 2 - - uid: 34181 + - uid: 12284 components: - type: Transform pos: 4.5,-49.5 parent: 2 - - uid: 34182 + - uid: 12285 components: - type: Transform pos: 7.5,-47.5 parent: 2 - - uid: 34183 + - uid: 12286 components: - type: Transform pos: 8.5,-47.5 parent: 2 - - uid: 34184 + - uid: 12287 components: - type: Transform pos: 9.5,-47.5 parent: 2 - - uid: 34185 + - uid: 12288 components: - type: Transform pos: 10.5,-47.5 parent: 2 - - uid: 34186 + - uid: 12289 components: - type: Transform pos: 11.5,-47.5 parent: 2 - - uid: 34187 + - uid: 12290 components: - type: Transform pos: 12.5,-47.5 parent: 2 - - uid: 34188 + - uid: 12291 components: - type: Transform pos: 13.5,-47.5 parent: 2 - - uid: 34189 + - uid: 12292 components: - type: Transform pos: 14.5,-47.5 parent: 2 - - uid: 34190 + - uid: 12293 components: - type: Transform pos: 14.5,-46.5 parent: 2 - - uid: 34191 + - uid: 12294 components: - type: Transform pos: 15.5,-46.5 parent: 2 - - uid: 34192 + - uid: 12295 components: - type: Transform pos: 16.5,-46.5 parent: 2 - - uid: 34194 + - uid: 12296 components: - type: Transform pos: 18.5,-46.5 parent: 2 - - uid: 34195 + - uid: 12297 components: - type: Transform pos: 18.5,-47.5 parent: 2 - - uid: 34421 + - uid: 12298 components: - type: Transform pos: 18.5,20.5 parent: 2 - - uid: 34523 + - uid: 12299 components: - type: Transform pos: 17.5,20.5 parent: 2 - - uid: 34877 + - uid: 12300 components: - type: Transform pos: 16.5,20.5 parent: 2 - - uid: 34878 + - uid: 12301 components: - type: Transform pos: 15.5,20.5 parent: 2 - - uid: 35754 + - uid: 12302 components: - type: Transform pos: 14.5,20.5 parent: 2 - - uid: 35857 + - uid: 12303 components: - type: Transform pos: 47.5,22.5 parent: 2 - - uid: 35907 + - uid: 12304 components: - type: Transform pos: 70.5,-5.5 parent: 2 - - uid: 35911 + - uid: 12305 components: - type: Transform pos: 69.5,-12.5 parent: 2 - - uid: 35912 + - uid: 12306 components: - type: Transform pos: 67.5,-12.5 parent: 2 - - uid: 36038 + - uid: 12307 components: - type: Transform pos: 71.5,-5.5 parent: 2 - - uid: 36089 + - uid: 12308 components: - type: Transform pos: 72.5,3.5 parent: 2 - - uid: 36090 + - uid: 12309 components: - type: Transform pos: 71.5,3.5 parent: 2 - - uid: 36091 + - uid: 12310 components: - type: Transform pos: 70.5,3.5 parent: 2 - - uid: 36092 + - uid: 12311 components: - type: Transform pos: 69.5,3.5 parent: 2 - - uid: 36093 + - uid: 12312 components: - type: Transform pos: 69.5,2.5 parent: 2 - - uid: 36094 + - uid: 12313 components: - type: Transform pos: 69.5,0.5 parent: 2 - - uid: 36095 + - uid: 12314 components: - type: Transform pos: 69.5,-0.5 parent: 2 - - uid: 36096 + - uid: 12315 components: - type: Transform pos: 69.5,1.5 parent: 2 - - uid: 36097 + - uid: 12316 components: - type: Transform pos: 69.5,-1.5 parent: 2 - - uid: 36103 + - uid: 12317 components: - type: Transform pos: 63.5,-7.5 parent: 2 - - uid: 36105 + - uid: 12318 components: - type: Transform pos: 61.5,-7.5 parent: 2 - - uid: 36106 + - uid: 12319 components: - type: Transform pos: 60.5,-7.5 parent: 2 - - uid: 36107 + - uid: 12320 components: - type: Transform pos: 59.5,-7.5 parent: 2 - - uid: 36126 + - uid: 12321 components: - type: Transform pos: 58.5,-7.5 parent: 2 - - uid: 36352 + - uid: 12322 components: - type: Transform pos: 57.5,-7.5 parent: 2 - - uid: 36354 + - uid: 12323 components: - type: Transform pos: 62.5,-7.5 parent: 2 - - uid: 36355 + - uid: 12324 components: - type: Transform pos: 63.5,-5.5 parent: 2 - - uid: 36721 + - uid: 12325 components: - type: Transform pos: 18.5,19.5 parent: 2 - - uid: 36722 + - uid: 12326 components: - type: Transform pos: 18.5,18.5 parent: 2 - - uid: 36723 + - uid: 12327 components: - type: Transform pos: 18.5,17.5 parent: 2 - - uid: 36748 + - uid: 12328 components: - type: Transform pos: 63.5,-4.5 parent: 2 - - uid: 36749 + - uid: 12329 components: - type: Transform pos: 63.5,-3.5 parent: 2 - - uid: 36759 + - uid: 12330 components: - type: Transform pos: 63.5,-1.5 parent: 2 - - uid: 36760 + - uid: 12331 components: - type: Transform pos: 63.5,-2.5 parent: 2 - - uid: 36761 + - uid: 12332 components: - type: Transform pos: 64.5,-1.5 parent: 2 - - uid: 36763 + - uid: 12333 components: - type: Transform pos: 65.5,-1.5 parent: 2 - - uid: 36790 + - uid: 12334 components: - type: Transform pos: 66.5,-1.5 parent: 2 - - uid: 36791 + - uid: 12335 components: - type: Transform pos: 66.5,-0.5 parent: 2 - - uid: 36792 + - uid: 12336 components: - type: Transform pos: 57.5,-5.5 parent: 2 - - uid: 36793 + - uid: 12337 components: - type: Transform pos: 57.5,-4.5 parent: 2 - - uid: 36794 + - uid: 12338 components: - type: Transform pos: 57.5,-3.5 parent: 2 - - uid: 36795 + - uid: 12339 components: - type: Transform pos: 57.5,-2.5 parent: 2 - - uid: 36796 + - uid: 12340 components: - type: Transform pos: 57.5,-1.5 parent: 2 - - uid: 36797 + - uid: 12341 components: - type: Transform pos: 57.5,-0.5 parent: 2 - - uid: 36822 + - uid: 12342 components: - type: Transform pos: 61.5,-0.5 parent: 2 - - uid: 36823 + - uid: 12343 components: - type: Transform pos: 60.5,-0.5 parent: 2 - - uid: 36826 + - uid: 12344 components: - type: Transform pos: 59.5,-0.5 parent: 2 - - uid: 36830 + - uid: 12345 components: - type: Transform pos: 58.5,-0.5 parent: 2 - - uid: 36859 + - uid: 12346 components: - type: Transform pos: 57.5,0.5 parent: 2 - - uid: 36873 + - uid: 12347 components: - type: Transform pos: 57.5,2.5 parent: 2 - - uid: 36874 + - uid: 12348 components: - type: Transform pos: 57.5,3.5 parent: 2 - - uid: 36877 + - uid: 12349 components: - type: Transform pos: 57.5,4.5 parent: 2 - - uid: 36879 + - uid: 12350 components: - type: Transform pos: 57.5,1.5 parent: 2 - - uid: 36880 + - uid: 12351 components: - type: Transform pos: 57.5,5.5 parent: 2 - - uid: 38103 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 37887 - - uid: 38104 - components: - - type: Transform - pos: 0.5,-11.5 - parent: 37887 - - uid: 38105 - components: - - type: Transform - pos: 0.5,-10.5 - parent: 37887 - - uid: 38106 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 37887 - - uid: 38107 - components: - - type: Transform - pos: 0.5,-8.5 - parent: 37887 - - uid: 38108 - components: - - type: Transform - pos: 0.5,-7.5 - parent: 37887 - - uid: 38109 - components: - - type: Transform - pos: -0.5,-7.5 - parent: 37887 - - uid: 38110 - components: - - type: Transform - pos: -1.5,-7.5 - parent: 37887 - - uid: 38111 - components: - - type: Transform - pos: -2.5,-7.5 - parent: 37887 - - uid: 38112 - components: - - type: Transform - pos: 1.5,-7.5 - parent: 37887 - - uid: 38113 - components: - - type: Transform - pos: 2.5,-7.5 - parent: 37887 - - uid: 38114 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 37887 - - uid: 38810 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 38722 - - uid: 38811 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 38722 - - uid: 38812 - components: - - type: Transform - pos: 6.5,-7.5 - parent: 38722 - - uid: 38813 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 38722 - - uid: 38814 - components: - - type: Transform - pos: 6.5,-10.5 - parent: 38722 - - uid: 39247 + - uid: 12352 components: - type: Transform pos: -9.5,-49.5 parent: 2 - - uid: 39394 + - uid: 12353 components: - type: Transform pos: -8.5,-49.5 parent: 2 - - uid: 39395 + - uid: 12354 components: - type: Transform pos: -8.5,-50.5 parent: 2 - - uid: 40214 + - uid: 12355 components: - type: Transform pos: 49.5,22.5 parent: 2 - - uid: 40221 + - uid: 12356 components: - type: Transform pos: 49.5,18.5 parent: 2 - - uid: 40222 + - uid: 12357 components: - type: Transform pos: 49.5,19.5 parent: 2 - - uid: 40227 + - uid: 12358 components: - type: Transform pos: 49.5,20.5 parent: 2 - - uid: 40230 + - uid: 12359 components: - type: Transform pos: 48.5,22.5 parent: 2 - - uid: 40249 + - uid: 12360 components: - type: Transform pos: 48.5,18.5 parent: 2 - - uid: 40250 + - uid: 12361 components: - type: Transform pos: 47.5,18.5 parent: 2 - - uid: 40251 + - uid: 12362 components: - type: Transform pos: 46.5,18.5 parent: 2 - - uid: 40252 + - uid: 12363 components: - type: Transform pos: 45.5,18.5 parent: 2 - - uid: 40253 + - uid: 12364 components: - type: Transform pos: 44.5,18.5 parent: 2 - - uid: 40254 + - uid: 12365 components: - type: Transform pos: 43.5,18.5 parent: 2 - - uid: 40255 + - uid: 12366 components: - type: Transform pos: 42.5,18.5 parent: 2 - - uid: 40259 + - uid: 12367 components: - type: Transform pos: 41.5,18.5 parent: 2 - - uid: 40269 + - uid: 12368 components: - type: Transform pos: 35.5,17.5 parent: 2 - - uid: 40270 + - uid: 12369 components: - type: Transform pos: 36.5,17.5 parent: 2 - - uid: 40271 + - uid: 12370 components: - type: Transform pos: 37.5,17.5 parent: 2 - - uid: 40273 + - uid: 12371 components: - type: Transform pos: 38.5,17.5 parent: 2 - - uid: 40274 + - uid: 12372 components: - type: Transform pos: 39.5,17.5 parent: 2 - - uid: 40275 + - uid: 12373 components: - type: Transform pos: 40.5,17.5 parent: 2 - - uid: 40277 + - uid: 12374 components: - type: Transform pos: 41.5,17.5 parent: 2 - - uid: 40423 + - uid: 12375 components: - type: Transform pos: 48.5,22.5 parent: 2 - - uid: 40438 + - uid: 12376 components: - type: Transform pos: 44.5,21.5 parent: 2 - - uid: 40440 + - uid: 12377 components: - type: Transform pos: 43.5,21.5 parent: 2 - - uid: 40537 + - uid: 12378 components: - type: Transform pos: 51.5,-17.5 parent: 2 - - uid: 40538 + - uid: 12379 components: - type: Transform pos: 51.5,-16.5 parent: 2 - - uid: 40539 + - uid: 12380 components: - type: Transform pos: 51.5,-15.5 parent: 2 - - uid: 40540 + - uid: 12381 components: - type: Transform pos: 51.5,-14.5 parent: 2 - - uid: 40541 + - uid: 12382 components: - type: Transform pos: 51.5,-13.5 parent: 2 - - uid: 40542 + - uid: 12383 components: - type: Transform pos: 52.5,-13.5 parent: 2 - - uid: 40543 + - uid: 12384 components: - type: Transform pos: 53.5,-13.5 parent: 2 - - uid: 40544 + - uid: 12385 components: - type: Transform pos: 54.5,-13.5 parent: 2 - - uid: 40545 + - uid: 12386 components: - type: Transform pos: 55.5,-13.5 parent: 2 - - uid: 40546 + - uid: 12387 components: - type: Transform pos: 56.5,-13.5 parent: 2 - - uid: 40547 + - uid: 12388 components: - type: Transform pos: 57.5,-13.5 parent: 2 - - uid: 40548 + - uid: 12389 components: - type: Transform pos: 57.5,-12.5 parent: 2 - - uid: 40549 + - uid: 12390 components: - type: Transform pos: 57.5,-11.5 parent: 2 - - uid: 40550 + - uid: 12391 components: - type: Transform pos: 57.5,-10.5 parent: 2 - - uid: 40551 + - uid: 12392 components: - type: Transform pos: 57.5,-9.5 parent: 2 - - uid: 40552 + - uid: 12393 components: - type: Transform pos: 57.5,-8.5 parent: 2 - - uid: 40655 + - uid: 12394 components: - type: Transform pos: 44.5,15.5 parent: 2 - - uid: 40656 + - uid: 12395 components: - type: Transform pos: 43.5,15.5 parent: 2 - - uid: 40657 + - uid: 12396 components: - type: Transform pos: 43.5,14.5 parent: 2 - - uid: 40658 + - uid: 12397 components: - type: Transform pos: 43.5,13.5 parent: 2 - - uid: 40659 + - uid: 12398 components: - type: Transform pos: 43.5,12.5 parent: 2 - - uid: 40660 + - uid: 12399 components: - type: Transform pos: 44.5,12.5 parent: 2 - - uid: 40661 + - uid: 12400 components: - type: Transform pos: 45.5,12.5 parent: 2 - - uid: 40662 + - uid: 12401 components: - type: Transform pos: 46.5,12.5 parent: 2 - - uid: 40663 + - uid: 12402 components: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 40664 + - uid: 12403 components: - type: Transform pos: 48.5,12.5 parent: 2 - - uid: 40688 + - uid: 12404 components: - type: Transform pos: 48.5,13.5 parent: 2 - - uid: 40689 + - uid: 12405 components: - type: Transform pos: 49.5,13.5 parent: 2 - - uid: 40690 + - uid: 12406 components: - type: Transform pos: 50.5,13.5 parent: 2 - - uid: 40691 + - uid: 12407 components: - type: Transform pos: 51.5,13.5 parent: 2 - - uid: 40692 + - uid: 12408 components: - type: Transform pos: 52.5,13.5 parent: 2 - - uid: 40693 + - uid: 12409 components: - type: Transform pos: 52.5,12.5 parent: 2 - - uid: 40694 + - uid: 12410 components: - type: Transform pos: 52.5,11.5 parent: 2 - - uid: 40695 + - uid: 12411 components: - type: Transform pos: 51.5,11.5 parent: 2 - - uid: 40696 + - uid: 12412 components: - type: Transform pos: 50.5,11.5 parent: 2 - - uid: 40697 + - uid: 12413 components: - type: Transform pos: 49.5,11.5 parent: 2 - - uid: 40701 + - uid: 12414 components: - type: Transform pos: 52.5,10.5 parent: 2 - - uid: 40702 + - uid: 12415 components: - type: Transform pos: 53.5,10.5 parent: 2 - - uid: 40703 + - uid: 12416 components: - type: Transform pos: 54.5,10.5 parent: 2 - - uid: 40704 + - uid: 12417 components: - type: Transform pos: 55.5,10.5 parent: 2 - - uid: 40705 + - uid: 12418 components: - type: Transform pos: 56.5,10.5 parent: 2 - - uid: 40828 + - uid: 12419 components: - type: Transform pos: 45.5,-4.5 parent: 2 - - uid: 40829 + - uid: 12420 components: - type: Transform pos: 46.5,-4.5 parent: 2 - - uid: 40830 + - uid: 12421 components: - type: Transform pos: 47.5,-4.5 parent: 2 - - uid: 40831 + - uid: 12422 components: - type: Transform pos: 48.5,-4.5 parent: 2 - - uid: 40832 + - uid: 12423 components: - type: Transform pos: 49.5,-4.5 parent: 2 - - uid: 40833 + - uid: 12424 components: - type: Transform pos: 49.5,-3.5 parent: 2 - - uid: 40834 + - uid: 12425 components: - type: Transform pos: 49.5,-2.5 parent: 2 - - uid: 40913 + - uid: 12426 components: - type: Transform pos: 99.5,-40.5 parent: 2 - - uid: 40924 + - uid: 12427 components: - type: Transform pos: 102.5,-40.5 parent: 2 - - uid: 40937 + - uid: 12428 components: - type: Transform pos: 68.5,-3.5 parent: 2 - - uid: 40938 + - uid: 12429 components: - type: Transform pos: 67.5,-3.5 parent: 2 - - uid: 40989 + - uid: 12430 components: - type: Transform pos: 101.5,-40.5 parent: 2 - - uid: 40990 + - uid: 12431 components: - type: Transform pos: 100.5,-40.5 parent: 2 - - uid: 40993 + - uid: 12432 components: - type: Transform pos: 103.5,-40.5 parent: 2 - - uid: 40994 + - uid: 12433 components: - type: Transform pos: 104.5,-40.5 parent: 2 - - uid: 40995 + - uid: 12434 components: - type: Transform pos: 105.5,-40.5 parent: 2 - - uid: 40996 + - uid: 12435 components: - type: Transform pos: 106.5,-40.5 parent: 2 - - uid: 40997 + - uid: 12436 components: - type: Transform pos: 107.5,-40.5 parent: 2 - - uid: 40998 + - uid: 12437 components: - type: Transform pos: 108.5,-40.5 parent: 2 - - uid: 40999 + - uid: 12438 components: - type: Transform pos: 109.5,-40.5 parent: 2 - - uid: 41000 + - uid: 12439 components: - type: Transform pos: 110.5,-40.5 parent: 2 - - uid: 41001 + - uid: 12440 components: - type: Transform pos: 110.5,-39.5 parent: 2 - - uid: 41002 + - uid: 12441 components: - type: Transform pos: 110.5,-38.5 parent: 2 - - uid: 41003 + - uid: 12442 components: - type: Transform pos: 111.5,-38.5 parent: 2 - - uid: 41004 + - uid: 12443 components: - type: Transform pos: 111.5,-37.5 parent: 2 + - uid: 12444 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 + - uid: 12445 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 12446 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 12447 + components: + - type: Transform + pos: -16.5,1.5 + parent: 2 + - uid: 12448 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 12449 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 12450 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 12451 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 12452 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 12453 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 12454 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - uid: 12455 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 + - uid: 40718 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 40666 + - uid: 40719 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 40666 + - uid: 40720 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 40666 + - uid: 40721 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 40666 + - uid: 40722 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 40666 + - uid: 40723 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 40666 + - uid: 41044 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 40828 + - uid: 41045 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 40828 + - uid: 41046 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 40828 + - uid: 41047 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 40828 + - uid: 41048 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 40828 + - uid: 41049 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 40828 + - uid: 41050 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 40828 + - uid: 41051 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 40828 + - uid: 41052 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 40828 + - uid: 41053 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 40828 + - uid: 41054 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 40828 + - uid: 41055 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 40828 + - uid: 41756 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 41669 + - uid: 41757 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 41669 + - uid: 41758 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 41669 + - uid: 41759 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 41669 + - uid: 41760 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 41669 - proto: CableMVStack entities: - - uid: 11581 + - uid: 12456 components: - type: Transform pos: 40.48218,-35.398537 parent: 2 - - uid: 11583 + - uid: 12457 components: - type: Transform pos: 108.50016,-22.41325 parent: 2 - - uid: 11584 + - uid: 12458 components: - type: Transform pos: -68.54144,-15.463883 parent: 2 - - uid: 11585 + - uid: 12459 components: - type: Transform pos: -68.54144,-15.463883 parent: 2 - - uid: 11586 + - uid: 12460 components: - type: Transform pos: 44.56335,-62.49995 parent: 2 - - uid: 11587 + - uid: 12461 components: - type: Transform pos: 81.48181,-54.38266 parent: 2 - - uid: 11588 + - uid: 12462 components: - type: Transform pos: 52.740673,-84.44412 parent: 2 - - uid: 11589 + - uid: 12463 components: - type: Transform pos: 63.20999,-56.43361 parent: 2 - - uid: 11590 + - uid: 12464 components: - type: Transform pos: 48.5187,-60.415752 parent: 2 - - uid: 38115 + - uid: 41056 components: - type: Transform pos: -1.4373322,-7.369629 - parent: 37887 + parent: 40828 - proto: CableMVStack1 entities: - - uid: 11591 + - uid: 12465 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.437527,2.7245247 parent: 2 - - uid: 11592 + - uid: 12466 components: - type: Transform pos: -54.547993,-69.60477 parent: 2 - proto: CableMVStack10 entities: - - uid: 11597 + - uid: 12467 components: - type: Transform pos: 66.74327,-26.416637 parent: 2 - proto: CableTerminal entities: - - uid: 1666 + - uid: 12468 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-54.5 parent: 2 - - uid: 2120 + - uid: 12469 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-54.5 parent: 2 - - uid: 5968 + - uid: 12470 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-51.5 parent: 2 - - uid: 5973 + - uid: 12471 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-51.5 parent: 2 - - uid: 6943 + - uid: 12472 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-52.5 parent: 2 - - uid: 7102 + - uid: 12473 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-4.5 parent: 2 - - uid: 7344 + - uid: 12474 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-53.5 parent: 2 - - uid: 7351 + - uid: 12475 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-52.5 parent: 2 - - uid: 7519 + - uid: 12476 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-11.5 parent: 2 - - uid: 7603 + - uid: 12477 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-53.5 parent: 2 - - uid: 11598 + - uid: 12478 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,11.5 parent: 2 - - uid: 11599 + - uid: 12479 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-77.5 parent: 2 - - uid: 11600 + - uid: 12480 components: - type: Transform pos: 12.5,7.5 parent: 2 - - uid: 11601 + - uid: 12481 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-81.5 parent: 2 - - uid: 11602 + - uid: 12482 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-86.5 parent: 2 - - uid: 11604 + - uid: 12483 components: - type: Transform pos: 35.5,-39.5 parent: 2 - - uid: 11607 + - uid: 12484 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-88.5 parent: 2 - - uid: 11609 + - uid: 12485 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-87.5 parent: 2 - - uid: 11611 + - uid: 12486 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-87.5 parent: 2 - - uid: 11613 + - uid: 12487 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-67.5 parent: 2 - - uid: 11615 + - uid: 12488 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-56.5 parent: 2 - - uid: 11616 + - uid: 12489 components: - type: Transform pos: 33.5,-23.5 parent: 2 - - uid: 11617 + - uid: 12490 components: - type: Transform pos: -36.5,-115.5 parent: 2 - - uid: 11618 + - uid: 12491 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-113.5 parent: 2 - - uid: 11621 + - uid: 12492 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-62.5 parent: 2 - - uid: 11622 + - uid: 12493 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,8.5 parent: 2 - - uid: 11624 + - uid: 12494 components: - type: Transform pos: 100.5,-63.5 parent: 2 - - uid: 11626 + - uid: 12495 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-78.5 parent: 2 - - uid: 11627 + - uid: 12496 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-62.5 parent: 2 - - uid: 11628 + - uid: 12497 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-56.5 parent: 2 - - uid: 11938 + - uid: 12498 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-17.5 parent: 2 - - uid: 13443 + - uid: 12499 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-35.5 parent: 2 - - uid: 25287 + - uid: 12500 components: - type: Transform pos: -3.5,-46.5 parent: 2 - - uid: 33938 + - uid: 12501 components: - type: Transform pos: -9.5,-47.5 parent: 2 - - uid: 38116 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-12.5 - parent: 37887 - - uid: 40649 + - uid: 12502 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,14.5 parent: 2 + - uid: 41057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 40828 - proto: CandleBlackInfinite entities: - - uid: 39055 + - uid: 12503 components: - type: Transform pos: 35.231613,-71.270454 parent: 2 - proto: CandleBlueInfinite entities: - - uid: 11635 + - uid: 12505 components: - type: Transform - parent: 11634 + parent: 12504 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39056 + - uid: 12507 components: - type: Transform pos: -41.662663,-100.911 parent: 2 - - uid: 39057 + - uid: 12508 components: - type: Transform pos: -41.6622,-100.18897 parent: 2 - proto: CandleBlueSmallInfinite entities: - - uid: 11636 + - uid: 12506 components: - type: Transform - parent: 11634 + parent: 12504 - type: Physics canCollide: False - type: InsideEntityStorage - proto: CandleInfinite entities: - - uid: 39058 + - uid: 12509 components: - type: Transform pos: -37.38095,-100.03272 parent: 2 - - uid: 39059 + - uid: 12510 components: - type: Transform pos: -37.365326,-100.9546 parent: 2 - - uid: 39062 + - uid: 12511 components: - type: Transform pos: 33.968185,-63.183113 parent: 2 - proto: CandleRedInfinite entities: - - uid: 39060 + - uid: 12512 components: - type: Transform pos: 33.234238,-64.54249 parent: 2 - - uid: 39061 + - uid: 12513 components: - type: Transform pos: 33.702988,-64.57374 parent: 2 - proto: CandyBucket entities: - - uid: 1586 - components: - - type: Transform - pos: -8.961143,18.67359 - parent: 2 - - uid: 36726 - components: - - type: Transform - pos: -11.695449,11.82586 - parent: 2 - - uid: 36745 + - uid: 12514 components: - type: Transform pos: 34.23963,-71.58065 parent: 2 - - uid: 39992 + - uid: 12515 components: - type: Transform pos: 31.505058,30.534025 parent: 2 - - uid: 39995 + - uid: 12516 components: - type: Transform pos: -68.4574,-48.880016 parent: 2 - - uid: 39996 + - uid: 12517 components: - type: Transform pos: -76.313,-42.024582 parent: 2 - - uid: 40003 + - uid: 12518 components: - type: Transform pos: 58.031216,-49.43383 parent: 2 - - uid: 40076 + - uid: 12519 components: - type: Transform pos: 34.25058,-71.582985 parent: 2 - proto: Cane entities: - - uid: 2062 + - uid: 12520 components: - type: Transform pos: -58.48425,-10.398434 parent: 2 - - uid: 11662 + - uid: 12521 components: - type: Transform pos: -32.503845,6.5149355 parent: 2 - proto: CannabisSeeds entities: - - uid: 11666 + - uid: 12522 components: - type: Transform rot: 3.141592653589793 rad pos: -76.4335,-7.465089 parent: 2 - - uid: 11667 + - uid: 12523 components: - type: Transform pos: -73.43117,-8.485223 parent: 2 - - uid: 24782 + - uid: 12524 components: - type: Transform pos: -16.113176,-11.377243 parent: 2 - - uid: 40792 + - uid: 12525 components: - type: Transform rot: 1.5707963267948966 rad @@ -86989,96 +88013,96 @@ entities: parent: 2 - proto: CannedApplauseInstrument entities: - - uid: 1184 + - uid: 12526 components: - type: Transform pos: -16.804482,19.68696 parent: 2 - proto: CannonBall entities: - - uid: 26452 + - uid: 12527 components: - type: Transform pos: 12.494007,-14.450988 parent: 2 - proto: CannonBallGlassshot entities: - - uid: 26550 + - uid: 12528 components: - type: Transform pos: 12.504614,-24.44699 parent: 2 - - uid: 40944 + - uid: 12529 components: - type: Transform pos: 12.501594,-24.445663 parent: 2 - - uid: 40945 + - uid: 12530 components: - type: Transform pos: 12.501594,-24.445663 parent: 2 - proto: CannonBallGrapeshot entities: - - uid: 26497 + - uid: 12531 components: - type: Transform pos: 12.3415985,-22.364025 parent: 2 - - uid: 26503 + - uid: 12532 components: - type: Transform pos: 12.613989,-22.280838 parent: 2 - - uid: 26504 + - uid: 12533 components: - type: Transform pos: 12.5134735,-22.56715 parent: 2 - proto: CapacitorStockPart entities: - - uid: 11670 + - uid: 12534 components: - type: Transform rot: 3.141592653589793 rad pos: 106.5,-59.5 parent: 2 - - uid: 11671 + - uid: 12535 components: - type: Transform rot: 3.141592653589793 rad pos: 94.5,-88.5 parent: 2 - - uid: 11672 + - uid: 12536 components: - type: Transform pos: -86.5,-7.5 parent: 2 - proto: CaptainIDCard entities: - - uid: 11673 + - uid: 12537 components: - type: Transform pos: 13.519488,14.571521 parent: 2 - proto: CarbonDioxideCanister entities: - - uid: 11675 + - uid: 12538 components: - type: Transform pos: -46.5,-59.5 parent: 2 - - uid: 11676 + - uid: 12539 components: - type: Transform pos: 36.5,-49.5 parent: 2 - - uid: 11677 + - uid: 12540 components: - type: Transform pos: 31.5,-90.5 parent: 2 - - uid: 33205 + - uid: 12541 components: - type: Transform anchored: True @@ -87088,242 +88112,252 @@ entities: bodyType: Static - proto: Carpet entities: - - uid: 11679 + - uid: 12542 components: - type: Transform pos: 3.5,20.5 parent: 2 - - uid: 11680 + - uid: 12543 components: - type: Transform pos: 4.5,20.5 parent: 2 - - uid: 11681 + - uid: 12544 components: - type: Transform pos: 5.5,20.5 parent: 2 - - uid: 11682 + - uid: 12545 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-83.5 parent: 2 - - uid: 11683 + - uid: 12546 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-84.5 parent: 2 - - uid: 11684 + - uid: 12547 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-83.5 parent: 2 - - uid: 11686 + - uid: 12548 components: - type: Transform pos: -35.5,-84.5 parent: 2 - - uid: 15226 + - uid: 12549 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-26.5 parent: 2 - - uid: 32763 + - uid: 12550 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-27.5 parent: 2 - - uid: 34974 + - uid: 12551 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-27.5 parent: 2 - - uid: 40427 + - uid: 12552 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-26.5 parent: 2 + - uid: 12553 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - uid: 12554 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 - proto: CarpetBlack entities: - - uid: 2890 + - uid: 12555 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,15.5 parent: 2 - - uid: 9686 + - uid: 12556 components: - type: Transform pos: 52.5,-22.5 parent: 2 - - uid: 11687 + - uid: 12557 components: - type: Transform pos: 24.5,9.5 parent: 2 - - uid: 11688 + - uid: 12558 components: - type: Transform pos: 8.5,25.5 parent: 2 - - uid: 11689 + - uid: 12559 components: - type: Transform pos: 8.5,24.5 parent: 2 - - uid: 11690 + - uid: 12560 components: - type: Transform pos: -19.5,3.5 parent: 2 - - uid: 11691 + - uid: 12561 components: - type: Transform pos: -19.5,4.5 parent: 2 - - uid: 11692 + - uid: 12562 components: - type: Transform pos: -20.5,3.5 parent: 2 - - uid: 11693 + - uid: 12563 components: - type: Transform pos: -20.5,4.5 parent: 2 - - uid: 11694 + - uid: 12564 components: - type: Transform pos: -21.5,3.5 parent: 2 - - uid: 11695 + - uid: 12565 components: - type: Transform pos: -21.5,4.5 parent: 2 - - uid: 11696 + - uid: 12566 components: - type: Transform pos: -21.5,5.5 parent: 2 - - uid: 11697 + - uid: 12567 components: - type: Transform pos: -20.5,5.5 parent: 2 - - uid: 11698 + - uid: 12568 components: - type: Transform pos: -19.5,5.5 parent: 2 - - uid: 11699 + - uid: 12569 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-89.5 parent: 2 - - uid: 11700 + - uid: 12570 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-90.5 parent: 2 - - uid: 11701 + - uid: 12571 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-89.5 parent: 2 - - uid: 11702 + - uid: 12572 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-90.5 parent: 2 - - uid: 11703 + - uid: 12573 components: - type: Transform pos: -56.5,-46.5 parent: 2 - - uid: 11704 + - uid: 12574 components: - type: Transform pos: 23.5,9.5 parent: 2 - - uid: 11705 + - uid: 12575 components: - type: Transform pos: 22.5,9.5 parent: 2 - - uid: 11706 + - uid: 12576 components: - type: Transform pos: 24.5,8.5 parent: 2 - - uid: 11707 + - uid: 12577 components: - type: Transform pos: 22.5,8.5 parent: 2 - - uid: 14734 + - uid: 12578 components: - type: Transform pos: 52.5,-23.5 parent: 2 - - uid: 15290 + - uid: 12579 components: - type: Transform pos: 53.5,-22.5 parent: 2 - - uid: 15663 + - uid: 12580 components: - type: Transform pos: 53.5,-23.5 parent: 2 - - uid: 24191 + - uid: 12581 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,15.5 parent: 2 - - uid: 31598 + - uid: 12582 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,14.5 parent: 2 - - uid: 31610 + - uid: 12583 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,14.5 parent: 2 - - uid: 31611 + - uid: 12584 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,14.5 parent: 2 - - uid: 31612 + - uid: 12585 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,15.5 parent: 2 - - uid: 32561 + - uid: 12586 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,15.5 parent: 2 - - uid: 32564 + - uid: 12587 components: - type: Transform rot: 1.5707963267948966 rad @@ -87331,250 +88365,250 @@ entities: parent: 2 - proto: CarpetBlue entities: - - uid: 11708 + - uid: 12588 components: - type: Transform pos: -2.5,20.5 parent: 2 - - uid: 11709 + - uid: 12589 components: - type: Transform pos: -3.5,20.5 parent: 2 - - uid: 11710 + - uid: 12590 components: - type: Transform pos: -4.5,20.5 parent: 2 - - uid: 11711 + - uid: 12591 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-87.5 parent: 2 - - uid: 11712 + - uid: 12592 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-86.5 parent: 2 - - uid: 11713 + - uid: 12593 components: - type: Transform pos: -28.5,-87.5 parent: 2 - - uid: 11714 + - uid: 12594 components: - type: Transform pos: -28.5,-86.5 parent: 2 - - uid: 38117 + - uid: 41058 components: - type: Transform pos: -3.5,-5.5 - parent: 37887 - - uid: 38118 + parent: 40828 + - uid: 41059 components: - type: Transform pos: -4.5,-5.5 - parent: 37887 - - uid: 38119 + parent: 40828 + - uid: 41060 components: - type: Transform pos: -5.5,-5.5 - parent: 37887 - - uid: 38120 + parent: 40828 + - uid: 41061 components: - type: Transform pos: -4.5,-6.5 - parent: 37887 - - uid: 38121 + parent: 40828 + - uid: 41062 components: - type: Transform pos: -5.5,-6.5 - parent: 37887 + parent: 40828 - proto: CarpetChapel entities: - - uid: 11715 + - uid: 12595 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,-24.5 parent: 2 - - uid: 11716 + - uid: 12596 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-25.5 parent: 2 - - uid: 11717 + - uid: 12597 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,-26.5 parent: 2 - - uid: 11718 + - uid: 12598 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-59.5 parent: 2 - - uid: 11719 + - uid: 12599 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-57.5 parent: 2 - - uid: 11720 + - uid: 12600 components: - type: Transform pos: 32.5,-60.5 parent: 2 - - uid: 11721 + - uid: 12601 components: - type: Transform pos: 32.5,-58.5 parent: 2 - - uid: 11722 + - uid: 12602 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-57.5 parent: 2 - - uid: 11723 + - uid: 12603 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-59.5 parent: 2 - - uid: 11724 + - uid: 12604 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-58.5 parent: 2 - - uid: 11725 + - uid: 12605 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-60.5 parent: 2 - - uid: 11726 + - uid: 12606 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-67.5 parent: 2 - - uid: 11727 + - uid: 12607 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-67.5 parent: 2 - - uid: 11728 + - uid: 12608 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-68.5 parent: 2 - - uid: 11729 + - uid: 12609 components: - type: Transform pos: 34.5,-68.5 parent: 2 - - uid: 11730 + - uid: 12610 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-57.5 parent: 2 - - uid: 11731 + - uid: 12611 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-57.5 parent: 2 - - uid: 11732 + - uid: 12612 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-58.5 parent: 2 - - uid: 11733 + - uid: 12613 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-58.5 parent: 2 - - uid: 11734 + - uid: 12614 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-60.5 parent: 2 - - uid: 11735 + - uid: 12615 components: - type: Transform pos: 37.5,-60.5 parent: 2 - - uid: 11736 + - uid: 12616 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-59.5 parent: 2 - - uid: 11737 + - uid: 12617 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-59.5 parent: 2 - - uid: 11738 + - uid: 12618 components: - type: Transform pos: 37.5,-58.5 parent: 2 - - uid: 11739 + - uid: 12619 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-57.5 parent: 2 - - uid: 11740 + - uid: 12620 components: - type: Transform pos: 35.5,-58.5 parent: 2 - - uid: 11741 + - uid: 12621 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-57.5 parent: 2 - - uid: 11742 + - uid: 12622 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-59.5 parent: 2 - - uid: 11743 + - uid: 12623 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-60.5 parent: 2 - - uid: 11744 + - uid: 12624 components: - type: Transform pos: 35.5,-60.5 parent: 2 - - uid: 11745 + - uid: 12625 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-59.5 parent: 2 - - uid: 11746 + - uid: 12626 components: - type: Transform rot: 3.141592653589793 rad @@ -87582,12701 +88616,12743 @@ entities: parent: 2 - proto: CarpetCyan entities: - - uid: 41124 + - uid: 12627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,20.5 + parent: 2 + - uid: 12628 components: - type: Transform pos: -32.5,5.5 parent: 2 - - uid: 41125 + - uid: 12629 components: - type: Transform pos: -32.5,7.5 parent: 2 - - uid: 41136 + - uid: 12630 components: - type: Transform pos: -28.5,-0.5 parent: 2 - - uid: 41139 + - uid: 12631 components: - type: Transform pos: -32.5,6.5 parent: 2 - - uid: 41141 + - uid: 12632 components: - type: Transform pos: -29.5,-2.5 parent: 2 - - uid: 41143 + - uid: 12633 components: - type: Transform pos: -28.5,-1.5 parent: 2 - - uid: 41144 + - uid: 12634 components: - type: Transform pos: -29.5,-0.5 parent: 2 - - uid: 41145 + - uid: 12635 components: - type: Transform pos: -29.5,-1.5 parent: 2 - - uid: 41146 + - uid: 12636 components: - type: Transform pos: -28.5,-2.5 parent: 2 - proto: CarpetGreen entities: - - uid: 11747 + - uid: 12637 components: - type: Transform pos: 36.5,5.5 parent: 2 - - uid: 11748 + - uid: 12638 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-72.5 parent: 2 - - uid: 11749 + - uid: 12639 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-71.5 parent: 2 - - uid: 11750 + - uid: 12640 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-71.5 parent: 2 - - uid: 11751 + - uid: 12641 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-71.5 parent: 2 - - uid: 11752 + - uid: 12642 components: - type: Transform pos: 8.5,17.5 parent: 2 - - uid: 11753 + - uid: 12643 components: - type: Transform pos: 8.5,16.5 parent: 2 - - uid: 11754 + - uid: 12644 components: - type: Transform pos: 8.5,15.5 parent: 2 - - uid: 11755 + - uid: 12645 components: - type: Transform pos: 9.5,16.5 parent: 2 - - uid: 11756 + - uid: 12646 components: - type: Transform pos: 9.5,15.5 parent: 2 - - uid: 11757 + - uid: 12647 components: - type: Transform pos: 9.5,17.5 parent: 2 - - uid: 11758 + - uid: 12648 components: - type: Transform pos: -9.5,22.5 parent: 2 - - uid: 11759 + - uid: 12649 components: - type: Transform pos: -10.5,22.5 parent: 2 - - uid: 11771 + - uid: 12650 components: - type: Transform pos: 7.5,17.5 parent: 2 - - uid: 11772 + - uid: 12651 components: - type: Transform pos: 7.5,16.5 parent: 2 - - uid: 11773 + - uid: 12652 components: - type: Transform pos: 7.5,15.5 parent: 2 - - uid: 11774 + - uid: 12653 components: - type: Transform pos: 26.5,-74.5 parent: 2 - - uid: 11775 + - uid: 12654 components: - type: Transform pos: 26.5,-75.5 parent: 2 - - uid: 11776 + - uid: 12655 components: - type: Transform pos: 26.5,-76.5 parent: 2 - - uid: 11777 + - uid: 12656 components: - type: Transform pos: 25.5,-74.5 parent: 2 - - uid: 11778 + - uid: 12657 components: - type: Transform pos: 25.5,-75.5 parent: 2 - - uid: 11779 + - uid: 12658 components: - type: Transform pos: 25.5,-76.5 parent: 2 - - uid: 11780 + - uid: 12659 components: - type: Transform pos: 24.5,-75.5 parent: 2 - - uid: 11781 + - uid: 12660 components: - type: Transform pos: 24.5,-76.5 parent: 2 - - uid: 11782 + - uid: 12661 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,7.5 parent: 2 - - uid: 11783 + - uid: 12662 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 2 - - uid: 11784 + - uid: 12663 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 2 - - uid: 11785 + - uid: 12664 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 2 - - uid: 11786 + - uid: 12665 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-72.5 parent: 2 - - uid: 11787 + - uid: 12666 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-72.5 parent: 2 - - uid: 11788 + - uid: 12667 components: - type: Transform pos: 36.5,3.5 parent: 2 - proto: CarpetOrange entities: - - uid: 11789 + - uid: 12668 components: - type: Transform pos: 11.5,22.5 parent: 2 - - uid: 11790 + - uid: 12669 components: - type: Transform pos: 10.5,22.5 parent: 2 - - uid: 11791 + - uid: 12670 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-90.5 parent: 2 - - uid: 11792 + - uid: 12671 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-89.5 parent: 2 - - uid: 11793 + - uid: 12672 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-76.5 parent: 2 - - uid: 11794 + - uid: 12673 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-75.5 parent: 2 - - uid: 11795 + - uid: 12674 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-76.5 parent: 2 - - uid: 11796 + - uid: 12675 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-75.5 parent: 2 - - uid: 11797 + - uid: 12676 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-98.5 parent: 2 - - uid: 11798 + - uid: 12677 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-99.5 parent: 2 - - uid: 11799 + - uid: 12678 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-98.5 parent: 2 - - uid: 11800 + - uid: 12679 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-99.5 parent: 2 - - uid: 11801 + - uid: 12680 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-98.5 parent: 2 - - uid: 11802 + - uid: 12681 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-99.5 parent: 2 - - uid: 11803 + - uid: 12682 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-93.5 parent: 2 - - uid: 11804 + - uid: 12683 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-94.5 parent: 2 - - uid: 11805 + - uid: 12684 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-93.5 parent: 2 - - uid: 11806 + - uid: 12685 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-94.5 parent: 2 - - uid: 11807 + - uid: 12686 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-93.5 parent: 2 - - uid: 11808 + - uid: 12687 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-94.5 parent: 2 - - uid: 11809 + - uid: 12688 components: - type: Transform pos: -28.5,-90.5 parent: 2 - - uid: 11810 + - uid: 12689 components: - type: Transform pos: -28.5,-89.5 parent: 2 - proto: CarpetPink entities: - - uid: 11811 + - uid: 12690 components: - type: Transform pos: -7.5,24.5 parent: 2 - - uid: 11812 + - uid: 12691 components: - type: Transform pos: -7.5,25.5 parent: 2 - - uid: 11813 + - uid: 12692 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-87.5 parent: 2 - - uid: 11814 + - uid: 12693 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-87.5 parent: 2 - - uid: 11815 + - uid: 12694 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-86.5 parent: 2 - - uid: 11816 + - uid: 12695 components: - type: Transform pos: -40.5,-67.5 parent: 2 - - uid: 11817 + - uid: 12696 components: - type: Transform pos: -40.5,-68.5 parent: 2 - - uid: 11818 + - uid: 12697 components: - type: Transform pos: -40.5,-69.5 parent: 2 - - uid: 11819 + - uid: 12698 components: - type: Transform pos: -39.5,-67.5 parent: 2 - - uid: 11820 + - uid: 12699 components: - type: Transform pos: -39.5,-68.5 parent: 2 - - uid: 11821 + - uid: 12700 components: - type: Transform pos: -39.5,-69.5 parent: 2 - - uid: 11822 + - uid: 12701 components: - type: Transform pos: -38.5,-67.5 parent: 2 - - uid: 11823 + - uid: 12702 components: - type: Transform pos: -38.5,-68.5 parent: 2 - - uid: 11824 + - uid: 12703 components: - type: Transform pos: -38.5,-69.5 parent: 2 - - uid: 11825 + - uid: 12704 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-70.5 parent: 2 - - uid: 11826 + - uid: 12705 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-69.5 parent: 2 - - uid: 11827 + - uid: 12706 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-70.5 parent: 2 - - uid: 11828 + - uid: 12707 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-69.5 parent: 2 - - uid: 11829 + - uid: 12708 components: - type: Transform pos: -35.5,-86.5 parent: 2 - proto: CarpetPurple entities: - - uid: 11830 + - uid: 12709 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-83.5 parent: 2 - - uid: 11831 + - uid: 12710 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-84.5 parent: 2 - - uid: 11832 + - uid: 12711 components: - type: Transform pos: -28.5,-84.5 parent: 2 - - uid: 11833 + - uid: 12712 components: - type: Transform pos: -28.5,-83.5 parent: 2 - proto: CarpetSBlue entities: - - uid: 4599 + - uid: 12713 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,16.5 + pos: -9.5,10.5 parent: 2 - - uid: 10220 + - uid: 12714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,20.5 + rot: 3.141592653589793 rad + pos: 15.5,16.5 parent: 2 - - uid: 11834 + - uid: 12715 components: - type: Transform pos: 11.5,15.5 parent: 2 - - uid: 11835 + - uid: 12716 components: - type: Transform pos: 11.5,16.5 parent: 2 - - uid: 11836 + - uid: 12717 components: - type: Transform pos: 17.5,11.5 parent: 2 - - uid: 11837 + - uid: 12718 components: - type: Transform pos: 17.5,12.5 parent: 2 - - uid: 11838 + - uid: 12719 components: - type: Transform pos: 17.5,13.5 parent: 2 - - uid: 11839 + - uid: 12720 components: - type: Transform pos: 16.5,11.5 parent: 2 - - uid: 11840 + - uid: 12721 components: - type: Transform pos: 16.5,12.5 parent: 2 - - uid: 11841 + - uid: 12722 components: - type: Transform pos: 16.5,13.5 parent: 2 - - uid: 11842 + - uid: 12723 components: - type: Transform pos: 0.5,24.5 parent: 2 - - uid: 11843 + - uid: 12724 components: - type: Transform pos: -0.5,24.5 parent: 2 - - uid: 11846 + - uid: 12725 components: - type: Transform pos: 1.5,24.5 parent: 2 - - uid: 11847 + - uid: 12726 components: - type: Transform pos: -0.5,23.5 parent: 2 - - uid: 11848 + - uid: 12727 components: - type: Transform pos: 1.5,23.5 parent: 2 - - uid: 11849 + - uid: 12728 components: - type: Transform pos: -54.5,-48.5 parent: 2 - - uid: 11850 + - uid: 12729 components: - type: Transform pos: 2.5,23.5 parent: 2 - - uid: 11851 + - uid: 12730 components: - type: Transform pos: -1.5,23.5 parent: 2 - - uid: 11855 + - uid: 12731 components: - type: Transform pos: -1.5,26.5 parent: 2 - - uid: 11856 + - uid: 12732 components: - type: Transform pos: -0.5,26.5 parent: 2 - - uid: 11857 + - uid: 12733 components: - type: Transform pos: 0.5,26.5 parent: 2 - - uid: 11858 + - uid: 12734 components: - type: Transform pos: 1.5,26.5 parent: 2 - - uid: 11859 + - uid: 12735 components: - type: Transform pos: 2.5,26.5 parent: 2 - - uid: 11860 + - uid: 12736 components: - type: Transform pos: 1.5,27.5 parent: 2 - - uid: 11861 + - uid: 12737 components: - type: Transform pos: -1.5,27.5 parent: 2 - - uid: 11862 + - uid: 12738 components: - type: Transform pos: -0.5,27.5 parent: 2 - - uid: 11863 + - uid: 12739 components: - type: Transform pos: 0.5,27.5 parent: 2 - - uid: 11864 + - uid: 12740 components: - type: Transform pos: 2.5,27.5 parent: 2 - - uid: 11865 + - uid: 12741 components: - type: Transform pos: 13.5,15.5 parent: 2 - - uid: 11867 + - uid: 12742 components: - type: Transform pos: 15.5,15.5 parent: 2 - - uid: 11868 + - uid: 12743 components: - type: Transform pos: 14.5,15.5 parent: 2 - - uid: 11869 + - uid: 12744 components: - type: Transform pos: -39.5,-10.5 parent: 2 - - uid: 11870 + - uid: 12745 components: - type: Transform pos: -39.5,-11.5 parent: 2 - - uid: 11871 + - uid: 12746 components: - type: Transform pos: -39.5,-12.5 parent: 2 - - uid: 11872 + - uid: 12747 components: - type: Transform pos: -38.5,-10.5 parent: 2 - - uid: 11873 + - uid: 12748 components: - type: Transform pos: -38.5,-11.5 parent: 2 - - uid: 11874 + - uid: 12749 components: - type: Transform pos: -38.5,-12.5 parent: 2 - - uid: 11875 + - uid: 12750 components: - type: Transform pos: -36.5,-7.5 parent: 2 - - uid: 11876 + - uid: 12751 components: - type: Transform pos: -35.5,-7.5 parent: 2 - - uid: 11877 + - uid: 12752 components: - type: Transform pos: -34.5,-7.5 parent: 2 - - uid: 11878 + - uid: 12753 components: - type: Transform pos: -34.5,-8.5 parent: 2 - - uid: 11879 + - uid: 12754 components: - type: Transform pos: -34.5,-9.5 parent: 2 - - uid: 11880 + - uid: 12755 components: - type: Transform pos: -35.5,-8.5 parent: 2 - - uid: 11881 + - uid: 12756 components: - type: Transform pos: -35.5,-9.5 parent: 2 - - uid: 11882 + - uid: 12757 components: - type: Transform pos: -54.5,-47.5 parent: 2 - - uid: 11883 + - uid: 12758 components: - type: Transform pos: 7.5,7.5 parent: 2 - - uid: 11884 + - uid: 12759 components: - type: Transform pos: 8.5,9.5 parent: 2 - - uid: 11885 + - uid: 12760 components: - type: Transform pos: 7.5,8.5 parent: 2 - - uid: 11886 + - uid: 12761 components: - type: Transform pos: 8.5,8.5 parent: 2 - - uid: 11887 + - uid: 12762 components: - type: Transform pos: 7.5,9.5 parent: 2 - - uid: 11888 + - uid: 12763 components: - type: Transform pos: 7.5,10.5 parent: 2 - - uid: 11889 + - uid: 12764 components: - type: Transform pos: 9.5,9.5 parent: 2 - - uid: 11890 + - uid: 12765 components: - type: Transform pos: 9.5,8.5 parent: 2 - - uid: 11891 + - uid: 12766 components: - type: Transform pos: 6.5,7.5 parent: 2 - - uid: 11892 + - uid: 12767 components: - type: Transform pos: 5.5,9.5 parent: 2 - - uid: 11893 + - uid: 12768 components: - type: Transform pos: 5.5,10.5 parent: 2 - - uid: 11894 + - uid: 12769 components: - type: Transform pos: 5.5,7.5 parent: 2 - - uid: 11895 + - uid: 12770 components: - type: Transform pos: 8.5,10.5 parent: 2 - - uid: 11896 + - uid: 12771 components: - type: Transform pos: 8.5,7.5 parent: 2 - - uid: 11897 + - uid: 12772 components: - type: Transform pos: 6.5,9.5 parent: 2 - - uid: 11898 + - uid: 12773 components: - type: Transform pos: 5.5,8.5 parent: 2 - - uid: 11899 + - uid: 12774 components: - type: Transform pos: 6.5,10.5 parent: 2 - - uid: 11900 + - uid: 12775 components: - type: Transform pos: 6.5,8.5 parent: 2 - - uid: 25924 + - uid: 12776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,20.5 + rot: 3.141592653589793 rad + pos: -10.5,10.5 parent: 2 - - uid: 29410 + - uid: 12777 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,16.5 parent: 2 - - uid: 29411 + - uid: 12778 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,16.5 parent: 2 + - uid: 12779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,10.5 + parent: 2 + - uid: 12780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 2 + - uid: 12781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 2 + - uid: 12782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,11.5 + parent: 2 + - uid: 12783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,4.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,4.5 + parent: 2 - proto: CarpStatue entities: - - uid: 33540 + - uid: 12785 components: - type: Transform pos: 11.5,-35.5 parent: 2 - proto: CarpStatueEyes entities: - - uid: 33770 + - uid: 12786 components: - type: Transform pos: 7.5,-42.5 parent: 2 - proto: CarvedPumpkin entities: - - uid: 40088 + - uid: 12787 components: - type: Transform pos: -78.281494,-41.086143 parent: 2 - proto: CarvedPumpkinLarge entities: - - uid: 36688 + - uid: 12788 components: - type: Transform pos: -31.484411,-98.339386 parent: 2 - proto: CarvedPumpkinSmall entities: - - uid: 37661 + - uid: 12789 components: - type: Transform pos: 50.829235,-54.189037 parent: 2 - - uid: 40890 + - uid: 12790 components: - type: Transform pos: 61.57672,-37.85955 parent: 2 - - uid: 40897 + - uid: 12791 components: - type: Transform pos: 94.46736,-20.29567 parent: 2 - proto: Catwalk entities: - - uid: 1547 + - uid: 12792 components: - type: Transform pos: 68.5,18.5 parent: 2 - - uid: 1646 + - uid: 12793 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-52.5 parent: 2 - - uid: 1647 + - uid: 12794 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-51.5 parent: 2 - - uid: 1648 + - uid: 12795 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-54.5 parent: 2 - - uid: 2069 + - uid: 12796 components: - type: Transform pos: 69.5,18.5 parent: 2 - - uid: 2757 + - uid: 12797 components: - type: Transform pos: 69.5,17.5 parent: 2 - - uid: 4605 + - uid: 12798 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-51.5 parent: 2 - - uid: 4809 + - uid: 12799 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-53.5 parent: 2 - - uid: 4815 + - uid: 12800 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-54.5 parent: 2 - - uid: 5608 + - uid: 12801 components: - type: Transform pos: 44.5,12.5 parent: 2 - - uid: 5612 + - uid: 12802 components: - type: Transform pos: 43.5,12.5 parent: 2 - - uid: 5728 + - uid: 12803 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-25.5 parent: 2 - - uid: 6045 + - uid: 12804 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-19.5 parent: 2 - - uid: 6198 + - uid: 12805 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-53.5 parent: 2 - - uid: 7259 + - uid: 12806 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-52.5 parent: 2 - - uid: 9934 + - uid: 12807 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,17.5 parent: 2 - - uid: 9936 + - uid: 12808 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,17.5 parent: 2 - - uid: 11485 + - uid: 12809 components: - type: Transform pos: 67.5,18.5 parent: 2 - - uid: 11907 + - uid: 12810 components: - type: Transform pos: 57.5,-89.5 parent: 2 - - uid: 11912 + - uid: 12811 components: - type: Transform pos: 30.5,-104.5 parent: 2 - - uid: 11913 + - uid: 12812 components: - type: Transform pos: 98.5,-46.5 parent: 2 - - uid: 11914 + - uid: 12813 components: - type: Transform pos: 102.5,-52.5 parent: 2 - - uid: 11915 + - uid: 12814 components: - type: Transform pos: 98.5,-44.5 parent: 2 - - uid: 11916 + - uid: 12815 components: - type: Transform pos: 101.5,-52.5 parent: 2 - - uid: 11917 + - uid: 12816 components: - type: Transform pos: 61.5,-86.5 parent: 2 - - uid: 11918 + - uid: 12817 components: - type: Transform pos: 61.5,-85.5 parent: 2 - - uid: 11919 + - uid: 12818 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,10.5 parent: 2 - - uid: 11920 + - uid: 12819 components: - type: Transform rot: -1.5707963267948966 rad pos: 89.5,-54.5 parent: 2 - - uid: 11921 + - uid: 12820 components: - type: Transform pos: -68.5,-103.5 parent: 2 - - uid: 11922 + - uid: 12821 components: - type: Transform pos: -68.5,-84.5 parent: 2 - - uid: 11923 + - uid: 12822 components: - type: Transform pos: -68.5,-95.5 parent: 2 - - uid: 11924 + - uid: 12823 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-93.5 parent: 2 - - uid: 11925 + - uid: 12824 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-87.5 parent: 2 - - uid: 11926 + - uid: 12825 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-87.5 parent: 2 - - uid: 11927 + - uid: 12826 components: - type: Transform pos: -65.5,-93.5 parent: 2 - - uid: 11928 + - uid: 12827 components: - type: Transform pos: -72.5,-97.5 parent: 2 - - uid: 11929 + - uid: 12828 components: - type: Transform pos: -65.5,-97.5 parent: 2 - - uid: 11930 + - uid: 12829 components: - type: Transform pos: -66.5,-101.5 parent: 2 - - uid: 11931 + - uid: 12830 components: - type: Transform pos: -69.5,-93.5 parent: 2 - - uid: 11932 + - uid: 12831 components: - type: Transform pos: -67.5,-86.5 parent: 2 - - uid: 11933 + - uid: 12832 components: - type: Transform pos: -68.5,-97.5 parent: 2 - - uid: 11934 + - uid: 12833 components: - type: Transform pos: -56.5,7.5 parent: 2 - - uid: 11935 + - uid: 12834 components: - type: Transform pos: -68.5,-94.5 parent: 2 - - uid: 11936 + - uid: 12835 components: - type: Transform pos: -68.5,-102.5 parent: 2 - - uid: 11937 + - uid: 12836 components: - type: Transform pos: -67.5,-101.5 parent: 2 - - uid: 11939 + - uid: 12837 components: - type: Transform pos: -68.5,-101.5 parent: 2 - - uid: 11940 + - uid: 12838 components: - type: Transform pos: -68.5,-93.5 parent: 2 - - uid: 11941 + - uid: 12839 components: - type: Transform pos: -68.5,-99.5 parent: 2 - - uid: 11942 + - uid: 12840 components: - type: Transform pos: -68.5,-100.5 parent: 2 - - uid: 11943 + - uid: 12841 components: - type: Transform pos: -68.5,-98.5 parent: 2 - - uid: 11944 + - uid: 12842 components: - type: Transform pos: -68.5,-96.5 parent: 2 - - uid: 11945 + - uid: 12843 components: - type: Transform pos: -64.5,-101.5 parent: 2 - - uid: 11946 + - uid: 12844 components: - type: Transform pos: -65.5,-101.5 parent: 2 - - uid: 11947 + - uid: 12845 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-92.5 parent: 2 - - uid: 11948 + - uid: 12846 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-87.5 parent: 2 - - uid: 11949 + - uid: 12847 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-87.5 parent: 2 - - uid: 11950 + - uid: 12848 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-87.5 parent: 2 - - uid: 11951 + - uid: 12849 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-87.5 parent: 2 - - uid: 11952 + - uid: 12850 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-94.5 parent: 2 - - uid: 11953 + - uid: 12851 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,7.5 parent: 2 - - uid: 11954 + - uid: 12852 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,7.5 parent: 2 - - uid: 11955 + - uid: 12853 components: - type: Transform pos: -58.5,-70.5 parent: 2 - - uid: 11956 + - uid: 12854 components: - type: Transform pos: -58.5,-68.5 parent: 2 - - uid: 11957 + - uid: 12855 components: - type: Transform pos: -58.5,-74.5 parent: 2 - - uid: 11958 + - uid: 12856 components: - type: Transform pos: -40.5,-121.5 parent: 2 - - uid: 11959 + - uid: 12857 components: - type: Transform pos: 57.5,-92.5 parent: 2 - - uid: 11960 + - uid: 12858 components: - type: Transform pos: 57.5,-91.5 parent: 2 - - uid: 11961 + - uid: 12859 components: - type: Transform pos: 61.5,-88.5 parent: 2 - - uid: 11962 + - uid: 12860 components: - type: Transform pos: 61.5,-89.5 parent: 2 - - uid: 11963 + - uid: 12861 components: - type: Transform pos: 61.5,-90.5 parent: 2 - - uid: 11964 + - uid: 12862 components: - type: Transform pos: 60.5,-90.5 parent: 2 - - uid: 11965 + - uid: 12863 components: - type: Transform pos: 58.5,-85.5 parent: 2 - - uid: 11966 + - uid: 12864 components: - type: Transform pos: 57.5,-85.5 parent: 2 - - uid: 11967 + - uid: 12865 components: - type: Transform pos: 59.5,-90.5 parent: 2 - - uid: 11968 + - uid: 12866 components: - type: Transform pos: 58.5,-90.5 parent: 2 - - uid: 11969 + - uid: 12867 components: - type: Transform pos: 57.5,-86.5 parent: 2 - - uid: 11970 + - uid: 12868 components: - type: Transform pos: 29.5,-104.5 parent: 2 - - uid: 11971 + - uid: 12869 components: - type: Transform pos: 51.5,-97.5 parent: 2 - - uid: 11972 + - uid: 12870 components: - type: Transform pos: 59.5,-85.5 parent: 2 - - uid: 11973 + - uid: 12871 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-91.5 parent: 2 - - uid: 11974 + - uid: 12872 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,-69.5 parent: 2 - - uid: 11975 + - uid: 12873 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-82.5 parent: 2 - - uid: 11976 + - uid: 12874 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-82.5 parent: 2 - - uid: 11977 + - uid: 12875 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,-68.5 parent: 2 - - uid: 11978 + - uid: 12876 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-70.5 parent: 2 - - uid: 11979 + - uid: 12877 components: - type: Transform pos: -73.5,10.5 parent: 2 - - uid: 11980 + - uid: 12878 components: - type: Transform pos: -70.5,-97.5 parent: 2 - - uid: 11981 + - uid: 12879 components: - type: Transform pos: -72.5,-101.5 parent: 2 - - uid: 11982 + - uid: 12880 components: - type: Transform pos: -70.5,-93.5 parent: 2 - - uid: 11983 + - uid: 12881 components: - type: Transform pos: -73.5,-97.5 parent: 2 - - uid: 11984 + - uid: 12882 components: - type: Transform pos: -71.5,-97.5 parent: 2 - - uid: 11985 + - uid: 12883 components: - type: Transform pos: -74.5,-97.5 parent: 2 - - uid: 11986 + - uid: 12884 components: - type: Transform pos: -68.5,-92.5 parent: 2 - - uid: 11987 + - uid: 12885 components: - type: Transform pos: -73.5,-81.5 parent: 2 - - uid: 11988 + - uid: 12886 components: - type: Transform pos: -73.5,-80.5 parent: 2 - - uid: 11989 + - uid: 12887 components: - type: Transform pos: -68.5,-91.5 parent: 2 - - uid: 11990 + - uid: 12888 components: - type: Transform pos: -68.5,-90.5 parent: 2 - - uid: 11991 + - uid: 12889 components: - type: Transform pos: -68.5,-89.5 parent: 2 - - uid: 11992 + - uid: 12890 components: - type: Transform pos: -68.5,-88.5 parent: 2 - - uid: 11993 + - uid: 12891 components: - type: Transform pos: -68.5,-87.5 parent: 2 - - uid: 11994 + - uid: 12892 components: - type: Transform pos: -68.5,-86.5 parent: 2 - - uid: 11995 + - uid: 12893 components: - type: Transform pos: -66.5,-86.5 parent: 2 - - uid: 11996 + - uid: 12894 components: - type: Transform pos: -72.5,-83.5 parent: 2 - - uid: 11997 + - uid: 12895 components: - type: Transform pos: -71.5,-83.5 parent: 2 - - uid: 11998 + - uid: 12896 components: - type: Transform pos: -67.5,-84.5 parent: 2 - - uid: 11999 + - uid: 12897 components: - type: Transform pos: -70.5,-83.5 parent: 2 - - uid: 12000 + - uid: 12898 components: - type: Transform pos: -65.5,-86.5 parent: 2 - - uid: 12001 + - uid: 12899 components: - type: Transform pos: -64.5,-86.5 parent: 2 - - uid: 12002 + - uid: 12900 components: - type: Transform pos: -63.5,-86.5 parent: 2 - - uid: 12003 + - uid: 12901 components: - type: Transform pos: -62.5,-86.5 parent: 2 - - uid: 12004 + - uid: 12902 components: - type: Transform pos: -69.5,-83.5 parent: 2 - - uid: 12005 + - uid: 12903 components: - type: Transform pos: -71.5,-93.5 parent: 2 - - uid: 12006 + - uid: 12904 components: - type: Transform pos: -72.5,-93.5 parent: 2 - - uid: 12007 + - uid: 12905 components: - type: Transform pos: -64.5,-97.5 parent: 2 - - uid: 12008 + - uid: 12906 components: - type: Transform pos: -73.5,-93.5 parent: 2 - - uid: 12009 + - uid: 12907 components: - type: Transform pos: -71.5,-89.5 parent: 2 - - uid: 12010 + - uid: 12908 components: - type: Transform pos: -70.5,-89.5 parent: 2 - - uid: 12011 + - uid: 12909 components: - type: Transform pos: -63.5,-97.5 parent: 2 - - uid: 12012 + - uid: 12910 components: - type: Transform pos: -62.5,-97.5 parent: 2 - - uid: 12013 + - uid: 12911 components: - type: Transform pos: -63.5,-93.5 parent: 2 - - uid: 12014 + - uid: 12912 components: - type: Transform pos: -64.5,-93.5 parent: 2 - - uid: 12015 + - uid: 12913 components: - type: Transform pos: -66.5,-93.5 parent: 2 - - uid: 12016 + - uid: 12914 components: - type: Transform pos: -69.5,-97.5 parent: 2 - - uid: 12017 + - uid: 12915 components: - type: Transform pos: -67.5,-97.5 parent: 2 - - uid: 12018 + - uid: 12916 components: - type: Transform pos: -66.5,-97.5 parent: 2 - - uid: 12019 + - uid: 12917 components: - type: Transform pos: -61.5,-86.5 parent: 2 - - uid: 12020 + - uid: 12918 components: - type: Transform pos: -73.5,-82.5 parent: 2 - - uid: 12021 + - uid: 12919 components: - type: Transform pos: -73.5,-83.5 parent: 2 - - uid: 12022 + - uid: 12920 components: - type: Transform pos: -69.5,-101.5 parent: 2 - - uid: 12023 + - uid: 12921 components: - type: Transform pos: -70.5,-101.5 parent: 2 - - uid: 12024 + - uid: 12922 components: - type: Transform pos: -71.5,-101.5 parent: 2 - - uid: 12025 + - uid: 12923 components: - type: Transform pos: -69.5,-84.5 parent: 2 - - uid: 12026 + - uid: 12924 components: - type: Transform pos: -67.5,-85.5 parent: 2 - - uid: 12027 + - uid: 12925 components: - type: Transform pos: -74.5,-80.5 parent: 2 - - uid: 12028 + - uid: 12926 components: - type: Transform pos: -67.5,-93.5 parent: 2 - - uid: 12029 + - uid: 12927 components: - type: Transform pos: -72.5,-89.5 parent: 2 - - uid: 12030 + - uid: 12928 components: - type: Transform pos: -75.5,10.5 parent: 2 - - uid: 12031 + - uid: 12929 components: - type: Transform pos: -74.5,10.5 parent: 2 - - uid: 12032 + - uid: 12930 components: - type: Transform pos: -56.5,6.5 parent: 2 - - uid: 12033 + - uid: 12931 components: - type: Transform pos: -72.5,10.5 parent: 2 - - uid: 12034 + - uid: 12932 components: - type: Transform pos: -68.5,8.5 parent: 2 - - uid: 12035 + - uid: 12933 components: - type: Transform pos: -68.5,10.5 parent: 2 - - uid: 12036 + - uid: 12934 components: - type: Transform pos: -55.5,5.5 parent: 2 - - uid: 12037 + - uid: 12935 components: - type: Transform pos: -54.5,5.5 parent: 2 - - uid: 12038 + - uid: 12936 components: - type: Transform pos: -57.5,7.5 parent: 2 - - uid: 12039 + - uid: 12937 components: - type: Transform pos: -58.5,7.5 parent: 2 - - uid: 12040 + - uid: 12938 components: - type: Transform pos: -59.5,7.5 parent: 2 - - uid: 12041 + - uid: 12939 components: - type: Transform pos: -67.5,1.5 parent: 2 - - uid: 12042 + - uid: 12940 components: - type: Transform pos: -68.5,7.5 parent: 2 - - uid: 12043 + - uid: 12941 components: - type: Transform pos: -67.5,0.5 parent: 2 - - uid: 12044 + - uid: 12942 components: - type: Transform pos: -68.5,6.5 parent: 2 - - uid: 12045 + - uid: 12943 components: - type: Transform pos: -68.5,5.5 parent: 2 - - uid: 12046 + - uid: 12944 components: - type: Transform pos: -67.5,2.5 parent: 2 - - uid: 12047 + - uid: 12945 components: - type: Transform pos: -64.5,0.5 parent: 2 - - uid: 12048 + - uid: 12946 components: - type: Transform pos: -71.5,10.5 parent: 2 - - uid: 12049 + - uid: 12947 components: - type: Transform pos: -64.5,-4.5 parent: 2 - - uid: 12050 + - uid: 12948 components: - type: Transform pos: -71.5,9.5 parent: 2 - - uid: 12051 + - uid: 12949 components: - type: Transform pos: -64.5,-3.5 parent: 2 - - uid: 12052 + - uid: 12950 components: - type: Transform pos: -70.5,10.5 parent: 2 - - uid: 12053 + - uid: 12951 components: - type: Transform pos: -68.5,4.5 parent: 2 - - uid: 12054 + - uid: 12952 components: - type: Transform pos: -66.5,0.5 parent: 2 - - uid: 12055 + - uid: 12953 components: - type: Transform pos: -65.5,0.5 parent: 2 - - uid: 12056 + - uid: 12954 components: - type: Transform pos: -63.5,7.5 parent: 2 - - uid: 12057 + - uid: 12955 components: - type: Transform pos: -67.5,7.5 parent: 2 - - uid: 12058 + - uid: 12956 components: - type: Transform pos: -64.5,7.5 parent: 2 - - uid: 12059 + - uid: 12957 components: - type: Transform pos: -64.5,-5.5 parent: 2 - - uid: 12060 + - uid: 12958 components: - type: Transform pos: -65.5,7.5 parent: 2 - - uid: 12061 + - uid: 12959 components: - type: Transform pos: 100.5,-50.5 parent: 2 - - uid: 12062 + - uid: 12960 components: - type: Transform pos: -57.5,-75.5 parent: 2 - - uid: 12063 + - uid: 12961 components: - type: Transform pos: 98.5,-43.5 parent: 2 - - uid: 12064 + - uid: 12962 components: - type: Transform pos: 98.5,-45.5 parent: 2 - - uid: 12065 + - uid: 12963 components: - type: Transform pos: 73.5,-46.5 parent: 2 - - uid: 12066 + - uid: 12964 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-52.5 parent: 2 - - uid: 12067 + - uid: 12965 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-58.5 parent: 2 - - uid: 12068 + - uid: 12966 components: - type: Transform pos: 100.5,-52.5 parent: 2 - - uid: 12069 + - uid: 12967 components: - type: Transform pos: 63.5,-60.5 parent: 2 - - uid: 12070 + - uid: 12968 components: - type: Transform pos: 62.5,-60.5 parent: 2 - - uid: 12071 + - uid: 12969 components: - type: Transform pos: -59.5,-40.5 parent: 2 - - uid: 12072 + - uid: 12970 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-60.5 parent: 2 - - uid: 12073 + - uid: 12971 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-60.5 parent: 2 - - uid: 12074 + - uid: 12972 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-103.5 parent: 2 - - uid: 12075 + - uid: 12973 components: - type: Transform pos: 40.5,-95.5 parent: 2 - - uid: 12076 + - uid: 12974 components: - type: Transform pos: -81.5,-37.5 parent: 2 - - uid: 12077 + - uid: 12975 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-82.5 parent: 2 - - uid: 12080 + - uid: 12976 components: - type: Transform pos: 65.5,-55.5 parent: 2 - - uid: 12081 + - uid: 12977 components: - type: Transform pos: 64.5,-80.5 parent: 2 - - uid: 12082 + - uid: 12978 components: - type: Transform pos: 86.5,-35.5 parent: 2 - - uid: 12084 + - uid: 12979 components: - type: Transform pos: 106.5,-27.5 parent: 2 - - uid: 12085 + - uid: 12980 components: - type: Transform pos: 88.5,-36.5 parent: 2 - - uid: 12087 + - uid: 12981 components: - type: Transform pos: 86.5,-29.5 parent: 2 - - uid: 12088 + - uid: 12982 components: - type: Transform pos: 106.5,-29.5 parent: 2 - - uid: 12089 + - uid: 12983 components: - type: Transform pos: 86.5,-30.5 parent: 2 - - uid: 12090 + - uid: 12984 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-68.5 parent: 2 - - uid: 12091 + - uid: 12985 components: - type: Transform pos: 69.5,-66.5 parent: 2 - - uid: 12092 + - uid: 12986 components: - type: Transform pos: 69.5,-65.5 parent: 2 - - uid: 12093 + - uid: 12987 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-76.5 parent: 2 - - uid: 12094 + - uid: 12988 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-75.5 parent: 2 - - uid: 12095 + - uid: 12989 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-73.5 parent: 2 - - uid: 12097 + - uid: 12990 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-95.5 parent: 2 - - uid: 12098 + - uid: 12991 components: - type: Transform pos: 64.5,-82.5 parent: 2 - - uid: 12099 + - uid: 12992 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-95.5 parent: 2 - - uid: 12100 + - uid: 12993 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-91.5 parent: 2 - - uid: 12101 + - uid: 12994 components: - type: Transform pos: 65.5,-82.5 parent: 2 - - uid: 12102 + - uid: 12995 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-89.5 parent: 2 - - uid: 12103 + - uid: 12996 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-91.5 parent: 2 - - uid: 12104 + - uid: 12997 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-87.5 parent: 2 - - uid: 12105 + - uid: 12998 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-95.5 parent: 2 - - uid: 12106 + - uid: 12999 components: - type: Transform pos: 68.5,-65.5 parent: 2 - - uid: 12107 + - uid: 13000 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-95.5 parent: 2 - - uid: 12108 + - uid: 13001 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-90.5 parent: 2 - - uid: 12109 + - uid: 13002 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-95.5 parent: 2 - - uid: 12110 + - uid: 13003 components: - type: Transform pos: 64.5,-81.5 parent: 2 - - uid: 12111 + - uid: 13004 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-89.5 parent: 2 - - uid: 12112 + - uid: 13005 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-90.5 parent: 2 - - uid: 12113 + - uid: 13006 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-74.5 parent: 2 - - uid: 12114 + - uid: 13007 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-91.5 parent: 2 - - uid: 12115 + - uid: 13008 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-90.5 parent: 2 - - uid: 12116 + - uid: 13009 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-88.5 parent: 2 - - uid: 12117 + - uid: 13010 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-89.5 parent: 2 - - uid: 12118 + - uid: 13011 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-91.5 parent: 2 - - uid: 12119 + - uid: 13012 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-77.5 parent: 2 - - uid: 12120 + - uid: 13013 components: - type: Transform pos: 13.5,-93.5 parent: 2 - - uid: 12121 + - uid: 13014 components: - type: Transform pos: -57.5,-61.5 parent: 2 - - uid: 12122 + - uid: 13015 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-98.5 parent: 2 - - uid: 12123 + - uid: 13016 components: - type: Transform pos: 66.5,-63.5 parent: 2 - - uid: 12124 + - uid: 13017 components: - type: Transform pos: 10.5,-93.5 parent: 2 - - uid: 12128 + - uid: 13018 components: - type: Transform pos: -39.5,-88.5 parent: 2 - - uid: 12129 + - uid: 13019 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-22.5 parent: 2 - - uid: 12130 + - uid: 13020 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-21.5 parent: 2 - - uid: 12131 + - uid: 13021 components: - type: Transform pos: -55.5,17.5 parent: 2 - - uid: 12132 + - uid: 13022 components: - type: Transform pos: -56.5,17.5 parent: 2 - - uid: 12133 + - uid: 13023 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-59.5 parent: 2 - - uid: 12134 + - uid: 13024 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-28.5 parent: 2 - - uid: 12135 + - uid: 13025 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-25.5 parent: 2 - - uid: 12136 + - uid: 13026 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-23.5 parent: 2 - - uid: 12137 + - uid: 13027 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-24.5 parent: 2 - - uid: 12138 + - uid: 13028 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,2.5 parent: 2 - - uid: 12139 + - uid: 13029 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,2.5 parent: 2 - - uid: 12140 + - uid: 13030 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-60.5 parent: 2 - - uid: 12141 + - uid: 13031 components: - type: Transform pos: 106.5,-30.5 parent: 2 - - uid: 12142 + - uid: 13032 components: - type: Transform pos: 101.5,-26.5 parent: 2 - - uid: 12143 + - uid: 13033 components: - type: Transform pos: 106.5,-32.5 parent: 2 - - uid: 12144 + - uid: 13034 components: - type: Transform pos: 12.5,9.5 parent: 2 - - uid: 12145 + - uid: 13035 components: - type: Transform pos: 12.5,10.5 parent: 2 - - uid: 12146 + - uid: 13036 components: - type: Transform pos: 12.5,11.5 parent: 2 - - uid: 12147 + - uid: 13037 components: - type: Transform pos: 12.5,7.5 parent: 2 - - uid: 12148 + - uid: 13038 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-113.5 parent: 2 - - uid: 12149 + - uid: 13039 components: - type: Transform pos: 64.5,-79.5 parent: 2 - - uid: 12150 + - uid: 13040 components: - type: Transform pos: 64.5,-78.5 parent: 2 - - uid: 12151 + - uid: 13041 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-90.5 parent: 2 - - uid: 12152 + - uid: 13042 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-91.5 parent: 2 - - uid: 12153 + - uid: 13043 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-89.5 parent: 2 - - uid: 12154 + - uid: 13044 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-52.5 parent: 2 - - uid: 12155 + - uid: 13045 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-92.5 parent: 2 - - uid: 12156 + - uid: 13046 components: - type: Transform pos: 11.5,-93.5 parent: 2 - - uid: 12157 + - uid: 13047 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-62.5 parent: 2 - - uid: 12158 + - uid: 13048 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-82.5 parent: 2 - - uid: 12159 + - uid: 13049 components: - type: Transform pos: 68.5,-53.5 parent: 2 - - uid: 12161 + - uid: 13050 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-81.5 parent: 2 - - uid: 12162 + - uid: 13051 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-80.5 parent: 2 - - uid: 12163 + - uid: 13052 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-68.5 parent: 2 - - uid: 12164 + - uid: 13053 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,16.5 parent: 2 - - uid: 12165 + - uid: 13054 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-44.5 parent: 2 - - uid: 12166 + - uid: 13055 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-44.5 parent: 2 - - uid: 12167 + - uid: 13056 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-79.5 parent: 2 - - uid: 12168 + - uid: 13057 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-33.5 parent: 2 - - uid: 12169 + - uid: 13058 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-31.5 parent: 2 - - uid: 12170 + - uid: 13059 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-36.5 parent: 2 - - uid: 12171 + - uid: 13060 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-37.5 parent: 2 - - uid: 12172 + - uid: 13061 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-86.5 parent: 2 - - uid: 12173 + - uid: 13062 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-81.5 parent: 2 - - uid: 12174 + - uid: 13063 components: - type: Transform pos: 22.5,18.5 parent: 2 - - uid: 12175 + - uid: 13064 components: - type: Transform pos: 69.5,-53.5 parent: 2 - - uid: 12176 + - uid: 13065 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,-36.5 parent: 2 - - uid: 12177 + - uid: 13066 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,-26.5 parent: 2 - - uid: 12178 + - uid: 13067 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,-26.5 parent: 2 - - uid: 12179 + - uid: 13068 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,-36.5 parent: 2 - - uid: 12180 + - uid: 13069 components: - type: Transform pos: 61.5,-78.5 parent: 2 - - uid: 12181 + - uid: 13070 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-88.5 parent: 2 - - uid: 12182 + - uid: 13071 components: - type: Transform pos: 66.5,-59.5 parent: 2 - - uid: 12184 + - uid: 13072 components: - type: Transform pos: -55.5,-85.5 parent: 2 - - uid: 12185 + - uid: 13073 components: - type: Transform pos: 66.5,-65.5 parent: 2 - - uid: 12186 + - uid: 13074 components: - type: Transform pos: 78.5,-23.5 parent: 2 - - uid: 12187 + - uid: 13075 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-111.5 parent: 2 - - uid: 12188 + - uid: 13076 components: - type: Transform pos: 64.5,-69.5 parent: 2 - - uid: 12190 + - uid: 13077 components: - type: Transform pos: 65.5,-68.5 parent: 2 - - uid: 12191 + - uid: 13078 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-78.5 parent: 2 - - uid: 12192 + - uid: 13079 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-108.5 parent: 2 - - uid: 12193 + - uid: 13080 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-107.5 parent: 2 - - uid: 12194 + - uid: 13081 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-110.5 parent: 2 - - uid: 12195 + - uid: 13082 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-88.5 parent: 2 - - uid: 12196 + - uid: 13083 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-101.5 parent: 2 - - uid: 12197 + - uid: 13084 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-102.5 parent: 2 - - uid: 12198 + - uid: 13085 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-101.5 parent: 2 - - uid: 12199 + - uid: 13086 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-102.5 parent: 2 - - uid: 12200 + - uid: 13087 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-101.5 parent: 2 - - uid: 12201 + - uid: 13088 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-102.5 parent: 2 - - uid: 12202 + - uid: 13089 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-101.5 parent: 2 - - uid: 12203 + - uid: 13090 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-102.5 parent: 2 - - uid: 12204 + - uid: 13091 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-101.5 parent: 2 - - uid: 12205 + - uid: 13092 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-102.5 parent: 2 - - uid: 12206 + - uid: 13093 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-102.5 parent: 2 - - uid: 12207 + - uid: 13094 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-101.5 parent: 2 - - uid: 12208 + - uid: 13095 components: - type: Transform pos: -3.5,-101.5 parent: 2 - - uid: 12209 + - uid: 13096 components: - type: Transform pos: -3.5,-102.5 parent: 2 - - uid: 12210 + - uid: 13097 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-100.5 parent: 2 - - uid: 12211 + - uid: 13098 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-102.5 parent: 2 - - uid: 12212 + - uid: 13099 components: - type: Transform pos: 2.5,-89.5 parent: 2 - - uid: 12213 + - uid: 13100 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-91.5 parent: 2 - - uid: 12214 + - uid: 13101 components: - type: Transform pos: 3.5,-89.5 parent: 2 - - uid: 12215 + - uid: 13102 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-91.5 parent: 2 - - uid: 12216 + - uid: 13103 components: - type: Transform pos: 4.5,-89.5 parent: 2 - - uid: 12217 + - uid: 13104 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-91.5 parent: 2 - - uid: 12218 + - uid: 13105 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-89.5 parent: 2 - - uid: 12219 + - uid: 13106 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-90.5 parent: 2 - - uid: 12220 + - uid: 13107 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-91.5 parent: 2 - - uid: 12221 + - uid: 13108 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-89.5 parent: 2 - - uid: 12222 + - uid: 13109 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-90.5 parent: 2 - - uid: 12223 + - uid: 13110 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-91.5 parent: 2 - - uid: 12224 + - uid: 13111 components: - type: Transform pos: 9.5,-91.5 parent: 2 - - uid: 12225 + - uid: 13112 components: - type: Transform pos: 9.5,-90.5 parent: 2 - - uid: 12226 + - uid: 13113 components: - type: Transform pos: 9.5,-89.5 parent: 2 - - uid: 12227 + - uid: 13114 components: - type: Transform pos: 11.5,-88.5 parent: 2 - - uid: 12228 + - uid: 13115 components: - type: Transform pos: 10.5,-88.5 parent: 2 - - uid: 12229 + - uid: 13116 components: - type: Transform pos: 9.5,-88.5 parent: 2 - - uid: 12230 + - uid: 13117 components: - type: Transform pos: 4.5,-87.5 parent: 2 - - uid: 12231 + - uid: 13118 components: - type: Transform pos: 3.5,-87.5 parent: 2 - - uid: 12232 + - uid: 13119 components: - type: Transform pos: 2.5,-87.5 parent: 2 - - uid: 12233 + - uid: 13120 components: - type: Transform pos: 5.5,-87.5 parent: 2 - - uid: 12234 + - uid: 13121 components: - type: Transform pos: 5.5,-89.5 parent: 2 - - uid: 12235 + - uid: 13122 components: - type: Transform pos: 5.5,-91.5 parent: 2 - - uid: 12236 + - uid: 13123 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,3.5 parent: 2 - - uid: 12237 + - uid: 13124 components: - type: Transform pos: -13.5,-88.5 parent: 2 - - uid: 12238 + - uid: 13125 components: - type: Transform pos: -12.5,-88.5 parent: 2 - - uid: 12239 + - uid: 13126 components: - type: Transform pos: -11.5,-90.5 parent: 2 - - uid: 12240 + - uid: 13127 components: - type: Transform pos: -12.5,-90.5 parent: 2 - - uid: 12241 + - uid: 13128 components: - type: Transform pos: -13.5,-90.5 parent: 2 - - uid: 12249 + - uid: 13129 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-103.5 parent: 2 - - uid: 12250 + - uid: 13130 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-103.5 parent: 2 - - uid: 12251 + - uid: 13131 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-103.5 parent: 2 - - uid: 12257 + - uid: 13132 components: - type: Transform pos: 66.5,-52.5 parent: 2 - - uid: 12258 + - uid: 13133 components: - type: Transform pos: 65.5,-52.5 parent: 2 - - uid: 12259 + - uid: 13134 components: - type: Transform pos: -32.5,-29.5 parent: 2 - - uid: 12260 + - uid: 13135 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-87.5 parent: 2 - - uid: 12261 + - uid: 13136 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,2.5 parent: 2 - - uid: 12262 + - uid: 13137 components: - type: Transform pos: 106.5,-31.5 parent: 2 - - uid: 12263 + - uid: 13138 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-113.5 parent: 2 - - uid: 12264 + - uid: 13139 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-82.5 parent: 2 - - uid: 12265 + - uid: 13140 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-110.5 parent: 2 - - uid: 12266 + - uid: 13141 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-110.5 parent: 2 - - uid: 12267 + - uid: 13142 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-109.5 parent: 2 - - uid: 12268 + - uid: 13143 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-113.5 parent: 2 - - uid: 12269 + - uid: 13144 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-52.5 parent: 2 - - uid: 12270 + - uid: 13145 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,20.5 parent: 2 - - uid: 12271 + - uid: 13146 components: - type: Transform pos: 37.5,-50.5 parent: 2 - - uid: 12272 + - uid: 13147 components: - type: Transform pos: -55.5,-86.5 parent: 2 - - uid: 12273 + - uid: 13148 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,20.5 parent: 2 - - uid: 12274 + - uid: 13149 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-87.5 parent: 2 - - uid: 12275 + - uid: 13150 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-93.5 parent: 2 - - uid: 12276 + - uid: 13151 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-94.5 parent: 2 - - uid: 12277 + - uid: 13152 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-92.5 parent: 2 - - uid: 12279 + - uid: 13153 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-58.5 parent: 2 - - uid: 12280 + - uid: 13154 components: - type: Transform pos: 65.5,-56.5 parent: 2 - - uid: 12281 + - uid: 13155 components: - type: Transform pos: 65.5,-57.5 parent: 2 - - uid: 12282 + - uid: 13156 components: - type: Transform pos: 65.5,-58.5 parent: 2 - - uid: 12283 + - uid: 13157 components: - type: Transform pos: 65.5,-59.5 parent: 2 - - uid: 12284 + - uid: 13158 components: - type: Transform pos: 64.5,-58.5 parent: 2 - - uid: 12285 + - uid: 13159 components: - type: Transform pos: 64.5,-59.5 parent: 2 - - uid: 12286 + - uid: 13160 components: - type: Transform pos: 64.5,-60.5 parent: 2 - - uid: 12287 + - uid: 13161 components: - type: Transform pos: 63.5,-58.5 parent: 2 - - uid: 12288 + - uid: 13162 components: - type: Transform pos: 63.5,-59.5 parent: 2 - - uid: 12289 + - uid: 13163 components: - type: Transform pos: 62.5,-58.5 parent: 2 - - uid: 12290 + - uid: 13164 components: - type: Transform pos: 62.5,-59.5 parent: 2 - - uid: 12291 + - uid: 13165 components: - type: Transform pos: 65.5,-53.5 parent: 2 - - uid: 12292 + - uid: 13166 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,4.5 parent: 2 - - uid: 12295 + - uid: 13167 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-73.5 parent: 2 - - uid: 12296 + - uid: 13168 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-73.5 parent: 2 - - uid: 12297 + - uid: 13169 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,7.5 parent: 2 - - uid: 12298 + - uid: 13170 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,6.5 parent: 2 - - uid: 12299 + - uid: 13171 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,9.5 parent: 2 - - uid: 12300 + - uid: 13172 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-72.5 parent: 2 - - uid: 12301 + - uid: 13173 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-72.5 parent: 2 - - uid: 12302 + - uid: 13174 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-72.5 parent: 2 - - uid: 12303 + - uid: 13175 components: - type: Transform pos: 41.5,12.5 parent: 2 - - uid: 12305 + - uid: 13176 components: - type: Transform pos: 37.5,-46.5 parent: 2 - - uid: 12306 + - uid: 13177 components: - type: Transform pos: 37.5,-48.5 parent: 2 - - uid: 12307 + - uid: 13178 components: - type: Transform pos: 37.5,-47.5 parent: 2 - - uid: 12308 + - uid: 13179 components: - type: Transform pos: 37.5,-49.5 parent: 2 - - uid: 12309 + - uid: 13180 components: - type: Transform pos: 42.5,12.5 parent: 2 - - uid: 12310 + - uid: 13181 components: - type: Transform pos: 36.5,-50.5 parent: 2 - - uid: 12311 + - uid: 13182 components: - type: Transform pos: 36.5,-49.5 parent: 2 - - uid: 12312 + - uid: 13183 components: - type: Transform pos: 36.5,-48.5 parent: 2 - - uid: 12313 + - uid: 13184 components: - type: Transform pos: 36.5,-47.5 parent: 2 - - uid: 12314 + - uid: 13185 components: - type: Transform pos: 36.5,-46.5 parent: 2 - - uid: 12315 + - uid: 13186 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-50.5 parent: 2 - - uid: 12316 + - uid: 13187 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-49.5 parent: 2 - - uid: 12317 + - uid: 13188 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-48.5 parent: 2 - - uid: 12318 + - uid: 13189 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-47.5 parent: 2 - - uid: 12319 + - uid: 13190 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-46.5 parent: 2 - - uid: 12321 + - uid: 13191 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,-68.5 parent: 2 - - uid: 12326 + - uid: 13192 components: - type: Transform pos: 88.5,-26.5 parent: 2 - - uid: 12327 + - uid: 13193 components: - type: Transform pos: 89.5,-26.5 parent: 2 - - uid: 12328 + - uid: 13194 components: - type: Transform pos: 106.5,-28.5 parent: 2 - - uid: 12329 + - uid: 13195 components: - type: Transform pos: 86.5,-27.5 parent: 2 - - uid: 12330 + - uid: 13196 components: - type: Transform pos: 104.5,-26.5 parent: 2 - - uid: 12331 + - uid: 13197 components: - type: Transform pos: 86.5,-26.5 parent: 2 - - uid: 12332 + - uid: 13198 components: - type: Transform pos: 103.5,-26.5 parent: 2 - - uid: 12333 + - uid: 13199 components: - type: Transform pos: 102.5,-26.5 parent: 2 - - uid: 12334 + - uid: 13200 components: - type: Transform pos: 96.5,-26.5 parent: 2 - - uid: 12335 + - uid: 13201 components: - type: Transform pos: 100.5,-26.5 parent: 2 - - uid: 12336 + - uid: 13202 components: - type: Transform pos: 86.5,-28.5 parent: 2 - - uid: 12337 + - uid: 13203 components: - type: Transform pos: 95.5,-26.5 parent: 2 - - uid: 12338 + - uid: 13204 components: - type: Transform pos: 87.5,-26.5 parent: 2 - - uid: 12339 + - uid: 13205 components: - type: Transform pos: 94.5,-26.5 parent: 2 - - uid: 12340 + - uid: 13206 components: - type: Transform pos: 93.5,-26.5 parent: 2 - - uid: 12341 + - uid: 13207 components: - type: Transform pos: 86.5,-32.5 parent: 2 - - uid: 12342 + - uid: 13208 components: - type: Transform pos: 86.5,-33.5 parent: 2 - - uid: 12343 + - uid: 13209 components: - type: Transform pos: 86.5,-31.5 parent: 2 - - uid: 12344 + - uid: 13210 components: - type: Transform pos: 87.5,-36.5 parent: 2 - - uid: 12345 + - uid: 13211 components: - type: Transform pos: 86.5,-36.5 parent: 2 - - uid: 12346 + - uid: 13212 components: - type: Transform pos: 86.5,-34.5 parent: 2 - - uid: 12347 + - uid: 13213 components: - type: Transform pos: 103.5,-36.5 parent: 2 - - uid: 12348 + - uid: 13214 components: - type: Transform pos: 104.5,-36.5 parent: 2 - - uid: 12349 + - uid: 13215 components: - type: Transform pos: 100.5,-36.5 parent: 2 - - uid: 12350 + - uid: 13216 components: - type: Transform pos: 102.5,-36.5 parent: 2 - - uid: 12351 + - uid: 13217 components: - type: Transform pos: 96.5,-36.5 parent: 2 - - uid: 12352 + - uid: 13218 components: - type: Transform pos: 101.5,-36.5 parent: 2 - - uid: 12353 + - uid: 13219 components: - type: Transform pos: 94.5,-36.5 parent: 2 - - uid: 12354 + - uid: 13220 components: - type: Transform pos: 95.5,-36.5 parent: 2 - - uid: 12355 + - uid: 13221 components: - type: Transform pos: 93.5,-36.5 parent: 2 - - uid: 12356 + - uid: 13222 components: - type: Transform pos: 89.5,-36.5 parent: 2 - - uid: 12357 + - uid: 13223 components: - type: Transform pos: 106.5,-33.5 parent: 2 - - uid: 12358 + - uid: 13224 components: - type: Transform pos: 106.5,-34.5 parent: 2 - - uid: 12359 + - uid: 13225 components: - type: Transform pos: 106.5,-35.5 parent: 2 - - uid: 12360 + - uid: 13226 components: - type: Transform pos: 107.5,-27.5 parent: 2 - - uid: 12361 + - uid: 13227 components: - type: Transform pos: 107.5,-28.5 parent: 2 - - uid: 12362 + - uid: 13228 components: - type: Transform pos: 107.5,-29.5 parent: 2 - - uid: 12363 + - uid: 13229 components: - type: Transform pos: 107.5,-30.5 parent: 2 - - uid: 12364 + - uid: 13230 components: - type: Transform pos: 107.5,-31.5 parent: 2 - - uid: 12365 + - uid: 13231 components: - type: Transform pos: 107.5,-32.5 parent: 2 - - uid: 12366 + - uid: 13232 components: - type: Transform pos: 107.5,-33.5 parent: 2 - - uid: 12367 + - uid: 13233 components: - type: Transform pos: 107.5,-34.5 parent: 2 - - uid: 12368 + - uid: 13234 components: - type: Transform pos: 107.5,-35.5 parent: 2 - - uid: 12369 + - uid: 13235 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,-18.5 parent: 2 - - uid: 12370 + - uid: 13236 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,-18.5 parent: 2 - - uid: 12371 + - uid: 13237 components: - type: Transform rot: 3.141592653589793 rad pos: 107.5,-25.5 parent: 2 - - uid: 12372 + - uid: 13238 components: - type: Transform rot: 3.141592653589793 rad pos: 106.5,-25.5 parent: 2 - - uid: 12373 + - uid: 13239 components: - type: Transform rot: 3.141592653589793 rad pos: 106.5,-24.5 parent: 2 - - uid: 12374 + - uid: 13240 components: - type: Transform rot: 3.141592653589793 rad pos: 107.5,-24.5 parent: 2 - - uid: 12375 + - uid: 13241 components: - type: Transform rot: 3.141592653589793 rad pos: 106.5,-37.5 parent: 2 - - uid: 12376 + - uid: 13242 components: - type: Transform rot: 3.141592653589793 rad pos: 106.5,-38.5 parent: 2 - - uid: 12377 + - uid: 13243 components: - type: Transform rot: 3.141592653589793 rad pos: 107.5,-37.5 parent: 2 - - uid: 12378 + - uid: 13244 components: - type: Transform rot: 3.141592653589793 rad pos: 107.5,-38.5 parent: 2 - - uid: 12379 + - uid: 13245 components: - type: Transform rot: -1.5707963267948966 rad pos: 108.5,-18.5 parent: 2 - - uid: 12380 + - uid: 13246 components: - type: Transform pos: 108.5,-53.5 parent: 2 - - uid: 12381 + - uid: 13247 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-104.5 parent: 2 - - uid: 12382 + - uid: 13248 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-71.5 parent: 2 - - uid: 12383 + - uid: 13249 components: - type: Transform pos: -13.5,-93.5 parent: 2 - - uid: 12384 + - uid: 13250 components: - type: Transform pos: -12.5,-93.5 parent: 2 - - uid: 12385 + - uid: 13251 components: - type: Transform pos: -12.5,-94.5 parent: 2 - - uid: 12386 + - uid: 13252 components: - type: Transform pos: -11.5,-94.5 parent: 2 - - uid: 12387 + - uid: 13253 components: - type: Transform pos: -81.5,-39.5 parent: 2 - - uid: 12388 + - uid: 13254 components: - type: Transform pos: -81.5,-45.5 parent: 2 - - uid: 12389 + - uid: 13255 components: - type: Transform pos: -81.5,-47.5 parent: 2 - - uid: 12390 + - uid: 13256 components: - type: Transform pos: -32.5,-64.5 parent: 2 - - uid: 12391 + - uid: 13257 components: - type: Transform pos: -37.5,-17.5 parent: 2 - - uid: 12392 + - uid: 13258 components: - type: Transform pos: -35.5,-17.5 parent: 2 - - uid: 12393 + - uid: 13259 components: - type: Transform pos: -39.5,1.5 parent: 2 - - uid: 12394 + - uid: 13260 components: - type: Transform pos: -38.5,-17.5 parent: 2 - - uid: 12395 + - uid: 13261 components: - type: Transform pos: -39.5,4.5 parent: 2 - - uid: 12396 + - uid: 13262 components: - type: Transform pos: -36.5,-17.5 parent: 2 - - uid: 12397 + - uid: 13263 components: - type: Transform pos: -31.5,-68.5 parent: 2 - - uid: 12398 + - uid: 13264 components: - type: Transform pos: -31.5,-70.5 parent: 2 - - uid: 12399 + - uid: 13265 components: - type: Transform pos: -31.5,-69.5 parent: 2 - - uid: 12400 + - uid: 13266 components: - type: Transform pos: -32.5,-70.5 parent: 2 - - uid: 12401 + - uid: 13267 components: - type: Transform pos: -39.5,6.5 parent: 2 - - uid: 12402 + - uid: 13268 components: - type: Transform pos: -32.5,-62.5 parent: 2 - - uid: 12403 + - uid: 13269 components: - type: Transform pos: -32.5,-61.5 parent: 2 - - uid: 12404 + - uid: 13270 components: - type: Transform pos: -32.5,-63.5 parent: 2 - - uid: 12405 + - uid: 13271 components: - type: Transform pos: -39.5,2.5 parent: 2 - - uid: 12406 + - uid: 13272 components: - type: Transform pos: -39.5,3.5 parent: 2 - - uid: 12407 + - uid: 13273 components: - type: Transform pos: -32.5,-24.5 parent: 2 - - uid: 12408 + - uid: 13274 components: - type: Transform pos: -32.5,-28.5 parent: 2 - - uid: 12409 + - uid: 13275 components: - type: Transform pos: 20.5,5.5 parent: 2 - - uid: 12410 + - uid: 13276 components: - type: Transform pos: 20.5,6.5 parent: 2 - - uid: 12411 + - uid: 13277 components: - type: Transform pos: 20.5,4.5 parent: 2 - - uid: 12412 + - uid: 13278 components: - type: Transform pos: 20.5,2.5 parent: 2 - - uid: 12413 + - uid: 13279 components: - type: Transform pos: 20.5,3.5 parent: 2 - - uid: 12414 + - uid: 13280 components: - type: Transform pos: -32.5,-16.5 parent: 2 - - uid: 12415 + - uid: 13281 components: - type: Transform pos: -32.5,-15.5 parent: 2 - - uid: 12416 + - uid: 13282 components: - type: Transform pos: -32.5,-10.5 parent: 2 - - uid: 12417 + - uid: 13283 components: - type: Transform pos: -31.5,-7.5 parent: 2 - - uid: 12418 + - uid: 13284 components: - type: Transform pos: -30.5,-7.5 parent: 2 - - uid: 12419 + - uid: 13285 components: - type: Transform pos: -32.5,-14.5 parent: 2 - - uid: 12420 + - uid: 13286 components: - type: Transform pos: -32.5,-11.5 parent: 2 - - uid: 12421 + - uid: 13287 components: - type: Transform pos: -32.5,-13.5 parent: 2 - - uid: 12422 + - uid: 13288 components: - type: Transform pos: -32.5,-9.5 parent: 2 - - uid: 12423 + - uid: 13289 components: - type: Transform pos: -32.5,-8.5 parent: 2 - - uid: 12424 + - uid: 13290 components: - type: Transform pos: -32.5,-5.5 parent: 2 - - uid: 12425 + - uid: 13291 components: - type: Transform pos: -32.5,-6.5 parent: 2 - - uid: 12426 + - uid: 13292 components: - type: Transform pos: -32.5,-4.5 parent: 2 - - uid: 12427 + - uid: 13293 components: - type: Transform pos: -32.5,-2.5 parent: 2 - - uid: 12428 + - uid: 13294 components: - type: Transform pos: -32.5,-1.5 parent: 2 - - uid: 12429 + - uid: 13295 components: - type: Transform pos: -32.5,0.5 parent: 2 - - uid: 12430 + - uid: 13296 components: - type: Transform pos: -32.5,1.5 parent: 2 - - uid: 12431 + - uid: 13297 components: - type: Transform pos: -33.5,1.5 parent: 2 - - uid: 12432 + - uid: 13298 components: - type: Transform pos: -34.5,1.5 parent: 2 - - uid: 12433 + - uid: 13299 components: - type: Transform pos: -37.5,1.5 parent: 2 - - uid: 12434 + - uid: 13300 components: - type: Transform pos: -38.5,1.5 parent: 2 - - uid: 12435 + - uid: 13301 components: - type: Transform pos: -31.5,-65.5 parent: 2 - - uid: 12436 + - uid: 13302 components: - type: Transform pos: -32.5,-58.5 parent: 2 - - uid: 12437 + - uid: 13303 components: - type: Transform pos: -32.5,-57.5 parent: 2 - - uid: 12438 + - uid: 13304 components: - type: Transform pos: -32.5,-59.5 parent: 2 - - uid: 12439 + - uid: 13305 components: - type: Transform pos: -32.5,-3.5 parent: 2 - - uid: 12440 + - uid: 13306 components: - type: Transform pos: -35.5,1.5 parent: 2 - - uid: 12441 + - uid: 13307 components: - type: Transform pos: -31.5,-64.5 parent: 2 - - uid: 12442 + - uid: 13308 components: - type: Transform pos: -31.5,-67.5 parent: 2 - - uid: 12443 + - uid: 13309 components: - type: Transform pos: -32.5,-71.5 parent: 2 - - uid: 12444 + - uid: 13310 components: - type: Transform pos: -32.5,-72.5 parent: 2 - - uid: 12445 + - uid: 13311 components: - type: Transform pos: -32.5,-73.5 parent: 2 - - uid: 12446 + - uid: 13312 components: - type: Transform pos: -32.5,-75.5 parent: 2 - - uid: 12447 + - uid: 13313 components: - type: Transform pos: -32.5,-76.5 parent: 2 - - uid: 12448 + - uid: 13314 components: - type: Transform pos: -32.5,-77.5 parent: 2 - - uid: 12449 + - uid: 13315 components: - type: Transform pos: -33.5,-76.5 parent: 2 - - uid: 12450 + - uid: 13316 components: - type: Transform pos: -35.5,-76.5 parent: 2 - - uid: 12451 + - uid: 13317 components: - type: Transform pos: -36.5,-76.5 parent: 2 - - uid: 12452 + - uid: 13318 components: - type: Transform pos: -37.5,-76.5 parent: 2 - - uid: 12453 + - uid: 13319 components: - type: Transform pos: -38.5,-76.5 parent: 2 - - uid: 12454 + - uid: 13320 components: - type: Transform pos: -38.5,-79.5 parent: 2 - - uid: 12455 + - uid: 13321 components: - type: Transform pos: -38.5,-80.5 parent: 2 - - uid: 12456 + - uid: 13322 components: - type: Transform pos: -38.5,-82.5 parent: 2 - - uid: 12457 + - uid: 13323 components: - type: Transform pos: -38.5,-83.5 parent: 2 - - uid: 12458 + - uid: 13324 components: - type: Transform pos: -38.5,-84.5 parent: 2 - - uid: 12459 + - uid: 13325 components: - type: Transform pos: -38.5,-85.5 parent: 2 - - uid: 12460 + - uid: 13326 components: - type: Transform pos: -38.5,-88.5 parent: 2 - - uid: 12461 + - uid: 13327 components: - type: Transform pos: -38.5,-89.5 parent: 2 - - uid: 12462 + - uid: 13328 components: - type: Transform pos: -38.5,-90.5 parent: 2 - - uid: 12463 + - uid: 13329 components: - type: Transform pos: -38.5,-91.5 parent: 2 - - uid: 12464 + - uid: 13330 components: - type: Transform pos: -38.5,-92.5 parent: 2 - - uid: 12465 + - uid: 13331 components: - type: Transform pos: -31.5,-23.5 parent: 2 - - uid: 12466 + - uid: 13332 components: - type: Transform pos: -31.5,-22.5 parent: 2 - - uid: 12467 + - uid: 13333 components: - type: Transform pos: -31.5,-21.5 parent: 2 - - uid: 12468 + - uid: 13334 components: - type: Transform pos: -31.5,-20.5 parent: 2 - - uid: 12469 + - uid: 13335 components: - type: Transform pos: -31.5,-19.5 parent: 2 - - uid: 12470 + - uid: 13336 components: - type: Transform pos: -31.5,-17.5 parent: 2 - - uid: 12471 + - uid: 13337 components: - type: Transform pos: 19.5,6.5 parent: 2 - - uid: 12472 + - uid: 13338 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-102.5 parent: 2 - - uid: 12473 + - uid: 13339 components: - type: Transform pos: 20.5,11.5 parent: 2 - - uid: 12474 + - uid: 13340 components: - type: Transform pos: 21.5,11.5 parent: 2 - - uid: 12475 + - uid: 13341 components: - type: Transform pos: 21.5,12.5 parent: 2 - - uid: 12476 + - uid: 13342 components: - type: Transform pos: 21.5,13.5 parent: 2 - - uid: 12477 + - uid: 13343 components: - type: Transform pos: 21.5,14.5 parent: 2 - - uid: 12478 + - uid: 13344 components: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 12479 + - uid: 13345 components: - type: Transform pos: 21.5,16.5 parent: 2 - - uid: 12480 + - uid: 13346 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-97.5 parent: 2 - - uid: 12481 + - uid: 13347 components: - type: Transform pos: 23.5,16.5 parent: 2 - - uid: 12482 + - uid: 13348 components: - type: Transform pos: 26.5,16.5 parent: 2 - - uid: 12483 + - uid: 13349 components: - type: Transform pos: 27.5,16.5 parent: 2 - - uid: 12484 + - uid: 13350 components: - type: Transform pos: 28.5,16.5 parent: 2 - - uid: 12485 + - uid: 13351 components: - type: Transform pos: 29.5,16.5 parent: 2 - - uid: 12486 + - uid: 13352 components: - type: Transform pos: 30.5,16.5 parent: 2 - - uid: 12487 + - uid: 13353 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-95.5 parent: 2 - - uid: 12488 + - uid: 13354 components: - type: Transform pos: 31.5,17.5 parent: 2 - - uid: 12489 + - uid: 13355 components: - type: Transform pos: 32.5,17.5 parent: 2 - - uid: 12490 + - uid: 13356 components: - type: Transform pos: 33.5,17.5 parent: 2 - - uid: 12491 + - uid: 13357 components: - type: Transform pos: 35.5,17.5 parent: 2 - - uid: 12492 + - uid: 13358 components: - type: Transform pos: 36.5,17.5 parent: 2 - - uid: 12493 + - uid: 13359 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-103.5 parent: 2 - - uid: 12494 + - uid: 13360 components: - type: Transform pos: 39.5,17.5 parent: 2 - - uid: 12495 + - uid: 13361 components: - type: Transform pos: 40.5,16.5 parent: 2 - - uid: 12496 + - uid: 13362 components: - type: Transform pos: 40.5,15.5 parent: 2 - - uid: 12497 + - uid: 13363 components: - type: Transform pos: 40.5,14.5 parent: 2 - - uid: 12498 + - uid: 13364 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-99.5 parent: 2 - - uid: 12499 + - uid: 13365 components: - type: Transform pos: 40.5,11.5 parent: 2 - - uid: 12500 + - uid: 13366 components: - type: Transform pos: 40.5,8.5 parent: 2 - - uid: 12501 + - uid: 13367 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-86.5 parent: 2 - - uid: 12502 + - uid: 13368 components: - type: Transform pos: 40.5,-7.5 parent: 2 - - uid: 12503 + - uid: 13369 components: - type: Transform pos: 40.5,-8.5 parent: 2 - - uid: 12504 + - uid: 13370 components: - type: Transform pos: 40.5,-9.5 parent: 2 - - uid: 12505 + - uid: 13371 components: - type: Transform pos: 40.5,-10.5 parent: 2 - - uid: 12506 + - uid: 13372 components: - type: Transform pos: 40.5,-12.5 parent: 2 - - uid: 12507 + - uid: 13373 components: - type: Transform pos: 40.5,-13.5 parent: 2 - - uid: 12508 + - uid: 13374 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-98.5 parent: 2 - - uid: 12509 + - uid: 13375 components: - type: Transform pos: 40.5,-16.5 parent: 2 - - uid: 12510 + - uid: 13376 components: - type: Transform pos: 40.5,-17.5 parent: 2 - - uid: 12511 + - uid: 13377 components: - type: Transform pos: 40.5,-18.5 parent: 2 - - uid: 12512 + - uid: 13378 components: - type: Transform pos: 40.5,-19.5 parent: 2 - - uid: 12513 + - uid: 13379 components: - type: Transform pos: 40.5,-20.5 parent: 2 - - uid: 12514 + - uid: 13380 components: - type: Transform pos: 39.5,-20.5 parent: 2 - - uid: 12515 + - uid: 13381 components: - type: Transform pos: 38.5,-20.5 parent: 2 - - uid: 12516 + - uid: 13382 components: - type: Transform pos: 37.5,-20.5 parent: 2 - - uid: 12517 + - uid: 13383 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-96.5 parent: 2 - - uid: 12518 + - uid: 13384 components: - type: Transform pos: 35.5,-20.5 parent: 2 - - uid: 12519 + - uid: 13385 components: - type: Transform pos: 35.5,-21.5 parent: 2 - - uid: 12520 + - uid: 13386 components: - type: Transform pos: 35.5,-22.5 parent: 2 - - uid: 12521 + - uid: 13387 components: - type: Transform pos: 35.5,-23.5 parent: 2 - - uid: 12522 + - uid: 13388 components: - type: Transform pos: 35.5,-24.5 parent: 2 - - uid: 12523 + - uid: 13389 components: - type: Transform pos: 35.5,-25.5 parent: 2 - - uid: 12524 + - uid: 13390 components: - type: Transform pos: 35.5,-26.5 parent: 2 - - uid: 12525 + - uid: 13391 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-100.5 parent: 2 - - uid: 12526 + - uid: 13392 components: - type: Transform pos: 35.5,-28.5 parent: 2 - - uid: 12527 + - uid: 13393 components: - type: Transform pos: 35.5,-29.5 parent: 2 - - uid: 12528 + - uid: 13394 components: - type: Transform pos: 36.5,-29.5 parent: 2 - - uid: 12529 + - uid: 13395 components: - type: Transform pos: 37.5,-29.5 parent: 2 - - uid: 12530 + - uid: 13396 components: - type: Transform pos: 38.5,-29.5 parent: 2 - - uid: 12531 + - uid: 13397 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-101.5 parent: 2 - - uid: 12532 + - uid: 13398 components: - type: Transform pos: 40.5,-29.5 parent: 2 - - uid: 12533 + - uid: 13399 components: - type: Transform pos: 41.5,-29.5 parent: 2 - - uid: 12534 + - uid: 13400 components: - type: Transform pos: 47.5,-27.5 parent: 2 - - uid: 12535 + - uid: 13401 components: - type: Transform pos: 49.5,-27.5 parent: 2 - - uid: 12536 + - uid: 13402 components: - type: Transform pos: 49.5,-28.5 parent: 2 - - uid: 12537 + - uid: 13403 components: - type: Transform pos: 50.5,-28.5 parent: 2 - - uid: 12538 + - uid: 13404 components: - type: Transform pos: 51.5,-28.5 parent: 2 - - uid: 12539 + - uid: 13405 components: - type: Transform pos: 52.5,-28.5 parent: 2 - - uid: 12540 + - uid: 13406 components: - type: Transform pos: 53.5,-28.5 parent: 2 - - uid: 12541 + - uid: 13407 components: - type: Transform pos: 54.5,-28.5 parent: 2 - - uid: 12542 + - uid: 13408 components: - type: Transform pos: 56.5,-28.5 parent: 2 - - uid: 12543 + - uid: 13409 components: - type: Transform pos: 57.5,-28.5 parent: 2 - - uid: 12544 + - uid: 13410 components: - type: Transform pos: 57.5,-29.5 parent: 2 - - uid: 12545 + - uid: 13411 components: - type: Transform pos: 58.5,-29.5 parent: 2 - - uid: 12546 + - uid: 13412 components: - type: Transform pos: 60.5,-29.5 parent: 2 - - uid: 12547 + - uid: 13413 components: - type: Transform pos: 60.5,-27.5 parent: 2 - - uid: 12548 + - uid: 13414 components: - type: Transform pos: 60.5,-26.5 parent: 2 - - uid: 12549 + - uid: 13415 components: - type: Transform pos: 60.5,-25.5 parent: 2 - - uid: 12550 + - uid: 13416 components: - type: Transform pos: 60.5,-24.5 parent: 2 - - uid: 12551 + - uid: 13417 components: - type: Transform pos: 60.5,-23.5 parent: 2 - - uid: 12552 + - uid: 13418 components: - type: Transform pos: 60.5,-22.5 parent: 2 - - uid: 12553 + - uid: 13419 components: - type: Transform pos: 61.5,-22.5 parent: 2 - - uid: 12554 + - uid: 13420 components: - type: Transform pos: 62.5,-22.5 parent: 2 - - uid: 12555 + - uid: 13421 components: - type: Transform pos: 63.5,-22.5 parent: 2 - - uid: 12556 + - uid: 13422 components: - type: Transform pos: 66.5,-22.5 parent: 2 - - uid: 12557 + - uid: 13423 components: - type: Transform pos: 67.5,-22.5 parent: 2 - - uid: 12558 + - uid: 13424 components: - type: Transform pos: 68.5,-22.5 parent: 2 - - uid: 12559 + - uid: 13425 components: - type: Transform pos: 69.5,-22.5 parent: 2 - - uid: 12560 + - uid: 13426 components: - type: Transform pos: 69.5,-21.5 parent: 2 - - uid: 12561 + - uid: 13427 components: - type: Transform pos: 73.5,-21.5 parent: 2 - - uid: 12562 + - uid: 13428 components: - type: Transform pos: 74.5,-21.5 parent: 2 - - uid: 12563 + - uid: 13429 components: - type: Transform pos: 75.5,-21.5 parent: 2 - - uid: 12564 + - uid: 13430 components: - type: Transform pos: 76.5,-21.5 parent: 2 - - uid: 12565 + - uid: 13431 components: - type: Transform pos: 77.5,-21.5 parent: 2 - - uid: 12566 + - uid: 13432 components: - type: Transform pos: 79.5,-21.5 parent: 2 - - uid: 12567 + - uid: 13433 components: - type: Transform pos: 76.5,-22.5 parent: 2 - - uid: 12568 + - uid: 13434 components: - type: Transform pos: 76.5,-23.5 parent: 2 - - uid: 12569 + - uid: 13435 components: - type: Transform pos: 47.5,-44.5 parent: 2 - - uid: 12570 + - uid: 13436 components: - type: Transform pos: 49.5,-44.5 parent: 2 - - uid: 12571 + - uid: 13437 components: - type: Transform pos: 50.5,-44.5 parent: 2 - - uid: 12572 + - uid: 13438 components: - type: Transform pos: 52.5,-44.5 parent: 2 - - uid: 12573 + - uid: 13439 components: - type: Transform pos: 53.5,-44.5 parent: 2 - - uid: 12574 + - uid: 13440 components: - type: Transform pos: 54.5,-44.5 parent: 2 - - uid: 12575 + - uid: 13441 components: - type: Transform pos: 55.5,-44.5 parent: 2 - - uid: 12576 + - uid: 13442 components: - type: Transform pos: 62.5,-47.5 parent: 2 - - uid: 12577 + - uid: 13443 components: - type: Transform pos: 62.5,-48.5 parent: 2 - - uid: 12578 + - uid: 13444 components: - type: Transform pos: 62.5,-49.5 parent: 2 - - uid: 12579 + - uid: 13445 components: - type: Transform pos: 62.5,-50.5 parent: 2 - - uid: 12580 + - uid: 13446 components: - type: Transform pos: 62.5,-51.5 parent: 2 - - uid: 12581 + - uid: 13447 components: - type: Transform pos: 62.5,-53.5 parent: 2 - - uid: 12582 + - uid: 13448 components: - type: Transform pos: 62.5,-54.5 parent: 2 - - uid: 12583 + - uid: 13449 components: - type: Transform pos: 31.5,-71.5 parent: 2 - - uid: 12584 + - uid: 13450 components: - type: Transform pos: 31.5,-72.5 parent: 2 - - uid: 12585 + - uid: 13451 components: - type: Transform pos: 31.5,-73.5 parent: 2 - - uid: 12586 + - uid: 13452 components: - type: Transform pos: 31.5,-74.5 parent: 2 - - uid: 12587 + - uid: 13453 components: - type: Transform pos: 31.5,-75.5 parent: 2 - - uid: 12588 + - uid: 13454 components: - type: Transform pos: 33.5,-75.5 parent: 2 - - uid: 12589 + - uid: 13455 components: - type: Transform pos: 34.5,-75.5 parent: 2 - - uid: 12590 + - uid: 13456 components: - type: Transform pos: 37.5,-75.5 parent: 2 - - uid: 12591 + - uid: 13457 components: - type: Transform pos: 38.5,-75.5 parent: 2 - - uid: 12592 + - uid: 13458 components: - type: Transform pos: 39.5,-75.5 parent: 2 - - uid: 12593 + - uid: 13459 components: - type: Transform pos: 39.5,-74.5 parent: 2 - - uid: 12594 + - uid: 13460 components: - type: Transform pos: 39.5,-73.5 parent: 2 - - uid: 12595 + - uid: 13461 components: - type: Transform pos: 39.5,-70.5 parent: 2 - - uid: 12596 + - uid: 13462 components: - type: Transform pos: 39.5,-69.5 parent: 2 - - uid: 12597 + - uid: 13463 components: - type: Transform pos: 39.5,-68.5 parent: 2 - - uid: 12598 + - uid: 13464 components: - type: Transform pos: 40.5,-67.5 parent: 2 - - uid: 12599 + - uid: 13465 components: - type: Transform pos: 40.5,-66.5 parent: 2 - - uid: 12600 + - uid: 13466 components: - type: Transform pos: 40.5,-65.5 parent: 2 - - uid: 12601 + - uid: 13467 components: - type: Transform pos: 40.5,-64.5 parent: 2 - - uid: 12602 + - uid: 13468 components: - type: Transform pos: 40.5,-63.5 parent: 2 - - uid: 12603 + - uid: 13469 components: - type: Transform pos: 40.5,-60.5 parent: 2 - - uid: 12604 + - uid: 13470 components: - type: Transform pos: 40.5,-59.5 parent: 2 - - uid: 12605 + - uid: 13471 components: - type: Transform pos: 40.5,-58.5 parent: 2 - - uid: 12606 + - uid: 13472 components: - type: Transform pos: 40.5,-57.5 parent: 2 - - uid: 12607 + - uid: 13473 components: - type: Transform pos: 40.5,-56.5 parent: 2 - - uid: 12608 + - uid: 13474 components: - type: Transform pos: 40.5,-55.5 parent: 2 - - uid: 12609 + - uid: 13475 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-89.5 parent: 2 - - uid: 12610 + - uid: 13476 components: - type: Transform pos: 39.5,-54.5 parent: 2 - - uid: 12611 + - uid: 13477 components: - type: Transform pos: 38.5,-54.5 parent: 2 - - uid: 12612 + - uid: 13478 components: - type: Transform pos: 37.5,-54.5 parent: 2 - - uid: 12613 + - uid: 13479 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-87.5 parent: 2 - - uid: 12614 + - uid: 13480 components: - type: Transform pos: 35.5,-54.5 parent: 2 - - uid: 12615 + - uid: 13481 components: - type: Transform pos: 64.5,-46.5 parent: 2 - - uid: 12616 + - uid: 13482 components: - type: Transform pos: 66.5,-46.5 parent: 2 - - uid: 12617 + - uid: 13483 components: - type: Transform pos: 67.5,-46.5 parent: 2 - - uid: 12618 + - uid: 13484 components: - type: Transform pos: 67.5,-44.5 parent: 2 - - uid: 12619 + - uid: 13485 components: - type: Transform pos: 68.5,-44.5 parent: 2 - - uid: 12620 + - uid: 13486 components: - type: Transform pos: 69.5,-44.5 parent: 2 - - uid: 12621 + - uid: 13487 components: - type: Transform pos: 71.5,-44.5 parent: 2 - - uid: 12622 + - uid: 13488 components: - type: Transform pos: 72.5,-44.5 parent: 2 - - uid: 12623 + - uid: 13489 components: - type: Transform pos: 73.5,-44.5 parent: 2 - - uid: 12624 + - uid: 13490 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-75.5 parent: 2 - - uid: 12625 + - uid: 13491 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-76.5 parent: 2 - - uid: 12626 + - uid: 13492 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-77.5 parent: 2 - - uid: 12627 + - uid: 13493 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-78.5 parent: 2 - - uid: 12628 + - uid: 13494 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-79.5 parent: 2 - - uid: 12629 + - uid: 13495 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-94.5 parent: 2 - - uid: 12630 + - uid: 13496 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-82.5 parent: 2 - - uid: 12631 + - uid: 13497 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-68.5 parent: 2 - - uid: 12633 + - uid: 13498 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-84.5 parent: 2 - - uid: 12634 + - uid: 13499 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-84.5 parent: 2 - - uid: 12635 + - uid: 13500 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-84.5 parent: 2 - - uid: 12636 + - uid: 13501 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-84.5 parent: 2 - - uid: 12637 + - uid: 13502 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-84.5 parent: 2 - - uid: 12638 + - uid: 13503 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-88.5 parent: 2 - - uid: 12639 + - uid: 13504 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-38.5 parent: 2 - - uid: 12640 + - uid: 13505 components: - type: Transform pos: -58.5,-77.5 parent: 2 - - uid: 12641 + - uid: 13506 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-77.5 parent: 2 - - uid: 12642 + - uid: 13507 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-77.5 parent: 2 - - uid: 12643 + - uid: 13508 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-77.5 parent: 2 - - uid: 12644 + - uid: 13509 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-78.5 parent: 2 - - uid: 12645 + - uid: 13510 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-78.5 parent: 2 - - uid: 12646 + - uid: 13511 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-78.5 parent: 2 - - uid: 12647 + - uid: 13512 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-78.5 parent: 2 - - uid: 12648 + - uid: 13513 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-78.5 parent: 2 - - uid: 12649 + - uid: 13514 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-78.5 parent: 2 - - uid: 12650 + - uid: 13515 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-78.5 parent: 2 - - uid: 12651 + - uid: 13516 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-79.5 parent: 2 - - uid: 12652 + - uid: 13517 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-80.5 parent: 2 - - uid: 12653 + - uid: 13518 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-81.5 parent: 2 - - uid: 12654 + - uid: 13519 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 - - uid: 12655 + - uid: 13520 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-86.5 parent: 2 - - uid: 12656 + - uid: 13521 components: - type: Transform pos: 34.5,-80.5 parent: 2 - - uid: 12657 + - uid: 13522 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-57.5 parent: 2 - - uid: 12658 + - uid: 13523 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-61.5 parent: 2 - - uid: 12659 + - uid: 13524 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-47.5 parent: 2 - - uid: 12661 + - uid: 13525 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-44.5 parent: 2 - - uid: 12662 + - uid: 13526 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-47.5 parent: 2 - - uid: 12663 + - uid: 13527 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-47.5 parent: 2 - - uid: 12664 + - uid: 13528 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-47.5 parent: 2 - - uid: 12665 + - uid: 13529 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-47.5 parent: 2 - - uid: 12666 + - uid: 13530 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-47.5 parent: 2 - - uid: 12667 + - uid: 13531 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-77.5 parent: 2 - - uid: 12668 + - uid: 13532 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-78.5 parent: 2 - - uid: 12670 + - uid: 13533 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-20.5 parent: 2 - - uid: 12671 + - uid: 13534 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-19.5 parent: 2 - - uid: 12672 + - uid: 13535 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-17.5 parent: 2 - - uid: 12673 + - uid: 13536 components: - type: Transform pos: 70.5,-21.5 parent: 2 - - uid: 12674 + - uid: 13537 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-46.5 parent: 2 - - uid: 12675 + - uid: 13538 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-107.5 parent: 2 - - uid: 12676 + - uid: 13539 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,16.5 parent: 2 - - uid: 12677 + - uid: 13540 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-80.5 parent: 2 - - uid: 12678 + - uid: 13541 components: - type: Transform pos: -42.5,-88.5 parent: 2 - - uid: 12679 + - uid: 13542 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,7.5 parent: 2 - - uid: 12680 + - uid: 13543 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,8.5 parent: 2 - - uid: 12681 + - uid: 13544 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,8.5 parent: 2 - - uid: 12682 + - uid: 13545 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,8.5 parent: 2 - - uid: 12683 + - uid: 13546 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,8.5 parent: 2 - - uid: 12684 + - uid: 13547 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,8.5 parent: 2 - - uid: 12685 + - uid: 13548 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,8.5 parent: 2 - - uid: 12686 + - uid: 13549 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,8.5 parent: 2 - - uid: 12687 + - uid: 13550 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,8.5 parent: 2 - - uid: 12688 + - uid: 13551 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,8.5 parent: 2 - - uid: 12690 + - uid: 13552 components: - type: Transform pos: -37.5,8.5 parent: 2 - - uid: 12691 + - uid: 13553 components: - type: Transform pos: -36.5,8.5 parent: 2 - - uid: 12692 + - uid: 13554 components: - type: Transform pos: -33.5,-2.5 parent: 2 - - uid: 12693 + - uid: 13555 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-34.5 parent: 2 - - uid: 12694 + - uid: 13556 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-32.5 parent: 2 - - uid: 12695 + - uid: 13557 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-29.5 parent: 2 - - uid: 12696 + - uid: 13558 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-28.5 parent: 2 - - uid: 12697 + - uid: 13559 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-27.5 parent: 2 - - uid: 12698 + - uid: 13560 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-53.5 parent: 2 - - uid: 12699 + - uid: 13561 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-53.5 parent: 2 - - uid: 12700 + - uid: 13562 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-62.5 parent: 2 - - uid: 12701 + - uid: 13563 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-60.5 parent: 2 - - uid: 12702 + - uid: 13564 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-60.5 parent: 2 - - uid: 12703 + - uid: 13565 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-60.5 parent: 2 - - uid: 12704 + - uid: 13566 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-60.5 parent: 2 - - uid: 12705 + - uid: 13567 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-60.5 parent: 2 - - uid: 12706 + - uid: 13568 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-91.5 parent: 2 - - uid: 12707 + - uid: 13569 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-58.5 parent: 2 - - uid: 12708 + - uid: 13570 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-57.5 parent: 2 - - uid: 12709 + - uid: 13571 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-56.5 parent: 2 - - uid: 12710 + - uid: 13572 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-55.5 parent: 2 - - uid: 12711 + - uid: 13573 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-53.5 parent: 2 - - uid: 12712 + - uid: 13574 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-52.5 parent: 2 - - uid: 12713 + - uid: 13575 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-52.5 parent: 2 - - uid: 12714 + - uid: 13576 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-52.5 parent: 2 - - uid: 12715 + - uid: 13577 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-52.5 parent: 2 - - uid: 12716 + - uid: 13578 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-52.5 parent: 2 - - uid: 12717 + - uid: 13579 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-51.5 parent: 2 - - uid: 12718 + - uid: 13580 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-50.5 parent: 2 - - uid: 12719 + - uid: 13581 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-48.5 parent: 2 - - uid: 12720 + - uid: 13582 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-47.5 parent: 2 - - uid: 12721 + - uid: 13583 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-46.5 parent: 2 - - uid: 12722 + - uid: 13584 components: - type: Transform pos: -58.5,-52.5 parent: 2 - - uid: 12723 + - uid: 13585 components: - type: Transform pos: -57.5,-52.5 parent: 2 - - uid: 12724 + - uid: 13586 components: - type: Transform pos: -56.5,-52.5 parent: 2 - - uid: 12725 + - uid: 13587 components: - type: Transform pos: -54.5,-52.5 parent: 2 - - uid: 12726 + - uid: 13588 components: - type: Transform pos: -53.5,-52.5 parent: 2 - - uid: 12727 + - uid: 13589 components: - type: Transform pos: -52.5,-52.5 parent: 2 - - uid: 12728 + - uid: 13590 components: - type: Transform pos: -49.5,-52.5 parent: 2 - - uid: 12729 + - uid: 13591 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-81.5 parent: 2 - - uid: 12730 + - uid: 13592 components: - type: Transform pos: -41.5,-88.5 parent: 2 - - uid: 12731 + - uid: 13593 components: - type: Transform pos: -41.5,-92.5 parent: 2 - - uid: 12732 + - uid: 13594 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-92.5 parent: 2 - - uid: 12733 + - uid: 13595 components: - type: Transform pos: 79.5,-23.5 parent: 2 - - uid: 12734 + - uid: 13596 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-84.5 parent: 2 - - uid: 12735 + - uid: 13597 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-85.5 parent: 2 - - uid: 12736 + - uid: 13598 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-86.5 parent: 2 - - uid: 12737 + - uid: 13599 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-87.5 parent: 2 - - uid: 12738 + - uid: 13600 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-85.5 parent: 2 - - uid: 12739 + - uid: 13601 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-84.5 parent: 2 - - uid: 12740 + - uid: 13602 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-82.5 parent: 2 - - uid: 12741 + - uid: 13603 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-81.5 parent: 2 - - uid: 12742 + - uid: 13604 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-80.5 parent: 2 - - uid: 12743 + - uid: 13605 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-80.5 parent: 2 - - uid: 12744 + - uid: 13606 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-80.5 parent: 2 - - uid: 12745 + - uid: 13607 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-80.5 parent: 2 - - uid: 12746 + - uid: 13608 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-79.5 parent: 2 - - uid: 12747 + - uid: 13609 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-87.5 parent: 2 - - uid: 12748 + - uid: 13610 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-88.5 parent: 2 - - uid: 12749 + - uid: 13611 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-89.5 parent: 2 - - uid: 12750 + - uid: 13612 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-90.5 parent: 2 - - uid: 12751 + - uid: 13613 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-94.5 parent: 2 - - uid: 12752 + - uid: 13614 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-94.5 parent: 2 - - uid: 12753 + - uid: 13615 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-94.5 parent: 2 - - uid: 12754 + - uid: 13616 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-94.5 parent: 2 - - uid: 12755 + - uid: 13617 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-94.5 parent: 2 - - uid: 12756 + - uid: 13618 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-94.5 parent: 2 - - uid: 12757 + - uid: 13619 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-94.5 parent: 2 - - uid: 12758 + - uid: 13620 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-94.5 parent: 2 - - uid: 12759 + - uid: 13621 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-94.5 parent: 2 - - uid: 12760 + - uid: 13622 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-94.5 parent: 2 - - uid: 12761 + - uid: 13623 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-94.5 parent: 2 - - uid: 12762 + - uid: 13624 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-93.5 parent: 2 - - uid: 12763 + - uid: 13625 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-83.5 parent: 2 - - uid: 12764 + - uid: 13626 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-82.5 parent: 2 - - uid: 12765 + - uid: 13627 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-81.5 parent: 2 - - uid: 12766 + - uid: 13628 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-80.5 parent: 2 - - uid: 12767 + - uid: 13629 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-76.5 parent: 2 - - uid: 12768 + - uid: 13630 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-75.5 parent: 2 - - uid: 12769 + - uid: 13631 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-78.5 parent: 2 - - uid: 12770 + - uid: 13632 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-78.5 parent: 2 - - uid: 12771 + - uid: 13633 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-78.5 parent: 2 - - uid: 12772 + - uid: 13634 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-78.5 parent: 2 - - uid: 12773 + - uid: 13635 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-78.5 parent: 2 - - uid: 12774 + - uid: 13636 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-78.5 parent: 2 - - uid: 12775 + - uid: 13637 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-78.5 parent: 2 - - uid: 12776 + - uid: 13638 components: - type: Transform pos: -37.5,-92.5 parent: 2 - - uid: 12777 + - uid: 13639 components: - type: Transform pos: -39.5,-93.5 parent: 2 - - uid: 12778 + - uid: 13640 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,8.5 parent: 2 - - uid: 12779 + - uid: 13641 components: - type: Transform pos: 33.5,-23.5 parent: 2 - - uid: 12780 + - uid: 13642 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,2.5 parent: 2 - - uid: 12781 + - uid: 13643 components: - type: Transform pos: -49.5,-90.5 parent: 2 - - uid: 12782 + - uid: 13644 components: - type: Transform pos: -49.5,-89.5 parent: 2 - - uid: 12783 + - uid: 13645 components: - type: Transform pos: -46.5,-88.5 parent: 2 - - uid: 12784 + - uid: 13646 components: - type: Transform pos: -46.5,-89.5 parent: 2 - - uid: 12785 + - uid: 13647 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-3.5 parent: 2 - - uid: 12786 + - uid: 13648 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-1.5 parent: 2 - - uid: 12787 + - uid: 13649 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-0.5 parent: 2 - - uid: 12788 + - uid: 13650 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,0.5 parent: 2 - - uid: 12789 + - uid: 13651 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,9.5 parent: 2 - - uid: 12790 + - uid: 13652 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,9.5 parent: 2 - - uid: 12791 + - uid: 13653 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,9.5 parent: 2 - - uid: 12792 + - uid: 13654 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-29.5 parent: 2 - - uid: 12793 + - uid: 13655 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-29.5 parent: 2 - - uid: 12794 + - uid: 13656 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-93.5 parent: 2 - - uid: 12795 + - uid: 13657 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-29.5 parent: 2 - - uid: 12796 + - uid: 13658 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-29.5 parent: 2 - - uid: 12797 + - uid: 13659 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-29.5 parent: 2 - - uid: 12798 + - uid: 13660 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-31.5 parent: 2 - - uid: 12799 + - uid: 13661 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-30.5 parent: 2 - - uid: 12800 + - uid: 13662 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-29.5 parent: 2 - - uid: 12801 + - uid: 13663 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-28.5 parent: 2 - - uid: 12802 + - uid: 13664 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-27.5 parent: 2 - - uid: 12803 + - uid: 13665 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-26.5 parent: 2 - - uid: 12804 + - uid: 13666 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-25.5 parent: 2 - - uid: 12805 + - uid: 13667 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-24.5 parent: 2 - - uid: 12806 + - uid: 13668 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-23.5 parent: 2 - - uid: 12807 + - uid: 13669 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-21.5 parent: 2 - - uid: 12808 + - uid: 13670 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-21.5 parent: 2 - - uid: 12809 + - uid: 13671 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-21.5 parent: 2 - - uid: 12810 + - uid: 13672 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-21.5 parent: 2 - - uid: 12811 + - uid: 13673 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-21.5 parent: 2 - - uid: 12812 + - uid: 13674 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-20.5 parent: 2 - - uid: 12813 + - uid: 13675 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-18.5 parent: 2 - - uid: 12814 + - uid: 13676 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-17.5 parent: 2 - - uid: 12815 + - uid: 13677 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-15.5 parent: 2 - - uid: 12816 + - uid: 13678 components: - type: Transform pos: -70.5,-29.5 parent: 2 - - uid: 12817 + - uid: 13679 components: - type: Transform pos: -70.5,-30.5 parent: 2 - - uid: 12818 + - uid: 13680 components: - type: Transform pos: -70.5,-32.5 parent: 2 - - uid: 12819 + - uid: 13681 components: - type: Transform pos: -70.5,-33.5 parent: 2 - - uid: 12820 + - uid: 13682 components: - type: Transform pos: -71.5,-33.5 parent: 2 - - uid: 12821 + - uid: 13683 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-88.5 parent: 2 - - uid: 12822 + - uid: 13684 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-88.5 parent: 2 - - uid: 12823 + - uid: 13685 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-88.5 parent: 2 - - uid: 12824 + - uid: 13686 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-95.5 parent: 2 - - uid: 12825 + - uid: 13687 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-95.5 parent: 2 - - uid: 12826 + - uid: 13688 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-95.5 parent: 2 - - uid: 12827 + - uid: 13689 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-95.5 parent: 2 - - uid: 12828 + - uid: 13690 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-94.5 parent: 2 - - uid: 12829 + - uid: 13691 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-93.5 parent: 2 - - uid: 12830 + - uid: 13692 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-92.5 parent: 2 - - uid: 12831 + - uid: 13693 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-101.5 parent: 2 - - uid: 12832 + - uid: 13694 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-101.5 parent: 2 - - uid: 12833 + - uid: 13695 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-101.5 parent: 2 - - uid: 12834 + - uid: 13696 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-98.5 parent: 2 - - uid: 12835 + - uid: 13697 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-98.5 parent: 2 - - uid: 12836 + - uid: 13698 components: - type: Transform pos: 51.5,-100.5 parent: 2 - - uid: 12837 + - uid: 13699 components: - type: Transform pos: 51.5,-99.5 parent: 2 - - uid: 12838 + - uid: 13700 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-95.5 parent: 2 - - uid: 12839 + - uid: 13701 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-95.5 parent: 2 - - uid: 12840 + - uid: 13702 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-98.5 parent: 2 - - uid: 12841 + - uid: 13703 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-98.5 parent: 2 - - uid: 12842 + - uid: 13704 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-99.5 parent: 2 - - uid: 12843 + - uid: 13705 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-101.5 parent: 2 - - uid: 12844 + - uid: 13706 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-100.5 parent: 2 - - uid: 12845 + - uid: 13707 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-101.5 parent: 2 - - uid: 12846 + - uid: 13708 components: - type: Transform pos: 30.5,19.5 parent: 2 - - uid: 12847 + - uid: 13709 components: - type: Transform pos: 30.5,20.5 parent: 2 - - uid: 12848 + - uid: 13710 components: - type: Transform pos: 30.5,21.5 parent: 2 - - uid: 12849 + - uid: 13711 components: - type: Transform pos: 30.5,22.5 parent: 2 - - uid: 12850 + - uid: 13712 components: - type: Transform pos: 30.5,23.5 parent: 2 - - uid: 12851 + - uid: 13713 components: - type: Transform pos: 30.5,24.5 parent: 2 - - uid: 12852 + - uid: 13714 components: - type: Transform pos: 30.5,25.5 parent: 2 - - uid: 12853 + - uid: 13715 components: - type: Transform pos: 31.5,25.5 parent: 2 - - uid: 12854 + - uid: 13716 components: - type: Transform pos: 32.5,25.5 parent: 2 - - uid: 12855 + - uid: 13717 components: - type: Transform pos: 14.5,-93.5 parent: 2 - - uid: 12856 + - uid: 13718 components: - type: Transform pos: 35.5,25.5 parent: 2 - - uid: 12857 + - uid: 13719 components: - type: Transform pos: 36.5,25.5 parent: 2 - - uid: 12858 + - uid: 13720 components: - type: Transform pos: 37.5,25.5 parent: 2 - - uid: 12859 + - uid: 13721 components: - type: Transform pos: 38.5,25.5 parent: 2 - - uid: 12860 + - uid: 13722 components: - type: Transform pos: 39.5,25.5 parent: 2 - - uid: 12861 + - uid: 13723 components: - type: Transform pos: 40.5,25.5 parent: 2 - - uid: 12862 + - uid: 13724 components: - type: Transform pos: 41.5,25.5 parent: 2 - - uid: 12863 + - uid: 13725 components: - type: Transform pos: 41.5,23.5 parent: 2 - - uid: 12864 + - uid: 13726 components: - type: Transform pos: 41.5,22.5 parent: 2 - - uid: 12865 + - uid: 13727 components: - type: Transform pos: 41.5,21.5 parent: 2 - - uid: 12866 + - uid: 13728 components: - type: Transform pos: 15.5,-93.5 parent: 2 - - uid: 12867 + - uid: 13729 components: - type: Transform pos: 41.5,19.5 parent: 2 - - uid: 12868 + - uid: 13730 components: - type: Transform pos: 41.5,18.5 parent: 2 - - uid: 12869 + - uid: 13731 components: - type: Transform pos: 41.5,17.5 parent: 2 - - uid: 12870 + - uid: 13732 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-106.5 parent: 2 - - uid: 12871 + - uid: 13733 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-90.5 parent: 2 - - uid: 12872 + - uid: 13734 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-92.5 parent: 2 - - uid: 12873 + - uid: 13735 components: - type: Transform pos: 9.5,-93.5 parent: 2 - - uid: 12874 + - uid: 13736 components: - type: Transform pos: 15.5,-92.5 parent: 2 - - uid: 12875 + - uid: 13737 components: - type: Transform pos: 14.5,-92.5 parent: 2 - - uid: 12876 + - uid: 13738 components: - type: Transform pos: 13.5,-92.5 parent: 2 - - uid: 12877 + - uid: 13739 components: - type: Transform pos: 11.5,-92.5 parent: 2 - - uid: 12878 + - uid: 13740 components: - type: Transform pos: 10.5,-92.5 parent: 2 - - uid: 12879 + - uid: 13741 components: - type: Transform pos: 9.5,-92.5 parent: 2 - - uid: 12880 + - uid: 13742 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-100.5 parent: 2 - - uid: 12881 + - uid: 13743 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-100.5 parent: 2 - - uid: 12882 + - uid: 13744 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-100.5 parent: 2 - - uid: 12883 + - uid: 13745 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-100.5 parent: 2 - - uid: 12884 + - uid: 13746 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-98.5 parent: 2 - - uid: 12885 + - uid: 13747 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-98.5 parent: 2 - - uid: 12886 + - uid: 13748 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-98.5 parent: 2 - - uid: 12887 + - uid: 13749 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-98.5 parent: 2 - - uid: 12888 + - uid: 13750 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-96.5 parent: 2 - - uid: 12889 + - uid: 13751 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-96.5 parent: 2 - - uid: 12890 + - uid: 13752 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-96.5 parent: 2 - - uid: 12891 + - uid: 13753 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-96.5 parent: 2 - - uid: 12892 + - uid: 13754 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-87.5 parent: 2 - - uid: 12893 + - uid: 13755 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-85.5 parent: 2 - - uid: 12894 + - uid: 13756 components: - type: Transform pos: -39.5,9.5 parent: 2 - - uid: 12895 + - uid: 13757 components: - type: Transform pos: -39.5,10.5 parent: 2 - - uid: 12896 + - uid: 13758 components: - type: Transform pos: -43.5,21.5 parent: 2 - - uid: 12897 + - uid: 13759 components: - type: Transform pos: -51.5,21.5 parent: 2 - - uid: 12898 + - uid: 13760 components: - type: Transform pos: -49.5,21.5 parent: 2 - - uid: 12899 + - uid: 13761 components: - type: Transform pos: -41.5,21.5 parent: 2 - - uid: 12900 + - uid: 13762 components: - type: Transform pos: -24.5,15.5 parent: 2 - - uid: 12901 + - uid: 13763 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-30.5 parent: 2 - - uid: 12902 + - uid: 13764 components: - type: Transform pos: -39.5,11.5 parent: 2 - - uid: 12903 + - uid: 13765 components: - type: Transform pos: -38.5,11.5 parent: 2 - - uid: 12904 + - uid: 13766 components: - type: Transform pos: -37.5,11.5 parent: 2 - - uid: 12905 + - uid: 13767 components: - type: Transform pos: -36.5,11.5 parent: 2 - - uid: 12906 + - uid: 13768 components: - type: Transform pos: -34.5,12.5 parent: 2 - - uid: 12907 + - uid: 13769 components: - type: Transform pos: -34.5,13.5 parent: 2 - - uid: 12908 + - uid: 13770 components: - type: Transform pos: -34.5,14.5 parent: 2 - - uid: 12909 + - uid: 13771 components: - type: Transform pos: -34.5,15.5 parent: 2 - - uid: 12910 + - uid: 13772 components: - type: Transform pos: -34.5,16.5 parent: 2 - - uid: 12911 + - uid: 13773 components: - type: Transform pos: -33.5,16.5 parent: 2 - - uid: 12912 + - uid: 13774 components: - type: Transform pos: -32.5,16.5 parent: 2 - - uid: 12913 + - uid: 13775 components: - type: Transform pos: -31.5,16.5 parent: 2 - - uid: 12914 + - uid: 13776 components: - type: Transform pos: -28.5,16.5 parent: 2 - - uid: 12915 + - uid: 13777 components: - type: Transform pos: -27.5,16.5 parent: 2 - - uid: 12916 + - uid: 13778 components: - type: Transform pos: -26.5,16.5 parent: 2 - - uid: 12917 + - uid: 13779 components: - type: Transform pos: -24.5,16.5 parent: 2 - - uid: 12918 + - uid: 13780 components: - type: Transform pos: -23.5,15.5 parent: 2 - - uid: 12919 + - uid: 13781 components: - type: Transform pos: -22.5,15.5 parent: 2 - - uid: 12920 + - uid: 13782 components: - type: Transform pos: -21.5,15.5 parent: 2 - - uid: 12921 + - uid: 13783 components: - type: Transform pos: -19.5,15.5 parent: 2 - - uid: 12922 + - uid: 13784 components: - type: Transform pos: -18.5,15.5 parent: 2 - - uid: 12923 + - uid: 13785 components: - type: Transform pos: -17.5,15.5 parent: 2 - - uid: 12924 + - uid: 13786 components: - type: Transform pos: -13.5,14.5 parent: 2 - - uid: 12925 + - uid: 13787 components: - type: Transform pos: -17.5,14.5 parent: 2 - - uid: 12926 + - uid: 13788 components: - type: Transform pos: -17.5,13.5 parent: 2 - - uid: 12927 + - uid: 13789 components: - type: Transform pos: -16.5,13.5 parent: 2 - - uid: 12928 + - uid: 13790 components: - type: Transform pos: -14.5,13.5 parent: 2 - - uid: 12929 + - uid: 13791 components: - type: Transform pos: -13.5,13.5 parent: 2 - - uid: 12930 + - uid: 13792 components: - type: Transform pos: -64.5,-13.5 parent: 2 - - uid: 12931 + - uid: 13793 components: - type: Transform pos: -64.5,-12.5 parent: 2 - - uid: 12932 + - uid: 13794 components: - type: Transform pos: -64.5,-11.5 parent: 2 - - uid: 12933 + - uid: 13795 components: - type: Transform pos: -64.5,-10.5 parent: 2 - - uid: 12934 + - uid: 13796 components: - type: Transform pos: -64.5,-9.5 parent: 2 - - uid: 12935 + - uid: 13797 components: - type: Transform pos: -64.5,-7.5 parent: 2 - - uid: 12936 + - uid: 13798 components: - type: Transform pos: -64.5,-6.5 parent: 2 - - uid: 12937 + - uid: 13799 components: - type: Transform pos: -63.5,-6.5 parent: 2 - - uid: 12938 + - uid: 13800 components: - type: Transform pos: -62.5,-6.5 parent: 2 - - uid: 12939 + - uid: 13801 components: - type: Transform pos: -61.5,-6.5 parent: 2 - - uid: 12940 + - uid: 13802 components: - type: Transform pos: -60.5,-6.5 parent: 2 - - uid: 12941 + - uid: 13803 components: - type: Transform pos: -58.5,-6.5 parent: 2 - - uid: 12942 + - uid: 13804 components: - type: Transform pos: -57.5,-6.5 parent: 2 - - uid: 12943 + - uid: 13805 components: - type: Transform pos: -57.5,-5.5 parent: 2 - - uid: 12944 + - uid: 13806 components: - type: Transform pos: 74.5,-20.5 parent: 2 - - uid: 12945 + - uid: 13807 components: - type: Transform pos: 74.5,-19.5 parent: 2 - - uid: 12946 + - uid: 13808 components: - type: Transform pos: 74.5,-17.5 parent: 2 - - uid: 12947 + - uid: 13809 components: - type: Transform pos: 43.5,18.5 parent: 2 - - uid: 12948 + - uid: 13810 components: - type: Transform pos: 44.5,18.5 parent: 2 - - uid: 12949 + - uid: 13811 components: - type: Transform pos: 45.5,18.5 parent: 2 - - uid: 12951 + - uid: 13812 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-87.5 parent: 2 - - uid: 12952 + - uid: 13813 components: - type: Transform pos: 22.5,19.5 parent: 2 - - uid: 12953 + - uid: 13814 components: - type: Transform pos: -56.5,-86.5 parent: 2 - - uid: 12954 + - uid: 13815 components: - type: Transform pos: -57.5,-86.5 parent: 2 - - uid: 12958 + - uid: 13816 components: - type: Transform pos: 106.5,-43.5 parent: 2 - - uid: 12959 + - uid: 13817 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-74.5 parent: 2 - - uid: 12960 + - uid: 13818 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-75.5 parent: 2 - - uid: 12961 + - uid: 13819 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-76.5 parent: 2 - - uid: 12962 + - uid: 13820 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-76.5 parent: 2 - - uid: 12963 + - uid: 13821 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-77.5 parent: 2 - - uid: 12964 + - uid: 13822 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-78.5 parent: 2 - - uid: 12965 + - uid: 13823 components: - type: Transform pos: 63.5,-76.5 parent: 2 - - uid: 12966 + - uid: 13824 components: - type: Transform pos: 62.5,-76.5 parent: 2 - - uid: 12967 + - uid: 13825 components: - type: Transform pos: 62.5,-77.5 parent: 2 - - uid: 12968 + - uid: 13826 components: - type: Transform pos: 62.5,-78.5 parent: 2 - - uid: 12969 + - uid: 13827 components: - type: Transform pos: 61.5,-79.5 parent: 2 - - uid: 12970 + - uid: 13828 components: - type: Transform pos: 61.5,-80.5 parent: 2 - - uid: 12971 + - uid: 13829 components: - type: Transform pos: 61.5,-81.5 parent: 2 - - uid: 12972 + - uid: 13830 components: - type: Transform pos: 60.5,-81.5 parent: 2 - - uid: 12973 + - uid: 13831 components: - type: Transform pos: 60.5,-82.5 parent: 2 - - uid: 12974 + - uid: 13832 components: - type: Transform pos: 60.5,-83.5 parent: 2 - - uid: 12975 + - uid: 13833 components: - type: Transform pos: 60.5,-84.5 parent: 2 - - uid: 12976 + - uid: 13834 components: - type: Transform pos: 60.5,-85.5 parent: 2 - - uid: 12977 + - uid: 13835 components: - type: Transform pos: 85.5,-15.5 parent: 2 - - uid: 12978 + - uid: 13836 components: - type: Transform pos: 85.5,-16.5 parent: 2 - - uid: 12979 + - uid: 13837 components: - type: Transform pos: 85.5,-17.5 parent: 2 - - uid: 12980 + - uid: 13838 components: - type: Transform pos: 85.5,-18.5 parent: 2 - - uid: 12981 + - uid: 13839 components: - type: Transform pos: 86.5,-18.5 parent: 2 - - uid: 12982 + - uid: 13840 components: - type: Transform pos: 87.5,-18.5 parent: 2 - - uid: 12983 + - uid: 13841 components: - type: Transform pos: 88.5,-18.5 parent: 2 - - uid: 12984 + - uid: 13842 components: - type: Transform pos: 89.5,-18.5 parent: 2 - - uid: 12985 + - uid: 13843 components: - type: Transform pos: 85.5,-14.5 parent: 2 - - uid: 12986 + - uid: 13844 components: - type: Transform pos: 86.5,-14.5 parent: 2 - - uid: 12987 + - uid: 13845 components: - type: Transform pos: 86.5,-13.5 parent: 2 - - uid: 13007 + - uid: 13846 components: - type: Transform pos: 48.5,25.5 parent: 2 - - uid: 13008 + - uid: 13847 components: - type: Transform pos: 48.5,26.5 parent: 2 - - uid: 13009 + - uid: 13848 components: - type: Transform pos: 47.5,26.5 parent: 2 - - uid: 13010 + - uid: 13849 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,25.5 parent: 2 - - uid: 13011 + - uid: 13850 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,24.5 parent: 2 - - uid: 13012 + - uid: 13851 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,23.5 parent: 2 - - uid: 13014 + - uid: 13852 components: - type: Transform pos: -78.5,-3.5 parent: 2 - - uid: 13015 + - uid: 13853 components: - type: Transform pos: -11.5,27.5 parent: 2 - - uid: 13016 + - uid: 13854 components: - type: Transform pos: -12.5,27.5 parent: 2 - - uid: 13017 + - uid: 13855 components: - type: Transform pos: -12.5,26.5 parent: 2 - - uid: 13018 + - uid: 13856 components: - type: Transform pos: 7.5,28.5 parent: 2 - - uid: 13019 + - uid: 13857 components: - type: Transform pos: 7.5,29.5 parent: 2 - - uid: 13020 + - uid: 13858 components: - type: Transform pos: 5.5,29.5 parent: 2 - - uid: 13021 + - uid: 13859 components: - type: Transform pos: 4.5,29.5 parent: 2 - - uid: 13022 + - uid: 13860 components: - type: Transform pos: 4.5,30.5 parent: 2 - - uid: 13023 + - uid: 13861 components: - type: Transform pos: -3.5,30.5 parent: 2 - - uid: 13024 + - uid: 13862 components: - type: Transform pos: -3.5,29.5 parent: 2 - - uid: 13025 + - uid: 13863 components: - type: Transform pos: -5.5,29.5 parent: 2 - - uid: 13026 + - uid: 13864 components: - type: Transform pos: -6.5,29.5 parent: 2 - - uid: 13027 + - uid: 13865 components: - type: Transform pos: -6.5,28.5 parent: 2 - - uid: 13028 + - uid: 13866 components: - type: Transform pos: -1.5,30.5 parent: 2 - - uid: 13029 + - uid: 13867 components: - type: Transform pos: -0.5,30.5 parent: 2 - - uid: 13030 + - uid: 13868 components: - type: Transform pos: 0.5,30.5 parent: 2 - - uid: 13031 + - uid: 13869 components: - type: Transform pos: 1.5,30.5 parent: 2 - - uid: 13032 + - uid: 13870 components: - type: Transform pos: 3.5,30.5 parent: 2 - - uid: 13033 + - uid: 13871 components: - type: Transform pos: -58.5,15.5 parent: 2 - - uid: 13034 + - uid: 13872 components: - type: Transform pos: -22.5,20.5 parent: 2 - - uid: 13035 + - uid: 13873 components: - type: Transform pos: -57.5,16.5 parent: 2 - - uid: 13036 + - uid: 13874 components: - type: Transform pos: -21.5,20.5 parent: 2 - - uid: 13039 + - uid: 13875 components: - type: Transform pos: -25.5,20.5 parent: 2 - - uid: 13040 + - uid: 13876 components: - type: Transform pos: -57.5,15.5 parent: 2 - - uid: 13041 + - uid: 13877 components: - type: Transform pos: -27.5,20.5 parent: 2 - - uid: 13042 + - uid: 13878 components: - type: Transform pos: -28.5,20.5 parent: 2 - - uid: 13043 + - uid: 13879 components: - type: Transform pos: -29.5,20.5 parent: 2 - - uid: 13044 + - uid: 13880 components: - type: Transform pos: -36.5,-121.5 parent: 2 - - uid: 13045 + - uid: 13881 components: - type: Transform pos: -35.5,-121.5 parent: 2 - - uid: 13046 + - uid: 13882 components: - type: Transform pos: -33.5,-121.5 parent: 2 - - uid: 13047 + - uid: 13883 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-58.5 parent: 2 - - uid: 13048 + - uid: 13884 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-54.5 parent: 2 - - uid: 13049 + - uid: 13885 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-56.5 parent: 2 - - uid: 13050 + - uid: 13886 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-57.5 parent: 2 - - uid: 13051 + - uid: 13887 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-58.5 parent: 2 - - uid: 13052 + - uid: 13888 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-59.5 parent: 2 - - uid: 13053 + - uid: 13889 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-62.5 parent: 2 - - uid: 13054 + - uid: 13890 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-63.5 parent: 2 - - uid: 13055 + - uid: 13891 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-64.5 parent: 2 - - uid: 13056 + - uid: 13892 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-65.5 parent: 2 - - uid: 13057 + - uid: 13893 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-67.5 parent: 2 - - uid: 13058 + - uid: 13894 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-67.5 parent: 2 - - uid: 13059 + - uid: 13895 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-68.5 parent: 2 - - uid: 13060 + - uid: 13896 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-69.5 parent: 2 - - uid: 13061 + - uid: 13897 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-70.5 parent: 2 - - uid: 13062 + - uid: 13898 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-72.5 parent: 2 - - uid: 13063 + - uid: 13899 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-73.5 parent: 2 - - uid: 13064 + - uid: 13900 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-73.5 parent: 2 - - uid: 13065 + - uid: 13901 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-73.5 parent: 2 - - uid: 13066 + - uid: 13902 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-74.5 parent: 2 - - uid: 13067 + - uid: 13903 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-75.5 parent: 2 - - uid: 13068 + - uid: 13904 components: - type: Transform pos: -60.5,-90.5 parent: 2 - - uid: 13069 + - uid: 13905 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-114.5 parent: 2 - - uid: 13070 + - uid: 13906 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-115.5 parent: 2 - - uid: 13071 + - uid: 13907 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-115.5 parent: 2 - - uid: 13072 + - uid: 13908 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-113.5 parent: 2 - - uid: 13073 + - uid: 13909 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-114.5 parent: 2 - - uid: 13074 + - uid: 13910 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-113.5 parent: 2 - - uid: 13075 + - uid: 13911 components: - type: Transform pos: -33.5,-118.5 parent: 2 - - uid: 13076 + - uid: 13912 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-113.5 parent: 2 - - uid: 13077 + - uid: 13913 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-113.5 parent: 2 - - uid: 13078 + - uid: 13914 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-113.5 parent: 2 - - uid: 13079 + - uid: 13915 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-113.5 parent: 2 - - uid: 13080 + - uid: 13916 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-113.5 parent: 2 - - uid: 13081 + - uid: 13917 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-113.5 parent: 2 - - uid: 13082 + - uid: 13918 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-113.5 parent: 2 - - uid: 13083 + - uid: 13919 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-113.5 parent: 2 - - uid: 13084 + - uid: 13920 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-113.5 parent: 2 - - uid: 13085 + - uid: 13921 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-113.5 parent: 2 - - uid: 13086 + - uid: 13922 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-112.5 parent: 2 - - uid: 13087 + - uid: 13923 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-105.5 parent: 2 - - uid: 13088 + - uid: 13924 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-105.5 parent: 2 - - uid: 13089 + - uid: 13925 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-105.5 parent: 2 - - uid: 13090 + - uid: 13926 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-105.5 parent: 2 - - uid: 13091 + - uid: 13927 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-105.5 parent: 2 - - uid: 13092 + - uid: 13928 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-105.5 parent: 2 - - uid: 13093 + - uid: 13929 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-105.5 parent: 2 - - uid: 13094 + - uid: 13930 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-105.5 parent: 2 - - uid: 13095 + - uid: 13931 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-105.5 parent: 2 - - uid: 13096 + - uid: 13932 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-105.5 parent: 2 - - uid: 13097 + - uid: 13933 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-105.5 parent: 2 - - uid: 13098 + - uid: 13934 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-105.5 parent: 2 - - uid: 13099 + - uid: 13935 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-105.5 parent: 2 - - uid: 13100 + - uid: 13936 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-104.5 parent: 2 - - uid: 13101 + - uid: 13937 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-102.5 parent: 2 - - uid: 13102 + - uid: 13938 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-101.5 parent: 2 - - uid: 13103 + - uid: 13939 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-100.5 parent: 2 - - uid: 13104 + - uid: 13940 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-99.5 parent: 2 - - uid: 13105 + - uid: 13941 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-98.5 parent: 2 - - uid: 13106 + - uid: 13942 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-97.5 parent: 2 - - uid: 13107 + - uid: 13943 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-96.5 parent: 2 - - uid: 13108 + - uid: 13944 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-95.5 parent: 2 - - uid: 13109 + - uid: 13945 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-94.5 parent: 2 - - uid: 13110 + - uid: 13946 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-93.5 parent: 2 - - uid: 13111 + - uid: 13947 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-92.5 parent: 2 - - uid: 13112 + - uid: 13948 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-91.5 parent: 2 - - uid: 13113 + - uid: 13949 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-90.5 parent: 2 - - uid: 13114 + - uid: 13950 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-89.5 parent: 2 - - uid: 13115 + - uid: 13951 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-88.5 parent: 2 - - uid: 13116 + - uid: 13952 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-87.5 parent: 2 - - uid: 13117 + - uid: 13953 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-86.5 parent: 2 - - uid: 13118 + - uid: 13954 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-85.5 parent: 2 - - uid: 13119 + - uid: 13955 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-84.5 parent: 2 - - uid: 13120 + - uid: 13956 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-84.5 parent: 2 - - uid: 13121 + - uid: 13957 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-84.5 parent: 2 - - uid: 13122 + - uid: 13958 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-84.5 parent: 2 - - uid: 13123 + - uid: 13959 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-84.5 parent: 2 - - uid: 13124 + - uid: 13960 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-84.5 parent: 2 - - uid: 13125 + - uid: 13961 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-107.5 parent: 2 - - uid: 13126 + - uid: 13962 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-108.5 parent: 2 - - uid: 13127 + - uid: 13963 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-109.5 parent: 2 - - uid: 13128 + - uid: 13964 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-110.5 parent: 2 - - uid: 13129 + - uid: 13965 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-106.5 parent: 2 - - uid: 13130 + - uid: 13966 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-107.5 parent: 2 - - uid: 13131 + - uid: 13967 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-108.5 parent: 2 - - uid: 13132 + - uid: 13968 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-109.5 parent: 2 - - uid: 13133 + - uid: 13969 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-110.5 parent: 2 - - uid: 13134 + - uid: 13970 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-111.5 parent: 2 - - uid: 13135 + - uid: 13971 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-112.5 parent: 2 - - uid: 13136 + - uid: 13972 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-113.5 parent: 2 - - uid: 13137 + - uid: 13973 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-113.5 parent: 2 - - uid: 13138 + - uid: 13974 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-112.5 parent: 2 - - uid: 13139 + - uid: 13975 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-111.5 parent: 2 - - uid: 13140 + - uid: 13976 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-111.5 parent: 2 - - uid: 13141 + - uid: 13977 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-111.5 parent: 2 - - uid: 13142 + - uid: 13978 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-110.5 parent: 2 - - uid: 13143 + - uid: 13979 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-109.5 parent: 2 - - uid: 13144 + - uid: 13980 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-109.5 parent: 2 - - uid: 13145 + - uid: 13981 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-109.5 parent: 2 - - uid: 13146 + - uid: 13982 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-108.5 parent: 2 - - uid: 13147 + - uid: 13983 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-108.5 parent: 2 - - uid: 13148 + - uid: 13984 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-107.5 parent: 2 - - uid: 13149 + - uid: 13985 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-106.5 parent: 2 - - uid: 13150 + - uid: 13986 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-105.5 parent: 2 - - uid: 13151 + - uid: 13987 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-104.5 parent: 2 - - uid: 13152 + - uid: 13988 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-103.5 parent: 2 - - uid: 13153 + - uid: 13989 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-102.5 parent: 2 - - uid: 13154 + - uid: 13990 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-101.5 parent: 2 - - uid: 13155 + - uid: 13991 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-100.5 parent: 2 - - uid: 13156 + - uid: 13992 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-112.5 parent: 2 - - uid: 13157 + - uid: 13993 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-112.5 parent: 2 - - uid: 13158 + - uid: 13994 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-107.5 parent: 2 - - uid: 13159 + - uid: 13995 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-107.5 parent: 2 - - uid: 13160 + - uid: 13996 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-107.5 parent: 2 - - uid: 13161 + - uid: 13997 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-106.5 parent: 2 - - uid: 13162 + - uid: 13998 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-106.5 parent: 2 - - uid: 13163 + - uid: 13999 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-106.5 parent: 2 - - uid: 13164 + - uid: 14000 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-106.5 parent: 2 - - uid: 13165 + - uid: 14001 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-106.5 parent: 2 - - uid: 13166 + - uid: 14002 components: - type: Transform pos: -39.5,-121.5 parent: 2 - - uid: 13167 + - uid: 14003 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-99.5 parent: 2 - - uid: 13168 + - uid: 14004 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-96.5 parent: 2 - - uid: 13169 + - uid: 14005 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-97.5 parent: 2 - - uid: 13170 + - uid: 14006 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-87.5 parent: 2 - - uid: 13171 + - uid: 14007 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-86.5 parent: 2 - - uid: 13172 + - uid: 14008 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-86.5 parent: 2 - - uid: 13173 + - uid: 14009 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-94.5 parent: 2 - - uid: 13174 + - uid: 14010 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-95.5 parent: 2 - - uid: 13175 + - uid: 14011 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-95.5 parent: 2 - - uid: 13176 + - uid: 14012 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-97.5 parent: 2 - - uid: 13177 + - uid: 14013 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-98.5 parent: 2 - - uid: 13178 + - uid: 14014 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-100.5 parent: 2 - - uid: 13179 + - uid: 14015 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-101.5 parent: 2 - - uid: 13180 + - uid: 14016 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-97.5 parent: 2 - - uid: 13181 + - uid: 14017 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-97.5 parent: 2 - - uid: 13182 + - uid: 14018 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-86.5 parent: 2 - - uid: 13183 + - uid: 14019 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-86.5 parent: 2 - - uid: 13184 + - uid: 14020 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-72.5 parent: 2 - - uid: 13185 + - uid: 14021 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-70.5 parent: 2 - - uid: 13186 + - uid: 14022 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-91.5 parent: 2 - - uid: 13187 + - uid: 14023 components: - type: Transform rot: 3.141592653589793 rad pos: 105.5,-56.5 parent: 2 - - uid: 13188 + - uid: 14024 components: - type: Transform rot: 3.141592653589793 rad pos: 110.5,-58.5 parent: 2 - - uid: 13189 + - uid: 14025 components: - type: Transform pos: -33.5,-117.5 parent: 2 - - uid: 13190 + - uid: 14026 components: - type: Transform rot: 3.141592653589793 rad pos: 106.5,-58.5 parent: 2 - - uid: 13191 + - uid: 14027 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-87.5 parent: 2 - - uid: 13192 + - uid: 14028 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-87.5 parent: 2 - - uid: 13193 + - uid: 14029 components: - type: Transform pos: 42.5,-78.5 parent: 2 - - uid: 13194 + - uid: 14030 components: - type: Transform pos: -58.5,-76.5 parent: 2 - - uid: 13195 + - uid: 14031 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-52.5 parent: 2 - - uid: 13196 + - uid: 14032 components: - type: Transform pos: 103.5,-52.5 parent: 2 - - uid: 13197 + - uid: 14033 components: - type: Transform pos: -58.5,-69.5 parent: 2 - - uid: 13198 + - uid: 14034 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-95.5 parent: 2 - - uid: 13199 + - uid: 14035 components: - type: Transform pos: 58.5,-94.5 parent: 2 - - uid: 13200 + - uid: 14036 components: - type: Transform pos: 50.5,-94.5 parent: 2 - - uid: 13201 + - uid: 14037 components: - type: Transform pos: 58.5,-99.5 parent: 2 - - uid: 13202 + - uid: 14038 components: - type: Transform pos: 40.5,-91.5 parent: 2 - - uid: 13203 + - uid: 14039 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-97.5 parent: 2 - - uid: 13204 + - uid: 14040 components: - type: Transform pos: 58.5,-97.5 parent: 2 - - uid: 13205 + - uid: 14041 components: - type: Transform pos: 49.5,-87.5 parent: 2 - - uid: 13206 + - uid: 14042 components: - type: Transform pos: 40.5,-94.5 parent: 2 - - uid: 13207 + - uid: 14043 components: - type: Transform pos: 40.5,-93.5 parent: 2 - - uid: 13208 + - uid: 14044 components: - type: Transform pos: 40.5,-92.5 parent: 2 - - uid: 13209 + - uid: 14045 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-97.5 parent: 2 - - uid: 13210 + - uid: 14046 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-95.5 parent: 2 - - uid: 13211 + - uid: 14047 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-95.5 parent: 2 - - uid: 13212 + - uid: 14048 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-95.5 parent: 2 - - uid: 13213 + - uid: 14049 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-91.5 parent: 2 - - uid: 13214 + - uid: 14050 components: - type: Transform pos: -64.5,-89.5 parent: 2 - - uid: 13215 + - uid: 14051 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-91.5 parent: 2 - - uid: 13216 + - uid: 14052 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-91.5 parent: 2 - - uid: 13217 + - uid: 14053 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-91.5 parent: 2 - - uid: 13218 + - uid: 14054 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-71.5 parent: 2 - - uid: 13219 + - uid: 14055 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-73.5 parent: 2 - - uid: 13220 + - uid: 14056 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-91.5 parent: 2 - - uid: 13221 + - uid: 14057 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-91.5 parent: 2 - - uid: 13222 + - uid: 14058 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-91.5 parent: 2 - - uid: 13223 + - uid: 14059 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-91.5 parent: 2 - - uid: 13224 + - uid: 14060 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-87.5 parent: 2 - - uid: 13225 + - uid: 14061 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-95.5 parent: 2 - - uid: 13226 + - uid: 14062 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-95.5 parent: 2 - - uid: 13227 + - uid: 14063 components: - type: Transform pos: 32.5,-104.5 parent: 2 - - uid: 13228 + - uid: 14064 components: - type: Transform pos: 31.5,-104.5 parent: 2 - - uid: 13229 + - uid: 14065 components: - type: Transform pos: 89.5,-78.5 parent: 2 - - uid: 13230 + - uid: 14066 components: - type: Transform pos: 57.5,-94.5 parent: 2 - - uid: 13231 + - uid: 14067 components: - type: Transform pos: 90.5,-79.5 parent: 2 - - uid: 13234 + - uid: 14068 components: - type: Transform pos: -69.5,7.5 parent: 2 - - uid: 13235 + - uid: 14069 components: - type: Transform pos: -71.5,7.5 parent: 2 - - uid: 13236 + - uid: 14070 components: - type: Transform pos: 89.5,-79.5 parent: 2 - - uid: 13237 + - uid: 14071 components: - type: Transform pos: -74.5,6.5 parent: 2 - - uid: 13238 + - uid: 14072 components: - type: Transform pos: -77.5,6.5 parent: 2 - - uid: 13239 + - uid: 14073 components: - type: Transform pos: -69.5,-89.5 parent: 2 - - uid: 13240 + - uid: 14074 components: - type: Transform pos: -66.5,-89.5 parent: 2 - - uid: 13241 + - uid: 14075 components: - type: Transform pos: -65.5,-89.5 parent: 2 - - uid: 13242 + - uid: 14076 components: - type: Transform pos: -67.5,-89.5 parent: 2 - - uid: 13243 + - uid: 14077 components: - type: Transform pos: -64.5,-2.5 parent: 2 - - uid: 13244 + - uid: 14078 components: - type: Transform pos: -76.5,6.5 parent: 2 - - uid: 13245 + - uid: 14079 components: - type: Transform pos: -73.5,7.5 parent: 2 - - uid: 13246 + - uid: 14080 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-113.5 parent: 2 - - uid: 13247 + - uid: 14081 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-115.5 parent: 2 - - uid: 13248 + - uid: 14082 components: - type: Transform pos: -73.5,6.5 parent: 2 - - uid: 13249 + - uid: 14083 components: - type: Transform pos: -72.5,7.5 parent: 2 - - uid: 13250 + - uid: 14084 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-114.5 parent: 2 - - uid: 13252 + - uid: 14085 components: - type: Transform pos: 83.5,-74.5 parent: 2 - - uid: 13254 + - uid: 14086 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-83.5 parent: 2 - - uid: 13255 + - uid: 14087 components: - type: Transform pos: 90.5,-45.5 parent: 2 - - uid: 13256 + - uid: 14088 components: - type: Transform pos: 61.5,-87.5 parent: 2 - - uid: 13257 + - uid: 14089 components: - type: Transform pos: 58.5,-95.5 parent: 2 - - uid: 13259 + - uid: 14090 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-86.5 parent: 2 - - uid: 13260 + - uid: 14091 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-85.5 parent: 2 - - uid: 13261 + - uid: 14092 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-94.5 parent: 2 - - uid: 13263 + - uid: 14093 components: - type: Transform pos: -34.5,-116.5 parent: 2 - - uid: 13265 + - uid: 14094 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-72.5 parent: 2 - - uid: 13266 + - uid: 14095 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-70.5 parent: 2 - - uid: 13267 + - uid: 14096 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-73.5 parent: 2 - - uid: 13268 + - uid: 14097 components: - type: Transform pos: 58.5,-96.5 parent: 2 - - uid: 13269 + - uid: 14098 components: - type: Transform pos: 40.5,-90.5 parent: 2 - - uid: 13270 + - uid: 14099 components: - type: Transform pos: 58.5,-98.5 parent: 2 - - uid: 13271 + - uid: 14100 components: - type: Transform pos: 40.5,-89.5 parent: 2 - - uid: 13275 + - uid: 14101 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,-70.5 parent: 2 - - uid: 13276 + - uid: 14102 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-84.5 parent: 2 - - uid: 13277 + - uid: 14103 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-87.5 parent: 2 - - uid: 13278 + - uid: 14104 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-82.5 parent: 2 - - uid: 13279 + - uid: 14105 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-91.5 parent: 2 - - uid: 13280 + - uid: 14106 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-82.5 parent: 2 - - uid: 13281 + - uid: 14107 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-82.5 parent: 2 - - uid: 13282 + - uid: 14108 components: - type: Transform pos: -34.5,-115.5 parent: 2 - - uid: 13283 + - uid: 14109 components: - type: Transform pos: -34.5,-114.5 parent: 2 - - uid: 13284 + - uid: 14110 components: - type: Transform pos: -41.5,-120.5 parent: 2 - - uid: 13287 + - uid: 14111 components: - type: Transform rot: 3.141592653589793 rad pos: -97.5,1.5 parent: 2 - - uid: 13288 + - uid: 14112 components: - type: Transform pos: 42.5,-79.5 parent: 2 - - uid: 13289 + - uid: 14113 components: - type: Transform pos: 109.5,-50.5 parent: 2 - - uid: 13290 + - uid: 14114 components: - type: Transform pos: 103.5,-45.5 parent: 2 - - uid: 13291 + - uid: 14115 components: - type: Transform pos: 105.5,-45.5 parent: 2 - - uid: 13292 + - uid: 14116 components: - type: Transform pos: 109.5,-48.5 parent: 2 - - uid: 13293 + - uid: 14117 components: - type: Transform pos: 109.5,-49.5 parent: 2 - - uid: 13294 + - uid: 14118 components: - type: Transform pos: 108.5,-51.5 parent: 2 - - uid: 13295 + - uid: 14119 components: - type: Transform pos: 107.5,-44.5 parent: 2 - - uid: 13296 + - uid: 14120 components: - type: Transform pos: -41.5,-121.5 parent: 2 - - uid: 13297 + - uid: 14121 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-4.5 parent: 2 - - uid: 13298 + - uid: 14122 components: - type: Transform pos: 57.5,-88.5 parent: 2 - - uid: 13299 + - uid: 14123 components: - type: Transform pos: 57.5,-87.5 parent: 2 - - uid: 13300 + - uid: 14124 components: - type: Transform pos: -58.5,-73.5 parent: 2 - - uid: 13301 + - uid: 14125 components: - type: Transform pos: 76.5,-46.5 parent: 2 - - uid: 13302 + - uid: 14126 components: - type: Transform pos: -57.5,-77.5 parent: 2 - - uid: 13303 + - uid: 14127 components: - type: Transform pos: -58.5,-72.5 parent: 2 - - uid: 13304 + - uid: 14128 components: - type: Transform pos: -58.5,-75.5 parent: 2 - - uid: 13305 + - uid: 14129 components: - type: Transform pos: -58.5,-71.5 parent: 2 - - uid: 13306 + - uid: 14130 components: - type: Transform pos: -34.5,-112.5 parent: 2 - - uid: 13307 + - uid: 14131 components: - type: Transform pos: 89.5,-49.5 parent: 2 - - uid: 13308 + - uid: 14132 components: - type: Transform pos: 95.5,-44.5 parent: 2 - - uid: 13309 + - uid: 14133 components: - type: Transform pos: 92.5,-44.5 parent: 2 - - uid: 13310 + - uid: 14134 components: - type: Transform pos: 104.5,-52.5 parent: 2 - - uid: 13311 + - uid: 14135 components: - type: Transform pos: 104.5,-53.5 parent: 2 - - uid: 13312 + - uid: 14136 components: - type: Transform pos: 106.5,-44.5 parent: 2 - - uid: 13313 + - uid: 14137 components: - type: Transform pos: 109.5,-51.5 parent: 2 - - uid: 13314 + - uid: 14138 components: - type: Transform rot: 3.141592653589793 rad pos: 111.5,-57.5 parent: 2 - - uid: 13315 + - uid: 14139 components: - type: Transform pos: 94.5,-52.5 parent: 2 - - uid: 13316 + - uid: 14140 components: - type: Transform pos: 95.5,-54.5 parent: 2 - - uid: 13317 + - uid: 14141 components: - type: Transform pos: 85.5,-74.5 parent: 2 - - uid: 13318 + - uid: 14142 components: - type: Transform pos: 96.5,-52.5 parent: 2 - - uid: 13319 + - uid: 14143 components: - type: Transform pos: 82.5,-74.5 parent: 2 - - uid: 13320 + - uid: 14144 components: - type: Transform pos: 97.5,-54.5 parent: 2 - - uid: 13321 + - uid: 14145 components: - type: Transform pos: 84.5,-74.5 parent: 2 - - uid: 13322 + - uid: 14146 components: - type: Transform pos: 89.5,-74.5 parent: 2 - - uid: 13323 + - uid: 14147 components: - type: Transform pos: 87.5,-74.5 parent: 2 - - uid: 13324 + - uid: 14148 components: - type: Transform pos: 89.5,-76.5 parent: 2 - - uid: 13325 + - uid: 14149 components: - type: Transform pos: 89.5,-75.5 parent: 2 - - uid: 13326 + - uid: 14150 components: - type: Transform pos: 86.5,-74.5 parent: 2 - - uid: 13327 + - uid: 14151 components: - type: Transform pos: 94.5,-44.5 parent: 2 - - uid: 13328 + - uid: 14152 components: - type: Transform pos: 109.5,-44.5 parent: 2 - - uid: 13329 + - uid: 14153 components: - type: Transform pos: 89.5,-52.5 parent: 2 - - uid: 13330 + - uid: 14154 components: - type: Transform rot: -1.5707963267948966 rad pos: 111.5,-45.5 parent: 2 - - uid: 13331 + - uid: 14155 components: - type: Transform pos: 98.5,-47.5 parent: 2 - - uid: 13332 + - uid: 14156 components: - type: Transform pos: 94.5,-54.5 parent: 2 - - uid: 13333 + - uid: 14157 components: - type: Transform pos: 99.5,-45.5 parent: 2 - - uid: 13334 + - uid: 14158 components: - type: Transform pos: 100.5,-45.5 parent: 2 - - uid: 13335 + - uid: 14159 components: - type: Transform pos: 100.5,-49.5 parent: 2 - - uid: 13336 + - uid: 14160 components: - type: Transform pos: 100.5,-48.5 parent: 2 - - uid: 13337 + - uid: 14161 components: - type: Transform pos: 102.5,-45.5 parent: 2 - - uid: 13338 + - uid: 14162 components: - type: Transform pos: 88.5,-48.5 parent: 2 - - uid: 13339 + - uid: 14163 components: - type: Transform pos: 109.5,-45.5 parent: 2 - - uid: 13340 + - uid: 14164 components: - type: Transform pos: 104.5,-45.5 parent: 2 - - uid: 13341 + - uid: 14165 components: - type: Transform rot: 3.141592653589793 rad pos: 111.5,-59.5 parent: 2 - - uid: 13342 + - uid: 14166 components: - type: Transform pos: 100.5,-47.5 parent: 2 - - uid: 13343 + - uid: 14167 components: - type: Transform pos: 96.5,-44.5 parent: 2 - - uid: 13344 + - uid: 14168 components: - type: Transform pos: 89.5,-48.5 parent: 2 - - uid: 13345 + - uid: 14169 components: - type: Transform pos: 91.5,-45.5 parent: 2 - - uid: 13346 + - uid: 14170 components: - type: Transform pos: 89.5,-77.5 parent: 2 - - uid: 13347 + - uid: 14171 components: - type: Transform pos: 89.5,-50.5 parent: 2 - - uid: 13348 + - uid: 14172 components: - type: Transform pos: 91.5,-44.5 parent: 2 - - uid: 13350 + - uid: 14173 components: - type: Transform pos: 88.5,-74.5 parent: 2 - - uid: 13351 + - uid: 14174 components: - type: Transform rot: -1.5707963267948966 rad pos: 110.5,-45.5 parent: 2 - - uid: 13352 + - uid: 14175 components: - type: Transform pos: 95.5,-52.5 parent: 2 - - uid: 13353 + - uid: 14176 components: - type: Transform pos: 96.5,-54.5 parent: 2 - - uid: 13354 + - uid: 14177 components: - type: Transform pos: 108.5,-44.5 parent: 2 - - uid: 13355 + - uid: 14178 components: - type: Transform rot: -1.5707963267948966 rad pos: 112.5,-45.5 parent: 2 - - uid: 13356 + - uid: 14179 components: - type: Transform pos: 97.5,-52.5 parent: 2 - - uid: 13357 + - uid: 14180 components: - type: Transform pos: 88.5,-45.5 parent: 2 - - uid: 13358 + - uid: 14181 components: - type: Transform pos: 81.5,-74.5 parent: 2 - - uid: 13359 + - uid: 14182 components: - type: Transform rot: -1.5707963267948966 rad pos: 89.5,-53.5 parent: 2 - - uid: 13401 + - uid: 14183 components: - type: Transform pos: 35.5,27.5 parent: 2 - - uid: 13402 + - uid: 14184 components: - type: Transform pos: 35.5,29.5 parent: 2 - - uid: 13403 + - uid: 14185 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-73.5 parent: 2 - - uid: 13404 + - uid: 14186 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-73.5 parent: 2 - - uid: 13405 + - uid: 14187 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-73.5 parent: 2 - - uid: 13406 + - uid: 14188 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-72.5 parent: 2 - - uid: 13407 + - uid: 14189 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-72.5 parent: 2 - - uid: 13408 + - uid: 14190 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-72.5 parent: 2 - - uid: 13409 + - uid: 14191 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-72.5 parent: 2 - - uid: 13410 + - uid: 14192 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-72.5 parent: 2 - - uid: 13411 + - uid: 14193 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-72.5 parent: 2 - - uid: 13412 + - uid: 14194 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-72.5 parent: 2 - - uid: 13413 + - uid: 14195 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-73.5 parent: 2 - - uid: 13414 + - uid: 14196 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-73.5 parent: 2 - - uid: 13415 + - uid: 14197 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-73.5 parent: 2 - - uid: 13426 + - uid: 14198 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-93.5 parent: 2 - - uid: 13429 + - uid: 14199 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-119.5 parent: 2 - - uid: 13430 + - uid: 14200 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-119.5 parent: 2 - - uid: 13431 + - uid: 14201 components: - type: Transform pos: 22.5,20.5 parent: 2 - - uid: 13432 + - uid: 14202 components: - type: Transform pos: 22.5,21.5 parent: 2 - - uid: 13433 + - uid: 14203 components: - type: Transform pos: 22.5,22.5 parent: 2 - - uid: 13494 + - uid: 14204 components: - type: Transform pos: 79.5,-45.5 parent: 2 - - uid: 13495 + - uid: 14205 components: - type: Transform pos: 78.5,-46.5 parent: 2 - - uid: 13496 + - uid: 14206 components: - type: Transform pos: 77.5,-46.5 parent: 2 - - uid: 13497 + - uid: 14207 components: - type: Transform pos: 74.5,-46.5 parent: 2 - - uid: 13498 + - uid: 14208 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,14.5 parent: 2 - - uid: 13499 + - uid: 14209 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,14.5 parent: 2 - - uid: 13500 + - uid: 14210 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,14.5 parent: 2 - - uid: 13501 + - uid: 14211 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,14.5 parent: 2 - - uid: 13502 + - uid: 14212 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,14.5 parent: 2 - - uid: 13503 + - uid: 14213 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,13.5 parent: 2 - - uid: 13504 + - uid: 14214 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,13.5 parent: 2 - - uid: 13505 + - uid: 14215 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,14.5 parent: 2 - - uid: 13506 + - uid: 14216 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,14.5 parent: 2 - - uid: 13507 + - uid: 14217 components: - type: Transform pos: -65.5,3.5 parent: 2 - - uid: 13508 + - uid: 14218 components: - type: Transform pos: -64.5,3.5 parent: 2 - - uid: 13509 + - uid: 14219 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,7.5 parent: 2 - - uid: 13510 + - uid: 14220 components: - type: Transform pos: -66.5,-3.5 parent: 2 - - uid: 13511 + - uid: 14221 components: - type: Transform pos: -67.5,-3.5 parent: 2 - - uid: 13512 + - uid: 14222 components: - type: Transform pos: -68.5,-3.5 parent: 2 - - uid: 13530 + - uid: 14223 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-27.5 parent: 2 - - uid: 13531 + - uid: 14224 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-26.5 parent: 2 - - uid: 13533 + - uid: 14225 components: - type: Transform pos: -55.5,-104.5 parent: 2 - - uid: 13534 + - uid: 14226 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-96.5 parent: 2 - - uid: 13535 + - uid: 14227 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-95.5 parent: 2 - - uid: 13536 + - uid: 14228 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-98.5 parent: 2 - - uid: 13537 + - uid: 14229 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-99.5 parent: 2 - - uid: 13538 + - uid: 14230 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-101.5 parent: 2 - - uid: 13539 + - uid: 14231 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-100.5 parent: 2 - - uid: 13540 + - uid: 14232 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-103.5 parent: 2 - - uid: 13541 + - uid: 14233 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-103.5 parent: 2 - - uid: 13542 + - uid: 14234 components: - type: Transform pos: -55.5,-106.5 parent: 2 - - uid: 13543 + - uid: 14235 components: - type: Transform pos: -54.5,-106.5 parent: 2 - - uid: 13544 + - uid: 14236 components: - type: Transform pos: -53.5,-106.5 parent: 2 - - uid: 13545 + - uid: 14237 components: - type: Transform pos: -52.5,-106.5 parent: 2 - - uid: 13546 + - uid: 14238 components: - type: Transform pos: -51.5,-106.5 parent: 2 - - uid: 13547 + - uid: 14239 components: - type: Transform pos: -49.5,-106.5 parent: 2 - - uid: 13548 + - uid: 14240 components: - type: Transform pos: -49.5,-105.5 parent: 2 - - uid: 13549 + - uid: 14241 components: - type: Transform pos: -48.5,-105.5 parent: 2 - - uid: 13550 + - uid: 14242 components: - type: Transform pos: -47.5,-105.5 parent: 2 - - uid: 13551 + - uid: 14243 components: - type: Transform pos: -42.5,-105.5 parent: 2 - - uid: 13552 + - uid: 14244 components: - type: Transform pos: -40.5,-105.5 parent: 2 - - uid: 13553 + - uid: 14245 components: - type: Transform pos: -38.5,-105.5 parent: 2 - - uid: 13554 + - uid: 14246 components: - type: Transform pos: -37.5,-105.5 parent: 2 - - uid: 13555 + - uid: 14247 components: - type: Transform pos: -38.5,-107.5 parent: 2 - - uid: 13556 + - uid: 14248 components: - type: Transform pos: -38.5,-108.5 parent: 2 - - uid: 13557 + - uid: 14249 components: - type: Transform pos: -38.5,-109.5 parent: 2 - - uid: 13558 + - uid: 14250 components: - type: Transform pos: -36.5,-109.5 parent: 2 - - uid: 13559 + - uid: 14251 components: - type: Transform pos: -35.5,-109.5 parent: 2 - - uid: 13560 + - uid: 14252 components: - type: Transform pos: -33.5,-109.5 parent: 2 - - uid: 13561 + - uid: 14253 components: - type: Transform pos: -32.5,-109.5 parent: 2 - - uid: 13562 + - uid: 14254 components: - type: Transform pos: -31.5,-109.5 parent: 2 - - uid: 13563 + - uid: 14255 components: - type: Transform pos: -30.5,-109.5 parent: 2 - - uid: 13564 + - uid: 14256 components: - type: Transform pos: -28.5,-110.5 parent: 2 - - uid: 13565 + - uid: 14257 components: - type: Transform pos: -27.5,-110.5 parent: 2 - - uid: 13566 + - uid: 14258 components: - type: Transform pos: -26.5,-110.5 parent: 2 - - uid: 13567 + - uid: 14259 components: - type: Transform pos: -26.5,-109.5 parent: 2 - - uid: 13568 + - uid: 14260 components: - type: Transform pos: -26.5,-106.5 parent: 2 - - uid: 13569 + - uid: 14261 components: - type: Transform pos: -26.5,-105.5 parent: 2 - - uid: 13570 + - uid: 14262 components: - type: Transform pos: -41.5,-110.5 parent: 2 - - uid: 13571 + - uid: 14263 components: - type: Transform pos: -41.5,-109.5 parent: 2 - - uid: 13572 + - uid: 14264 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-105.5 parent: 2 - - uid: 13573 + - uid: 14265 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-105.5 parent: 2 - - uid: 13574 + - uid: 14266 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-112.5 parent: 2 - - uid: 13575 + - uid: 14267 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-113.5 parent: 2 - - uid: 13576 + - uid: 14268 components: - type: Transform pos: -55.5,-115.5 parent: 2 - - uid: 13577 + - uid: 14269 components: - type: Transform pos: -52.5,-119.5 parent: 2 - - uid: 13578 + - uid: 14270 components: - type: Transform pos: -51.5,-118.5 parent: 2 - - uid: 13579 + - uid: 14271 components: - type: Transform pos: -50.5,-118.5 parent: 2 - - uid: 13580 + - uid: 14272 components: - type: Transform pos: -49.5,-118.5 parent: 2 - - uid: 13581 + - uid: 14273 components: - type: Transform pos: -48.5,-118.5 parent: 2 - - uid: 13582 + - uid: 14274 components: - type: Transform pos: -48.5,-119.5 parent: 2 - - uid: 13583 + - uid: 14275 components: - type: Transform pos: -47.5,-119.5 parent: 2 - - uid: 13584 + - uid: 14276 components: - type: Transform pos: -46.5,-119.5 parent: 2 - - uid: 13585 + - uid: 14277 components: - type: Transform pos: -44.5,-119.5 parent: 2 - - uid: 13586 + - uid: 14278 components: - type: Transform pos: -43.5,-119.5 parent: 2 - - uid: 13587 + - uid: 14279 components: - type: Transform pos: -55.5,-111.5 parent: 2 - - uid: 13588 + - uid: 14280 components: - type: Transform pos: -55.5,-110.5 parent: 2 - - uid: 13589 + - uid: 14281 components: - type: Transform pos: -55.5,-109.5 parent: 2 - - uid: 13590 + - uid: 14282 components: - type: Transform pos: -55.5,-116.5 parent: 2 - - uid: 13591 + - uid: 14283 components: - type: Transform pos: -55.5,-114.5 parent: 2 - - uid: 13592 + - uid: 14284 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-22.5 parent: 2 - - uid: 13593 + - uid: 14285 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-22.5 parent: 2 - - uid: 13594 + - uid: 14286 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-22.5 parent: 2 - - uid: 13595 + - uid: 14287 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-22.5 parent: 2 - - uid: 13596 + - uid: 14288 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-21.5 parent: 2 - - uid: 13597 + - uid: 14289 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-19.5 parent: 2 - - uid: 13598 + - uid: 14290 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-18.5 parent: 2 - - uid: 13599 + - uid: 14291 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-18.5 parent: 2 - - uid: 13600 + - uid: 14292 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-17.5 parent: 2 - - uid: 13601 + - uid: 14293 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-15.5 parent: 2 - - uid: 13602 + - uid: 14294 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-14.5 parent: 2 - - uid: 13603 + - uid: 14295 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-13.5 parent: 2 - - uid: 13604 + - uid: 14296 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-12.5 parent: 2 - - uid: 13605 + - uid: 14297 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-11.5 parent: 2 - - uid: 13606 + - uid: 14298 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-10.5 parent: 2 - - uid: 13607 + - uid: 14299 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-9.5 parent: 2 - - uid: 13608 + - uid: 14300 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-7.5 parent: 2 - - uid: 13609 + - uid: 14301 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-6.5 parent: 2 - - uid: 13610 + - uid: 14302 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-5.5 parent: 2 - - uid: 13611 + - uid: 14303 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-5.5 parent: 2 - - uid: 13612 + - uid: 14304 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-5.5 parent: 2 - - uid: 13613 + - uid: 14305 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-5.5 parent: 2 - - uid: 13614 + - uid: 14306 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-5.5 parent: 2 - - uid: 13615 + - uid: 14307 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-5.5 parent: 2 - - uid: 13616 + - uid: 14308 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-3.5 parent: 2 - - uid: 13617 + - uid: 14309 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-2.5 parent: 2 - - uid: 13618 + - uid: 14310 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-1.5 parent: 2 - - uid: 13619 + - uid: 14311 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,0.5 parent: 2 - - uid: 13620 + - uid: 14312 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,2.5 parent: 2 - - uid: 13621 + - uid: 14313 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,3.5 parent: 2 - - uid: 13622 + - uid: 14314 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,4.5 parent: 2 - - uid: 13623 + - uid: 14315 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,5.5 parent: 2 - - uid: 13624 + - uid: 14316 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-6.5 parent: 2 - - uid: 13625 + - uid: 14317 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-8.5 parent: 2 - - uid: 13626 + - uid: 14318 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-9.5 parent: 2 - - uid: 13627 + - uid: 14319 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-12.5 parent: 2 - - uid: 13628 + - uid: 14320 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-13.5 parent: 2 - - uid: 13629 + - uid: 14321 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-14.5 parent: 2 - - uid: 13630 + - uid: 14322 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-15.5 parent: 2 - - uid: 13631 + - uid: 14323 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-14.5 parent: 2 - - uid: 13632 + - uid: 14324 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-14.5 parent: 2 - - uid: 13633 + - uid: 14325 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-15.5 parent: 2 - - uid: 13634 + - uid: 14326 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-16.5 parent: 2 - - uid: 13635 + - uid: 14327 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-20.5 parent: 2 - - uid: 13636 + - uid: 14328 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-21.5 parent: 2 - - uid: 13637 + - uid: 14329 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-20.5 parent: 2 - - uid: 13638 + - uid: 14330 components: - type: Transform rot: 3.141592653589793 rad pos: -94.5,3.5 parent: 2 - - uid: 13639 + - uid: 14331 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,3.5 parent: 2 - - uid: 13640 + - uid: 14332 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,10.5 parent: 2 - - uid: 13641 + - uid: 14333 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,10.5 parent: 2 - - uid: 13642 + - uid: 14334 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,10.5 parent: 2 - - uid: 13643 + - uid: 14335 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,10.5 parent: 2 - - uid: 13644 + - uid: 14336 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,10.5 parent: 2 - - uid: 13645 + - uid: 14337 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,10.5 parent: 2 - - uid: 13646 + - uid: 14338 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,10.5 parent: 2 - - uid: 13647 + - uid: 14339 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,11.5 parent: 2 - - uid: 13648 + - uid: 14340 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,12.5 parent: 2 - - uid: 13649 + - uid: 14341 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,13.5 parent: 2 - - uid: 13650 + - uid: 14342 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,13.5 parent: 2 - - uid: 13651 + - uid: 14343 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,13.5 parent: 2 - - uid: 13652 + - uid: 14344 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,13.5 parent: 2 - - uid: 13653 + - uid: 14345 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,13.5 parent: 2 - - uid: 13654 + - uid: 14346 components: - type: Transform rot: 1.5707963267948966 rad pos: -83.5,13.5 parent: 2 - - uid: 13655 + - uid: 14347 components: - type: Transform rot: 1.5707963267948966 rad pos: -84.5,13.5 parent: 2 - - uid: 13656 + - uid: 14348 components: - type: Transform rot: 1.5707963267948966 rad pos: -85.5,13.5 parent: 2 - - uid: 13657 + - uid: 14349 components: - type: Transform rot: 1.5707963267948966 rad pos: -86.5,13.5 parent: 2 - - uid: 13658 + - uid: 14350 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,14.5 parent: 2 - - uid: 13659 + - uid: 14351 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,15.5 parent: 2 - - uid: 13660 + - uid: 14352 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,16.5 parent: 2 - - uid: 13661 + - uid: 14353 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,17.5 parent: 2 - - uid: 13662 + - uid: 14354 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,17.5 parent: 2 - - uid: 13663 + - uid: 14355 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,17.5 parent: 2 - - uid: 13664 + - uid: 14356 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,17.5 parent: 2 - - uid: 13665 + - uid: 14357 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,17.5 parent: 2 - - uid: 13666 + - uid: 14358 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,17.5 parent: 2 - - uid: 13667 + - uid: 14359 components: - type: Transform rot: 1.5707963267948966 rad pos: -83.5,17.5 parent: 2 - - uid: 13668 + - uid: 14360 components: - type: Transform rot: 1.5707963267948966 rad pos: -84.5,17.5 parent: 2 - - uid: 13669 + - uid: 14361 components: - type: Transform rot: 1.5707963267948966 rad pos: -85.5,17.5 parent: 2 - - uid: 13670 + - uid: 14362 components: - type: Transform rot: 1.5707963267948966 rad pos: -86.5,17.5 parent: 2 - - uid: 13671 + - uid: 14363 components: - type: Transform rot: 1.5707963267948966 rad pos: -87.5,17.5 parent: 2 - - uid: 13672 + - uid: 14364 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,18.5 parent: 2 - - uid: 13673 + - uid: 14365 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,19.5 parent: 2 - - uid: 13674 + - uid: 14366 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,20.5 parent: 2 - - uid: 13675 + - uid: 14367 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,21.5 parent: 2 - - uid: 13676 + - uid: 14368 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,22.5 parent: 2 - - uid: 13678 + - uid: 14369 components: - type: Transform pos: -83.5,20.5 parent: 2 - - uid: 13679 + - uid: 14370 components: - type: Transform pos: -80.5,20.5 parent: 2 - - uid: 13680 + - uid: 14371 components: - type: Transform pos: -85.5,20.5 parent: 2 - - uid: 13681 + - uid: 14372 components: - type: Transform pos: -81.5,20.5 parent: 2 - - uid: 13682 + - uid: 14373 components: - type: Transform pos: -84.5,20.5 parent: 2 - - uid: 13683 + - uid: 14374 components: - type: Transform pos: -69.5,-103.5 parent: 2 - - uid: 13684 + - uid: 14375 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,-5.5 parent: 2 - - uid: 13685 + - uid: 14376 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,-8.5 parent: 2 - - uid: 13686 + - uid: 14377 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,-9.5 parent: 2 - - uid: 13687 + - uid: 14378 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,-10.5 parent: 2 - - uid: 13688 + - uid: 14379 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,-11.5 parent: 2 - - uid: 13689 + - uid: 14380 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,-12.5 parent: 2 - - uid: 13690 + - uid: 14381 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-12.5 parent: 2 - - uid: 13691 + - uid: 14382 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-13.5 parent: 2 - - uid: 13692 + - uid: 14383 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-14.5 parent: 2 - - uid: 13693 + - uid: 14384 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,-14.5 parent: 2 - - uid: 13694 + - uid: 14385 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-14.5 parent: 2 - - uid: 13695 + - uid: 14386 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-15.5 parent: 2 - - uid: 13696 + - uid: 14387 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-16.5 parent: 2 - - uid: 13697 + - uid: 14388 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,-16.5 parent: 2 - - uid: 13698 + - uid: 14389 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-35.5 parent: 2 - - uid: 13699 + - uid: 14390 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-34.5 parent: 2 - - uid: 13700 + - uid: 14391 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-33.5 parent: 2 - - uid: 13701 + - uid: 14392 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-33.5 parent: 2 - - uid: 13702 + - uid: 14393 components: - type: Transform pos: -86.5,7.5 parent: 2 - - uid: 13703 + - uid: 14394 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,-20.5 parent: 2 - - uid: 13704 + - uid: 14395 components: - type: Transform pos: -85.5,7.5 parent: 2 - - uid: 13705 + - uid: 14396 components: - type: Transform pos: -85.5,8.5 parent: 2 - - uid: 13706 + - uid: 14397 components: - type: Transform pos: -85.5,9.5 parent: 2 - - uid: 13707 + - uid: 14398 components: - type: Transform pos: -84.5,9.5 parent: 2 - - uid: 13708 + - uid: 14399 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-114.5 parent: 2 - - uid: 13709 + - uid: 14400 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-109.5 parent: 2 - - uid: 13710 + - uid: 14401 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-109.5 parent: 2 - - uid: 13711 + - uid: 14402 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-109.5 parent: 2 - - uid: 13712 + - uid: 14403 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-109.5 parent: 2 - - uid: 13713 + - uid: 14404 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-109.5 parent: 2 - - uid: 13714 + - uid: 14405 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-110.5 parent: 2 - - uid: 13715 + - uid: 14406 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-111.5 parent: 2 - - uid: 13716 + - uid: 14407 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-112.5 parent: 2 - - uid: 13717 + - uid: 14408 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-112.5 parent: 2 - - uid: 13718 + - uid: 14409 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-113.5 parent: 2 - - uid: 13719 + - uid: 14410 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-114.5 parent: 2 - - uid: 13720 + - uid: 14411 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-115.5 parent: 2 - - uid: 13721 + - uid: 14412 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-116.5 parent: 2 - - uid: 13722 + - uid: 14413 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-123.5 parent: 2 - - uid: 13723 + - uid: 14414 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-119.5 parent: 2 - - uid: 13724 + - uid: 14415 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-122.5 parent: 2 - - uid: 13725 + - uid: 14416 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-123.5 parent: 2 - - uid: 13726 + - uid: 14417 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-124.5 parent: 2 - - uid: 13727 + - uid: 14418 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-123.5 parent: 2 - - uid: 13728 + - uid: 14419 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-123.5 parent: 2 - - uid: 13729 + - uid: 14420 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-123.5 parent: 2 - - uid: 13730 + - uid: 14421 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-123.5 parent: 2 - - uid: 13731 + - uid: 14422 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-124.5 parent: 2 - - uid: 13732 + - uid: 14423 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-124.5 parent: 2 - - uid: 13733 + - uid: 14424 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-125.5 parent: 2 - - uid: 13734 + - uid: 14425 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-126.5 parent: 2 - - uid: 13735 + - uid: 14426 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-126.5 parent: 2 - - uid: 13736 + - uid: 14427 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-126.5 parent: 2 - - uid: 13737 + - uid: 14428 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-126.5 parent: 2 - - uid: 13738 + - uid: 14429 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-99.5 parent: 2 - - uid: 13739 + - uid: 14430 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-126.5 parent: 2 - - uid: 13740 + - uid: 14431 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-126.5 parent: 2 - - uid: 13741 + - uid: 14432 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-126.5 parent: 2 - - uid: 13742 + - uid: 14433 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-119.5 parent: 2 - - uid: 13743 + - uid: 14434 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-118.5 parent: 2 - - uid: 13744 + - uid: 14435 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-118.5 parent: 2 - - uid: 13745 + - uid: 14436 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-118.5 parent: 2 - - uid: 13746 + - uid: 14437 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-115.5 parent: 2 - - uid: 13747 + - uid: 14438 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-114.5 parent: 2 - - uid: 13748 + - uid: 14439 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-113.5 parent: 2 - - uid: 13749 + - uid: 14440 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-112.5 parent: 2 - - uid: 13750 + - uid: 14441 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-109.5 parent: 2 - - uid: 13751 + - uid: 14442 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-108.5 parent: 2 - - uid: 13752 + - uid: 14443 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-108.5 parent: 2 - - uid: 13753 + - uid: 14444 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-107.5 parent: 2 - - uid: 13754 + - uid: 14445 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-106.5 parent: 2 - - uid: 13755 + - uid: 14446 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-93.5 parent: 2 - - uid: 13756 + - uid: 14447 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-94.5 parent: 2 - - uid: 13757 + - uid: 14448 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-95.5 parent: 2 - - uid: 13758 + - uid: 14449 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-96.5 parent: 2 - - uid: 13759 + - uid: 14450 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-97.5 parent: 2 - - uid: 13760 + - uid: 14451 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-98.5 parent: 2 - - uid: 13761 + - uid: 14452 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-99.5 parent: 2 - - uid: 13762 + - uid: 14453 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-100.5 parent: 2 - - uid: 13763 + - uid: 14454 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-101.5 parent: 2 - - uid: 13764 + - uid: 14455 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-102.5 parent: 2 - - uid: 13765 + - uid: 14456 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-103.5 parent: 2 - - uid: 13766 + - uid: 14457 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-104.5 parent: 2 - - uid: 13767 + - uid: 14458 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-104.5 parent: 2 - - uid: 13768 + - uid: 14459 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-105.5 parent: 2 - - uid: 13769 + - uid: 14460 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-106.5 parent: 2 - - uid: 13770 + - uid: 14461 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-107.5 parent: 2 - - uid: 13771 + - uid: 14462 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-108.5 parent: 2 - - uid: 13772 + - uid: 14463 components: - type: Transform pos: -79.5,20.5 parent: 2 - - uid: 13773 + - uid: 14464 components: - type: Transform pos: -82.5,23.5 parent: 2 - - uid: 13774 + - uid: 14465 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,-79.5 parent: 2 - - uid: 13775 + - uid: 14466 components: - type: Transform rot: 3.141592653589793 rad pos: 92.5,-79.5 parent: 2 - - uid: 13776 + - uid: 14467 components: - type: Transform rot: 3.141592653589793 rad pos: 93.5,-79.5 parent: 2 - - uid: 13777 + - uid: 14468 components: - type: Transform pos: 73.5,-72.5 parent: 2 - - uid: 13778 + - uid: 14469 components: - type: Transform pos: 74.5,-72.5 parent: 2 - - uid: 13779 + - uid: 14470 components: - type: Transform pos: 35.5,30.5 parent: 2 - - uid: 13780 + - uid: 14471 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,27.5 parent: 2 - - uid: 13781 + - uid: 14472 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,27.5 parent: 2 - - uid: 13782 + - uid: 14473 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,27.5 parent: 2 - - uid: 13783 + - uid: 14474 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,30.5 parent: 2 - - uid: 13784 + - uid: 14475 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,31.5 parent: 2 - - uid: 13785 + - uid: 14476 components: - type: Transform pos: 41.5,30.5 parent: 2 - - uid: 13786 + - uid: 14477 components: - type: Transform pos: 41.5,31.5 parent: 2 - - uid: 13787 + - uid: 14478 components: - type: Transform pos: 95.5,-58.5 parent: 2 - - uid: 13788 + - uid: 14479 components: - type: Transform pos: 91.5,-61.5 parent: 2 - - uid: 13789 + - uid: 14480 components: - type: Transform pos: 92.5,-61.5 parent: 2 - - uid: 13790 + - uid: 14481 components: - type: Transform pos: 93.5,-61.5 parent: 2 - - uid: 13791 + - uid: 14482 components: - type: Transform pos: 93.5,-60.5 parent: 2 - - uid: 13792 + - uid: 14483 components: - type: Transform pos: 94.5,-60.5 parent: 2 - - uid: 13793 + - uid: 14484 components: - type: Transform pos: 94.5,-59.5 parent: 2 - - uid: 13794 + - uid: 14485 components: - type: Transform pos: 95.5,-59.5 parent: 2 - - uid: 13795 + - uid: 14486 components: - type: Transform pos: 95.5,-57.5 parent: 2 - - uid: 13796 + - uid: 14487 components: - type: Transform pos: 96.5,-57.5 parent: 2 - - uid: 13797 + - uid: 14488 components: - type: Transform pos: 97.5,-57.5 parent: 2 - - uid: 13798 + - uid: 14489 components: - type: Transform pos: 98.5,-57.5 parent: 2 - - uid: 13799 + - uid: 14490 components: - type: Transform pos: 99.5,-57.5 parent: 2 - - uid: 13800 + - uid: 14491 components: - type: Transform pos: 100.5,-57.5 parent: 2 - - uid: 13801 + - uid: 14492 components: - type: Transform pos: 101.5,-57.5 parent: 2 - - uid: 13802 + - uid: 14493 components: - type: Transform pos: 101.5,-58.5 parent: 2 - - uid: 13803 + - uid: 14494 components: - type: Transform pos: 101.5,-59.5 parent: 2 - - uid: 13804 + - uid: 14495 components: - type: Transform pos: 102.5,-59.5 parent: 2 - - uid: 13805 + - uid: 14496 components: - type: Transform pos: 102.5,-60.5 parent: 2 - - uid: 13806 + - uid: 14497 components: - type: Transform pos: 113.5,-47.5 parent: 2 - - uid: 13807 + - uid: 14498 components: - type: Transform pos: 113.5,-46.5 parent: 2 - - uid: 13808 + - uid: 14499 components: - type: Transform pos: 113.5,-45.5 parent: 2 - - uid: 13809 + - uid: 14500 components: - type: Transform pos: 113.5,-44.5 parent: 2 - - uid: 13811 + - uid: 14501 components: - type: Transform pos: 114.5,-43.5 parent: 2 - - uid: 13812 + - uid: 14502 components: - type: Transform pos: 114.5,-42.5 parent: 2 - - uid: 13813 + - uid: 14503 components: - type: Transform pos: 111.5,-52.5 parent: 2 - - uid: 13814 + - uid: 14504 components: - type: Transform pos: 111.5,-53.5 parent: 2 - - uid: 13815 + - uid: 14505 components: - type: Transform pos: 111.5,-54.5 parent: 2 - - uid: 13816 + - uid: 14506 components: - type: Transform pos: 111.5,-55.5 parent: 2 - - uid: 13818 + - uid: 14507 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,-20.5 parent: 2 - - uid: 13819 + - uid: 14508 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-20.5 parent: 2 - - uid: 13820 + - uid: 14509 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-20.5 parent: 2 - - uid: 13821 + - uid: 14510 components: - type: Transform pos: -85.5,-20.5 parent: 2 - - uid: 13822 + - uid: 14511 components: - type: Transform pos: -86.5,-20.5 parent: 2 - - uid: 13823 + - uid: 14512 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,-20.5 parent: 2 - - uid: 13824 + - uid: 14513 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-20.5 parent: 2 - - uid: 13825 + - uid: 14514 components: - type: Transform rot: 1.5707963267948966 rad pos: -82.5,-20.5 parent: 2 - - uid: 13826 + - uid: 14515 components: - type: Transform pos: 38.5,35.5 parent: 2 - - uid: 13827 + - uid: 14516 components: - type: Transform pos: 37.5,35.5 parent: 2 - - uid: 13828 + - uid: 14517 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,32.5 parent: 2 - - uid: 13829 + - uid: 14518 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,33.5 parent: 2 - - uid: 13830 + - uid: 14519 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,34.5 parent: 2 - - uid: 13831 + - uid: 14520 components: - type: Transform pos: -82.5,24.5 parent: 2 - - uid: 13832 + - uid: 14521 components: - type: Transform pos: -82.5,25.5 parent: 2 - - uid: 13833 + - uid: 14522 components: - type: Transform pos: -82.5,26.5 parent: 2 - - uid: 13834 + - uid: 14523 components: - type: Transform pos: -82.5,27.5 parent: 2 - - uid: 13835 + - uid: 14524 components: - type: Transform pos: -82.5,28.5 parent: 2 - - uid: 13836 + - uid: 14525 components: - type: Transform pos: -82.5,29.5 parent: 2 - - uid: 13837 + - uid: 14526 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-103.5 parent: 2 - - uid: 13838 + - uid: 14527 components: - type: Transform pos: -71.5,-104.5 parent: 2 - - uid: 13839 + - uid: 14528 components: - type: Transform pos: -71.5,-105.5 parent: 2 - - uid: 13840 + - uid: 14529 components: - type: Transform pos: -71.5,-106.5 parent: 2 - - uid: 13841 + - uid: 14530 components: - type: Transform pos: -71.5,-107.5 parent: 2 - - uid: 13842 + - uid: 14531 components: - type: Transform pos: -65.5,-107.5 parent: 2 - - uid: 13843 + - uid: 14532 components: - type: Transform pos: -65.5,-106.5 parent: 2 - - uid: 13844 + - uid: 14533 components: - type: Transform pos: -65.5,-105.5 parent: 2 - - uid: 13845 + - uid: 14534 components: - type: Transform pos: -65.5,-104.5 parent: 2 - - uid: 13846 + - uid: 14535 components: - type: Transform pos: -65.5,-103.5 parent: 2 - - uid: 13847 + - uid: 14536 components: - type: Transform pos: -66.5,-103.5 parent: 2 - - uid: 13848 + - uid: 14537 components: - type: Transform pos: -67.5,-103.5 parent: 2 - - uid: 13849 + - uid: 14538 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-103.5 parent: 2 - - uid: 13850 + - uid: 14539 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-82.5 parent: 2 - - uid: 13851 + - uid: 14540 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-82.5 parent: 2 - - uid: 13852 + - uid: 14541 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-82.5 parent: 2 - - uid: 13853 + - uid: 14542 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-82.5 parent: 2 - - uid: 13854 + - uid: 14543 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-88.5 parent: 2 - - uid: 13855 + - uid: 14544 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-96.5 parent: 2 - - uid: 13857 + - uid: 14545 components: - type: Transform pos: -57.5,-2.5 parent: 2 - - uid: 13858 + - uid: 14546 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-55.5 parent: 2 - - uid: 13859 + - uid: 14547 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-55.5 parent: 2 - - uid: 13860 + - uid: 14548 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-54.5 parent: 2 - - uid: 13861 + - uid: 14549 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-56.5 parent: 2 - - uid: 14549 + - uid: 14550 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-22.5 parent: 2 - - uid: 14672 + - uid: 14551 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-17.5 parent: 2 - - uid: 14700 + - uid: 14552 components: - type: Transform pos: 3.5,-19.5 parent: 2 - - uid: 14961 + - uid: 14553 components: - type: Transform pos: -2.5,-19.5 parent: 2 - - uid: 17557 + - uid: 14554 components: - type: Transform pos: 69.5,-14.5 parent: 2 - - uid: 17695 + - uid: 14555 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-17.5 parent: 2 - - uid: 17824 + - uid: 14556 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-17.5 parent: 2 - - uid: 17904 + - uid: 14557 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-16.5 parent: 2 - - uid: 17905 + - uid: 14558 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-15.5 parent: 2 - - uid: 17906 + - uid: 14559 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-17.5 parent: 2 - - uid: 18570 + - uid: 14560 components: - type: Transform pos: -3.5,-19.5 parent: 2 - - uid: 18571 + - uid: 14561 components: - type: Transform pos: -4.5,-19.5 parent: 2 - - uid: 18572 + - uid: 14562 components: - type: Transform pos: -4.5,-18.5 parent: 2 - - uid: 18615 + - uid: 14563 components: - type: Transform pos: -10.5,-17.5 parent: 2 - - uid: 18620 + - uid: 14564 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-16.5 parent: 2 - - uid: 18621 + - uid: 14565 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-16.5 parent: 2 - - uid: 19140 + - uid: 14566 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-14.5 parent: 2 - - uid: 19141 + - uid: 14567 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-14.5 parent: 2 - - uid: 19143 + - uid: 14568 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-17.5 parent: 2 - - uid: 19144 + - uid: 14569 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-14.5 parent: 2 - - uid: 19159 + - uid: 14570 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-15.5 parent: 2 - - uid: 19160 + - uid: 14571 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-14.5 parent: 2 - - uid: 19161 + - uid: 14572 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-15.5 parent: 2 - - uid: 19162 + - uid: 14573 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-15.5 parent: 2 - - uid: 19607 + - uid: 14574 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-23.5 parent: 2 - - uid: 19608 + - uid: 14575 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-24.5 parent: 2 - - uid: 21039 + - uid: 14576 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-18.5 parent: 2 - - uid: 22142 + - uid: 14577 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-17.5 parent: 2 - - uid: 22143 + - uid: 14578 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-15.5 parent: 2 - - uid: 22167 + - uid: 14579 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-15.5 parent: 2 - - uid: 22276 + - uid: 14580 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-15.5 parent: 2 - - uid: 22278 + - uid: 14581 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-15.5 parent: 2 - - uid: 22465 + - uid: 14582 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-16.5 parent: 2 - - uid: 22515 + - uid: 14583 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-17.5 parent: 2 - - uid: 22735 + - uid: 14584 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-17.5 parent: 2 - - uid: 22736 + - uid: 14585 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-17.5 parent: 2 - - uid: 22738 + - uid: 14586 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-17.5 parent: 2 - - uid: 22739 + - uid: 14587 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-17.5 parent: 2 - - uid: 22740 + - uid: 14588 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-17.5 parent: 2 - - uid: 22741 + - uid: 14589 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-19.5 parent: 2 - - uid: 22743 + - uid: 14590 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-19.5 parent: 2 - - uid: 22744 + - uid: 14591 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-19.5 parent: 2 - - uid: 22745 + - uid: 14592 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-19.5 parent: 2 - - uid: 23337 + - uid: 14593 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-18.5 parent: 2 - - uid: 23338 + - uid: 14594 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-19.5 parent: 2 - - uid: 23339 + - uid: 14595 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-16.5 parent: 2 - - uid: 23340 + - uid: 14596 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-16.5 parent: 2 - - uid: 23341 + - uid: 14597 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-16.5 parent: 2 - - uid: 23347 + - uid: 14598 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-17.5 parent: 2 - - uid: 23349 + - uid: 14599 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-17.5 parent: 2 - - uid: 23799 + - uid: 14600 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-14.5 parent: 2 - - uid: 23957 + - uid: 14601 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-13.5 parent: 2 - - uid: 23959 + - uid: 14602 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-13.5 parent: 2 - - uid: 23962 + - uid: 14603 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-13.5 parent: 2 - - uid: 23964 + - uid: 14604 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-13.5 parent: 2 - - uid: 23996 + - uid: 14605 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-13.5 parent: 2 - - uid: 24019 + - uid: 14606 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-13.5 parent: 2 - - uid: 24079 + - uid: 14607 components: - type: Transform pos: -3.5,-15.5 parent: 2 - - uid: 24080 + - uid: 14608 components: - type: Transform pos: -10.5,-14.5 parent: 2 - - uid: 24081 + - uid: 14609 components: - type: Transform pos: -17.5,-12.5 parent: 2 - - uid: 24089 + - uid: 14610 components: - type: Transform pos: -16.5,-12.5 parent: 2 - - uid: 24128 + - uid: 14611 components: - type: Transform pos: -15.5,-12.5 parent: 2 - - uid: 24152 + - uid: 14612 components: - type: Transform pos: -13.5,-12.5 parent: 2 - - uid: 24153 + - uid: 14613 components: - type: Transform pos: -12.5,-12.5 parent: 2 - - uid: 24195 + - uid: 14614 components: - type: Transform pos: -17.5,-13.5 parent: 2 - - uid: 24208 + - uid: 14615 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-14.5 parent: 2 - - uid: 24224 + - uid: 14616 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-14.5 parent: 2 - - uid: 33647 + - uid: 14617 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-55.5 parent: 2 - - uid: 33648 + - uid: 14618 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-56.5 parent: 2 - - uid: 33649 + - uid: 14619 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-57.5 parent: 2 - - uid: 33650 + - uid: 14620 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-58.5 parent: 2 - - uid: 33651 + - uid: 14621 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-59.5 parent: 2 - - uid: 33652 + - uid: 14622 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-60.5 parent: 2 - - uid: 33653 + - uid: 14623 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-55.5 parent: 2 - - uid: 33654 + - uid: 14624 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-56.5 parent: 2 - - uid: 33655 + - uid: 14625 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-57.5 parent: 2 - - uid: 33656 + - uid: 14626 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-58.5 parent: 2 - - uid: 33657 + - uid: 14627 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-59.5 parent: 2 - - uid: 33658 + - uid: 14628 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-60.5 parent: 2 - - uid: 33659 + - uid: 14629 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-55.5 parent: 2 - - uid: 33660 + - uid: 14630 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-56.5 parent: 2 - - uid: 33661 + - uid: 14631 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-57.5 parent: 2 - - uid: 33662 + - uid: 14632 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-58.5 parent: 2 - - uid: 33663 + - uid: 14633 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-59.5 parent: 2 - - uid: 33664 + - uid: 14634 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-60.5 parent: 2 - - uid: 33665 + - uid: 14635 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-55.5 parent: 2 - - uid: 33666 + - uid: 14636 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-56.5 parent: 2 - - uid: 33667 + - uid: 14637 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-57.5 parent: 2 - - uid: 33668 + - uid: 14638 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-58.5 parent: 2 - - uid: 33669 + - uid: 14639 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-59.5 parent: 2 - - uid: 33670 + - uid: 14640 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-60.5 parent: 2 - - uid: 33671 + - uid: 14641 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-55.5 parent: 2 - - uid: 33672 + - uid: 14642 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-56.5 parent: 2 - - uid: 33673 + - uid: 14643 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-57.5 parent: 2 - - uid: 33674 + - uid: 14644 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-55.5 parent: 2 - - uid: 33675 + - uid: 14645 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-56.5 parent: 2 - - uid: 33676 + - uid: 14646 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-57.5 parent: 2 - - uid: 33677 + - uid: 14647 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-55.5 parent: 2 - - uid: 33678 + - uid: 14648 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-56.5 parent: 2 - - uid: 33679 + - uid: 14649 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-57.5 parent: 2 - - uid: 33680 + - uid: 14650 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-55.5 parent: 2 - - uid: 33681 + - uid: 14651 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-56.5 parent: 2 - - uid: 33682 + - uid: 14652 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-57.5 parent: 2 - - uid: 33683 + - uid: 14653 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-55.5 parent: 2 - - uid: 33684 + - uid: 14654 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-56.5 parent: 2 - - uid: 33685 + - uid: 14655 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-57.5 parent: 2 - - uid: 33686 + - uid: 14656 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-55.5 parent: 2 - - uid: 33687 + - uid: 14657 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-56.5 parent: 2 - - uid: 33688 + - uid: 14658 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-57.5 parent: 2 - - uid: 33689 + - uid: 14659 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-55.5 parent: 2 - - uid: 33690 + - uid: 14660 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-56.5 parent: 2 - - uid: 33691 + - uid: 14661 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-57.5 parent: 2 - - uid: 33692 + - uid: 14662 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-59.5 parent: 2 - - uid: 33693 + - uid: 14663 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-60.5 parent: 2 - - uid: 33694 + - uid: 14664 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-61.5 parent: 2 - - uid: 33695 + - uid: 14665 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-62.5 parent: 2 - - uid: 33696 + - uid: 14666 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-59.5 parent: 2 - - uid: 33697 + - uid: 14667 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-60.5 parent: 2 - - uid: 33698 + - uid: 14668 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-61.5 parent: 2 - - uid: 33699 + - uid: 14669 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-62.5 parent: 2 - - uid: 33700 + - uid: 14670 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-59.5 parent: 2 - - uid: 33701 + - uid: 14671 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-60.5 parent: 2 - - uid: 33702 + - uid: 14672 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-61.5 parent: 2 - - uid: 33703 + - uid: 14673 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-62.5 parent: 2 - - uid: 33704 + - uid: 14674 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-62.5 parent: 2 - - uid: 33705 + - uid: 14675 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-61.5 parent: 2 - - uid: 33706 + - uid: 14676 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-60.5 parent: 2 - - uid: 33707 + - uid: 14677 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-62.5 parent: 2 - - uid: 33708 + - uid: 14678 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-61.5 parent: 2 - - uid: 33709 + - uid: 14679 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-60.5 parent: 2 - - uid: 33710 + - uid: 14680 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-62.5 parent: 2 - - uid: 33711 + - uid: 14681 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-61.5 parent: 2 - - uid: 33712 + - uid: 14682 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-60.5 parent: 2 - - uid: 33713 + - uid: 14683 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-62.5 parent: 2 - - uid: 33714 + - uid: 14684 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-61.5 parent: 2 - - uid: 33715 + - uid: 14685 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-60.5 parent: 2 - - uid: 33716 + - uid: 14686 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-62.5 parent: 2 - - uid: 33717 + - uid: 14687 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-61.5 parent: 2 - - uid: 33718 + - uid: 14688 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-60.5 parent: 2 - - uid: 33719 + - uid: 14689 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-62.5 parent: 2 - - uid: 33720 + - uid: 14690 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-61.5 parent: 2 - - uid: 33721 + - uid: 14691 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-60.5 parent: 2 - - uid: 33722 + - uid: 14692 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-62.5 parent: 2 - - uid: 33723 + - uid: 14693 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-61.5 parent: 2 - - uid: 33724 + - uid: 14694 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-60.5 parent: 2 - - uid: 33725 + - uid: 14695 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-55.5 parent: 2 - - uid: 33726 + - uid: 14696 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-56.5 parent: 2 - - uid: 33727 + - uid: 14697 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-57.5 parent: 2 - - uid: 33728 + - uid: 14698 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-55.5 parent: 2 - - uid: 33729 + - uid: 14699 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-56.5 parent: 2 - - uid: 33730 + - uid: 14700 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-57.5 parent: 2 - - uid: 33731 + - uid: 14701 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-55.5 parent: 2 - - uid: 33732 + - uid: 14702 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-56.5 parent: 2 - - uid: 33733 + - uid: 14703 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-57.5 parent: 2 - - uid: 33734 + - uid: 14704 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-55.5 parent: 2 - - uid: 33735 + - uid: 14705 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-56.5 parent: 2 - - uid: 33736 + - uid: 14706 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-57.5 parent: 2 - - uid: 33737 + - uid: 14707 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-55.5 parent: 2 - - uid: 33738 + - uid: 14708 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-56.5 parent: 2 - - uid: 33739 + - uid: 14709 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-57.5 parent: 2 - - uid: 33948 + - uid: 14710 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-48.5 parent: 2 - - uid: 34341 + - uid: 14711 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-47.5 parent: 2 - - uid: 34342 + - uid: 14712 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-46.5 parent: 2 - - uid: 34343 + - uid: 14713 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-49.5 parent: 2 - - uid: 34344 + - uid: 14714 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-50.5 parent: 2 - - uid: 34345 + - uid: 14715 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-51.5 parent: 2 - - uid: 34346 + - uid: 14716 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-51.5 parent: 2 - - uid: 34347 + - uid: 14717 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-51.5 parent: 2 - - uid: 34416 + - uid: 14718 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-54.5 parent: 2 - - uid: 34417 + - uid: 14719 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-54.5 parent: 2 - - uid: 34418 + - uid: 14720 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-53.5 parent: 2 - - uid: 34419 + - uid: 14721 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-53.5 parent: 2 - - uid: 34420 + - uid: 14722 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-51.5 parent: 2 - - uid: 34547 + - uid: 14723 components: - type: Transform pos: 48.5,18.5 parent: 2 - - uid: 34567 + - uid: 14724 components: - type: Transform pos: 49.5,18.5 parent: 2 - - uid: 34581 + - uid: 14725 components: - type: Transform pos: 50.5,18.5 parent: 2 - - uid: 34602 + - uid: 14726 components: - type: Transform pos: 54.5,18.5 parent: 2 - - uid: 34603 + - uid: 14727 components: - type: Transform pos: 54.5,18.5 parent: 2 - - uid: 34618 + - uid: 14728 components: - type: Transform pos: 54.5,17.5 parent: 2 - - uid: 34627 + - uid: 14729 components: - type: Transform pos: 54.5,14.5 parent: 2 - - uid: 37461 + - uid: 14730 components: - type: Transform pos: -10.5,-23.5 parent: 2 - - uid: 37462 + - uid: 14731 components: - type: Transform pos: -10.5,-24.5 parent: 2 - - uid: 37547 + - uid: 14732 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,-81.5 parent: 2 - - uid: 37756 + - uid: 14733 components: - type: Transform pos: 13.5,-47.5 parent: 2 - - uid: 37757 + - uid: 14734 components: - type: Transform pos: 14.5,-47.5 parent: 2 - - uid: 37758 + - uid: 14735 components: - type: Transform pos: 14.5,-46.5 parent: 2 - - uid: 37872 + - uid: 14736 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-12.5 parent: 2 - - uid: 37873 + - uid: 14737 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-11.5 parent: 2 - - uid: 37874 + - uid: 14738 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-12.5 parent: 2 - - uid: 38122 + - uid: 14739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-11.5 - parent: 37887 - - uid: 38123 + pos: -10.5,-25.5 + parent: 2 + - uid: 14740 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-12.5 - parent: 37887 - - uid: 38124 + pos: -10.5,-26.5 + parent: 2 + - uid: 14741 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-8.5 - parent: 37887 - - uid: 38125 + pos: -10.5,-27.5 + parent: 2 + - uid: 14742 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-15.5 - parent: 37887 - - uid: 38126 + pos: -11.5,-30.5 + parent: 2 + - uid: 14743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-11.5 - parent: 37887 - - uid: 38127 + pos: -11.5,-29.5 + parent: 2 + - uid: 14744 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-12.5 - parent: 37887 - - uid: 38128 + pos: 83.5,5.5 + parent: 2 + - uid: 14745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-15.5 - parent: 37887 - - uid: 38129 + pos: 71.5,13.5 + parent: 2 + - uid: 14746 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-8.5 - parent: 37887 - - uid: 38130 + pos: 72.5,13.5 + parent: 2 + - uid: 14747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,7.5 - parent: 37887 - - uid: 38131 + pos: 72.5,12.5 + parent: 2 + - uid: 14748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,7.5 - parent: 37887 - - uid: 38132 + pos: 72.5,11.5 + parent: 2 + - uid: 14749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 37887 - - uid: 38133 + pos: 76.5,11.5 + parent: 2 + - uid: 14750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-1.5 - parent: 37887 - - uid: 38134 + pos: 76.5,10.5 + parent: 2 + - uid: 14751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 37887 - - uid: 38135 + pos: 82.5,8.5 + parent: 2 + - uid: 14752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 37887 - - uid: 38136 + pos: 83.5,4.5 + parent: 2 + - uid: 14753 components: - type: Transform - pos: -0.5,-15.5 - parent: 37887 - - uid: 38137 + pos: 86.5,3.5 + parent: 2 + - uid: 14754 components: - type: Transform - pos: 0.5,-15.5 - parent: 37887 - - uid: 38138 + pos: 85.5,3.5 + parent: 2 + - uid: 14755 components: - type: Transform - pos: 1.5,-15.5 - parent: 37887 - - uid: 38139 + rot: 3.141592653589793 rad + pos: 92.5,-8.5 + parent: 2 + - uid: 14756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 37887 - - uid: 38140 + rot: 3.141592653589793 rad + pos: 92.5,-9.5 + parent: 2 + - uid: 14757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-2.5 - parent: 37887 - - uid: 38141 + rot: 3.141592653589793 rad + pos: 92.5,-6.5 + parent: 2 + - uid: 14758 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-11.5 - parent: 37887 - - uid: 38142 + pos: 92.5,-4.5 + parent: 2 + - uid: 14759 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-12.5 - parent: 37887 - - uid: 38143 + pos: 92.5,-3.5 + parent: 2 + - uid: 14760 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-11.5 - parent: 37887 - - uid: 38144 + pos: 89.5,2.5 + parent: 2 + - uid: 14761 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-12.5 - parent: 37887 - - uid: 38145 + pos: 89.5,1.5 + parent: 2 + - uid: 14762 components: - type: Transform - pos: 5.5,-0.5 - parent: 37887 - - uid: 38146 + pos: 69.5,-15.5 + parent: 2 + - uid: 41063 components: - type: Transform - pos: 5.5,-2.5 - parent: 37887 - - uid: 38147 + rot: 3.141592653589793 rad + pos: -11.5,-11.5 + parent: 40828 + - uid: 41064 components: - type: Transform - pos: -4.5,-17.5 - parent: 37887 - - uid: 38148 + rot: 3.141592653589793 rad + pos: -11.5,-12.5 + parent: 40828 + - uid: 41065 components: - type: Transform - pos: 5.5,-17.5 - parent: 37887 - - uid: 38815 + rot: 3.141592653589793 rad + pos: -9.5,-8.5 + parent: 40828 + - uid: 41066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 38722 - - uid: 38816 + rot: 3.141592653589793 rad + pos: -9.5,-15.5 + parent: 40828 + - uid: 41067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 38722 - - uid: 39171 + rot: 3.141592653589793 rad + pos: 12.5,-11.5 + parent: 40828 + - uid: 41068 components: - type: Transform - pos: -10.5,-25.5 - parent: 2 - - uid: 39172 + rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 40828 + - uid: 41069 components: - type: Transform - pos: -10.5,-26.5 - parent: 2 - - uid: 39173 + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 40828 + - uid: 41070 components: - type: Transform - pos: -10.5,-27.5 - parent: 2 - - uid: 39174 + rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 40828 + - uid: 41071 components: - type: Transform - pos: -11.5,-30.5 - parent: 2 - - uid: 39175 + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 40828 + - uid: 41072 components: - type: Transform - pos: -11.5,-29.5 - parent: 2 - - uid: 40176 + rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 40828 + - uid: 41073 components: - type: Transform - pos: 83.5,5.5 - parent: 2 - - uid: 40179 + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 40828 + - uid: 41074 components: - type: Transform - pos: 71.5,13.5 - parent: 2 - - uid: 40180 + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 40828 + - uid: 41075 components: - type: Transform - pos: 72.5,13.5 - parent: 2 - - uid: 40181 + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 40828 + - uid: 41076 components: - type: Transform - pos: 72.5,12.5 - parent: 2 - - uid: 40182 + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 40828 + - uid: 41077 components: - type: Transform - pos: 72.5,11.5 - parent: 2 - - uid: 40183 + pos: -0.5,-15.5 + parent: 40828 + - uid: 41078 components: - type: Transform - pos: 76.5,11.5 - parent: 2 - - uid: 40184 + pos: 0.5,-15.5 + parent: 40828 + - uid: 41079 components: - type: Transform - pos: 76.5,10.5 - parent: 2 - - uid: 40185 + pos: 1.5,-15.5 + parent: 40828 + - uid: 41080 components: - type: Transform - pos: 82.5,8.5 - parent: 2 - - uid: 40186 + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 40828 + - uid: 41081 components: - type: Transform - pos: 83.5,4.5 - parent: 2 - - uid: 40187 + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 40828 + - uid: 41082 components: - type: Transform - pos: 86.5,3.5 - parent: 2 - - uid: 40188 + rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 40828 + - uid: 41083 components: - type: Transform - pos: 85.5,3.5 - parent: 2 - - uid: 40199 + rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 40828 + - uid: 41084 components: - type: Transform rot: 3.141592653589793 rad - pos: 92.5,-8.5 - parent: 2 - - uid: 40200 + pos: -0.5,-11.5 + parent: 40828 + - uid: 41085 components: - type: Transform rot: 3.141592653589793 rad - pos: 92.5,-9.5 - parent: 2 - - uid: 40201 + pos: -0.5,-12.5 + parent: 40828 + - uid: 41086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-6.5 - parent: 2 - - uid: 40202 + pos: 5.5,-0.5 + parent: 40828 + - uid: 41087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-4.5 - parent: 2 - - uid: 40203 + pos: 5.5,-2.5 + parent: 40828 + - uid: 41088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-3.5 - parent: 2 - - uid: 40204 + pos: -4.5,-17.5 + parent: 40828 + - uid: 41089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,2.5 - parent: 2 - - uid: 40205 + pos: 5.5,-17.5 + parent: 40828 + - uid: 41761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,1.5 - parent: 2 - - uid: 40731 + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 41669 + - uid: 41762 components: - type: Transform - pos: 69.5,-15.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 41669 - proto: Cautery entities: - - uid: 13862 + - uid: 14763 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.372505,-19.18428 parent: 2 - - uid: 34389 + - uid: 14764 components: - type: Transform pos: 79.64018,3.3640103 parent: 2 - proto: CentcomComputerComms entities: - - uid: 38817 + - uid: 41763 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,0.5 - parent: 38722 + parent: 41669 - proto: Chair entities: - - uid: 7707 + - uid: 14765 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,-8.5 parent: 2 - - uid: 13864 + - uid: 14766 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-0.5 parent: 2 - - uid: 13865 + - uid: 14767 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-38.5 parent: 2 - - uid: 13866 + - uid: 14768 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-41.5 parent: 2 - - uid: 13870 + - uid: 14769 components: - type: Transform pos: 37.5,-58.5 parent: 2 - - uid: 13871 + - uid: 14770 components: - type: Transform pos: 35.5,-58.5 parent: 2 - - uid: 13872 + - uid: 14771 components: - type: Transform pos: 36.5,-57.5 parent: 2 - - uid: 13873 + - uid: 14772 components: - type: Transform pos: 35.5,-57.5 parent: 2 - - uid: 13874 + - uid: 14773 components: - type: Transform pos: 36.5,-58.5 parent: 2 - - uid: 13875 + - uid: 14774 components: - type: Transform pos: 38.5,-57.5 parent: 2 - - uid: 13876 + - uid: 14775 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,16.5 parent: 2 - - uid: 13877 + - uid: 14776 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,19.5 parent: 2 - - uid: 13878 + - uid: 14777 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,19.5 parent: 2 - - uid: 13879 + - uid: 14778 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,19.5 parent: 2 - - uid: 13880 + - uid: 14779 components: - type: Transform pos: -19.5,1.5 parent: 2 - - uid: 13881 + - uid: 14780 components: - type: Transform pos: -18.5,1.5 parent: 2 - - uid: 13882 + - uid: 14781 components: - type: Transform pos: -17.5,1.5 parent: 2 - - uid: 13883 + - uid: 14782 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,5.5 parent: 2 - - uid: 13884 + - uid: 14783 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,5.5 parent: 2 - - uid: 13885 + - uid: 14784 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,5.5 parent: 2 - - uid: 13886 + - uid: 14785 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-41.5 parent: 2 - - uid: 13887 + - uid: 14786 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,11.5 parent: 2 - - uid: 13888 + - uid: 14787 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,11.5 parent: 2 - - uid: 13889 + - uid: 14788 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,11.5 parent: 2 - - uid: 13890 + - uid: 14789 components: - type: Transform pos: -28.5,14.5 parent: 2 - - uid: 13891 + - uid: 14790 components: - type: Transform pos: -29.5,14.5 parent: 2 - - uid: 13892 + - uid: 14791 components: - type: Transform pos: -30.5,14.5 parent: 2 - - uid: 13896 + - uid: 14792 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-23.5 parent: 2 - - uid: 13897 + - uid: 14793 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-23.5 parent: 2 - - uid: 13898 + - uid: 14794 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-23.5 parent: 2 - - uid: 13899 + - uid: 14795 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-41.5 parent: 2 - - uid: 13900 + - uid: 14796 components: - type: Transform pos: 67.5,-36.5 parent: 2 - - uid: 13901 + - uid: 14797 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-41.5 parent: 2 - - uid: 13902 + - uid: 14798 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-40.5 parent: 2 - - uid: 13903 + - uid: 14799 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-37.5 parent: 2 - - uid: 13904 + - uid: 14800 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-36.5 parent: 2 - - uid: 13905 + - uid: 14801 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-36.5 parent: 2 - - uid: 13906 + - uid: 14802 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-42.5 parent: 2 - - uid: 13907 + - uid: 14803 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-40.5 parent: 2 - - uid: 13908 + - uid: 14804 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-38.5 parent: 2 - - uid: 13909 + - uid: 14805 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-35.5 parent: 2 - - uid: 13910 + - uid: 14806 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-37.5 parent: 2 - - uid: 13911 + - uid: 14807 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-35.5 parent: 2 - - uid: 13913 + - uid: 14808 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-84.5 parent: 2 - - uid: 13914 + - uid: 14809 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-83.5 parent: 2 - - uid: 13915 + - uid: 14810 components: - type: Transform pos: 66.5,-36.5 parent: 2 - - uid: 13916 + - uid: 14811 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-42.5 parent: 2 - - uid: 13917 + - uid: 14812 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-85.5 parent: 2 - - uid: 13918 + - uid: 14813 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-83.5 parent: 2 - - uid: 13919 + - uid: 14814 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-81.5 parent: 2 - - uid: 13920 + - uid: 14815 components: - type: Transform pos: 36.5,-59.5 parent: 2 - - uid: 13921 + - uid: 14816 components: - type: Transform pos: 33.5,-58.5 parent: 2 - - uid: 13922 + - uid: 14817 components: - type: Transform pos: 35.5,-59.5 parent: 2 - - uid: 13923 + - uid: 14818 components: - type: Transform pos: 38.5,-60.5 parent: 2 - - uid: 13924 + - uid: 14819 components: - type: Transform pos: 32.5,-57.5 parent: 2 - - uid: 13925 + - uid: 14820 components: - type: Transform pos: 33.5,-59.5 parent: 2 - - uid: 13926 + - uid: 14821 components: - type: Transform pos: 32.5,-58.5 parent: 2 - - uid: 13927 + - uid: 14822 components: - type: Transform pos: 38.5,-58.5 parent: 2 - - uid: 13928 + - uid: 14823 components: - type: Transform pos: 33.5,-57.5 parent: 2 - - uid: 13929 + - uid: 14824 components: - type: Transform pos: 36.5,-60.5 parent: 2 - - uid: 13930 + - uid: 14825 components: - type: Transform pos: 37.5,-57.5 parent: 2 - - uid: 13931 + - uid: 14826 components: - type: Transform pos: 32.5,-60.5 parent: 2 - - uid: 13932 + - uid: 14827 components: - type: Transform pos: 37.5,-60.5 parent: 2 - - uid: 13933 + - uid: 14828 components: - type: Transform pos: 35.5,-60.5 parent: 2 - - uid: 13934 + - uid: 14829 components: - type: Transform pos: 32.5,-59.5 parent: 2 - - uid: 13935 + - uid: 14830 components: - type: Transform pos: 33.5,-60.5 parent: 2 - - uid: 13936 + - uid: 14831 components: - type: Transform pos: 37.5,-59.5 parent: 2 - - uid: 13937 + - uid: 14832 components: - type: Transform pos: 38.5,-59.5 parent: 2 - - uid: 13938 + - uid: 14833 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-86.5 parent: 2 - - uid: 13939 + - uid: 14834 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-87.5 parent: 2 - - uid: 13940 + - uid: 14835 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-88.5 parent: 2 - - uid: 13941 + - uid: 14836 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-85.5 parent: 2 - - uid: 13942 + - uid: 14837 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-84.5 parent: 2 - - uid: 13943 + - uid: 14838 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-83.5 parent: 2 - - uid: 13944 + - uid: 14839 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-88.5 parent: 2 - - uid: 13945 + - uid: 14840 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-87.5 parent: 2 - - uid: 13946 + - uid: 14841 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-86.5 parent: 2 - - uid: 13947 + - uid: 14842 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-85.5 parent: 2 - - uid: 13948 + - uid: 14843 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-84.5 parent: 2 - - uid: 13949 + - uid: 14844 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-83.5 parent: 2 - - uid: 13950 + - uid: 14845 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-36.5 parent: 2 - - uid: 13951 + - uid: 14846 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-40.5 parent: 2 - - uid: 13952 + - uid: 14847 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-39.5 parent: 2 - - uid: 13953 + - uid: 14848 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-38.5 parent: 2 - - uid: 13954 + - uid: 14849 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-37.5 parent: 2 - - uid: 13955 + - uid: 14850 components: - type: Transform pos: -72.5,-47.5 parent: 2 - - uid: 13956 + - uid: 14851 components: - type: Transform pos: -73.5,-47.5 parent: 2 - - uid: 13957 + - uid: 14852 components: - type: Transform pos: -74.5,-47.5 parent: 2 - - uid: 13964 + - uid: 14853 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-20.5 parent: 2 - - uid: 13965 + - uid: 14854 components: - type: Transform rot: 1.5707963267948966 rad pos: 93.5,-20.5 parent: 2 - - uid: 13966 + - uid: 14855 components: - type: Transform rot: 1.5707963267948966 rad pos: 93.5,-42.5 parent: 2 - - uid: 13967 + - uid: 14856 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-42.5 parent: 2 - - uid: 13968 + - uid: 14857 components: - type: Transform rot: -1.5707963267948966 rad pos: 88.5,-38.5 parent: 2 - - uid: 13969 + - uid: 14858 components: - type: Transform rot: 1.5707963267948966 rad pos: 86.5,-38.5 parent: 2 - - uid: 13970 + - uid: 14859 components: - type: Transform rot: 1.5707963267948966 rad pos: 86.5,-24.5 parent: 2 - - uid: 13971 + - uid: 14860 components: - type: Transform rot: -1.5707963267948966 rad pos: 88.5,-24.5 parent: 2 - - uid: 13981 + - uid: 14861 components: - type: Transform pos: 28.5,25.5 parent: 2 - - uid: 13982 + - uid: 14862 components: - type: Transform pos: 27.5,25.5 parent: 2 - - uid: 13983 + - uid: 14863 components: - type: Transform pos: 26.5,25.5 parent: 2 - - uid: 13984 + - uid: 14864 components: - type: Transform pos: 27.5,21.5 parent: 2 - - uid: 13985 + - uid: 14865 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,16.5 parent: 2 - - uid: 13986 + - uid: 14866 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,16.5 parent: 2 - - uid: 13987 + - uid: 14867 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,16.5 parent: 2 - - uid: 13988 + - uid: 14868 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,16.5 parent: 2 - - uid: 13989 + - uid: 14869 components: - type: Transform pos: -43.5,13.5 parent: 2 - - uid: 13990 + - uid: 14870 components: - type: Transform pos: -42.5,13.5 parent: 2 - - uid: 13991 + - uid: 14871 components: - type: Transform pos: -41.5,13.5 parent: 2 - - uid: 13992 + - uid: 14872 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,12.5 parent: 2 - - uid: 13993 + - uid: 14873 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-9.5 parent: 2 - - uid: 13994 + - uid: 14874 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-10.5 parent: 2 - - uid: 13995 + - uid: 14875 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-89.5 parent: 2 - - uid: 13996 + - uid: 14876 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-68.5 parent: 2 - - uid: 13997 + - uid: 14877 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-2.5 parent: 2 - - uid: 13998 + - uid: 14878 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-39.5 parent: 2 - - uid: 13999 + - uid: 14879 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-38.5 parent: 2 - - uid: 14000 + - uid: 14880 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-37.5 parent: 2 - - uid: 14001 + - uid: 14881 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-27.5 parent: 2 - - uid: 14002 + - uid: 14882 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-26.5 parent: 2 - - uid: 14003 + - uid: 14883 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-25.5 parent: 2 - - uid: 14004 + - uid: 14884 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,16.5 parent: 2 - - uid: 14005 + - uid: 14885 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,17.5 parent: 2 - - uid: 14006 + - uid: 14886 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,17.5 parent: 2 - - uid: 14009 + - uid: 14887 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-6.5 parent: 2 - - uid: 14010 + - uid: 14888 components: - type: Transform pos: 33.5,-6.5 parent: 2 - - uid: 14011 + - uid: 14889 components: - type: Transform pos: 34.5,-6.5 parent: 2 - - uid: 14012 + - uid: 14890 components: - type: Transform pos: 36.5,-6.5 parent: 2 - - uid: 14013 + - uid: 14891 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-3.5 parent: 2 - - uid: 14014 + - uid: 14892 components: - type: Transform pos: 34.5,-7.5 parent: 2 - - uid: 14015 + - uid: 14893 components: - type: Transform pos: 33.5,-7.5 parent: 2 - - uid: 14016 + - uid: 14894 components: - type: Transform pos: 35.5,-7.5 parent: 2 - - uid: 14018 + - uid: 14895 components: - type: Transform pos: 35.5,-6.5 parent: 2 - - uid: 14019 + - uid: 14896 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-72.5 parent: 2 - - uid: 14020 + - uid: 14897 components: - type: Transform pos: -63.5,-70.5 parent: 2 - - uid: 14021 + - uid: 14898 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-71.5 parent: 2 - - uid: 14022 + - uid: 14899 components: - type: Transform pos: 36.5,-7.5 parent: 2 - - uid: 14024 + - uid: 14900 components: - type: Transform rot: 3.141592653589793 rad pos: -92.5,0.5 parent: 2 - - uid: 14025 + - uid: 14901 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,0.5 parent: 2 - - uid: 14026 + - uid: 14902 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-47.5 parent: 2 - - uid: 14027 + - uid: 14903 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-48.5 parent: 2 - - uid: 18298 + - uid: 14904 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-7.5 parent: 2 - - uid: 30661 + - uid: 14905 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-10.5 parent: 2 - - uid: 30893 + - uid: 14906 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-11.5 parent: 2 - - uid: 33196 + - uid: 14907 components: - type: Transform anchored: False @@ -100284,78 +101360,78 @@ entities: parent: 2 - type: Physics bodyType: Dynamic - - uid: 33503 + - uid: 14908 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,3.5 parent: 2 - - uid: 33624 + - uid: 14909 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,3.5 parent: 2 - - uid: 33749 + - uid: 14910 components: - type: Transform pos: 20.5,-25.5 parent: 2 - - uid: 33750 + - uid: 14911 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-27.5 parent: 2 - - uid: 35812 + - uid: 14912 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-38.5 parent: 2 - - uid: 36052 + - uid: 14913 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,-6.5 parent: 2 - - uid: 36228 + - uid: 14914 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-39.5 parent: 2 - - uid: 36230 + - uid: 14915 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-39.5 parent: 2 - - uid: 36231 + - uid: 14916 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-39.5 parent: 2 - - uid: 36234 + - uid: 14917 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-39.5 parent: 2 - - uid: 36235 + - uid: 14918 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-38.5 parent: 2 - - uid: 36332 + - uid: 14919 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-38.5 parent: 2 - - uid: 36724 + - uid: 14920 components: - type: Transform rot: 1.5707963267948966 rad @@ -100363,7 +101439,7 @@ entities: parent: 2 - proto: ChairBrass entities: - - uid: 16911 + - uid: 14921 components: - type: Transform rot: 1.5707963267948966 rad @@ -100371,15 +101447,25 @@ entities: parent: 2 - proto: ChairCarp entities: - - uid: 14028 + - uid: 14922 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,19.5 parent: 2 + - uid: 14923 + components: + - type: Transform + anchored: False + pos: -16,6.5 + parent: 2 + - type: Physics + bodyType: Dynamic + - type: Pullable + prevFixedRotation: True - proto: ChairCursed entities: - - uid: 14029 + - uid: 14924 components: - type: Transform rot: -1.5707963267948966 rad @@ -100387,112 +101473,112 @@ entities: parent: 2 - proto: ChairFolding entities: - - uid: 741 + - uid: 14925 components: - type: Transform rot: 3.141592653589793 rad pos: 57.570465,14.654764 parent: 2 - - uid: 1629 + - uid: 14926 components: - type: Transform rot: 3.141592653589793 rad pos: -45.436558,-19.29971 parent: 2 - - uid: 7091 + - uid: 14927 components: - type: Transform rot: 3.141592653589793 rad pos: 59.525253,-5.3968754 parent: 2 - - uid: 7945 + - uid: 14928 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,5.5 parent: 2 - - uid: 8747 + - uid: 14929 components: - type: Transform pos: 52.5,7.5 parent: 2 - - uid: 14008 + - uid: 14930 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.666,-10.188982 parent: 2 - - uid: 14032 + - uid: 14931 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.484047,-112.36513 parent: 2 - - uid: 14033 + - uid: 14932 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.437172,-113.287 parent: 2 - - uid: 14034 + - uid: 14933 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.484047,-112.39638 parent: 2 - - uid: 14035 + - uid: 14934 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.421547,-113.25575 parent: 2 - - uid: 15582 + - uid: 14935 components: - type: Transform pos: 53.5,7.5 parent: 2 - - uid: 21041 + - uid: 14936 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.32225,-10.282732 parent: 2 - - uid: 22643 + - uid: 14937 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.517624,-10.280629 parent: 2 - - uid: 27654 + - uid: 14938 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.751526,-9.33959 parent: 2 - - uid: 27655 + - uid: 14939 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.39215,-9.33959 parent: 2 - - uid: 27833 + - uid: 14940 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.569016,-2.982798 parent: 2 - - uid: 27837 + - uid: 14941 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.305176,-2.8026257 parent: 2 - - uid: 30902 + - uid: 14942 components: - type: Transform pos: 85.495316,-8.38681 parent: 2 - - uid: 34546 + - uid: 14943 components: - type: Transform rot: 1.5707963267948966 rad @@ -100500,102 +101586,80 @@ entities: parent: 2 - proto: ChairFoldingSpawnFolded entities: - - uid: 5729 + - uid: 14944 components: - type: Transform pos: 60.50424,-5.34227 parent: 2 - - uid: 5758 + - uid: 14945 components: - type: Transform pos: 60.47593,-5.313385 parent: 2 - - uid: 5951 + - uid: 14946 components: - type: Transform pos: 60.44713,-5.2562504 parent: 2 - - uid: 7092 + - uid: 14947 components: - type: Transform pos: 60.37924,-5.357895 parent: 2 - - uid: 7093 + - uid: 14948 components: - type: Transform pos: 60.47838,-5.1625004 parent: 2 - - uid: 7094 + - uid: 14949 components: - type: Transform pos: 60.5,-5.5 parent: 2 - - uid: 7095 + - uid: 14950 components: - type: Transform pos: 60.494003,-5.0843754 parent: 2 - - uid: 7132 + - uid: 14951 components: - type: Transform pos: 60.5,-5.5 parent: 2 - - uid: 7133 + - uid: 14952 components: - type: Transform pos: 60.44468,-5.375885 parent: 2 - - uid: 7701 + - uid: 14953 components: - type: Transform pos: 60.5,-5.5 parent: 2 - - uid: 24337 + - uid: 14954 components: - type: Transform pos: 60.44713,-5.1156254 parent: 2 - - uid: 24873 + - uid: 14955 components: - type: Transform pos: 60.494003,-5.1312504 parent: 2 - - uid: 24875 + - uid: 14956 components: - type: Transform pos: 60.50963,-5.2718754 parent: 2 - - uid: 32567 - components: - - type: Transform - pos: -14.396345,5.556999 - parent: 2 - - uid: 32568 - components: - - type: Transform - pos: -14.25572,5.869499 - parent: 2 - - uid: 34391 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.431782,5.639577 - parent: 2 - - uid: 34392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.291157,5.998952 - parent: 2 - proto: ChairGreyscale entities: - - uid: 14036 + - uid: 14957 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-3.5 parent: 2 - - uid: 14037 + - uid: 14958 components: - type: Transform rot: 1.5707963267948966 rad @@ -100603,796 +101667,808 @@ entities: parent: 2 - proto: ChairOfficeDark entities: - - uid: 6196 + - uid: 14959 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.57764,-49.38565 parent: 2 - - uid: 7248 + - uid: 14960 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.499516,-49.2919 parent: 2 - - uid: 9720 + - uid: 14961 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.53003,-23.307518 parent: 2 - - uid: 14038 + - uid: 14962 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-33.5 parent: 2 - - uid: 14039 + - uid: 14963 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-38.5 parent: 2 - - uid: 14040 + - uid: 14964 components: - type: Transform pos: -66.5,-39.5 parent: 2 - - uid: 14041 + - uid: 14965 components: - type: Transform pos: 11.5,22.5 parent: 2 - - uid: 14042 + - uid: 14966 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,25.5 parent: 2 - - uid: 14043 + - uid: 14967 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,25.5 parent: 2 - - uid: 14044 + - uid: 14968 components: - type: Transform pos: -10.5,22.5 parent: 2 - - uid: 14045 + - uid: 14969 components: - type: Transform pos: -3.5,20.5 parent: 2 - - uid: 14046 + - uid: 14970 components: - type: Transform pos: 4.5,20.5 parent: 2 - - uid: 14047 + - uid: 14971 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,9.5 parent: 2 - - uid: 14048 + - uid: 14972 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,16.5 parent: 2 - - uid: 14049 + - uid: 14973 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,8.5 parent: 2 - - uid: 14050 + - uid: 14974 components: - type: Transform pos: -3.5,8.5 parent: 2 - - uid: 14051 + - uid: 14975 components: - type: Transform pos: -36.5,4.5 parent: 2 - - uid: 14052 + - uid: 14976 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,6.5 parent: 2 - - uid: 14053 + - uid: 14977 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-36.5 parent: 2 - - uid: 14054 + - uid: 14978 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-40.5 parent: 2 - - uid: 14055 + - uid: 14979 components: - type: Transform pos: 77.5,-29.5 parent: 2 - - uid: 14056 + - uid: 14980 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-27.5 parent: 2 - - uid: 14057 + - uid: 14981 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-72.5 parent: 2 - - uid: 14058 + - uid: 14982 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-51.5 parent: 2 - - uid: 14059 + - uid: 14983 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-52.5 parent: 2 - - uid: 14060 + - uid: 14984 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-82.5 parent: 2 - - uid: 14061 + - uid: 14985 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-96.5 parent: 2 - - uid: 14062 + - uid: 14986 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-79.5 parent: 2 - - uid: 14068 + - uid: 14987 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-54.5 parent: 2 - - uid: 14069 + - uid: 14988 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-53.5 parent: 2 - - uid: 14070 + - uid: 14989 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-47.5 parent: 2 - - uid: 14071 + - uid: 14990 components: - type: Transform pos: 25.5,-75.5 parent: 2 - - uid: 14073 + - uid: 14991 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-11.5 parent: 2 - - uid: 14074 + - uid: 14992 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-10.5 parent: 2 - - uid: 14075 + - uid: 14993 components: - type: Transform pos: -57.5,-8.5 parent: 2 - - uid: 14076 + - uid: 14994 components: - type: Transform pos: -38.5,18.5 parent: 2 - - uid: 14079 + - uid: 14995 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-33.5 parent: 2 - - uid: 14691 + - uid: 14996 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-5.5 parent: 2 - - uid: 14752 + - uid: 14997 components: - type: Transform pos: 15.011005,-28.435282 parent: 2 - - uid: 14862 + - uid: 14998 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5432,-18.361076 parent: 2 - - uid: 22120 + - uid: 14999 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-1.5 parent: 2 - - uid: 22521 + - uid: 15000 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.59945,-27.290287 parent: 2 - - uid: 27392 + - uid: 15001 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.59856,-7.332609 parent: 2 - - uid: 32563 + - uid: 15002 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,15.5 parent: 2 - - uid: 34365 + - uid: 15003 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.530378,-21.308607 parent: 2 - - uid: 34366 + - uid: 15004 components: - type: Transform rot: 3.141592653589793 rad pos: 19.530378,-23.324232 parent: 2 - - uid: 34911 + - uid: 15005 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.348076,22.622547 parent: 2 - - uid: 39731 + - uid: 15006 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.6851845,-49.63274 parent: 2 - - uid: 39732 + - uid: 15007 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.3570595,-49.63274 parent: 2 - - uid: 39733 + - uid: 15008 components: - type: Transform pos: 9.9820595,-50.429615 parent: 2 - - uid: 40135 + - uid: 15009 components: - type: Transform pos: 49.501556,-53.400707 parent: 2 - - uid: 40136 + - uid: 15010 components: - type: Transform pos: 50.970306,-50.447582 parent: 2 - - uid: 40137 + - uid: 15011 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.470306,-52.338207 parent: 2 - - uid: 40426 + - uid: 15012 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.698174,21.883526 parent: 2 + - uid: 15013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.0770035,10.712402 + parent: 2 + - uid: 15014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.01374,4.5388403 + parent: 2 - proto: ChairOfficeLight entities: - - uid: 2750 + - uid: 15015 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.822334,-2.3439455 parent: 2 - - uid: 14081 + - uid: 15016 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.280975,-33.892605 parent: 2 - - uid: 14082 + - uid: 15017 components: - type: Transform pos: -67.5,-76.5 parent: 2 - - uid: 14084 + - uid: 15018 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,1.5 parent: 2 - - uid: 14085 + - uid: 15019 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,16.5 parent: 2 - - uid: 14086 + - uid: 15020 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,15.5 parent: 2 - - uid: 14087 + - uid: 15021 components: - type: Transform pos: 7.5,10.5 parent: 2 - - uid: 14088 + - uid: 15022 components: - type: Transform pos: 6.5,10.5 parent: 2 - - uid: 14089 + - uid: 15023 components: - type: Transform pos: 5.5,10.5 parent: 2 - - uid: 14090 + - uid: 15024 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,7.5 parent: 2 - - uid: 14091 + - uid: 15025 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,7.5 parent: 2 - - uid: 14092 + - uid: 15026 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,7.5 parent: 2 - - uid: 14093 + - uid: 15027 components: - type: Transform pos: -23.5,7.5 parent: 2 - - uid: 14094 + - uid: 15028 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-19.5 parent: 2 - - uid: 14095 + - uid: 15029 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-8.5 parent: 2 - - uid: 14096 + - uid: 15030 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-0.5 parent: 2 - - uid: 14097 + - uid: 15031 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-42.5 parent: 2 - - uid: 14098 + - uid: 15032 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-55.5 parent: 2 - - uid: 14099 + - uid: 15033 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-55.5 parent: 2 - - uid: 14100 + - uid: 15034 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-68.5 parent: 2 - - uid: 14103 + - uid: 15035 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-47.5 parent: 2 - - uid: 14104 + - uid: 15036 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-47.5 parent: 2 - - uid: 14105 + - uid: 15037 components: - type: Transform pos: -49.5,-49.5 parent: 2 - - uid: 14106 + - uid: 15038 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,13.5 parent: 2 - - uid: 14107 + - uid: 15039 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-9.5 parent: 2 - - uid: 14108 + - uid: 15040 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-47.5 parent: 2 - - uid: 14109 + - uid: 15041 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-39.5 parent: 2 - - uid: 14110 + - uid: 15042 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,1.5 parent: 2 - - uid: 14111 + - uid: 15043 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-39.5 parent: 2 - - uid: 14113 + - uid: 15044 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-74.5 parent: 2 - - uid: 14114 + - uid: 15045 components: - type: Transform pos: 43.5,-65.5 parent: 2 - - uid: 14115 + - uid: 15046 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-0.5 parent: 2 - - uid: 14116 + - uid: 15047 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-2.5 parent: 2 - - uid: 14117 + - uid: 15048 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,2.5 parent: 2 - - uid: 14118 + - uid: 15049 components: - type: Transform pos: -72.5,4.5 parent: 2 - - uid: 14119 + - uid: 15050 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,3.5 parent: 2 - - uid: 14120 + - uid: 15051 components: - type: Transform pos: -73.5,4.5 parent: 2 - - uid: 14121 + - uid: 15052 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,3.5 parent: 2 - - uid: 14122 + - uid: 15053 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,2.5 parent: 2 - - uid: 14123 + - uid: 15054 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,0.5 parent: 2 - - uid: 14124 + - uid: 15055 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,1.5 parent: 2 - - uid: 14125 + - uid: 15056 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,0.5 parent: 2 - - uid: 14126 + - uid: 15057 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-48.5 parent: 2 - - uid: 14127 + - uid: 15058 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.249725,-28.90823 parent: 2 - - uid: 14128 + - uid: 15059 components: - type: Transform rot: 3.141592653589793 rad pos: -52.28553,-55.28827 parent: 2 - - uid: 14129 + - uid: 15060 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.386272,-33.11982 parent: 2 - - uid: 14130 + - uid: 15061 components: - type: Transform rot: 3.141592653589793 rad pos: -8.50747,-78.41749 parent: 2 - - uid: 37469 + - uid: 15062 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.505642,-4.403925 parent: 2 - - uid: 37515 + - uid: 15063 components: - type: Transform pos: 51.490017,-4.41955 parent: 2 - - uid: 37691 + - uid: 15064 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-10.5 parent: 2 - - uid: 37692 + - uid: 15065 components: - type: Transform pos: 52.5,-8.5 parent: 2 - - uid: 37722 + - uid: 15066 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-10.5 parent: 2 - - uid: 37723 + - uid: 15067 components: - type: Transform pos: 51.5,-8.5 parent: 2 - - uid: 38149 - components: - - type: Transform - pos: -4.5,-12.5 - parent: 37887 - - uid: 39129 + - uid: 15068 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.2836218,-38.887325 parent: 2 - - uid: 40728 + - uid: 15069 components: - type: Transform pos: 49.476986,-4.3249555 parent: 2 + - uid: 41090 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 40828 - proto: ChairPilotSeat entities: - - uid: 14131 + - uid: 15070 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,24.5 parent: 2 - - uid: 14132 + - uid: 15071 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-92.5 parent: 2 - - uid: 14133 + - uid: 15072 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-93.5 parent: 2 - - uid: 21055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 21045 - - uid: 21975 - components: - - type: Transform - pos: -0.5,2.5 - parent: 21045 - - uid: 21994 - components: - - type: Transform - pos: 1.5,2.5 - parent: 21045 - - uid: 28463 + - uid: 15073 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-13.5 parent: 2 - - uid: 28478 + - uid: 15074 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-13.5 parent: 2 - - uid: 28532 + - uid: 15075 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-13.5 parent: 2 - - uid: 28558 + - uid: 15076 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-18.5 parent: 2 - - uid: 28559 + - uid: 15077 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-16.5 parent: 2 - - uid: 28843 + - uid: 15078 components: - type: Transform pos: 15.5,-18.5 parent: 2 - - uid: 38818 + - uid: 40724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 40666 + - uid: 40725 + components: + - type: Transform + pos: -0.5,2.5 + parent: 40666 + - uid: 40726 + components: + - type: Transform + pos: 1.5,2.5 + parent: 40666 + - uid: 41764 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 - parent: 38722 - - uid: 38819 + parent: 41669 + - uid: 41765 components: - type: Transform pos: 4.5,-1.5 - parent: 38722 - - uid: 38820 + parent: 41669 + - uid: 41766 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-6.5 - parent: 38722 - - uid: 38821 + parent: 41669 + - uid: 41767 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-6.5 - parent: 38722 - - uid: 38822 + parent: 41669 + - uid: 41768 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 - parent: 38722 - - uid: 38823 + parent: 41669 + - uid: 41769 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-5.5 - parent: 38722 - - uid: 38824 + parent: 41669 + - uid: 41770 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-4.5 - parent: 38722 - - uid: 38825 + parent: 41669 + - uid: 41771 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,0.5 - parent: 38722 - - uid: 38826 + parent: 41669 + - uid: 41772 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,1.5 - parent: 38722 - - uid: 38827 + parent: 41669 + - uid: 41773 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,3.5 - parent: 38722 - - uid: 38828 + parent: 41669 + - uid: 41774 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-5.5 - parent: 38722 - - uid: 38829 + parent: 41669 + - uid: 41775 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,0.5 - parent: 38722 + parent: 41669 - proto: ChairRitual entities: - - uid: 14134 + - uid: 15079 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-26.5 parent: 2 - - uid: 14135 + - uid: 15080 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-27.5 parent: 2 - - uid: 14136 + - uid: 15081 components: - type: Transform rot: -1.5707963267948966 rad @@ -101400,323 +102476,289 @@ entities: parent: 2 - proto: ChairWood entities: - - uid: 4602 - components: - - type: Transform - pos: -8.617393,19.439215 - parent: 2 - - uid: 14138 + - uid: 15082 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-3.5 parent: 2 - - uid: 14139 + - uid: 15083 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,3.5 parent: 2 - - uid: 14140 + - uid: 15084 components: - type: Transform pos: 32.5,5.5 parent: 2 - - uid: 14141 + - uid: 15085 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-4.5 parent: 2 - - uid: 14142 + - uid: 15086 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-0.5 parent: 2 - - uid: 14143 + - uid: 15087 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-96.5 parent: 2 - - uid: 14145 + - uid: 15088 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,12.5 parent: 2 - - uid: 14146 + - uid: 15089 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,13.5 parent: 2 - - uid: 14149 + - uid: 15090 components: - type: Transform pos: 32.5,-67.5 parent: 2 - - uid: 14150 + - uid: 15091 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-69.5 parent: 2 - - uid: 14152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,13.5 - parent: 2 - - uid: 14153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,13.5 - parent: 2 - - uid: 14155 + - uid: 15092 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.5,-7.5 parent: 2 - - uid: 14156 + - uid: 15093 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-10.5 parent: 2 - - uid: 14157 + - uid: 15094 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-8.5 parent: 2 - - uid: 14158 + - uid: 15095 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,3.5 parent: 2 - - uid: 14159 + - uid: 15096 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-4.5 parent: 2 - - uid: 14160 + - uid: 15097 components: - type: Transform pos: 36.5,-2.5 parent: 2 - - uid: 14161 + - uid: 15098 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-96.5 parent: 2 - - uid: 14162 + - uid: 15099 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-3.5 parent: 2 - - uid: 14163 + - uid: 15100 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-0.5 parent: 2 - - uid: 14164 + - uid: 15101 components: - type: Transform rot: -1.5707963267948966 rad pos: 82.5,-48.5 parent: 2 - - uid: 14165 + - uid: 15102 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,-47.5 parent: 2 - - uid: 14168 + - uid: 15103 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-98.5 parent: 2 - - uid: 14169 + - uid: 15104 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-98.5 parent: 2 - - uid: 14170 + - uid: 15105 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-101.5 parent: 2 - - uid: 14171 + - uid: 15106 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-101.5 parent: 2 - - uid: 14172 + - uid: 15107 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-95.5 parent: 2 - - uid: 14173 + - uid: 15108 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,-46.5 parent: 2 - - uid: 14174 + - uid: 15109 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-114.5 parent: 2 - - uid: 14175 + - uid: 15110 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-115.5 parent: 2 - - uid: 14176 + - uid: 15111 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-116.5 parent: 2 - - uid: 14177 + - uid: 15112 components: - type: Transform rot: 1.5707963267948966 rad pos: -84.5,-16.5 parent: 2 - - uid: 14178 + - uid: 15113 components: - type: Transform rot: 1.5707963267948966 rad pos: -84.5,-15.5 parent: 2 - - uid: 14179 + - uid: 15114 components: - type: Transform rot: 1.5707963267948966 rad pos: -84.5,-14.5 parent: 2 - - uid: 14180 + - uid: 15115 components: - type: Transform rot: 3.141592653589793 rad pos: 38.520115,-64.310036 parent: 2 - - uid: 14181 + - uid: 15116 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.546547,-115.38075 parent: 2 - - uid: 14182 + - uid: 15117 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.573105,-90.61801 parent: 2 - - uid: 14183 + - uid: 15118 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,0.5 parent: 2 - - uid: 14184 + - uid: 15119 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,0.5 parent: 2 - - uid: 17793 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.389114,16.663908 - parent: 2 - - uid: 28692 - components: - - type: Transform - pos: -9.492393,19.45484 - parent: 2 - - uid: 29922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.435989,15.648283 - parent: 2 - proto: CheapLighter entities: - - uid: 14185 + - uid: 15120 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.373795,5.7326446 parent: 2 - - uid: 14186 + - uid: 15121 components: - type: Transform pos: -57.500847,-89.26489 parent: 2 - - uid: 27943 + - uid: 15122 components: - type: Transform pos: 81.40401,0.4696207 parent: 2 - proto: CheapRollerBed entities: - - uid: 9346 + - uid: 15123 components: - type: Transform pos: -37.5,-36.5 parent: 2 - - uid: 14191 + - uid: 15124 components: - type: Transform pos: -49.5,-22.5 parent: 2 - - uid: 14192 + - uid: 15125 components: - type: Transform pos: -47.5,-29.5 parent: 2 - - uid: 14193 + - uid: 15126 components: - type: Transform pos: -47.5,-29.5 parent: 2 - - uid: 14194 + - uid: 15127 components: - type: Transform pos: -48.5,-29.5 parent: 2 - - uid: 14195 + - uid: 15128 components: - type: Transform pos: -46.5,-29.5 parent: 2 - - uid: 18539 + - uid: 15129 components: - type: Transform pos: -38.5,-36.5 parent: 2 - proto: CheckerBoard entities: - - uid: 40760 + - uid: 15130 components: - type: Transform rot: -1.5707963267948966 rad @@ -101724,243 +102766,264 @@ entities: parent: 2 - proto: ChemDispenser entities: - - uid: 14196 + - uid: 15131 components: - type: Transform pos: -34.5,-33.5 parent: 2 - - uid: 14197 + - uid: 15132 components: - type: Transform pos: -34.5,-29.5 parent: 2 - - uid: 38150 + - uid: 41091 components: - type: Transform pos: -4.5,-13.5 - parent: 37887 + parent: 40828 +- proto: ChemicalMedipen + entities: + - uid: 36 + components: + - type: MetaData + desc: Стерильный инъектор для быстрого введения пакса буйным пациентам. Его нельзя перезаправить. + name: успокоительный медипен + - type: Transform + parent: 35 + - type: SolutionContainerManager + solutions: null + containers: + - pen + - type: Tag + tags: [] + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@pen: !type:ContainerSlot + ent: 37 - proto: ChemicalPayload entities: - - uid: 14199 + - uid: 15133 components: - type: Transform pos: -68.6147,-67.46758 parent: 2 - - uid: 14200 + - uid: 15134 components: - type: Transform pos: -68.45845,-67.38946 parent: 2 - - uid: 14201 + - uid: 15135 components: - type: Transform pos: -68.349075,-67.46758 parent: 2 - - uid: 14202 + - uid: 15136 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.699608,-31.262802 parent: 2 - - uid: 14203 + - uid: 15137 components: - type: Transform pos: -52.264374,-2.7246375 parent: 2 - - uid: 14204 + - uid: 15138 components: - type: Transform pos: -38.70702,-32.901443 parent: 2 - - uid: 14205 + - uid: 15139 components: - type: Transform pos: -50.6551,-60.29961 parent: 2 - - uid: 14206 + - uid: 15140 components: - type: Transform pos: -50.6551,-60.29961 parent: 2 - - uid: 14207 + - uid: 15141 components: - type: Transform pos: -50.6551,-60.29961 parent: 2 - - uid: 14208 + - uid: 15142 components: - type: Transform pos: -38.70702,-32.901443 parent: 2 - - uid: 14209 + - uid: 15143 components: - type: Transform pos: -38.722645,-32.88582 parent: 2 - - uid: 14210 + - uid: 15144 components: - type: Transform pos: -38.70702,-32.901443 parent: 2 - - uid: 38151 + - uid: 41092 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.3637543,-13.543121 - parent: 37887 + parent: 40828 - proto: ChemistryEmptyBottle01 entities: - - uid: 34235 + - uid: 1982 + components: + - type: Transform + parent: 1980 + - type: Physics + canCollide: False + - uid: 1983 + components: + - type: Transform + parent: 1980 + - type: Physics + canCollide: False + - uid: 15145 components: - type: Transform pos: -6.8221693,-36.19664 parent: 2 - - uid: 34237 + - uid: 15146 components: - type: Transform pos: -6.4002943,-36.25914 parent: 2 - - uid: 34239 + - uid: 15147 components: - type: Transform pos: -6.2909193,-36.431015 parent: 2 - - uid: 41028 +- proto: ChemistryEmptyBottle02 + entities: + - uid: 1984 components: - type: Transform - parent: 37041 + parent: 1980 - type: Physics canCollide: False - - uid: 41033 + - uid: 1985 components: - type: Transform - parent: 37041 + parent: 1980 - type: Physics canCollide: False -- proto: ChemistryEmptyBottle02 +- proto: ChemistryEmptyBottle03 entities: - - uid: 41034 - components: - - type: Transform - parent: 37041 - - type: Physics - canCollide: False - - uid: 41035 + - uid: 1986 components: - type: Transform - parent: 37041 + parent: 1980 - type: Physics canCollide: False -- proto: ChemistryEmptyBottle03 - entities: - - uid: 34236 + - uid: 15148 components: - type: Transform pos: -6.7127943,-36.41539 parent: 2 - - uid: 41032 +- proto: ChemistryEmptyBottle04 + entities: + - uid: 1987 components: - type: Transform - parent: 37041 + parent: 1980 - type: Physics canCollide: False -- proto: ChemistryEmptyBottle04 - entities: - - uid: 34223 + - uid: 15149 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.0601406,-36.2156 parent: 2 - - uid: 41031 - components: - - type: Transform - parent: 37041 - - type: Physics - canCollide: False - proto: ChemistryHotplate entities: - - uid: 13379 + - uid: 15150 components: - type: Transform pos: -20.5,-21.5 parent: 2 - - uid: 14211 + - uid: 15151 components: - type: Transform pos: 28.5,12.5 parent: 2 - - uid: 14212 + - uid: 15152 components: - type: Transform pos: -36.5,-31.5 parent: 2 - - uid: 14252 + - uid: 15153 components: - type: Transform pos: -20.5,-22.5 parent: 2 - proto: ChemMaster entities: - - uid: 14213 + - uid: 15154 components: - type: Transform pos: -34.5,-28.5 parent: 2 - - uid: 14214 + - uid: 15155 components: - type: Transform pos: -34.5,-34.5 parent: 2 - - uid: 34213 + - uid: 15156 components: - type: Transform pos: -3.5,-34.5 parent: 2 - - uid: 38152 + - uid: 41093 components: - type: Transform pos: -5.5,-13.5 - parent: 37887 + parent: 40828 - proto: ChessBoard entities: - - uid: 6051 + - uid: 15157 components: - type: Transform pos: 46.46344,7.6703796 parent: 2 - - uid: 14215 + - uid: 15158 components: - type: Transform pos: -59.52525,-9.469836 parent: 2 - - uid: 14216 + - uid: 15159 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.469124,-46.61436 parent: 2 - - uid: 32899 + - uid: 15160 components: - type: Transform pos: 53.5,6.5 parent: 2 - proto: ChlorineChemistryVial entities: - - uid: 41121 + - uid: 15161 components: - type: Transform pos: -19.551924,-33.235367 parent: 2 - proto: ChurchBell entities: - - uid: 14217 + - uid: 15162 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-65.5 parent: 2 - - uid: 14218 + - uid: 15163 components: - type: Transform rot: 3.141592653589793 rad @@ -101968,7 +103031,7 @@ entities: parent: 2 - proto: ChurchOrganInstrument entities: - - uid: 14219 + - uid: 15164 components: - type: Transform rot: 3.141592653589793 rad @@ -101976,113 +103039,106 @@ entities: parent: 2 - proto: Cigar entities: - - uid: 14220 + - uid: 15165 components: - type: Transform pos: 77.70103,-26.411095 parent: 2 - - uid: 14221 + - uid: 15166 components: - type: Transform pos: 36.530045,3.6545196 parent: 2 - proto: CigaretteIpecac entities: - - uid: 14222 + - uid: 15167 components: - type: Transform pos: -55.516136,-92.45141 parent: 2 - - uid: 14223 + - uid: 15168 components: - type: Transform pos: -55.37551,-92.32641 parent: 2 - proto: CigaretteSpent entities: - - uid: 14224 + - uid: 15169 components: - type: Transform pos: -68.60111,-12.42276 parent: 2 - - uid: 14225 + - uid: 15170 components: - type: Transform pos: -68.31986,-12.969635 parent: 2 - - uid: 14226 + - uid: 15171 components: - type: Transform pos: -67.97611,-13.313385 parent: 2 - - uid: 14227 + - uid: 15172 components: - type: Transform pos: -68.27299,-12.032135 parent: 2 - proto: CigarGold entities: - - uid: 14228 + - uid: 15173 components: - type: Transform pos: 13.70711,15.040446 parent: 2 - - uid: 22136 + - uid: 15174 components: - type: Transform pos: 56.175175,-2.397201 parent: 2 - - uid: 22154 + - uid: 15175 components: - type: Transform pos: 56.40969,-2.412826 parent: 2 - proto: CigarGoldCase entities: - - uid: 14229 + - uid: 15176 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5549507,13.630443 parent: 2 -- proto: CigarGoldSpent - entities: - - uid: 14231 - components: - - type: Transform - pos: -11.293084,11.714788 - parent: 2 - proto: CigarSpent entities: - - uid: 14232 + - uid: 15177 components: - type: Transform pos: 23.683548,-69.26234 parent: 2 - proto: CigPackRed entities: - - uid: 14234 + - uid: 15178 components: - type: Transform pos: 57.99822,15.640291 parent: 2 - proto: CigPackSyndicate entities: - - uid: 652 + - uid: 15179 components: - type: Transform pos: 14.530895,-19.33876 parent: 2 - proto: CircuitImprinter entities: - - uid: 14235 + - uid: 15180 components: - type: Transform pos: -34.5,-61.5 parent: 2 - proto: CleanerDispenser entities: - - uid: 14237 + - uid: 15181 components: - type: Transform rot: 3.141592653589793 rad @@ -102090,7 +103146,7 @@ entities: parent: 2 - proto: CloningConsoleComputerCircuitboard entities: - - uid: 34210 + - uid: 15182 components: - type: Transform rot: -1.5707963267948966 rad @@ -102098,46 +103154,46 @@ entities: parent: 2 - proto: CloningPod entities: - - uid: 39119 + - uid: 15183 components: - type: Transform pos: -7.5,-41.5 parent: 2 - proto: ClosetBombFilled entities: - - uid: 1878 + - uid: 15184 components: - type: Transform pos: 57.5,-20.5 parent: 2 - - uid: 14243 + - uid: 15185 components: - type: Transform pos: -67.5,-67.5 parent: 2 - - uid: 14244 + - uid: 15186 components: - type: Transform pos: -67.5,-63.5 parent: 2 - - uid: 14245 + - uid: 15187 components: - type: Transform pos: -65.5,-68.5 parent: 2 - - uid: 37860 + - uid: 15188 components: - type: Transform pos: 70.5,6.5 parent: 2 - - uid: 37861 + - uid: 15189 components: - type: Transform pos: 71.5,6.5 parent: 2 - proto: ClosetChefFilled entities: - - uid: 14247 + - uid: 15190 components: - type: Transform pos: 79.5,-19.5 @@ -102160,14 +103216,14 @@ entities: - 0 - 0 - 0 - - uid: 14248 + - uid: 15191 components: - type: Transform pos: 24.5,11.5 parent: 2 - proto: ClosetCursed entities: - - uid: 33755 + - uid: 15192 components: - type: Transform pos: 8.5,-27.5 @@ -102200,7 +103256,7 @@ entities: isPlaceable: True - proto: ClosetEmergency entities: - - uid: 36751 + - uid: 15193 components: - type: Transform pos: -6.5,-43.5 @@ -102229,13 +103285,13 @@ entities: showEnts: False occludes: True ents: - - 36776 - - 36775 + - 15195 + - 15194 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 37259 + - uid: 15196 components: - type: Transform pos: 5.5,-20.5 @@ -102264,35 +103320,35 @@ entities: showEnts: False occludes: True ents: - - 37376 - - 37377 + - 15197 + - 15198 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: ClosetEmergencyFilledRandom entities: - - uid: 14251 + - uid: 15199 components: - type: Transform pos: 28.5,17.5 parent: 2 - - uid: 14253 + - uid: 15200 components: - type: Transform pos: 44.5,-89.5 parent: 2 - - uid: 14254 + - uid: 15201 components: - type: Transform pos: -4.5,-99.5 parent: 2 - - uid: 14255 + - uid: 15202 components: - type: Transform pos: -42.5,4.5 parent: 2 - - uid: 14256 + - uid: 15203 components: - type: Transform pos: -36.5,-14.5 @@ -102315,419 +103371,437 @@ entities: - 0 - 0 - 0 - - uid: 14257 + - uid: 15204 components: - type: Transform pos: -76.5,-40.5 parent: 2 - - uid: 14258 + - uid: 15205 components: - type: Transform pos: -50.5,6.5 parent: 2 - - uid: 14259 + - uid: 15206 components: - type: Transform pos: 42.5,-53.5 parent: 2 - - uid: 14260 + - uid: 15207 components: - type: Transform pos: 63.5,-71.5 parent: 2 - - uid: 14262 + - uid: 15208 components: - type: Transform pos: 17.5,-76.5 parent: 2 - - uid: 14263 + - uid: 15209 components: - type: Transform pos: -67.5,-41.5 parent: 2 - - uid: 14264 + - uid: 15210 components: - type: Transform pos: 85.5,-42.5 parent: 2 - - uid: 14265 + - uid: 15211 components: - type: Transform pos: 89.5,-20.5 parent: 2 - - uid: 14266 + - uid: 15212 components: - type: Transform pos: 100.5,-24.5 parent: 2 - - uid: 14267 + - uid: 15213 components: - type: Transform pos: 100.5,-38.5 parent: 2 - - uid: 14268 + - uid: 15214 components: - type: Transform pos: 59.5,-70.5 parent: 2 - - uid: 14269 + - uid: 15215 components: - type: Transform pos: 108.5,-37.5 parent: 2 - - uid: 14270 + - uid: 15216 components: - type: Transform pos: 108.5,-25.5 parent: 2 - - uid: 14271 + - uid: 15217 components: - type: Transform pos: 109.5,-18.5 parent: 2 - - uid: 14272 + - uid: 15218 components: - type: Transform pos: -30.5,-11.5 parent: 2 - - uid: 14273 + - uid: 15219 components: - type: Transform pos: -30.5,-60.5 parent: 2 - - uid: 14274 + - uid: 15220 components: - type: Transform pos: 19.5,-74.5 parent: 2 - - uid: 14275 + - uid: 15221 components: - type: Transform pos: 51.5,-30.5 parent: 2 - - uid: 14276 + - uid: 15222 components: - type: Transform pos: 31.5,-28.5 parent: 2 - - uid: 14277 + - uid: 15223 components: - type: Transform pos: 35.5,-55.5 parent: 2 - - uid: 14278 + - uid: 15224 components: - type: Transform pos: 19.5,-83.5 parent: 2 - - uid: 14279 + - uid: 15225 components: - type: Transform pos: -52.5,-79.5 parent: 2 - - uid: 14280 + - uid: 15226 components: - type: Transform pos: -64.5,-62.5 parent: 2 - - uid: 14281 + - uid: 15227 components: - type: Transform pos: -61.5,-35.5 parent: 2 - - uid: 14282 + - uid: 15228 components: - type: Transform pos: -33.5,-3.5 parent: 2 - - uid: 14283 + - uid: 15229 components: - type: Transform pos: 19.5,4.5 parent: 2 - - uid: 14284 + - uid: 15230 components: - type: Transform pos: 41.5,-20.5 parent: 2 - - uid: 14285 + - uid: 15231 components: - type: Transform pos: 68.5,-16.5 parent: 2 - - uid: 14286 + - uid: 15232 components: - type: Transform pos: -72.5,-31.5 parent: 2 - - uid: 14287 + - uid: 15233 components: - type: Transform pos: -37.5,-95.5 parent: 2 - - uid: 14288 + - uid: 15234 components: - type: Transform pos: -76.5,-29.5 parent: 2 - - uid: 14289 + - uid: 15235 components: - type: Transform pos: -51.5,-51.5 parent: 2 - - uid: 14290 + - uid: 15236 components: - type: Transform pos: -69.5,-26.5 parent: 2 - - uid: 14291 + - uid: 15237 components: - type: Transform pos: -56.5,3.5 parent: 2 - - uid: 14292 + - uid: 15238 components: - type: Transform pos: 49.5,-29.5 parent: 2 - - uid: 14294 + - uid: 15239 components: - type: Transform pos: -19.5,14.5 parent: 2 - - uid: 14295 + - uid: 15240 components: - type: Transform pos: 23.5,-1.5 parent: 2 - - uid: 14296 + - uid: 15241 components: - type: Transform pos: -23.5,-1.5 parent: 2 - - uid: 14297 + - uid: 15242 components: - type: Transform pos: -30.5,-27.5 parent: 2 - - uid: 14298 + - uid: 15243 components: - type: Transform pos: 36.5,18.5 parent: 2 - - uid: 14299 + - uid: 15244 components: - type: Transform pos: 107.5,-47.5 parent: 2 - - uid: 14300 + - uid: 15245 components: - type: Transform pos: -39.5,-79.5 parent: 2 - - uid: 14303 + - uid: 15246 components: - type: Transform pos: 35.5,-76.5 parent: 2 - - uid: 14304 + - uid: 15247 components: - type: Transform pos: 21.5,21.5 parent: 2 - - uid: 14305 + - uid: 15248 components: - type: Transform pos: 91.5,-54.5 parent: 2 - - uid: 14307 + - uid: 15249 components: - type: Transform pos: 93.5,-46.5 parent: 2 - - uid: 14308 + - uid: 15250 components: - type: Transform pos: 111.5,-44.5 parent: 2 - - uid: 14310 + - uid: 15251 components: - type: Transform pos: -66.5,-0.5 parent: 2 - - uid: 14311 + - uid: 15252 components: - type: Transform pos: -55.5,7.5 parent: 2 - - uid: 14312 + - uid: 15253 components: - type: Transform pos: -66.5,-4.5 parent: 2 - - uid: 14313 + - uid: 15254 components: - type: Transform pos: -56.5,-103.5 parent: 2 - - uid: 14314 + - uid: 15255 components: - type: Transform pos: -29.5,-109.5 parent: 2 - - uid: 14315 + - uid: 15256 components: - type: Transform pos: -44.5,-107.5 parent: 2 - - uid: 14316 + - uid: 15257 components: - type: Transform pos: -89.5,-3.5 parent: 2 - - uid: 14317 + - uid: 15258 components: - type: Transform pos: -81.5,-1.5 parent: 2 - - uid: 14318 + - uid: 15259 components: - type: Transform pos: -77.5,-15.5 parent: 2 - - uid: 14319 + - uid: 15260 components: - type: Transform pos: -72.5,-4.5 parent: 2 - - uid: 14321 + - uid: 15261 components: - type: Transform pos: 92.5,-78.5 parent: 2 - - uid: 14322 + - uid: 15262 components: - type: Transform pos: 96.5,-84.5 parent: 2 - - uid: 14323 + - uid: 15263 components: - type: Transform pos: 96.5,-76.5 parent: 2 - - uid: 14324 + - uid: 15264 components: - type: Transform pos: -35.5,-119.5 parent: 2 - - uid: 14325 + - uid: 15265 components: - type: Transform pos: -58.5,-118.5 parent: 2 - - uid: 14326 + - uid: 15266 components: - type: Transform pos: 40.5,31.5 parent: 2 - - uid: 14327 + - 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: 15267 components: - type: Transform pos: -51.5,-40.5 parent: 2 - - uid: 27964 + - uid: 15268 components: - type: Transform pos: 41.5,14.5 parent: 2 - - uid: 36750 + - uid: 15269 components: - type: Transform pos: -9.5,-36.5 parent: 2 - - uid: 38153 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 37887 - - uid: 39481 + - uid: 15270 components: - type: Transform pos: 1.5,-5.5 parent: 2 + - uid: 41094 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 40828 - proto: ClosetEmergencyN2FilledRandom entities: - - uid: 14328 + - uid: 15271 components: - type: Transform pos: -13.5,-79.5 parent: 2 - - uid: 14329 + - uid: 15272 components: - type: Transform pos: 63.5,-49.5 parent: 2 - - uid: 14330 + - uid: 15273 components: - type: Transform pos: -32.5,-69.5 parent: 2 - - uid: 14331 + - uid: 15274 components: - type: Transform pos: 20.5,-70.5 parent: 2 - - uid: 14333 + - uid: 15275 components: - type: Transform pos: 99.5,-44.5 parent: 2 - - uid: 14335 + - uid: 15276 components: - type: Transform pos: 31.5,24.5 parent: 2 - - uid: 14336 + - uid: 15277 components: - type: Transform pos: -41.5,9.5 parent: 2 - - uid: 14337 + - uid: 15278 components: - type: Transform pos: 38.5,-55.5 parent: 2 - - uid: 14338 + - uid: 15279 components: - type: Transform pos: 101.5,-38.5 parent: 2 - - uid: 14339 + - uid: 15280 components: - type: Transform pos: 6.5,-78.5 parent: 2 - - uid: 14340 + - uid: 15281 components: - type: Transform pos: -70.5,-32.5 parent: 2 - - uid: 14341 + - uid: 15282 components: - type: Transform pos: 6.5,24.5 parent: 2 - - uid: 14342 + - uid: 15283 components: - type: Transform pos: -23.5,17.5 parent: 2 - - uid: 14343 + - uid: 15284 components: - type: Transform pos: -61.5,6.5 parent: 2 - - uid: 14344 + - uid: 15285 components: - type: Transform anchored: True @@ -102735,42 +103809,78 @@ entities: parent: 2 - type: Physics bodyType: Static - - uid: 14346 + - uid: 15286 components: - type: Transform pos: 18.5,-83.5 parent: 2 - - uid: 18527 + - uid: 15287 components: - type: Transform pos: -16.5,15.5 parent: 2 - - uid: 36766 + - uid: 15288 components: - type: Transform pos: -14.5,18.5 parent: 2 - - uid: 40772 + - uid: 15289 components: - type: Transform pos: 70.5,-6.5 parent: 2 - - uid: 41115 + - uid: 15290 components: - type: Transform pos: 75.5,5.5 parent: 2 - proto: ClosetFire entities: - - uid: 14347 + - uid: 115 + components: + - type: Transform + pos: -5.5,-43.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: + - 118 + - 119 + - 116 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15291 components: - type: Transform pos: -74.5,-29.5 parent: 2 - - uid: 36777 + - uid: 15292 components: - type: Transform - pos: -5.5,-43.5 + pos: 6.5,-16.5 parent: 2 - type: EntityStorage air: @@ -102796,120 +103906,84 @@ entities: showEnts: False occludes: True ents: - - 37255 - - 36786 - - 37012 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 37256 - components: - - type: Transform - pos: 6.5,-16.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: - - 37257 + - 15293 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: ClosetFireFilled entities: - - uid: 14348 + - uid: 15294 components: - type: Transform pos: 106.5,-52.5 parent: 2 - - uid: 14349 + - uid: 15295 components: - type: Transform pos: 89.5,-44.5 parent: 2 - - uid: 14350 + - uid: 15296 components: - type: Transform pos: -39.5,-80.5 parent: 2 - - uid: 14351 + - uid: 15297 components: - type: Transform pos: 31.5,-29.5 parent: 2 - - uid: 14352 + - uid: 15298 components: - type: Transform pos: 16.5,-74.5 parent: 2 - - uid: 14353 + - uid: 15299 components: - type: Transform pos: -30.5,-59.5 parent: 2 - - uid: 14354 + - uid: 15300 components: - type: Transform pos: -30.5,-26.5 parent: 2 - - uid: 14355 + - uid: 15301 components: - type: Transform pos: -30.5,-9.5 parent: 2 - - uid: 14356 + - uid: 15302 components: - type: Transform pos: -67.5,-34.5 parent: 2 - - uid: 14357 + - uid: 15303 components: - type: Transform pos: 46.5,-53.5 parent: 2 - - uid: 14358 + - uid: 15304 components: - type: Transform pos: -64.5,-45.5 parent: 2 - - uid: 14359 + - uid: 15305 components: - type: Transform pos: 47.5,-89.5 parent: 2 - - uid: 14360 + - uid: 15306 components: - type: Transform pos: 61.5,-70.5 parent: 2 - - uid: 14361 + - uid: 15307 components: - type: Transform pos: -51.5,-45.5 parent: 2 - - uid: 14363 + - uid: 15308 components: - type: Transform pos: 35.5,-19.5 @@ -102932,97 +104006,97 @@ entities: - 0 - 0 - 0 - - uid: 14364 + - uid: 15309 components: - type: Transform pos: 31.5,16.5 parent: 2 - - uid: 14365 + - uid: 15310 components: - type: Transform pos: -42.5,6.5 parent: 2 - - uid: 14366 + - uid: 15311 components: - type: Transform pos: -34.5,-14.5 parent: 2 - - uid: 14367 + - uid: 15312 components: - type: Transform pos: 40.5,-71.5 parent: 2 - - uid: 14368 + - uid: 15313 components: - type: Transform pos: 36.5,-55.5 parent: 2 - - uid: 14369 + - uid: 15314 components: - type: Transform pos: 64.5,-44.5 parent: 2 - - uid: 14370 + - uid: 15315 components: - type: Transform pos: -52.5,-89.5 parent: 2 - - uid: 14371 + - uid: 15316 components: - type: Transform pos: -65.5,-16.5 parent: 2 - - uid: 14373 + - uid: 15317 components: - type: Transform pos: 44.5,17.5 parent: 2 - - uid: 14374 + - uid: 15318 components: - type: Transform pos: -35.5,17.5 parent: 2 - - uid: 14375 + - uid: 15319 components: - type: Transform pos: 100.5,-20.5 parent: 2 - - uid: 14376 + - uid: 15320 components: - type: Transform pos: 89.5,-38.5 parent: 2 - - uid: 14377 + - uid: 15321 components: - type: Transform pos: 85.5,-20.5 parent: 2 - - uid: 14378 + - uid: 15322 components: - type: Transform pos: 100.5,-42.5 parent: 2 - - uid: 14379 + - uid: 15323 components: - type: Transform pos: 108.5,-38.5 parent: 2 - - uid: 14380 + - uid: 15324 components: - type: Transform pos: 108.5,-24.5 parent: 2 - - uid: 14381 + - uid: 15325 components: - type: Transform pos: 107.5,-18.5 parent: 2 - - uid: 14382 + - uid: 15326 components: - type: Transform pos: 52.5,-30.5 parent: 2 - - uid: 14383 + - uid: 15327 components: - type: Transform pos: -67.5,10.5 @@ -103045,79 +104119,79 @@ entities: - 0 - 0 - 0 - - uid: 14384 + - uid: 15328 components: - type: Transform pos: -13.5,2.5 parent: 2 - - uid: 14385 + - uid: 15329 components: - type: Transform pos: -54.5,-102.5 parent: 2 - - uid: 14386 + - uid: 15330 components: - type: Transform pos: 109.5,-53.5 parent: 2 - - uid: 14387 + - uid: 15331 components: - type: Transform pos: -68.5,1.5 parent: 2 - - uid: 14388 + - uid: 15332 components: - type: Transform pos: 77.5,-44.5 parent: 2 - - uid: 14389 + - uid: 15333 components: - type: Transform pos: -39.5,-108.5 parent: 2 - - uid: 14390 + - uid: 15334 components: - type: Transform pos: -27.5,-105.5 parent: 2 - - uid: 14391 + - uid: 15335 components: - type: Transform pos: -70.5,6.5 parent: 2 - - uid: 14392 + - uid: 15336 components: - type: Transform pos: -75.5,-3.5 parent: 2 - - uid: 14393 + - uid: 15337 components: - type: Transform pos: 100.5,-76.5 parent: 2 - - uid: 14394 + - uid: 15338 components: - type: Transform pos: -58.5,-51.5 parent: 2 - - uid: 14395 + - uid: 15339 components: - type: Transform pos: -50.5,-40.5 parent: 2 - - uid: 14396 + - uid: 15340 components: - type: Transform pos: -82.5,-21.5 parent: 2 - - uid: 39480 + - uid: 15341 components: - type: Transform pos: 1.5,-4.5 parent: 2 - proto: ClosetJanitor entities: - - uid: 2698 + - uid: 2552 components: - type: Transform pos: 72.5,-10.5 @@ -103146,17 +104220,17 @@ entities: showEnts: False occludes: True ents: - - 2765 - - 2702 - - 2760 - - 2745 + - 2554 + - 2555 + - 2553 + - 2556 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: ClosetJanitorFilled entities: - - uid: 14397 + - uid: 15342 components: - type: Transform pos: 9.5,0.5 @@ -103185,14 +104259,14 @@ entities: showEnts: False occludes: True ents: - - 14399 + - 15343 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: ClosetL3Janitor entities: - - uid: 36728 + - uid: 15344 components: - type: Transform pos: -50.5,-57.5 @@ -103221,15 +104295,15 @@ entities: showEnts: False occludes: True ents: - - 36729 - - 36730 + - 15345 + - 15346 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: ClosetL3JanitorFilled entities: - - uid: 14400 + - uid: 15347 components: - type: Transform pos: 9.5,-0.5 @@ -103252,7 +104326,7 @@ entities: - 0 - 0 - 0 - - uid: 14401 + - uid: 15348 components: - type: Transform pos: -46.5,-91.5 @@ -103277,63 +104351,63 @@ entities: - 0 - proto: ClosetL3ScienceFilled entities: - - uid: 14402 + - uid: 15349 components: - type: Transform pos: -64.5,-68.5 parent: 2 - proto: ClosetL3SecurityFilled entities: - - uid: 9710 + - uid: 15350 components: - type: Transform pos: 68.5,5.5 parent: 2 - - uid: 25017 + - uid: 15351 components: - type: Transform pos: 67.5,5.5 parent: 2 - - uid: 25046 + - uid: 15352 components: - type: Transform pos: 67.5,3.5 parent: 2 - - uid: 40514 + - uid: 15353 components: - type: Transform pos: 69.5,5.5 parent: 2 - - uid: 40515 + - uid: 15354 components: - type: Transform pos: 68.5,3.5 parent: 2 - proto: ClosetL3VirologyFilled entities: - - uid: 14407 + - uid: 15355 components: - type: Transform pos: -43.5,4.5 parent: 2 - - uid: 14408 + - uid: 15356 components: - type: Transform pos: -41.5,4.5 parent: 2 - - uid: 14409 + - uid: 15357 components: - type: Transform pos: -48.5,6.5 parent: 2 - proto: ClosetLegalFilled entities: - - uid: 14410 + - uid: 15358 components: - type: Transform pos: 72.5,-35.5 parent: 2 - - uid: 14411 + - uid: 15359 components: - type: Transform pos: 24.5,20.5 @@ -103358,7 +104432,7 @@ entities: - 0 - proto: ClosetMaintenance entities: - - uid: 14412 + - uid: 15360 components: - type: MetaData name: шкаф @@ -103389,15 +104463,15 @@ entities: showEnts: False occludes: True ents: - - 14413 - - 14415 - - 14414 - - 14416 + - 15361 + - 15363 + - 15362 + - 15364 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14417 + - uid: 15365 components: - type: MetaData desc: Это ужас и страдания. @@ -103429,35 +104503,35 @@ entities: showEnts: False occludes: True ents: - - 14419 - - 14418 + - 15367 + - 15366 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: ClosetMaintenanceFilledRandom entities: - - uid: 14420 + - uid: 15368 components: - type: Transform pos: 86.5,-49.5 parent: 2 - - uid: 14421 + - uid: 15369 components: - type: Transform pos: 32.5,18.5 parent: 2 - - uid: 14422 + - uid: 15370 components: - type: Transform pos: 74.5,-44.5 parent: 2 - - uid: 14423 + - uid: 15371 components: - type: Transform pos: 101.5,-47.5 parent: 2 - - uid: 14424 + - uid: 15372 components: - type: Transform pos: -68.5,-52.5 @@ -103480,12 +104554,12 @@ entities: - 0 - 0 - 0 - - uid: 14425 + - uid: 15373 components: - type: Transform pos: 78.5,-24.5 parent: 2 - - uid: 14426 + - uid: 15374 components: - type: Transform pos: 33.5,-26.5 @@ -103508,32 +104582,32 @@ entities: - 0 - 0 - 0 - - uid: 14427 + - uid: 15375 components: - type: Transform pos: 41.5,-18.5 parent: 2 - - uid: 14428 + - uid: 15376 components: - type: Transform pos: 39.5,-9.5 parent: 2 - - uid: 14429 + - uid: 15377 components: - type: Transform pos: 20.5,12.5 parent: 2 - - uid: 14430 + - uid: 15378 components: - type: Transform pos: -33.5,-4.5 parent: 2 - - uid: 14431 + - uid: 15379 components: - type: Transform pos: -41.5,6.5 parent: 2 - - uid: 14432 + - uid: 15380 components: - type: Transform pos: -31.5,-13.5 @@ -103556,12 +104630,12 @@ entities: - 0 - 0 - 0 - - uid: 14433 + - uid: 15381 components: - type: Transform pos: -32.5,-22.5 parent: 2 - - uid: 14434 + - uid: 15382 components: - type: Transform pos: -63.5,-55.5 @@ -103584,7 +104658,7 @@ entities: - 0 - 0 - 0 - - uid: 14435 + - uid: 15383 components: - type: Transform pos: -56.5,-62.5 @@ -103607,12 +104681,12 @@ entities: - 0 - 0 - 0 - - uid: 14436 + - uid: 15384 components: - type: Transform pos: -55.5,-78.5 parent: 2 - - uid: 14437 + - uid: 15385 components: - type: Transform pos: -46.5,-77.5 @@ -103635,62 +104709,62 @@ entities: - 0 - 0 - 0 - - uid: 14438 + - uid: 15386 components: - type: Transform pos: -37.5,-94.5 parent: 2 - - uid: 14439 + - uid: 15387 components: - type: Transform pos: -39.5,-76.5 parent: 2 - - uid: 14440 + - uid: 15388 components: - type: Transform pos: -31.5,-62.5 parent: 2 - - uid: 14441 + - uid: 15389 components: - type: Transform pos: -14.5,-79.5 parent: 2 - - uid: 14442 + - uid: 15390 components: - type: Transform pos: 21.5,-83.5 parent: 2 - - uid: 14443 + - uid: 15391 components: - type: Transform pos: 41.5,-56.5 parent: 2 - - uid: 14444 + - uid: 15392 components: - type: Transform pos: 62.5,-45.5 parent: 2 - - uid: 14445 + - uid: 15393 components: - type: Transform pos: 47.5,-28.5 parent: 2 - - uid: 14446 + - uid: 15394 components: - type: Transform pos: 73.5,-24.5 parent: 2 - - uid: 14448 + - uid: 15395 components: - type: Transform pos: -61.5,-40.5 parent: 2 - - uid: 14449 + - uid: 15396 components: - type: Transform pos: -39.5,-90.5 parent: 2 - - uid: 14450 + - uid: 15397 components: - type: Transform pos: 63.5,-54.5 @@ -103713,127 +104787,127 @@ entities: - 0 - 0 - 0 - - uid: 14451 + - uid: 15398 components: - type: Transform pos: -72.5,-33.5 parent: 2 - - uid: 14452 + - uid: 15399 components: - type: Transform pos: 56.5,-46.5 parent: 2 - - uid: 14453 + - uid: 15400 components: - type: Transform pos: -52.5,-88.5 parent: 2 - - uid: 14454 + - uid: 15401 components: - type: Transform pos: -45.5,-95.5 parent: 2 - - uid: 14456 + - uid: 15402 components: - type: Transform pos: -38.5,12.5 parent: 2 - - uid: 14457 + - uid: 15403 components: - type: Transform pos: -28.5,17.5 parent: 2 - - uid: 14458 + - uid: 15404 components: - type: Transform pos: -24.5,14.5 parent: 2 - - uid: 14459 + - uid: 15405 components: - type: Transform pos: -15.5,12.5 parent: 2 - - uid: 14460 + - uid: 15406 components: - type: Transform pos: 76.5,-16.5 parent: 2 - - uid: 14464 + - uid: 15407 components: - type: Transform pos: 88.5,-44.5 parent: 2 - - uid: 14465 + - uid: 15408 components: - type: Transform pos: 109.5,-52.5 parent: 2 - - uid: 14466 + - uid: 15409 components: - type: Transform pos: 35.5,-77.5 parent: 2 - - uid: 14467 + - uid: 15410 components: - type: Transform pos: -41.5,-122.5 parent: 2 - - uid: 14468 + - uid: 15411 components: - type: Transform pos: -36.5,-118.5 parent: 2 - - uid: 14469 + - uid: 15412 components: - type: Transform pos: -43.5,-120.5 parent: 2 - - uid: 14470 + - uid: 15413 components: - type: Transform pos: -57.5,-69.5 parent: 2 - - uid: 14471 + - uid: 15414 components: - type: Transform pos: 102.5,-44.5 parent: 2 - - uid: 14475 + - uid: 15415 components: - type: Transform pos: -79.5,-19.5 parent: 2 - - uid: 14478 + - uid: 15416 components: - type: Transform pos: -64.5,6.5 parent: 2 - - uid: 14479 + - uid: 15417 components: - type: Transform pos: -59.5,3.5 parent: 2 - - uid: 14480 + - uid: 15418 components: - type: Transform pos: -52.5,4.5 parent: 2 - - uid: 14481 + - uid: 15419 components: - type: Transform pos: -56.5,-100.5 parent: 2 - - uid: 14482 + - uid: 15420 components: - type: Transform pos: -54.5,-96.5 parent: 2 - - uid: 14483 + - uid: 15421 components: - type: Transform pos: -33.5,-112.5 parent: 2 - - uid: 14484 + - uid: 15422 components: - type: Transform pos: -44.5,-111.5 @@ -103856,22 +104930,22 @@ entities: - 0 - 0 - 0 - - uid: 14485 + - uid: 15423 components: - type: Transform pos: -37.5,-106.5 parent: 2 - - uid: 14486 + - uid: 15424 components: - type: Transform pos: -27.5,-108.5 parent: 2 - - uid: 14487 + - uid: 15425 components: - type: Transform pos: -51.5,-119.5 parent: 2 - - uid: 14488 + - uid: 15426 components: - type: Transform pos: -64.5,-28.5 @@ -103894,27 +104968,27 @@ entities: - 0 - 0 - 0 - - uid: 14489 + - uid: 15427 components: - type: Transform pos: -74.5,-16.5 parent: 2 - - uid: 14490 + - uid: 15428 components: - type: Transform pos: -70.5,-6.5 parent: 2 - - uid: 14491 + - uid: 15429 components: - type: Transform pos: -76.5,-3.5 parent: 2 - - uid: 14492 + - uid: 15430 components: - type: Transform pos: -78.5,-15.5 parent: 2 - - uid: 14493 + - uid: 15431 components: - type: Transform pos: -81.5,4.5 @@ -103937,7 +105011,7 @@ entities: - 0 - 0 - 0 - - uid: 14494 + - uid: 15432 components: - type: Transform pos: -87.5,-5.5 @@ -103960,37 +105034,37 @@ entities: - 0 - 0 - 0 - - uid: 14495 + - uid: 15433 components: - type: Transform pos: 34.5,27.5 parent: 2 - - uid: 14496 + - uid: 15434 components: - type: Transform pos: 40.5,28.5 parent: 2 - - uid: 14497 + - uid: 15435 components: - type: Transform pos: 33.5,35.5 parent: 2 - - uid: 14498 + - uid: 15436 components: - type: Transform pos: 31.5,34.5 parent: 2 - - uid: 26794 + - uid: 15437 components: - type: Transform pos: 72.5,-17.5 parent: 2 - - uid: 37383 + - uid: 15438 components: - type: Transform pos: -11.5,-32.5 parent: 2 - - uid: 39461 + - uid: 15439 components: - type: Transform pos: -10.5,-25.5 @@ -104013,121 +105087,121 @@ entities: - 0 - 0 - 0 - - uid: 39462 + - uid: 15440 components: - type: Transform pos: -14.5,-44.5 parent: 2 - - uid: 39463 + - uid: 15441 components: - type: Transform pos: -1.5,-47.5 parent: 2 - - uid: 39464 + - uid: 15442 components: - type: Transform pos: 16.5,-53.5 parent: 2 - - uid: 39465 + - uid: 15443 components: - type: Transform pos: 12.5,-31.5 parent: 2 - - uid: 39466 + - uid: 15444 components: - type: Transform pos: 6.5,-17.5 parent: 2 - - uid: 39467 + - uid: 15445 components: - type: Transform pos: 5.5,-44.5 parent: 2 - proto: ClosetRadiationSuitFilled entities: - - uid: 14499 + - uid: 15446 components: - type: Transform pos: -63.5,-68.5 parent: 2 - - uid: 14500 + - uid: 15447 components: - type: Transform pos: -55.5,-66.5 parent: 2 - - uid: 14501 + - uid: 15448 components: - type: Transform pos: 43.5,-82.5 parent: 2 - - uid: 14502 + - uid: 15449 components: - type: Transform pos: 47.5,-56.5 parent: 2 - - uid: 14503 + - uid: 15450 components: - type: Transform pos: 45.5,-77.5 parent: 2 - - uid: 14504 + - uid: 15451 components: - type: Transform pos: 53.5,-57.5 parent: 2 - - uid: 14505 + - uid: 15452 components: - type: Transform pos: 73.5,-49.5 parent: 2 - - uid: 14506 + - uid: 15453 components: - type: Transform pos: -54.5,-66.5 parent: 2 - proto: ClosetToolFilled entities: - - uid: 14507 + - uid: 15454 components: - type: Transform pos: -74.5,8.5 parent: 2 - - uid: 14508 + - uid: 15455 components: - type: Transform pos: 67.5,-24.5 parent: 2 - - uid: 14509 + - uid: 15456 components: - type: Transform pos: -4.5,-98.5 parent: 2 - - uid: 14511 + - uid: 15457 components: - type: Transform pos: -29.5,-73.5 parent: 2 - - uid: 14512 + - uid: 15458 components: - type: Transform pos: -30.5,-76.5 parent: 2 - - uid: 14514 + - uid: 15459 components: - type: Transform pos: -37.5,9.5 parent: 2 - - uid: 14515 + - uid: 15460 components: - type: Transform pos: -70.5,-15.5 parent: 2 - - uid: 14516 + - uid: 15461 components: - type: Transform pos: 91.5,-43.5 parent: 2 - - uid: 14517 + - uid: 15462 components: - type: Transform pos: -42.5,-117.5 @@ -104150,73 +105224,73 @@ entities: - 0 - 0 - 0 - - uid: 14518 + - uid: 15463 components: - type: Transform pos: 109.5,-55.5 parent: 2 - - uid: 14521 + - uid: 15464 components: - type: Transform pos: -64.5,2.5 parent: 2 - - uid: 14522 + - uid: 15465 components: - type: Transform pos: -89.5,-5.5 parent: 2 - - uid: 14523 + - uid: 15466 components: - type: Transform pos: -77.5,-23.5 parent: 2 - - uid: 14524 + - uid: 15467 components: - type: Transform pos: 39.5,-83.5 parent: 2 - - uid: 37378 + - uid: 15468 components: - type: Transform pos: -10.5,-21.5 parent: 2 - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 14525 + - uid: 15469 components: - type: Transform pos: 76.5,-47.5 parent: 2 - - uid: 14529 + - uid: 15470 components: - type: Transform pos: -93.5,2.5 parent: 2 - - uid: 14530 + - uid: 15471 components: - type: Transform pos: -47.5,-35.5 parent: 2 - - uid: 21902 + - uid: 15472 + components: + - type: Transform + pos: 55.5,-12.5 + parent: 2 + - uid: 40727 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,0.5 - parent: 21045 - - uid: 21946 + parent: 40666 + - uid: 40728 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,0.5 - parent: 21045 - - uid: 40773 - components: - - type: Transform - pos: 55.5,-12.5 - parent: 2 + parent: 40666 - proto: ClosetWallFireFilledRandom entities: - - uid: 14531 + - uid: 15473 components: - type: Transform pos: -46.5,-35.5 @@ -104239,13 +105313,13 @@ entities: - 0 - 0 - 0 - - uid: 27799 + - uid: 15474 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-1.5 parent: 2 - - uid: 40774 + - uid: 15475 components: - type: Transform pos: 47.5,-12.5 @@ -104268,7 +105342,7 @@ entities: - 0 - 0 - 0 - - uid: 40775 + - uid: 15476 components: - type: Transform rot: -1.5707963267948966 rad @@ -104276,10 +105350,10 @@ entities: parent: 2 - proto: ClothingBackpackBrigmedic entities: - - uid: 16248 + - uid: 2477 components: - type: Transform - parent: 16246 + parent: 2475 - type: Physics canCollide: False - type: GroupExamine @@ -104301,14 +105375,14 @@ entities: - type: InsideEntityStorage - proto: ClothingBackpackDuffelAtmospherics entities: - - uid: 14561 + - uid: 15477 components: - type: Transform pos: 38.70636,-52.47543 parent: 2 - proto: ClothingBackpackDuffelBrigmedic entities: - - uid: 27796 + - uid: 15478 components: - type: Transform pos: 66.5231,1.9254829 @@ -104334,23 +105408,23 @@ entities: title: null - proto: ClothingBackpackDuffelCaptain entities: - - uid: 37762 + - uid: 15480 components: - type: Transform - parent: 33761 + parent: 15479 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBackpackDuffelSalvage entities: - - uid: 14563 + - uid: 15481 components: - type: Transform pos: -6.442077,-88.38824 parent: 2 - proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 14565 + - uid: 15482 components: - type: Transform rot: -1.5707963267948966 rad @@ -104358,26 +105432,26 @@ entities: parent: 2 - proto: ClothingBackpackElectropack entities: - - uid: 34388 + - uid: 15483 components: - type: Transform pos: 81.717575,4.0381484 parent: 2 - proto: ClothingBackpackERTClown entities: - - uid: 14568 + - uid: 1313 components: - type: Transform - parent: 14567 + parent: 1311 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBackpackSatchelBrigmedic entities: - - uid: 16249 + - uid: 2478 components: - type: Transform - parent: 16246 + parent: 2475 - type: Physics canCollide: False - type: GroupExamine @@ -104399,10 +105473,10 @@ entities: - type: InsideEntityStorage - proto: ClothingBackpackSatchelSecurity entities: - - uid: 14574 + - uid: 15485 components: - type: Transform - parent: 14573 + parent: 15484 - type: Physics canCollide: False - type: GroupExamine @@ -104424,34 +105498,34 @@ entities: - type: InsideEntityStorage - proto: ClothingBeltChampion entities: - - uid: 29576 + - uid: 15495 components: - type: Transform pos: -7.4948072,-6.3184457 parent: 2 - proto: ClothingBeltJanitorFilled entities: - - uid: 14584 + - uid: 15496 components: - type: Transform pos: 9.508253,-1.3463131 parent: 2 - proto: ClothingBeltMercWebbing entities: - - uid: 27921 + - uid: 15497 components: - type: Transform pos: 10.473449,-22.354832 parent: 2 - proto: ClothingBeltPlant entities: - - uid: 40797 + - uid: 2561 components: - type: Transform - parent: 40794 + parent: 2559 - type: Storage storedItems: - 40798: + 2562: position: 0,0 _rotation: South - type: ContainerContainer @@ -104460,23 +105534,23 @@ entities: showEnts: False occludes: True ents: - - 40798 + - 2562 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBeltQuiver entities: - - uid: 14585 + - uid: 15498 components: - type: Transform pos: 85.92138,-54.27365 parent: 2 - type: Storage storedItems: - 14586: + 15499: position: 0,0 _rotation: South - 14587: + 15500: position: 1,0 _rotation: South - type: ContainerContainer @@ -104485,470 +105559,470 @@ entities: showEnts: False occludes: True ents: - - 14586 - - 14587 + - 15499 + - 15500 - proto: ClothingBeltSecurityWebbingFilled entities: - - uid: 14575 + - uid: 15486 components: - type: Transform - parent: 14573 + parent: 15484 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBeltStorageWaistbag entities: - - uid: 15847 + - uid: 15502 components: - type: Transform - parent: 15845 + parent: 15501 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingBeltUtility entities: - - uid: 14589 + - uid: 15504 components: - type: Transform pos: 53.503906,-48.454685 parent: 2 - proto: ClothingBeltUtilityFilled entities: - - uid: 14591 + - uid: 15506 components: - type: Transform - parent: 14590 + parent: 15505 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14592 + - uid: 15507 components: - type: Transform pos: -40.4384,-61.518013 parent: 2 - - uid: 14593 + - uid: 15508 components: - type: Transform pos: -65.771,-78.467865 parent: 2 - proto: ClothingEyesBlindfold entities: - - uid: 14595 + - uid: 15509 components: - type: Transform pos: -58.64936,-9.911393 parent: 2 - - uid: 32991 + - uid: 15510 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5724,1.7416784 parent: 2 - - uid: 33813 + - uid: 15511 components: - type: Transform pos: 80.34723,3.59521 parent: 2 - proto: ClothingEyesGlasses entities: - - uid: 14596 + - uid: 15512 components: - type: Transform pos: -40.31878,-49.225086 parent: 2 - - uid: 14597 + - uid: 15513 components: - type: Transform pos: -49.469284,-13.295306 parent: 2 - proto: ClothingEyesGlassesChemical entities: - - uid: 34243 + - uid: 15514 components: - type: Transform pos: -7.467159,-36.469105 parent: 2 - proto: ClothingEyesGlassesMeson entities: - - uid: 14598 + - uid: 15515 components: - type: Transform pos: -6.623042,17.622715 parent: 2 - - uid: 14599 + - uid: 15516 components: - type: Transform pos: 53.518974,-84.46307 parent: 2 - - uid: 14600 + - uid: 15517 components: - type: Transform pos: 51.415688,-47.013412 parent: 2 - - uid: 14601 + - uid: 15518 components: - type: Transform pos: 51.618187,-46.85498 parent: 2 - - uid: 34355 + - uid: 15519 components: - type: Transform pos: -7.3818736,-49.410892 parent: 2 - - uid: 34356 + - uid: 15520 components: - type: Transform pos: -7.584999,-49.426517 parent: 2 - - uid: 40811 + - uid: 15521 components: - type: Transform pos: 65.59738,13.374831 parent: 2 - proto: ClothingEyesHudDiagnostic entities: - - uid: 14602 + - uid: 15522 components: - type: Transform pos: 48.5,-66.5 parent: 2 - proto: ClothingEyesHudMedical entities: - - uid: 14603 + - uid: 15523 components: - type: Transform pos: -48.33688,-9.937878 parent: 2 - - uid: 14604 + - uid: 15524 components: - type: Transform pos: -48.313732,-9.859174 parent: 2 - - uid: 14605 + - uid: 15525 components: - type: Transform pos: -48.373917,-10.021211 parent: 2 - - uid: 14606 + - uid: 15526 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.100777,-18.404556 parent: 2 - - uid: 14607 + - uid: 15527 components: - type: Transform pos: -57.206905,-40.312515 parent: 2 - proto: ClothingEyesHudMedSec entities: - - uid: 16250 + - uid: 2479 components: - type: Transform - parent: 16246 + parent: 2475 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38154 + - uid: 41095 components: - type: Transform pos: -4.39859,-11.2247925 - parent: 37887 + parent: 40828 - proto: ClothingEyesHudSecurity entities: - - uid: 14608 + - uid: 15528 components: - type: Transform pos: -2.4761028,-80.47279 parent: 2 - - uid: 14609 + - uid: 15529 components: - type: Transform pos: -51.48703,13.008251 parent: 2 - proto: ClothingHandsChameleon entities: - - uid: 14154 + - uid: 15531 components: - type: Transform - parent: 14665 + parent: 15530 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHandsGlovesAerostatic entities: - - uid: 14576 + - uid: 15487 components: - type: Transform - parent: 14573 + parent: 15484 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHandsGlovesBoxingBlue entities: - - uid: 27593 + - uid: 15536 components: - type: Transform pos: 82.21068,-6.1767607 parent: 2 - proto: ClothingHandsGlovesBoxingGreen entities: - - uid: 14615 + - uid: 15537 components: - type: Transform pos: -19.795681,-88.34186 parent: 2 - proto: ClothingHandsGlovesBoxingRed entities: - - uid: 14617 + - uid: 15538 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.60045,-101.577286 parent: 2 - - uid: 27592 + - uid: 15539 components: - type: Transform pos: 79.7888,-3.8955107 parent: 2 - proto: ClothingHandsGlovesBoxingRigged entities: - - uid: 9460 + - uid: 15540 components: - type: Transform pos: -32.06796,-104.43788 parent: 2 - proto: ClothingHandsGlovesBoxingYellow entities: - - uid: 7794 + - uid: 15541 components: - type: Transform pos: -23.998806,-83.88873 parent: 2 - proto: ClothingHandsGlovesColorBlack entities: - - uid: 14618 + - uid: 15542 components: - type: Transform pos: -34.536404,-89.45682 parent: 2 - - uid: 14619 + - uid: 15543 components: - type: Transform pos: -34.52078,-89.28494 parent: 2 - - uid: 14620 + - uid: 15544 components: - type: Transform pos: 76.42209,-29.536335 parent: 2 - - uid: 14621 + - uid: 15545 components: - type: Transform pos: -78.5,-26.5 parent: 2 - - uid: 40422 + - uid: 15546 components: - type: Transform pos: 42.4707,-11.231414 parent: 2 - proto: ClothingHandsGlovesColorGreen entities: - - uid: 14622 + - uid: 15547 components: - type: Transform pos: -76.52225,-8.39194 parent: 2 - - uid: 14623 + - uid: 15548 components: - type: Transform pos: -76.50662,-8.26694 parent: 2 - proto: ClothingHandsGlovesColorWhite entities: - - uid: 14624 + - uid: 15549 components: - type: Transform pos: -48.29839,-10.36655 parent: 2 - - uid: 14626 + - uid: 15550 components: - type: Transform rot: 3.141592653589793 rad pos: -44.544357,4.53788 parent: 2 - - uid: 14627 + - uid: 15551 components: - type: Transform rot: 3.141592653589793 rad pos: -44.544357,4.678505 parent: 2 - - uid: 14628 + - uid: 15552 components: - type: Transform pos: -53.56066,-54.93091 parent: 2 - - uid: 14629 + - uid: 15553 components: - type: Transform pos: -34.5,-21.5 parent: 2 - - uid: 14631 + - uid: 15554 components: - type: Transform pos: -57.463932,-33.228943 parent: 2 - - uid: 14746 + - uid: 15555 components: - type: Transform pos: 62.491745,-1.2985544 parent: 2 - - uid: 14869 + - uid: 15556 components: - type: Transform pos: 62.502953,-1.5534813 parent: 2 - proto: ClothingHandsGlovesColorYellow entities: - - uid: 14632 + - uid: 23 + components: + - type: Transform + parent: 20 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28 + components: + - type: Transform + parent: 25 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 33 + components: + - type: Transform + parent: 30 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15557 components: - type: Transform pos: -40.538715,-112.37235 parent: 2 - - uid: 14633 + - uid: 15558 components: - type: Transform rot: 3.141592653589793 rad pos: -6.482417,17.435215 parent: 2 - - uid: 14634 + - uid: 15559 components: - type: Transform pos: 35.664604,-35.34984 parent: 2 - - uid: 14635 + - uid: 15560 components: - type: Transform pos: 53.539253,-84.447075 parent: 2 - - uid: 14636 + - uid: 15561 components: - type: Transform pos: 12.513868,-78.71338 parent: 2 - - uid: 14637 + - uid: 15562 components: - type: Transform pos: -13.452918,-87.51239 parent: 2 - - uid: 14638 + - uid: 15563 components: - type: Transform pos: 47.653366,-60.42059 parent: 2 - - uid: 14639 + - uid: 15564 components: - type: Transform pos: 51.489845,-47.324818 parent: 2 - - uid: 14640 + - uid: 15565 components: - type: Transform pos: 51.56041,-47.524826 parent: 2 - - uid: 14641 + - uid: 15566 components: - type: Transform pos: -38.50782,-118.46541 parent: 2 - - uid: 14642 + - uid: 15567 components: - type: Transform pos: 81.48181,-53.47641 parent: 2 - - uid: 14643 + - uid: 15568 components: - type: Transform pos: -42.50094,-109.462296 parent: 2 - - uid: 14645 - components: - - type: Transform - parent: 14644 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14648 - components: - - type: Transform - parent: 14647 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14651 - components: - - type: Transform - parent: 14650 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 34353 + - uid: 15569 components: - type: Transform pos: -5.47928,-46.337624 parent: 2 - - uid: 34354 + - uid: 15570 components: - type: Transform pos: -5.47928,-46.493874 parent: 2 - proto: ClothingHandsGlovesColorYellowBudget entities: - - uid: 14653 + - uid: 15571 components: - type: MetaData name: изолированные перчатки - type: Transform pos: 66.5025,-29.523674 parent: 2 - - uid: 14654 + - uid: 15572 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.93959,-95.05066 parent: 2 - - uid: 14655 + - uid: 15573 components: - type: Transform pos: -27.480715,-76.49438 parent: 2 - proto: ClothingHandsGlovesFingerless entities: - - uid: 14657 + - uid: 15574 components: - type: Transform pos: 24.505955,6.7460084 parent: 2 - - uid: 40520 + - uid: 15575 components: - type: Transform pos: 68.45653,-3.4281745 parent: 2 - proto: ClothingHandsGlovesFingerlessInsulated entities: - - uid: 14658 + - uid: 15576 components: - type: Transform pos: 29.493355,32.536114 parent: 2 - proto: ClothingHandsGlovesLatex entities: - - uid: 14660 + - uid: 15577 components: - type: Transform pos: -40.28753,-49.45946 parent: 2 - - uid: 40102 + - uid: 15578 components: - type: Transform pos: -44.460934,-37.386467 @@ -104957,103 +106031,109 @@ entities: stealthy: True - proto: ClothingHandsGlovesLeather entities: - - uid: 14661 - components: - - type: Transform - pos: 36.493587,23.528145 - parent: 2 - - uid: 40796 + - uid: 2563 components: - type: Transform - parent: 40794 + parent: 2559 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 15579 + components: + - type: Transform + pos: 36.493587,23.528145 + parent: 2 - proto: ClothingHandsGlovesNitrile entities: - - uid: 14662 + - uid: 15580 components: - type: Transform pos: -54.009377,-5.985624 parent: 2 - proto: ClothingHandsGlovesRobohands entities: - - uid: 14664 + - uid: 15581 components: - type: Transform pos: -86.99942,-7.368166 parent: 2 - proto: ClothingHeadBandBlack entities: - - uid: 14666 + - uid: 15532 components: - type: Transform - parent: 14665 + parent: 15530 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadBandBlue entities: - - uid: 14671 + - uid: 15582 components: - type: Transform pos: -18.112122,-81.39016 parent: 2 - proto: ClothingHeadBandBotany entities: - - uid: 40801 + - uid: 2564 components: - type: Transform - parent: 40794 + parent: 2559 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadBandRed entities: - - uid: 14673 + - uid: 15583 components: - type: Transform pos: -18.340637,-81.438866 parent: 2 - proto: ClothingHeadHatBeretBrigmedic entities: - - uid: 14675 + - uid: 15585 components: - type: Transform - parent: 14674 + parent: 15584 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24340 + - uid: 15587 components: - type: Transform - parent: 24339 + parent: 15586 - type: Physics canCollide: False - proto: ClothingHeadHatBeretEngineering entities: - - uid: 36942 + - uid: 15593 components: - type: Transform pos: 51.42094,-51.902615 parent: 2 - proto: ClothingHeadHatBeretRND entities: - - uid: 14676 + - uid: 15594 components: - type: Transform pos: -47.513794,-81.26914 parent: 2 - proto: ClothingHeadHatBeretSecurity entities: - - uid: 15853 + - uid: 15595 components: - type: Transform pos: 46.51009,-1.8415952 parent: 2 - proto: ClothingHeadHatBeretSecurityMedic entities: - - uid: 14677 + - uid: 15588 + components: + - type: Transform + parent: 15586 + - type: Physics + canCollide: False + - uid: 15596 components: - type: MetaData desc: Прочный чёрный берет. @@ -105061,164 +106141,158 @@ entities: - type: Transform pos: 24.630955,6.5727215 parent: 2 - - uid: 24341 - components: - - type: Transform - parent: 24339 - - type: Physics - canCollide: False - proto: ClothingHeadHatCardborg entities: - - uid: 14678 + - uid: 15597 components: - type: Transform pos: -85.732056,-8.772991 parent: 2 - proto: ClothingHeadHatCargosoft entities: - - uid: 14679 + - uid: 15598 components: - type: Transform pos: 92.39354,-48.227882 parent: 2 - proto: ClothingHeadHatCargosoftFlipped entities: - - uid: 14680 + - uid: 15599 components: - type: Transform pos: 9.500837,-83.81156 parent: 2 - proto: ClothingHeadHatChef entities: - - uid: 14681 + - uid: 15600 components: - type: Transform pos: 30.460463,11.990178 parent: 2 - - uid: 14683 + - uid: 15601 components: - type: Transform pos: -57.5,9.5 parent: 2 - proto: ClothingHeadHatCone entities: - - uid: 6208 + - uid: 15602 components: - type: Transform pos: 5.5286374,-30.201202 parent: 2 - - uid: 6312 + - uid: 15603 components: - type: Transform pos: 6.4427,-30.857452 parent: 2 - - uid: 13436 + - uid: 15604 components: - type: Transform pos: 7.4505124,-32.123077 parent: 2 - - uid: 37718 + - uid: 15605 components: - type: Transform pos: 23.743748,-31.452984 parent: 2 - - uid: 37719 + - uid: 15606 components: - type: Transform pos: 23.81406,-32.648296 parent: 2 - - uid: 37720 + - uid: 15607 components: - type: Transform pos: 23.81406,-33.679546 parent: 2 - - uid: 37721 + - uid: 15608 components: - type: Transform pos: -25.605705,-42.398224 parent: 2 - - uid: 37738 + - uid: 15609 components: - type: Transform pos: -25.65258,-43.45291 parent: 2 - - uid: 37742 + - uid: 15610 components: - type: Transform pos: -25.55883,-44.39041 parent: 2 - - uid: 37743 + - uid: 15611 components: - type: Transform pos: -0.37868118,-7.5557117 parent: 2 - - uid: 37744 + - uid: 15612 components: - type: Transform pos: 0.8166313,-7.5322742 parent: 2 - - uid: 38747 + - uid: 15613 components: - type: Transform - parent: 38744 + pos: 1.4627991,-9.452779 + parent: 2 + - uid: 41693 + components: + - type: Transform + parent: 41690 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38748 + - uid: 41694 components: - type: Transform - parent: 38744 + parent: 41690 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38749 + - uid: 41695 components: - type: Transform - parent: 38744 + parent: 41690 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38750 + - uid: 41696 components: - type: Transform - parent: 38744 + parent: 41690 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39720 - components: - - type: Transform - pos: 1.4627991,-9.452779 - parent: 2 - proto: ClothingHeadHatERTLeaderBeret entities: - - uid: 15224 + - uid: 15614 components: - type: Transform pos: -18.721577,-27.817108 parent: 2 - - uid: 38156 + - uid: 41097 components: - type: Transform - parent: 38155 + parent: 41096 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatGladiator entities: - - uid: 14684 + - uid: 15615 components: - type: Transform pos: 71.186874,-47.381943 parent: 2 - - uid: 14685 + - uid: 15616 components: - type: Transform pos: 71.5775,-47.381943 parent: 2 - proto: ClothingHeadHatHardhatArmored entities: - - uid: 14686 + - uid: 15617 components: - type: Transform rot: -1.5707963267948966 rad @@ -105226,37 +106300,27 @@ entities: parent: 2 - proto: ClothingHeadHatHardhatOrange entities: - - uid: 14687 + - uid: 15618 components: - type: Transform pos: -27.49634,-76.51 parent: 2 - - uid: 34395 - components: - - type: Transform - pos: -17.463032,3.514577 - parent: 2 - proto: ClothingHeadHatHardhatYellow entities: - - uid: 14688 + - uid: 15619 components: - type: Transform pos: 104.48073,-58.37666 parent: 2 - - uid: 34394 - components: - - type: Transform - pos: -17.619282,3.623952 - parent: 2 - proto: ClothingHeadHatHardhatYellowDark entities: - - uid: 23 + - uid: 99 components: - type: Transform pos: 95.44709,-84.429085 parent: 2 - type: HandheldLight - toggleActionEntity: 24 + toggleActionEntity: 100 - type: ContainerContainer containers: cell_slot: !type:ContainerSlot @@ -105267,171 +106331,191 @@ entities: showEnts: False occludes: True ents: - - 24 + - 100 - type: ActionsContainer - proto: ClothingHeadHatHoodBioCmo entities: - - uid: 30513 + - uid: 15621 components: - type: Transform - parent: 29203 + parent: 15620 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatHoodBioScientist entities: - - uid: 36729 + - uid: 15345 components: - type: Transform - parent: 36728 + parent: 15344 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatHoodBioVirology entities: - - uid: 14689 + - uid: 15623 components: - type: Transform pos: 36.32937,23.283566 parent: 2 - proto: ClothingHeadHatMagician entities: - - uid: 14690 + - uid: 15624 components: - type: Transform pos: -41.37754,-100.945206 parent: 2 - proto: ClothingHeadHatMimesoft entities: - - uid: 14693 + - uid: 15626 components: - type: Transform - parent: 14692 + parent: 15625 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatPumpkin entities: - - uid: 6175 + - uid: 16 components: - type: Transform - parent: 24319 + parent: 5 + - type: HandheldLight + toggleActionEntity: 17 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 17 + - type: Physics + canCollide: False + - type: ActionsContainer + - uid: 15633 + components: + - type: Transform + parent: 15632 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatPwig entities: - - uid: 14699 + - uid: 15634 components: - type: Transform pos: -26.372742,-92.515205 parent: 2 - proto: ClothingHeadHatRedwizard entities: - - uid: 14705 + - uid: 15636 components: - type: Transform - parent: 14704 + parent: 15635 - type: Physics canCollide: False - proto: ClothingHeadHatRichard entities: - - uid: 15850 + - uid: 15638 components: - type: Transform pos: -18.651264,-27.32492 parent: 2 - proto: ClothingHeadHatSantahat entities: - - uid: 14709 + - uid: 15640 components: - type: Transform - parent: 14708 + parent: 15639 - type: Physics canCollide: False - proto: ClothingHeadHatSurgcapBlue entities: - - uid: 14711 + - uid: 15642 components: - type: Transform pos: -51.476044,-19.503986 parent: 2 - - uid: 14712 + - uid: 15643 components: - type: Transform pos: -23.84134,10.642219 parent: 2 - proto: ClothingHeadHatTacticalMaidHeadband entities: - - uid: 14399 + - uid: 15343 components: - type: Transform - parent: 14397 + parent: 15342 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatTrucker entities: - - uid: 14713 + - uid: 15644 components: - type: Transform pos: -33.55708,-94.35977 parent: 2 - proto: ClothingHeadHatVioletwizard entities: - - uid: 14716 + - uid: 15646 components: - type: Transform - parent: 14715 + parent: 15645 - type: Physics canCollide: False - proto: ClothingHeadHatWatermelon entities: - - uid: 14718 + - uid: 15648 components: - type: Transform pos: 44.5,21.5 parent: 2 - proto: ClothingHeadHatWelding entities: - - uid: 14719 + - uid: 15649 components: - type: Transform pos: 49.56678,-79.38096 parent: 2 - - uid: 14720 + - uid: 15650 components: - type: Transform pos: -39.5,-65.5 parent: 2 - - uid: 14721 + - uid: 15651 components: - type: Transform pos: 53.5,-96.5 parent: 2 - - uid: 14722 + - uid: 15652 components: - type: Transform pos: -17.5,12.5 parent: 2 - proto: ClothingHeadHatWeldingMaskFlame entities: - - uid: 14723 + - uid: 15653 components: - type: Transform pos: 54.15576,-84.33608 parent: 2 - - uid: 14724 + - uid: 15654 components: - type: Transform pos: -35.442467,7.5258117 parent: 2 - - uid: 14725 + - uid: 15655 components: - type: Transform pos: -42.485313,-109.493546 parent: 2 - - uid: 34274 + - uid: 15656 components: - type: Transform rot: -1.5707963267948966 rad @@ -105439,7 +106523,7 @@ entities: parent: 2 - proto: ClothingHeadHatWeldingMaskPainted entities: - - uid: 14726 + - uid: 15657 components: - type: Transform pos: 17.635115,9.626244 @@ -105452,56 +106536,39 @@ entities: parent: 5 - type: Physics canCollide: False - - uid: 35787 + - uid: 15658 components: - type: Transform pos: -1.4852774,27.497887 parent: 2 - - uid: 35807 - components: - - type: Transform - pos: -36.524727,-25.261938 - parent: 2 - - uid: 35811 + - uid: 15659 components: - type: Transform pos: -42.784866,-86.21655 parent: 2 - - uid: 40922 - components: - - type: Transform - pos: -35.987118,-27.367104 - parent: 2 -- proto: ClothingHeadHatWitch1 - entities: - - uid: 40923 - components: - - type: Transform - pos: -38.612118,-33.992104 - parent: 2 - proto: ClothingHeadHatWizard entities: - - uid: 14728 + - uid: 15661 components: - type: Transform - parent: 14727 + parent: 15660 - type: Physics canCollide: False - proto: ClothingHeadHatXmasCrown entities: - - uid: 14730 + - uid: 15663 components: - type: Transform pos: -55.266136,-92.17016 parent: 2 - proto: ClothingHeadHelmetAtmosFire entities: - - uid: 37012 + - uid: 116 components: - type: Transform - parent: 36777 + parent: 115 - type: HandheldLight - toggleActionEntity: 37254 + toggleActionEntity: 117 - type: ContainerContainer containers: cell_slot: !type:ContainerSlot @@ -105512,264 +106579,282 @@ entities: showEnts: False occludes: True ents: - - 37254 + - 117 - type: Physics canCollide: False - type: ActionsContainer - type: InsideEntityStorage - proto: ClothingHeadHelmetBone entities: - - uid: 35813 + - uid: 15664 components: - type: Transform pos: 58.083214,-41.490364 parent: 2 - proto: ClothingHeadHelmetERTLeader entities: - - uid: 38157 + - uid: 41098 components: - type: Transform - parent: 38155 + parent: 41096 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHelmetEVALarge entities: - - uid: 14754 + - uid: 15666 components: - type: Transform - parent: 14753 + parent: 15665 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14761 + - uid: 15674 components: - type: Transform - parent: 14760 + parent: 15673 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14762 + - uid: 15675 components: - type: Transform - parent: 14760 + parent: 15673 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHelmetHardsuitLing entities: - - uid: 14770 + - uid: 15683 components: - type: Transform pos: -22.636265,10.761809 parent: 2 - proto: ClothingHeadHelmetHardsuitPirateEVA entities: - - uid: 37258 + - uid: 15684 components: - type: Transform pos: -6.5624027,-43.425514 parent: 2 - proto: ClothingHeadHelmetMerc entities: - - uid: 2041 + - uid: 15685 components: - type: Transform pos: 10.491604,-16.45615 parent: 2 - proto: ClothingHeadHelmetPodWars entities: - - uid: 14771 + - uid: 15686 components: - type: Transform pos: -82.5,-23.5 parent: 2 - proto: ClothingHeadHelmetRiot entities: - - uid: 2580 + - uid: 15687 components: - type: Transform pos: 60.563145,-11.334959 parent: 2 - - uid: 2581 + - uid: 15688 components: - type: Transform pos: 60.54752,-11.147459 parent: 2 - - uid: 2582 + - uid: 15689 components: - type: Transform pos: 60.313145,-11.209959 parent: 2 - proto: ClothingHeadHelmetSecurityMedic entities: - - uid: 16251 + - uid: 2480 components: - type: Transform - parent: 16246 + parent: 2475 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHelmetTemplar entities: - - uid: 14778 + - uid: 15690 components: - type: Transform pos: 34.5093,-68.26965 parent: 2 - proto: ClothingHeadMirror entities: - - uid: 14779 + - uid: 15691 components: - type: Transform pos: 103.67162,-50.371166 parent: 2 - proto: ClothingHeadRastaHat entities: - - uid: 14780 + - uid: 15692 components: - type: Transform pos: -76.63162,-7.8044777 parent: 2 - proto: ClothingHeadSafari entities: - - uid: 14781 + - uid: 15693 components: - type: Transform pos: -66.5,-47.5 parent: 2 - proto: ClothingHeadsetBrigmedic entities: - - uid: 16252 + - uid: 2481 components: - type: Transform - parent: 16246 + parent: 2475 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskBandBlack entities: - - uid: 14667 + - uid: 15533 components: - type: Transform - parent: 14665 + parent: 15530 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskBreath entities: - - uid: 14785 + - uid: 15694 components: - type: Transform pos: -53.437313,-74.187004 parent: 2 - - uid: 14787 + - uid: 15696 components: - type: Transform - parent: 14786 + parent: 15695 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14791 + - uid: 15700 components: - type: Transform pos: -23.455185,10.517219 parent: 2 - - uid: 14792 + - uid: 15701 components: - type: Transform pos: -66.602936,-71.396805 parent: 2 - proto: ClothingMaskBreathMedical entities: - - uid: 14763 + - uid: 72 components: - type: Transform - parent: 14760 + parent: 68 + - type: Physics + canCollide: False + - uid: 81 + components: + - type: Transform + parent: 77 + - type: Physics + canCollide: False + - uid: 90 + components: + - type: Transform + parent: 86 + - type: Physics + canCollide: False + - uid: 15676 + components: + - type: Transform + parent: 15673 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14793 + - uid: 15702 components: - type: Transform pos: -45.341232,4.584755 parent: 2 - - uid: 14794 + - uid: 15703 components: - type: Transform pos: -45.419357,4.553505 parent: 2 - - uid: 14795 + - uid: 15704 components: - type: Transform pos: -45.419357,4.553505 parent: 2 - proto: ClothingMaskBreathMedicalSecurity entities: - - uid: 1881 + - uid: 2482 components: - type: Transform - parent: 16246 + parent: 2475 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14764 + - uid: 15677 components: - type: Transform - parent: 14760 + parent: 15673 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38163 + - uid: 41104 components: - type: Transform - parent: 38162 + parent: 41103 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskGas entities: - - uid: 14796 + - uid: 15705 components: - type: Transform pos: -78.5,-26.5 parent: 2 - - uid: 14797 + - uid: 15706 components: - type: Transform pos: 95.5,-84.5 parent: 2 - - uid: 14798 + - uid: 15707 components: - type: Transform pos: 39.51871,20.5004 parent: 2 - - uid: 14799 + - uid: 15708 components: - type: Transform pos: 29.462105,32.58299 parent: 2 - - uid: 40151 + - uid: 15709 components: - type: Transform pos: -50.28581,-60.309788 parent: 2 - proto: ClothingMaskGasAtmos entities: - - uid: 37662 + - uid: 15710 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.61594,-71.93244 parent: 2 - - uid: 40150 + - uid: 15711 components: - type: Transform pos: -53.5617,-54.725506 parent: 2 - proto: ClothingMaskGasCaptain entities: - - uid: 13810 + - uid: 15712 components: - type: Transform rot: 1.5707963267948966 rad @@ -105777,223 +106862,230 @@ entities: parent: 2 - proto: ClothingMaskGasERT entities: - - uid: 38169 + - uid: 41111 components: - type: Transform - parent: 38168 + parent: 41110 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38175 + - uid: 41118 components: - type: Transform - parent: 38174 + parent: 41117 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38181 + - uid: 41125 components: - type: Transform - parent: 38180 + parent: 41124 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38187 + - uid: 41132 components: - type: Transform - parent: 38186 + parent: 41131 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskGasSwat entities: - - uid: 38193 + - uid: 41139 components: - type: Transform - parent: 38192 + parent: 41138 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskMuzzle entities: - - uid: 14418 + - uid: 15366 components: - type: Transform - parent: 14417 + parent: 15365 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 32992 + - uid: 15713 components: - type: Transform rot: 3.141592653589793 rad pos: 75.22865,1.6687617 parent: 2 - - uid: 33798 + - uid: 15714 components: - type: Transform pos: 80.31598,3.37646 parent: 2 - proto: ClothingMaskRaven entities: - - uid: 17540 + - uid: 15715 components: - type: Transform pos: -31.544954,-118.493675 parent: 2 - proto: ClothingMaskSadMime entities: - - uid: 14809 + - uid: 15716 components: - type: Transform pos: 34.213436,-17.624268 parent: 2 - proto: ClothingMaskSexyClown entities: - - uid: 14569 + - uid: 1314 components: - type: Transform - parent: 14567 + parent: 1311 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskSexyMime entities: - - uid: 14694 + - uid: 15627 components: - type: Transform - parent: 14692 + parent: 15625 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingMaskSterile entities: - - uid: 14810 + - uid: 15717 components: - type: Transform rot: 3.141592653589793 rad pos: -51.551735,-19.731647 parent: 2 - - uid: 14811 + - uid: 15718 components: - type: Transform pos: -50.552757,-2.602046 parent: 2 - - uid: 14812 + - uid: 15719 components: - type: Transform pos: -46.442535,4.514334 parent: 2 - - uid: 14813 + - uid: 15720 components: - type: Transform pos: -66.46956,-23.40873 parent: 2 - proto: ClothingNeckBling entities: - - uid: 33767 + - uid: 15721 components: - type: Transform pos: -7.500545,-4.3630633 parent: 2 - proto: ClothingNeckCargomedal entities: - - uid: 14816 + - uid: 15722 components: - type: Transform pos: 0.08470392,-95.41465 parent: 2 - proto: ClothingNeckCloakEnby entities: - - uid: 15846 + - uid: 15503 components: - type: Transform - parent: 15845 + parent: 15501 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckCloakNanotrasen entities: - - uid: 14855 + - uid: 1787 + components: + - type: Transform + parent: 1785 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15723 components: - type: Transform pos: 47.534107,27.442936 parent: 2 - proto: ClothingNeckCloakPirateCap entities: - - uid: 1085 + - uid: 15724 components: - type: Transform pos: 10.469885,-22.367643 parent: 2 - proto: ClothingNeckCloakTrans entities: - - uid: 14821 + - uid: 15726 components: - type: Transform - parent: 14820 + parent: 15725 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckDeForestPin entities: - - uid: 14826 + - uid: 15728 components: - type: Transform pos: -49.731983,-19.03725 parent: 2 - - uid: 14827 + - uid: 15729 components: - type: Transform pos: -48.25809,-13.305488 parent: 2 - proto: ClothingNeckDonkPin entities: - - uid: 14828 + - uid: 15730 components: - type: Transform pos: 28.708607,21.1283 parent: 2 - proto: ClothingNeckEarthPin entities: - - uid: 6202 + - uid: 15731 components: - type: Transform pos: 5.5134435,-62.576916 parent: 2 - - uid: 14750 + - uid: 15732 components: - type: Transform pos: 3.5034523,-62.5625 parent: 2 - - uid: 14776 + - uid: 15733 components: - type: Transform pos: 5.5290685,-59.62379 parent: 2 - - uid: 14783 + - uid: 15734 components: - type: Transform pos: 16.509111,-62.59952 parent: 2 - - uid: 14784 + - uid: 15735 components: - type: Transform pos: -19.49529,-62.58093 parent: 2 - - uid: 14829 + - uid: 15736 components: - type: Transform pos: -30.330353,-112.935104 parent: 2 - - uid: 28853 + - uid: 15737 components: - type: Transform pos: -20.480944,-62.60587 parent: 2 - proto: ClothingNeckEngineermedal entities: - - uid: 14830 + - uid: 15738 components: - type: Transform rot: -1.5707963267948966 rad @@ -106001,163 +107093,170 @@ entities: parent: 2 - proto: ClothingNeckGoldmedal entities: - - uid: 465 + - uid: 15739 components: - type: Transform pos: -7.3385572,-6.0528207 parent: 2 - proto: ClothingNeckLGBTPin entities: - - uid: 14831 + - uid: 15740 components: - type: Transform pos: -73.198944,1.5275314 parent: 2 - - uid: 14832 + - uid: 15741 components: - type: Transform pos: -72.740295,1.5275314 parent: 2 - proto: ClothingNeckLogistikaPin entities: - - uid: 14833 + - uid: 15742 components: - type: Transform pos: -31.856077,-95.004875 parent: 2 - - uid: 14834 + - uid: 15743 components: - type: Transform pos: 12.456436,-78.268105 parent: 2 - - uid: 14835 + - uid: 15744 components: - type: Transform pos: 12.222061,-78.330605 parent: 2 - proto: ClothingNeckMantleCap entities: - - uid: 14836 + - uid: 15745 components: - type: Transform pos: 17.475649,11.707868 parent: 2 - proto: ClothingNeckMantleERTLeader entities: - - uid: 38158 + - uid: 41099 components: - type: Transform - parent: 38155 + parent: 41096 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckMantleHOP entities: - - uid: 14837 + - uid: 15746 components: - type: Transform pos: -9.48488,6.7759924 parent: 2 - proto: ClothingNeckMantleHOSShoulder entities: - - uid: 8770 + - uid: 15747 components: - type: Transform pos: 52.510124,16.748306 parent: 2 - proto: ClothingNeckMantleRD entities: - - uid: 14840 + - uid: 15748 components: - type: Transform pos: -34.483765,-70.37977 parent: 2 - proto: ClothingNeckMedicalmedal entities: - - uid: 14841 + - uid: 15749 components: - type: Transform pos: -34.272038,-7.815073 parent: 2 - proto: ClothingNeckNakamuraPin entities: - - uid: 14842 + - uid: 15750 components: - type: Transform pos: 51.416176,-53.312748 parent: 2 - - uid: 14843 + - uid: 15751 components: - type: Transform pos: 51.603676,-53.437748 parent: 2 - - uid: 14844 + - uid: 15752 components: - type: Transform pos: 43.16825,-66.29646 parent: 2 - proto: ClothingNeckNanoTrasenPin entities: - - uid: 14845 + - uid: 1788 + components: + - type: Transform + parent: 1785 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15753 components: - type: Transform pos: -40.298595,-62.35521 parent: 2 - - uid: 14846 + - uid: 15754 components: - type: Transform pos: 10.753314,16.138332 parent: 2 - - uid: 14847 + - uid: 15755 components: - type: Transform pos: 10.34992,23.532305 parent: 2 - - uid: 34906 + - uid: 15757 components: - type: Transform - parent: 34904 + parent: 15756 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckScarfStripedLightBlue entities: - - uid: 14848 + - uid: 15760 components: - type: Transform pos: -34.47571,-21.488892 parent: 2 - proto: ClothingNeckScarfStripedZebra entities: - - uid: 14695 + - uid: 15628 components: - type: Transform - parent: 14692 + parent: 15625 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingNeckSciencemedal entities: - - uid: 14849 + - uid: 15761 components: - type: Transform pos: -39.62423,-69.09136 parent: 2 - proto: ClothingNeckStethoscope entities: - - uid: 14851 + - uid: 15762 components: - type: Transform pos: -49.52571,-18.56588 parent: 2 - - uid: 14852 + - uid: 15763 components: - type: Transform pos: -49.32866,-13.389056 parent: 2 - proto: ClothingNeckStoleChaplain entities: - - uid: 40166 + - uid: 15764 components: - type: MetaData name: епитрахиль @@ -106166,14 +107265,14 @@ entities: parent: 2 - proto: ClothingNeckSyndicakePin entities: - - uid: 14853 + - uid: 15765 components: - type: Transform pos: -35.538567,20.515968 parent: 2 - proto: ClothingNeckTransPin entities: - - uid: 14854 + - uid: 15766 components: - type: MetaData name: Метка Цезаря @@ -106182,50 +107281,50 @@ entities: parent: 2 - proto: ClothingOuterAerostaticBomberJacket entities: - - uid: 14577 + - uid: 15488 components: - type: Transform - parent: 14573 + parent: 15484 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterApronBotanist entities: - - uid: 40802 + - uid: 2565 components: - type: Transform - parent: 40794 + parent: 2559 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterApronChef entities: - - uid: 14856 + - uid: 15767 components: - type: Transform pos: 30.476088,11.708928 parent: 2 - - uid: 14857 + - uid: 15768 components: - type: Transform pos: -57.5,9.5 parent: 2 - proto: ClothingOuterArmorBulletproof entities: - - uid: 1916 + - uid: 2270 components: - type: Transform - parent: 1914 + parent: 2268 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 9727 + - uid: 15769 components: - type: Transform rot: 3.141592653589793 rad pos: 64.60806,-11.362036 parent: 2 - - uid: 36907 + - uid: 15770 components: - type: Transform rot: 3.141592653589793 rad @@ -106233,7 +107332,7 @@ entities: parent: 2 - proto: ClothingOuterArmorHeavy entities: - - uid: 2877 + - uid: 15771 components: - type: Transform pos: 65.52086,-19.44498 @@ -106269,31 +107368,31 @@ entities: title: null - proto: ClothingOuterArmorPodWars entities: - - uid: 14867 + - uid: 15772 components: - type: Transform pos: -84.510376,-23.47834 parent: 2 - proto: ClothingOuterArmorReflective entities: - - uid: 37708 + - uid: 15773 components: - type: Transform pos: 60.556175,-13.448418 parent: 2 - - uid: 41138 + - uid: 15774 components: - type: Transform pos: 60.431175,-13.401543 parent: 2 - proto: ClothingOuterArmorRiot entities: - - uid: 15465 + - uid: 15775 components: - type: Transform pos: 60.315758,-11.470428 parent: 2 - - uid: 15828 + - uid: 15776 components: - type: Transform pos: 60.628258,-11.611053 @@ -106327,7 +107426,7 @@ entities: priority: 0 component: Armor title: null - - uid: 16227 + - uid: 15777 components: - type: Transform pos: 60.581383,-11.361053 @@ -106363,148 +107462,142 @@ entities: title: null - proto: ClothingOuterBioCmo entities: - - uid: 30512 + - uid: 15622 components: - type: Transform - parent: 29203 + parent: 15620 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterBioGeneral entities: - - uid: 14874 + - uid: 15778 components: - type: Transform pos: 36.40268,23.557825 parent: 2 - proto: ClothingOuterBioScientist entities: - - uid: 36730 + - uid: 15346 components: - type: Transform - parent: 36728 + parent: 15344 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterCardborg entities: - - uid: 14875 + - uid: 15779 components: - type: Transform pos: -85.62268,-9.52269 parent: 2 - proto: ClothingOuterCoatAMG entities: - - uid: 14877 + - uid: 15781 components: - type: Transform - parent: 14876 + parent: 15780 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14879 + - uid: 15783 components: - type: Transform - parent: 14878 + parent: 15782 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterCoatBomber entities: - - uid: 14578 + - uid: 15489 components: - type: Transform - parent: 14573 + parent: 15484 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterCoatDetective entities: - - uid: 16733 + - uid: 15784 components: - type: Transform pos: -16.754519,-29.286444 parent: 2 - proto: ClothingOuterCoatDetectiveDark entities: - - uid: 14881 + - uid: 15786 components: - type: Transform - parent: 14880 + parent: 15785 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterCoatLabSecurityMedic entities: - - uid: 24413 + - uid: 15589 components: - type: Transform - parent: 24339 + parent: 15586 - type: Physics canCollide: False - proto: ClothingOuterCoatTrench entities: - - uid: 16723 + - uid: 15787 components: - type: Transform pos: -16.754519,-29.489569 parent: 2 - proto: ClothingOuterGhostSheet entities: - - uid: 1983 - components: - - type: Transform - parent: 5 - - type: Physics - canCollide: False - - uid: 4802 + - uid: 15789 components: - type: Transform - parent: 15173 + parent: 15788 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14882 + - uid: 15790 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.70935,-0.24553037 parent: 2 - - uid: 14883 + - uid: 15791 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.01221,-0.24553037 parent: 2 - - uid: 33921 + - uid: 15793 components: - type: Transform - parent: 36800 + parent: 15792 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 36756 + - uid: 15794 components: - type: Transform pos: -57.54903,-40.19077 parent: 2 - - uid: 36758 + - uid: 15795 components: - type: Transform pos: -17.401802,-86.49495 parent: 2 - - uid: 36820 + - uid: 15797 components: - type: Transform - parent: 40847 + parent: 15796 - type: Physics canCollide: False - proto: ClothingOuterHardsuitBrigmedic entities: - - uid: 1758 + - uid: 2483 components: - type: Transform - parent: 16246 + parent: 2475 - type: GroupExamine group: - hoverMessage: "" @@ -106533,28 +107626,28 @@ entities: - type: InsideEntityStorage - proto: ClothingOuterHardsuitERTEngineer entities: - - uid: 38188 + - uid: 41133 components: - type: Transform - parent: 38186 + parent: 41131 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterHardsuitERTLeader entities: - - uid: 38194 + - uid: 41140 components: - type: Transform - parent: 38192 + parent: 41138 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterHardsuitERTMedical entities: - - uid: 38164 + - uid: 41105 components: - type: Transform - parent: 38162 + parent: 41103 - type: GroupExamine group: - hoverMessage: "" @@ -106591,53 +107684,53 @@ entities: - type: InsideEntityStorage - proto: ClothingOuterHardsuitERTSecurity entities: - - uid: 38170 + - uid: 41112 components: - type: Transform - parent: 38168 + parent: 41110 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38176 + - uid: 41119 components: - type: Transform - parent: 38174 + parent: 41117 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38182 + - uid: 41126 components: - type: Transform - parent: 38180 + parent: 41124 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterHardsuitEVA entities: - - uid: 14755 + - uid: 15667 components: - type: Transform - parent: 14753 + parent: 15665 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14765 + - uid: 15678 components: - type: Transform - parent: 14760 + parent: 15673 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14766 + - uid: 15679 components: - type: Transform - parent: 14760 + parent: 15673 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterHardsuitLing entities: - - uid: 14885 + - uid: 15798 components: - type: Transform rot: -1.5707963267948966 rad @@ -106672,26 +107765,26 @@ entities: title: null - proto: ClothingOuterHardsuitPirateEVA entities: - - uid: 36775 + - uid: 15194 components: - type: Transform - parent: 36751 + parent: 15193 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterHardsuitSalvage entities: - - uid: 4811 + - uid: 15800 components: - type: Transform - parent: 15635 + parent: 15799 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15787 + - uid: 15803 components: - type: Transform - parent: 15644 + parent: 15802 - type: GroupExamine group: - hoverMessage: "" @@ -106726,63 +107819,77 @@ entities: - type: InsideEntityStorage - proto: ClothingOuterHardsuitVoidParamed entities: - - uid: 14788 + - uid: 15697 components: - type: Transform - parent: 14786 + parent: 15695 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterHospitalGown entities: - - uid: 14889 + - uid: 15806 components: - type: Transform - parent: 14888 + parent: 15805 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14890 + - uid: 15807 components: - type: Transform pos: -34.585087,-23.223267 parent: 2 - - uid: 14891 + - uid: 15808 components: - type: Transform pos: -34.41321,-23.410767 parent: 2 - proto: ClothingOuterPoncho entities: - - uid: 14892 + - uid: 15809 components: - type: Transform rot: 3.141592653589793 rad pos: -93.5,0.5 parent: 2 - - uid: 14893 + - uid: 15810 components: - type: Transform pos: -36.469875,-90.279 parent: 2 - proto: ClothingOuterSanta entities: - - uid: 14710 + - uid: 15641 components: - type: Transform - parent: 14708 + parent: 15639 - type: Physics canCollide: False +- proto: ClothingOuterStraightjacket + entities: + - uid: 26982 + components: + - type: Transform + parent: 26981 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40663 + components: + - type: Transform + pos: -46.586346,-3.2812576 + parent: 2 - proto: ClothingOuterSuitCarp entities: - - uid: 14894 + - uid: 15811 components: - type: Transform pos: 36.474102,-19.33836 parent: 2 - proto: ClothingOuterSuitRad entities: - - uid: 16715 + - uid: 15812 components: - type: Transform pos: -19.54189,-27.465546 @@ -106795,116 +107902,106 @@ entities: parent: 5 - type: Physics canCollide: False - - uid: 6167 + - uid: 15814 components: - type: Transform - parent: 24308 + parent: 15813 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 35806 + - uid: 15815 components: - type: Transform pos: -84.49607,-25.376345 parent: 2 - proto: ClothingOuterVestArmorMedSec entities: - - uid: 16253 + - uid: 2484 components: - type: Transform - parent: 16246 + parent: 2475 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterVestHazard entities: - - uid: 14895 + - uid: 15816 components: - type: Transform pos: 104.60573,-58.704784 parent: 2 - - uid: 34403 - components: - - type: Transform - pos: -16.362753,3.7470617 - parent: 2 - - uid: 34404 - components: - - type: Transform - pos: -16.628378,3.7314367 - parent: 2 - proto: ClothingOuterVestSecurityMedic entities: - - uid: 24342 + - uid: 15590 components: - type: Transform - parent: 24339 + parent: 15586 - type: Physics canCollide: False - proto: ClothingOuterVestWebMerc entities: - - uid: 384 + - uid: 15817 components: - type: Transform pos: 10.522854,-18.440525 parent: 2 - proto: ClothingOuterWinterMusician entities: - - uid: 14413 + - uid: 15361 components: - type: Transform - parent: 14412 + parent: 15360 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterWizard entities: - - uid: 14729 + - uid: 15662 components: - type: Transform - parent: 14727 + parent: 15660 - type: Physics canCollide: False - proto: ClothingOuterWizardRed entities: - - uid: 14706 + - uid: 15637 components: - type: Transform - parent: 14704 + parent: 15635 - type: Physics canCollide: False - proto: ClothingOuterWizardViolet entities: - - uid: 14717 + - uid: 15647 components: - type: Transform - parent: 14715 + parent: 15645 - type: Physics canCollide: False - proto: ClothingShoesAerostatic entities: - - uid: 14579 + - uid: 15490 components: - type: Transform - parent: 14573 + parent: 15484 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsCombat entities: - - uid: 14906 + - uid: 15818 components: - type: Transform pos: 71.286,-49.442745 parent: 2 - - uid: 14907 + - uid: 15819 components: - type: Transform pos: 71.67663,-49.33337 parent: 2 - proto: ClothingShoesBootsCowboyBlack entities: - - uid: 14908 + - uid: 15820 components: - type: Transform pos: -29.474148,-86.34744 @@ -106914,72 +108011,72 @@ entities: item: !type:ContainerSlot showEnts: False occludes: True - ent: 9739 + ent: 15821 - proto: ClothingShoesBootsLaceup entities: - - uid: 34905 + - uid: 15758 components: - type: Transform - parent: 34904 + parent: 15756 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsMag entities: - - uid: 27628 + - uid: 15823 components: - type: Transform - parent: 15041 + parent: 15822 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38165 + - uid: 41106 components: - type: Transform - parent: 38162 + parent: 41103 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38171 + - uid: 41113 components: - type: Transform - parent: 38168 + parent: 41110 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38177 + - uid: 41120 components: - type: Transform - parent: 38174 + parent: 41117 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38183 + - uid: 41127 components: - type: Transform - parent: 38180 + parent: 41124 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38189 + - uid: 41134 components: - type: Transform - parent: 38186 + parent: 41131 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsMagAdv entities: - - uid: 38195 + - uid: 41141 components: - type: Transform - parent: 38192 + parent: 41138 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesBootsMercFilled entities: - - uid: 392 + - uid: 15824 components: - type: Transform pos: 10.4807,-24.389404 @@ -106987,110 +108084,110 @@ entities: - type: NoSlip - proto: ClothingShoesBootsPerformer entities: - - uid: 14414 + - uid: 15362 components: - type: Transform - parent: 14412 + parent: 15360 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesClownBanana entities: - - uid: 14912 + - uid: 15826 components: - type: Transform - parent: 14911 + parent: 15825 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesColorBlack entities: - - uid: 14668 + - uid: 15534 components: - type: Transform - parent: 14665 + parent: 15530 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14913 + - uid: 15827 components: - type: Transform pos: -34.5189,-83.39491 parent: 2 - proto: ClothingShoeSlippersDuck entities: - - uid: 26145 + - uid: 15828 components: - type: Transform pos: 74.42085,-12.016684 parent: 2 - proto: ClothingShoesSchoolBlack entities: - - uid: 14915 + - uid: 15830 components: - type: Transform - parent: 14914 + parent: 15829 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesSchoolWhite entities: - - uid: 14918 + - uid: 15833 components: - type: Transform - parent: 14917 + parent: 15832 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingShoesSwat entities: - - uid: 1862 + - uid: 15834 components: - type: Transform pos: 65.52626,-19.43111 parent: 2 - proto: ClothingUniformColorJumpskirtRainbow entities: - - uid: 14919 + - uid: 15835 components: - type: Transform pos: -74.706635,4.609642 parent: 2 - - uid: 14920 + - uid: 15836 components: - type: Transform pos: -74.52317,4.627988 parent: 2 - proto: ClothingUniformColorRainbow entities: - - uid: 14921 + - uid: 15837 components: - type: Transform pos: -74.1746,4.5362587 parent: 2 - - uid: 14922 + - uid: 15838 components: - type: Transform pos: -74.44979,4.5729504 parent: 2 - proto: ClothingUniformJumpskirtBrigmedic entities: - - uid: 24414 + - uid: 15591 components: - type: Transform - parent: 24339 + parent: 15586 - type: Physics canCollide: False - proto: ClothingUniformJumpskirtCasualBlue entities: - - uid: 16741 + - uid: 15839 components: - type: Transform pos: -15.7545185,-29.239569 parent: 2 - proto: ClothingUniformJumpskirtCasualRed entities: - - uid: 14923 + - uid: 15840 components: - type: MetaData desc: Ave! True to Caesar @@ -107098,7 +108195,7 @@ entities: - type: Transform pos: 71.218124,-48.413193 parent: 2 - - uid: 14924 + - uid: 15841 components: - type: MetaData desc: Ave! True to Caesar @@ -107108,357 +108205,364 @@ entities: parent: 2 - proto: ClothingUniformJumpskirtColorDarkBlue entities: - - uid: 16716 + - uid: 15842 components: - type: Transform pos: -16.682514,-27.723358 parent: 2 - proto: ClothingUniformJumpskirtColorDarkGreen entities: - - uid: 15260 + - uid: 15843 components: - type: Transform pos: -14.971577,-27.301483 parent: 2 - - uid: 16717 + - uid: 15844 components: - type: Transform pos: -15.018452,-27.676483 parent: 2 - proto: ClothingUniformJumpskirtCurator entities: - - uid: 16740 + - uid: 15845 components: - type: Transform pos: -18.035769,-27.723944 parent: 2 - proto: ClothingUniformJumpskirtElegantMaid entities: - - uid: 41122 + - uid: 15847 components: - type: Transform - parent: 39987 + parent: 15846 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtLawyerBlue entities: - - uid: 16714 + - uid: 15848 components: - type: Transform pos: -16.223269,-29.239569 parent: 2 - proto: ClothingUniformJumpskirtOfLife entities: - - uid: 14925 + - uid: 15849 components: - type: Transform pos: 103.35912,-50.496166 parent: 2 - proto: ClothingUniformJumpskirtPerformer entities: - - uid: 14415 + - uid: 15363 components: - type: Transform - parent: 14412 + parent: 15360 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtSchool entities: - - uid: 14916 + - uid: 15831 components: - type: Transform - parent: 14914 + parent: 15829 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtTacticalMaid entities: - - uid: 14926 + - uid: 15850 components: - type: Transform pos: -6.4958534,-72.458084 parent: 2 - proto: ClothingUniformJumpsuitAerostatic entities: - - uid: 14580 + - uid: 15491 components: - type: Transform - parent: 14573 + parent: 15484 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitAncient entities: - - uid: 14927 + - uid: 15851 components: - type: Transform pos: 29.50898,32.55174 parent: 2 - proto: ClothingUniformJumpsuitBartender entities: - - uid: 15259 + - uid: 15852 components: - type: Transform pos: -15.229389,-29.246796 parent: 2 - - uid: 16360 + - uid: 15853 components: - type: Transform pos: -15.276264,-29.598358 parent: 2 - proto: ClothingUniformJumpsuitBrigmedic entities: - - uid: 24412 + - uid: 15592 components: - type: Transform - parent: 24339 + parent: 15586 - type: Physics canCollide: False - proto: ClothingUniformJumpsuitChiefEngineerNT entities: - - uid: 14928 + - uid: 15854 components: - type: Transform pos: 95.52006,-84.47528 parent: 2 - proto: ClothingUniformJumpsuitClownBanana entities: - - uid: 16357 + - uid: 15855 components: - type: Transform pos: -16.63564,-27.395233 parent: 2 - proto: ClothingUniformJumpsuitColorBlack entities: - - uid: 14669 + - uid: 15535 components: - type: Transform - parent: 14665 + parent: 15530 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitColorTeal entities: - - uid: 15851 + - uid: 15856 components: - type: Transform pos: -15.651264,-27.371796 parent: 2 - - uid: 15852 + - uid: 15857 components: - type: Transform pos: -15.674702,-27.723358 parent: 2 - proto: ClothingUniformJumpsuitColorWhite entities: - - uid: 16358 + - uid: 15858 components: - type: Transform pos: -17.66689,-27.395233 parent: 2 - - uid: 16359 + - uid: 15859 components: - type: Transform pos: -17.66689,-27.746796 parent: 2 - proto: ClothingUniformJumpsuitCurator entities: - - uid: 16739 + - uid: 15860 components: - type: Transform pos: -18.067019,-27.395819 parent: 2 - proto: ClothingUniformJumpsuitERTLeader entities: - - uid: 38159 + - uid: 41100 components: - type: Transform - parent: 38155 + parent: 41096 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitHoSBlue entities: - - uid: 14581 + - uid: 15492 components: - type: MetaData desc: Синий парадный комбинезон. name: синий парадный комбинезон - type: Transform - parent: 14573 + parent: 15484 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitMusician entities: - - uid: 14416 + - uid: 15364 components: - type: Transform - parent: 14412 + parent: 15360 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitNanotrasen entities: - - uid: 34907 + - uid: 1789 + components: + - type: Transform + parent: 1785 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15759 components: - type: Transform - parent: 34904 + parent: 15756 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitRecruitNT entities: - - uid: 14929 + - uid: 15861 components: - type: Transform pos: -45.461956,-111.483116 parent: 2 - proto: ClothingUniformJumpsuitSafari entities: - - uid: 14930 + - uid: 15862 components: - type: Transform pos: -67.5,-48.5 parent: 2 - proto: ClothingUniformJumpsuitSecBlue entities: - - uid: 14582 + - uid: 15493 components: - type: Transform - parent: 14573 + parent: 15484 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClownRecorder entities: - - uid: 14570 + - uid: 1315 components: - type: Transform - parent: 14567 + parent: 1311 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClusterBangFull entities: - - uid: 37925 + - uid: 40866 components: - type: Transform - parent: 37923 + parent: 40864 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Coal1 entities: - - uid: 27892 + - uid: 15863 components: - type: Transform pos: -8.516426,-60.03743 parent: 2 - - uid: 28185 + - uid: 15864 components: - type: Transform pos: -8.375801,-59.78743 parent: 2 - - uid: 28186 + - uid: 15865 components: - type: Transform pos: -8.235176,-59.66243 parent: 2 - - uid: 28187 + - uid: 15866 components: - type: Transform pos: -8.219551,-59.928055 parent: 2 - - uid: 28324 + - uid: 15867 components: - type: Transform pos: -8.250801,-59.896805 parent: 2 - - uid: 28330 + - uid: 15868 components: - type: Transform pos: -9.110176,-58.615555 parent: 2 - - uid: 28338 + - uid: 15869 components: - type: Transform pos: -9.782051,-58.63118 parent: 2 - - uid: 28366 + - uid: 15870 components: - type: Transform pos: -10.578926,-58.459305 parent: 2 - - uid: 28374 + - uid: 15871 components: - type: Transform pos: -8.922676,-58.44368 parent: 2 - - uid: 28375 + - uid: 15872 components: - type: Transform pos: -9.016426,-58.928055 parent: 2 - - uid: 28406 + - uid: 15873 components: - type: Transform pos: -8.735176,-60.03743 parent: 2 - - uid: 28407 + - uid: 15874 components: - type: Transform pos: -7.328926,-60.56868 parent: 2 - - uid: 28410 + - uid: 15875 components: - type: Transform pos: -8.500801,-60.896805 parent: 2 - - uid: 28426 + - uid: 15876 components: - type: Transform pos: -8.500801,-61.834305 parent: 2 - - uid: 28436 + - uid: 15877 components: - type: Transform pos: -8.610176,-62.521805 parent: 2 - - uid: 28444 + - uid: 15878 components: - type: Transform pos: -10.032051,-63.396805 parent: 2 - proto: Cobweb1 entities: - - uid: 32417 + - uid: 15879 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-54.5 parent: 2 - - uid: 32418 + - uid: 15880 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-54.5 parent: 2 - - uid: 32419 + - uid: 15881 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-48.5 parent: 2 - - uid: 32420 + - uid: 15882 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-54.5 parent: 2 - - uid: 32422 + - uid: 15883 components: - type: Transform rot: -1.5707963267948966 rad @@ -107466,40 +108570,40 @@ entities: parent: 2 - proto: Cobweb2 entities: - - uid: 26106 + - uid: 15884 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-22.5 parent: 2 - - uid: 26107 + - uid: 15885 components: - type: Transform pos: -2.5,-22.5 parent: 2 - - uid: 32421 + - uid: 15886 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-45.5 parent: 2 - - uid: 32423 + - uid: 15887 components: - type: Transform pos: -15.5,-46.5 parent: 2 - - uid: 33743 + - uid: 15888 components: - type: Transform pos: -34.5,20.5 parent: 2 - - uid: 33744 + - uid: 15889 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,19.5 parent: 2 - - uid: 33745 + - uid: 15890 components: - type: Transform rot: 3.141592653589793 rad @@ -107507,64 +108611,64 @@ entities: parent: 2 - proto: CockroachTimedSpawner entities: - - uid: 14956 + - uid: 15891 components: - type: Transform pos: -62.5,-11.5 parent: 2 - - uid: 14957 + - uid: 15892 components: - type: Transform pos: -37.5,12.5 parent: 2 - - uid: 14958 + - uid: 15893 components: - type: Transform pos: 44.5,18.5 parent: 2 - - uid: 14959 + - uid: 15894 components: - type: Transform pos: 63.5,-48.5 parent: 2 - - uid: 26096 + - uid: 15895 components: - type: Transform pos: 31.5,18.5 parent: 2 - - uid: 26137 + - uid: 15896 components: - type: Transform pos: 46.5,0.5 parent: 2 - - uid: 26174 + - uid: 15897 components: - type: Transform pos: 19.5,6.5 parent: 2 - - uid: 26248 + - uid: 15898 components: - type: Transform pos: 44.5,10.5 parent: 2 - proto: CognizineChemistryBottle entities: - - uid: 10804 + - uid: 15900 components: - type: Transform - parent: 24615 + parent: 15899 - type: Physics canCollide: False - proto: CombatMedipen entities: - - uid: 1590 + - uid: 2485 components: - type: Transform - parent: 16246 + parent: 2475 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 29045 + - uid: 15901 components: - type: Transform rot: 3.141592653589793 rad @@ -107572,266 +108676,259 @@ entities: parent: 2 - proto: ComfyChair entities: - - uid: 4601 + - uid: 15902 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,15.5 parent: 2 - - uid: 14962 + - uid: 15903 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-100.5 parent: 2 - - uid: 14963 + - uid: 15904 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-100.5 parent: 2 - - uid: 14964 + - uid: 15905 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,27.5 parent: 2 - - uid: 14965 + - uid: 15906 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,27.5 parent: 2 - - uid: 14967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,11.5 - parent: 2 - - uid: 14968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,10.5 - parent: 2 - - uid: 14973 + - uid: 15907 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-5.5 parent: 2 - - uid: 14974 + - uid: 15908 components: - type: Transform pos: -29.5,-4.5 parent: 2 - - uid: 14975 + - uid: 15909 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-2.5 parent: 2 - - uid: 14976 + - uid: 15910 components: - type: Transform pos: -30.5,-0.5 parent: 2 - - uid: 14977 + - uid: 15911 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-25.5 parent: 2 - - uid: 14978 + - uid: 15912 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-27.5 parent: 2 - - uid: 14980 + - uid: 15913 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-64.5 parent: 2 - - uid: 14982 + - uid: 15914 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-64.5 parent: 2 - - uid: 14983 + - uid: 15915 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-64.5 parent: 2 - - uid: 14984 + - uid: 15916 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-70.5 parent: 2 - - uid: 14985 + - uid: 15917 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-47.5 parent: 2 - - uid: 14988 + - uid: 15918 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-69.5 parent: 2 - - uid: 14989 + - uid: 15919 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-70.5 parent: 2 - - uid: 14990 + - uid: 15920 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-69.5 parent: 2 - - uid: 14991 + - uid: 15921 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-69.5 parent: 2 - - uid: 14992 + - uid: 15922 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-1.5 parent: 2 - - uid: 14993 + - uid: 15923 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-74.5 parent: 2 - - uid: 14994 + - uid: 15924 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,3.5 parent: 2 - - uid: 14995 + - uid: 15925 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-75.5 parent: 2 - - uid: 14997 + - uid: 15926 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,5.5 parent: 2 - - uid: 14998 + - uid: 15927 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,5.5 parent: 2 - - uid: 14999 + - uid: 15928 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,3.5 parent: 2 - - uid: 15000 + - uid: 15929 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,6.5 parent: 2 - - uid: 15001 + - uid: 15930 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-25.5 parent: 2 - - uid: 15002 + - uid: 15931 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-68.5 parent: 2 - - uid: 17803 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,20.5 - parent: 2 - - uid: 27739 + - uid: 15932 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,10.5 parent: 2 - - uid: 32570 + - uid: 15933 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,10.5 parent: 2 - - uid: 39468 + - uid: 15934 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-0.5 parent: 2 - - uid: 39469 + - uid: 15935 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-0.5 parent: 2 - - uid: 39470 + - uid: 15936 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-0.5 parent: 2 - - uid: 39471 + - uid: 15937 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-0.5 parent: 2 - - uid: 39472 + - uid: 15938 components: - type: Transform pos: -2.5,1.5 parent: 2 - - uid: 39473 + - uid: 15939 components: - type: Transform pos: -1.5,1.5 parent: 2 - - uid: 39474 + - uid: 15940 components: - type: Transform pos: 2.5,1.5 parent: 2 - - uid: 39475 + - uid: 15941 components: - type: Transform pos: 3.5,1.5 parent: 2 - - uid: 40430 + - uid: 15942 components: - type: Transform pos: 40.5,-25.5 parent: 2 + - uid: 15943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,17.5 + parent: 2 + - uid: 15944 + components: + - type: Transform + pos: -8.5,19.5 + parent: 2 - proto: CommandmentCircuitBoard entities: - - uid: 13 + - uid: 11 components: - type: Transform parent: 5 @@ -107839,50 +108936,56 @@ entities: canCollide: False - proto: CommsComputerCircuitboard entities: - - uid: 15003 + - uid: 15945 components: - type: Transform pos: 37.553635,-42.480568 parent: 2 - proto: ComputerAlert entities: - - uid: 15004 + - uid: 15946 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-74.5 parent: 2 - - uid: 15006 + - uid: 15947 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,21.5 parent: 2 - - uid: 15007 + - uid: 15948 components: - type: Transform pos: 11.5,17.5 parent: 2 - - uid: 15008 + - uid: 15949 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-50.5 parent: 2 - - uid: 15318 + - uid: 15950 components: - type: Transform pos: 48.5,-96.5 parent: 2 + - uid: 15951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 95.5,-90.5 + parent: 2 - proto: ComputerAnalysisConsole entities: - - uid: 15009 + - uid: 15952 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,25.5 parent: 2 - - uid: 15010 + - uid: 15953 components: - type: Transform rot: 1.5707963267948966 rad @@ -107891,9 +108994,9 @@ entities: - type: DeviceLinkSource range: 7 linkedPorts: - 24391: + 27045: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - - uid: 15011 + - uid: 15954 components: - type: Transform rot: 1.5707963267948966 rad @@ -107901,34 +109004,34 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24392: + 27046: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - proto: computerBodyScanner entities: - - uid: 15012 + - uid: 15955 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-54.5 parent: 2 - - uid: 15013 + - uid: 15956 components: - type: Transform pos: -36.5,-19.5 parent: 2 - - uid: 15014 + - uid: 15957 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-50.5 parent: 2 - - uid: 15015 + - uid: 15958 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-40.5 parent: 2 - - uid: 30715 + - uid: 15959 components: - type: Transform rot: -1.5707963267948966 rad @@ -107936,185 +109039,212 @@ entities: parent: 2 - proto: ComputerBroken entities: - - uid: 14462 + - uid: 15960 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-21.5 parent: 2 - - uid: 15017 + - uid: 15961 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,-55.5 parent: 2 - - uid: 15018 + - uid: 15962 components: - type: Transform rot: 1.5707963267948966 rad pos: 93.5,-51.5 parent: 2 - - uid: 28510 + - uid: 15963 components: - type: Transform pos: 18.5,-12.5 parent: 2 - - uid: 28533 + - uid: 15964 components: - type: Transform pos: 18.5,-12.5 parent: 2 - - uid: 32406 + - uid: 15965 components: - type: Transform pos: -18.5,-45.5 parent: 2 - - uid: 34910 + - uid: 15966 components: - type: Transform pos: 50.5,23.5 parent: 2 - - uid: 40229 + - uid: 15967 components: - type: Transform pos: 51.5,23.5 parent: 2 - proto: ComputerCargoBounty entities: - - uid: 15021 + - uid: 15968 components: - type: Transform pos: 3.5,-86.5 parent: 2 - proto: ComputerCargoOrders entities: - - uid: 15022 + - uid: 15969 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,25.5 parent: 2 - - uid: 15023 + - uid: 15970 components: - type: Transform pos: 9.5,-81.5 parent: 2 - - uid: 15024 + - uid: 15971 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-89.5 parent: 2 - - uid: 15025 + - uid: 15972 components: - type: Transform pos: -2.5,-93.5 parent: 2 - - uid: 15026 + - uid: 15973 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-83.5 parent: 2 + - uid: 15974 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 - proto: ComputerCargoShuttle entities: - - uid: 15027 + - uid: 15975 components: - type: Transform pos: -3.5,-93.5 parent: 2 - proto: ComputerComms entities: - - uid: 15028 + - uid: 15976 components: - type: Transform pos: 0.5,25.5 parent: 2 - - uid: 29402 + - uid: 15977 components: - type: Transform pos: 14.5,16.5 parent: 2 - proto: ComputerCrewMonitoring entities: - - uid: 15030 + - uid: 15978 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,-86.5 parent: 2 - - uid: 15031 + - uid: 15979 components: - type: Transform pos: -46.5,-38.5 parent: 2 - - uid: 15032 + - uid: 15980 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,19.5 parent: 2 - - uid: 15033 + - uid: 15981 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-9.5 parent: 2 - - uid: 15034 + - uid: 15982 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-14.5 parent: 2 - - uid: 15035 + - uid: 15983 components: - type: Transform pos: -44.5,-32.5 parent: 2 - proto: ComputerCriminalRecords entities: - - uid: 2704 + - uid: 15984 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-27.5 parent: 2 - - uid: 11493 + - uid: 15985 + components: + - type: Transform + pos: -48.5,-46.5 + parent: 2 + - uid: 15986 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-5.5 parent: 2 - - uid: 14065 + - uid: 15987 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-19.5 parent: 2 - - uid: 15038 + - uid: 15988 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,19.5 parent: 2 - - uid: 15039 + - uid: 15989 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-42.5 parent: 2 - - uid: 15040 + - uid: 15990 components: - type: Transform pos: -3.5,-78.5 parent: 2 - - uid: 31101 + - uid: 15991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-49.5 + parent: 2 + - uid: 15992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 97.5,-91.5 + parent: 2 + - uid: 15993 + components: + - type: Transform + pos: 72.5,-26.5 + parent: 2 + - uid: 15994 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-8.5 parent: 2 - - uid: 31661 + - uid: 15995 components: - type: Transform rot: 1.5707963267948966 rad @@ -108122,54 +109252,36 @@ entities: parent: 2 - proto: ComputerFrame entities: - - uid: 1504 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-91.5 - parent: 2 - - uid: 1569 + - uid: 15996 components: - type: Transform pos: -57.5,-19.5 parent: 2 - - uid: 4794 + - uid: 15997 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-40.5 parent: 2 - - uid: 13371 + - uid: 15998 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,22.5 parent: 2 - - uid: 15043 + - uid: 15999 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-69.5 parent: 2 - - uid: 15044 + - uid: 16000 components: - type: Transform rot: 3.141592653589793 rad pos: 107.5,-59.5 parent: 2 - - uid: 15046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 95.5,-90.5 - parent: 2 - - uid: 15047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-91.5 - parent: 2 - - uid: 32405 + - uid: 16001 components: - type: Transform rot: 1.5707963267948966 rad @@ -108177,200 +109289,201 @@ entities: parent: 2 - proto: ComputerId entities: - - uid: 15048 + - uid: 16002 components: - type: Transform pos: 1.5,25.5 parent: 2 - - uid: 15050 + - uid: 16003 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,8.5 parent: 2 - - uid: 29383 + - uid: 16004 components: - type: Transform pos: 15.5,16.5 parent: 2 - proto: ComputerIFF entities: - - uid: 28531 + - uid: 16005 components: - type: Transform pos: 17.5,-12.5 parent: 2 - proto: ComputerIFFSyndicate entities: - - uid: 38198 + - uid: 41144 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-8.5 - parent: 37887 - - uid: 38830 + parent: 40828 + - uid: 41776 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,0.5 - parent: 38722 + parent: 41669 - proto: ComputerMassMedia entities: - - uid: 15051 + - uid: 16006 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,21.5 parent: 2 - - uid: 15052 + - uid: 16007 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-76.5 parent: 2 - - uid: 38831 + - uid: 41777 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,1.5 - parent: 38722 + parent: 41669 - proto: ComputerMedicalRecords entities: - - uid: 15053 + - uid: 16008 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,19.5 parent: 2 - - uid: 15054 - components: - - type: Transform - pos: 72.5,-26.5 - parent: 2 - - uid: 15055 + - uid: 16009 components: - type: Transform pos: -47.5,-38.5 parent: 2 - proto: ComputerPowerMonitoring entities: - - uid: 4591 + - uid: 16010 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-49.5 parent: 2 - - uid: 6950 + - uid: 16011 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-49.5 parent: 2 - - uid: 15057 + - uid: 16012 components: - type: Transform pos: 42.5,-82.5 parent: 2 - - uid: 15058 + - uid: 16013 components: - type: Transform pos: -39.5,-112.5 parent: 2 - - uid: 15059 + - uid: 16014 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,21.5 parent: 2 - - uid: 15062 + - uid: 16015 components: - type: Transform pos: 15.5,9.5 parent: 2 - - uid: 15063 + - uid: 16016 components: - type: Transform pos: 67.5,-55.5 parent: 2 - - uid: 15064 + - uid: 16017 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-50.5 parent: 2 - - uid: 15065 + - uid: 16018 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-63.5 parent: 2 - - uid: 15066 + - uid: 16019 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,-55.5 parent: 2 - - uid: 15067 + - uid: 16020 components: - type: Transform pos: 52.5,-86.5 parent: 2 - - uid: 15068 + - uid: 16021 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-72.5 parent: 2 + - uid: 16022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 99.5,-91.5 + parent: 2 - proto: ComputerRadar entities: - - uid: 6231 + - uid: 16023 components: - type: Transform pos: -0.5,25.5 parent: 2 - - uid: 15069 + - uid: 16024 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-73.5 parent: 2 - - uid: 15070 + - uid: 16025 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,24.5 parent: 2 - - uid: 15071 + - uid: 16026 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-102.5 parent: 2 - - uid: 38832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,1.5 - parent: 38722 - - uid: 40812 + - uid: 16027 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,13.5 parent: 2 + - uid: 41778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 41669 - proto: ComputerResearchAndDevelopment entities: - - uid: 15076 + - uid: 16028 components: - type: Transform pos: -40.5,-46.5 parent: 2 - - uid: 15077 + - uid: 16029 components: - type: Transform pos: -38.5,-61.5 parent: 2 - - uid: 15078 + - uid: 16030 components: - type: Transform rot: -1.5707963267948966 rad @@ -108378,20 +109491,20 @@ entities: parent: 2 - proto: ComputerRoboticsControl entities: - - uid: 6947 + - uid: 16031 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,21.5 parent: 2 - - uid: 15079 + - uid: 16032 components: - type: Transform pos: -38.5,-67.5 parent: 2 - proto: ComputerShuttle entities: - - uid: 9345 + - uid: 16033 components: - type: Transform anchored: False @@ -108399,27 +109512,27 @@ entities: parent: 2 - type: Physics bodyType: Dynamic - - uid: 21047 + - uid: 40729 components: - type: Transform pos: 0.5,4.5 - parent: 21045 + parent: 40666 - type: ShuttleConsole zoom: 2,2 - - uid: 38833 + - uid: 41779 components: - type: Transform pos: 4.5,4.5 - parent: 38722 + parent: 41669 - proto: ComputerShuttleCargo entities: - - uid: 15080 + - uid: 16034 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-96.5 parent: 2 - - uid: 15081 + - uid: 16035 components: - type: Transform rot: -1.5707963267948966 rad @@ -108427,7 +109540,7 @@ entities: parent: 2 - proto: ComputerShuttleSalvage entities: - - uid: 9303 + - uid: 16036 components: - type: Transform rot: 1.5707963267948966 rad @@ -108435,25 +109548,25 @@ entities: parent: 2 - proto: ComputerSolarControl entities: - - uid: 15083 + - uid: 16037 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,9.5 parent: 2 - - uid: 15084 + - uid: 16038 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,21.5 parent: 2 - - uid: 15085 + - uid: 16039 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-87.5 parent: 2 - - uid: 15086 + - uid: 16040 components: - type: Transform rot: 3.141592653589793 rad @@ -108461,179 +109574,190 @@ entities: parent: 2 - proto: ComputerStationRecords entities: - - uid: 2111 + - uid: 16041 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-5.5 parent: 2 - - uid: 7782 + - uid: 16042 components: - type: Transform pos: 47.5,-22.5 parent: 2 - - uid: 22156 + - uid: 16043 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-26.5 parent: 2 + - uid: 16044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,5.5 + parent: 2 + - uid: 16045 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 9360 + - uid: 16046 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-18.5 parent: 2 - - uid: 10802 + - uid: 16047 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-50.5 parent: 2 - - uid: 15089 + - uid: 16048 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 2 - - uid: 15090 + - uid: 16049 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-39.5 parent: 2 - - uid: 15091 + - uid: 16050 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,19.5 parent: 2 - - uid: 15092 + - uid: 16051 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-29.5 parent: 2 - - uid: 15094 + - uid: 16052 components: - type: Transform pos: -2.5,-78.5 parent: 2 - - uid: 15096 + - uid: 16053 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-47.5 parent: 2 - - uid: 15097 + - uid: 16054 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,13.5 parent: 2 - - uid: 15099 + - uid: 16055 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-69.5 parent: 2 - - uid: 25933 + - uid: 16056 components: - type: Transform pos: 100.5,-86.5 parent: 2 - - uid: 27742 + - uid: 16057 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-5.5 parent: 2 - - uid: 31613 + - uid: 16058 components: - type: Transform pos: 47.5,16.5 parent: 2 - - uid: 35063 + - uid: 16059 components: - type: Transform pos: -46.5,-32.5 parent: 2 - proto: ComputerSurveillanceWirelessCameraMonitor entities: - - uid: 15100 + - uid: 16060 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-86.5 parent: 2 - - uid: 15102 + - uid: 16061 components: - type: Transform pos: 25.5,-74.5 parent: 2 - proto: ComputerTelevision entities: - - uid: 15104 + - uid: 16062 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,1.5 parent: 2 - - uid: 15105 + - uid: 16063 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-71.5 parent: 2 - - uid: 15106 + - uid: 16064 components: - type: Transform pos: -31.5,4.5 parent: 2 - - uid: 15107 + - uid: 16065 components: - type: Transform pos: -26.5,11.5 parent: 2 - - uid: 22682 + - uid: 16066 components: - type: Transform pos: 41.5,-27.5 parent: 2 - proto: ContainmentFieldGenerator entities: - - uid: 15108 + - uid: 16067 components: - type: Transform pos: 74.5,-61.5 parent: 2 - - uid: 15109 + - uid: 16068 components: - type: Transform pos: 58.5,-66.5 parent: 2 - - uid: 15110 + - uid: 16069 components: - type: Transform pos: 58.5,-65.5 parent: 2 - - uid: 15111 + - uid: 16070 components: - type: Transform pos: 59.5,-66.5 parent: 2 - proto: ConvertAltarSpawner entities: - - uid: 15112 + - uid: 16071 components: - type: Transform pos: 37.5,-71.5 parent: 2 - proto: ConveyorBelt entities: - - uid: 2889 + - uid: 16072 components: - type: Transform rot: 3.141592653589793 rad @@ -108641,7 +109765,7 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - - uid: 9728 + - uid: 16073 components: - type: Transform rot: 3.141592653589793 rad @@ -108649,17 +109773,17 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - - uid: 9937 + - uid: 16074 components: - type: Transform pos: 68.5,8.5 parent: 2 - - uid: 14063 + - uid: 16075 components: - type: Transform pos: 68.5,10.5 parent: 2 - - uid: 14078 + - uid: 16076 components: - type: Transform rot: 1.5707963267948966 rad @@ -108667,255 +109791,255 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - - uid: 14233 + - uid: 16077 components: - type: Transform pos: 68.5,9.5 parent: 2 - - uid: 15113 + - uid: 16078 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-98.5 parent: 2 - - uid: 15114 + - uid: 16079 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-80.5 parent: 2 - - uid: 15115 + - uid: 16080 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-80.5 parent: 2 - - uid: 15116 + - uid: 16081 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-69.5 parent: 2 - - uid: 15117 + - uid: 16082 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-69.5 parent: 2 - - uid: 15118 + - uid: 16083 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-69.5 parent: 2 - - uid: 15119 + - uid: 16084 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-98.5 parent: 2 - - uid: 15123 + - uid: 16085 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-80.5 parent: 2 - - uid: 15124 + - uid: 16086 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-81.5 parent: 2 - - uid: 15125 + - uid: 16087 components: - type: Transform pos: 20.5,-77.5 parent: 2 - - uid: 15126 + - uid: 16088 components: - type: Transform pos: 20.5,-80.5 parent: 2 - - uid: 15127 + - uid: 16089 components: - type: Transform pos: 20.5,-78.5 parent: 2 - - uid: 15128 + - uid: 16090 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-92.5 parent: 2 - - uid: 15129 + - uid: 16091 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-87.5 parent: 2 - - uid: 15130 + - uid: 16092 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-91.5 parent: 2 - - uid: 15131 + - uid: 16093 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-94.5 parent: 2 - - uid: 15132 + - uid: 16094 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-88.5 parent: 2 - - uid: 15133 + - uid: 16095 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-89.5 parent: 2 - - uid: 15134 + - uid: 16096 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-86.5 parent: 2 - - uid: 15135 + - uid: 16097 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-90.5 parent: 2 - - uid: 15136 + - uid: 16098 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-86.5 parent: 2 - - uid: 15137 + - uid: 16099 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-86.5 parent: 2 - - uid: 15138 + - uid: 16100 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-86.5 parent: 2 - - uid: 15139 + - uid: 16101 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-86.5 parent: 2 - - uid: 15140 + - uid: 16102 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-93.5 parent: 2 - - uid: 15141 + - uid: 16103 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-94.5 parent: 2 - - uid: 15142 + - uid: 16104 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-94.5 parent: 2 - - uid: 15143 + - uid: 16105 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-95.5 parent: 2 - - uid: 15144 + - uid: 16106 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-86.5 parent: 2 - - uid: 15145 + - uid: 16107 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-96.5 parent: 2 - - uid: 15146 + - uid: 16108 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-96.5 parent: 2 - - uid: 15147 + - uid: 16109 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-96.5 parent: 2 - - uid: 15148 + - uid: 16110 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-96.5 parent: 2 - - uid: 15149 + - uid: 16111 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-100.5 parent: 2 - - uid: 15150 + - uid: 16112 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-100.5 parent: 2 - - uid: 15151 + - uid: 16113 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-100.5 parent: 2 - - uid: 15152 + - uid: 16114 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-100.5 parent: 2 - - uid: 15153 + - uid: 16115 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-100.5 parent: 2 - - uid: 15154 + - uid: 16116 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-100.5 parent: 2 - - uid: 15155 + - uid: 16117 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-100.5 parent: 2 - - uid: 15156 + - uid: 16118 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-85.5 parent: 2 - - uid: 15176 + - uid: 16119 components: - type: Transform rot: 3.141592653589793 rad @@ -108923,161 +110047,161 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - - uid: 15265 + - uid: 16120 components: - type: Transform pos: 20.5,-79.5 parent: 2 - - uid: 15266 + - uid: 16121 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-81.5 parent: 2 - - uid: 16244 + - uid: 16122 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,7.5 parent: 2 - - uid: 16763 + - uid: 16123 components: - type: Transform pos: -13.5,-21.5 parent: 2 - - uid: 16837 + - uid: 16124 components: - type: Transform pos: -13.5,-23.5 parent: 2 - - uid: 16838 + - uid: 16125 components: - type: Transform pos: -13.5,-20.5 parent: 2 - - uid: 16839 + - uid: 16126 components: - type: Transform pos: -13.5,-22.5 parent: 2 - - uid: 16840 + - uid: 16127 components: - type: Transform pos: -13.5,-24.5 parent: 2 - - uid: 16841 + - uid: 16128 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-25.5 parent: 2 - - uid: 16842 + - uid: 16129 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-25.5 parent: 2 - - uid: 16843 + - uid: 16130 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-25.5 parent: 2 - - uid: 16844 + - uid: 16131 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-25.5 parent: 2 - - uid: 16845 + - uid: 16132 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-25.5 parent: 2 - - uid: 16871 + - uid: 16133 components: - type: Transform pos: -13.5,-19.5 parent: 2 - - uid: 16872 + - uid: 16134 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-19.5 parent: 2 - - uid: 16873 + - uid: 16135 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-19.5 parent: 2 - - uid: 16874 + - uid: 16136 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-19.5 parent: 2 - - uid: 17414 + - uid: 16137 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,7.5 parent: 2 - - uid: 17426 + - uid: 16138 components: - type: Transform pos: 68.5,11.5 parent: 2 - - uid: 33157 + - uid: 16139 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,8.5 parent: 2 - - uid: 33185 + - uid: 16140 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,6.5 parent: 2 - - uid: 33193 + - uid: 16141 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,7.5 parent: 2 - - uid: 33741 + - uid: 16142 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-81.5 parent: 2 - - uid: 36689 + - uid: 16143 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-79.5 parent: 2 - - uid: 36690 + - uid: 16144 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-81.5 parent: 2 - - uid: 36733 + - uid: 16145 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-98.5 parent: 2 - - uid: 36734 + - uid: 16146 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-98.5 parent: 2 - - uid: 36735 + - uid: 16147 components: - type: Transform rot: 1.5707963267948966 rad @@ -109085,26 +110209,26 @@ entities: parent: 2 - proto: CorporateCircuitBoard entities: - - uid: 401 + - uid: 1347 components: - type: Transform - parent: 24311 + parent: 1345 - type: Physics canCollide: False - type: InsideEntityStorage - proto: CounterMetalFrame entities: - - uid: 7302 + - uid: 16148 components: - type: Transform pos: -57.5,-21.5 parent: 2 - - uid: 24076 + - uid: 16149 components: - type: Transform pos: -59.5,-24.5 parent: 2 - - uid: 34217 + - uid: 16150 components: - type: Transform rot: 1.5707963267948966 rad @@ -109112,30 +110236,30 @@ entities: parent: 2 - proto: CounterWoodFrame entities: - - uid: 15168 + - uid: 16151 components: - type: Transform pos: -48.5,12.5 parent: 2 - - uid: 15169 + - uid: 16152 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-92.5 parent: 2 - - uid: 15170 + - uid: 16153 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-93.5 parent: 2 - - uid: 15171 + - uid: 16154 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-111.5 parent: 2 - - uid: 34952 + - uid: 16155 components: - type: Transform rot: -1.5707963267948966 rad @@ -109143,21 +110267,21 @@ entities: parent: 2 - proto: CrateBodyBags entities: - - uid: 33882 + - uid: 16156 components: - type: Transform pos: -57.5,-18.5 parent: 2 - proto: CrateChemistryD entities: - - uid: 34219 + - uid: 16157 components: - type: Transform pos: -4.5,-34.5 parent: 2 - proto: CrateCoffin entities: - - uid: 14820 + - uid: 15725 components: - type: Transform pos: 31.5,27.5 @@ -109186,13 +110310,13 @@ entities: showEnts: False occludes: True ents: - - 4793 - - 14821 + - 15727 + - 15726 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15173 + - uid: 15788 components: - type: Transform pos: 33.5,-73.5 @@ -109221,12 +110345,12 @@ entities: showEnts: False occludes: True ents: - - 4802 + - 15789 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15174 + - uid: 16158 components: - type: Transform pos: 34.5,-73.5 @@ -109255,51 +110379,36 @@ entities: showEnts: False occludes: True ents: - - 4806 + - 16159 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 27022 - components: - - type: Transform - pos: 8.5,11.5 - parent: 2 - - uid: 40077 - components: - - type: Transform - pos: 32.5,-13.5 - parent: 2 - - uid: 40081 + - uid: 16161 components: - type: Transform pos: -30.5,-98.5 parent: 2 - - uid: 40083 + - uid: 16162 components: - type: Transform pos: -57.5,-36.5 parent: 2 - - uid: 40919 - components: - - type: Transform - pos: -20.5,8.5 - parent: 2 - proto: CrateContrabandStorageSecure entities: - - uid: 2590 + - uid: 16163 components: - type: Transform pos: 50.5,0.5 parent: 2 - - uid: 22642 + - uid: 16164 components: - type: Transform pos: 52.5,0.5 parent: 2 - proto: CrateEmergencyInternals entities: - - uid: 15177 + - uid: 16165 components: - type: Transform pos: 2.5,-89.5 @@ -109324,166 +110433,171 @@ entities: - 0 - proto: CrateEmergencyInternalsLarge entities: - - uid: 15178 + - uid: 16166 components: - type: Transform pos: -38.5,-14.5 parent: 2 - proto: CrateEmptySpawner entities: - - uid: 15179 + - uid: 16167 components: - type: Transform pos: 25.5,17.5 parent: 2 - - uid: 15180 + - uid: 16168 components: - type: Transform pos: 77.5,-16.5 parent: 2 - - uid: 15182 + - uid: 16169 components: - type: Transform pos: -14.5,-101.5 parent: 2 - - uid: 15184 + - uid: 16170 components: - type: Transform pos: 41.5,-60.5 parent: 2 - - uid: 15185 + - uid: 16171 components: - type: Transform pos: 31.5,-79.5 parent: 2 - - uid: 15186 + - uid: 16172 components: - type: Transform pos: 42.5,20.5 parent: 2 - - uid: 15187 + - uid: 16173 components: - type: Transform pos: 75.5,-24.5 parent: 2 - - uid: 15189 + - uid: 16174 components: - type: Transform pos: -52.5,-95.5 parent: 2 - - uid: 15190 + - uid: 16175 components: - type: Transform pos: -32.5,-78.5 parent: 2 - - uid: 15191 + - uid: 16176 components: - type: Transform pos: -60.5,-54.5 parent: 2 - - uid: 15192 + - uid: 16177 components: - type: Transform pos: -59.5,-54.5 parent: 2 - - uid: 15193 + - uid: 16178 components: - type: Transform pos: -48.5,-77.5 parent: 2 - - uid: 15194 + - uid: 16179 components: - type: Transform pos: -20.5,16.5 parent: 2 - - uid: 15195 + - uid: 16180 components: - type: Transform pos: 90.5,-50.5 parent: 2 - - uid: 15196 + - uid: 16181 components: - type: Transform pos: 96.5,-54.5 parent: 2 - - uid: 15197 + - uid: 16182 components: - type: Transform pos: 97.5,-52.5 parent: 2 - - uid: 15198 + - uid: 16183 components: - type: Transform pos: 108.5,-45.5 parent: 2 - - uid: 15199 + - uid: 16184 components: - type: Transform pos: 94.5,-54.5 parent: 2 - - uid: 15200 + - uid: 16185 components: - type: Transform pos: 96.5,-52.5 parent: 2 - - uid: 15201 + - uid: 16186 components: - type: Transform pos: 101.5,-50.5 parent: 2 - - uid: 15204 + - uid: 16187 components: - type: Transform pos: 41.5,15.5 parent: 2 - - uid: 15205 + - uid: 16188 components: - type: Transform pos: -67.5,-0.5 parent: 2 - - uid: 15206 + - uid: 16189 components: - type: Transform pos: -55.5,6.5 parent: 2 - - uid: 15207 + - uid: 16190 components: - type: Transform pos: -61.5,-4.5 parent: 2 - - uid: 15208 + - uid: 16191 components: - type: Transform pos: -66.5,-2.5 parent: 2 - - uid: 15209 + - uid: 16192 components: - type: Transform pos: -73.5,-4.5 parent: 2 - - uid: 15210 + - uid: 16193 components: - type: Transform pos: -71.5,6.5 parent: 2 - - uid: 15211 + - uid: 16194 components: - type: Transform pos: -70.5,-13.5 parent: 2 - - uid: 40730 + - uid: 16195 components: - type: Transform pos: 68.5,-15.5 parent: 2 - proto: CrateEngineering entities: - - uid: 38744 + - uid: 16196 + components: + - type: Transform + pos: -6.5,-49.5 + parent: 2 + - uid: 41690 components: - type: Transform anchored: True pos: 7.5,-9.5 - parent: 38722 + parent: 41669 - type: Physics bodyType: Static - type: EntityStorage @@ -109510,60 +110624,48 @@ entities: showEnts: False occludes: True ents: - - 38754 - - 38746 - - 38750 - - 38745 - - 38753 - - 38749 - - 38748 - - 38747 - - 38752 - - 38751 - - 38756 - - 38755 + - 41700 + - 41692 + - 41696 + - 41691 + - 41699 + - 41695 + - 41694 + - 41693 + - 41698 + - 41697 + - 41702 + - 41701 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - type: Pullable prevFixedRotation: True - - uid: 39169 - components: - - type: Transform - pos: -6.5,-49.5 - parent: 2 - proto: CrateEngineeringAMEControl entities: - - uid: 15212 + - uid: 16197 components: - type: Transform pos: 38.5,-80.5 parent: 2 - proto: CrateEngineeringAMEJar entities: - - uid: 15213 + - uid: 16198 components: - type: Transform pos: 37.5,-83.5 parent: 2 - proto: CrateEngineeringAMEShielding entities: - - uid: 15214 + - uid: 16199 components: - type: Transform pos: 37.5,-80.5 parent: 2 -- proto: CrateEngineeringCableBulk - entities: - - uid: 30660 - components: - - type: Transform - pos: -13.5,7.5 - parent: 2 - proto: CrateEngineeringSecure entities: - - uid: 15215 + - uid: 16200 components: - type: MetaData name: ящик топлива для генераторов @@ -109594,58 +110696,58 @@ entities: showEnts: False occludes: True ents: - - 15216 + - 16201 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateEngineeringStationBeaconBundle entities: - - uid: 15217 + - uid: 16202 components: - type: Transform pos: 42.5,-63.5 parent: 2 - proto: CrateFilledSpawner entities: - - uid: 15218 + - uid: 16203 components: - type: Transform pos: 5.5,-91.5 parent: 2 - - uid: 15219 + - uid: 16204 components: - type: Transform pos: -13.5,-96.5 parent: 2 - - uid: 15220 + - uid: 16205 components: - type: Transform pos: 11.5,-100.5 parent: 2 - - uid: 15221 + - uid: 16206 components: - type: Transform pos: -39.5,-122.5 parent: 2 - - uid: 15225 + - uid: 16207 components: - type: Transform pos: -71.5,-20.5 parent: 2 - - uid: 32760 + - uid: 16208 components: - type: Transform pos: 19.5,-62.5 parent: 2 - - uid: 41119 + - uid: 16209 components: - type: Transform pos: -5.5,-65.5 parent: 2 - proto: CrateFoodMRE entities: - - uid: 15227 + - uid: 16210 components: - type: Transform pos: -14.5,-100.5 @@ -109668,21 +110770,21 @@ entities: - 0 - 0 - 0 - - uid: 33626 + - uid: 16211 components: - type: Transform pos: 19.5,-30.5 parent: 2 - proto: CrateFoodSoftdrinksLarge entities: - - uid: 15228 + - uid: 16212 components: - type: Transform pos: -13.5,-85.5 parent: 2 - proto: CrateFreezer entities: - - uid: 15229 + - uid: 16213 components: - type: Transform pos: -51.5,-21.5 @@ -109711,17 +110813,17 @@ entities: showEnts: False occludes: True ents: - - 40930 - - 40933 - - 9276 - - 22002 - - 9704 - - 15230 + - 16214 + - 16215 + - 16217 + - 16216 + - 16219 + - 16218 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15231 + - uid: 16220 components: - type: Transform pos: -36.5,-54.5 @@ -109744,12 +110846,12 @@ entities: - 0 - 0 - 0 - - uid: 16761 + - uid: 16221 components: - type: Transform pos: -20.5,-23.5 parent: 2 - - uid: 24291 + - uid: 16222 components: - type: Transform pos: 63.5,1.5 @@ -109774,7 +110876,7 @@ entities: - 0 - proto: CrateFunDartsSet entities: - - uid: 15232 + - uid: 16223 components: - type: Transform pos: 87.5,-55.5 @@ -109797,7 +110899,7 @@ entities: - 0 - 0 - 0 - - uid: 15233 + - uid: 16224 components: - type: Transform pos: 36.5,-13.5 @@ -109822,7 +110924,7 @@ entities: - 0 - proto: CrateFunInstrumentsVariety entities: - - uid: 11634 + - uid: 12504 components: - type: Transform pos: 33.5,-21.5 @@ -109851,22 +110953,22 @@ entities: showEnts: False occludes: True ents: - - 11635 - - 11636 + - 12505 + - 12506 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateFunParty entities: - - uid: 15234 + - uid: 16225 components: - type: Transform pos: -37.5,-97.5 parent: 2 - proto: CrateFunPirate entities: - - uid: 920 + - uid: 16226 components: - type: Transform pos: 8.5,-25.5 @@ -109895,22 +110997,22 @@ entities: showEnts: False occludes: True ents: - - 9347 - - 28869 + - 16228 + - 16227 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateGenericBiosuit entities: - - uid: 36765 + - uid: 16229 components: - type: Transform pos: -14.5,19.5 parent: 2 - proto: CrateGenericSteel entities: - - uid: 1914 + - uid: 2268 components: - type: Transform pos: 71.5,-50.5 @@ -109939,26 +111041,16 @@ entities: showEnts: False occludes: True ents: - - 1915 - - 1916 + - 2269 + - 2270 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15235 - components: - - type: Transform - pos: -11.5,-82.5 - parent: 2 - - uid: 15236 - components: - - type: Transform - pos: -31.5,-63.5 - parent: 2 - - uid: 15237 + - uid: 2515 components: - type: Transform - pos: -56.5,-61.5 + pos: -13.5,-27.5 parent: 2 - type: EntityStorage air: @@ -109966,8 +111058,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -109978,10 +111070,34 @@ entities: - 0 - 0 - 0 - - uid: 15614 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2517 + - 2518 + - 2519 + - 2516 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 16230 components: - type: Transform - pos: -13.5,-27.5 + pos: -11.5,-82.5 + parent: 2 + - uid: 16231 + components: + - type: Transform + pos: -31.5,-63.5 + parent: 2 + - uid: 16232 + components: + - type: Transform + pos: -56.5,-61.5 parent: 2 - type: EntityStorage air: @@ -109989,8 +111105,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -110001,28 +111117,14 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15615 - - 15616 - - 15621 - - 4821 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 33829 + - uid: 16233 components: - type: Transform pos: 19.5,-51.5 parent: 2 - proto: CrateHydroponics entities: - - uid: 40794 + - uid: 2559 components: - type: Transform pos: 89.5,-7.5 @@ -110051,22 +111153,22 @@ entities: showEnts: False occludes: True ents: - - 40804 - - 40795 - - 40796 - - 40797 - - 40799 - - 40800 - - 40801 - - 40802 - - 40803 + - 2560 + - 2566 + - 2563 + - 2561 + - 2567 + - 2569 + - 2564 + - 2565 + - 2568 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateMedical entities: - - uid: 15239 + - uid: 16234 components: - type: Transform pos: -45.5,-9.5 @@ -110095,28 +111197,28 @@ entities: showEnts: False occludes: True ents: - - 15241 - - 15242 - - 15240 + - 16236 + - 16237 + - 16235 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateMedicalSecure entities: - - uid: 14238 + - uid: 15673 components: - type: Transform - pos: -35.5,-12.5 + pos: -37.5,-14.5 parent: 2 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.1478 + temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -110133,26 +111235,32 @@ entities: showEnts: False occludes: True ents: - - 14242 - - 14240 - - 14241 + - 15677 + - 15682 + - 15680 + - 15679 + - 15676 + - 15675 + - 15674 + - 15678 + - 15681 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14760 + - uid: 16238 components: - type: Transform - pos: -37.5,-14.5 + pos: -35.5,-12.5 parent: 2 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14673 + temperature: 293.1478 moles: - - 1.7459903 - - 6.568249 + - 1.8977377 + - 7.139109 - 0 - 0 - 0 @@ -110169,32 +111277,26 @@ entities: showEnts: False occludes: True ents: - - 14764 - - 14769 - - 14767 - - 14766 - - 14763 - - 14762 - - 14761 - - 14765 - - 14768 + - 16240 + - 16239 + - 16241 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15243 + - uid: 16242 components: - type: Transform pos: -57.5,-35.5 parent: 2 - - uid: 15246 + - uid: 16243 components: - type: Transform pos: -51.5,-33.5 parent: 2 - proto: CrateNPCCow entities: - - uid: 15247 + - uid: 16244 components: - type: Transform pos: 26.5,8.5 @@ -110228,14 +111330,14 @@ entities: isPlaceable: True - proto: CrateNPCHamlet entities: - - uid: 15248 + - uid: 16245 components: - type: Transform pos: 4.5,26.5 parent: 2 - proto: CratePermaEscapeEVA entities: - - uid: 15623 + - uid: 16246 components: - type: Transform pos: -13.5,-29.5 @@ -110260,7 +111362,7 @@ entities: - 0 - proto: CratePirate entities: - - uid: 15845 + - uid: 15501 components: - type: Transform pos: -14.5,-29.5 @@ -110289,15 +111391,15 @@ entities: showEnts: False occludes: True ents: - - 15846 - - 15847 + - 15503 + - 15502 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CratePlastic entities: - - uid: 1786 + - uid: 2112 components: - type: Transform pos: 35.5,7.5 @@ -110326,37 +111428,37 @@ entities: showEnts: False occludes: True ents: - - 1801 - - 1812 - - 1799 - - 1798 - - 1809 - - 1790 - - 1788 - - 1787 - - 1789 - - 1797 - - 1808 - - 1810 - - 1807 - - 1811 - - 1806 - - 1803 - - 1805 - - 1802 - - 1800 - - 1804 - - 1796 - - 1795 - - 1794 - - 1793 - - 1792 - - 1791 + - 2127 + - 2138 + - 2125 + - 2124 + - 2135 + - 2116 + - 2114 + - 2113 + - 2115 + - 2123 + - 2134 + - 2136 + - 2133 + - 2137 + - 2132 + - 2129 + - 2131 + - 2128 + - 2126 + - 2130 + - 2122 + - 2121 + - 2120 + - 2119 + - 2118 + - 2117 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 2083 + - uid: 2449 components: - type: Transform anchored: True @@ -110388,15 +111490,15 @@ entities: showEnts: False occludes: True ents: - - 2085 - - 2084 + - 2451 + - 2450 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - type: Pullable prevFixedRotation: True - - uid: 2086 + - uid: 2452 components: - type: Transform anchored: True @@ -110428,14 +111530,14 @@ entities: showEnts: False occludes: True ents: - - 2087 + - 2453 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - type: Pullable prevFixedRotation: True - - uid: 14590 + - uid: 15505 components: - type: Transform pos: 2.5,-93.5 @@ -110464,19 +111566,19 @@ entities: showEnts: False occludes: True ents: - - 14591 + - 15506 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15249 + - uid: 16247 components: - type: Transform pos: -12.5,-96.5 parent: 2 - proto: CratePrivateSecure entities: - - uid: 14476 + - uid: 16248 components: - type: Transform pos: 5.5,-59.5 @@ -110510,14 +111612,14 @@ entities: showEnts: False occludes: True ents: - - 14510 + - 16249 paper_label: !type:ContainerSlot showEnts: False occludes: True - ent: 14477 + ent: 16250 - type: Pullable prevFixedRotation: True - - uid: 14532 + - uid: 16251 components: - type: Transform anchored: True @@ -110552,14 +111654,14 @@ entities: showEnts: False occludes: True ents: - - 14534 + - 16252 paper_label: !type:ContainerSlot showEnts: False occludes: True - ent: 14533 + ent: 16253 - type: Pullable prevFixedRotation: True - - uid: 14538 + - uid: 16254 components: - type: Transform pos: -19.5,-62.5 @@ -110591,14 +111693,14 @@ entities: showEnts: False occludes: True ents: - - 14540 + - 16255 paper_label: !type:ContainerSlot showEnts: False occludes: True - ent: 6313 + ent: 16256 - type: Pullable prevFixedRotation: True - - uid: 14541 + - uid: 16257 components: - type: Transform pos: -20.5,-62.5 @@ -110630,16 +111732,16 @@ entities: showEnts: False occludes: True ents: - - 14543 + - 16258 paper_label: !type:ContainerSlot showEnts: False occludes: True - ent: 14542 + ent: 16259 - type: Pullable prevFixedRotation: True - proto: CrateSecgear entities: - - uid: 37767 + - uid: 16260 components: - type: Transform pos: 60.5,-19.5 @@ -110672,14 +111774,14 @@ entities: removedMasks: 20 - type: PlaceableSurface isPlaceable: True - - uid: 37863 + - uid: 16261 components: - type: Transform pos: 68.5,1.5 parent: 2 - proto: CrateSecure entities: - - uid: 1993 + - uid: 16262 components: - type: Transform pos: -85.5,-11.5 @@ -110702,7 +111804,7 @@ entities: - 0 - 0 - 0 - - uid: 24602 + - uid: 16263 components: - type: Transform pos: -17.5,20.5 @@ -110725,12 +111827,12 @@ entities: - 0 - 0 - 0 - - uid: 28115 + - uid: 16264 components: - type: Transform pos: 12.5,-62.5 parent: 2 - - uid: 28116 + - uid: 16265 components: - type: Transform pos: 5.5,-60.5 @@ -110755,16 +111857,9 @@ entities: - 0 - type: Pullable prevFixedRotation: True -- proto: CrateSecurityNonlethal - entities: - - uid: 28117 - components: - - type: Transform - pos: 8.5,-61.5 - parent: 2 - proto: CrateServiceBureaucracy entities: - - uid: 15255 + - uid: 16267 components: - type: Transform pos: -6.5,-79.5 @@ -110789,7 +111884,7 @@ entities: - 0 - proto: CrateServicePersonnel entities: - - uid: 2104 + - uid: 1372 components: - type: Transform pos: -7.5,11.5 @@ -110800,8 +111895,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -110818,60 +111913,60 @@ entities: showEnts: False occludes: True ents: - - 823 - - 753 - - 921 - - 804 - - 1178 - - 1570 - - 1579 - - 2105 - - 2108 - - 1594 - - 2106 + - 1376 + - 1378 + - 1379 + - 1374 + - 1382 + - 1381 + - 1383 + - 1377 + - 1380 + - 1373 + - 1375 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateServiceReplacementLights entities: - - uid: 15256 + - uid: 16268 components: - type: Transform pos: 13.5,-86.5 parent: 2 - proto: CrateStoneGrave entities: - - uid: 15262 + - uid: 16269 components: - type: Transform pos: 28.5,29.5 parent: 2 - proto: CrateSurgery entities: - - uid: 35789 + - uid: 16270 components: - type: Transform pos: -64.5,-26.5 parent: 2 - proto: CrateTrashCart entities: - - uid: 15263 + - uid: 16271 components: - type: Transform pos: 24.5,17.5 parent: 2 - - uid: 15267 + - uid: 16272 components: - type: Transform pos: -54.5,-78.5 parent: 2 - - uid: 15268 + - uid: 16273 components: - type: Transform pos: -61.5,-36.5 parent: 2 - - uid: 15269 + - uid: 16274 components: - type: Transform pos: -39.5,0.5 @@ -110894,14 +111989,14 @@ entities: - 0 - 0 - 0 - - uid: 15271 + - uid: 16275 components: - type: Transform pos: 34.5,35.5 parent: 2 - proto: CrateTrashCartFilled entities: - - uid: 14911 + - uid: 15825 components: - type: Transform pos: 99.5,-49.5 @@ -110930,49 +112025,49 @@ entities: showEnts: False occludes: True ents: - - 14912 + - 15826 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15272 + - uid: 16276 components: - type: Transform pos: 90.5,-47.5 parent: 2 - - uid: 15273 + - uid: 16277 components: - type: Transform pos: -33.5,-116.5 parent: 2 - - uid: 15274 + - uid: 16278 components: - type: Transform pos: -46.5,-120.5 parent: 2 - - uid: 15275 + - uid: 16279 components: - type: Transform pos: -74.5,-21.5 parent: 2 - - uid: 15276 + - uid: 16280 components: - type: Transform pos: -79.5,5.5 parent: 2 - - uid: 30311 + - uid: 16281 components: - type: Transform pos: 20.5,-76.5 parent: 2 - - uid: 33889 + - uid: 16282 components: - type: Transform pos: 17.5,-78.5 parent: 2 - proto: CrateTrashCartJani entities: - - uid: 15277 + - uid: 16283 components: - type: Transform pos: -46.5,-92.5 @@ -111001,24 +112096,24 @@ entities: showEnts: False occludes: True ents: - - 15278 + - 16284 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15279 + - uid: 16285 components: - type: Transform pos: 8.5,-1.5 parent: 2 - - uid: 15280 + - uid: 16286 components: - type: Transform pos: -9.5,-71.5 parent: 2 - proto: CrateWeaponSecure entities: - - uid: 6311 + - uid: 16287 components: - type: Transform pos: 3.5,-62.5 @@ -111047,14 +112142,14 @@ entities: showEnts: False occludes: True ents: - - 24420 + - 16289 paper_label: !type:ContainerSlot showEnts: False occludes: True - ent: 14539 + ent: 16288 - type: Pullable prevFixedRotation: True - - uid: 6314 + - uid: 16290 components: - type: Transform pos: 5.5,-62.5 @@ -111083,14 +112178,14 @@ entities: showEnts: False occludes: True ents: - - 6316 + - 16292 paper_label: !type:ContainerSlot showEnts: False occludes: True - ent: 6315 + ent: 16291 - type: Pullable prevFixedRotation: True - - uid: 28069 + - uid: 16293 components: - type: Transform pos: 10.5,-59.5 @@ -111140,14 +112235,14 @@ entities: removedMasks: 20 - type: PlaceableSurface isPlaceable: True - - uid: 28076 + - uid: 16294 components: - type: Transform pos: 14.5,-62.5 parent: 2 - type: Lock locked: False - - uid: 28082 + - uid: 16295 components: - type: Transform pos: 19.5,-53.5 @@ -111180,33 +112275,33 @@ entities: removedMasks: 20 - type: PlaceableSurface isPlaceable: True - - uid: 28095 + - uid: 16296 components: - type: Transform pos: 15.5,-56.5 parent: 2 - type: Lock locked: False - - uid: 28112 + - uid: 16297 components: - type: Transform pos: 14.5,-56.5 parent: 2 - type: Lock locked: False - - uid: 28113 + - uid: 16298 components: - type: Transform pos: 12.5,-55.5 parent: 2 - - uid: 28114 + - uid: 16299 components: - type: Transform pos: 6.5,-55.5 parent: 2 - type: Pullable prevFixedRotation: True - - uid: 37104 + - uid: 16300 components: - type: Transform pos: 61.5,-19.5 @@ -111217,8 +112312,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -111235,19 +112330,19 @@ entities: showEnts: False occludes: True ents: - - 37251 - - 37107 - - 37106 - - 37105 + - 16304 + - 16302 + - 16301 + - 16303 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 37923 + - uid: 40864 components: - type: Transform pos: 5.5,-13.5 - parent: 37887 + parent: 40828 - type: EntityStorage air: volume: 200 @@ -111272,104 +112367,104 @@ entities: showEnts: False occludes: True ents: - - 37926 - - 37927 - - 37928 - - 37930 - - 37929 - - 37931 - - 37925 - - 37936 - - 37935 - - 37934 - - 37924 - - 37933 - - 37932 + - 40867 + - 40868 + - 40869 + - 40871 + - 40870 + - 40872 + - 40866 + - 40877 + - 40876 + - 40875 + - 40865 + - 40874 + - 40873 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: CrateWoodenGrave entities: - - uid: 15303 + - uid: 16305 components: - type: Transform pos: 29.5,27.5 parent: 2 - - uid: 15304 + - uid: 16306 components: - type: Transform pos: 32.5,30.5 parent: 2 - - uid: 15305 + - uid: 16307 components: - type: Transform pos: 30.5,30.5 parent: 2 - proto: CrayonBox entities: - - uid: 14571 + - uid: 1316 components: - type: Transform - parent: 14567 + parent: 1311 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15306 + - uid: 16308 components: - type: Transform pos: -50.46095,-114.572685 parent: 2 - - uid: 15307 + - uid: 16309 components: - type: Transform pos: -37.634926,-101.27598 parent: 2 - - uid: 15308 + - uid: 16310 components: - type: Transform pos: -26.536942,-112.41493 parent: 2 - - uid: 30579 + - uid: 16311 components: - type: Transform pos: 85.429306,-2.905017 parent: 2 - proto: CrayonRainbow entities: - - uid: 15309 + - uid: 16312 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.31928,1.6795857 parent: 2 - - uid: 15310 + - uid: 16313 components: - type: Transform rot: 3.141592653589793 rad pos: -73.878685,1.7346234 parent: 2 - - uid: 15311 + - uid: 16314 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.75027,3.4224458 parent: 2 - - uid: 15312 + - uid: 16315 components: - type: Transform pos: -72.264244,3.4774835 parent: 2 - proto: CrayonWhite entities: - - uid: 40756 + - uid: 16316 components: - type: Transform pos: 47.28515,3.4530869 parent: 2 - proto: Crematorium entities: - - uid: 15313 + - uid: 16317 components: - type: Transform rot: 3.141592653589793 rad @@ -111377,16 +112472,16 @@ entities: parent: 2 - proto: CrewManifestCartridge entities: - - uid: 823 + - uid: 1375 components: - type: Transform - parent: 2104 + parent: 1372 - type: Physics canCollide: False - type: InsideEntityStorage - proto: CrewMonitoringServer entities: - - uid: 15314 + - uid: 16318 components: - type: Transform pos: -34.5,-12.5 @@ -111396,220 +112491,220 @@ entities: available: False - proto: CrewMonitoringServerMachineCircuitboard entities: - - uid: 15315 + - uid: 16319 components: - type: Transform pos: 39.494335,-42.41867 parent: 2 - proto: Crowbar entities: - - uid: 15316 + - uid: 16227 + components: + - type: Transform + parent: 16226 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16320 components: - type: Transform pos: 35.483826,-71.428696 parent: 2 - - uid: 15317 + - uid: 16321 components: - type: Transform pos: -38.5,-23.5 parent: 2 - - uid: 15319 + - uid: 16322 components: - type: Transform - pos: -51.312763,-0.015726864 + pos: -49.51731,-0.3394773 parent: 2 - - uid: 28869 - components: - - type: Transform - parent: 920 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: CrowbarRed entities: - - uid: 15320 + - uid: 16323 components: - type: Transform pos: -63.5,-74.5 parent: 2 - - uid: 15323 + - uid: 16324 components: - type: Transform pos: -38.5,14.5 parent: 2 - - uid: 15325 + - uid: 16325 components: - type: Transform pos: -48.467915,-33.45945 parent: 2 - - uid: 15327 + - uid: 16326 components: - type: Transform pos: -64.5,4.5 parent: 2 - - uid: 15328 + - uid: 16327 components: - type: Transform pos: -46.5,-71.5 parent: 2 - - uid: 15329 + - uid: 16328 components: - type: Transform pos: -48.5,-121.5 parent: 2 - - uid: 15330 + - uid: 16329 components: - type: Transform pos: -81.5,-11.5 parent: 2 - - uid: 15331 + - uid: 16330 components: - type: Transform pos: 34.454247,19.572659 parent: 2 - - uid: 36767 + - uid: 16331 components: - type: Transform pos: -14.531658,16.718857 parent: 2 - - uid: 36768 + - uid: 16332 components: - type: Transform pos: -14.391033,16.546982 parent: 2 - proto: CryogenicSleepUnit entities: - - uid: 15332 + - uid: 16333 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-35.5 parent: 2 - - uid: 15333 + - uid: 16334 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-79.5 parent: 2 - - uid: 15334 + - uid: 16335 components: - type: Transform pos: -48.5,-31.5 parent: 2 - - uid: 15335 + - uid: 16336 components: - type: Transform pos: -48.5,-32.5 parent: 2 - - uid: 15336 + - uid: 16337 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-36.5 parent: 2 - - uid: 15337 + - uid: 16338 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-31.5 parent: 2 - - uid: 15338 + - uid: 16339 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-32.5 parent: 2 - - uid: 15339 + - uid: 16340 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-34.5 parent: 2 - - uid: 15340 + - uid: 16341 components: - type: Transform pos: -34.5,-10.5 parent: 2 - - uid: 15341 + - uid: 16342 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-81.5 parent: 2 - - uid: 15342 + - uid: 16343 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-78.5 parent: 2 - - uid: 25584 + - uid: 16344 components: - type: Transform pos: 87.5,1.5 parent: 2 - - uid: 30827 + - uid: 16345 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-39.5 parent: 2 - - uid: 30843 + - uid: 16346 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-37.5 parent: 2 - - uid: 30849 + - uid: 16347 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-38.5 parent: 2 - - uid: 38199 + - uid: 41145 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-6.5 - parent: 37887 - - uid: 38200 + parent: 40828 + - uid: 41146 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-4.5 - parent: 37887 - - uid: 38201 + parent: 40828 + - uid: 41147 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-5.5 - parent: 37887 - - uid: 38202 + parent: 40828 + - uid: 41148 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-4.5 - parent: 37887 - - uid: 38203 + parent: 40828 + - uid: 41149 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-6.5 - parent: 37887 - - uid: 38204 + parent: 40828 + - uid: 41150 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-6.5 - parent: 37887 + parent: 40828 - proto: CryogenicSleepUnitSpawner entities: - - uid: 15343 + - uid: 16348 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-81.5 parent: 2 - - uid: 15344 + - uid: 16349 components: - type: Transform rot: 1.5707963267948966 rad @@ -111617,13 +112712,13 @@ entities: parent: 2 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 15345 + - uid: 16350 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-80.5 parent: 2 - - uid: 15346 + - uid: 16351 components: - type: Transform rot: 1.5707963267948966 rad @@ -111631,108 +112726,108 @@ entities: parent: 2 - proto: CryoPod entities: - - uid: 15347 + - uid: 16352 components: - type: Transform pos: -37.5,-19.5 parent: 2 - - uid: 15348 + - uid: 16353 components: - type: Transform pos: -35.5,-19.5 parent: 2 - - uid: 30844 + - uid: 16354 components: - type: Transform pos: -13.5,-35.5 parent: 2 - proto: CryostasisBeaker entities: - - uid: 34226 + - uid: 16355 components: - type: Transform pos: -7.493344,-36.36821 parent: 2 - proto: CryoxadoneBeakerSmall entities: - - uid: 14187 + - uid: 16356 components: - type: Transform pos: 33.352547,23.271837 parent: 2 - - uid: 15349 + - uid: 16357 components: - type: Transform pos: -34.292515,-22.123524 parent: 2 - - uid: 30767 + - uid: 16358 components: - type: Transform pos: -15.295433,-38.47415 parent: 2 - - uid: 30768 + - uid: 16359 components: - type: Transform pos: -15.326683,-32.283276 parent: 2 - - uid: 30769 + - uid: 16360 components: - type: Transform pos: -17.243673,-37.550144 parent: 2 - - uid: 30770 + - uid: 16361 components: - type: Transform pos: -19.594576,-36.307743 parent: 2 - - uid: 30771 + - uid: 16362 components: - type: Transform pos: -17.290548,-38.62827 parent: 2 - - uid: 30772 + - uid: 16363 components: - type: Transform pos: -17.649923,-32.944572 parent: 2 - proto: CrystalGreen entities: - - uid: 15350 + - uid: 16364 components: - type: Transform pos: -73.5,-10.5 parent: 2 - - uid: 15351 + - uid: 16365 components: - type: Transform pos: -75.5,-7.5 parent: 2 - - uid: 15352 + - uid: 16366 components: - type: Transform pos: -75.5,-11.5 parent: 2 - proto: CultAltarSpawner entities: - - uid: 15365 + - uid: 16367 components: - type: Transform pos: -85.5,-26.5 parent: 2 - proto: CurtainsBlack entities: - - uid: 913 + - uid: 16368 components: - type: Transform pos: -37.5,19.5 parent: 2 - - uid: 16912 + - uid: 16369 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-118.5 parent: 2 - - uid: 34350 + - uid: 16370 components: - type: Transform rot: 1.5707963267948966 rad @@ -111740,7 +112835,7 @@ entities: parent: 2 - proto: CurtainsBlackOpen entities: - - uid: 24355 + - uid: 16371 components: - type: Transform rot: 1.5707963267948966 rad @@ -111748,38 +112843,38 @@ entities: parent: 2 - proto: CurtainsBlueOpen entities: - - uid: 15366 + - uid: 16372 components: - type: Transform pos: -39.5,-97.5 parent: 2 - - uid: 15367 + - uid: 16373 components: - type: Transform pos: -40.5,-97.5 parent: 2 - - uid: 15368 + - uid: 16374 components: - type: Transform pos: -38.5,-97.5 parent: 2 - proto: CurtainsRedOpen entities: - - uid: 31597 + - uid: 16375 components: - type: Transform pos: 51.5,16.5 parent: 2 - proto: Cutlass entities: - - uid: 9380 + - uid: 16376 components: - type: Transform pos: 8.524349,-21.538694 parent: 2 - proto: CutterMachine entities: - - uid: 787 + - uid: 16377 components: - type: MetaData desc: Это плиткорез. ПЛИТКОРЕЗ. Придайте разнообразия полу вашей станции с помощью интересных узоров! Не засовывайте внутрь пальцы. @@ -111790,7 +112885,7 @@ entities: parent: 2 - proto: CyborgEndoskeleton entities: - - uid: 31122 + - uid: 16378 components: - type: Transform rot: 1.5707963267948966 rad @@ -111798,7 +112893,7 @@ entities: parent: 2 - proto: d10Dice entities: - - uid: 15370 + - uid: 16379 components: - type: MetaData desc: Идеален для децимаций. @@ -111807,7 +112902,7 @@ entities: parent: 2 - proto: d4Dice entities: - - uid: 15371 + - uid: 16380 components: - type: Transform rot: -1.5707963267948966 rad @@ -111815,49 +112910,49 @@ entities: parent: 2 - proto: d6Dice entities: - - uid: 15372 + - uid: 16381 components: - type: Transform pos: 33.209946,0.05482608 parent: 2 - - uid: 15373 + - uid: 16382 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.95078,13.464503 parent: 2 - - uid: 15374 + - uid: 16383 components: - type: Transform pos: 33.811462,0.06363821 parent: 2 - proto: DartBlue entities: - - uid: 11468 + - uid: 38 components: - type: Transform - parent: 27043 + parent: 35 - type: Physics canCollide: False - proto: DartPurple entities: - - uid: 11469 + - uid: 39 components: - type: Transform - parent: 27043 + parent: 35 - type: Physics canCollide: False - proto: DartYellow entities: - - uid: 11467 + - uid: 40 components: - type: Transform - parent: 27043 + parent: 35 - type: Physics canCollide: False - proto: DefaultStationBeacon entities: - - uid: 40048 + - uid: 16384 components: - type: Transform pos: -2.5,-25.5 @@ -111866,7 +112961,7 @@ entities: text: Зоопарк - type: WarpPoint location: Зоопарк - - uid: 40051 + - uid: 16385 components: - type: Transform pos: 13.5,-40.5 @@ -111877,7 +112972,7 @@ entities: location: Музей искусств - proto: DefaultStationBeaconAICore entities: - - uid: 15375 + - uid: 16386 components: - type: Transform pos: 98.5,-89.5 @@ -111888,7 +112983,7 @@ entities: location: Ядро ИИ - proto: DefaultStationBeaconAISatellite entities: - - uid: 15376 + - uid: 16387 components: - type: Transform pos: 98.5,-79.5 @@ -111899,14 +112994,14 @@ entities: location: Спутник ИИ - proto: DefaultStationBeaconAME entities: - - uid: 15377 + - uid: 16388 components: - type: Transform pos: 40.5,-79.5 parent: 2 - proto: DefaultStationBeaconAnomalyGenerator entities: - - uid: 15378 + - uid: 16389 components: - type: Transform pos: -48.5,-83.5 @@ -111917,7 +113012,7 @@ entities: location: РнД - аномалистика - proto: DefaultStationBeaconArmory entities: - - uid: 40558 + - uid: 16390 components: - type: Transform pos: 56.5,-18.5 @@ -111925,7 +113020,7 @@ entities: - type: BombingTarget - proto: DefaultStationBeaconArrivals entities: - - uid: 15379 + - uid: 16391 components: - type: Transform pos: 82.5,-32.5 @@ -111936,7 +113031,7 @@ entities: location: Прибытие - proto: DefaultStationBeaconArtifactLab entities: - - uid: 15380 + - uid: 16392 components: - type: Transform pos: -65.5,-73.5 @@ -111947,7 +113042,7 @@ entities: location: РнД - ксеноархеология - proto: DefaultStationBeaconAtmospherics entities: - - uid: 15381 + - uid: 16393 components: - type: Transform pos: 45.5,-98.5 @@ -111958,19 +113053,19 @@ entities: location: Инж - атмосферный отсек - proto: DefaultStationBeaconBar entities: - - uid: 40045 + - uid: 16394 components: - type: Transform pos: 32.5,1.5 parent: 2 - proto: DefaultStationBeaconBotany entities: - - uid: 40046 + - uid: 16395 components: - type: Transform pos: 35.5,10.5 parent: 2 - - uid: 40047 + - uid: 16396 components: - type: Transform pos: -6.5,-15.5 @@ -111981,7 +113076,7 @@ entities: location: Оранжерея - proto: DefaultStationBeaconBridge entities: - - uid: 15382 + - uid: 16397 components: - type: Transform pos: 0.5,23.5 @@ -111992,14 +113087,14 @@ entities: location: Мостик - proto: DefaultStationBeaconBrig entities: - - uid: 40521 + - uid: 16398 components: - type: Transform pos: 44.5,-14.5 parent: 2 - proto: DefaultStationBeaconCaptainsQuarters entities: - - uid: 15383 + - uid: 16399 components: - type: Transform pos: 15.5,13.5 @@ -112010,7 +113105,7 @@ entities: location: Каюта капитана - proto: DefaultStationBeaconCargoBay entities: - - uid: 15384 + - uid: 16400 components: - type: Transform pos: 14.5,-98.5 @@ -112021,7 +113116,7 @@ entities: location: Карго - стыковочный док - proto: DefaultStationBeaconCargoReception entities: - - uid: 15385 + - uid: 16401 components: - type: Transform pos: 7.5,-81.5 @@ -112032,7 +113127,7 @@ entities: location: Карго - приёмная - proto: DefaultStationBeaconCERoom entities: - - uid: 15386 + - uid: 16402 components: - type: Transform pos: 54.5,-73.5 @@ -112043,7 +113138,7 @@ entities: location: Инж - кабинет СИ - proto: DefaultStationBeaconChapel entities: - - uid: 15387 + - uid: 16403 components: - type: Transform pos: 35.5,-61.5 @@ -112054,7 +113149,7 @@ entities: location: Церковь - proto: DefaultStationBeaconChemistry entities: - - uid: 15388 + - uid: 16404 components: - type: Transform pos: -36.5,-30.5 @@ -112065,7 +113160,7 @@ entities: location: Химия - proto: DefaultStationBeaconCMORoom entities: - - uid: 15389 + - uid: 16405 components: - type: Transform pos: -36.5,-9.5 @@ -112076,7 +113171,7 @@ entities: location: Мед - кабинет ГВ - proto: DefaultStationBeaconCommand entities: - - uid: 15390 + - uid: 16406 components: - type: Transform pos: 6.5,8.5 @@ -112085,7 +113180,7 @@ entities: text: Конференц - type: WarpPoint location: Конференц-зал - - uid: 15391 + - uid: 16407 components: - type: Transform pos: 16.5,6.5 @@ -112094,7 +113189,7 @@ entities: text: Мастерская - type: WarpPoint location: Мастерская - - uid: 40050 + - uid: 16408 components: - type: Transform pos: 17.5,-14.5 @@ -112105,7 +113200,7 @@ entities: location: Навигационная - proto: DefaultStationBeaconCourtroom entities: - - uid: 15392 + - uid: 16409 components: - type: Transform pos: 67.5,-38.5 @@ -112116,7 +113211,7 @@ entities: location: Зал суда - proto: DefaultStationBeaconCryonics entities: - - uid: 15393 + - uid: 16410 components: - type: Transform pos: -36.5,-21.5 @@ -112127,14 +113222,14 @@ entities: location: Мед - крионика - proto: DefaultStationBeaconDetectiveRoom entities: - - uid: 22108 + - uid: 16411 components: - type: Transform pos: 39.5,-27.5 parent: 2 - proto: DefaultStationBeaconDisposals entities: - - uid: 15395 + - uid: 16412 components: - type: Transform pos: 18.5,-78.5 @@ -112145,7 +113240,7 @@ entities: location: Мусоросброс - proto: DefaultStationBeaconDorms entities: - - uid: 15396 + - uid: 16413 components: - type: Transform pos: -31.5,-86.5 @@ -112154,7 +113249,7 @@ entities: text: Дормы - type: WarpPoint location: Жилой отсек - - uid: 15397 + - uid: 16414 components: - type: Transform pos: -21.5,-85.5 @@ -112165,7 +113260,7 @@ entities: location: Спортзал - proto: DefaultStationBeaconEngineering entities: - - uid: 15398 + - uid: 16415 components: - type: Transform pos: 49.5,-57.5 @@ -112174,7 +113269,7 @@ entities: text: Инженер - type: WarpPoint location: Инженерный отдел - - uid: 15399 + - uid: 16416 components: - type: Transform pos: 71.5,-59.5 @@ -112183,7 +113278,7 @@ entities: text: Тесла - type: WarpPoint location: Инж - тесла - - uid: 40056 + - uid: 16417 components: - type: Transform pos: 6.5,-7.5 @@ -112194,7 +113289,7 @@ entities: location: Якорь - proto: DefaultStationBeaconEvac entities: - - uid: 15400 + - uid: 16418 components: - type: Transform pos: -74.5,-41.5 @@ -112205,7 +113300,7 @@ entities: location: Отбытие - proto: DefaultStationBeaconEVAStorage entities: - - uid: 15401 + - uid: 16419 components: - type: Transform pos: -4.5,15.5 @@ -112214,7 +113309,7 @@ entities: text: EVA - type: WarpPoint location: Хранилище EVA - - uid: 15402 + - uid: 16420 components: - type: Transform pos: 4.5,15.5 @@ -112225,21 +113320,21 @@ entities: location: доп хранилище EVA - proto: DefaultStationBeaconGateway entities: - - uid: 40040 + - uid: 16421 components: - type: Transform pos: 20.5,-22.5 parent: 2 - proto: DefaultStationBeaconGravGen entities: - - uid: 40059 + - uid: 16422 components: - type: Transform pos: 27.5,-44.5 parent: 2 - proto: DefaultStationBeaconHOPOffice entities: - - uid: 15404 + - uid: 16423 components: - type: Transform pos: -5.5,10.5 @@ -112250,14 +113345,14 @@ entities: location: Офис ГП - proto: DefaultStationBeaconHOSRoom entities: - - uid: 40557 + - uid: 16424 components: - type: Transform pos: 51.5,11.5 parent: 2 - proto: DefaultStationBeaconJanitorsCloset entities: - - uid: 15406 + - uid: 16425 components: - type: Transform pos: 7.5,0.5 @@ -112268,12 +113363,12 @@ entities: location: Сервис - уборщики - proto: DefaultStationBeaconKitchen entities: - - uid: 40044 + - uid: 16426 components: - type: Transform pos: 28.5,13.5 parent: 2 - - uid: 40055 + - uid: 16427 components: - type: Transform pos: -18.5,-23.5 @@ -112284,7 +113379,7 @@ entities: location: Пищеблок - proto: DefaultStationBeaconLawOffice entities: - - uid: 15407 + - uid: 16428 components: - type: Transform pos: -22.5,6.5 @@ -112295,7 +113390,7 @@ entities: location: Кабинет АВД - proto: DefaultStationBeaconLibrary entities: - - uid: 15408 + - uid: 16429 components: - type: Transform pos: -30.5,5.5 @@ -112306,7 +113401,7 @@ entities: location: Библиотека - proto: DefaultStationBeaconMedbay entities: - - uid: 15409 + - uid: 16430 components: - type: Transform pos: -50.5,-0.5 @@ -112318,7 +113413,7 @@ entities: location: Мед - вирусология - proto: DefaultStationBeaconMedical entities: - - uid: 15410 + - uid: 16431 components: - type: Transform pos: -39.5,-37.5 @@ -112327,7 +113422,7 @@ entities: text: Медотсек - type: WarpPoint location: Медотсек - - uid: 40054 + - uid: 16432 components: - type: Transform pos: -16.5,-35.5 @@ -112338,14 +113433,14 @@ entities: location: Генохранилище - proto: DefaultStationBeaconPowerBank entities: - - uid: 40042 + - uid: 16433 components: - type: Transform pos: 58.5,-55.5 parent: 2 - proto: DefaultStationBeaconQMRoom entities: - - uid: 15413 + - uid: 16434 components: - type: Transform pos: -1.5,-96.5 @@ -112356,7 +113451,7 @@ entities: location: Карго - кабинет КМа - proto: DefaultStationBeaconRDRoom entities: - - uid: 15414 + - uid: 16435 components: - type: Transform pos: -37.5,-68.5 @@ -112367,7 +113462,7 @@ entities: location: РнД - кабинет НРа - proto: DefaultStationBeaconRND entities: - - uid: 15415 + - uid: 16436 components: - type: Transform pos: -43.5,-65.5 @@ -112378,7 +113473,7 @@ entities: location: РнД - proto: DefaultStationBeaconRobotics entities: - - uid: 15416 + - uid: 16437 components: - type: Transform pos: -37.5,-53.5 @@ -112389,7 +113484,7 @@ entities: location: РнД - робототехника - proto: DefaultStationBeaconSalvage entities: - - uid: 15417 + - uid: 16438 components: - type: Transform pos: -7.5,-87.5 @@ -112400,7 +113495,7 @@ entities: location: Утилизаторная - proto: DefaultStationBeaconScience entities: - - uid: 40053 + - uid: 16439 components: - type: Transform pos: -16.5,-50.5 @@ -112411,7 +113506,7 @@ entities: location: Лаборатория робототехники - proto: DefaultStationBeaconSecurity entities: - - uid: 40049 + - uid: 16440 components: - type: Transform pos: 10.5,-20.5 @@ -112420,7 +113515,7 @@ entities: text: Арсенал - type: WarpPoint location: Арсенал - - uid: 40555 + - uid: 16441 components: - type: Transform pos: 43.5,3.5 @@ -112430,12 +113525,12 @@ entities: - type: WarpPoint location: Тюрьма - type: BombingTarget - - uid: 40556 + - uid: 16442 components: - type: Transform pos: 59.5,-2.5 parent: 2 - - uid: 40559 + - uid: 16443 components: - type: Transform pos: 80.5,-5.5 @@ -112447,7 +113542,7 @@ entities: - type: BombingTarget - proto: DefaultStationBeaconSecurityCheckpoint entities: - - uid: 15419 + - uid: 16444 components: - type: Transform pos: -66.5,-37.5 @@ -112456,7 +113551,7 @@ entities: text: КПП эвак - type: WarpPoint location: Сб - КПП отбытия - - uid: 15420 + - uid: 16445 components: - type: Transform pos: 75.5,-27.5 @@ -112467,7 +113562,7 @@ entities: location: Сб - КПП прибытия - proto: DefaultStationBeaconServerRoom entities: - - uid: 15421 + - uid: 16446 components: - type: Transform pos: -37.5,-73.5 @@ -112478,7 +113573,7 @@ entities: location: Серверная - proto: DefaultStationBeaconService entities: - - uid: 15422 + - uid: 16447 components: - type: Transform pos: 27.5,-75.5 @@ -112489,7 +113584,7 @@ entities: location: Офис репортёра - proto: DefaultStationBeaconSolars entities: - - uid: 15423 + - uid: 16448 components: - type: Transform pos: -68.5,-95.5 @@ -112498,7 +113593,7 @@ entities: text: Сол. панели - type: WarpPoint location: Солнечные панели ЮЗ - - uid: 15424 + - uid: 16449 components: - type: Transform pos: -82.5,17.5 @@ -112509,7 +113604,7 @@ entities: location: Солнечные панели СЗ - proto: DefaultStationBeaconSupply entities: - - uid: 15425 + - uid: 16450 components: - type: Transform pos: 7.5,-92.5 @@ -112518,7 +113613,7 @@ entities: text: Карго - type: WarpPoint location: Карго - - uid: 40052 + - uid: 16451 components: - type: Transform pos: -0.5,-60.5 @@ -112529,7 +113624,7 @@ entities: location: Трюм - proto: DefaultStationBeaconSurgery entities: - - uid: 15426 + - uid: 16452 components: - type: Transform pos: -53.5,-21.5 @@ -112540,7 +113635,7 @@ entities: location: Мед - операционная - proto: DefaultStationBeaconTechVault entities: - - uid: 15427 + - uid: 16453 components: - type: Transform pos: 38.5,-39.5 @@ -112551,7 +113646,7 @@ entities: location: Хранилище плат - proto: DefaultStationBeaconTEG entities: - - uid: 15428 + - uid: 16454 components: - type: Transform pos: 52.5,-90.5 @@ -112562,7 +113657,7 @@ entities: location: ТЭГ - proto: DefaultStationBeaconTelecoms entities: - - uid: 15429 + - uid: 16455 components: - type: Transform pos: 93.5,-69.5 @@ -112571,7 +113666,7 @@ entities: text: Телеком - type: WarpPoint location: Телокоммуникация - - uid: 15430 + - uid: 16456 components: - type: Transform pos: 103.5,-69.5 @@ -112582,14 +113677,14 @@ entities: location: Маршрутизаторы - proto: DefaultStationBeaconTheater entities: - - uid: 40043 + - uid: 16457 components: - type: Transform pos: 34.5,-11.5 parent: 2 - proto: DefaultStationBeaconToolRoom entities: - - uid: 15431 + - uid: 16458 components: - type: Transform pos: 66.5,-27.5 @@ -112598,7 +113693,7 @@ entities: text: Инструменты - type: WarpPoint location: Склад инструментов - - uid: 15432 + - uid: 16459 components: - type: Transform pos: -29.5,-76.5 @@ -112609,7 +113704,7 @@ entities: location: Доп склад инструментов - proto: DefaultStationBeaconVault entities: - - uid: 40039 + - uid: 16460 components: - type: Transform pos: -5.5,-6.5 @@ -112620,168 +113715,168 @@ entities: location: Хранилище - proto: DefibrillatorCabinetFilled entities: - - uid: 9933 + - uid: 16461 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-4.5 parent: 2 - - uid: 15435 + - uid: 16462 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-22.5 parent: 2 - - uid: 15436 + - uid: 16463 components: - type: Transform pos: -54.5,-11.5 parent: 2 - - uid: 15437 + - uid: 16464 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-30.5 parent: 2 - - uid: 15440 + - uid: 16465 components: - type: Transform pos: -38.5,-9.5 parent: 2 - - uid: 38834 + - uid: 41780 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-3.5 - parent: 38722 + parent: 41669 - proto: DeployableBarrier entities: - - uid: 725 + - uid: 16466 components: - type: Transform pos: 64.5,-15.5 parent: 2 - - uid: 989 + - uid: 16467 components: - type: Transform pos: 65.5,-16.5 parent: 2 - - uid: 15293 + - uid: 16468 components: - type: Transform pos: 64.5,-16.5 parent: 2 - - uid: 15444 + - uid: 16469 components: - type: Transform pos: -78.5,-50.5 parent: 2 - - uid: 15445 + - uid: 16470 components: - type: Transform pos: -80.5,-50.5 parent: 2 - - uid: 15446 + - uid: 16471 components: - type: Transform pos: -80.5,-51.5 parent: 2 - - uid: 15447 + - uid: 16472 components: - type: Transform pos: -78.5,-51.5 parent: 2 - - uid: 18282 + - uid: 16473 components: - type: Transform pos: 65.5,-15.5 parent: 2 - - uid: 19151 + - uid: 16474 components: - type: Transform pos: 62.5,-15.5 parent: 2 - - uid: 37864 + - uid: 16475 components: - type: Transform pos: 71.5,1.5 parent: 2 - - uid: 37865 + - uid: 16476 components: - type: Transform pos: 71.5,2.5 parent: 2 - - uid: 40517 + - uid: 16477 components: - type: Transform pos: 70.5,1.5 parent: 2 - proto: DeskBell entities: - - uid: 11030 + - uid: 16478 components: - type: Transform pos: 46.46651,-23.425644 parent: 2 - - uid: 15449 + - uid: 16479 components: - type: Transform pos: -27.214382,-115.40451 parent: 2 - - uid: 15450 + - uid: 16480 components: - type: Transform pos: -41.432083,-47.40734 parent: 2 - - uid: 15451 + - uid: 16481 components: - type: Transform pos: -3.3636603,7.5380373 parent: 2 - - uid: 15452 + - uid: 16482 components: - type: Transform pos: -31.291225,6.3482814 parent: 2 - - uid: 15453 + - uid: 16483 components: - type: Transform pos: -43.43734,-33.394848 parent: 2 - - uid: 15454 + - uid: 16484 components: - type: Transform pos: 69.556305,-39.430588 parent: 2 - - uid: 15455 + - uid: 16485 components: - type: Transform pos: 8.575924,-82.249985 parent: 2 - - uid: 15456 + - uid: 16486 components: - type: Transform pos: -8.650903,-77.35674 parent: 2 - - uid: 15457 + - uid: 16487 components: - type: Transform pos: -35.602592,-35.442432 parent: 2 - - uid: 15458 + - uid: 16488 components: - type: Transform pos: 46.540886,-48.284874 parent: 2 - proto: DiceBag entities: - - uid: 15461 + - uid: 16489 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.29453,13.542628 parent: 2 - - uid: 15462 + - uid: 16490 components: - type: Transform rot: -1.5707963267948966 rad @@ -112789,144 +113884,144 @@ entities: parent: 2 - proto: DiseaseDiagnoser entities: - - uid: 15468 + - uid: 16491 components: - type: Transform pos: -55.5,-2.5 parent: 2 - proto: DiseaseSwab entities: - - uid: 30743 + - uid: 16492 components: - type: Transform rot: 3.141592653589793 rad pos: -17.521042,-34.364605 parent: 2 - - uid: 30744 + - uid: 16493 components: - type: Transform rot: 3.141592653589793 rad pos: -17.536667,-33.47398 parent: 2 - - uid: 30745 + - uid: 16494 components: - type: Transform pos: -17.5102,-32.51191 parent: 2 - - uid: 30746 + - uid: 16495 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.552292,-32.645855 parent: 2 - - uid: 30747 + - uid: 16496 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.489792,-33.239605 parent: 2 - - uid: 30748 + - uid: 16497 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.614792,-33.708355 parent: 2 - - uid: 30749 + - uid: 16498 components: - type: Transform pos: -15.6352005,-34.22205 parent: 2 - - uid: 30750 + - uid: 16499 components: - type: Transform pos: -15.630417,-34.44273 parent: 2 - - uid: 30751 + - uid: 16500 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.317917,-37.44273 parent: 2 - - uid: 30752 + - uid: 16501 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.489792,-38.22398 parent: 2 - - uid: 30753 + - uid: 16502 components: - type: Transform pos: -15.607422,-38.530865 parent: 2 - - uid: 30754 + - uid: 16503 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.489792,-39.47398 parent: 2 - - uid: 30755 + - uid: 16504 components: - type: Transform rot: 3.141592653589793 rad pos: -17.567917,-37.489605 parent: 2 - - uid: 30756 + - uid: 16505 components: - type: Transform rot: 3.141592653589793 rad pos: -17.521042,-38.13023 parent: 2 - - uid: 30757 + - uid: 16506 components: - type: Transform rot: 3.141592653589793 rad pos: -17.396042,-38.489605 parent: 2 - - uid: 30758 + - uid: 16507 components: - type: Transform pos: -17.450016,-39.243828 parent: 2 - - uid: 30759 + - uid: 16508 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.536667,-39.53648 parent: 2 - - uid: 30760 + - uid: 16509 components: - type: Transform pos: -19.376984,-36.60867 parent: 2 - - uid: 30761 + - uid: 16510 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.397564,-37.19273 parent: 2 - - uid: 30762 + - uid: 16511 components: - type: Transform pos: -19.363094,-37.571632 parent: 2 - - uid: 30763 + - uid: 16512 components: - type: Transform pos: -19.576057,-38.173485 parent: 2 - - uid: 30764 + - uid: 16513 components: - type: Transform rot: 3.141592653589793 rad pos: -19.678814,-38.50523 parent: 2 - - uid: 39436 + - uid: 16514 components: - type: Transform rot: 3.141592653589793 rad pos: -11.644965,-41.284153 parent: 2 - - uid: 39437 + - uid: 16515 components: - type: Transform rot: 3.141592653589793 rad @@ -112934,7 +114029,7 @@ entities: parent: 2 - proto: DisgustingSweptSoup entities: - - uid: 40921 + - uid: 16516 components: - type: MetaData name: котёл для зелий @@ -112943,11126 +114038,11232 @@ entities: parent: 2 - proto: DisposalBend entities: - - uid: 383 + - uid: 16517 components: - type: Transform pos: 11.5,-3.5 parent: 2 - - uid: 1090 + - uid: 16518 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-33.5 parent: 2 - - uid: 1643 + - uid: 16519 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-46.5 parent: 2 - - uid: 1644 + - uid: 16520 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-65.5 parent: 2 - - uid: 2776 + - uid: 16521 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-8.5 parent: 2 - - uid: 5978 + - uid: 16522 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-38.5 parent: 2 - - uid: 6037 + - uid: 16523 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-7.5 parent: 2 - - uid: 6232 + - uid: 16524 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 2 - - uid: 6960 + - uid: 16525 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-10.5 parent: 2 - - uid: 6978 + - uid: 16526 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-2.5 parent: 2 - - uid: 6979 + - uid: 16527 components: - type: Transform pos: -0.5,-2.5 parent: 2 - - uid: 6981 + - uid: 16528 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-3.5 parent: 2 - - uid: 7078 + - uid: 16529 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-4.5 parent: 2 - - uid: 11663 + - uid: 16530 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-44.5 parent: 2 - - uid: 15469 + - uid: 16531 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,17.5 parent: 2 - - uid: 15470 + - uid: 16532 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,1.5 parent: 2 - - uid: 15471 + - uid: 16533 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,7.5 parent: 2 - - uid: 15472 + - uid: 16534 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,11.5 parent: 2 - - uid: 15473 + - uid: 16535 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-71.5 parent: 2 - - uid: 15478 + - uid: 16536 components: - type: Transform pos: -32.5,-26.5 parent: 2 - - uid: 15480 + - uid: 16537 components: - type: Transform pos: 14.5,13.5 parent: 2 - - uid: 15484 + - uid: 16538 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-84.5 parent: 2 - - uid: 15485 + - uid: 16539 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-84.5 parent: 2 - - uid: 15486 + - uid: 16540 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-78.5 parent: 2 - - uid: 15487 + - uid: 16541 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-75.5 parent: 2 - - uid: 15488 + - uid: 16542 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-75.5 parent: 2 - - uid: 15489 + - uid: 16543 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-68.5 parent: 2 - - uid: 15490 + - uid: 16544 components: - type: Transform pos: 50.5,-83.5 parent: 2 - - uid: 15491 + - uid: 16545 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-83.5 parent: 2 - - uid: 15492 + - uid: 16546 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-78.5 parent: 2 - - uid: 15493 + - uid: 16547 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-78.5 parent: 2 - - uid: 15494 + - uid: 16548 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-68.5 parent: 2 - - uid: 15495 + - uid: 16549 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-55.5 parent: 2 - - uid: 15496 + - uid: 16550 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-86.5 parent: 2 - - uid: 15497 + - uid: 16551 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-86.5 parent: 2 - - uid: 15498 + - uid: 16552 components: - type: Transform pos: 10.5,-78.5 parent: 2 - - uid: 15499 + - uid: 16553 components: - type: Transform pos: -0.5,-84.5 parent: 2 - - uid: 15500 + - uid: 16554 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-91.5 parent: 2 - - uid: 15501 + - uid: 16555 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-90.5 parent: 2 - - uid: 15502 + - uid: 16556 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-97.5 parent: 2 - - uid: 15503 + - uid: 16557 components: - type: Transform pos: -30.5,-92.5 parent: 2 - - uid: 15504 + - uid: 16558 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-81.5 parent: 2 - - uid: 15505 + - uid: 16559 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-92.5 parent: 2 - - uid: 15506 + - uid: 16560 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-80.5 parent: 2 - - uid: 15507 + - uid: 16561 components: - type: Transform pos: -41.5,-80.5 parent: 2 - - uid: 15508 + - uid: 16562 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-76.5 parent: 2 - - uid: 15509 + - uid: 16563 components: - type: Transform pos: -32.5,-76.5 parent: 2 - - uid: 15510 + - uid: 16564 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-77.5 parent: 2 - - uid: 15511 + - uid: 16565 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-77.5 parent: 2 - - uid: 15512 + - uid: 16566 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-54.5 parent: 2 - - uid: 15513 + - uid: 16567 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-52.5 parent: 2 - - uid: 15514 + - uid: 16568 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-52.5 parent: 2 - - uid: 15515 + - uid: 16569 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-49.5 parent: 2 - - uid: 15516 + - uid: 16570 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-59.5 parent: 2 - - uid: 15517 + - uid: 16571 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-57.5 parent: 2 - - uid: 15518 + - uid: 16572 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-32.5 parent: 2 - - uid: 15519 + - uid: 16573 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-32.5 parent: 2 - - uid: 15520 + - uid: 16574 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-22.5 parent: 2 - - uid: 15521 + - uid: 16575 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-24.5 parent: 2 - - uid: 15522 + - uid: 16576 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-21.5 parent: 2 - - uid: 15523 + - uid: 16577 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-29.5 parent: 2 - - uid: 15524 + - uid: 16578 components: - type: Transform pos: 89.5,-40.5 parent: 2 - - uid: 15525 + - uid: 16579 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-40.5 parent: 2 - - uid: 15526 + - uid: 16580 components: - type: Transform pos: 85.5,-21.5 parent: 2 - - uid: 15527 + - uid: 16581 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-32.5 parent: 2 - - uid: 15528 + - uid: 16582 components: - type: Transform pos: 49.5,-27.5 parent: 2 - - uid: 15529 + - uid: 16583 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-28.5 parent: 2 - - uid: 15530 + - uid: 16584 components: - type: Transform pos: 57.5,-28.5 parent: 2 - - uid: 15531 + - uid: 16585 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-29.5 parent: 2 - - uid: 15536 + - uid: 16586 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,7.5 parent: 2 - - uid: 15537 + - uid: 16587 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,17.5 parent: 2 - - uid: 15538 + - uid: 16588 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,16.5 parent: 2 - - uid: 15539 + - uid: 16589 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,16.5 parent: 2 - - uid: 15540 + - uid: 16590 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,11.5 parent: 2 - - uid: 15541 + - uid: 16591 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,11.5 parent: 2 - - uid: 15542 + - uid: 16592 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,6.5 parent: 2 - - uid: 15543 + - uid: 16593 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,6.5 parent: 2 - - uid: 15544 + - uid: 16594 components: - type: Transform pos: 15.5,9.5 parent: 2 - - uid: 15545 + - uid: 16595 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,9.5 parent: 2 - - uid: 15546 + - uid: 16596 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,11.5 parent: 2 - - uid: 15547 + - uid: 16597 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,11.5 parent: 2 - - uid: 15548 + - uid: 16598 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,13.5 parent: 2 - - uid: 15549 + - uid: 16599 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,22.5 parent: 2 - - uid: 15550 + - uid: 16600 components: - type: Transform pos: 8.5,22.5 parent: 2 - - uid: 15552 + - uid: 16601 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,10.5 parent: 2 - - uid: 15553 + - uid: 16602 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-97.5 parent: 2 - - uid: 15554 + - uid: 16603 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-52.5 parent: 2 - - uid: 15555 + - uid: 16604 components: - type: Transform pos: -53.5,-25.5 parent: 2 - - uid: 15556 + - uid: 16605 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-27.5 parent: 2 - - uid: 15557 + - uid: 16606 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-43.5 parent: 2 - - uid: 15558 + - uid: 16607 components: - type: Transform pos: -66.5,-36.5 parent: 2 - - uid: 15559 + - uid: 16608 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-28.5 parent: 2 - - uid: 15560 + - uid: 16609 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-28.5 parent: 2 - - uid: 15561 + - uid: 16610 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,0.5 parent: 2 - - uid: 15562 + - uid: 16611 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,3.5 parent: 2 - - uid: 15563 + - uid: 16612 components: - type: Transform pos: -41.5,3.5 parent: 2 - - uid: 15564 + - uid: 16613 components: - type: Transform pos: -52.5,-43.5 parent: 2 - - uid: 15565 + - uid: 16614 components: - type: Transform pos: 22.5,-72.5 parent: 2 - - uid: 15566 + - uid: 16615 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-72.5 parent: 2 - - uid: 15567 + - uid: 16616 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-54.5 parent: 2 - - uid: 15568 + - uid: 16617 components: - type: Transform pos: 40.5,-54.5 parent: 2 - - uid: 15569 + - uid: 16618 components: - type: Transform pos: 35.5,-27.5 parent: 2 - - uid: 15570 + - uid: 16619 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-29.5 parent: 2 - - uid: 15571 + - uid: 16620 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-17.5 parent: 2 - - uid: 15572 + - uid: 16621 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,1.5 parent: 2 - - uid: 15573 + - uid: 16622 components: - type: Transform pos: -29.5,13.5 parent: 2 - - uid: 15574 + - uid: 16623 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,1.5 parent: 2 - - uid: 15575 + - uid: 16624 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,3.5 parent: 2 - - uid: 15576 + - uid: 16625 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,3.5 parent: 2 - - uid: 15577 + - uid: 16626 components: - type: Transform pos: -26.5,-7.5 parent: 2 - - uid: 15578 + - uid: 16627 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-28.5 parent: 2 - - uid: 15579 + - uid: 16628 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-58.5 parent: 2 - - uid: 15580 + - uid: 16629 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-15.5 parent: 2 - - uid: 15581 + - uid: 16630 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-27.5 parent: 2 - - uid: 15583 + - uid: 16631 components: - type: Transform pos: -17.5,-77.5 parent: 2 - - uid: 15584 + - uid: 16632 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-39.5 parent: 2 - - uid: 15585 + - uid: 16633 components: - type: Transform pos: 31.5,1.5 parent: 2 - - uid: 15586 + - uid: 16634 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-7.5 parent: 2 - - uid: 15587 + - uid: 16635 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-76.5 parent: 2 - - uid: 15588 + - uid: 16636 components: - type: Transform pos: -21.5,-76.5 parent: 2 - - uid: 15592 + - uid: 16637 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,14.5 parent: 2 - - uid: 15593 + - uid: 16638 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-29.5 parent: 2 - - uid: 15594 + - uid: 16639 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-38.5 parent: 2 - - uid: 15595 + - uid: 16640 components: - type: Transform pos: -8.5,-66.5 parent: 2 - - uid: 15596 + - uid: 16641 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-65.5 parent: 2 - - uid: 15598 + - uid: 16642 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-33.5 parent: 2 - - uid: 15601 + - uid: 16643 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-25.5 parent: 2 - - uid: 15602 + - uid: 16644 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-17.5 parent: 2 - - uid: 15603 + - uid: 16645 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-17.5 parent: 2 - - uid: 15608 + - uid: 16646 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-6.5 parent: 2 - - uid: 15610 + - uid: 16647 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-6.5 parent: 2 - - uid: 15611 + - uid: 16648 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-3.5 parent: 2 - - uid: 15617 + - uid: 16649 components: - type: Transform pos: 16.5,-4.5 parent: 2 - - uid: 15618 + - uid: 16650 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-5.5 parent: 2 - - uid: 15619 + - uid: 16651 components: - type: Transform pos: 17.5,-5.5 parent: 2 - - uid: 15620 + - uid: 16652 components: - type: Transform pos: 22.5,-10.5 parent: 2 - - uid: 15624 + - uid: 16653 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-17.5 parent: 2 - - uid: 15625 + - uid: 16654 components: - type: Transform pos: 24.5,-17.5 parent: 2 - - uid: 15627 + - uid: 16655 components: - type: Transform pos: -25.5,-44.5 parent: 2 - - uid: 15628 + - uid: 16656 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-50.5 parent: 2 - - uid: 15629 + - uid: 16657 components: - type: Transform pos: -22.5,-50.5 parent: 2 - - uid: 15630 + - uid: 16658 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-54.5 parent: 2 - - uid: 15631 + - uid: 16659 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-54.5 parent: 2 - - uid: 15632 + - uid: 16660 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-64.5 parent: 2 - - uid: 15633 + - uid: 16661 components: - type: Transform pos: -13.5,-64.5 parent: 2 - - uid: 15634 + - uid: 16662 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-66.5 parent: 2 - - uid: 15645 + - uid: 16663 components: - type: Transform pos: -58.5,-42.5 parent: 2 - - uid: 15646 + - uid: 16664 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-81.5 parent: 2 - - uid: 15647 + - uid: 16665 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-81.5 parent: 2 - - uid: 15650 + - uid: 16666 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-42.5 parent: 2 - - uid: 15651 + - uid: 16667 components: - type: Transform pos: 6.5,4.5 parent: 2 - - uid: 15652 + - uid: 16668 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-54.5 parent: 2 - - uid: 15653 + - uid: 16669 components: - type: Transform pos: -50.5,-52.5 parent: 2 - - uid: 15654 + - uid: 16670 components: - type: Transform pos: -35.5,-2.5 parent: 2 - - uid: 15655 + - uid: 16671 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,14.5 parent: 2 - - uid: 15656 + - uid: 16672 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,14.5 parent: 2 - - uid: 15657 + - uid: 16673 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,12.5 parent: 2 - - uid: 15658 + - uid: 16674 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,27.5 parent: 2 - - uid: 15659 + - uid: 16675 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,27.5 parent: 2 - - uid: 15660 + - uid: 16676 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-85.5 parent: 2 - - uid: 15664 + - uid: 16677 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-47.5 parent: 2 - - uid: 15665 + - uid: 16678 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-31.5 parent: 2 - - uid: 15666 + - uid: 16679 components: - type: Transform pos: 33.5,-31.5 parent: 2 - - uid: 15667 + - uid: 16680 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-53.5 parent: 2 - - uid: 15668 + - uid: 16681 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-53.5 parent: 2 - - uid: 15669 + - uid: 16682 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-71.5 parent: 2 - - uid: 15670 + - uid: 16683 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-71.5 parent: 2 - - uid: 15671 + - uid: 16684 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-74.5 parent: 2 - - uid: 15672 + - uid: 16685 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-74.5 parent: 2 - - uid: 15673 + - uid: 16686 components: - type: Transform pos: -10.5,-71.5 parent: 2 - - uid: 15674 + - uid: 16687 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-80.5 parent: 2 - - uid: 15675 + - uid: 16688 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-80.5 parent: 2 - - uid: 15676 + - uid: 16689 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-93.5 parent: 2 - - uid: 15677 + - uid: 16690 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-93.5 parent: 2 - - uid: 15678 + - uid: 16691 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-94.5 parent: 2 - - uid: 15679 + - uid: 16692 components: - type: Transform pos: -53.5,-89.5 parent: 2 - - uid: 15680 + - uid: 16693 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-94.5 parent: 2 - - uid: 15681 + - uid: 16694 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-92.5 parent: 2 - - uid: 15682 + - uid: 16695 components: - type: Transform pos: -52.5,-92.5 parent: 2 - - uid: 15683 + - uid: 16696 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-71.5 parent: 2 - - uid: 15684 + - uid: 16697 components: - type: Transform pos: -25.5,-69.5 parent: 2 - - uid: 15685 + - uid: 16698 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-69.5 parent: 2 - - uid: 15686 + - uid: 16699 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-25.5 parent: 2 - - uid: 15687 + - uid: 16700 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-37.5 parent: 2 - - uid: 15688 + - uid: 16701 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-44.5 parent: 2 - - uid: 15689 + - uid: 16702 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-53.5 parent: 2 - - uid: 15690 + - uid: 16703 components: - type: Transform pos: -29.5,-53.5 parent: 2 - - uid: 15691 + - uid: 16704 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-32.5 parent: 2 - - uid: 15692 + - uid: 16705 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-32.5 parent: 2 - - uid: 15693 + - uid: 16706 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-8.5 parent: 2 - - uid: 15694 + - uid: 16707 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-8.5 parent: 2 - - uid: 15695 + - uid: 16708 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-2.5 parent: 2 - - uid: 15696 + - uid: 16709 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-2.5 parent: 2 - - uid: 15697 + - uid: 16710 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,1.5 parent: 2 - - uid: 15698 + - uid: 16711 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,1.5 parent: 2 - - uid: 15699 + - uid: 16712 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,4.5 parent: 2 - - uid: 15700 + - uid: 16713 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,6.5 parent: 2 - - uid: 15701 + - uid: 16714 components: - type: Transform pos: -2.5,6.5 parent: 2 - - uid: 15702 + - uid: 16715 components: - type: Transform pos: -1.5,4.5 parent: 2 - - uid: 15703 + - uid: 16716 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,2.5 parent: 2 - - uid: 15704 + - uid: 16717 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,2.5 parent: 2 - - uid: 15705 + - uid: 16718 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,3.5 parent: 2 - - uid: 15706 + - uid: 16719 components: - type: Transform pos: 13.5,3.5 parent: 2 - - uid: 15707 + - uid: 16720 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-0.5 parent: 2 - - uid: 15708 + - uid: 16721 components: - type: Transform pos: 22.5,-0.5 parent: 2 - - uid: 15709 + - uid: 16722 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-3.5 parent: 2 - - uid: 15710 + - uid: 16723 components: - type: Transform pos: 28.5,-4.5 parent: 2 - - uid: 15711 + - uid: 16724 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-4.5 parent: 2 - - uid: 15712 + - uid: 16725 components: - type: Transform pos: 23.5,-3.5 parent: 2 - - uid: 15713 + - uid: 16726 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-9.5 parent: 2 - - uid: 15714 + - uid: 16727 components: - type: Transform pos: 30.5,-9.5 parent: 2 - - uid: 15856 + - uid: 16728 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-77.5 parent: 2 - - uid: 16472 + - uid: 16729 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-28.5 parent: 2 - - uid: 16687 + - uid: 16730 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-67.5 parent: 2 - - uid: 16688 + - uid: 16731 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-60.5 parent: 2 - - uid: 16689 + - uid: 16732 components: - type: Transform pos: -21.5,-25.5 parent: 2 - - uid: 16691 + - uid: 16733 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-33.5 parent: 2 - - uid: 16823 + - uid: 16734 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-67.5 parent: 2 - - uid: 16825 + - uid: 16735 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-60.5 parent: 2 - - uid: 16826 + - uid: 16736 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-65.5 parent: 2 - - uid: 16852 + - uid: 16737 components: - type: Transform pos: 24.5,-46.5 parent: 2 - - uid: 16861 + - uid: 16738 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-33.5 parent: 2 - - uid: 17765 + - uid: 16739 components: - type: Transform pos: 42.5,-1.5 parent: 2 - - uid: 27927 + - uid: 16740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,0.5 + parent: 2 + - uid: 16741 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-77.5 parent: 2 - - uid: 36737 + - uid: 16742 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-76.5 parent: 2 - - uid: 36738 + - uid: 16743 components: - type: Transform pos: 20.5,-76.5 parent: 2 - - uid: 39131 + - uid: 16744 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-50.5 parent: 2 - - uid: 39157 + - uid: 16745 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-33.5 parent: 2 - - uid: 39158 + - uid: 16746 components: - type: Transform pos: -0.5,-33.5 parent: 2 - - uid: 39159 + - uid: 16747 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-42.5 parent: 2 - - uid: 39160 + - uid: 16748 components: - type: Transform pos: 0.5,-42.5 parent: 2 - - uid: 40268 + - uid: 16749 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-7.5 parent: 2 - - uid: 40272 + - uid: 16750 components: - type: Transform pos: 77.5,-2.5 parent: 2 - - uid: 40276 + - uid: 16751 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-11.5 parent: 2 - - uid: 40278 + - uid: 16752 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-13.5 parent: 2 - - uid: 40308 + - uid: 16753 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,10.5 parent: 2 - - uid: 40314 + - uid: 16754 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,10.5 parent: 2 - - uid: 40335 + - uid: 16755 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,4.5 parent: 2 - - uid: 40380 + - uid: 16756 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-23.5 parent: 2 - - uid: 40396 + - uid: 16757 components: - type: Transform pos: 52.5,-23.5 parent: 2 - - uid: 40401 + - uid: 16758 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-25.5 parent: 2 - - uid: 40407 + - uid: 16759 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-14.5 parent: 2 - - uid: 40409 + - uid: 16760 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-13.5 parent: 2 - - uid: 40410 + - uid: 16761 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-11.5 parent: 2 - - uid: 40420 + - uid: 16762 components: - type: Transform pos: 45.5,-11.5 parent: 2 - - uid: 40421 + - uid: 16763 components: - type: Transform pos: 43.5,-5.5 parent: 2 - - uid: 40711 + - uid: 16764 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,6.5 parent: 2 - - uid: 40712 + - uid: 16765 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,6.5 parent: 2 - - uid: 40739 + - uid: 16766 components: - type: Transform pos: 48.5,-23.5 parent: 2 - - uid: 40740 + - uid: 16767 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-24.5 parent: 2 - - uid: 40743 + - uid: 16768 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-5.5 parent: 2 - - uid: 40768 + - uid: 16769 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-9.5 parent: 2 + - uid: 16770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 2 + - uid: 16771 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - uid: 16772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,7.5 + parent: 2 + - uid: 16773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,7.5 + parent: 2 + - uid: 16774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,0.5 + parent: 2 - proto: DisposalJunction entities: - - uid: 2690 + - uid: 16775 components: - type: Transform pos: 57.5,-10.5 parent: 2 - - uid: 11133 + - uid: 16776 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,27.5 parent: 2 - - uid: 15717 + - uid: 16777 components: - type: Transform pos: 31.5,-2.5 parent: 2 - - uid: 15718 + - uid: 16778 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-81.5 parent: 2 - - uid: 15720 + - uid: 16779 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-68.5 parent: 2 - - uid: 15721 + - uid: 16780 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-59.5 parent: 2 - - uid: 15722 + - uid: 16781 components: - type: Transform pos: 44.5,-29.5 parent: 2 - - uid: 15724 + - uid: 16782 components: - type: Transform pos: -43.5,-74.5 parent: 2 - - uid: 15725 + - uid: 16783 components: - type: Transform pos: 50.5,-57.5 parent: 2 - - uid: 15726 + - uid: 16784 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-86.5 parent: 2 - - uid: 15727 + - uid: 16785 components: - type: Transform pos: -38.5,-85.5 parent: 2 - - uid: 15728 + - uid: 16786 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-65.5 parent: 2 - - uid: 15729 + - uid: 16787 components: - type: Transform pos: -43.5,-65.5 parent: 2 - - uid: 15730 + - uid: 16788 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-59.5 parent: 2 - - uid: 15733 + - uid: 16789 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,8.5 parent: 2 - - uid: 15734 + - uid: 16790 components: - type: Transform pos: 8.5,17.5 parent: 2 - - uid: 15735 + - uid: 16791 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,22.5 parent: 2 - - uid: 15736 + - uid: 16792 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,9.5 parent: 2 - - uid: 15737 + - uid: 16793 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-43.5 parent: 2 - - uid: 15738 + - uid: 16794 components: - type: Transform pos: -41.5,-15.5 parent: 2 - - uid: 15739 + - uid: 16795 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,1.5 parent: 2 - - uid: 15740 + - uid: 16796 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-65.5 parent: 2 - - uid: 15741 + - uid: 16797 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-77.5 parent: 2 - - uid: 15742 + - uid: 16798 components: - type: Transform pos: 33.5,11.5 parent: 2 - - uid: 15743 + - uid: 16799 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-43.5 parent: 2 - - uid: 15744 + - uid: 16800 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 2 - - uid: 15745 + - uid: 16801 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-2.5 parent: 2 - - uid: 21280 + - uid: 16802 components: - type: Transform pos: 44.5,-4.5 parent: 2 - - uid: 21281 + - uid: 16803 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-8.5 parent: 2 - - uid: 40279 + - uid: 16804 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,-11.5 parent: 2 - - uid: 40330 + - uid: 16805 components: - type: Transform pos: 57.5,4.5 parent: 2 - - uid: 40389 + - uid: 16806 components: - type: Transform pos: 44.5,-13.5 parent: 2 - proto: DisposalJunctionFlipped entities: - - uid: 2735 + - uid: 16807 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-4.5 parent: 2 - - uid: 4808 + - uid: 16808 components: - type: Transform pos: 57.5,-8.5 parent: 2 - - uid: 15746 + - uid: 16809 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-4.5 parent: 2 - - uid: 15747 + - uid: 16810 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-65.5 parent: 2 - - uid: 15749 + - uid: 16811 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-68.5 parent: 2 - - uid: 15750 + - uid: 16812 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-35.5 parent: 2 - - uid: 15751 + - uid: 16813 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-37.5 parent: 2 - - uid: 15753 + - uid: 16814 components: - type: Transform pos: 22.5,-78.5 parent: 2 - - uid: 15754 + - uid: 16815 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-26.5 parent: 2 - - uid: 15755 + - uid: 16816 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 2 - - uid: 15756 + - uid: 16817 components: - type: Transform pos: -41.5,-17.5 parent: 2 - - uid: 15757 + - uid: 16818 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-83.5 parent: 2 - - uid: 15758 + - uid: 16819 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-68.5 parent: 2 - - uid: 15759 + - uid: 16820 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-90.5 parent: 2 - - uid: 15760 + - uid: 16821 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-86.5 parent: 2 - - uid: 15761 + - uid: 16822 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-92.5 parent: 2 - - uid: 15762 + - uid: 16823 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-97.5 parent: 2 - - uid: 15763 + - uid: 16824 components: - type: Transform pos: 44.5,-48.5 parent: 2 - - uid: 15764 + - uid: 16825 components: - type: Transform rot: -1.5707963267948966 rad pos: 76.5,-21.5 parent: 2 - - uid: 15765 + - uid: 16826 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-32.5 parent: 2 - - uid: 15766 + - uid: 16827 components: - type: Transform rot: -1.5707963267948966 rad pos: 82.5,-21.5 parent: 2 - - uid: 15767 + - uid: 16828 components: - type: Transform pos: 44.5,-27.5 parent: 2 - - uid: 15768 + - uid: 16829 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,10.5 parent: 2 - - uid: 15769 + - uid: 16830 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-43.5 parent: 2 - - uid: 15770 + - uid: 16831 components: - type: Transform pos: -41.5,-2.5 parent: 2 - - uid: 15771 + - uid: 16832 components: - type: Transform pos: -41.5,-7.5 parent: 2 - - uid: 15772 + - uid: 16833 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-27.5 parent: 2 - - uid: 15773 + - uid: 16834 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-28.5 parent: 2 - - uid: 15774 + - uid: 16835 components: - type: Transform pos: -32.5,-7.5 parent: 2 - - uid: 15775 + - uid: 16836 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,1.5 parent: 2 - - uid: 15776 + - uid: 16837 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-86.5 parent: 2 - - uid: 15777 + - uid: 16838 components: - type: Transform pos: -41.5,-26.5 parent: 2 - - uid: 15778 + - uid: 16839 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-4.5 parent: 2 - - uid: 15779 + - uid: 16840 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-77.5 parent: 2 - - uid: 15783 + - uid: 16841 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-81.5 parent: 2 - - uid: 15784 + - uid: 16842 components: - type: Transform pos: -51.5,-62.5 parent: 2 - - uid: 15785 + - uid: 16843 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-85.5 parent: 2 - - uid: 15786 + - uid: 16844 components: - type: Transform pos: 14.5,12.5 parent: 2 - - uid: 21282 + - uid: 16845 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-14.5 parent: 2 - - uid: 22085 + - uid: 16846 components: - type: Transform pos: 44.5,-23.5 parent: 2 - - uid: 22086 + - uid: 16847 components: - type: Transform pos: 44.5,-9.5 parent: 2 - - uid: 40290 + - uid: 16848 components: - type: Transform pos: 57.5,1.5 parent: 2 - - uid: 40388 + - uid: 16849 components: - type: Transform pos: 44.5,-14.5 parent: 2 + - uid: 16850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,1.5 + parent: 2 - proto: DisposalPipe entities: - - uid: 291 + - uid: 16851 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-13.5 parent: 2 - - uid: 322 + - uid: 16852 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-12.5 parent: 2 - - uid: 1111 + - uid: 16853 components: - type: Transform pos: 25.5,-32.5 parent: 2 - - uid: 1633 + - uid: 16854 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-38.5 parent: 2 - - uid: 1645 + - uid: 16855 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-42.5 parent: 2 - - uid: 2654 + - uid: 16856 components: - type: Transform pos: 42.5,-3.5 parent: 2 - - uid: 2717 + - uid: 16857 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-14.5 parent: 2 - - uid: 2775 + - uid: 16858 components: - type: Transform pos: 57.5,-9.5 parent: 2 - - uid: 2787 + - uid: 16859 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,10.5 parent: 2 - - uid: 2805 + - uid: 16860 components: - type: Transform pos: 57.5,9.5 parent: 2 - - uid: 2888 + - uid: 16861 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-4.5 parent: 2 - - uid: 4795 + - uid: 16862 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-2.5 parent: 2 - - uid: 4796 + - uid: 16863 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 2 - - uid: 4799 + - uid: 16864 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-2.5 parent: 2 - - uid: 4804 + - uid: 16865 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-2.5 parent: 2 - - uid: 5171 + - uid: 16866 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,10.5 parent: 2 - - uid: 5540 + - uid: 16867 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,10.5 parent: 2 - - uid: 5979 + - uid: 16868 components: - type: Transform pos: 25.5,-29.5 parent: 2 - - uid: 5986 + - uid: 16869 components: - type: Transform pos: 25.5,-30.5 parent: 2 - - uid: 6173 + - uid: 16870 components: - type: Transform pos: 57.5,7.5 parent: 2 - - uid: 6180 + - uid: 16871 components: - type: Transform pos: 57.5,8.5 parent: 2 - - uid: 6193 + - uid: 16872 components: - type: Transform pos: 25.5,-31.5 parent: 2 - - uid: 6219 + - uid: 16873 components: - type: Transform pos: 57.5,2.5 parent: 2 - - uid: 6228 + - uid: 16874 components: - type: Transform pos: 57.5,6.5 parent: 2 - - uid: 6310 + - uid: 16875 components: - type: Transform pos: 57.5,3.5 parent: 2 - - uid: 6972 + - uid: 16876 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-10.5 parent: 2 - - uid: 6973 + - uid: 16877 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-10.5 parent: 2 - - uid: 6974 + - uid: 16878 components: - type: Transform pos: 17.5,-9.5 parent: 2 - - uid: 6975 + - uid: 16879 components: - type: Transform pos: 17.5,-8.5 parent: 2 - - uid: 6976 + - uid: 16880 components: - type: Transform pos: 17.5,-7.5 parent: 2 - - uid: 6977 + - uid: 16881 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-3.5 parent: 2 - - uid: 6980 + - uid: 16882 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-2.5 parent: 2 - - uid: 6982 + - uid: 16883 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-2.5 parent: 2 - - uid: 7068 + - uid: 16884 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-3.5 parent: 2 - - uid: 7069 + - uid: 16885 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-3.5 parent: 2 - - uid: 7070 + - uid: 16886 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-3.5 parent: 2 - - uid: 7071 + - uid: 16887 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-3.5 parent: 2 - - uid: 7072 + - uid: 16888 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 2 - - uid: 7073 + - uid: 16889 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-3.5 parent: 2 - - uid: 7074 + - uid: 16890 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-3.5 parent: 2 - - uid: 7075 + - uid: 16891 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-3.5 parent: 2 - - uid: 7076 + - uid: 16892 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-3.5 parent: 2 - - uid: 7077 + - uid: 16893 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-3.5 parent: 2 - - uid: 7079 + - uid: 16894 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-3.5 parent: 2 - - uid: 7080 + - uid: 16895 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-14.5 parent: 2 - - uid: 7081 + - uid: 16896 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-15.5 parent: 2 - - uid: 7082 + - uid: 16897 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-16.5 parent: 2 - - uid: 7521 + - uid: 16898 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-2.5 parent: 2 - - uid: 7525 + - uid: 16899 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-2.5 parent: 2 - - uid: 9071 + - uid: 16900 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-38.5 parent: 2 - - uid: 14072 + - uid: 16901 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-4.5 parent: 2 - - uid: 14552 + - uid: 16902 components: - type: Transform pos: 42.5,-2.5 parent: 2 - - uid: 15122 + - uid: 16903 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-77.5 parent: 2 - - uid: 15597 + - uid: 16904 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-67.5 parent: 2 - - uid: 15637 + - uid: 16905 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-67.5 parent: 2 - - uid: 15638 + - uid: 16906 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-67.5 parent: 2 - - uid: 15639 + - uid: 16907 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-67.5 parent: 2 - - uid: 15788 + - uid: 16908 components: - type: Transform pos: -51.5,-74.5 parent: 2 - - uid: 15789 + - uid: 16909 components: - type: Transform pos: 31.5,0.5 parent: 2 - - uid: 15790 + - uid: 16910 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,8.5 parent: 2 - - uid: 15791 + - uid: 16911 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,9.5 parent: 2 - - uid: 15792 + - uid: 16912 components: - type: Transform pos: 34.5,2.5 parent: 2 - - uid: 15793 + - uid: 16913 components: - type: Transform pos: 34.5,3.5 parent: 2 - - uid: 15794 + - uid: 16914 components: - type: Transform pos: 34.5,-1.5 parent: 2 - - uid: 15795 + - uid: 16915 components: - type: Transform pos: 34.5,-2.5 parent: 2 - - uid: 15796 + - uid: 16916 components: - type: Transform pos: 34.5,-3.5 parent: 2 - - uid: 15797 + - uid: 16917 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-4.5 parent: 2 - - uid: 15798 + - uid: 16918 components: - type: Transform pos: 31.5,-6.5 parent: 2 - - uid: 15799 + - uid: 16919 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,11.5 parent: 2 - - uid: 15800 + - uid: 16920 components: - type: Transform pos: 31.5,12.5 parent: 2 - - uid: 15801 + - uid: 16921 components: - type: Transform pos: 31.5,13.5 parent: 2 - - uid: 15802 + - uid: 16922 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,7.5 parent: 2 - - uid: 15803 + - uid: 16923 components: - type: Transform pos: 34.5,5.5 parent: 2 - - uid: 15804 + - uid: 16924 components: - type: Transform pos: -47.5,-73.5 parent: 2 - - uid: 15805 + - uid: 16925 components: - type: Transform pos: -51.5,-73.5 parent: 2 - - uid: 15806 + - uid: 16926 components: - type: Transform pos: -47.5,-74.5 parent: 2 - - uid: 15807 + - uid: 16927 components: - type: Transform pos: 34.5,4.5 parent: 2 - - uid: 15808 + - uid: 16928 components: - type: Transform pos: 34.5,0.5 parent: 2 - - uid: 15809 + - uid: 16929 components: - type: Transform pos: 34.5,-0.5 parent: 2 - - uid: 15810 + - uid: 16930 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-4.5 parent: 2 - - uid: 15811 + - uid: 16931 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-4.5 parent: 2 - - uid: 15812 + - uid: 16932 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-37.5 parent: 2 - - uid: 15813 + - uid: 16933 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-37.5 parent: 2 - - uid: 15814 + - uid: 16934 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-37.5 parent: 2 - - uid: 15815 + - uid: 16935 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-35.5 parent: 2 - - uid: 15816 + - uid: 16936 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-35.5 parent: 2 - - uid: 15817 + - uid: 16937 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-35.5 parent: 2 - - uid: 15818 + - uid: 16938 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-4.5 parent: 2 - - uid: 15819 + - uid: 16939 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-3.5 parent: 2 - - uid: 15820 + - uid: 16940 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-2.5 parent: 2 - - uid: 15821 + - uid: 16941 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-65.5 parent: 2 - - uid: 15822 + - uid: 16942 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-75.5 parent: 2 - - uid: 15823 + - uid: 16943 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-69.5 parent: 2 - - uid: 15824 + - uid: 16944 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-70.5 parent: 2 - - uid: 15831 + - uid: 16945 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-77.5 parent: 2 - - uid: 15833 + - uid: 16946 components: - type: Transform pos: -23.5,-80.5 parent: 2 - - uid: 15838 + - uid: 16947 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-26.5 parent: 2 - - uid: 15839 + - uid: 16948 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,1.5 parent: 2 - - uid: 15840 + - uid: 16949 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-26.5 parent: 2 - - uid: 15841 + - uid: 16950 components: - type: Transform pos: -43.5,-75.5 parent: 2 - - uid: 15842 + - uid: 16951 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-74.5 parent: 2 - - uid: 15854 + - uid: 16952 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-84.5 parent: 2 - - uid: 15855 + - uid: 16953 components: - type: Transform pos: 14.5,-79.5 parent: 2 - - uid: 15857 + - uid: 16954 components: - type: Transform pos: 14.5,-78.5 parent: 2 - - uid: 15858 + - uid: 16955 components: - type: Transform pos: 14.5,-80.5 parent: 2 - - uid: 15859 + - uid: 16956 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-76.5 parent: 2 - - uid: 15860 + - uid: 16957 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-81.5 parent: 2 - - uid: 15861 + - uid: 16958 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-82.5 parent: 2 - - uid: 15862 + - uid: 16959 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-84.5 parent: 2 - - uid: 15863 + - uid: 16960 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-84.5 parent: 2 - - uid: 15864 + - uid: 16961 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-84.5 parent: 2 - - uid: 15865 + - uid: 16962 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-84.5 parent: 2 - - uid: 15866 + - uid: 16963 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-84.5 parent: 2 - - uid: 15867 + - uid: 16964 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-84.5 parent: 2 - - uid: 15868 + - uid: 16965 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-83.5 parent: 2 - - uid: 15869 + - uid: 16966 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-82.5 parent: 2 - - uid: 15870 + - uid: 16967 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-81.5 parent: 2 - - uid: 15871 + - uid: 16968 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-80.5 parent: 2 - - uid: 15872 + - uid: 16969 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-79.5 parent: 2 - - uid: 15873 + - uid: 16970 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-78.5 parent: 2 - - uid: 15874 + - uid: 16971 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-78.5 parent: 2 - - uid: 15875 + - uid: 16972 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-78.5 parent: 2 - - uid: 15876 + - uid: 16973 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-78.5 parent: 2 - - uid: 15877 + - uid: 16974 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-78.5 parent: 2 - - uid: 15878 + - uid: 16975 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-78.5 parent: 2 - - uid: 15879 + - uid: 16976 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-78.5 parent: 2 - - uid: 15880 + - uid: 16977 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-78.5 parent: 2 - - uid: 15881 + - uid: 16978 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-78.5 parent: 2 - - uid: 15882 + - uid: 16979 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-77.5 parent: 2 - - uid: 15883 + - uid: 16980 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-76.5 parent: 2 - - uid: 15884 + - uid: 16981 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-75.5 parent: 2 - - uid: 15885 + - uid: 16982 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-75.5 parent: 2 - - uid: 15886 + - uid: 16983 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-75.5 parent: 2 - - uid: 15887 + - uid: 16984 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-75.5 parent: 2 - - uid: 15888 + - uid: 16985 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-75.5 parent: 2 - - uid: 15889 + - uid: 16986 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-75.5 parent: 2 - - uid: 15890 + - uid: 16987 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-74.5 parent: 2 - - uid: 15891 + - uid: 16988 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-73.5 parent: 2 - - uid: 15892 + - uid: 16989 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-72.5 parent: 2 - - uid: 15893 + - uid: 16990 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-71.5 parent: 2 - - uid: 15894 + - uid: 16991 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-70.5 parent: 2 - - uid: 15895 + - uid: 16992 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-69.5 parent: 2 - - uid: 15896 + - uid: 16993 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-68.5 parent: 2 - - uid: 15897 + - uid: 16994 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-68.5 parent: 2 - - uid: 15898 + - uid: 16995 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-68.5 parent: 2 - - uid: 15899 + - uid: 16996 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-68.5 parent: 2 - - uid: 15900 + - uid: 16997 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-68.5 parent: 2 - - uid: 15901 + - uid: 16998 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-68.5 parent: 2 - - uid: 15902 + - uid: 16999 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-68.5 parent: 2 - - uid: 15903 + - uid: 17000 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-83.5 parent: 2 - - uid: 15904 + - uid: 17001 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-83.5 parent: 2 - - uid: 15905 + - uid: 17002 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-83.5 parent: 2 - - uid: 15906 + - uid: 17003 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-78.5 parent: 2 - - uid: 15907 + - uid: 17004 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-82.5 parent: 2 - - uid: 15908 + - uid: 17005 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-81.5 parent: 2 - - uid: 15909 + - uid: 17006 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-80.5 parent: 2 - - uid: 15910 + - uid: 17007 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-79.5 parent: 2 - - uid: 15911 + - uid: 17008 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-78.5 parent: 2 - - uid: 15912 + - uid: 17009 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-77.5 parent: 2 - - uid: 15913 + - uid: 17010 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-76.5 parent: 2 - - uid: 15914 + - uid: 17011 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-74.5 parent: 2 - - uid: 15915 + - uid: 17012 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-73.5 parent: 2 - - uid: 15916 + - uid: 17013 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-72.5 parent: 2 - - uid: 15917 + - uid: 17014 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-71.5 parent: 2 - - uid: 15918 + - uid: 17015 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-70.5 parent: 2 - - uid: 15919 + - uid: 17016 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-69.5 parent: 2 - - uid: 15920 + - uid: 17017 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-67.5 parent: 2 - - uid: 15921 + - uid: 17018 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-66.5 parent: 2 - - uid: 15922 + - uid: 17019 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-65.5 parent: 2 - - uid: 15923 + - uid: 17020 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-64.5 parent: 2 - - uid: 15924 + - uid: 17021 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-63.5 parent: 2 - - uid: 15925 + - uid: 17022 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-62.5 parent: 2 - - uid: 15926 + - uid: 17023 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-61.5 parent: 2 - - uid: 15927 + - uid: 17024 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-60.5 parent: 2 - - uid: 15928 + - uid: 17025 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-59.5 parent: 2 - - uid: 15929 + - uid: 17026 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-58.5 parent: 2 - - uid: 15930 + - uid: 17027 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-56.5 parent: 2 - - uid: 15931 + - uid: 17028 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-55.5 parent: 2 - - uid: 15932 + - uid: 17029 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-55.5 parent: 2 - - uid: 15933 + - uid: 17030 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-89.5 parent: 2 - - uid: 15934 + - uid: 17031 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-88.5 parent: 2 - - uid: 15935 + - uid: 17032 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-87.5 parent: 2 - - uid: 15936 + - uid: 17033 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-86.5 parent: 2 - - uid: 15937 + - uid: 17034 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-86.5 parent: 2 - - uid: 15938 + - uid: 17035 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-86.5 parent: 2 - - uid: 15939 + - uid: 17036 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-86.5 parent: 2 - - uid: 15940 + - uid: 17037 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-86.5 parent: 2 - - uid: 15941 + - uid: 17038 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-86.5 parent: 2 - - uid: 15942 + - uid: 17039 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-86.5 parent: 2 - - uid: 15943 + - uid: 17040 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-86.5 parent: 2 - - uid: 15944 + - uid: 17041 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-86.5 parent: 2 - - uid: 15945 + - uid: 17042 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-86.5 parent: 2 - - uid: 15946 + - uid: 17043 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-86.5 parent: 2 - - uid: 15947 + - uid: 17044 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-86.5 parent: 2 - - uid: 15948 + - uid: 17045 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-86.5 parent: 2 - - uid: 15949 + - uid: 17046 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-86.5 parent: 2 - - uid: 15950 + - uid: 17047 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-86.5 parent: 2 - - uid: 15951 + - uid: 17048 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-86.5 parent: 2 - - uid: 15952 + - uid: 17049 components: - type: Transform pos: 10.5,-85.5 parent: 2 - - uid: 15953 + - uid: 17050 components: - type: Transform pos: 10.5,-84.5 parent: 2 - - uid: 15954 + - uid: 17051 components: - type: Transform pos: 10.5,-82.5 parent: 2 - - uid: 15955 + - uid: 17052 components: - type: Transform pos: 10.5,-81.5 parent: 2 - - uid: 15956 + - uid: 17053 components: - type: Transform pos: 10.5,-80.5 parent: 2 - - uid: 15957 + - uid: 17054 components: - type: Transform pos: 10.5,-79.5 parent: 2 - - uid: 15958 + - uid: 17055 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-83.5 parent: 2 - - uid: 15959 + - uid: 17056 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-83.5 parent: 2 - - uid: 15960 + - uid: 17057 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-83.5 parent: 2 - - uid: 15961 + - uid: 17058 components: - type: Transform pos: -0.5,-85.5 parent: 2 - - uid: 15962 + - uid: 17059 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-84.5 parent: 2 - - uid: 15963 + - uid: 17060 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-84.5 parent: 2 - - uid: 15964 + - uid: 17061 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-84.5 parent: 2 - - uid: 15965 + - uid: 17062 components: - type: Transform pos: 0.5,-87.5 parent: 2 - - uid: 15966 + - uid: 17063 components: - type: Transform pos: 0.5,-88.5 parent: 2 - - uid: 15967 + - uid: 17064 components: - type: Transform pos: 0.5,-89.5 parent: 2 - - uid: 15968 + - uid: 17065 components: - type: Transform pos: 0.5,-90.5 parent: 2 - - uid: 15969 + - uid: 17066 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-91.5 parent: 2 - - uid: 15970 + - uid: 17067 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-91.5 parent: 2 - - uid: 15971 + - uid: 17068 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-90.5 parent: 2 - - uid: 15972 + - uid: 17069 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-90.5 parent: 2 - - uid: 15973 + - uid: 17070 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-90.5 parent: 2 - - uid: 15974 + - uid: 17071 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-90.5 parent: 2 - - uid: 15975 + - uid: 17072 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-90.5 parent: 2 - - uid: 15976 + - uid: 17073 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-97.5 parent: 2 - - uid: 15977 + - uid: 17074 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-97.5 parent: 2 - - uid: 15978 + - uid: 17075 components: - type: Transform pos: -15.5,-96.5 parent: 2 - - uid: 15979 + - uid: 17076 components: - type: Transform pos: -15.5,-95.5 parent: 2 - - uid: 15980 + - uid: 17077 components: - type: Transform pos: -15.5,-94.5 parent: 2 - - uid: 15981 + - uid: 17078 components: - type: Transform pos: -15.5,-93.5 parent: 2 - - uid: 15982 + - uid: 17079 components: - type: Transform pos: -15.5,-92.5 parent: 2 - - uid: 15983 + - uid: 17080 components: - type: Transform pos: -15.5,-91.5 parent: 2 - - uid: 15984 + - uid: 17081 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-81.5 parent: 2 - - uid: 15985 + - uid: 17082 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-81.5 parent: 2 - - uid: 15986 + - uid: 17083 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-81.5 parent: 2 - - uid: 15987 + - uid: 17084 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-81.5 parent: 2 - - uid: 15988 + - uid: 17085 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-81.5 parent: 2 - - uid: 15989 + - uid: 17086 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-81.5 parent: 2 - - uid: 15990 + - uid: 17087 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-81.5 parent: 2 - - uid: 15991 + - uid: 17088 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-81.5 parent: 2 - - uid: 15992 + - uid: 17089 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-82.5 parent: 2 - - uid: 15993 + - uid: 17090 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-83.5 parent: 2 - - uid: 15994 + - uid: 17091 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-84.5 parent: 2 - - uid: 15995 + - uid: 17092 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-85.5 parent: 2 - - uid: 15996 + - uid: 17093 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-86.5 parent: 2 - - uid: 15997 + - uid: 17094 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-87.5 parent: 2 - - uid: 15998 + - uid: 17095 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-88.5 parent: 2 - - uid: 15999 + - uid: 17096 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-89.5 parent: 2 - - uid: 16000 + - uid: 17097 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-90.5 parent: 2 - - uid: 16001 + - uid: 17098 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-91.5 parent: 2 - - uid: 16002 + - uid: 17099 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-92.5 parent: 2 - - uid: 16003 + - uid: 17100 components: - type: Transform pos: -30.5,-93.5 parent: 2 - - uid: 16004 + - uid: 17101 components: - type: Transform pos: -30.5,-94.5 parent: 2 - - uid: 16005 + - uid: 17102 components: - type: Transform pos: -30.5,-95.5 parent: 2 - - uid: 16006 + - uid: 17103 components: - type: Transform pos: -30.5,-96.5 parent: 2 - - uid: 16007 + - uid: 17104 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-97.5 parent: 2 - - uid: 16008 + - uid: 17105 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-97.5 parent: 2 - - uid: 16009 + - uid: 17106 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-92.5 parent: 2 - - uid: 16010 + - uid: 17107 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-92.5 parent: 2 - - uid: 16011 + - uid: 17108 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-92.5 parent: 2 - - uid: 16012 + - uid: 17109 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-92.5 parent: 2 - - uid: 16013 + - uid: 17110 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-92.5 parent: 2 - - uid: 16014 + - uid: 17111 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-91.5 parent: 2 - - uid: 16015 + - uid: 17112 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-90.5 parent: 2 - - uid: 16016 + - uid: 17113 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-89.5 parent: 2 - - uid: 16017 + - uid: 17114 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-88.5 parent: 2 - - uid: 16018 + - uid: 17115 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-87.5 parent: 2 - - uid: 16019 + - uid: 17116 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-86.5 parent: 2 - - uid: 16020 + - uid: 17117 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-85.5 parent: 2 - - uid: 16021 + - uid: 17118 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-85.5 parent: 2 - - uid: 16022 + - uid: 17119 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-84.5 parent: 2 - - uid: 16023 + - uid: 17120 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-83.5 parent: 2 - - uid: 16024 + - uid: 17121 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-82.5 parent: 2 - - uid: 16025 + - uid: 17122 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-81.5 parent: 2 - - uid: 16026 + - uid: 17123 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-80.5 parent: 2 - - uid: 16027 + - uid: 17124 components: - type: Transform pos: -43.5,-79.5 parent: 2 - - uid: 16028 + - uid: 17125 components: - type: Transform pos: -43.5,-78.5 parent: 2 - - uid: 16029 + - uid: 17126 components: - type: Transform pos: -43.5,-77.5 parent: 2 - - uid: 16030 + - uid: 17127 components: - type: Transform pos: -43.5,-76.5 parent: 2 - - uid: 16031 + - uid: 17128 components: - type: Transform pos: -38.5,-84.5 parent: 2 - - uid: 16032 + - uid: 17129 components: - type: Transform pos: -38.5,-83.5 parent: 2 - - uid: 16033 + - uid: 17130 components: - type: Transform pos: -38.5,-82.5 parent: 2 - - uid: 16034 + - uid: 17131 components: - type: Transform pos: -38.5,-81.5 parent: 2 - - uid: 16035 + - uid: 17132 components: - type: Transform pos: -38.5,-80.5 parent: 2 - - uid: 16036 + - uid: 17133 components: - type: Transform pos: -38.5,-79.5 parent: 2 - - uid: 16037 + - uid: 17134 components: - type: Transform pos: -38.5,-78.5 parent: 2 - - uid: 16038 + - uid: 17135 components: - type: Transform pos: -38.5,-77.5 parent: 2 - - uid: 16039 + - uid: 17136 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-76.5 parent: 2 - - uid: 16040 + - uid: 17137 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-76.5 parent: 2 - - uid: 16041 + - uid: 17138 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-76.5 parent: 2 - - uid: 16042 + - uid: 17139 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-76.5 parent: 2 - - uid: 16043 + - uid: 17140 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-76.5 parent: 2 - - uid: 16044 + - uid: 17141 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 - - uid: 16045 + - uid: 17142 components: - type: Transform pos: -30.5,-76.5 parent: 2 - - uid: 16046 + - uid: 17143 components: - type: Transform pos: -43.5,-73.5 parent: 2 - - uid: 16047 + - uid: 17144 components: - type: Transform pos: -43.5,-72.5 parent: 2 - - uid: 16048 + - uid: 17145 components: - type: Transform pos: -43.5,-71.5 parent: 2 - - uid: 16049 + - uid: 17146 components: - type: Transform pos: -43.5,-70.5 parent: 2 - - uid: 16050 + - uid: 17147 components: - type: Transform pos: -43.5,-69.5 parent: 2 - - uid: 16051 + - uid: 17148 components: - type: Transform pos: -43.5,-68.5 parent: 2 - - uid: 16052 + - uid: 17149 components: - type: Transform pos: -43.5,-67.5 parent: 2 - - uid: 16053 + - uid: 17150 components: - type: Transform pos: -43.5,-66.5 parent: 2 - - uid: 16054 + - uid: 17151 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-65.5 parent: 2 - - uid: 16055 + - uid: 17152 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-65.5 parent: 2 - - uid: 16056 + - uid: 17153 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-65.5 parent: 2 - - uid: 16057 + - uid: 17154 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-65.5 parent: 2 - - uid: 16058 + - uid: 17155 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-65.5 parent: 2 - - uid: 16059 + - uid: 17156 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-66.5 parent: 2 - - uid: 16060 + - uid: 17157 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-67.5 parent: 2 - - uid: 16061 + - uid: 17158 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-65.5 parent: 2 - - uid: 16062 + - uid: 17159 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-64.5 parent: 2 - - uid: 16063 + - uid: 17160 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-63.5 parent: 2 - - uid: 16064 + - uid: 17161 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-61.5 parent: 2 - - uid: 16065 + - uid: 17162 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-60.5 parent: 2 - - uid: 16066 + - uid: 17163 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-59.5 parent: 2 - - uid: 16067 + - uid: 17164 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-58.5 parent: 2 - - uid: 16068 + - uid: 17165 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-57.5 parent: 2 - - uid: 16069 + - uid: 17166 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-56.5 parent: 2 - - uid: 16070 + - uid: 17167 components: - type: Transform pos: -43.5,-64.5 parent: 2 - - uid: 16071 + - uid: 17168 components: - type: Transform pos: -43.5,-63.5 parent: 2 - - uid: 16072 + - uid: 17169 components: - type: Transform pos: -43.5,-62.5 parent: 2 - - uid: 16073 + - uid: 17170 components: - type: Transform pos: -43.5,-61.5 parent: 2 - - uid: 16074 + - uid: 17171 components: - type: Transform pos: -43.5,-60.5 parent: 2 - - uid: 16075 + - uid: 17172 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-59.5 parent: 2 - - uid: 16076 + - uid: 17173 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-59.5 parent: 2 - - uid: 16077 + - uid: 17174 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-59.5 parent: 2 - - uid: 16078 + - uid: 17175 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-59.5 parent: 2 - - uid: 16079 + - uid: 17176 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-59.5 parent: 2 - - uid: 16080 + - uid: 17177 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-58.5 parent: 2 - - uid: 16081 + - uid: 17178 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-57.5 parent: 2 - - uid: 16082 + - uid: 17179 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-56.5 parent: 2 - - uid: 16083 + - uid: 17180 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-55.5 parent: 2 - - uid: 16084 + - uid: 17181 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-54.5 parent: 2 - - uid: 16085 + - uid: 17182 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-53.5 parent: 2 - - uid: 16086 + - uid: 17183 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-51.5 parent: 2 - - uid: 16087 + - uid: 17184 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-50.5 parent: 2 - - uid: 16088 + - uid: 17185 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-49.5 parent: 2 - - uid: 16089 + - uid: 17186 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-49.5 parent: 2 - - uid: 16090 + - uid: 17187 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-57.5 parent: 2 - - uid: 16091 + - uid: 17188 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-57.5 parent: 2 - - uid: 16092 + - uid: 17189 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-57.5 parent: 2 - - uid: 16093 + - uid: 17190 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-57.5 parent: 2 - - uid: 16094 + - uid: 17191 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-57.5 parent: 2 - - uid: 16095 + - uid: 17192 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-56.5 parent: 2 - - uid: 16096 + - uid: 17193 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-55.5 parent: 2 - - uid: 16097 + - uid: 17194 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-54.5 parent: 2 - - uid: 16098 + - uid: 17195 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-53.5 parent: 2 - - uid: 16099 + - uid: 17196 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-52.5 parent: 2 - - uid: 16100 + - uid: 17197 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-51.5 parent: 2 - - uid: 16101 + - uid: 17198 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-50.5 parent: 2 - - uid: 16102 + - uid: 17199 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-49.5 parent: 2 - - uid: 16103 + - uid: 17200 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-47.5 parent: 2 - - uid: 16104 + - uid: 17201 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-48.5 parent: 2 - - uid: 16105 + - uid: 17202 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-48.5 parent: 2 - - uid: 16106 + - uid: 17203 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-48.5 parent: 2 - - uid: 16107 + - uid: 17204 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-48.5 parent: 2 - - uid: 16108 + - uid: 17205 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-48.5 parent: 2 - - uid: 16109 + - uid: 17206 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-48.5 parent: 2 - - uid: 16110 + - uid: 17207 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-46.5 parent: 2 - - uid: 16111 + - uid: 17208 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-45.5 parent: 2 - - uid: 16112 + - uid: 17209 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-44.5 parent: 2 - - uid: 16113 + - uid: 17210 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-43.5 parent: 2 - - uid: 16114 + - uid: 17211 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-42.5 parent: 2 - - uid: 16115 + - uid: 17212 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-41.5 parent: 2 - - uid: 16116 + - uid: 17213 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-40.5 parent: 2 - - uid: 16117 + - uid: 17214 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-39.5 parent: 2 - - uid: 16118 + - uid: 17215 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-38.5 parent: 2 - - uid: 16119 + - uid: 17216 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-37.5 parent: 2 - - uid: 16120 + - uid: 17217 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-36.5 parent: 2 - - uid: 16121 + - uid: 17218 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-35.5 parent: 2 - - uid: 16122 + - uid: 17219 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-34.5 parent: 2 - - uid: 16123 + - uid: 17220 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-33.5 parent: 2 - - uid: 16124 + - uid: 17221 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-31.5 parent: 2 - - uid: 16125 + - uid: 17222 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-32.5 parent: 2 - - uid: 16126 + - uid: 17223 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-32.5 parent: 2 - - uid: 16127 + - uid: 17224 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-32.5 parent: 2 - - uid: 16128 + - uid: 17225 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-32.5 parent: 2 - - uid: 16129 + - uid: 17226 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-32.5 parent: 2 - - uid: 16130 + - uid: 17227 components: - type: Transform pos: 60.5,-31.5 parent: 2 - - uid: 16131 + - uid: 17228 components: - type: Transform pos: 60.5,-30.5 parent: 2 - - uid: 16132 + - uid: 17229 components: - type: Transform pos: 60.5,-28.5 parent: 2 - - uid: 16133 + - uid: 17230 components: - type: Transform pos: 60.5,-27.5 parent: 2 - - uid: 16134 + - uid: 17231 components: - type: Transform pos: 60.5,-26.5 parent: 2 - - uid: 16135 + - uid: 17232 components: - type: Transform pos: 60.5,-25.5 parent: 2 - - uid: 16136 + - uid: 17233 components: - type: Transform pos: 60.5,-24.5 parent: 2 - - uid: 16137 + - uid: 17234 components: - type: Transform pos: 60.5,-23.5 parent: 2 - - uid: 16138 + - uid: 17235 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-22.5 parent: 2 - - uid: 16139 + - uid: 17236 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-22.5 parent: 2 - - uid: 16140 + - uid: 17237 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-22.5 parent: 2 - - uid: 16141 + - uid: 17238 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-22.5 parent: 2 - - uid: 16142 + - uid: 17239 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-22.5 parent: 2 - - uid: 16143 + - uid: 17240 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-22.5 parent: 2 - - uid: 16144 + - uid: 17241 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-22.5 parent: 2 - - uid: 16145 + - uid: 17242 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-22.5 parent: 2 - - uid: 16146 + - uid: 17243 components: - type: Transform pos: 69.5,-23.5 parent: 2 - - uid: 16147 + - uid: 17244 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-21.5 parent: 2 - - uid: 16148 + - uid: 17245 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,-21.5 parent: 2 - - uid: 16149 + - uid: 17246 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-21.5 parent: 2 - - uid: 16150 + - uid: 17247 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-21.5 parent: 2 - - uid: 16151 + - uid: 17248 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-21.5 parent: 2 - - uid: 16152 + - uid: 17249 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-21.5 parent: 2 - - uid: 16153 + - uid: 17250 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-22.5 parent: 2 - - uid: 16154 + - uid: 17251 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-23.5 parent: 2 - - uid: 16155 + - uid: 17252 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-24.5 parent: 2 - - uid: 16156 + - uid: 17253 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-25.5 parent: 2 - - uid: 16157 + - uid: 17254 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-26.5 parent: 2 - - uid: 16158 + - uid: 17255 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-27.5 parent: 2 - - uid: 16159 + - uid: 17256 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-28.5 parent: 2 - - uid: 16160 + - uid: 17257 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-29.5 parent: 2 - - uid: 16161 + - uid: 17258 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-29.5 parent: 2 - - uid: 16162 + - uid: 17259 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-21.5 parent: 2 - - uid: 16163 + - uid: 17260 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-21.5 parent: 2 - - uid: 16164 + - uid: 17261 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,-21.5 parent: 2 - - uid: 16165 + - uid: 17262 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-21.5 parent: 2 - - uid: 16166 + - uid: 17263 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,-21.5 parent: 2 - - uid: 16167 + - uid: 17264 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-22.5 parent: 2 - - uid: 16168 + - uid: 17265 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-23.5 parent: 2 - - uid: 16169 + - uid: 17266 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-24.5 parent: 2 - - uid: 16170 + - uid: 17267 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-25.5 parent: 2 - - uid: 16171 + - uid: 17268 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-26.5 parent: 2 - - uid: 16172 + - uid: 17269 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-27.5 parent: 2 - - uid: 16173 + - uid: 17270 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-28.5 parent: 2 - - uid: 16174 + - uid: 17271 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-29.5 parent: 2 - - uid: 16175 + - uid: 17272 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-30.5 parent: 2 - - uid: 16176 + - uid: 17273 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-31.5 parent: 2 - - uid: 16177 + - uid: 17274 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-33.5 parent: 2 - - uid: 16178 + - uid: 17275 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-34.5 parent: 2 - - uid: 16179 + - uid: 17276 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-35.5 parent: 2 - - uid: 16180 + - uid: 17277 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-36.5 parent: 2 - - uid: 16181 + - uid: 17278 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-37.5 parent: 2 - - uid: 16182 + - uid: 17279 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-38.5 parent: 2 - - uid: 16183 + - uid: 17280 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-39.5 parent: 2 - - uid: 16184 + - uid: 17281 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,-40.5 parent: 2 - - uid: 16185 + - uid: 17282 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-40.5 parent: 2 - - uid: 16186 + - uid: 17283 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-40.5 parent: 2 - - uid: 16187 + - uid: 17284 components: - type: Transform rot: 1.5707963267948966 rad pos: 86.5,-40.5 parent: 2 - - uid: 16188 + - uid: 17285 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-40.5 parent: 2 - - uid: 16189 + - uid: 17286 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,-40.5 parent: 2 - - uid: 16190 + - uid: 17287 components: - type: Transform pos: 89.5,-41.5 parent: 2 - - uid: 16191 + - uid: 17288 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,-21.5 parent: 2 - - uid: 16192 + - uid: 17289 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,-21.5 parent: 2 - - uid: 16193 + - uid: 17290 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,-22.5 parent: 2 - - uid: 16194 + - uid: 17291 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,-23.5 parent: 2 - - uid: 16195 + - uid: 17292 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-32.5 parent: 2 - - uid: 16196 + - uid: 17293 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-32.5 parent: 2 - - uid: 16197 + - uid: 17294 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-32.5 parent: 2 - - uid: 16198 + - uid: 17295 components: - type: Transform pos: 78.5,-33.5 parent: 2 - - uid: 16199 + - uid: 17296 components: - type: Transform pos: 78.5,-34.5 parent: 2 - - uid: 16200 + - uid: 17297 components: - type: Transform pos: 78.5,-36.5 parent: 2 - - uid: 16201 + - uid: 17298 components: - type: Transform pos: 78.5,-38.5 parent: 2 - - uid: 16202 + - uid: 17299 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-29.5 parent: 2 - - uid: 16203 + - uid: 17300 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-29.5 parent: 2 - - uid: 16204 + - uid: 17301 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-28.5 parent: 2 - - uid: 16205 + - uid: 17302 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-28.5 parent: 2 - - uid: 16206 + - uid: 17303 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-28.5 parent: 2 - - uid: 16207 + - uid: 17304 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-28.5 parent: 2 - - uid: 16208 + - uid: 17305 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-28.5 parent: 2 - - uid: 16209 + - uid: 17306 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-28.5 parent: 2 - - uid: 16210 + - uid: 17307 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-28.5 parent: 2 - - uid: 16211 + - uid: 17308 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-27.5 parent: 2 - - uid: 16212 + - uid: 17309 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-27.5 parent: 2 - - uid: 16213 + - uid: 17310 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-27.5 parent: 2 - - uid: 16214 + - uid: 17311 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-27.5 parent: 2 - - uid: 16215 + - uid: 17312 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-28.5 parent: 2 - - uid: 16216 + - uid: 17313 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-30.5 parent: 2 - - uid: 16217 + - uid: 17314 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-31.5 parent: 2 - - uid: 16218 + - uid: 17315 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-32.5 parent: 2 - - uid: 16219 + - uid: 17316 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-26.5 parent: 2 - - uid: 16261 + - uid: 17317 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,7.5 parent: 2 - - uid: 16262 + - uid: 17318 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,7.5 parent: 2 - - uid: 16263 + - uid: 17319 components: - type: Transform pos: 40.5,8.5 parent: 2 - - uid: 16264 + - uid: 17320 components: - type: Transform pos: 40.5,9.5 parent: 2 - - uid: 16265 + - uid: 17321 components: - type: Transform pos: 40.5,10.5 parent: 2 - - uid: 16266 + - uid: 17322 components: - type: Transform pos: 40.5,11.5 parent: 2 - - uid: 16267 + - uid: 17323 components: - type: Transform pos: 40.5,12.5 parent: 2 - - uid: 16268 + - uid: 17324 components: - type: Transform pos: 40.5,13.5 parent: 2 - - uid: 16269 + - uid: 17325 components: - type: Transform pos: 40.5,14.5 parent: 2 - - uid: 16270 + - uid: 17326 components: - type: Transform pos: 40.5,15.5 parent: 2 - - uid: 16271 + - uid: 17327 components: - type: Transform pos: 40.5,16.5 parent: 2 - - uid: 16272 + - uid: 17328 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,17.5 parent: 2 - - uid: 16273 + - uid: 17329 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,17.5 parent: 2 - - uid: 16274 + - uid: 17330 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,17.5 parent: 2 - - uid: 16275 + - uid: 17331 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,17.5 parent: 2 - - uid: 16276 + - uid: 17332 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,17.5 parent: 2 - - uid: 16277 + - uid: 17333 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,17.5 parent: 2 - - uid: 16278 + - uid: 17334 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,17.5 parent: 2 - - uid: 16279 + - uid: 17335 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,17.5 parent: 2 - - uid: 16280 + - uid: 17336 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,17.5 parent: 2 - - uid: 16281 + - uid: 17337 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,16.5 parent: 2 - - uid: 16282 + - uid: 17338 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,16.5 parent: 2 - - uid: 16283 + - uid: 17339 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,16.5 parent: 2 - - uid: 16284 + - uid: 17340 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,16.5 parent: 2 - - uid: 16285 + - uid: 17341 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,16.5 parent: 2 - - uid: 16286 + - uid: 17342 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,16.5 parent: 2 - - uid: 16287 + - uid: 17343 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,16.5 parent: 2 - - uid: 16288 + - uid: 17344 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,16.5 parent: 2 - - uid: 16289 + - uid: 17345 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,15.5 parent: 2 - - uid: 16290 + - uid: 17346 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,14.5 parent: 2 - - uid: 16291 + - uid: 17347 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,13.5 parent: 2 - - uid: 16292 + - uid: 17348 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,12.5 parent: 2 - - uid: 16293 + - uid: 17349 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,10.5 parent: 2 - - uid: 16294 + - uid: 17350 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,9.5 parent: 2 - - uid: 16295 + - uid: 17351 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,8.5 parent: 2 - - uid: 16296 + - uid: 17352 components: - type: Transform pos: 20.5,7.5 parent: 2 - - uid: 16297 + - uid: 17353 components: - type: Transform pos: 20.5,7.5 parent: 2 - - uid: 16298 + - uid: 17354 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,6.5 parent: 2 - - uid: 16299 + - uid: 17355 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,6.5 parent: 2 - - uid: 16300 + - uid: 17356 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,6.5 parent: 2 - - uid: 16301 + - uid: 17357 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,6.5 parent: 2 - - uid: 16302 + - uid: 17358 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,7.5 parent: 2 - - uid: 16303 + - uid: 17359 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,8.5 parent: 2 - - uid: 16304 + - uid: 17360 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,9.5 parent: 2 - - uid: 16305 + - uid: 17361 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,9.5 parent: 2 - - uid: 16306 + - uid: 17362 components: - type: Transform pos: 12.5,10.5 parent: 2 - - uid: 16307 + - uid: 17363 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,11.5 parent: 2 - - uid: 16308 + - uid: 17364 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,13.5 parent: 2 - - uid: 16309 + - uid: 17365 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,13.5 parent: 2 - - uid: 16310 + - uid: 17366 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,13.5 parent: 2 - - uid: 16311 + - uid: 17367 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,13.5 parent: 2 - - uid: 16312 + - uid: 17368 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,13.5 parent: 2 - - uid: 16313 + - uid: 17369 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,14.5 parent: 2 - - uid: 16314 + - uid: 17370 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,15.5 parent: 2 - - uid: 16315 + - uid: 17371 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,16.5 parent: 2 - - uid: 16316 + - uid: 17372 components: - type: Transform pos: 8.5,18.5 parent: 2 - - uid: 16317 + - uid: 17373 components: - type: Transform pos: 8.5,19.5 parent: 2 - - uid: 16318 + - uid: 17374 components: - type: Transform pos: 8.5,20.5 parent: 2 - - uid: 16319 + - uid: 17375 components: - type: Transform pos: 8.5,21.5 parent: 2 - - uid: 16320 + - uid: 17376 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,22.5 parent: 2 - - uid: 16321 + - uid: 17377 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,22.5 parent: 2 - - uid: 16322 + - uid: 17378 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,22.5 parent: 2 - - uid: 16323 + - uid: 17379 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,22.5 parent: 2 - - uid: 16324 + - uid: 17380 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,22.5 parent: 2 - - uid: 16325 + - uid: 17381 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,22.5 parent: 2 - - uid: 16326 + - uid: 17382 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,22.5 parent: 2 - - uid: 16327 + - uid: 17383 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,22.5 parent: 2 - - uid: 16328 + - uid: 17384 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,22.5 parent: 2 - - uid: 16329 + - uid: 17385 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,22.5 parent: 2 - - uid: 16330 + - uid: 17386 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,23.5 parent: 2 - - uid: 16331 + - uid: 17387 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,24.5 parent: 2 - - uid: 16332 + - uid: 17388 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,25.5 parent: 2 - - uid: 16333 + - uid: 17389 components: - type: Transform pos: 1.5,21.5 parent: 2 - - uid: 16334 + - uid: 17390 components: - type: Transform pos: 1.5,20.5 parent: 2 - - uid: 16335 + - uid: 17391 components: - type: Transform pos: 1.5,19.5 parent: 2 - - uid: 16336 + - uid: 17392 components: - type: Transform pos: 1.5,18.5 parent: 2 - - uid: 16337 + - uid: 17393 components: - type: Transform pos: 1.5,17.5 parent: 2 - - uid: 16338 + - uid: 17394 components: - type: Transform pos: 1.5,16.5 parent: 2 - - uid: 16339 + - uid: 17395 components: - type: Transform pos: 1.5,15.5 parent: 2 - - uid: 16340 + - uid: 17396 components: - type: Transform pos: 1.5,14.5 parent: 2 - - uid: 16341 + - uid: 17397 components: - type: Transform pos: 1.5,13.5 parent: 2 - - uid: 16342 + - uid: 17398 components: - type: Transform pos: 1.5,12.5 parent: 2 - - uid: 16343 + - uid: 17399 components: - type: Transform pos: 1.5,11.5 parent: 2 - - uid: 16344 + - uid: 17400 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,9.5 parent: 2 - - uid: 16345 + - uid: 17401 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,9.5 parent: 2 - - uid: 16346 + - uid: 17402 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 2 - - uid: 16347 + - uid: 17403 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,9.5 parent: 2 - - uid: 16348 + - uid: 17404 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,9.5 parent: 2 - - uid: 16349 + - uid: 17405 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,9.5 parent: 2 - - uid: 16350 + - uid: 17406 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,9.5 parent: 2 - - uid: 16351 + - uid: 17407 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,9.5 parent: 2 - - uid: 16352 + - uid: 17408 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,8.5 parent: 2 - - uid: 16353 + - uid: 17409 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,7.5 parent: 2 - - uid: 16354 + - uid: 17410 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,6.5 parent: 2 - - uid: 16355 + - uid: 17411 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,5.5 parent: 2 - - uid: 16356 + - uid: 17412 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,2.5 parent: 2 - - uid: 16362 + - uid: 17413 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,10.5 parent: 2 - - uid: 16363 + - uid: 17414 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,10.5 parent: 2 - - uid: 16364 + - uid: 17415 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,10.5 parent: 2 - - uid: 16365 + - uid: 17416 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,10.5 parent: 2 - - uid: 16366 + - uid: 17417 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,10.5 parent: 2 - - uid: 16367 + - uid: 17418 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,10.5 parent: 2 - - uid: 16368 + - uid: 17419 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 2 - - uid: 16369 + - uid: 17420 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,10.5 parent: 2 - - uid: 16370 + - uid: 17421 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,10.5 parent: 2 - - uid: 16371 + - uid: 17422 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,10.5 parent: 2 - - uid: 16372 + - uid: 17423 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,10.5 parent: 2 - - uid: 16373 + - uid: 17424 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,10.5 parent: 2 - - uid: 16374 + - uid: 17425 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-97.5 parent: 2 - - uid: 16375 + - uid: 17426 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-97.5 parent: 2 - - uid: 16376 + - uid: 17427 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-97.5 parent: 2 - - uid: 16377 + - uid: 17428 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-97.5 parent: 2 - - uid: 16378 + - uid: 17429 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-52.5 parent: 2 - - uid: 16379 + - uid: 17430 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-52.5 parent: 2 - - uid: 16380 + - uid: 17431 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-52.5 parent: 2 - - uid: 16381 + - uid: 17432 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-52.5 parent: 2 - - uid: 16382 + - uid: 17433 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-52.5 parent: 2 - - uid: 16383 + - uid: 17434 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-52.5 parent: 2 - - uid: 16384 + - uid: 17435 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-52.5 parent: 2 - - uid: 16385 + - uid: 17436 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-52.5 parent: 2 - - uid: 16386 + - uid: 17437 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-51.5 parent: 2 - - uid: 16387 + - uid: 17438 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-50.5 parent: 2 - - uid: 16388 + - uid: 17439 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-49.5 parent: 2 - - uid: 16389 + - uid: 17440 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-48.5 parent: 2 - - uid: 16390 + - uid: 17441 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-47.5 parent: 2 - - uid: 16391 + - uid: 17442 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-46.5 parent: 2 - - uid: 16392 + - uid: 17443 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-45.5 parent: 2 - - uid: 16393 + - uid: 17444 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-44.5 parent: 2 - - uid: 16394 + - uid: 17445 components: - type: Transform pos: -53.5,-26.5 parent: 2 - - uid: 16395 + - uid: 17446 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-43.5 parent: 2 - - uid: 16396 + - uid: 17447 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-43.5 parent: 2 - - uid: 16397 + - uid: 17448 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-43.5 parent: 2 - - uid: 16398 + - uid: 17449 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-43.5 parent: 2 - - uid: 16399 + - uid: 17450 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-43.5 parent: 2 - - uid: 16400 + - uid: 17451 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-44.5 parent: 2 - - uid: 16401 + - uid: 17452 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-43.5 parent: 2 - - uid: 16402 + - uid: 17453 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-43.5 parent: 2 - - uid: 16403 + - uid: 17454 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,-43.5 parent: 2 - - uid: 16404 + - uid: 17455 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-43.5 parent: 2 - - uid: 16405 + - uid: 17456 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-43.5 parent: 2 - - uid: 16406 + - uid: 17457 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-43.5 parent: 2 - - uid: 16407 + - uid: 17458 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-43.5 parent: 2 - - uid: 16408 + - uid: 17459 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-43.5 parent: 2 - - uid: 16409 + - uid: 17460 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,-43.5 parent: 2 - - uid: 16410 + - uid: 17461 components: - type: Transform pos: -76.5,-42.5 parent: 2 - - uid: 16411 + - uid: 17462 components: - type: Transform pos: -76.5,-41.5 parent: 2 - - uid: 16412 + - uid: 17463 components: - type: Transform pos: -76.5,-40.5 parent: 2 - - uid: 16413 + - uid: 17464 components: - type: Transform pos: -76.5,-39.5 parent: 2 - - uid: 16414 + - uid: 17465 components: - type: Transform pos: -76.5,-38.5 parent: 2 - - uid: 16415 + - uid: 17466 components: - type: Transform pos: -76.5,-37.5 parent: 2 - - uid: 16416 + - uid: 17467 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-2.5 parent: 2 - - uid: 16417 + - uid: 17468 components: - type: Transform pos: -66.5,-42.5 parent: 2 - - uid: 16418 + - uid: 17469 components: - type: Transform pos: -66.5,-41.5 parent: 2 - - uid: 16419 + - uid: 17470 components: - type: Transform pos: -66.5,-40.5 parent: 2 - - uid: 16420 + - uid: 17471 components: - type: Transform pos: -66.5,-39.5 parent: 2 - - uid: 16421 + - uid: 17472 components: - type: Transform pos: -66.5,-38.5 parent: 2 - - uid: 16422 + - uid: 17473 components: - type: Transform pos: -66.5,-37.5 parent: 2 - - uid: 16423 + - uid: 17474 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.5,-36.5 parent: 2 - - uid: 16424 + - uid: 17475 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-37.5 parent: 2 - - uid: 16425 + - uid: 17476 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-36.5 parent: 2 - - uid: 16426 + - uid: 17477 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-35.5 parent: 2 - - uid: 16427 + - uid: 17478 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-34.5 parent: 2 - - uid: 16428 + - uid: 17479 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-33.5 parent: 2 - - uid: 16429 + - uid: 17480 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-32.5 parent: 2 - - uid: 16430 + - uid: 17481 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-31.5 parent: 2 - - uid: 16431 + - uid: 17482 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-30.5 parent: 2 - - uid: 16432 + - uid: 17483 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-29.5 parent: 2 - - uid: 16433 + - uid: 17484 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-7.5 parent: 2 - - uid: 16434 + - uid: 17485 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-7.5 parent: 2 - - uid: 16435 + - uid: 17486 components: - type: Transform pos: -41.5,-6.5 parent: 2 - - uid: 16436 + - uid: 17487 components: - type: Transform pos: -41.5,-5.5 parent: 2 - - uid: 16437 + - uid: 17488 components: - type: Transform pos: -41.5,-4.5 parent: 2 - - uid: 16438 + - uid: 17489 components: - type: Transform pos: -41.5,-3.5 parent: 2 - - uid: 16439 + - uid: 17490 components: - type: Transform pos: -41.5,-8.5 parent: 2 - - uid: 16440 + - uid: 17491 components: - type: Transform pos: -41.5,-9.5 parent: 2 - - uid: 16441 + - uid: 17492 components: - type: Transform pos: -41.5,-10.5 parent: 2 - - uid: 16442 + - uid: 17493 components: - type: Transform pos: -41.5,-11.5 parent: 2 - - uid: 16443 + - uid: 17494 components: - type: Transform pos: -41.5,-12.5 parent: 2 - - uid: 16444 + - uid: 17495 components: - type: Transform pos: -41.5,-13.5 parent: 2 - - uid: 16445 + - uid: 17496 components: - type: Transform pos: -41.5,-14.5 parent: 2 - - uid: 16446 + - uid: 17497 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-15.5 parent: 2 - - uid: 16447 + - uid: 17498 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-15.5 parent: 2 - - uid: 16448 + - uid: 17499 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-15.5 parent: 2 - - uid: 16449 + - uid: 17500 components: - type: Transform pos: -41.5,-16.5 parent: 2 - - uid: 16450 + - uid: 17501 components: - type: Transform pos: -41.5,-18.5 parent: 2 - - uid: 16451 + - uid: 17502 components: - type: Transform pos: -41.5,-19.5 parent: 2 - - uid: 16452 + - uid: 17503 components: - type: Transform pos: -41.5,-20.5 parent: 2 - - uid: 16453 + - uid: 17504 components: - type: Transform pos: -41.5,-21.5 parent: 2 - - uid: 16454 + - uid: 17505 components: - type: Transform pos: -41.5,-22.5 parent: 2 - - uid: 16455 + - uid: 17506 components: - type: Transform pos: -41.5,-23.5 parent: 2 - - uid: 16456 + - uid: 17507 components: - type: Transform pos: -41.5,-24.5 parent: 2 - - uid: 16457 + - uid: 17508 components: - type: Transform pos: -41.5,-25.5 parent: 2 - - uid: 16458 + - uid: 17509 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-27.5 parent: 2 - - uid: 16459 + - uid: 17510 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-27.5 parent: 2 - - uid: 16460 + - uid: 17511 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-27.5 parent: 2 - - uid: 16461 + - uid: 17512 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-27.5 parent: 2 - - uid: 16462 + - uid: 17513 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-27.5 parent: 2 - - uid: 16463 + - uid: 17514 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-27.5 parent: 2 - - uid: 16464 + - uid: 17515 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-27.5 parent: 2 - - uid: 16465 + - uid: 17516 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-27.5 parent: 2 - - uid: 16466 + - uid: 17517 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-27.5 parent: 2 - - uid: 16467 + - uid: 17518 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-28.5 parent: 2 - - uid: 16468 + - uid: 17519 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-28.5 parent: 2 - - uid: 16469 + - uid: 17520 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-28.5 parent: 2 - - uid: 16470 + - uid: 17521 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-28.5 parent: 2 - - uid: 16471 + - uid: 17522 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-28.5 parent: 2 - - uid: 16473 + - uid: 17523 components: - type: Transform pos: -32.5,-27.5 parent: 2 - - uid: 16474 + - uid: 17524 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-1.5 parent: 2 - - uid: 16475 + - uid: 17525 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-0.5 parent: 2 - - uid: 16476 + - uid: 17526 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,0.5 parent: 2 - - uid: 16477 + - uid: 17527 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,1.5 parent: 2 - - uid: 16478 + - uid: 17528 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,2.5 parent: 2 - - uid: 16479 + - uid: 17529 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,3.5 parent: 2 - - uid: 16480 + - uid: 17530 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,3.5 parent: 2 - - uid: 16481 + - uid: 17531 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,3.5 parent: 2 - - uid: 16482 + - uid: 17532 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,3.5 parent: 2 - - uid: 16483 + - uid: 17533 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,3.5 parent: 2 - - uid: 16484 + - uid: 17534 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,3.5 parent: 2 - - uid: 16485 + - uid: 17535 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,3.5 parent: 2 - - uid: 16486 + - uid: 17536 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,3.5 parent: 2 - - uid: 16487 + - uid: 17537 components: - type: Transform pos: -50.5,2.5 parent: 2 - - uid: 16488 + - uid: 17538 components: - type: Transform pos: -50.5,1.5 parent: 2 - - uid: 16489 + - uid: 17539 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-28.5 parent: 2 - - uid: 16490 + - uid: 17540 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-29.5 parent: 2 - - uid: 16491 + - uid: 17541 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-30.5 parent: 2 - - uid: 16492 + - uid: 17542 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-31.5 parent: 2 - - uid: 16493 + - uid: 17543 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-32.5 parent: 2 - - uid: 16494 + - uid: 17544 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-33.5 parent: 2 - - uid: 16495 + - uid: 17545 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-34.5 parent: 2 - - uid: 16496 + - uid: 17546 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-35.5 parent: 2 - - uid: 16497 + - uid: 17547 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-36.5 parent: 2 - - uid: 16498 + - uid: 17548 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-37.5 parent: 2 - - uid: 16499 + - uid: 17549 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-38.5 parent: 2 - - uid: 16500 + - uid: 17550 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-43.5 parent: 2 - - uid: 16501 + - uid: 17551 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-43.5 parent: 2 - - uid: 16502 + - uid: 17552 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-43.5 parent: 2 - - uid: 16503 + - uid: 17553 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-43.5 parent: 2 - - uid: 16504 + - uid: 17554 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-44.5 parent: 2 - - uid: 16505 + - uid: 17555 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-73.5 parent: 2 - - uid: 16506 + - uid: 17556 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-72.5 parent: 2 - - uid: 16507 + - uid: 17557 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-72.5 parent: 2 - - uid: 16508 + - uid: 17558 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-72.5 parent: 2 - - uid: 16509 + - uid: 17559 components: - type: Transform pos: 22.5,-73.5 parent: 2 - - uid: 16510 + - uid: 17560 components: - type: Transform pos: 22.5,-74.5 parent: 2 - - uid: 16511 + - uid: 17561 components: - type: Transform pos: 22.5,-75.5 parent: 2 - - uid: 16512 + - uid: 17562 components: - type: Transform pos: 22.5,-76.5 parent: 2 - - uid: 16513 + - uid: 17563 components: - type: Transform pos: 22.5,-77.5 parent: 2 - - uid: 16514 + - uid: 17564 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-54.5 parent: 2 - - uid: 16515 + - uid: 17565 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-54.5 parent: 2 - - uid: 16516 + - uid: 17566 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-54.5 parent: 2 - - uid: 16517 + - uid: 17567 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-54.5 parent: 2 - - uid: 16518 + - uid: 17568 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-54.5 parent: 2 - - uid: 16519 + - uid: 17569 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-54.5 parent: 2 - - uid: 16520 + - uid: 17570 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-54.5 parent: 2 - - uid: 16521 + - uid: 17571 components: - type: Transform pos: 40.5,-55.5 parent: 2 - - uid: 16522 + - uid: 17572 components: - type: Transform pos: 40.5,-56.5 parent: 2 - - uid: 16523 + - uid: 17573 components: - type: Transform pos: 40.5,-57.5 parent: 2 - - uid: 16524 + - uid: 17574 components: - type: Transform pos: 40.5,-58.5 parent: 2 - - uid: 16525 + - uid: 17575 components: - type: Transform pos: 40.5,-59.5 parent: 2 - - uid: 16526 + - uid: 17576 components: - type: Transform pos: 40.5,-60.5 parent: 2 - - uid: 16527 + - uid: 17577 components: - type: Transform pos: 40.5,-61.5 parent: 2 - - uid: 16528 + - uid: 17578 components: - type: Transform pos: 40.5,-62.5 parent: 2 - - uid: 16529 + - uid: 17579 components: - type: Transform pos: 40.5,-63.5 parent: 2 - - uid: 16530 + - uid: 17580 components: - type: Transform pos: 40.5,-64.5 parent: 2 - - uid: 16531 + - uid: 17581 components: - type: Transform pos: 40.5,-65.5 parent: 2 - - uid: 16532 + - uid: 17582 components: - type: Transform pos: 40.5,-66.5 parent: 2 - - uid: 16533 + - uid: 17583 components: - type: Transform pos: 40.5,-67.5 parent: 2 - - uid: 16534 + - uid: 17584 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-27.5 parent: 2 - - uid: 16535 + - uid: 17585 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-27.5 parent: 2 - - uid: 16536 + - uid: 17586 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-27.5 parent: 2 - - uid: 16537 + - uid: 17587 components: - type: Transform pos: 35.5,-28.5 parent: 2 - - uid: 16538 + - uid: 17588 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-29.5 parent: 2 - - uid: 16539 + - uid: 17589 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-29.5 parent: 2 - - uid: 16540 + - uid: 17590 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-29.5 parent: 2 - - uid: 16541 + - uid: 17591 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-29.5 parent: 2 - - uid: 16542 + - uid: 17592 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-29.5 parent: 2 - - uid: 16543 + - uid: 17593 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-29.5 parent: 2 - - uid: 16544 + - uid: 17594 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-29.5 parent: 2 - - uid: 16545 + - uid: 17595 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-29.5 parent: 2 - - uid: 16546 + - uid: 17596 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-7.5 parent: 2 - - uid: 16547 + - uid: 17597 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-17.5 parent: 2 - - uid: 16548 + - uid: 17598 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-17.5 parent: 2 - - uid: 16549 + - uid: 17599 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-17.5 parent: 2 - - uid: 16550 + - uid: 17600 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-17.5 parent: 2 - - uid: 16551 + - uid: 17601 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-17.5 parent: 2 - - uid: 16552 + - uid: 17602 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-17.5 parent: 2 - - uid: 16553 + - uid: 17603 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-17.5 parent: 2 - - uid: 16554 + - uid: 17604 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-17.5 parent: 2 - - uid: 16555 + - uid: 17605 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-16.5 parent: 2 - - uid: 16556 + - uid: 17606 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-15.5 parent: 2 - - uid: 16557 + - uid: 17607 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-14.5 parent: 2 - - uid: 16558 + - uid: 17608 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-13.5 parent: 2 - - uid: 16559 + - uid: 17609 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-12.5 parent: 2 - - uid: 16560 + - uid: 17610 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-11.5 parent: 2 - - uid: 16561 + - uid: 17611 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-10.5 parent: 2 - - uid: 16562 + - uid: 17612 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-9.5 parent: 2 - - uid: 16563 + - uid: 17613 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-8.5 parent: 2 - - uid: 16564 + - uid: 17614 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-6.5 parent: 2 - - uid: 16565 + - uid: 17615 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-5.5 parent: 2 - - uid: 16566 + - uid: 17616 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-4.5 parent: 2 - - uid: 16567 + - uid: 17617 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-3.5 parent: 2 - - uid: 16568 + - uid: 17618 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-2.5 parent: 2 - - uid: 16569 + - uid: 17619 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-1.5 parent: 2 - - uid: 16570 + - uid: 17620 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-0.5 parent: 2 - - uid: 16571 + - uid: 17621 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,0.5 parent: 2 - - uid: 16572 + - uid: 17622 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,1.5 parent: 2 - - uid: 16573 + - uid: 17623 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,1.5 parent: 2 - - uid: 16574 + - uid: 17624 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,2.5 parent: 2 - - uid: 16575 + - uid: 17625 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,3.5 parent: 2 - - uid: 16576 + - uid: 17626 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,4.5 parent: 2 - - uid: 16577 + - uid: 17627 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,5.5 parent: 2 - - uid: 16578 + - uid: 17628 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,6.5 parent: 2 - - uid: 16579 + - uid: 17629 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,7.5 parent: 2 - - uid: 16580 + - uid: 17630 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,8.5 parent: 2 - - uid: 16581 + - uid: 17631 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,9.5 parent: 2 - - uid: 16582 + - uid: 17632 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,10.5 parent: 2 - - uid: 16583 + - uid: 17633 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,11.5 parent: 2 - - uid: 16584 + - uid: 17634 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,12.5 parent: 2 - - uid: 16585 + - uid: 17635 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,13.5 parent: 2 - - uid: 16586 + - uid: 17636 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,13.5 parent: 2 - - uid: 16587 + - uid: 17637 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,0.5 parent: 2 - - uid: 16588 + - uid: 17638 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,1.5 parent: 2 - - uid: 16589 + - uid: 17639 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,1.5 parent: 2 - - uid: 16590 + - uid: 17640 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,1.5 parent: 2 - - uid: 16591 + - uid: 17641 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,1.5 parent: 2 - - uid: 16592 + - uid: 17642 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,1.5 parent: 2 - - uid: 16593 + - uid: 17643 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,1.5 parent: 2 - - uid: 16594 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,1.5 - parent: 2 - - uid: 16595 + - uid: 17644 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,2.5 parent: 2 - - uid: 16596 + - uid: 17645 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,0.5 parent: 2 - - uid: 16597 + - uid: 17646 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,1.5 parent: 2 - - uid: 16598 + - uid: 17647 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,2.5 parent: 2 - - uid: 16599 + - uid: 17648 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,3.5 parent: 2 - - uid: 16600 + - uid: 17649 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,3.5 parent: 2 - - uid: 16601 + - uid: 17650 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,3.5 parent: 2 - - uid: 16602 + - uid: 17651 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,3.5 parent: 2 - - uid: 16603 + - uid: 17652 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,3.5 parent: 2 - - uid: 16604 + - uid: 17653 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,3.5 parent: 2 - - uid: 16605 + - uid: 17654 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,3.5 parent: 2 - - uid: 16606 + - uid: 17655 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 2 - - uid: 16607 + - uid: 17656 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,3.5 parent: 2 - - uid: 16608 + - uid: 17657 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-7.5 parent: 2 - - uid: 16609 + - uid: 17658 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-7.5 parent: 2 - - uid: 16610 + - uid: 17659 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-7.5 parent: 2 - - uid: 16611 + - uid: 17660 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-7.5 parent: 2 - - uid: 16612 + - uid: 17661 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-7.5 parent: 2 - - uid: 16613 + - uid: 17662 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-8.5 parent: 2 - - uid: 16614 + - uid: 17663 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-28.5 parent: 2 - - uid: 16616 + - uid: 17664 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-58.5 parent: 2 - - uid: 16617 + - uid: 17665 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-58.5 parent: 2 - - uid: 16618 + - uid: 17666 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-58.5 parent: 2 - - uid: 16619 + - uid: 17667 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-58.5 parent: 2 - - uid: 16620 + - uid: 17668 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-58.5 parent: 2 - - uid: 16637 + - uid: 17669 components: - type: Transform pos: 34.5,6.5 parent: 2 - - uid: 16639 + - uid: 17670 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,7.5 parent: 2 - - uid: 16642 + - uid: 17671 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,7.5 parent: 2 - - uid: 16643 + - uid: 17672 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,13.5 parent: 2 - - uid: 16644 + - uid: 17673 components: - type: Transform pos: 31.5,-5.5 parent: 2 - - uid: 16645 + - uid: 17674 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-27.5 parent: 2 - - uid: 16646 + - uid: 17675 components: - type: Transform pos: 31.5,-0.5 parent: 2 - - uid: 16647 + - uid: 17676 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,1.5 parent: 2 - - uid: 16648 + - uid: 17677 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,1.5 parent: 2 - - uid: 16649 + - uid: 17678 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-78.5 parent: 2 - - uid: 16650 + - uid: 17679 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-78.5 parent: 2 - - uid: 16651 + - uid: 17680 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-78.5 parent: 2 - - uid: 16652 + - uid: 17681 components: - type: Transform pos: -23.5,-77.5 parent: 2 - - uid: 16653 + - uid: 17682 components: - type: Transform pos: -23.5,-78.5 parent: 2 - - uid: 16654 + - uid: 17683 components: - type: Transform pos: -23.5,-79.5 parent: 2 - - uid: 16655 + - uid: 17684 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-76.5 parent: 2 - - uid: 16656 + - uid: 17685 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-39.5 parent: 2 - - uid: 16657 + - uid: 17686 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-39.5 parent: 2 - - uid: 16658 + - uid: 17687 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-39.5 parent: 2 - - uid: 16661 + - uid: 17688 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-4.5 parent: 2 - - uid: 16662 + - uid: 17689 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-77.5 parent: 2 - - uid: 16670 + - uid: 17690 components: - type: Transform pos: 31.5,-1.5 parent: 2 - - uid: 16671 + - uid: 17691 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-65.5 parent: 2 - - uid: 16672 + - uid: 17692 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-26.5 parent: 2 - - uid: 16673 + - uid: 17693 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,1.5 parent: 2 - - uid: 16674 + - uid: 17694 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,1.5 parent: 2 - - uid: 16675 + - uid: 17695 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-65.5 parent: 2 - - uid: 16676 + - uid: 17696 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-4.5 parent: 2 - - uid: 16677 + - uid: 17697 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,10.5 parent: 2 - - uid: 16678 + - uid: 17698 components: - type: Transform pos: 34.5,1.5 parent: 2 - - uid: 16679 + - uid: 17699 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,12.5 parent: 2 - - uid: 16680 + - uid: 17700 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-26.5 parent: 2 - - uid: 16681 + - uid: 17701 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-65.5 parent: 2 - - uid: 16682 + - uid: 17702 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-67.5 parent: 2 - - uid: 16683 + - uid: 17703 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-3.5 parent: 2 - - uid: 16684 + - uid: 17704 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-65.5 parent: 2 - - uid: 16685 + - uid: 17705 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-65.5 parent: 2 - - uid: 16686 + - uid: 17706 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-66.5 parent: 2 - - uid: 16690 + - uid: 17707 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-65.5 parent: 2 - - uid: 16692 + - uid: 17708 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-38.5 parent: 2 - - uid: 16693 + - uid: 17709 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-38.5 parent: 2 - - uid: 16694 + - uid: 17710 components: - type: Transform pos: -22.5,-24.5 parent: 2 - - uid: 16695 + - uid: 17711 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-37.5 parent: 2 - - uid: 16696 + - uid: 17712 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-36.5 parent: 2 - - uid: 16697 + - uid: 17713 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-35.5 parent: 2 - - uid: 16698 + - uid: 17714 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-34.5 parent: 2 - - uid: 16706 + - uid: 17715 components: - type: Transform pos: -22.5,-23.5 parent: 2 - - uid: 16707 + - uid: 17716 components: - type: Transform pos: -22.5,-22.5 parent: 2 - - uid: 16708 + - uid: 17717 components: - type: Transform pos: -22.5,-21.5 parent: 2 - - uid: 16709 + - uid: 17718 components: - type: Transform pos: -22.5,-20.5 parent: 2 - - uid: 16710 + - uid: 17719 components: - type: Transform pos: -22.5,-19.5 parent: 2 - - uid: 16711 + - uid: 17720 components: - type: Transform pos: -22.5,-18.5 parent: 2 - - uid: 16712 + - uid: 17721 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-17.5 parent: 2 - - uid: 16713 + - uid: 17722 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-17.5 parent: 2 - - uid: 16718 + - uid: 17723 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-11.5 parent: 2 - - uid: 16719 + - uid: 17724 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-10.5 parent: 2 - - uid: 16720 + - uid: 17725 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-9.5 parent: 2 - - uid: 16721 + - uid: 17726 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-8.5 parent: 2 - - uid: 16722 + - uid: 17727 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-7.5 parent: 2 - - uid: 16724 + - uid: 17728 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-3.5 parent: 2 - - uid: 16725 + - uid: 17729 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-6.5 parent: 2 - - uid: 16726 + - uid: 17730 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-6.5 parent: 2 - - uid: 16727 + - uid: 17731 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-6.5 parent: 2 - - uid: 16728 + - uid: 17732 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-6.5 parent: 2 - - uid: 16729 + - uid: 17733 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-6.5 parent: 2 - - uid: 16730 + - uid: 17734 components: - type: Transform pos: -13.5,-5.5 parent: 2 - - uid: 16731 + - uid: 17735 components: - type: Transform pos: -13.5,-4.5 parent: 2 - - uid: 16732 + - uid: 17736 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-3.5 parent: 2 - - uid: 16749 + - uid: 17737 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-10.5 parent: 2 - - uid: 16756 + - uid: 17738 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-4.5 parent: 2 - - uid: 16757 + - uid: 17739 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-4.5 parent: 2 - - uid: 16758 + - uid: 17740 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-4.5 parent: 2 - - uid: 16759 + - uid: 17741 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-4.5 parent: 2 - - uid: 16760 + - uid: 17742 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-6.5 parent: 2 - - uid: 16764 + - uid: 17743 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-10.5 parent: 2 - - uid: 16765 + - uid: 17744 components: - type: Transform pos: 22.5,-11.5 parent: 2 - - uid: 16766 + - uid: 17745 components: - type: Transform pos: 22.5,-12.5 parent: 2 - - uid: 16767 + - uid: 17746 components: - type: Transform pos: 22.5,-13.5 parent: 2 - - uid: 16768 + - uid: 17747 components: - type: Transform pos: 22.5,-14.5 parent: 2 - - uid: 16769 + - uid: 17748 components: - type: Transform pos: 22.5,-15.5 parent: 2 - - uid: 16770 + - uid: 17749 components: - type: Transform pos: 22.5,-16.5 parent: 2 - - uid: 16771 + - uid: 17750 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-17.5 parent: 2 - - uid: 16772 + - uid: 17751 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-18.5 parent: 2 - - uid: 16773 + - uid: 17752 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-19.5 parent: 2 - - uid: 16774 + - uid: 17753 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-20.5 parent: 2 - - uid: 16775 + - uid: 17754 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-21.5 parent: 2 - - uid: 16776 + - uid: 17755 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-22.5 parent: 2 - - uid: 16777 + - uid: 17756 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-23.5 parent: 2 - - uid: 16778 + - uid: 17757 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-24.5 parent: 2 - - uid: 16779 + - uid: 17758 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-25.5 parent: 2 - - uid: 16780 + - uid: 17759 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-26.5 parent: 2 - - uid: 16781 + - uid: 17760 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-27.5 parent: 2 - - uid: 16783 + - uid: 17761 components: - type: Transform pos: -25.5,-45.5 parent: 2 - - uid: 16786 + - uid: 17762 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-33.5 parent: 2 - - uid: 16787 + - uid: 17763 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-32.5 parent: 2 - - uid: 16788 + - uid: 17764 components: - type: Transform pos: -25.5,-46.5 parent: 2 - - uid: 16789 + - uid: 17765 components: - type: Transform pos: -25.5,-47.5 parent: 2 - - uid: 16790 + - uid: 17766 components: - type: Transform pos: -25.5,-48.5 parent: 2 - - uid: 16791 + - uid: 17767 components: - type: Transform pos: -25.5,-49.5 parent: 2 - - uid: 16792 + - uid: 17768 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-50.5 parent: 2 - - uid: 16793 + - uid: 17769 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-50.5 parent: 2 - - uid: 16794 + - uid: 17770 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-51.5 parent: 2 - - uid: 16795 + - uid: 17771 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-52.5 parent: 2 - - uid: 16796 + - uid: 17772 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-53.5 parent: 2 - - uid: 16797 + - uid: 17773 components: - type: Transform pos: -23.5,-55.5 parent: 2 - - uid: 16798 + - uid: 17774 components: - type: Transform pos: -23.5,-56.5 parent: 2 - - uid: 16799 + - uid: 17775 components: - type: Transform pos: -23.5,-57.5 parent: 2 - - uid: 16800 + - uid: 17776 components: - type: Transform pos: -23.5,-58.5 parent: 2 - - uid: 16801 + - uid: 17777 components: - type: Transform pos: -23.5,-59.5 parent: 2 - - uid: 16802 + - uid: 17778 components: - type: Transform pos: -23.5,-60.5 parent: 2 - - uid: 16803 + - uid: 17779 components: - type: Transform pos: -23.5,-61.5 parent: 2 - - uid: 16804 + - uid: 17780 components: - type: Transform pos: -23.5,-62.5 parent: 2 - - uid: 16805 + - uid: 17781 components: - type: Transform pos: -23.5,-63.5 parent: 2 - - uid: 16806 + - uid: 17782 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-64.5 parent: 2 - - uid: 16807 + - uid: 17783 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-64.5 parent: 2 - - uid: 16808 + - uid: 17784 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-64.5 parent: 2 - - uid: 16809 + - uid: 17785 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-64.5 parent: 2 - - uid: 16810 + - uid: 17786 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-64.5 parent: 2 - - uid: 16811 + - uid: 17787 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-64.5 parent: 2 - - uid: 16812 + - uid: 17788 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-64.5 parent: 2 - - uid: 16813 + - uid: 17789 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-64.5 parent: 2 - - uid: 16814 + - uid: 17790 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-64.5 parent: 2 - - uid: 16815 + - uid: 17791 components: - type: Transform pos: -13.5,-65.5 parent: 2 - - uid: 16816 + - uid: 17792 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-66.5 parent: 2 - - uid: 16817 + - uid: 17793 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-66.5 parent: 2 - - uid: 16818 + - uid: 17794 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-66.5 parent: 2 - - uid: 16819 + - uid: 17795 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-66.5 parent: 2 - - uid: 16820 + - uid: 17796 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-31.5 parent: 2 - - uid: 16821 + - uid: 17797 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-30.5 parent: 2 - - uid: 16822 + - uid: 17798 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-29.5 parent: 2 - - uid: 16859 + - uid: 17799 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-26.5 parent: 2 - - uid: 16860 + - uid: 17800 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-27.5 parent: 2 - - uid: 16862 + - uid: 17801 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-41.5 parent: 2 - - uid: 16863 + - uid: 17802 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-43.5 parent: 2 - - uid: 16876 + - uid: 17803 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-39.5 parent: 2 - - uid: 16877 + - uid: 17804 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-29.5 parent: 2 - - uid: 16878 + - uid: 17805 components: - type: Transform pos: 1.5,-85.5 parent: 2 - - uid: 16879 + - uid: 17806 components: - type: Transform pos: 1.5,-84.5 parent: 2 - - uid: 16880 + - uid: 17807 components: - type: Transform pos: 1.5,-83.5 parent: 2 - - uid: 16881 + - uid: 17808 components: - type: Transform pos: 1.5,-82.5 parent: 2 - - uid: 16882 + - uid: 17809 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-81.5 parent: 2 - - uid: 16883 + - uid: 17810 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-80.5 parent: 2 - - uid: 16884 + - uid: 17811 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-79.5 parent: 2 - - uid: 16885 + - uid: 17812 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-65.5 parent: 2 - - uid: 16904 + - uid: 17813 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-26.5 parent: 2 - - uid: 16905 + - uid: 17814 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-26.5 parent: 2 - - uid: 16906 + - uid: 17815 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-26.5 parent: 2 - - uid: 16907 + - uid: 17816 components: - type: Transform pos: -29.5,-116.5 parent: 2 - - uid: 16908 + - uid: 17817 components: - type: Transform pos: -29.5,-115.5 parent: 2 - - uid: 16910 + - uid: 17818 components: - type: Transform pos: -29.5,-113.5 parent: 2 - - uid: 16913 + - uid: 17819 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-97.5 parent: 2 - - uid: 16914 + - uid: 17820 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-97.5 parent: 2 - - uid: 16915 + - uid: 17821 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-97.5 parent: 2 - - uid: 16916 + - uid: 17822 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-97.5 parent: 2 - - uid: 16917 + - uid: 17823 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-97.5 parent: 2 - - uid: 16918 + - uid: 17824 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-97.5 parent: 2 - - uid: 16919 + - uid: 17825 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-97.5 parent: 2 - - uid: 16920 + - uid: 17826 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-97.5 parent: 2 - - uid: 16921 + - uid: 17827 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-97.5 parent: 2 - - uid: 16922 + - uid: 17828 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-97.5 parent: 2 - - uid: 16923 + - uid: 17829 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-82.5 parent: 2 - - uid: 16924 + - uid: 17830 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-83.5 parent: 2 - - uid: 16925 + - uid: 17831 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-84.5 parent: 2 - - uid: 16926 + - uid: 17832 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-85.5 parent: 2 - - uid: 16927 + - uid: 17833 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-86.5 parent: 2 - - uid: 16928 + - uid: 17834 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-87.5 parent: 2 - - uid: 16929 + - uid: 17835 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-88.5 parent: 2 - - uid: 16930 + - uid: 17836 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-89.5 parent: 2 - - uid: 16931 + - uid: 17837 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-90.5 parent: 2 - - uid: 16932 + - uid: 17838 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-41.5 parent: 2 - - uid: 16933 + - uid: 17839 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-40.5 parent: 2 - - uid: 16934 + - uid: 17840 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-39.5 parent: 2 - - uid: 16935 + - uid: 17841 components: - type: Transform pos: -45.5,-14.5 parent: 2 - - uid: 16936 + - uid: 17842 components: - type: Transform pos: -59.5,-38.5 parent: 2 - - uid: 16937 + - uid: 17843 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,4.5 parent: 2 - - uid: 16938 + - uid: 17844 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,4.5 parent: 2 - - uid: 16939 + - uid: 17845 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,4.5 parent: 2 - - uid: 16940 + - uid: 17846 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,4.5 parent: 2 - - uid: 16941 + - uid: 17847 components: - type: Transform pos: 6.5,3.5 parent: 2 - - uid: 16942 + - uid: 17848 components: - type: Transform pos: 6.5,2.5 parent: 2 - - uid: 16943 + - uid: 17849 components: - type: Transform pos: 6.5,1.5 parent: 2 - - uid: 16944 + - uid: 17850 components: - type: Transform pos: 6.5,0.5 parent: 2 - - uid: 16945 + - uid: 17851 components: - type: Transform pos: 6.5,-0.5 parent: 2 - - uid: 16946 + - uid: 17852 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-55.5 parent: 2 - - uid: 16947 + - uid: 17853 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-53.5 parent: 2 - - uid: 16948 + - uid: 17854 components: - type: Transform pos: -9.5,-75.5 parent: 2 - - uid: 16949 + - uid: 17855 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-2.5 parent: 2 - - uid: 16950 + - uid: 17856 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-2.5 parent: 2 - - uid: 16951 + - uid: 17857 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-2.5 parent: 2 - - uid: 16952 + - uid: 17858 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-4.5 parent: 2 - - uid: 16953 + - uid: 17859 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-3.5 parent: 2 - - uid: 16954 + - uid: 17860 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,14.5 parent: 2 - - uid: 16955 + - uid: 17861 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,13.5 parent: 2 - - uid: 16956 + - uid: 17862 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,14.5 parent: 2 - - uid: 16957 + - uid: 17863 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,14.5 parent: 2 - - uid: 16958 + - uid: 17864 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,18.5 parent: 2 - - uid: 16959 + - uid: 17865 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,19.5 parent: 2 - - uid: 16960 + - uid: 17866 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,20.5 parent: 2 - - uid: 16961 + - uid: 17867 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,21.5 parent: 2 - - uid: 16962 + - uid: 17868 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,22.5 parent: 2 - - uid: 16963 + - uid: 17869 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,23.5 parent: 2 - - uid: 16964 + - uid: 17870 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,24.5 parent: 2 - - uid: 16965 + - uid: 17871 components: - type: Transform pos: 41.5,25.5 parent: 2 - - uid: 16966 + - uid: 17872 components: - type: Transform pos: 41.5,26.5 parent: 2 - - uid: 16967 + - uid: 17873 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,27.5 parent: 2 - - uid: 16969 + - uid: 17874 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,28.5 parent: 2 - - uid: 16970 + - uid: 17875 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,29.5 parent: 2 - - uid: 16971 + - uid: 17876 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,30.5 parent: 2 - - uid: 16972 + - uid: 17877 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-85.5 parent: 2 - - uid: 16973 + - uid: 17878 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-85.5 parent: 2 - - uid: 16974 + - uid: 17879 components: - type: Transform pos: -44.5,-86.5 parent: 2 - - uid: 16975 + - uid: 17880 components: - type: Transform pos: -44.5,-88.5 parent: 2 - - uid: 16976 + - uid: 17881 components: - type: Transform pos: -44.5,-87.5 parent: 2 - - uid: 16977 + - uid: 17882 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-71.5 parent: 2 - - uid: 16978 + - uid: 17883 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-5.5 parent: 2 - - uid: 16979 + - uid: 17884 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-5.5 parent: 2 - - uid: 16980 + - uid: 17885 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-5.5 parent: 2 - - uid: 16981 + - uid: 17886 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-5.5 parent: 2 - - uid: 16982 + - uid: 17887 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-5.5 parent: 2 - - uid: 16983 + - uid: 17888 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-5.5 parent: 2 - - uid: 16984 + - uid: 17889 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-5.5 parent: 2 - - uid: 16985 + - uid: 17890 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-5.5 parent: 2 - - uid: 16986 + - uid: 17891 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-5.5 parent: 2 - - uid: 16987 + - uid: 17892 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-5.5 parent: 2 - - uid: 16988 + - uid: 17893 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-5.5 parent: 2 - - uid: 17000 + - uid: 17894 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-47.5 parent: 2 - - uid: 17001 + - uid: 17895 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-47.5 parent: 2 - - uid: 17002 + - uid: 17896 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-47.5 parent: 2 - - uid: 17003 + - uid: 17897 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-47.5 parent: 2 - - uid: 17004 + - uid: 17898 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-47.5 parent: 2 - - uid: 17005 + - uid: 17899 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-47.5 parent: 2 - - uid: 17006 + - uid: 17900 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-47.5 parent: 2 - - uid: 17007 + - uid: 17901 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-47.5 parent: 2 - - uid: 17008 + - uid: 17902 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-47.5 parent: 2 - - uid: 17009 + - uid: 17903 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-47.5 parent: 2 - - uid: 17010 + - uid: 17904 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-47.5 parent: 2 - - uid: 17011 + - uid: 17905 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-47.5 parent: 2 - - uid: 17012 + - uid: 17906 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-47.5 parent: 2 - - uid: 17013 + - uid: 17907 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-47.5 parent: 2 - - uid: 17014 + - uid: 17908 components: - type: Transform pos: 33.5,-46.5 parent: 2 - - uid: 17015 + - uid: 17909 components: - type: Transform pos: 33.5,-45.5 parent: 2 - - uid: 17016 + - uid: 17910 components: - type: Transform pos: 33.5,-44.5 parent: 2 - - uid: 17017 + - uid: 17911 components: - type: Transform pos: 33.5,-43.5 parent: 2 - - uid: 17018 + - uid: 17912 components: - type: Transform pos: 33.5,-42.5 parent: 2 - - uid: 17019 + - uid: 17913 components: - type: Transform pos: 33.5,-41.5 parent: 2 - - uid: 17020 + - uid: 17914 components: - type: Transform pos: 33.5,-40.5 parent: 2 - - uid: 17021 + - uid: 17915 components: - type: Transform pos: 33.5,-39.5 parent: 2 - - uid: 17022 + - uid: 17916 components: - type: Transform pos: 33.5,-38.5 parent: 2 - - uid: 17023 + - uid: 17917 components: - type: Transform pos: 33.5,-37.5 parent: 2 - - uid: 17024 + - uid: 17918 components: - type: Transform pos: 33.5,-36.5 parent: 2 - - uid: 17025 + - uid: 17919 components: - type: Transform pos: 33.5,-35.5 parent: 2 - - uid: 17026 + - uid: 17920 components: - type: Transform pos: 33.5,-34.5 parent: 2 - - uid: 17027 + - uid: 17921 components: - type: Transform pos: 33.5,-33.5 parent: 2 - - uid: 17028 + - uid: 17922 components: - type: Transform pos: 33.5,-32.5 parent: 2 - - uid: 17029 + - uid: 17923 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-31.5 parent: 2 - - uid: 17030 + - uid: 17924 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-31.5 parent: 2 - - uid: 17031 + - uid: 17925 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-30.5 parent: 2 - - uid: 17032 + - uid: 17926 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-29.5 parent: 2 - - uid: 17033 + - uid: 17927 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-28.5 parent: 2 - - uid: 17034 + - uid: 17928 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-27.5 parent: 2 - - uid: 17035 + - uid: 17929 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-26.5 parent: 2 - - uid: 17036 + - uid: 17930 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-25.5 parent: 2 - - uid: 17037 + - uid: 17931 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-24.5 parent: 2 - - uid: 17038 + - uid: 17932 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-23.5 parent: 2 - - uid: 17039 + - uid: 17933 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-22.5 parent: 2 - - uid: 17040 + - uid: 17934 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-21.5 parent: 2 - - uid: 17041 + - uid: 17935 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-20.5 parent: 2 - - uid: 17042 + - uid: 17936 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-19.5 parent: 2 - - uid: 17043 + - uid: 17937 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-18.5 parent: 2 - - uid: 17044 + - uid: 17938 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-17.5 parent: 2 - - uid: 17045 + - uid: 17939 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-16.5 parent: 2 - - uid: 17046 + - uid: 17940 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-15.5 parent: 2 - - uid: 17047 + - uid: 17941 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-14.5 parent: 2 - - uid: 17048 + - uid: 17942 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-13.5 parent: 2 - - uid: 17049 + - uid: 17943 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-12.5 parent: 2 - - uid: 17050 + - uid: 17944 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-11.5 parent: 2 - - uid: 17051 + - uid: 17945 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-10.5 parent: 2 - - uid: 17052 + - uid: 17946 components: - type: Transform pos: 33.5,-48.5 parent: 2 - - uid: 17053 + - uid: 17947 components: - type: Transform pos: 33.5,-49.5 parent: 2 - - uid: 17054 + - uid: 17948 components: - type: Transform pos: 33.5,-50.5 parent: 2 - - uid: 17055 + - uid: 17949 components: - type: Transform pos: 33.5,-51.5 parent: 2 - - uid: 17056 + - uid: 17950 components: - type: Transform pos: 33.5,-52.5 parent: 2 - - uid: 17057 + - uid: 17951 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-53.5 parent: 2 - - uid: 17058 + - uid: 17952 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-53.5 parent: 2 - - uid: 17059 + - uid: 17953 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-53.5 parent: 2 - - uid: 17060 + - uid: 17954 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-53.5 parent: 2 - - uid: 17061 + - uid: 17955 components: - type: Transform pos: 28.5,-54.5 parent: 2 - - uid: 17062 + - uid: 17956 components: - type: Transform pos: 28.5,-55.5 parent: 2 - - uid: 17063 + - uid: 17957 components: - type: Transform pos: 28.5,-56.5 parent: 2 - - uid: 17064 + - uid: 17958 components: - type: Transform pos: 28.5,-57.5 parent: 2 - - uid: 17065 + - uid: 17959 components: - type: Transform pos: 28.5,-58.5 parent: 2 - - uid: 17066 + - uid: 17960 components: - type: Transform pos: 28.5,-59.5 parent: 2 - - uid: 17067 + - uid: 17961 components: - type: Transform pos: 28.5,-60.5 parent: 2 - - uid: 17068 + - uid: 17962 components: - type: Transform pos: 28.5,-61.5 parent: 2 - - uid: 17069 + - uid: 17963 components: - type: Transform pos: 28.5,-62.5 parent: 2 - - uid: 17070 + - uid: 17964 components: - type: Transform pos: 28.5,-63.5 parent: 2 - - uid: 17071 + - uid: 17965 components: - type: Transform pos: 28.5,-64.5 parent: 2 - - uid: 17072 + - uid: 17966 components: - type: Transform pos: 28.5,-65.5 parent: 2 - - uid: 17073 + - uid: 17967 components: - type: Transform pos: 28.5,-66.5 parent: 2 - - uid: 17074 + - uid: 17968 components: - type: Transform pos: 28.5,-67.5 parent: 2 - - uid: 17075 + - uid: 17969 components: - type: Transform pos: 28.5,-68.5 parent: 2 - - uid: 17076 + - uid: 17970 components: - type: Transform pos: 28.5,-69.5 parent: 2 - - uid: 17077 + - uid: 17971 components: - type: Transform pos: 28.5,-70.5 parent: 2 - - uid: 17078 + - uid: 17972 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-71.5 parent: 2 - - uid: 17079 + - uid: 17973 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-71.5 parent: 2 - - uid: 17080 + - uid: 17974 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-71.5 parent: 2 - - uid: 17081 + - uid: 17975 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-71.5 parent: 2 - - uid: 17082 + - uid: 17976 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-71.5 parent: 2 - - uid: 17083 + - uid: 17977 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-71.5 parent: 2 - - uid: 17084 + - uid: 17978 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-71.5 parent: 2 - - uid: 17085 + - uid: 17979 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-71.5 parent: 2 - - uid: 17086 + - uid: 17980 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-71.5 parent: 2 - - uid: 17087 + - uid: 17981 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-71.5 parent: 2 - - uid: 17088 + - uid: 17982 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-71.5 parent: 2 - - uid: 17089 + - uid: 17983 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-71.5 parent: 2 - - uid: 17090 + - uid: 17984 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-71.5 parent: 2 - - uid: 17091 + - uid: 17985 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-71.5 parent: 2 - - uid: 17092 + - uid: 17986 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-71.5 parent: 2 - - uid: 17093 + - uid: 17987 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-71.5 parent: 2 - - uid: 17094 + - uid: 17988 components: - type: Transform pos: -29.5,-68.5 parent: 2 - - uid: 17095 + - uid: 17989 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-72.5 parent: 2 - - uid: 17096 + - uid: 17990 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-73.5 parent: 2 - - uid: 17097 + - uid: 17991 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-74.5 parent: 2 - - uid: 17098 + - uid: 17992 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-74.5 parent: 2 - - uid: 17099 + - uid: 17993 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-74.5 parent: 2 - - uid: 17100 + - uid: 17994 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-74.5 parent: 2 - - uid: 17101 + - uid: 17995 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-74.5 parent: 2 - - uid: 17102 + - uid: 17996 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-74.5 parent: 2 - - uid: 17103 + - uid: 17997 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-74.5 parent: 2 - - uid: 17104 + - uid: 17998 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-74.5 parent: 2 - - uid: 17105 + - uid: 17999 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-74.5 parent: 2 - - uid: 17106 + - uid: 18000 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-74.5 parent: 2 - - uid: 17107 + - uid: 18001 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-74.5 parent: 2 - - uid: 17108 + - uid: 18002 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-74.5 parent: 2 - - uid: 17109 + - uid: 18003 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-74.5 parent: 2 - - uid: 17110 + - uid: 18004 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-74.5 parent: 2 - - uid: 17111 + - uid: 18005 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-74.5 parent: 2 - - uid: 17112 + - uid: 18006 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-74.5 parent: 2 - - uid: 17113 + - uid: 18007 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-74.5 parent: 2 - - uid: 17114 + - uid: 18008 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-74.5 parent: 2 - - uid: 17115 + - uid: 18009 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-74.5 parent: 2 - - uid: 17116 + - uid: 18010 components: - type: Transform pos: -9.5,-76.5 parent: 2 - - uid: 17117 + - uid: 18011 components: - type: Transform pos: -9.5,-77.5 parent: 2 - - uid: 17118 + - uid: 18012 components: - type: Transform pos: -9.5,-78.5 parent: 2 - - uid: 17119 + - uid: 18013 components: - type: Transform pos: -9.5,-79.5 parent: 2 - - uid: 17120 + - uid: 18014 components: - type: Transform pos: -9.5,-80.5 parent: 2 - - uid: 17121 + - uid: 18015 components: - type: Transform pos: -10.5,-72.5 parent: 2 - - uid: 17122 + - uid: 18016 components: - type: Transform pos: -10.5,-73.5 parent: 2 - - uid: 17123 + - uid: 18017 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-71.5 parent: 2 - - uid: 17124 + - uid: 18018 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-71.5 parent: 2 - - uid: 17125 + - uid: 18019 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-71.5 parent: 2 - - uid: 17126 + - uid: 18020 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-71.5 parent: 2 - - uid: 17127 + - uid: 18021 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-71.5 parent: 2 - - uid: 17128 + - uid: 18022 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-71.5 parent: 2 - - uid: 17129 + - uid: 18023 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-71.5 parent: 2 - - uid: 17130 + - uid: 18024 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-71.5 parent: 2 - - uid: 17131 + - uid: 18025 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-71.5 parent: 2 - - uid: 17132 + - uid: 18026 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-71.5 parent: 2 - - uid: 17133 + - uid: 18027 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-71.5 parent: 2 - - uid: 17134 + - uid: 18028 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-71.5 parent: 2 - - uid: 17135 + - uid: 18029 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-71.5 parent: 2 - - uid: 17136 + - uid: 18030 components: - type: Transform pos: -24.5,-72.5 parent: 2 - - uid: 17137 + - uid: 18031 components: - type: Transform pos: -24.5,-73.5 parent: 2 - - uid: 17138 + - uid: 18032 components: - type: Transform pos: -24.5,-74.5 parent: 2 - - uid: 17139 + - uid: 18033 components: - type: Transform pos: -24.5,-75.5 parent: 2 - - uid: 17140 + - uid: 18034 components: - type: Transform pos: -24.5,-76.5 parent: 2 - - uid: 17141 + - uid: 18035 components: - type: Transform pos: -24.5,-77.5 parent: 2 - - uid: 17142 + - uid: 18036 components: - type: Transform pos: -24.5,-78.5 parent: 2 - - uid: 17143 + - uid: 18037 components: - type: Transform pos: -24.5,-79.5 parent: 2 - - uid: 17144 + - uid: 18038 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-80.5 parent: 2 - - uid: 17145 + - uid: 18039 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-80.5 parent: 2 - - uid: 17146 + - uid: 18040 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-80.5 parent: 2 - - uid: 17147 + - uid: 18041 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-80.5 parent: 2 - - uid: 17148 + - uid: 18042 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-80.5 parent: 2 - - uid: 17149 + - uid: 18043 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-80.5 parent: 2 - - uid: 17150 + - uid: 18044 components: - type: Transform pos: -31.5,-81.5 parent: 2 - - uid: 17151 + - uid: 18045 components: - type: Transform pos: -31.5,-82.5 parent: 2 - - uid: 17152 + - uid: 18046 components: - type: Transform pos: -31.5,-83.5 parent: 2 - - uid: 17153 + - uid: 18047 components: - type: Transform pos: -31.5,-84.5 parent: 2 - - uid: 17154 + - uid: 18048 components: - type: Transform pos: -31.5,-85.5 parent: 2 - - uid: 17155 + - uid: 18049 components: - type: Transform pos: -31.5,-86.5 parent: 2 - - uid: 17156 + - uid: 18050 components: - type: Transform pos: -31.5,-87.5 parent: 2 - - uid: 17157 + - uid: 18051 components: - type: Transform pos: -31.5,-88.5 parent: 2 - - uid: 17158 + - uid: 18052 components: - type: Transform pos: -31.5,-89.5 parent: 2 - - uid: 17159 + - uid: 18053 components: - type: Transform pos: -31.5,-90.5 parent: 2 - - uid: 17160 + - uid: 18054 components: - type: Transform pos: -31.5,-91.5 parent: 2 - - uid: 17161 + - uid: 18055 components: - type: Transform pos: -31.5,-92.5 parent: 2 - - uid: 17162 + - uid: 18056 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-93.5 parent: 2 - - uid: 17163 + - uid: 18057 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-93.5 parent: 2 - - uid: 17164 + - uid: 18058 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-93.5 parent: 2 - - uid: 17165 + - uid: 18059 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-93.5 parent: 2 - - uid: 17166 + - uid: 18060 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-93.5 parent: 2 - - uid: 17167 + - uid: 18061 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-93.5 parent: 2 - - uid: 17168 + - uid: 18062 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-93.5 parent: 2 - - uid: 17169 + - uid: 18063 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-94.5 parent: 2 - - uid: 17170 + - uid: 18064 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-94.5 parent: 2 - - uid: 17171 + - uid: 18065 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-94.5 parent: 2 - - uid: 17172 + - uid: 18066 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-94.5 parent: 2 - - uid: 17173 + - uid: 18067 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-94.5 parent: 2 - - uid: 17174 + - uid: 18068 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-94.5 parent: 2 - - uid: 17175 + - uid: 18069 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-94.5 parent: 2 - - uid: 17176 + - uid: 18070 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-94.5 parent: 2 - - uid: 17177 + - uid: 18071 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-94.5 parent: 2 - - uid: 17178 + - uid: 18072 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-94.5 parent: 2 - - uid: 17179 + - uid: 18073 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-94.5 parent: 2 - - uid: 17180 + - uid: 18074 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-94.5 parent: 2 - - uid: 17181 + - uid: 18075 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-89.5 parent: 2 - - uid: 17182 + - uid: 18076 components: - type: Transform pos: -52.5,-93.5 parent: 2 - - uid: 17183 + - uid: 18077 components: - type: Transform pos: -53.5,-91.5 parent: 2 - - uid: 17184 + - uid: 18078 components: - type: Transform pos: -53.5,-90.5 parent: 2 - - uid: 17185 + - uid: 18079 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-70.5 parent: 2 - - uid: 17186 + - uid: 18080 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-69.5 parent: 2 - - uid: 17187 + - uid: 18081 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-69.5 parent: 2 - - uid: 17188 + - uid: 18082 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-69.5 parent: 2 - - uid: 17189 + - uid: 18083 components: - type: Transform pos: -29.5,-67.5 parent: 2 - - uid: 17190 + - uid: 18084 components: - type: Transform pos: -29.5,-66.5 parent: 2 - - uid: 17191 + - uid: 18085 components: - type: Transform pos: -29.5,-65.5 parent: 2 - - uid: 17192 + - uid: 18086 components: - type: Transform pos: -29.5,-64.5 parent: 2 - - uid: 17193 + - uid: 18087 components: - type: Transform pos: -29.5,-63.5 parent: 2 - - uid: 17194 + - uid: 18088 components: - type: Transform pos: -29.5,-62.5 parent: 2 - - uid: 17195 + - uid: 18089 components: - type: Transform pos: -29.5,-61.5 parent: 2 - - uid: 17196 + - uid: 18090 components: - type: Transform pos: -29.5,-60.5 parent: 2 - - uid: 17197 + - uid: 18091 components: - type: Transform pos: -29.5,-59.5 parent: 2 - - uid: 17198 + - uid: 18092 components: - type: Transform pos: -29.5,-58.5 parent: 2 - - uid: 17199 + - uid: 18093 components: - type: Transform pos: -29.5,-57.5 parent: 2 - - uid: 17200 + - uid: 18094 components: - type: Transform pos: -29.5,-56.5 parent: 2 - - uid: 17201 + - uid: 18095 components: - type: Transform pos: -29.5,-55.5 parent: 2 - - uid: 17202 + - uid: 18096 components: - type: Transform pos: -29.5,-54.5 parent: 2 - - uid: 17203 + - uid: 18097 components: - type: Transform pos: -31.5,-43.5 parent: 2 - - uid: 17204 + - uid: 18098 components: - type: Transform pos: -31.5,-42.5 parent: 2 - - uid: 17205 + - uid: 18099 components: - type: Transform pos: -31.5,-41.5 parent: 2 - - uid: 17206 + - uid: 18100 components: - type: Transform pos: -31.5,-40.5 parent: 2 - - uid: 17207 + - uid: 18101 components: - type: Transform pos: -31.5,-39.5 parent: 2 - - uid: 17208 + - uid: 18102 components: - type: Transform pos: -31.5,-38.5 parent: 2 - - uid: 17209 + - uid: 18103 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-37.5 parent: 2 - - uid: 17210 + - uid: 18104 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-37.5 parent: 2 - - uid: 17211 + - uid: 18105 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-37.5 parent: 2 - - uid: 17212 + - uid: 18106 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-37.5 parent: 2 - - uid: 17213 + - uid: 18107 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-37.5 parent: 2 - - uid: 17214 + - uid: 18108 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-37.5 parent: 2 - - uid: 17215 + - uid: 18109 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-37.5 parent: 2 - - uid: 17216 + - uid: 18110 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-37.5 parent: 2 - - uid: 17217 + - uid: 18111 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-36.5 parent: 2 - - uid: 17218 + - uid: 18112 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-35.5 parent: 2 - - uid: 17219 + - uid: 18113 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-34.5 parent: 2 - - uid: 17220 + - uid: 18114 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-33.5 parent: 2 - - uid: 17221 + - uid: 18115 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-32.5 parent: 2 - - uid: 17222 + - uid: 18116 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-31.5 parent: 2 - - uid: 17223 + - uid: 18117 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-30.5 parent: 2 - - uid: 17224 + - uid: 18118 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-29.5 parent: 2 - - uid: 17225 + - uid: 18119 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-28.5 parent: 2 - - uid: 17226 + - uid: 18120 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-27.5 parent: 2 - - uid: 17227 + - uid: 18121 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-26.5 parent: 2 - - uid: 17228 + - uid: 18122 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-25.5 parent: 2 - - uid: 17229 + - uid: 18123 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-45.5 parent: 2 - - uid: 17230 + - uid: 18124 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-44.5 parent: 2 - - uid: 17231 + - uid: 18125 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-44.5 parent: 2 - - uid: 17232 + - uid: 18126 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-44.5 parent: 2 - - uid: 17233 + - uid: 18127 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-44.5 parent: 2 - - uid: 17234 + - uid: 18128 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-44.5 parent: 2 - - uid: 17235 + - uid: 18129 components: - type: Transform pos: -31.5,-45.5 parent: 2 - - uid: 17236 + - uid: 18130 components: - type: Transform pos: -31.5,-46.5 parent: 2 - - uid: 17237 + - uid: 18131 components: - type: Transform pos: -31.5,-47.5 parent: 2 - - uid: 17238 + - uid: 18132 components: - type: Transform pos: -31.5,-48.5 parent: 2 - - uid: 17239 + - uid: 18133 components: - type: Transform pos: -31.5,-49.5 parent: 2 - - uid: 17240 + - uid: 18134 components: - type: Transform pos: -31.5,-50.5 parent: 2 - - uid: 17241 + - uid: 18135 components: - type: Transform pos: -31.5,-51.5 parent: 2 - - uid: 17242 + - uid: 18136 components: - type: Transform pos: -31.5,-52.5 parent: 2 - - uid: 17243 + - uid: 18137 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-53.5 parent: 2 - - uid: 17244 + - uid: 18138 components: - type: Transform pos: -31.5,-36.5 parent: 2 - - uid: 17245 + - uid: 18139 components: - type: Transform pos: -31.5,-35.5 parent: 2 - - uid: 17246 + - uid: 18140 components: - type: Transform pos: -31.5,-34.5 parent: 2 - - uid: 17247 + - uid: 18141 components: - type: Transform pos: -31.5,-33.5 parent: 2 - - uid: 17248 + - uid: 18142 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-32.5 parent: 2 - - uid: 17249 + - uid: 18143 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-32.5 parent: 2 - - uid: 17250 + - uid: 18144 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-31.5 parent: 2 - - uid: 17251 + - uid: 18145 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-30.5 parent: 2 - - uid: 17252 + - uid: 18146 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-29.5 parent: 2 - - uid: 17253 + - uid: 18147 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-28.5 parent: 2 - - uid: 17254 + - uid: 18148 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-27.5 parent: 2 - - uid: 17255 + - uid: 18149 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-26.5 parent: 2 - - uid: 17256 + - uid: 18150 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-25.5 parent: 2 - - uid: 17257 + - uid: 18151 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-24.5 parent: 2 - - uid: 17258 + - uid: 18152 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-23.5 parent: 2 - - uid: 17259 + - uid: 18153 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-22.5 parent: 2 - - uid: 17260 + - uid: 18154 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-21.5 parent: 2 - - uid: 17261 + - uid: 18155 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-20.5 parent: 2 - - uid: 17262 + - uid: 18156 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-19.5 parent: 2 - - uid: 17263 + - uid: 18157 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-18.5 parent: 2 - - uid: 17264 + - uid: 18158 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-17.5 parent: 2 - - uid: 17265 + - uid: 18159 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-16.5 parent: 2 - - uid: 17266 + - uid: 18160 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-15.5 parent: 2 - - uid: 17267 + - uid: 18161 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-14.5 parent: 2 - - uid: 17268 + - uid: 18162 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-13.5 parent: 2 - - uid: 17269 + - uid: 18163 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-12.5 parent: 2 - - uid: 17270 + - uid: 18164 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-11.5 parent: 2 - - uid: 17271 + - uid: 18165 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-10.5 parent: 2 - - uid: 17272 + - uid: 18166 components: - type: Transform pos: -28.5,-9.5 parent: 2 - - uid: 17273 + - uid: 18167 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-8.5 parent: 2 - - uid: 17274 + - uid: 18168 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-8.5 parent: 2 - - uid: 17275 + - uid: 18169 components: - type: Transform pos: -25.5,-7.5 parent: 2 - - uid: 17276 + - uid: 18170 components: - type: Transform pos: -25.5,-6.5 parent: 2 - - uid: 17277 + - uid: 18171 components: - type: Transform pos: -25.5,-5.5 parent: 2 - - uid: 17278 + - uid: 18172 components: - type: Transform pos: -25.5,-4.5 parent: 2 - - uid: 17279 + - uid: 18173 components: - type: Transform pos: -25.5,-3.5 parent: 2 - - uid: 17280 + - uid: 18174 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-2.5 parent: 2 - - uid: 17281 + - uid: 18175 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-2.5 parent: 2 - - uid: 17282 + - uid: 18176 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-2.5 parent: 2 - - uid: 17283 + - uid: 18177 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-2.5 parent: 2 - - uid: 17284 + - uid: 18178 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-2.5 parent: 2 - - uid: 17285 + - uid: 18179 components: - type: Transform pos: -19.5,0.5 parent: 2 - - uid: 17286 + - uid: 18180 components: - type: Transform pos: -19.5,-0.5 parent: 2 - - uid: 17287 + - uid: 18181 components: - type: Transform pos: -19.5,-1.5 parent: 2 - - uid: 17288 + - uid: 18182 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,1.5 parent: 2 - - uid: 17289 + - uid: 18183 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,1.5 parent: 2 - - uid: 17290 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,1.5 - parent: 2 - - uid: 17291 + - uid: 18184 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,1.5 parent: 2 - - uid: 17292 + - uid: 18185 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,1.5 parent: 2 - - uid: 17293 + - uid: 18186 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,1.5 parent: 2 - - uid: 17294 + - uid: 18187 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,1.5 parent: 2 - - uid: 17295 + - uid: 18188 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,1.5 parent: 2 - - uid: 17296 + - uid: 18189 components: - type: Transform pos: -10.5,2.5 parent: 2 - - uid: 17297 + - uid: 18190 components: - type: Transform pos: -10.5,3.5 parent: 2 - - uid: 17298 + - uid: 18191 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,4.5 parent: 2 - - uid: 17299 + - uid: 18192 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,4.5 parent: 2 - - uid: 17300 + - uid: 18193 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,4.5 parent: 2 - - uid: 17301 + - uid: 18194 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,4.5 parent: 2 - - uid: 17302 + - uid: 18195 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,4.5 parent: 2 - - uid: 17303 + - uid: 18196 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 2 - - uid: 17304 + - uid: 18197 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,4.5 parent: 2 - - uid: 17305 + - uid: 18198 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 2 - - uid: 17306 + - uid: 18199 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,7.5 parent: 2 - - uid: 17307 + - uid: 18200 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,8.5 parent: 2 - - uid: 17308 + - uid: 18201 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,9.5 parent: 2 - - uid: 17309 + - uid: 18202 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,10.5 parent: 2 - - uid: 17310 + - uid: 18203 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,3.5 parent: 2 - - uid: 17311 + - uid: 18204 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,2.5 parent: 2 - - uid: 17312 + - uid: 18205 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,2.5 parent: 2 - - uid: 17313 + - uid: 18206 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,2.5 parent: 2 - - uid: 17314 + - uid: 18207 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,2.5 parent: 2 - - uid: 17315 + - uid: 18208 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,3.5 parent: 2 - - uid: 17316 + - uid: 18209 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 2 - - uid: 17317 + - uid: 18210 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,3.5 parent: 2 - - uid: 17318 + - uid: 18211 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,3.5 parent: 2 - - uid: 17319 + - uid: 18212 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,3.5 parent: 2 - - uid: 17320 + - uid: 18213 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,3.5 parent: 2 - - uid: 17321 + - uid: 18214 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,3.5 parent: 2 - - uid: 17322 + - uid: 18215 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,3.5 parent: 2 - - uid: 17323 + - uid: 18216 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,3.5 parent: 2 - - uid: 17324 + - uid: 18217 components: - type: Transform pos: 13.5,2.5 parent: 2 - - uid: 17325 + - uid: 18218 components: - type: Transform pos: 13.5,1.5 parent: 2 - - uid: 17326 + - uid: 18219 components: - type: Transform pos: 13.5,0.5 parent: 2 - - uid: 17327 + - uid: 18220 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-0.5 parent: 2 - - uid: 17328 + - uid: 18221 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-0.5 parent: 2 - - uid: 17329 + - uid: 18222 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-0.5 parent: 2 - - uid: 17330 + - uid: 18223 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-0.5 parent: 2 - - uid: 17331 + - uid: 18224 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-0.5 parent: 2 - - uid: 17332 + - uid: 18225 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 - - uid: 17333 + - uid: 18226 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-0.5 parent: 2 - - uid: 17334 + - uid: 18227 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-0.5 parent: 2 - - uid: 17335 + - uid: 18228 components: - type: Transform pos: 22.5,-2.5 parent: 2 - - uid: 17336 + - uid: 18229 components: - type: Transform pos: 22.5,-1.5 parent: 2 - - uid: 17337 + - uid: 18230 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-4.5 parent: 2 - - uid: 17338 + - uid: 18231 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-4.5 parent: 2 - - uid: 17339 + - uid: 18232 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-4.5 parent: 2 - - uid: 17340 + - uid: 18233 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-4.5 parent: 2 - - uid: 17341 + - uid: 18234 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-6.5 parent: 2 - - uid: 17342 + - uid: 18235 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-7.5 parent: 2 - - uid: 17343 + - uid: 18236 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-8.5 parent: 2 - - uid: 17344 + - uid: 18237 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-9.5 parent: 2 - - uid: 17379 + - uid: 18238 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-76.5 parent: 2 - - uid: 19440 + - uid: 18239 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-1.5 parent: 2 - - uid: 19925 + - uid: 18240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,1.5 + parent: 2 + - uid: 18241 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-77.5 parent: 2 - - uid: 31587 + - uid: 18242 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-15.5 parent: 2 - - uid: 31588 + - uid: 18243 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-16.5 parent: 2 - - uid: 31589 + - uid: 18244 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-17.5 parent: 2 - - uid: 31590 + - uid: 18245 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-18.5 parent: 2 - - uid: 33200 + - uid: 18246 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-19.5 parent: 2 - - uid: 33220 + - uid: 18247 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-20.5 parent: 2 - - uid: 33826 + - uid: 18248 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-45.5 parent: 2 - - uid: 33863 + - uid: 18249 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-28.5 parent: 2 - - uid: 38205 + - uid: 18250 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 37887 - - uid: 38206 + rot: 1.5707963267948966 rad + pos: 1.5,-50.5 + parent: 2 + - uid: 18251 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 37887 - - uid: 38207 + pos: 0.5,-49.5 + parent: 2 + - uid: 18252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-12.5 - parent: 37887 - - uid: 38208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-11.5 - parent: 37887 - - uid: 38209 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-10.5 - parent: 37887 - - uid: 38210 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-9.5 - parent: 37887 - - uid: 38211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-8.5 - parent: 37887 - - uid: 38212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-7.5 - parent: 37887 - - uid: 38213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-6.5 - parent: 37887 - - uid: 38214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-5.5 - parent: 37887 - - uid: 39132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-50.5 - parent: 2 - - uid: 39133 - components: - - type: Transform - pos: 0.5,-49.5 - parent: 2 - - uid: 39134 - components: - - type: Transform - pos: 0.5,-48.5 - parent: 2 - - uid: 39135 + pos: 0.5,-48.5 + parent: 2 + - uid: 18253 components: - type: Transform pos: 0.5,-47.5 parent: 2 - - uid: 39136 + - uid: 18254 components: - type: Transform pos: 0.5,-46.5 parent: 2 - - uid: 39137 + - uid: 18255 components: - type: Transform pos: 0.5,-45.5 parent: 2 - - uid: 39138 + - uid: 18256 components: - type: Transform pos: 0.5,-44.5 parent: 2 - - uid: 39139 + - uid: 18257 components: - type: Transform pos: 0.5,-43.5 parent: 2 - - uid: 39140 + - uid: 18258 components: - type: Transform pos: -0.5,-41.5 parent: 2 - - uid: 39141 + - uid: 18259 components: - type: Transform pos: -0.5,-40.5 parent: 2 - - uid: 39142 + - uid: 18260 components: - type: Transform pos: -0.5,-39.5 parent: 2 - - uid: 39143 + - uid: 18261 components: - type: Transform pos: -0.5,-38.5 parent: 2 - - uid: 39144 + - uid: 18262 components: - type: Transform pos: -0.5,-37.5 parent: 2 - - uid: 39145 + - uid: 18263 components: - type: Transform pos: -0.5,-36.5 parent: 2 - - uid: 39146 + - uid: 18264 components: - type: Transform pos: -0.5,-35.5 parent: 2 - - uid: 39147 + - uid: 18265 components: - type: Transform pos: -0.5,-34.5 parent: 2 - - uid: 39148 + - uid: 18266 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-33.5 parent: 2 - - uid: 39149 + - uid: 18267 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-33.5 parent: 2 - - uid: 39150 + - uid: 18268 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-33.5 parent: 2 - - uid: 39151 + - uid: 18269 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-33.5 parent: 2 - - uid: 39152 + - uid: 18270 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-33.5 parent: 2 - - uid: 39153 + - uid: 18271 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-33.5 parent: 2 - - uid: 39154 + - uid: 18272 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-32.5 parent: 2 - - uid: 39155 + - uid: 18273 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-31.5 parent: 2 - - uid: 39156 + - uid: 18274 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-30.5 parent: 2 - - uid: 39576 + - uid: 18275 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-67.5 parent: 2 - - uid: 39741 + - uid: 18276 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-40.5 parent: 2 - - uid: 39742 + - uid: 18277 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-67.5 parent: 2 - - uid: 39743 + - uid: 18278 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-67.5 parent: 2 - - uid: 39744 + - uid: 18279 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-67.5 parent: 2 - - uid: 39745 + - uid: 18280 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-67.5 parent: 2 - - uid: 39746 + - uid: 18281 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-67.5 parent: 2 - - uid: 39747 + - uid: 18282 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-67.5 parent: 2 - - uid: 39748 + - uid: 18283 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-67.5 parent: 2 - - uid: 39749 + - uid: 18284 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-67.5 parent: 2 - - uid: 39750 + - uid: 18285 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-67.5 parent: 2 - - uid: 39751 + - uid: 18286 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-67.5 parent: 2 - - uid: 39752 + - uid: 18287 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-67.5 parent: 2 - - uid: 39753 + - uid: 18288 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-67.5 parent: 2 - - uid: 39754 + - uid: 18289 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-67.5 parent: 2 - - uid: 39755 + - uid: 18290 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-67.5 parent: 2 - - uid: 39756 + - uid: 18291 components: - type: Transform pos: 11.5,-66.5 parent: 2 - - uid: 39757 + - uid: 18292 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-65.5 parent: 2 - - uid: 39758 + - uid: 18293 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,-65.5 parent: 2 - - uid: 39759 + - uid: 18294 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-65.5 parent: 2 - - uid: 39760 + - uid: 18295 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-65.5 parent: 2 - - uid: 39761 + - uid: 18296 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-65.5 parent: 2 - - uid: 39762 + - uid: 18297 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-65.5 parent: 2 - - uid: 39763 + - uid: 18298 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-65.5 parent: 2 - - uid: 39764 + - uid: 18299 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-65.5 parent: 2 - - uid: 39765 + - uid: 18300 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-65.5 parent: 2 - - uid: 39766 + - uid: 18301 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-65.5 parent: 2 - - uid: 39767 + - uid: 18302 components: - type: Transform pos: 24.5,-59.5 parent: 2 - - uid: 39768 + - uid: 18303 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-64.5 parent: 2 - - uid: 39769 + - uid: 18304 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-63.5 parent: 2 - - uid: 39770 + - uid: 18305 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-62.5 parent: 2 - - uid: 39771 + - uid: 18306 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-61.5 parent: 2 - - uid: 39772 + - uid: 18307 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-60.5 parent: 2 - - uid: 39773 + - uid: 18308 components: - type: Transform pos: 24.5,-58.5 parent: 2 - - uid: 39774 + - uid: 18309 components: - type: Transform pos: 24.5,-57.5 parent: 2 - - uid: 39775 + - uid: 18310 components: - type: Transform pos: 24.5,-56.5 parent: 2 - - uid: 39776 + - uid: 18311 components: - type: Transform pos: 24.5,-55.5 parent: 2 - - uid: 39777 + - uid: 18312 components: - type: Transform pos: 24.5,-54.5 parent: 2 - - uid: 39778 + - uid: 18313 components: - type: Transform pos: 24.5,-53.5 parent: 2 - - uid: 39779 + - uid: 18314 components: - type: Transform pos: 24.5,-52.5 parent: 2 - - uid: 39780 + - uid: 18315 components: - type: Transform pos: 24.5,-51.5 parent: 2 - - uid: 39781 + - uid: 18316 components: - type: Transform pos: 24.5,-50.5 parent: 2 - - uid: 39782 + - uid: 18317 components: - type: Transform pos: 24.5,-49.5 parent: 2 - - uid: 39783 + - uid: 18318 components: - type: Transform pos: 24.5,-48.5 parent: 2 - - uid: 39784 + - uid: 18319 components: - type: Transform pos: 24.5,-47.5 parent: 2 - - uid: 39785 + - uid: 18320 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-28.5 parent: 2 - - uid: 39786 + - uid: 18321 components: - type: Transform pos: 23.5,-45.5 parent: 2 - - uid: 39787 + - uid: 18322 components: - type: Transform pos: 23.5,-44.5 parent: 2 - - uid: 39788 + - uid: 18323 components: - type: Transform pos: 23.5,-43.5 parent: 2 - - uid: 39789 + - uid: 18324 components: - type: Transform pos: 23.5,-42.5 parent: 2 - - uid: 39790 + - uid: 18325 components: - type: Transform pos: 23.5,-41.5 parent: 2 - - uid: 39791 + - uid: 18326 components: - type: Transform pos: 23.5,-40.5 parent: 2 - - uid: 39792 + - uid: 18327 components: - type: Transform pos: 23.5,-39.5 parent: 2 - - uid: 39793 + - uid: 18328 components: - type: Transform pos: 23.5,-38.5 parent: 2 - - uid: 39794 + - uid: 18329 components: - type: Transform pos: 23.5,-37.5 parent: 2 - - uid: 39795 + - uid: 18330 components: - type: Transform pos: 23.5,-36.5 parent: 2 - - uid: 39796 + - uid: 18331 components: - type: Transform pos: 23.5,-34.5 parent: 2 - - uid: 39797 + - uid: 18332 components: - type: Transform pos: 23.5,-35.5 parent: 2 - - uid: 40220 + - uid: 18333 components: - type: Transform pos: 72.5,-12.5 parent: 2 - - uid: 40223 + - uid: 18334 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-11.5 parent: 2 - - uid: 40224 + - uid: 18335 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-11.5 parent: 2 - - uid: 40225 + - uid: 18336 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-11.5 parent: 2 - - uid: 40226 + - uid: 18337 components: - type: Transform rot: -1.5707963267948966 rad pos: 76.5,-11.5 parent: 2 - - uid: 40228 + - uid: 18338 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-2.5 parent: 2 - - uid: 40231 + - uid: 18339 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-10.5 parent: 2 - - uid: 40232 + - uid: 18340 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-8.5 parent: 2 - - uid: 40233 + - uid: 18341 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-7.5 parent: 2 - - uid: 40234 + - uid: 18342 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-6.5 parent: 2 - - uid: 40235 + - uid: 18343 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-5.5 parent: 2 - - uid: 40236 + - uid: 18344 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-9.5 parent: 2 - - uid: 40237 + - uid: 18345 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-4.5 parent: 2 - - uid: 40238 + - uid: 18346 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-3.5 parent: 2 - - uid: 40239 + - uid: 18347 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-2.5 parent: 2 - - uid: 40240 + - uid: 18348 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-2.5 parent: 2 - - uid: 40241 + - uid: 18349 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-2.5 parent: 2 - - uid: 40242 + - uid: 18350 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,-2.5 parent: 2 - - uid: 40243 + - uid: 18351 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-2.5 parent: 2 - - uid: 40244 + - uid: 18352 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-2.5 parent: 2 - - uid: 40245 + - uid: 18353 components: - type: Transform pos: 69.5,-3.5 parent: 2 - - uid: 40246 + - uid: 18354 components: - type: Transform pos: 69.5,-4.5 parent: 2 - - uid: 40247 + - uid: 18355 components: - type: Transform pos: 69.5,-5.5 parent: 2 - - uid: 40248 + - uid: 18356 components: - type: Transform pos: 69.5,-6.5 parent: 2 - - uid: 40256 + - uid: 18357 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-7.5 parent: 2 - - uid: 40257 + - uid: 18358 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-7.5 parent: 2 - - uid: 40258 + - uid: 18359 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-7.5 parent: 2 - - uid: 40260 + - uid: 18360 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-8.5 parent: 2 - - uid: 40261 + - uid: 18361 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-8.5 parent: 2 - - uid: 40264 + - uid: 18362 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-21.5 parent: 2 - - uid: 40265 + - uid: 18363 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-8.5 parent: 2 - - uid: 40266 + - uid: 18364 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-8.5 parent: 2 - - uid: 40267 + - uid: 18365 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-22.5 parent: 2 - - uid: 40280 + - uid: 18366 components: - type: Transform pos: 57.5,5.5 parent: 2 - - uid: 40281 + - uid: 18367 components: - type: Transform pos: 57.5,0.5 parent: 2 - - uid: 40282 + - uid: 18368 components: - type: Transform pos: 57.5,-0.5 parent: 2 - - uid: 40283 + - uid: 18369 components: - type: Transform pos: 57.5,-1.5 parent: 2 - - uid: 40284 + - uid: 18370 components: - type: Transform pos: 57.5,-2.5 parent: 2 - - uid: 40285 + - uid: 18371 components: - type: Transform pos: 57.5,-3.5 parent: 2 - - uid: 40286 + - uid: 18372 components: - type: Transform pos: 57.5,-5.5 parent: 2 - - uid: 40287 + - uid: 18373 components: - type: Transform pos: 57.5,-6.5 parent: 2 - - uid: 40288 + - uid: 18374 components: - type: Transform pos: 57.5,-7.5 parent: 2 - - uid: 40289 + - uid: 18375 components: - type: Transform pos: 57.5,-4.5 parent: 2 - - uid: 40332 + - uid: 18376 components: - type: Transform pos: 54.5,3.5 parent: 2 - - uid: 40333 + - uid: 18377 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,4.5 parent: 2 - - uid: 40334 + - uid: 18378 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,4.5 parent: 2 - - uid: 40356 + - uid: 18379 components: - type: Transform pos: 57.5,-11.5 parent: 2 - - uid: 40357 + - uid: 18380 components: - type: Transform pos: 57.5,-12.5 parent: 2 - - uid: 40358 + - uid: 18381 components: - type: Transform pos: 57.5,-13.5 parent: 2 - - uid: 40359 + - uid: 18382 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-14.5 parent: 2 - - uid: 40360 + - uid: 18383 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-14.5 parent: 2 - - uid: 40361 + - uid: 18384 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-14.5 parent: 2 - - uid: 40362 + - uid: 18385 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-14.5 parent: 2 - - uid: 40363 + - uid: 18386 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-14.5 parent: 2 - - uid: 40364 + - uid: 18387 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-14.5 parent: 2 - - uid: 40365 + - uid: 18388 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-24.5 parent: 2 - - uid: 40366 + - uid: 18389 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-14.5 parent: 2 - - uid: 40367 + - uid: 18390 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-14.5 parent: 2 - - uid: 40368 + - uid: 18391 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-14.5 parent: 2 - - uid: 40369 + - uid: 18392 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-14.5 parent: 2 - - uid: 40371 + - uid: 18393 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-13.5 parent: 2 - - uid: 40372 + - uid: 18394 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-15.5 parent: 2 - - uid: 40373 + - uid: 18395 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-16.5 parent: 2 - - uid: 40374 + - uid: 18396 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-17.5 parent: 2 - - uid: 40375 + - uid: 18397 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-18.5 parent: 2 - - uid: 40376 + - uid: 18398 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-19.5 parent: 2 - - uid: 40377 + - uid: 18399 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-20.5 parent: 2 - - uid: 40378 + - uid: 18400 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-21.5 parent: 2 - - uid: 40379 + - uid: 18401 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-22.5 parent: 2 - - uid: 40381 + - uid: 18402 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-24.5 parent: 2 - - uid: 40383 + - uid: 18403 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-25.5 parent: 2 - - uid: 40392 + - uid: 18404 components: - type: Transform pos: 44.5,-5.5 parent: 2 - - uid: 40393 + - uid: 18405 components: - type: Transform pos: 44.5,-7.5 parent: 2 - - uid: 40394 + - uid: 18406 components: - type: Transform pos: 44.5,-8.5 parent: 2 - - uid: 40395 + - uid: 18407 components: - type: Transform pos: 44.5,-6.5 parent: 2 - - uid: 40397 + - uid: 18408 components: - type: Transform pos: 44.5,-11.5 parent: 2 - - uid: 40398 + - uid: 18409 components: - type: Transform pos: 44.5,-12.5 parent: 2 - - uid: 40399 + - uid: 18410 components: - type: Transform pos: 44.5,-10.5 parent: 2 - - uid: 40400 + - uid: 18411 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-4.5 parent: 2 - - uid: 40403 + - uid: 18412 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-13.5 parent: 2 - - uid: 40404 + - uid: 18413 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-13.5 parent: 2 - - uid: 40405 + - uid: 18414 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-13.5 parent: 2 - - uid: 40406 + - uid: 18415 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-13.5 parent: 2 - - uid: 40408 + - uid: 18416 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-12.5 parent: 2 - - uid: 40411 + - uid: 18417 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-5.5 parent: 2 - - uid: 40412 + - uid: 18418 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-5.5 parent: 2 - - uid: 40413 + - uid: 18419 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-5.5 parent: 2 - - uid: 40414 + - uid: 18420 components: - type: Transform pos: 43.5,-6.5 parent: 2 - - uid: 40415 + - uid: 18421 components: - type: Transform pos: 43.5,-7.5 parent: 2 - - uid: 40416 + - uid: 18422 components: - type: Transform pos: 43.5,-8.5 parent: 2 - - uid: 40417 + - uid: 18423 components: - type: Transform pos: 43.5,-9.5 parent: 2 - - uid: 40418 + - uid: 18424 components: - type: Transform pos: 43.5,-10.5 parent: 2 - - uid: 40419 + - uid: 18425 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-11.5 parent: 2 - - uid: 40483 + - uid: 18426 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,-8.5 parent: 2 - - uid: 40484 + - uid: 18427 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-8.5 parent: 2 - - uid: 40713 + - uid: 18428 components: - type: Transform pos: 47.5,9.5 parent: 2 - - uid: 40714 + - uid: 18429 components: - type: Transform pos: 47.5,8.5 parent: 2 - - uid: 40715 + - uid: 18430 components: - type: Transform pos: 47.5,7.5 parent: 2 - - uid: 40716 + - uid: 18431 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,6.5 parent: 2 - - uid: 40717 + - uid: 18432 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,6.5 parent: 2 - - uid: 40718 + - uid: 18433 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,5.5 parent: 2 - - uid: 40719 + - uid: 18434 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,4.5 parent: 2 - - uid: 40720 + - uid: 18435 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,3.5 parent: 2 - - uid: 40721 + - uid: 18436 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,2.5 parent: 2 - - uid: 40722 + - uid: 18437 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,1.5 parent: 2 - - uid: 40723 + - uid: 18438 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,0.5 parent: 2 - - uid: 40724 + - uid: 18439 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-0.5 parent: 2 - - uid: 40725 + - uid: 18440 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-1.5 parent: 2 - - uid: 40726 + - uid: 18441 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-2.5 parent: 2 - - uid: 40727 + - uid: 18442 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-3.5 parent: 2 - - uid: 40736 + - uid: 18443 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-23.5 parent: 2 - - uid: 40737 + - uid: 18444 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-23.5 parent: 2 - - uid: 40738 + - uid: 18445 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-23.5 parent: 2 - - uid: 40744 + - uid: 18446 components: - type: Transform pos: 63.5,-6.5 parent: 2 - - uid: 40745 + - uid: 18447 components: - type: Transform pos: 63.5,-7.5 parent: 2 - - uid: 40763 + - uid: 18448 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-9.5 parent: 2 - - uid: 40764 + - uid: 18449 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-9.5 parent: 2 - - uid: 40765 + - uid: 18450 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-8.5 parent: 2 + - uid: 18451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,10.5 + parent: 2 + - uid: 18452 + components: + - type: Transform + pos: -15.5,9.5 + parent: 2 + - uid: 18453 + components: + - type: Transform + pos: -15.5,8.5 + parent: 2 + - uid: 18454 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 18455 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 18456 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 18457 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 18458 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 18459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,0.5 + parent: 2 + - uid: 18460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 2 + - uid: 18461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,0.5 + parent: 2 + - uid: 18462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 2 + - uid: 18463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,1.5 + parent: 2 + - uid: 41151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 40828 + - uid: 41152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 40828 + - uid: 41153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 40828 + - uid: 41154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 40828 + - uid: 41155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 40828 + - uid: 41156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 40828 + - uid: 41157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 40828 + - uid: 41158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 40828 + - uid: 41159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 40828 + - uid: 41160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 40828 - proto: DisposalPipeBroken entities: - - uid: 39085 + - uid: 18464 components: - type: Transform pos: 2.5,-44.5 parent: 2 - proto: DisposalRouter entities: - - uid: 17356 + - uid: 18465 components: - type: Transform rot: 3.141592653589793 rad @@ -124071,7 +125272,7 @@ entities: - type: DisposalRouter tags: - security - - uid: 17357 + - uid: 18466 components: - type: Transform rot: 3.141592653589793 rad @@ -124080,7 +125281,7 @@ entities: - type: DisposalRouter tags: - engineers - - uid: 17358 + - uid: 18467 components: - type: Transform rot: 1.5707963267948966 rad @@ -124089,7 +125290,7 @@ entities: - type: DisposalRouter tags: - cargo - - uid: 17359 + - uid: 18468 components: - type: Transform rot: 1.5707963267948966 rad @@ -124098,7 +125299,7 @@ entities: - type: DisposalRouter tags: - santa - - uid: 17360 + - uid: 18469 components: - type: Transform pos: -31.5,-44.5 @@ -124106,7 +125307,7 @@ entities: - type: DisposalRouter tags: - RND - - uid: 17361 + - uid: 18470 components: - type: Transform pos: -31.5,-37.5 @@ -124114,7 +125315,7 @@ entities: - type: DisposalRouter tags: - med - - uid: 17362 + - uid: 18471 components: - type: Transform rot: -1.5707963267948966 rad @@ -124125,621 +125326,627 @@ entities: - personal - proto: DisposalTrunk entities: - - uid: 1612 + - uid: 18472 components: - type: Transform pos: -26.5,-39.5 parent: 2 - - uid: 2782 + - uid: 18473 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-10.5 parent: 2 - - uid: 5220 + - uid: 18474 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,9.5 parent: 2 - - uid: 5526 + - uid: 18475 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-1.5 parent: 2 - - uid: 5631 + - uid: 18476 components: - type: Transform pos: 59.5,11.5 parent: 2 - - uid: 5952 + - uid: 18477 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-28.5 parent: 2 - - uid: 5972 + - uid: 18478 components: - type: Transform pos: 25.5,-28.5 parent: 2 - - uid: 9066 + - uid: 18479 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-39.5 parent: 2 - - uid: 17363 + - uid: 18480 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-89.5 parent: 2 - - uid: 17365 + - uid: 18481 components: - type: Transform pos: -51.5,-72.5 parent: 2 - - uid: 17366 + - uid: 18482 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-75.5 parent: 2 - - uid: 17367 + - uid: 18483 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-75.5 parent: 2 - - uid: 17368 + - uid: 18484 components: - type: Transform pos: -47.5,-72.5 parent: 2 - - uid: 17369 + - uid: 18485 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-35.5 parent: 2 - - uid: 17370 + - uid: 18486 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-37.5 parent: 2 - - uid: 17371 + - uid: 18487 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-39.5 parent: 2 - - uid: 17372 + - uid: 18488 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-71.5 parent: 2 - - uid: 17375 + - uid: 18489 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 - - uid: 17378 + - uid: 18490 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-29.5 parent: 2 - - uid: 17380 + - uid: 18491 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-84.5 parent: 2 - - uid: 17381 + - uid: 18492 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-55.5 parent: 2 - - uid: 17382 + - uid: 18493 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-91.5 parent: 2 - - uid: 17383 + - uid: 18494 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-78.5 parent: 2 - - uid: 17384 + - uid: 18495 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-84.5 parent: 2 - - uid: 17385 + - uid: 18496 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-91.5 parent: 2 - - uid: 17386 + - uid: 18497 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-81.5 parent: 2 - - uid: 17387 + - uid: 18498 components: - type: Transform pos: -30.5,-75.5 parent: 2 - - uid: 17388 + - uid: 18499 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-74.5 parent: 2 - - uid: 17389 + - uid: 18500 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-59.5 parent: 2 - - uid: 17390 + - uid: 18501 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-49.5 parent: 2 - - uid: 17391 + - uid: 18502 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-48.5 parent: 2 - - uid: 17392 + - uid: 18503 components: - type: Transform pos: 54.5,-30.5 parent: 2 - - uid: 17393 + - uid: 18504 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-24.5 parent: 2 - - uid: 17394 + - uid: 18505 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,-29.5 parent: 2 - - uid: 17395 + - uid: 18506 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,-24.5 parent: 2 - - uid: 17396 + - uid: 18507 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,-39.5 parent: 2 - - uid: 17400 + - uid: 18508 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,17.5 parent: 2 - - uid: 17401 + - uid: 18509 components: - type: Transform pos: -3.5,26.5 parent: 2 - - uid: 17402 + - uid: 18510 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,9.5 parent: 2 - - uid: 17404 + - uid: 18511 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,9.5 parent: 2 - - uid: 17405 + - uid: 18512 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-98.5 parent: 2 - - uid: 17406 + - uid: 18513 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-25.5 parent: 2 - - uid: 17407 + - uid: 18514 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-45.5 parent: 2 - - uid: 17408 + - uid: 18515 components: - type: Transform pos: -76.5,-36.5 parent: 2 - - uid: 17409 + - uid: 18516 components: - type: Transform pos: -39.5,-1.5 parent: 2 - - uid: 17410 + - uid: 18517 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-36.5 parent: 2 - - uid: 17411 + - uid: 18518 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-7.5 parent: 2 - - uid: 17412 + - uid: 18519 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,0.5 parent: 2 - - uid: 17413 + - uid: 18520 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-45.5 parent: 2 - - uid: 17415 + - uid: 18521 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-74.5 parent: 2 - - uid: 17416 + - uid: 18522 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-55.5 parent: 2 - - uid: 17417 + - uid: 18523 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-27.5 parent: 2 - - uid: 17418 + - uid: 18524 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-7.5 parent: 2 - - uid: 17419 + - uid: 18525 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,13.5 parent: 2 - - uid: 17420 + - uid: 18526 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-0.5 parent: 2 - - uid: 17421 + - uid: 18527 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,3.5 parent: 2 - - uid: 17422 + - uid: 18528 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-0.5 parent: 2 - - uid: 17423 + - uid: 18529 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-9.5 parent: 2 - - uid: 17424 + - uid: 18530 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-28.5 parent: 2 - - uid: 17425 + - uid: 18531 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-58.5 parent: 2 - - uid: 17428 + - uid: 18532 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-79.5 parent: 2 - - uid: 17429 + - uid: 18533 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-79.5 parent: 2 - - uid: 17430 + - uid: 18534 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-79.5 parent: 2 - - uid: 17434 + - uid: 18535 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,14.5 parent: 2 - - uid: 17435 + - uid: 18536 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-29.5 parent: 2 - - uid: 17436 + - uid: 18537 components: - type: Transform pos: 31.5,14.5 parent: 2 - - uid: 17438 + - uid: 18538 components: - type: Transform pos: 38.5,-2.5 parent: 2 - - uid: 17439 + - uid: 18539 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-68.5 parent: 2 - - uid: 17440 + - uid: 18540 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,0.5 parent: 2 - - uid: 17443 + - uid: 18541 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-39.5 parent: 2 - - uid: 17444 + - uid: 18542 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,-42.5 parent: 2 - - uid: 17445 + - uid: 18543 components: - type: Transform pos: 3.5,-78.5 parent: 2 - - uid: 17446 + - uid: 18544 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-66.5 parent: 2 - - uid: 17448 + - uid: 18545 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-112.5 parent: 2 - - uid: 17450 + - uid: 18546 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-91.5 parent: 2 - - uid: 17451 + - uid: 18547 components: - type: Transform pos: -45.5,-13.5 parent: 2 - - uid: 17452 + - uid: 18548 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 2 - - uid: 17453 + - uid: 18549 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-62.5 parent: 2 - - uid: 17454 + - uid: 18550 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-5.5 parent: 2 - - uid: 17455 + - uid: 18551 components: - type: Transform pos: 19.5,15.5 parent: 2 - - uid: 17456 + - uid: 18552 components: - type: Transform pos: 44.5,31.5 parent: 2 - - uid: 17457 + - uid: 18553 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 - - uid: 17459 + - uid: 18554 components: - type: Transform pos: 48.5,-46.5 parent: 2 - - uid: 17460 + - uid: 18555 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-81.5 parent: 2 - - uid: 17461 + - uid: 18556 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-25.5 parent: 2 - - uid: 17462 + - uid: 18557 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-46.5 parent: 2 - - uid: 17463 + - uid: 18558 components: - type: Transform pos: -3.5,11.5 parent: 2 - - uid: 18296 + - uid: 18559 components: - type: Transform pos: 43.5,28.5 parent: 2 - - uid: 33825 + - uid: 18560 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-46.5 parent: 2 - - uid: 33862 + - uid: 18561 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-28.5 parent: 2 - - uid: 38215 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 37887 - - uid: 38216 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-15.5 - parent: 37887 - - uid: 39161 + - uid: 18562 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-50.5 parent: 2 - - uid: 39162 + - uid: 18563 components: - type: Transform pos: -7.5,-29.5 parent: 2 - - uid: 40218 + - uid: 18564 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-11.5 parent: 2 - - uid: 40219 + - uid: 18565 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-13.5 parent: 2 - - uid: 40326 + - uid: 18566 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,2.5 parent: 2 - - uid: 40370 + - uid: 18567 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-13.5 parent: 2 - - uid: 40709 + - uid: 18568 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-25.5 parent: 2 - - uid: 40710 + - uid: 18569 components: - type: Transform pos: 47.5,10.5 parent: 2 - - uid: 40733 + - uid: 18570 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-2.5 parent: 2 - - uid: 40735 + - uid: 18571 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-24.5 parent: 2 - - uid: 40742 + - uid: 18572 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-5.5 parent: 2 - - uid: 40766 + - uid: 18573 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-13.5 parent: 2 - - uid: 40767 + - uid: 18574 components: - type: Transform pos: 47.5,-7.5 parent: 2 + - uid: 18575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,9.5 + parent: 2 + - uid: 41161 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 40828 + - uid: 41162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 40828 - proto: DisposalUnit entities: - - uid: 993 + - uid: 18576 components: - type: Transform pos: 59.5,11.5 parent: 2 - - uid: 1656 + - uid: 18577 components: - type: MetaData desc: Теперь и лифт для сверхбыстрого перемещения. Вау. @@ -124747,12 +125954,12 @@ entities: - type: Transform pos: 24.5,-28.5 parent: 2 - - uid: 5416 + - uid: 18578 components: - type: Transform pos: 42.5,-13.5 parent: 2 - - uid: 6200 + - uid: 18579 components: - type: MetaData desc: Теперь и лифт для сверхбыстрого перемещения. Вау. @@ -124760,7 +125967,7 @@ entities: - type: Transform pos: 25.5,-28.5 parent: 2 - - uid: 7147 + - uid: 18580 components: - type: MetaData desc: Теперь и лифт для сверхбыстрого перемещения. Вау. @@ -124768,7 +125975,7 @@ entities: - type: Transform pos: -7.5,-29.5 parent: 2 - - uid: 9028 + - uid: 18581 components: - type: MetaData desc: Теперь и лифт для сверхбыстрого перемещения. Вау. @@ -124776,379 +125983,375 @@ entities: - type: Transform pos: 5.5,-50.5 parent: 2 - - uid: 9358 + - uid: 18582 components: - type: Transform pos: 54.5,9.5 parent: 2 - - uid: 9657 + - uid: 18583 components: - type: Transform pos: 58.5,1.5 parent: 2 - - uid: 15466 + - uid: 18584 components: - type: Transform pos: 40.5,-1.5 parent: 2 - - uid: 17465 + - uid: 18585 components: - type: Transform pos: 34.5,14.5 parent: 2 - - uid: 17466 + - uid: 18586 components: - type: Transform pos: -51.5,-75.5 parent: 2 - - uid: 17467 + - uid: 18587 components: - type: Transform pos: -47.5,-72.5 parent: 2 - - uid: 17468 + - uid: 18588 components: - type: Transform pos: -51.5,-72.5 parent: 2 - - uid: 17469 + - uid: 18589 components: - type: Transform pos: -47.5,-75.5 parent: 2 - - uid: 17470 + - uid: 18590 components: - type: Transform pos: 46.5,-71.5 parent: 2 - - uid: 17471 + - uid: 18591 components: - type: Transform pos: -45.5,-74.5 parent: 2 - - uid: 17472 + - uid: 18592 components: - type: Transform pos: -8.5,-0.5 parent: 2 - - uid: 17474 + - uid: 18593 components: - type: Transform pos: 50.5,-84.5 parent: 2 - - uid: 17475 + - uid: 18594 components: - type: Transform pos: -68.5,-36.5 parent: 2 - - uid: 17476 + - uid: 18595 components: - type: Transform pos: -11.5,9.5 parent: 2 - - uid: 17478 + - uid: 18596 components: - type: Transform pos: 10.5,9.5 parent: 2 - - uid: 17479 + - uid: 18597 components: - type: Transform pos: 7.5,17.5 parent: 2 - - uid: 17480 + - uid: 18598 components: - type: Transform pos: -3.5,26.5 parent: 2 - - uid: 17483 + - uid: 18599 components: - type: Transform pos: -19.5,3.5 parent: 2 - - uid: 17484 + - uid: 18600 components: - type: Transform pos: -32.5,13.5 parent: 2 - - uid: 17485 + - uid: 18601 components: - type: Transform pos: -28.5,-0.5 parent: 2 - - uid: 17486 + - uid: 18602 components: - type: Transform pos: -39.5,-1.5 parent: 2 - - uid: 17487 + - uid: 18603 components: - type: Transform pos: -38.5,-7.5 parent: 2 - - uid: 17488 + - uid: 18604 components: - type: Transform pos: -51.5,0.5 parent: 2 - - uid: 17489 + - uid: 18605 components: - type: Transform pos: 54.5,-30.5 parent: 2 - - uid: 17490 + - uid: 18606 components: - type: Transform pos: 79.5,-29.5 parent: 2 - - uid: 17491 + - uid: 18607 components: - type: Transform pos: 70.5,-24.5 parent: 2 - - uid: 17492 + - uid: 18608 components: - type: Transform pos: 3.5,-78.5 parent: 2 - - uid: 17493 + - uid: 18609 components: - type: Transform pos: -2.5,-91.5 parent: 2 - - uid: 17494 + - uid: 18610 components: - type: Transform pos: 9.5,-78.5 parent: 2 - - uid: 17495 + - uid: 18611 components: - type: Transform pos: -9.5,-85.5 parent: 2 - - uid: 17496 + - uid: 18612 components: - type: Transform pos: -4.5,-84.5 parent: 2 - - uid: 17499 + - uid: 18613 components: - type: Transform pos: -21.5,-81.5 parent: 2 - - uid: 17500 + - uid: 18614 components: - type: Transform pos: -35.5,-98.5 parent: 2 - - uid: 17501 + - uid: 18615 components: - type: Transform pos: -76.5,-36.5 parent: 2 - - uid: 17502 + - uid: 18616 components: - type: Transform pos: -65.5,-45.5 parent: 2 - - uid: 17505 + - uid: 18617 components: - type: Transform pos: 85.5,-24.5 parent: 2 - - uid: 17506 + - uid: 18618 components: - type: Transform pos: 89.5,-42.5 parent: 2 - - uid: 17507 + - uid: 18619 components: - type: Transform pos: -30.5,-75.5 parent: 2 - - uid: 17508 + - uid: 18620 components: - type: Transform pos: 51.5,-48.5 parent: 2 - - uid: 17509 + - uid: 18621 components: - type: Transform pos: -54.5,-25.5 parent: 2 - - uid: 17510 + - uid: 18622 components: - type: Transform pos: -52.5,-45.5 parent: 2 - - uid: 17511 + - uid: 18623 components: - type: Transform pos: -34.5,-49.5 parent: 2 - - uid: 17512 + - uid: 18624 components: - type: Transform pos: -35.5,-59.5 parent: 2 - - uid: 17513 + - uid: 18625 components: - type: Transform pos: 31.5,-27.5 parent: 2 - - uid: 17514 + - uid: 18626 components: - type: Transform pos: 79.5,-39.5 parent: 2 - - uid: 17515 + - uid: 18627 components: - type: Transform pos: 53.5,-55.5 parent: 2 - - uid: 17516 + - uid: 18628 components: - type: Transform pos: -9.5,-91.5 parent: 2 - - uid: 17517 + - uid: 18629 components: - type: Transform pos: -41.5,11.5 parent: 2 - - uid: 17518 + - uid: 18630 components: - type: Transform pos: -54.5,-29.5 parent: 2 - - uid: 17519 + - uid: 18631 components: - type: Transform pos: 18.5,-74.5 parent: 2 - - uid: 17520 + - uid: 18632 components: - type: Transform pos: 32.5,-55.5 parent: 2 - - uid: 17521 + - uid: 18633 components: - type: Transform pos: 29.5,-7.5 parent: 2 - - uid: 17522 + - uid: 18634 components: - type: Transform pos: -26.5,-9.5 parent: 2 - - uid: 17523 + - uid: 18635 components: - type: Transform pos: -30.5,-28.5 parent: 2 - - uid: 17524 + - uid: 18636 components: - type: Transform pos: -30.5,-58.5 parent: 2 - - uid: 17525 + - uid: 18637 components: - type: Transform pos: -45.5,-13.5 parent: 2 - - uid: 17527 + - uid: 18638 components: - type: Transform pos: 31.5,14.5 parent: 2 - - uid: 17530 + - uid: 18639 components: - type: Transform pos: 29.5,-2.5 parent: 2 - - uid: 17531 + - uid: 18640 components: - type: Transform pos: -44.5,-39.5 parent: 2 - - uid: 17533 + - uid: 18641 components: - type: Transform pos: -61.5,-68.5 parent: 2 - - uid: 17534 + - uid: 18642 components: - type: Transform pos: 25.5,0.5 parent: 2 - - uid: 17535 + - uid: 18643 components: - type: Transform pos: 38.5,-2.5 parent: 2 - - uid: 17536 + - uid: 18644 components: - type: Transform pos: -53.5,-66.5 parent: 2 - - uid: 17537 + - uid: 18645 components: - type: Transform pos: 43.5,28.5 parent: 2 - - type: ContainerContainer - containers: - disposals: !type:Container - showEnts: False - occludes: True - ents: - - 17538 - - uid: 17541 + - type: DisposalUnit + recentlyEjected: + - 31498 + - uid: 18646 components: - type: Transform pos: -62.5,-46.5 parent: 2 - - uid: 17542 + - uid: 18647 components: - type: Transform pos: -22.5,-91.5 parent: 2 - - uid: 17543 + - uid: 18648 components: - type: Transform pos: 6.5,-1.5 parent: 2 - - uid: 17544 + - uid: 18649 components: - type: Transform pos: -38.5,-28.5 parent: 2 - - uid: 17545 + - uid: 18650 components: - type: Transform pos: -50.5,-62.5 parent: 2 - - uid: 22573 + - uid: 18651 components: - type: Transform pos: 37.5,-25.5 parent: 2 - - uid: 24906 + - uid: 18652 components: - type: Transform pos: 56.5,-10.5 parent: 2 - - uid: 26241 + - uid: 18653 components: - type: Transform pos: -4.5,-21.5 parent: 2 - - uid: 26243 + - uid: 18654 components: - type: Transform pos: -5.5,-30.5 parent: 2 - - uid: 27138 + - uid: 18655 components: - type: MetaData desc: Теперь и лифт для сверхбыстрого перемещения. Вау. @@ -125156,12 +126359,12 @@ entities: - type: Transform pos: 2.5,-50.5 parent: 2 - - uid: 29042 + - uid: 18656 components: - type: Transform pos: 0.5,-25.5 parent: 2 - - uid: 33824 + - uid: 18657 components: - type: MetaData desc: Теперь и лифт для сверхбыстрого перемещения. Вау. @@ -125169,12 +126372,7 @@ entities: - type: Transform pos: 2.5,-46.5 parent: 2 - - uid: 38217 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 37887 - - uid: 39556 + - uid: 18658 components: - type: MetaData desc: Теперь и лифт для сверхбыстрого перемещения. Вау. @@ -125182,7 +126380,7 @@ entities: - type: Transform pos: -27.5,-39.5 parent: 2 - - uid: 39557 + - uid: 18659 components: - type: MetaData desc: Теперь и лифт для сверхбыстрого перемещения. Вау. @@ -125190,194 +126388,204 @@ entities: - type: Transform pos: -26.5,-39.5 parent: 2 - - uid: 40328 + - uid: 18660 components: - type: Transform pos: 54.5,2.5 parent: 2 - - uid: 40732 + - uid: 18661 components: - type: Transform pos: 68.5,-2.5 parent: 2 - - uid: 40734 + - uid: 18662 components: - type: Transform pos: 49.5,-24.5 parent: 2 - - uid: 40741 + - uid: 18663 components: - type: Transform pos: 64.5,-5.5 parent: 2 + - uid: 41163 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 40828 - proto: DisposalYJunction entities: - - uid: 17546 + - uid: 18664 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-4.5 parent: 2 - - uid: 17547 + - uid: 18665 components: - type: Transform pos: 34.5,7.5 parent: 2 - - uid: 17548 + - uid: 18666 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-39.5 parent: 2 - - uid: 17549 + - uid: 18667 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-83.5 parent: 2 - - uid: 17550 + - uid: 18668 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-29.5 parent: 2 - - uid: 17551 + - uid: 18669 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-22.5 parent: 2 - - uid: 17553 + - uid: 18670 components: - type: Transform pos: -59.5,-43.5 parent: 2 - - uid: 17554 + - uid: 18671 components: - type: Transform pos: -52.5,-27.5 parent: 2 - - uid: 17555 + - uid: 18672 components: - type: Transform pos: 40.5,17.5 parent: 2 - - uid: 21279 + - uid: 18673 components: - type: Transform pos: 69.5,-2.5 parent: 2 - - uid: 40302 + - uid: 18674 components: - type: Transform pos: 57.5,10.5 parent: 2 - proto: DogBed entities: - - uid: 9741 + - uid: 18675 components: - type: Transform pos: 49.5,-25.5 parent: 2 - - uid: 17556 + - uid: 18676 components: - type: Transform pos: -36.5,-34.5 parent: 2 - - uid: 17558 + - uid: 18677 components: - type: Transform pos: 22.5,9.5 parent: 2 - - uid: 17559 + - uid: 18678 components: - type: Transform pos: -5.5,11.5 parent: 2 - - uid: 17561 + - uid: 18679 components: - type: Transform pos: -66.5,-47.5 parent: 2 - - uid: 31592 + - uid: 18680 components: - type: Transform pos: 49.5,16.5 parent: 2 - proto: DonkpocketBoxSpawner entities: - - uid: 17562 + - uid: 18681 components: - type: Transform pos: 61.5,-38.5 parent: 2 - - uid: 17563 + - uid: 18682 components: - type: Transform pos: 46.5,-74.5 parent: 2 - - uid: 17564 + - uid: 18683 components: - type: Transform pos: -37.5,-4.5 parent: 2 - - uid: 17565 + - uid: 18684 components: - type: Transform pos: -42.5,-86.5 parent: 2 - - uid: 25303 + - uid: 18685 components: - type: Transform pos: 51.5,2.5 parent: 2 + - uid: 18686 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 - proto: DoorElectronics entities: - - uid: 17566 + - uid: 18687 components: - type: Transform pos: 38.507458,-37.45771 parent: 2 - - uid: 17567 + - uid: 18688 components: - type: Transform pos: 38.482124,-37.32569 parent: 2 - - uid: 17568 + - uid: 18689 components: - type: Transform pos: 101.5,-80.5 parent: 2 - proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 17569 + - uid: 18690 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.57781,-93.494286 parent: 2 - - uid: 17570 + - uid: 18691 components: - type: Transform rot: 3.141592653589793 rad pos: 49.795048,-99.41769 parent: 2 - - uid: 17571 + - uid: 18692 components: - type: Transform pos: 49.013447,-100.553375 parent: 2 - - uid: 17572 + - uid: 18693 components: - type: Transform pos: 54.668594,-84.426704 parent: 2 - - uid: 17573 + - uid: 18694 components: - type: Transform pos: 54.507576,-96.46527 parent: 2 - - uid: 17574 + - uid: 18695 components: - type: Transform pos: 74.54064,-49.657394 @@ -125403,18 +126611,21 @@ entities: 6: position: 4,0 _rotation: South - 11: + 13: position: 2,2 _rotation: West - 13: + 11: position: 5,0 _rotation: East - 1983: + 16: position: 4,1 - _rotation: South - 9035: + _rotation: East + 12: position: 6,1 _rotation: South + 14: + position: 0,3 + _rotation: West - type: ContainerContainer containers: storagebase: !type:Container @@ -125425,33 +126636,34 @@ entities: - 9 - 8 - 6 - - 11 - 13 - - 1983 - - 9035 - - uid: 24339 + - 11 + - 12 + - 14 + - 16 + - uid: 15586 components: - type: Transform pos: 66.5,1.5 parent: 2 - type: Storage storedItems: - 24340: + 15587: position: 0,2 _rotation: North - 24341: + 15588: position: 0,0 _rotation: North - 24342: + 15590: position: 1,0 _rotation: South - 24412: + 15592: position: 1,2 _rotation: South - 24413: + 15589: position: 3,0 _rotation: South - 24414: + 15591: position: 3,2 _rotation: South - type: ContainerContainer @@ -125460,25 +126672,30 @@ entities: showEnts: False occludes: True ents: - - 24412 - - 24340 - - 24341 - - 24342 - - 24414 - - 24413 - - uid: 39091 + - 15592 + - 15587 + - 15588 + - 15590 + - 15591 + - 15589 + - uid: 18696 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 18697 components: - type: Transform pos: 0.5,-36.5 parent: 2 - - uid: 39093 + - uid: 18698 components: - type: Transform pos: 1.5,-38.5 parent: 2 - type: Storage storedItems: - 39094: + 18699: position: 0,0 _rotation: South - type: ContainerContainer @@ -125487,186 +126704,171 @@ entities: showEnts: False occludes: True ents: - - 39094 + - 18699 - proto: DresserCaptainFilled entities: - - uid: 17575 + - uid: 18700 components: - type: Transform pos: 17.5,11.5 parent: 2 - proto: DresserChiefEngineerFilled entities: - - uid: 17576 + - uid: 18701 components: - type: Transform pos: 57.5,-76.5 parent: 2 - proto: DresserChiefMedicalOfficerFilled entities: - - uid: 17577 + - uid: 18702 components: - type: Transform pos: -39.5,-10.5 parent: 2 - proto: DresserFilled entities: - - uid: 17578 + - uid: 18703 components: - type: Transform pos: -36.5,-90.5 parent: 2 - - uid: 17579 + - uid: 18704 components: - type: Transform pos: -36.5,-87.5 parent: 2 - - uid: 17580 + - uid: 18705 components: - type: Transform pos: -35.5,3.5 parent: 2 - - uid: 17581 + - uid: 18706 components: - type: Transform pos: -54.5,-9.5 parent: 2 - - uid: 17582 - components: - - type: Transform - pos: -11.5,15.5 - parent: 2 - - uid: 17583 + - uid: 18707 components: - type: Transform pos: -66.5,-12.5 parent: 2 - - uid: 17584 + - uid: 18708 components: - type: Transform pos: -27.5,-84.5 parent: 2 - - uid: 17585 + - uid: 18709 components: - type: Transform pos: -27.5,-87.5 parent: 2 - - uid: 17586 + - uid: 18710 components: - type: Transform pos: -27.5,-90.5 parent: 2 - - uid: 17587 + - uid: 18711 components: - type: Transform pos: -36.5,-84.5 parent: 2 - proto: DresserHeadOfPersonnelFilled entities: - - uid: 17588 + - uid: 18712 components: - type: Transform pos: -9.5,6.5 parent: 2 - proto: DresserHeadOfSecurityFilled entities: - - uid: 31594 + - uid: 18713 components: - type: Transform pos: 52.5,16.5 parent: 2 - proto: DresserQuarterMasterFilled entities: - - uid: 17590 + - uid: 18714 components: - type: Transform pos: -2.5,-98.5 parent: 2 - proto: DresserResearchDirectorFilled entities: - - uid: 17591 + - uid: 18715 components: - type: Transform pos: -34.5,-70.5 parent: 2 - proto: DresserWardenFilled entities: - - uid: 25185 + - uid: 18716 components: - type: Transform pos: 53.5,-22.5 parent: 2 - proto: DrinkBeerBottleFull entities: - - uid: 17593 + - uid: 18717 components: - type: Transform pos: 51.24125,-46.24205 parent: 2 - - uid: 17594 + - uid: 18718 components: - type: Transform pos: 24.383669,7.8483505 parent: 2 - - uid: 17595 + - uid: 18719 components: - type: Transform pos: -83.35843,-17.145203 parent: 2 - - uid: 24178 + - uid: 18720 components: - type: Transform pos: -96.4395,-10.124379 parent: 2 - - uid: 41154 + - uid: 18722 components: - type: Transform - parent: 41152 + parent: 18721 - type: Physics canCollide: False - - uid: 41160 + - uid: 18723 components: - type: Transform - parent: 41152 + parent: 18721 - type: Physics canCollide: False - proto: DrinkBeerglass entities: - - uid: 17596 - components: - - type: Transform - pos: -84.367546,-17.265388 - parent: 2 - - uid: 31764 - components: - - type: Transform - pos: -96.22075,-10.390004 - parent: 2 - - uid: 41155 + - uid: 18724 components: - type: Transform - parent: 41152 + parent: 18721 - type: Physics canCollide: False - - uid: 41156 + - uid: 18725 components: - type: Transform - parent: 41152 + parent: 18721 - type: Physics canCollide: False -- proto: DrinkBottleBeer - entities: - - uid: 9750 + - uid: 18732 components: - type: Transform - pos: -16.427595,5.494499 + pos: -84.367546,-17.265388 parent: 2 - - uid: 13895 + - uid: 18733 components: - type: Transform - pos: -8.654739,16.913908 + pos: -96.22075,-10.390004 parent: 2 - - uid: 17598 +- proto: DrinkBottleBeer + entities: + - uid: 18734 components: - type: Transform rot: -1.5707963267948966 rad @@ -125674,7 +126876,7 @@ entities: parent: 2 - proto: DrinkBottleGildlager entities: - - uid: 17599 + - uid: 18735 components: - type: Transform pos: 24.591486,4.718968 @@ -125699,93 +126901,93 @@ entities: ent: 4 - proto: DrinkBottleOfNothingFull entities: - - uid: 17600 + - uid: 18736 components: - type: Transform pos: 34.555294,-17.231699 parent: 2 - proto: DrinkBottleVodka entities: - - uid: 17601 + - uid: 18737 components: - type: Transform pos: 32.367794,-15.512949 parent: 2 - proto: DrinkCanPack entities: - - uid: 40037 + - uid: 18738 components: - type: Transform pos: -1.5820045,0.62638855 parent: 2 - proto: DrinkChangelingStingCan entities: - - uid: 30708 + - uid: 18739 components: - type: Transform pos: -11.683014,-36.325157 parent: 2 - - uid: 30709 + - uid: 18740 components: - type: Transform pos: -11.388683,-36.450157 parent: 2 - proto: DrinkCognacBottleFull entities: - - uid: 17604 + - uid: 18726 + components: + - type: Transform + parent: 18721 + - type: Physics + canCollide: False + - uid: 18741 components: - type: Transform pos: 10.352712,17.629696 parent: 2 - - uid: 17605 + - uid: 18742 components: - type: Transform pos: -57.604233,-48.34345 parent: 2 - - uid: 17609 + - uid: 18744 components: - type: Transform - parent: 17608 + parent: 18743 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 41157 - components: - - type: Transform - parent: 41152 - - type: Physics - canCollide: False - proto: DrinkColaCan entities: - - uid: 17364 + - uid: 18748 components: - type: Transform - parent: 24295 + parent: 18747 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 17437 + - uid: 18749 components: - type: Transform - parent: 24295 + parent: 18747 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkDetFlask entities: - - uid: 2593 + - uid: 18751 components: - type: Transform pos: 46.43001,-5.287635 parent: 2 - - uid: 13974 + - uid: 18752 components: - type: Transform pos: 46.69043,-5.3084683 parent: 2 - proto: DrinkFlask entities: - - uid: 17791 + - uid: 18753 components: - type: Transform rot: 1.5707963267948966 rad @@ -125793,552 +126995,532 @@ entities: parent: 2 - proto: DrinkGlass entities: - - uid: 9753 - components: - - type: Transform - pos: -16.72447,5.338249 - parent: 2 - - uid: 17610 + - uid: 18745 components: - type: Transform - parent: 17608 + parent: 18743 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkGlassCoupeShaped entities: - - uid: 41158 + - uid: 18727 components: - type: Transform - parent: 41152 + parent: 18721 - type: Physics canCollide: False - - uid: 41159 + - uid: 18728 components: - type: Transform - parent: 41152 + parent: 18721 - type: Physics canCollide: False - proto: DrinkGoldenCup entities: - - uid: 29575 + - uid: 18754 components: - type: Transform pos: -7.5104322,-5.5059457 parent: 2 - proto: DrinkGrogGlass entities: - - uid: 17614 + - uid: 18755 components: - type: Transform pos: -65.623604,12.72371 parent: 2 - proto: DrinkHotCoco entities: - - uid: 25176 + - uid: 18756 components: - type: Transform pos: 50.73257,5.5582857 parent: 2 - proto: DrinkHotCoffee entities: - - uid: 9758 + - uid: 18757 components: - type: Transform pos: 47.79838,-24.728645 parent: 2 - - uid: 17615 + - uid: 18758 components: - type: Transform pos: -0.64531827,27.699799 parent: 2 - - uid: 17616 + - uid: 18759 components: - type: Transform pos: 10.4279175,10.702047 parent: 2 - proto: DrinkIceGlass entities: - - uid: 17618 + - uid: 18761 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - - uid: 17619 + - uid: 18762 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - - uid: 17620 + - uid: 18763 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - proto: DrinkKiraSpecial entities: - - uid: 9355 + - uid: 18778 components: - type: Transform pos: 51.331936,-5.3940773 parent: 2 - proto: DrinkMilkCarton entities: - - uid: 17636 + - uid: 18780 components: - type: Transform - parent: 17635 + parent: 18779 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkMREFlask entities: - - uid: 24247 + - uid: 18784 components: - type: Transform pos: -16.398232,17.765085 parent: 2 - - uid: 24595 + - uid: 18785 components: - type: Transform pos: -16.616982,17.608835 parent: 2 - proto: DrinkMug entities: - - uid: 486 - components: - - type: Transform - pos: -8.304893,18.720465 - parent: 2 - - uid: 17641 + - uid: 18786 components: - type: Transform pos: 70.66605,-40.50767 parent: 2 - - uid: 17642 + - uid: 18787 components: - type: Transform pos: -6.4723682,-83.75651 parent: 2 - - uid: 17643 + - uid: 18788 components: - type: Transform pos: -36.484543,-25.448662 parent: 2 - - uid: 17644 + - uid: 18789 components: - type: Transform pos: -5.2147865,-0.20738065 parent: 2 - - uid: 17645 + - uid: 18790 components: - type: Transform pos: 7.5972843,9.628852 parent: 2 - - uid: 17646 + - uid: 18791 components: - type: Transform pos: -53.327377,-64.45119 parent: 2 - - uid: 17647 + - uid: 18792 components: - type: Transform pos: 22.386673,-69.29359 parent: 2 - - uid: 17648 + - uid: 18793 components: - type: Transform pos: -17.631403,-1.3998618 parent: 2 - - uid: 17650 + - uid: 18794 components: - type: Transform pos: -59.6224,-1.1432885 parent: 2 - proto: DrinkMugBlack entities: - - uid: 17651 + - uid: 18795 components: - type: Transform pos: 50.352776,-54.36279 parent: 2 - proto: DrinkMugBlue entities: - - uid: 29378 + - uid: 18796 components: - type: Transform pos: 85.25365,0.7113085 parent: 2 - proto: DrinkMugDog entities: - - uid: 17652 + - uid: 18797 components: - type: Transform pos: 43.45974,-74.36939 parent: 2 - - uid: 24652 + - uid: 18799 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - proto: DrinkMugGreen entities: - - uid: 17653 + - uid: 18817 components: - type: Transform pos: 62.688507,-64.35952 parent: 2 - - uid: 17654 + - uid: 18818 components: - type: Transform pos: -19.24841,6.756159 parent: 2 - - uid: 29325 + - uid: 18819 components: - type: Transform pos: 77.27791,0.5706835 parent: 2 - proto: DrinkMugHeart entities: - - uid: 29376 + - uid: 18820 components: - type: Transform pos: 81.24666,0.47693348 parent: 2 - proto: DrinkMugMetal entities: - - uid: 29377 + - uid: 18821 components: - type: Transform pos: 85.80052,0.7269335 parent: 2 - proto: DrinkMugMoebius entities: - - uid: 29375 + - uid: 18822 components: - type: Transform pos: 81.26228,0.6956835 parent: 2 - proto: DrinkMugOne entities: - - uid: 17655 + - uid: 18823 components: - type: Transform pos: 13.686022,15.880593 parent: 2 - - uid: 17656 + - uid: 18824 components: - type: Transform pos: -37.305103,-5.2712727 parent: 2 - - uid: 25171 + - uid: 18825 components: - type: Transform pos: 50.385754,5.647771 parent: 2 - proto: DrinkMugRainbow entities: - - uid: 17657 + - uid: 18826 components: - type: Transform pos: -72.209206,3.0738738 parent: 2 - - uid: 17658 + - uid: 18827 components: - type: Transform pos: -72.28259,2.0281577 parent: 2 - - uid: 17659 + - uid: 18828 components: - type: Transform pos: -73.805305,1.9914659 parent: 2 - - uid: 17660 + - uid: 18829 components: - type: Transform pos: -73.78696,3.1289115 parent: 2 - proto: DrinkMugRed entities: - - uid: 17661 - components: - - type: Transform - pos: -11.605584,11.449163 - parent: 2 - - uid: 17662 + - uid: 18830 components: - type: Transform pos: 53.31357,-52.97743 parent: 2 - - uid: 17663 + - uid: 18831 components: - type: Transform pos: 53.551285,-53.10065 parent: 2 - - uid: 17664 + - uid: 18832 components: - type: Transform pos: 53.31357,-53.479122 parent: 2 - - uid: 17665 + - uid: 18833 components: - type: Transform pos: 43.67849,-74.61939 parent: 2 - - uid: 25138 + - uid: 18834 components: - type: Transform pos: 50.564754,5.8491135 parent: 2 - - uid: 29316 + - uid: 18835 components: - type: Transform pos: 77.80916,0.6644335 parent: 2 - proto: DrinkNeurotoxinGlass entities: - - uid: 17666 + - uid: 18836 components: - type: Transform pos: -52.607536,-54.30591 parent: 2 - proto: DrinkNTCahors entities: - - uid: 17667 + - uid: 18837 components: - type: Transform pos: 36.771786,-63.324944 parent: 2 - proto: DrinkPatronBottleFull entities: - - uid: 33548 + - uid: 18838 components: - type: Transform pos: 13.506333,-44.40823 parent: 2 - proto: DrinkPwrGameCan entities: - - uid: 17668 + - uid: 18839 components: - type: Transform pos: -60.110847,12.645974 parent: 2 - - uid: 17669 + - uid: 18840 components: - type: Transform pos: -59.642097,12.770974 parent: 2 - - uid: 17671 + - uid: 18841 components: - type: Transform pos: -59.642097,9.739724 parent: 2 - - uid: 17672 + - uid: 18842 components: - type: Transform pos: -59.454597,9.536599 parent: 2 - - uid: 17673 + - uid: 18843 components: - type: Transform pos: -59.220222,9.708474 parent: 2 - proto: DrinkShakeEmpty entities: - - uid: 36762 + - uid: 18844 components: - type: Transform pos: 28.419611,2.640843 parent: 2 - proto: DrinkShaker entities: - - uid: 17611 + - uid: 18746 components: - type: Transform - parent: 17608 + parent: 18743 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 17674 + - uid: 18845 components: - type: Transform pos: 24.660896,7.2123594 parent: 2 - proto: DrinkShotGlass entities: - - uid: 14147 + - uid: 18729 components: - type: Transform - pos: -8.389114,16.507658 - parent: 2 - - uid: 17675 + parent: 18721 + - type: Physics + canCollide: False + - uid: 18730 components: - type: Transform - parent: 41152 + parent: 18721 - type: Physics canCollide: False - - uid: 17676 + - uid: 18846 components: - type: Transform pos: 10.758962,17.42657 parent: 2 - - uid: 17677 + - uid: 18847 components: - type: Transform pos: 10.618337,17.64532 parent: 2 - - uid: 17678 + - uid: 18848 components: - type: Transform pos: 51.210014,-52.893696 parent: 2 - - uid: 17679 + - uid: 18849 components: - type: Transform pos: 42.34571,-94.41056 parent: 2 - - uid: 17680 + - uid: 18850 components: - type: Transform pos: 42.330086,-94.03556 parent: 2 - - uid: 17681 + - uid: 18851 components: - type: Transform pos: -57.291733,-48.7497 parent: 2 - - uid: 17683 - components: - - type: Transform - parent: 41152 - - type: Physics - canCollide: False - proto: DrinkSingulo entities: - - uid: 16869 + - uid: 18853 components: - type: Transform - parent: 13378 + parent: 18852 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkTeacup entities: - - uid: 17691 + - uid: 18854 components: - type: Transform pos: 77.39634,-26.434532 parent: 2 - proto: DrinkTonicWaterCan entities: - - uid: 16870 + - uid: 18856 components: - type: Transform - parent: 24294 + parent: 18855 - type: Physics canCollide: False - type: InsideEntityStorage - proto: DrinkToxinsSpecialGlass entities: - - uid: 17692 + - uid: 18858 components: - type: Transform pos: -52.326286,-54.384033 parent: 2 - proto: DrinkVermouthBottleFull entities: - - uid: 41153 + - uid: 18731 components: - type: Transform - parent: 41152 + parent: 18721 - type: Physics canCollide: False - proto: DrinkVodkaBottleFull entities: - - uid: 17693 + - uid: 18859 components: - type: Transform pos: 78.52124,-50.282394 parent: 2 - proto: DrinkWaterBottleFull entities: - - uid: 17696 + - uid: 18860 components: - type: Transform pos: -63.156868,-71.40318 parent: 2 - - uid: 17697 + - uid: 18861 components: - type: Transform pos: -20.154627,-87.82055 parent: 2 - - uid: 17698 + - uid: 18862 components: - type: Transform pos: -23.498377,-84.367424 parent: 2 - - uid: 17701 + - uid: 18863 components: - type: Transform pos: -63.672493,-72.27818 parent: 2 - - uid: 17702 + - uid: 18864 components: - type: Transform pos: -29.358727,-105.57847 parent: 2 - - uid: 17703 + - uid: 18865 components: - type: Transform pos: -29.624352,-105.37534 parent: 2 - - uid: 22157 + - uid: 18866 components: - type: Transform pos: 55.596703,-2.412826 parent: 2 - - uid: 37519 + - uid: 18867 components: - type: Transform pos: 53.432602,-9.042577 parent: 2 - - uid: 37703 + - uid: 18868 components: - type: Transform pos: 53.635727,-9.323827 parent: 2 - proto: DrinkWaterCup entities: - - uid: 27723 + - uid: 18869 components: - type: Transform pos: 85.7359,-9.2497635 parent: 2 - proto: DrinkWhiskeyBottleFull entities: - - uid: 17705 + - uid: 18870 components: - type: Transform pos: 41.78321,-93.988686 parent: 2 - proto: DrinkWineBottleFull entities: - - uid: 17708 + - uid: 18871 components: - type: Transform pos: 36.443604,-63.328476 parent: 2 - proto: Dropper entities: - - uid: 17709 + - uid: 18872 components: - type: Transform pos: -51.74125,-0.5904815 parent: 2 - - uid: 17710 + - uid: 18873 components: - type: Transform rot: 3.141592653589793 rad @@ -126346,50 +127528,50 @@ entities: parent: 2 - proto: DungeonMasterCircuitBoard entities: - - uid: 32 + - uid: 2265 components: - type: Transform - parent: 1906 + parent: 2259 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Ectoplasm entities: - - uid: 23971 + - uid: 18874 components: - type: Transform pos: 33.513348,-71.052895 parent: 2 - proto: EggplantSeeds entities: - - uid: 17711 + - uid: 18875 components: - type: Transform pos: 44.5912,22.40593 parent: 2 - proto: EggSpider entities: - - uid: 26109 + - uid: 18876 components: - type: Transform pos: -1.7250237,-22.335646 parent: 2 - - uid: 26169 + - uid: 18877 components: - type: Transform pos: -1.8500237,-22.523146 parent: 2 - - uid: 26170 + - uid: 18878 components: - type: Transform pos: -1.7093987,-22.63252 parent: 2 - - uid: 26179 + - uid: 18879 components: - type: Transform pos: -1.5218987,-22.491896 parent: 2 - - uid: 30565 + - uid: 18880 components: - type: MetaData name: яйцо ёжика с планеты синего кефира @@ -126401,494 +127583,558 @@ entities: price: 8000 - proto: EmergencyLight entities: - - uid: 60 + - uid: 18881 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,2.5 parent: 2 - - uid: 7778 + - uid: 18882 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-18.5 parent: 2 - - uid: 8776 + - uid: 18883 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-8.5 parent: 2 - - uid: 14748 + - uid: 18884 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,7.5 parent: 2 - - uid: 14987 + - uid: 18885 components: - type: Transform pos: 62.5,5.5 parent: 2 - - uid: 14996 + - uid: 18886 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,7.5 parent: 2 - - uid: 15607 + - uid: 18887 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-10.5 parent: 2 - - uid: 15609 + - uid: 18888 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,3.5 parent: 2 - - uid: 17712 + - uid: 18889 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,14.5 parent: 2 - - uid: 17713 + - uid: 18890 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,16.5 parent: 2 - - uid: 17714 + - uid: 18891 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-73.5 parent: 2 - - uid: 17715 + - uid: 18892 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-98.5 parent: 2 - - uid: 17716 + - uid: 18893 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-96.5 parent: 2 - - uid: 17717 + - uid: 18894 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-82.5 parent: 2 - - uid: 17718 + - uid: 18895 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-73.5 parent: 2 - - uid: 17719 + - uid: 18896 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-65.5 parent: 2 - - uid: 17720 + - uid: 18897 components: - type: Transform pos: 36.5,-57.5 parent: 2 - - uid: 17721 + - uid: 18898 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-51.5 parent: 2 - - uid: 17722 + - uid: 18899 components: - type: Transform pos: 31.5,-31.5 parent: 2 - - uid: 17723 + - uid: 18900 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-30.5 parent: 2 - - uid: 17724 + - uid: 18901 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-52.5 parent: 2 - - uid: 17725 + - uid: 18902 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-49.5 parent: 2 - - uid: 17726 + - uid: 18903 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-70.5 parent: 2 - - uid: 17727 + - uid: 18904 components: - type: Transform pos: 51.5,-81.5 parent: 2 - - uid: 17728 + - uid: 18905 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-90.5 parent: 2 - - uid: 17729 + - uid: 18906 components: - type: Transform pos: 48.5,-96.5 parent: 2 - - uid: 17730 + - uid: 18907 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-59.5 parent: 2 - - uid: 17731 + - uid: 18908 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-42.5 parent: 2 - - uid: 17732 + - uid: 18909 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-33.5 parent: 2 - - uid: 17733 + - uid: 18910 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-30.5 parent: 2 - - uid: 17734 + - uid: 18911 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-41.5 parent: 2 - - uid: 17735 + - uid: 18912 components: - type: Transform pos: 97.5,-21.5 parent: 2 - - uid: 17740 + - uid: 18913 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-11.5 parent: 2 - - uid: 17741 + - uid: 18914 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-0.5 parent: 2 - - uid: 17742 + - uid: 18915 components: - type: Transform pos: -1.5,4.5 parent: 2 - - uid: 17743 + - uid: 18916 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,21.5 parent: 2 - - uid: 17744 + - uid: 18917 components: - type: Transform pos: -6.5,11.5 parent: 2 - - uid: 17745 + - uid: 18918 components: - type: Transform pos: -18.5,1.5 parent: 2 - - uid: 17746 + - uid: 18919 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-8.5 parent: 2 - - uid: 17747 + - uid: 18920 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-33.5 parent: 2 - - uid: 17748 + - uid: 18921 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-37.5 parent: 2 - - uid: 17749 + - uid: 18922 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-11.5 parent: 2 - - uid: 17750 + - uid: 18923 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,2.5 parent: 2 - - uid: 17751 + - uid: 18924 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-34.5 parent: 2 - - uid: 17752 + - uid: 18925 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-44.5 parent: 2 - - uid: 17753 + - uid: 18926 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-44.5 parent: 2 - - uid: 17754 + - uid: 18927 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,-40.5 parent: 2 - - uid: 17755 + - uid: 18928 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-52.5 parent: 2 - - uid: 17756 + - uid: 18929 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-45.5 parent: 2 - - uid: 17757 + - uid: 18930 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-66.5 parent: 2 - - uid: 17758 + - uid: 18931 components: - type: Transform pos: -52.5,-64.5 parent: 2 - - uid: 17759 + - uid: 18932 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-79.5 parent: 2 - - uid: 17760 + - uid: 18933 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-59.5 parent: 2 - - uid: 17761 + - uid: 18934 components: - type: Transform pos: -26.5,-80.5 parent: 2 - - uid: 17762 + - uid: 18935 components: - type: Transform pos: -24.5,-69.5 parent: 2 - - uid: 17763 + - uid: 18936 components: - type: Transform pos: -33.5,-92.5 parent: 2 - - uid: 17764 + - uid: 18937 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-66.5 parent: 2 - - uid: 17766 + - uid: 18938 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-54.5 parent: 2 - - uid: 17767 + - uid: 18939 components: - type: Transform pos: 76.5,-48.5 parent: 2 - - uid: 17768 + - uid: 18940 components: - type: Transform pos: -32.5,8.5 parent: 2 - - uid: 17771 + - uid: 18941 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-75.5 parent: 2 - - uid: 17772 + - uid: 18942 components: - type: Transform pos: -50.5,-68.5 parent: 2 - - uid: 17773 + - uid: 18943 components: - type: Transform pos: 97.5,-86.5 parent: 2 - - uid: 17774 + - uid: 18944 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,-69.5 parent: 2 - - uid: 17775 + - uid: 18945 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-19.5 parent: 2 - - uid: 17776 + - uid: 18946 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-10.5 parent: 2 - - uid: 17777 + - uid: 18947 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-29.5 parent: 2 - - uid: 17782 + - uid: 18948 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-20.5 parent: 2 - - uid: 17783 + - uid: 18949 components: - type: Transform pos: 0.5,17.5 parent: 2 - - uid: 19558 + - uid: 18950 components: - type: Transform pos: 63.5,15.5 parent: 2 - - uid: 19564 + - uid: 18951 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,14.5 parent: 2 - - uid: 19565 + - uid: 18952 components: - type: Transform pos: 62.5,11.5 parent: 2 - - uid: 34951 + - uid: 18953 components: - type: Transform pos: 53.5,-7.5 parent: 2 - - uid: 35971 + - uid: 18954 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-5.5 parent: 2 - - uid: 35998 + - uid: 18955 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-1.5 parent: 2 - - uid: 41011 + - uid: 18956 components: - type: Transform pos: 116.5,-38.5 parent: 2 - - uid: 41012 + - uid: 18957 components: - type: Transform pos: 128.5,-38.5 parent: 2 +- proto: EmergencyMedipen + entities: + - uid: 73 + components: + - type: Transform + parent: 68 + - type: Physics + canCollide: False + - uid: 82 + components: + - type: Transform + parent: 77 + - type: Physics + canCollide: False + - uid: 91 + components: + - type: Transform + parent: 86 + - type: Physics + canCollide: False +- proto: EmergencyOxygenTankFilled + entities: + - uid: 69 + components: + - type: Transform + parent: 68 + - type: GasTank + toggleActionEntity: 70 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 70 + - uid: 78 + components: + - type: Transform + parent: 77 + - type: GasTank + toggleActionEntity: 79 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 79 + - uid: 87 + components: + - type: Transform + parent: 86 + - type: GasTank + toggleActionEntity: 88 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 88 - proto: EmergencyRollerBed entities: - - uid: 17784 + - uid: 18958 components: - type: Transform pos: -39.5,-36.5 parent: 2 - proto: Emitter entities: - - uid: 17786 + - uid: 18959 components: - type: Transform pos: 78.5,-54.5 parent: 2 - - uid: 17787 + - uid: 18960 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-66.5 parent: 2 - - uid: 17788 + - uid: 18961 components: - type: Transform pos: 57.5,-65.5 parent: 2 - - uid: 17789 + - uid: 18962 components: - type: Transform pos: 56.5,-65.5 parent: 2 - proto: EncryptionKeyCentCom entities: - - uid: 38836 + - uid: 41782 components: - type: Transform - parent: 38835 + parent: 41781 - type: Physics canCollide: False - proto: EncryptionKeySyndie entities: - - uid: 26102 + - uid: 18964 components: - type: Transform - parent: 26101 + parent: 18963 - type: Physics canCollide: False - proto: EnergyDagger entities: - - uid: 39609 + - uid: 18965 components: - type: Transform rot: 3.141592653589793 rad @@ -126896,54 +128142,54 @@ entities: parent: 2 - proto: Envelope entities: - - uid: 17808 + - uid: 18966 components: - type: Transform pos: -57.03176,-89.21703 parent: 2 - - uid: 17809 + - uid: 18967 components: - type: Transform pos: -57.09426,-89.38891 parent: 2 - - uid: 17810 + - uid: 18968 components: - type: Transform pos: -6.5126133,-80.76614 parent: 2 - - uid: 17811 + - uid: 18969 components: - type: Transform pos: -6.5126133,-80.93802 parent: 2 - proto: EphedrineChemistryBottle entities: - - uid: 17813 + - uid: 41 components: - type: Transform - parent: 27043 + parent: 35 - type: Physics canCollide: False - proto: EpinephrineChemistryBottle entities: - - uid: 2710 + - uid: 18970 components: - type: Transform pos: 62.75173,-2.440353 parent: 2 - - uid: 17823 + - uid: 18971 components: - type: Transform pos: -45.64116,-10.314175 parent: 2 - - uid: 34240 + - uid: 18972 components: - type: Transform pos: -7.5288906,-35.512474 parent: 2 - proto: ERTSpawnerCBURN entities: - - uid: 39738 + - uid: 18973 components: - type: MetaData name: (DISABLE) одноразовый маркер спавна шкелета-пилата калибского моля @@ -126954,16 +128200,16 @@ entities: proto: MobSkeletonPirate - proto: ERTSpawnerEngineering entities: - - uid: 38218 + - uid: 41164 components: - type: Transform pos: 4.5,-4.5 - parent: 37887 + parent: 40828 - type: DeviceLinkSink invokeCounter: 1 - proto: ERTSpawnerJanitor entities: - - uid: 34359 + - uid: 18974 components: - type: MetaData name: одноразовый маркер спавна ОВЕРЛУТА @@ -126972,7 +128218,7 @@ entities: parent: 2 - type: SpawnOnTrigger proto: ClothingOuterHardsuitMaxim - - uid: 40955 + - uid: 18975 components: - type: MetaData name: не слишком ли много спавнеров обр? хммммммммммм? @@ -126983,517 +128229,512 @@ entities: proto: SpaceMedipen - proto: ERTSpawnerLeader entities: - - uid: 38219 + - uid: 41165 components: - type: Transform pos: -5.5,-6.5 - parent: 37887 + parent: 40828 - type: DeviceLinkSink invokeCounter: 1 - proto: ERTSpawnerMedical entities: - - uid: 38220 + - uid: 41166 components: - type: Transform pos: 4.5,-6.5 - parent: 37887 + parent: 40828 - type: DeviceLinkSink invokeCounter: 1 - proto: ERTSpawnerSrcurity entities: - - uid: 38221 + - uid: 41167 components: - type: Transform pos: 6.5,-4.5 - parent: 37887 + parent: 40828 - type: DeviceLinkSink invokeCounter: 1 - - uid: 38222 + - uid: 41168 components: - type: Transform pos: 6.5,-5.5 - parent: 37887 + parent: 40828 - type: DeviceLinkSink invokeCounter: 1 - - uid: 38223 + - uid: 41169 components: - type: Transform pos: 6.5,-6.5 - parent: 37887 + parent: 40828 - type: DeviceLinkSink invokeCounter: 1 - proto: EthanolChemistryBottle entities: - - uid: 37184 + - uid: 1988 components: - type: Transform - parent: 37041 + parent: 1980 - type: Physics canCollide: False - proto: ExGrenade entities: - - uid: 37107 + - uid: 16301 components: - type: Transform - parent: 37104 + parent: 16300 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ExosuitFabricator entities: - - uid: 32163 + - uid: 18976 components: - type: Transform pos: -16.5,-54.5 parent: 2 - proto: ExplosivesSignMed entities: - - uid: 17826 + - uid: 18977 components: - type: Transform pos: -66.5,-66.5 parent: 2 - proto: ExtendedEmergencyOxygenTankFilled entities: - - uid: 17831 + - uid: 15195 + components: + - type: Transform + parent: 15193 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18978 components: - type: Transform pos: -66.352936,-71.53743 parent: 2 - - uid: 17832 + - uid: 18979 components: - type: Transform pos: -53.376144,-73.67138 parent: 2 - - uid: 17833 + - uid: 18980 components: - type: Transform pos: 39.51871,20.5004 parent: 2 - - uid: 31354 + - uid: 18981 components: - type: Transform pos: -19.42097,20.691431 parent: 2 - - uid: 31355 + - uid: 18982 components: - type: Transform pos: -19.530346,20.503931 parent: 2 - - uid: 32175 + - uid: 18983 components: - type: Transform pos: -19.60847,20.691431 parent: 2 - - uid: 36776 - components: - - type: Transform - parent: 36751 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ExtinguisherCabinetFilled entities: - - uid: 17834 + - uid: 18984 components: - type: Transform pos: 19.5,1.5 parent: 2 - - uid: 17836 + - uid: 18985 components: - type: Transform pos: -32.5,2.5 parent: 2 - - uid: 17837 + - uid: 18986 components: - type: Transform pos: 47.5,-70.5 parent: 2 - - uid: 17838 + - uid: 18987 components: - type: Transform pos: 34.5,-53.5 parent: 2 - - uid: 17839 + - uid: 18988 components: - type: Transform pos: 99.5,-20.5 parent: 2 - - uid: 17840 + - uid: 18989 components: - type: Transform pos: 68.5,-23.5 parent: 2 - - uid: 17841 + - uid: 18990 components: - type: Transform pos: 47.5,-54.5 parent: 2 - - uid: 17842 + - uid: 18991 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-43.5 parent: 2 - - uid: 17843 + - uid: 18992 components: - type: Transform pos: 70.5,-34.5 parent: 2 - - uid: 17844 + - uid: 18993 components: - type: Transform pos: 31.5,-18.5 parent: 2 - - uid: 17845 + - uid: 18994 components: - type: Transform pos: 48.5,-94.5 parent: 2 - - uid: 17846 + - uid: 18995 components: - type: Transform pos: -48.5,-67.5 parent: 2 - - uid: 17847 + - uid: 18996 components: - type: Transform pos: 25.5,-68.5 parent: 2 - - uid: 17848 + - uid: 18997 components: - type: Transform pos: 41.5,-30.5 parent: 2 - - uid: 17851 + - uid: 18998 components: - type: Transform pos: 4.5,1.5 parent: 2 - - uid: 17852 - components: - - type: Transform - pos: -16.5,2.5 - parent: 2 - - uid: 17853 + - uid: 18999 components: - type: Transform pos: -27.5,15.5 parent: 2 - - uid: 17855 + - uid: 19000 components: - type: Transform pos: -43.5,-26.5 parent: 2 - - uid: 17856 + - uid: 19001 components: - type: Transform pos: -48.5,5.5 parent: 2 - - uid: 17857 + - uid: 19002 components: - type: Transform pos: -26.5,-33.5 parent: 2 - - uid: 17858 + - uid: 19003 components: - type: Transform pos: -44.5,-14.5 parent: 2 - - uid: 17859 + - uid: 19004 components: - type: Transform pos: -43.5,-30.5 parent: 2 - - uid: 17860 + - uid: 19005 components: - type: Transform pos: -66.5,-63.5 parent: 2 - - uid: 17861 + - uid: 19006 components: - type: Transform pos: -68.5,-45.5 parent: 2 - - uid: 17862 + - uid: 19007 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-78.5 parent: 2 - - uid: 17863 + - uid: 19008 components: - type: Transform pos: -26.5,-75.5 parent: 2 - - uid: 17864 + - uid: 19009 components: - type: Transform pos: -34.5,-91.5 parent: 2 - - uid: 17865 + - uid: 19010 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-35.5 parent: 2 - - uid: 17866 + - uid: 19011 components: - type: Transform pos: -4.5,-85.5 parent: 2 - - uid: 17867 + - uid: 19012 components: - type: Transform pos: -41.5,-61.5 parent: 2 - - uid: 17868 + - uid: 19013 components: - type: Transform pos: 18.5,-88.5 parent: 2 - - uid: 17869 + - uid: 19014 components: - type: Transform pos: 39.5,-59.5 parent: 2 - - uid: 17870 + - uid: 19015 components: - type: Transform pos: -1.5,7.5 parent: 2 - - uid: 17871 + - uid: 19016 components: - type: Transform pos: 12.5,19.5 parent: 2 - - uid: 17872 + - uid: 19017 components: - type: Transform pos: 39.5,12.5 parent: 2 - - uid: 17873 + - uid: 19018 components: - type: Transform pos: 92.5,-38.5 parent: 2 - - uid: 17874 + - uid: 19019 components: - type: Transform pos: 34.5,-41.5 parent: 2 - - uid: 17875 + - uid: 19020 components: - type: Transform pos: 79.5,-47.5 parent: 2 - - uid: 17876 + - uid: 19021 components: - type: Transform pos: -56.5,-70.5 parent: 2 - - uid: 17878 + - uid: 19022 components: - type: Transform pos: 60.5,-34.5 parent: 2 - - uid: 17879 + - uid: 19023 components: - type: Transform pos: 80.5,-29.5 parent: 2 - - uid: 17880 + - uid: 19024 components: - type: Transform pos: 42.5,-36.5 parent: 2 - - uid: 17881 + - uid: 19025 components: - type: Transform pos: -8.5,-73.5 parent: 2 - - uid: 17882 + - uid: 19026 components: - type: Transform pos: -59.5,-70.5 parent: 2 - - uid: 17884 + - uid: 19027 components: - type: Transform pos: -52.5,-41.5 parent: 2 - - uid: 17885 + - uid: 19028 components: - type: Transform pos: 58.5,-57.5 parent: 2 - - uid: 17886 + - uid: 19029 components: - type: Transform pos: -30.5,-17.5 parent: 2 - - uid: 17887 + - uid: 19030 components: - type: Transform pos: -32.5,-79.5 parent: 2 - - uid: 17888 + - uid: 19031 components: - type: Transform pos: -46.5,-37.5 parent: 2 - - uid: 40625 + - uid: 19032 components: - type: Transform pos: 41.5,7.5 parent: 2 - - uid: 40627 + - uid: 19033 components: - type: Transform pos: 42.5,-18.5 parent: 2 - - uid: 40628 + - uid: 19034 components: - type: Transform pos: 53.5,-16.5 parent: 2 - - uid: 40629 + - uid: 19035 components: - type: Transform pos: 59.5,-6.5 parent: 2 - - uid: 40630 + - uid: 19036 components: - type: Transform pos: 55.5,7.5 parent: 2 - - uid: 40631 + - uid: 19037 components: - type: Transform pos: 76.5,3.5 parent: 2 - - uid: 40632 + - uid: 19038 components: - type: Transform pos: 70.5,-4.5 parent: 2 - proto: ExtinguisherCabinetOpen entities: - - uid: 17890 + - uid: 19039 components: - type: Transform pos: -40.5,17.5 parent: 2 - proto: ExtradimensionalOrangeSeeds entities: - - uid: 41088 + - uid: 19040 components: - type: Transform pos: -15.111454,-11.458054 parent: 2 - proto: EZNutrientChemistryBottle entities: - - uid: 40795 + - uid: 2566 components: - type: Transform - parent: 40794 + parent: 2559 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 40799 + - uid: 2567 components: - type: Transform - parent: 40794 + parent: 2559 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FaxMachineBase entities: - - uid: 2749 + - uid: 19041 components: - type: Transform pos: 40.5,-22.5 parent: 2 - type: FaxMachine name: Детектив - - uid: 17892 + - uid: 19042 components: - type: Transform pos: -1.5,25.5 parent: 2 - type: FaxMachine name: Мостик - - uid: 17893 + - uid: 19043 components: - type: Transform pos: -24.5,7.5 parent: 2 - type: FaxMachine name: Кабинет АВД - - uid: 17894 + - uid: 19044 components: - type: Transform pos: 56.5,-71.5 parent: 2 - type: FaxMachine name: Кабинет СИ - - uid: 17895 + - uid: 19045 components: - type: Transform pos: 11.5,-78.5 parent: 2 - type: FaxMachine name: Отдел снабжения - - uid: 17896 + - uid: 19046 components: - type: Transform pos: -2.5,-95.5 parent: 2 - type: FaxMachine name: Кабинет КМа - - uid: 17897 + - uid: 19047 components: - type: Transform pos: -39.5,-67.5 parent: 2 - type: FaxMachine name: Кабинет НРа - - uid: 17898 + - uid: 19048 components: - type: Transform pos: -35.5,-7.5 parent: 2 - type: FaxMachine name: Кабинет ГВ - - uid: 17900 + - uid: 19049 components: - type: Transform pos: -33.5,8.5 parent: 2 - type: FaxMachine name: Библиотека - - uid: 17901 + - uid: 19050 components: - type: Transform pos: -6.5,11.5 parent: 2 - type: FaxMachine name: Офис ГП - - uid: 24154 + - uid: 19051 components: - type: Transform pos: 47.5,-20.5 parent: 2 - type: FaxMachine name: Смотритель - - uid: 31579 + - uid: 19052 components: - type: Transform pos: 88.5,-2.5 parent: 2 - type: FaxMachine name: Перма - - uid: 32565 + - uid: 19053 components: - type: Transform pos: 47.5,14.5 @@ -127502,144 +128743,156 @@ entities: name: Гсбшная - proto: FaxMachineCaptain entities: - - uid: 17903 + - uid: 19054 components: - type: Transform pos: 7.5,14.5 parent: 2 - type: FaxMachine name: Офис Капитана +- proto: filingCabinet + entities: + - uid: 19055 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 - proto: filingCabinetDrawer entities: - - uid: 17907 + - uid: 19056 components: - type: Transform pos: -68.5,-50.5 parent: 2 - - uid: 30560 + - uid: 19057 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - uid: 19058 components: - type: Transform pos: 75.5,-8.5 parent: 2 - proto: filingCabinetDrawerRandom entities: - - uid: 812 + - uid: 19059 components: - type: Transform pos: 46.49421,-2.9533205 parent: 2 - - uid: 17909 + - uid: 19060 components: - type: Transform pos: -55.5,-5.5 parent: 2 - - uid: 17910 + - uid: 19061 components: - type: Transform pos: -47.5,4.5 parent: 2 - - uid: 17911 + - uid: 19062 components: - type: Transform pos: -36.5,-7.5 parent: 2 - - uid: 17912 + - uid: 19063 components: - type: Transform pos: -49.5,-21.5 parent: 2 - - uid: 17913 + - uid: 19064 components: - type: Transform pos: -51.5,-23.5 parent: 2 - - uid: 17914 + - uid: 19065 components: - type: Transform pos: 72.5,-41.5 parent: 2 - - uid: 17915 + - uid: 19066 components: - type: Transform pos: 0.5,-93.5 parent: 2 - - uid: 17916 + - uid: 19067 components: - type: Transform pos: 26.5,-74.5 parent: 2 - - uid: 17917 + - uid: 19068 components: - type: Transform pos: 28.5,19.5 parent: 2 - - uid: 27672 + - uid: 19069 components: - type: Transform pos: 50.5,9.5 parent: 2 - - uid: 28629 + - uid: 19070 components: - type: Transform pos: 14.5,-13.5 parent: 2 - - uid: 33754 + - uid: 19071 components: - type: Transform pos: 17.5,-30.5 parent: 2 - - uid: 37834 + - uid: 19072 components: - type: Transform pos: 51.5,-13.5 parent: 2 - proto: filingCabinetRandom entities: - - uid: 9696 + - uid: 19073 components: - type: Transform pos: 46.5,13.5 parent: 2 - - uid: 17918 + - uid: 19074 components: - type: Transform pos: 55.5,-71.5 parent: 2 - - uid: 17920 + - uid: 19075 components: - type: Transform pos: 72.5,-36.5 parent: 2 - - uid: 24610 + - uid: 19076 components: - type: Transform pos: 47.5,13.5 parent: 2 - - uid: 33753 + - uid: 19077 components: - type: Transform pos: 20.5,-30.5 parent: 2 - - uid: 35082 + - uid: 19078 components: - type: Transform pos: 48.5,21.5 parent: 2 - proto: filingCabinetTall entities: - - uid: 15716 + - uid: 19079 components: - type: Transform pos: 49.5,-23.5 parent: 2 - - uid: 33752 + - uid: 19080 components: - type: Transform pos: 17.5,-27.5 parent: 2 - proto: FireAlarm entities: - - uid: 17921 + - uid: 19081 components: - type: Transform rot: -1.5707963267948966 rad @@ -127647,36 +128900,36 @@ entities: parent: 2 - type: DeviceList devices: - - 18126 - - 18127 - - 18128 - - 18125 - - 18124 - - 18123 - - 18089 - - 18071 - - 18072 - - 18272 - - 18120 - - 18121 - - 18122 - - 805 - - uid: 17922 + - 19342 + - 19343 + - 19344 + - 19341 + - 19340 + - 19339 + - 19305 + - 19290 + - 19291 + - 19487 + - 19336 + - 19337 + - 19338 + - 950 + - uid: 19082 components: - type: Transform pos: 50.5,-30.5 parent: 2 - type: DeviceList devices: - - 18126 - - 18127 - - 18128 - - 18251 - - 18250 - - 18252 - - 785 - - 18262 - - uid: 17923 + - 19342 + - 19343 + - 19344 + - 19467 + - 19466 + - 19468 + - 934 + - 19477 + - uid: 19083 components: - type: Transform rot: 1.5707963267948966 rad @@ -127684,17 +128937,17 @@ entities: parent: 2 - type: DeviceList devices: - - 18075 - - 18076 - - 18259 - - 18039 - - 18038 - - 18037 - - 786 - - 36940 - - 919 - - 351 - - uid: 17924 + - 19293 + - 19294 + - 19474 + - 19209 + - 19208 + - 19207 + - 935 + - 19669 + - 1047 + - 19244 + - uid: 19084 components: - type: Transform rot: 1.5707963267948966 rad @@ -127702,46 +128955,46 @@ entities: parent: 2 - type: DeviceList devices: - - 17998 - - 17999 - - 18013 - - 18014 - - 18016 - - 18015 - - 18376 - - 18010 - - 18009 - - 18012 - - 18011 - - 18123 - - 18124 - - 18125 - - 788 - - uid: 17925 + - 19151 + - 19152 + - 19166 + - 19167 + - 19169 + - 19168 + - 19556 + - 19163 + - 19162 + - 19165 + - 19164 + - 19339 + - 19340 + - 19341 + - 936 + - uid: 19085 components: - type: Transform pos: 72.5,-30.5 parent: 2 - type: DeviceList devices: - - 18255 - - 18254 - - 18253 - - 18256 - - 18257 - - 18259 - - 18260 - - 18261 - - 18263 - - 18264 - - 18082 - - 18081 - - 18080 - - 784 - - 36940 - - 919 - - 351 - - uid: 17926 + - 19471 + - 19470 + - 19469 + - 19472 + - 19473 + - 19474 + - 19475 + - 19476 + - 19478 + - 19479 + - 19298 + - 19297 + - 19296 + - 933 + - 19669 + - 1047 + - 19244 + - uid: 19086 components: - type: Transform rot: 1.5707963267948966 rad @@ -127749,15 +129002,15 @@ entities: parent: 2 - type: DeviceList devices: - - 18113 - - 18112 - - 18111 - - 18108 - - 18109 - - 18110 - - 18365 - - 869 - - uid: 17927 + - 19329 + - 19328 + - 19327 + - 19324 + - 19325 + - 19326 + - 19545 + - 1000 + - uid: 19087 components: - type: Transform rot: -1.5707963267948966 rad @@ -127765,17 +129018,17 @@ entities: parent: 2 - type: DeviceList devices: - - 18008 - - 18007 - - 18005 - - 18006 - - 18003 - - 18004 - - 18243 - - 18244 - - 18245 - - 794 - - uid: 17928 + - 19161 + - 19160 + - 19158 + - 19159 + - 19156 + - 19157 + - 19459 + - 19460 + - 19461 + - 941 + - uid: 19088 components: - type: Transform rot: 1.5707963267948966 rad @@ -127783,18 +129036,18 @@ entities: parent: 2 - type: DeviceList devices: - - 18243 - - 18244 - - 18245 - - 796 - - 18373 - - 18242 - - 18374 - - 18246 - - 18247 - - 17992 - - 17993 - - uid: 17929 + - 19459 + - 19460 + - 19461 + - 943 + - 19553 + - 19458 + - 19554 + - 19462 + - 19463 + - 19145 + - 19146 + - uid: 19089 components: - type: Transform rot: -1.5707963267948966 rad @@ -127802,17 +129055,17 @@ entities: parent: 2 - type: DeviceList devices: - - 17992 - - 17993 - - 18248 - - 18249 - - 17994 - - 17997 - - 17995 - - 17996 - - 18372 - - 797 - - uid: 17930 + - 19145 + - 19146 + - 19464 + - 19465 + - 19147 + - 19150 + - 19148 + - 19149 + - 19552 + - 944 + - uid: 19090 components: - type: Transform rot: 1.5707963267948966 rad @@ -127820,13 +129073,13 @@ entities: parent: 2 - type: DeviceList devices: - - 798 - - 17998 - - 17999 - - 18000 - - 17996 - - 17995 - - uid: 17931 + - 945 + - 19151 + - 19152 + - 19153 + - 19149 + - 19148 + - uid: 19091 components: - type: Transform rot: -1.5707963267948966 rad @@ -127834,11 +129087,11 @@ entities: parent: 2 - type: DeviceList devices: - - 799 - - 18000 - - 18013 - - 18014 - - uid: 17932 + - 946 + - 19153 + - 19166 + - 19167 + - uid: 19092 components: - type: Transform rot: 1.5707963267948966 rad @@ -127846,10 +129099,10 @@ entities: parent: 2 - type: DeviceList devices: - - 18017 - - 18018 - - 801 - - uid: 17933 + - 19170 + - 19171 + - 948 + - uid: 19093 components: - type: Transform rot: 1.5707963267948966 rad @@ -127857,13 +129110,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18257 - - 18256 - - 18260 - - 18261 - - 18267 - - 806 - - uid: 17934 + - 19473 + - 19472 + - 19475 + - 19476 + - 19482 + - 951 + - uid: 19094 components: - type: Transform rot: 1.5707963267948966 rad @@ -127871,11 +129124,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18263 - - 18264 - - 807 - - 18266 - - uid: 17935 + - 19478 + - 19479 + - 952 + - 19481 + - uid: 19095 components: - type: Transform rot: -1.5707963267948966 rad @@ -127883,61 +129136,61 @@ entities: parent: 2 - type: DeviceList devices: - - 18086 - - 18087 - - 18088 - - 18268 - - 18082 - - 18081 - - 18080 - - 18083 - - 18084 - - 18085 - - 808 - - uid: 17936 + - 19302 + - 19303 + - 19304 + - 19483 + - 19298 + - 19297 + - 19296 + - 19299 + - 19300 + - 19301 + - 953 + - uid: 19096 components: - type: Transform pos: 92.5,-20.5 parent: 2 - type: DeviceList devices: - - 18086 - - 18087 - - 18088 - - 18270 - - 809 - - uid: 17937 + - 19302 + - 19303 + - 19304 + - 19485 + - 954 + - uid: 19097 components: - type: Transform pos: 90.5,-38.5 parent: 2 - type: DeviceList devices: - - 18083 - - 18084 - - 18085 - - 810 - - 18269 - - uid: 17947 + - 19299 + - 19300 + - 19301 + - 955 + - 19484 + - uid: 19098 components: - type: Transform pos: 32.5,-30.5 parent: 2 - type: DeviceList devices: - - 18072 - - 18071 - - 18089 - - 18099 - - 18100 - - 18101 - - 18131 - - 18130 - - 18129 - - 825 - - 22011 - - 22144 - - uid: 17948 + - 19291 + - 19290 + - 19305 + - 19315 + - 19316 + - 19317 + - 19347 + - 19346 + - 19345 + - 957 + - 24396 + - 24626 + - uid: 19099 components: - type: Transform rot: -1.5707963267948966 rad @@ -127945,30 +129198,30 @@ entities: parent: 2 - type: DeviceList devices: - - 18129 - - 18130 - - 18131 - - 18138 - - 18139 - - 18140 - - 826 - - uid: 17949 + - 19345 + - 19346 + - 19347 + - 19354 + - 19355 + - 19356 + - 958 + - uid: 19100 components: - type: Transform pos: 25.5,-1.5 parent: 2 - type: DeviceList devices: - - 18138 - - 18139 - - 18140 - - 827 - - 18333 - - 18309 - - 18134 - - 18133 - - 18132 - - uid: 17950 + - 19354 + - 19355 + - 19356 + - 959 + - 19513 + - 19490 + - 19350 + - 19349 + - 19348 + - uid: 19101 components: - type: Transform rot: -1.5707963267948966 rad @@ -127976,33 +129229,33 @@ entities: parent: 2 - type: DeviceList devices: - - 18309 - - 18310 - - 828 - - uid: 17951 + - 19490 + - 19491 + - 960 + - uid: 19102 components: - type: Transform pos: 2.5,5.5 parent: 2 - type: DeviceList devices: - - 18132 - - 18133 - - 18134 - - 18144 - - 18145 - - 18146 - - 18312 - - 18311 - - 18381 - - 18383 - - 18382 - - 18141 - - 18142 - - 18143 - - 829 - - 830 - - uid: 17952 + - 19348 + - 19349 + - 19350 + - 19360 + - 19361 + - 19362 + - 19493 + - 19492 + - 19558 + - 19560 + - 19559 + - 19357 + - 19358 + - 19359 + - 961 + - 962 + - uid: 19103 components: - type: Transform rot: 1.5707963267948966 rad @@ -128010,50 +129263,49 @@ entities: parent: 2 - type: DeviceList devices: - - 18144 - - 18145 - - 18146 - - 18315 - - 18314 - - 18313 - - 18318 - - 18319 - - 18320 - - 18321 - - 831 - - uid: 17953 + - 19360 + - 19361 + - 19362 + - 19496 + - 19495 + - 19494 + - 19499 + - 19500 + - 19501 + - 19502 + - 963 + - uid: 19104 components: - type: Transform pos: 6.5,12.5 parent: 2 - type: DeviceList devices: - - 18314 - - 18313 - - 832 - - uid: 17954 + - 19495 + - 19494 + - 964 + - uid: 19105 components: - type: Transform pos: -18.5,2.5 parent: 2 - type: DeviceList devices: - - 18141 - - 18142 - - 18143 - - 839 - - 18327 - - 18326 - - 18325 - - 18328 - - 18329 - - 18330 - - 18135 - - 18136 - - 18137 - - 34407 - - 34408 - - uid: 17955 + - 19357 + - 19358 + - 19359 + - 971 + - 19507 + - 19506 + - 19505 + - 19508 + - 19509 + - 19510 + - 19351 + - 19352 + - 19353 + - 1073 + - uid: 19106 components: - type: Transform rot: -1.5707963267948966 rad @@ -128061,16 +129313,16 @@ entities: parent: 2 - type: DeviceList devices: - - 18327 - - 18326 - - 18328 - - 18329 - - 18331 - - 18334 - - 18332 - - 841 - - 789 - - uid: 17956 + - 19507 + - 19506 + - 19508 + - 19509 + - 19511 + - 19514 + - 19512 + - 972 + - 937 + - uid: 19107 components: - type: Transform rot: -1.5707963267948966 rad @@ -128078,14 +129330,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18135 - - 18136 - - 18137 - - 18152 - - 18151 - - 18150 - - 842 - - uid: 17957 + - 19351 + - 19352 + - 19353 + - 19368 + - 19367 + - 19366 + - 973 + - uid: 19108 components: - type: Transform rot: 1.5707963267948966 rad @@ -128093,39 +129345,39 @@ entities: parent: 2 - type: DeviceList devices: - - 18152 - - 18151 - - 18150 - - 18335 - - 18206 - - 18207 - - 18208 - - 18114 - - 18115 - - 18116 - - 843 - - uid: 17958 + - 19368 + - 19367 + - 19366 + - 19515 + - 19422 + - 19423 + - 19424 + - 19330 + - 19331 + - 19332 + - 974 + - uid: 19109 components: - type: Transform pos: -39.5,-35.5 parent: 2 - type: DeviceList devices: - - 18206 - - 18207 - - 18208 - - 18209 - - 18210 - - 18211 - - 18213 - - 18212 - - 18214 - - 844 - - 18338 - - 18337 - - 18336 - - 18339 - - uid: 17959 + - 19422 + - 19423 + - 19424 + - 19425 + - 19426 + - 19427 + - 19429 + - 19428 + - 19430 + - 975 + - 19518 + - 19517 + - 19516 + - 19519 + - uid: 19110 components: - type: Transform rot: -1.5707963267948966 rad @@ -128133,42 +129385,42 @@ entities: parent: 2 - type: DeviceList devices: - - 18336 - - 18337 - - 18205 - - 18204 - - 18203 - - 18347 - - 18348 - - 18354 - - 18351 - - 18352 - - 18353 - - 18350 - - 18349 - - 847 - - 846 - - 18055 - - uid: 17960 + - 19516 + - 19517 + - 19421 + - 19420 + - 19419 + - 19527 + - 19528 + - 19534 + - 19531 + - 19532 + - 19533 + - 19530 + - 19529 + - 978 + - 977 + - 19274 + - uid: 19111 components: - type: Transform pos: -46.5,-26.5 parent: 2 - type: DeviceList devices: - - 18340 - - 18205 - - 18204 - - 18203 - - 18346 - - 18341 - - 18342 - - 18345 - - 18344 - - 848 - - 36940 - - 919 - - uid: 17961 + - 19520 + - 19421 + - 19420 + - 19419 + - 19526 + - 19521 + - 19522 + - 19525 + - 19524 + - 979 + - 19669 + - 1047 + - uid: 19112 components: - type: Transform rot: 1.5707963267948966 rad @@ -128176,16 +129428,16 @@ entities: parent: 2 - type: DeviceList devices: - - 18351 - - 18352 - - 18353 - - 18355 - - 18356 - - 18358 - - 18359 - - 18360 - - 853 - - uid: 17962 + - 19531 + - 19532 + - 19533 + - 19535 + - 19536 + - 19538 + - 19539 + - 19540 + - 984 + - uid: 19113 components: - type: Transform rot: -1.5707963267948966 rad @@ -128193,27 +129445,27 @@ entities: parent: 2 - type: DeviceList devices: - - 18119 - - 18118 - - 18117 - - 18209 - - 18210 - - 18211 - - 18213 - - 18212 - - 18214 - - 18367 - - 18368 - - 18369 - - 18199 - - 18200 - - 18201 - - 18215 - - 18153 - - 18154 - - 18155 - - 856 - - uid: 17963 + - 19335 + - 19334 + - 19333 + - 19425 + - 19426 + - 19427 + - 19429 + - 19428 + - 19430 + - 19547 + - 19548 + - 19549 + - 19415 + - 19416 + - 19417 + - 19431 + - 19369 + - 19370 + - 19371 + - 987 + - uid: 19114 components: - type: Transform rot: -1.5707963267948966 rad @@ -128221,23 +129473,23 @@ entities: parent: 2 - type: DeviceList devices: - - 18197 - - 18196 - - 18198 - - 18199 - - 18200 - - 18201 - - 18202 - - 18195 - - 18194 - - 18192 - - 18193 - - 18385 - - 18386 - - 18387 - - 18191 - - 859 - - uid: 17964 + - 19413 + - 19412 + - 19414 + - 19415 + - 19416 + - 19417 + - 19418 + - 19411 + - 19410 + - 19408 + - 19409 + - 19562 + - 19563 + - 19564 + - 19407 + - 990 + - uid: 19115 components: - type: Transform rot: -1.5707963267948966 rad @@ -128245,29 +129497,29 @@ entities: parent: 2 - type: DeviceList devices: - - 18190 - - 18385 - - 18386 - - 18387 - - 18187 - - 18188 - - 18189 - - 858 - - uid: 17965 + - 19406 + - 19562 + - 19563 + - 19564 + - 19403 + - 19404 + - 19405 + - 989 + - uid: 19116 components: - type: Transform pos: -49.5,-63.5 parent: 2 - type: DeviceList devices: - - 18192 - - 18193 - - 18194 - - 18225 - - 18222 - - 18227 - - 862 - - uid: 17966 + - 19408 + - 19409 + - 19410 + - 19441 + - 19438 + - 19443 + - 993 + - uid: 19117 components: - type: Transform rot: 1.5707963267948966 rad @@ -128275,12 +129527,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18222 - - 18074 - - 18223 - - 18370 - - 864 - - uid: 17967 + - 19438 + - 19292 + - 19439 + - 19550 + - 995 + - uid: 19118 components: - type: Transform rot: 1.5707963267948966 rad @@ -128288,17 +129540,17 @@ entities: parent: 2 - type: DeviceList devices: - - 868 - - 18116 - - 18115 - - 18114 - - 18117 - - 18118 - - 18119 - - 18111 - - 18112 - - 18113 - - uid: 17968 + - 999 + - 19332 + - 19331 + - 19330 + - 19333 + - 19334 + - 19335 + - 19327 + - 19328 + - 19329 + - uid: 19119 components: - type: Transform rot: -1.5707963267948966 rad @@ -128306,14 +129558,14 @@ entities: parent: 2 - type: DeviceList devices: - - 18110 - - 18109 - - 18108 - - 18105 - - 18106 - - 18107 - - 870 - - uid: 17969 + - 19326 + - 19325 + - 19324 + - 19321 + - 19322 + - 19323 + - 1001 + - uid: 19120 components: - type: Transform rot: 1.5707963267948966 rad @@ -128321,20 +129573,20 @@ entities: parent: 2 - type: DeviceList devices: - - 18105 - - 18106 - - 18107 - - 18176 - - 18177 - - 18175 - - 18174 - - 18173 - - 18389 - - 18102 - - 18103 - - 18104 - - 871 - - uid: 17970 + - 19321 + - 19322 + - 19323 + - 19392 + - 19393 + - 19391 + - 19390 + - 19389 + - 19566 + - 19318 + - 19319 + - 19320 + - 1002 + - uid: 19121 components: - type: Transform rot: 3.141592653589793 rad @@ -128342,13 +129594,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18180 - - 18179 - - 18178 - - 18181 - - 18182 - - 873 - - uid: 17971 + - 19396 + - 19395 + - 19394 + - 19397 + - 19398 + - 1004 + - uid: 19122 components: - type: Transform rot: 3.141592653589793 rad @@ -128356,21 +129608,21 @@ entities: parent: 2 - type: DeviceList devices: - - 18102 - - 18103 - - 18104 - - 18172 - - 18171 - - 18390 - - 876 - - 18159 - - 18160 - - 18161 - - 18234 - - 18092 - - 18091 - - 18090 - - uid: 17972 + - 19318 + - 19319 + - 19320 + - 19388 + - 19387 + - 19567 + - 1007 + - 19375 + - 19376 + - 19377 + - 19450 + - 19308 + - 19307 + - 19306 + - uid: 19123 components: - type: Transform rot: 3.141592653589793 rad @@ -128378,13 +129630,13 @@ entities: parent: 2 - type: DeviceList devices: - - 18167 - - 18232 - - 18231 - - 18165 - - 18166 - - 18393 - - uid: 17973 + - 19383 + - 19448 + - 19447 + - 19381 + - 19382 + - 19570 + - uid: 19124 components: - type: Transform rot: 1.5707963267948966 rad @@ -128392,15 +129644,15 @@ entities: parent: 2 - type: DeviceList devices: - - 18230 - - 18167 - - 18393 - - 18166 - - 18165 - - 18232 - - 18231 - - 878 - - uid: 17974 + - 19446 + - 19383 + - 19570 + - 19382 + - 19381 + - 19448 + - 19447 + - 1009 + - uid: 19125 components: - type: Transform rot: -1.5707963267948966 rad @@ -128408,17 +129660,17 @@ entities: parent: 2 - type: DeviceList devices: - - 18090 - - 18091 - - 18092 - - 18235 - - 18236 - - 18237 - - 18095 - - 18094 - - 18093 - - 880 - - uid: 17975 + - 19306 + - 19307 + - 19308 + - 19451 + - 19452 + - 19453 + - 19311 + - 19310 + - 19309 + - 1011 + - uid: 19126 components: - type: Transform rot: -1.5707963267948966 rad @@ -128426,16 +129678,16 @@ entities: parent: 2 - type: DeviceList devices: - - 18095 - - 18094 - - 18093 - - 18238 - - 18239 - - 18096 - - 18097 - - 18098 - - 881 - - uid: 17976 + - 19311 + - 19310 + - 19309 + - 19454 + - 19455 + - 19312 + - 19313 + - 19314 + - 1012 + - uid: 19127 components: - type: Transform rot: -1.5707963267948966 rad @@ -128443,56 +129695,56 @@ entities: parent: 2 - type: DeviceList devices: - - 18371 - - 18096 - - 18097 - - 18098 - - 18099 - - 18100 - - 18101 - - 884 - - 39591 - - 39593 - - 39592 - - uid: 17977 + - 19551 + - 19312 + - 19313 + - 19314 + - 19315 + - 19316 + - 19317 + - 1015 + - 1080 + - 19228 + - 19679 + - uid: 19128 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-94.5 parent: 2 - - uid: 17978 + - uid: 19129 components: - type: Transform pos: -53.5,-41.5 parent: 2 - type: DeviceList devices: - - 18402 - - 18153 - - 18154 - - 18155 - - 18158 - - 18157 - - 18156 - - 18216 - - 887 - - uid: 17979 + - 19576 + - 19369 + - 19370 + - 19371 + - 19374 + - 19373 + - 19372 + - 19432 + - 1017 + - uid: 19130 components: - type: Transform pos: -63.5,-41.5 parent: 2 - type: DeviceList devices: - - 18158 - - 18157 - - 18156 - - 18220 - - 18219 - - 18218 - - 18401 - - 18217 - - 888 - - uid: 17980 + - 19374 + - 19373 + - 19372 + - 19436 + - 19435 + - 19434 + - 19575 + - 19433 + - 1018 + - uid: 19131 components: - type: Transform rot: -1.5707963267948966 rad @@ -128500,16 +129752,16 @@ entities: parent: 2 - type: DeviceList devices: - - 18220 - - 18219 - - 18218 - - 18221 - - 18404 - - 18405 - - 18406 - - 18407 - - 889 - - uid: 17981 + - 19436 + - 19435 + - 19434 + - 19437 + - 19578 + - 19579 + - 19580 + - 19581 + - 1019 + - uid: 19132 components: - type: Transform rot: 1.5707963267948966 rad @@ -128517,10 +129769,10 @@ entities: parent: 2 - type: DeviceList devices: - - 890 - - 18403 - - 18221 - - uid: 17982 + - 1020 + - 19577 + - 19437 + - uid: 19133 components: - type: Transform rot: -1.5707963267948966 rad @@ -128528,11 +129780,11 @@ entities: parent: 2 - type: DeviceList devices: - - 909 - - 18447 - - 18448 - - 18451 - - uid: 17984 + - 1039 + - 19618 + - 19619 + - 19622 + - uid: 19134 components: - type: Transform rot: -1.5707963267948966 rad @@ -128540,15 +129792,15 @@ entities: parent: 2 - type: DeviceList devices: - - 18445 - - 18041 - - 18044 - - 18045 - - 18043 - - 18042 - - 18046 - - 918 - - uid: 17985 + - 19617 + - 19211 + - 19214 + - 19215 + - 19213 + - 19212 + - 19216 + - 1046 + - uid: 19135 components: - type: Transform rot: 1.5707963267948966 rad @@ -128556,45 +129808,29 @@ entities: parent: 2 - type: DeviceList devices: - - 18027 - - 18026 - - 18041 - - 18044 - - 18045 - - 18043 - - 18042 - - 18046 - - 18487 - - 18468 - - 18472 - - 18473 - - 18474 - - 18475 - - 18476 - - 18477 - - 18479 - - 18480 - - 18481 - - 18482 - - 18483 - - 824 - - uid: 38224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-10.5 - parent: 37887 - - type: DeviceList - devices: - - 37901 - - 38226 - - 38227 - - 38228 - - 38229 - - 38230 - - 38231 - - 38225 - - uid: 39547 + - 19179 + - 19178 + - 19211 + - 19214 + - 19215 + - 19213 + - 19212 + - 19216 + - 19651 + - 19632 + - 19636 + - 19637 + - 19638 + - 19639 + - 19640 + - 19641 + - 19643 + - 19644 + - 19645 + - 19646 + - 19647 + - 956 + - uid: 19136 components: - type: Transform rot: 1.5707963267948966 rad @@ -128602,20 +129838,20 @@ entities: parent: 2 - type: DeviceList devices: - - 39493 - - 39492 - - 39495 - - 39494 - - 39490 - - 39491 - - 39485 - - 39486 - - 39487 - - 39484 - - 39545 - - 39546 - - 39488 - - uid: 39820 + - 24519 + - 24756 + - 24757 + - 24520 + - 24518 + - 24755 + - 19672 + - 19673 + - 19674 + - 1076 + - 19226 + - 19227 + - 1077 + - uid: 19137 components: - type: Transform rot: 3.141592653589793 rad @@ -128623,11 +129859,11 @@ entities: parent: 2 - type: DeviceList devices: - - 39810 - - 39811 - - 17994 - - 18002 - - uid: 40123 + - 24522 + - 24759 + - 19147 + - 19155 + - uid: 19138 components: - type: Transform rot: 1.5707963267948966 rad @@ -128635,10 +129871,10 @@ entities: parent: 2 - type: DeviceList devices: - - 40125 - - 40122 - - 40121 - - uid: 41016 + - 1083 + - 19233 + - 19232 + - uid: 19139 components: - type: Transform rot: -1.5707963267948966 rad @@ -128646,33 +129882,48 @@ entities: parent: 2 - type: DeviceList devices: - - 41015 - - 32729 - - 29048 - - 27324 -- proto: FireAxeCabinetFilled - entities: - - uid: 5349 + - 1084 + - 19664 + - 19662 + - 19661 + - uid: 41170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,20.5 - parent: 2 - - uid: 17987 + rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 40828 + - type: DeviceList + devices: + - 40842 + - 41172 + - 41173 + - 41174 + - 41175 + - 41176 + - 41177 + - 41171 +- proto: FireAxeCabinetFilled + entities: + - uid: 19140 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-88.5 parent: 2 - - uid: 17988 + - uid: 19141 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-95.5 parent: 2 + - uid: 19142 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 - proto: FireAxeCabinetOpen entities: - - uid: 33764 + - uid: 19143 components: - type: Transform rot: 1.5707963267948966 rad @@ -128680,195 +129931,195 @@ entities: parent: 2 - proto: FireBombEmpty entities: - - uid: 17990 + - uid: 19144 components: - type: Transform pos: -57.6651,-90.91386 parent: 2 - proto: Firelock entities: - - uid: 17992 + - uid: 19145 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-61.5 parent: 2 - - uid: 17993 + - uid: 19146 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-61.5 parent: 2 - - uid: 17994 + - uid: 19147 components: - type: Transform pos: 54.5,-56.5 parent: 2 - type: DeviceNetwork deviceLists: - - 39820 - - uid: 17995 + - 19137 + - uid: 19148 components: - type: Transform pos: 45.5,-55.5 parent: 2 - - uid: 17996 + - uid: 19149 components: - type: Transform pos: 43.5,-55.5 parent: 2 - - uid: 17997 + - uid: 19150 components: - type: Transform pos: 48.5,-49.5 parent: 2 - - uid: 17998 + - uid: 19151 components: - type: Transform pos: 45.5,-50.5 parent: 2 - - uid: 17999 + - uid: 19152 components: - type: Transform pos: 43.5,-50.5 parent: 2 - - uid: 18000 + - uid: 19153 components: - type: Transform pos: 42.5,-51.5 parent: 2 - - uid: 18001 + - uid: 19154 components: - type: Transform pos: 40.5,-53.5 parent: 2 - - uid: 18002 + - uid: 19155 components: - type: Transform pos: 61.5,-54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 39820 - - uid: 18003 + - 19137 + - uid: 19156 components: - type: Transform pos: 46.5,-88.5 parent: 2 - - uid: 18004 + - uid: 19157 components: - type: Transform pos: 45.5,-88.5 parent: 2 - - uid: 18005 + - uid: 19158 components: - type: Transform pos: 47.5,-87.5 parent: 2 - - uid: 18006 + - uid: 19159 components: - type: Transform pos: 47.5,-86.5 parent: 2 - - uid: 18007 + - uid: 19160 components: - type: Transform pos: 47.5,-83.5 parent: 2 - - uid: 18008 + - uid: 19161 components: - type: Transform pos: 44.5,-83.5 parent: 2 - - uid: 18009 + - uid: 19162 components: - type: Transform pos: 46.5,-38.5 parent: 2 - - uid: 18010 + - uid: 19163 components: - type: Transform pos: 46.5,-39.5 parent: 2 - - uid: 18011 + - uid: 19164 components: - type: Transform pos: 42.5,-37.5 parent: 2 - - uid: 18012 + - uid: 19165 components: - type: Transform pos: 42.5,-38.5 parent: 2 - - uid: 18013 + - uid: 19166 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-48.5 parent: 2 - - uid: 18014 + - uid: 19167 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-47.5 parent: 2 - - uid: 18015 + - uid: 19168 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-47.5 parent: 2 - - uid: 18016 + - uid: 19169 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-48.5 parent: 2 - - uid: 18017 + - uid: 19170 components: - type: Transform pos: 60.5,-58.5 parent: 2 - - uid: 18018 + - uid: 19171 components: - type: Transform pos: 60.5,-60.5 parent: 2 - - uid: 18020 + - uid: 19172 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-99.5 parent: 2 - - uid: 18021 + - uid: 19173 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-97.5 parent: 2 - - uid: 18022 + - uid: 19174 components: - type: Transform pos: 45.5,-91.5 parent: 2 - - uid: 18023 + - uid: 19175 components: - type: Transform pos: 46.5,-91.5 parent: 2 - - uid: 18024 + - uid: 19176 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-95.5 parent: 2 - - uid: 18025 + - uid: 19177 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-95.5 parent: 2 - - uid: 18026 + - uid: 19178 components: - type: Transform rot: 3.141592653589793 rad @@ -128876,9 +130127,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 17985 - - uid: 18027 + - 247 + - 19135 + - uid: 19179 components: - type: Transform rot: 3.141592653589793 rad @@ -128886,42 +130137,42 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 17985 - - uid: 30954 + - 247 + - 19135 + - uid: 19180 components: - type: Transform pos: 76.5,-2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 30927 - - 40518 - - uid: 30967 + - 275 + - 290 + - uid: 19181 components: - type: Transform pos: 77.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 30927 - - uid: 30968 + - 275 + - uid: 19182 components: - type: Transform pos: 74.5,-7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 30927 + - 275 - proto: FirelockEdge entities: - - uid: 2615 + - uid: 19183 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-18.5 parent: 2 - - uid: 2742 + - uid: 19184 components: - type: Transform rot: -1.5707963267948966 rad @@ -128929,25 +130180,25 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2741 - - 27662 - - uid: 2743 + - 266 + - 272 + - uid: 19185 components: - type: Transform pos: 63.5,-13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2741 - - uid: 2744 + - 266 + - uid: 19186 components: - type: Transform pos: 61.5,-13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2741 - - uid: 9353 + - 266 + - uid: 19187 components: - type: Transform rot: 3.141592653589793 rad @@ -128955,8 +130206,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 7699 - - uid: 9354 + - 267 + - uid: 19188 components: - type: Transform rot: 3.141592653589793 rad @@ -128964,8 +130215,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 7699 - - uid: 9928 + - 267 + - uid: 19189 components: - type: Transform rot: 3.141592653589793 rad @@ -128973,9 +130224,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2714 - - 17835 - - uid: 9929 + - 265 + - 268 + - uid: 19190 components: - type: Transform rot: -1.5707963267948966 rad @@ -128983,8 +130234,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 7699 - - uid: 9930 + - 267 + - uid: 19191 components: - type: Transform rot: 1.5707963267948966 rad @@ -128992,8 +130243,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2714 - - uid: 11603 + - 265 + - uid: 19192 components: - type: Transform rot: -1.5707963267948966 rad @@ -129001,8 +130252,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 - - uid: 11669 + - 283 + - uid: 19193 components: - type: Transform rot: 1.5707963267948966 rad @@ -129010,8 +130261,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 - - uid: 12189 + - 283 + - uid: 19194 components: - type: Transform rot: 1.5707963267948966 rad @@ -129019,8 +130270,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 - - uid: 12293 + - 283 + - uid: 19195 components: - type: Transform rot: 1.5707963267948966 rad @@ -129028,8 +130279,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 - - uid: 12304 + - 283 + - uid: 19196 components: - type: Transform rot: -1.5707963267948966 rad @@ -129037,91 +130288,94 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 - - uid: 15166 + - 283 + - uid: 19197 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-18.5 parent: 2 - - uid: 18028 + - uid: 19198 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,23.5 parent: 2 - - uid: 18029 + - uid: 19199 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,23.5 parent: 2 - - uid: 18030 + - uid: 19200 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,26.5 parent: 2 - - uid: 18031 + - uid: 19201 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,26.5 parent: 2 - - uid: 18032 + - uid: 19202 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,22.5 parent: 2 - - uid: 18033 + - uid: 19203 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,21.5 parent: 2 - - uid: 18034 + - uid: 19204 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,22.5 parent: 2 - - uid: 18035 + - uid: 19205 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,21.5 parent: 2 - - uid: 18036 + - uid: 19206 components: - type: Transform pos: -8.5,21.5 parent: 2 - - uid: 18037 + - type: DeviceNetwork + deviceLists: + - 293 + - uid: 19207 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-41.5 parent: 2 - - uid: 18038 + - uid: 19208 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-35.5 parent: 2 - - uid: 18039 + - uid: 19209 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-38.5 parent: 2 - - uid: 18040 + - uid: 19210 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-65.5 parent: 2 - - uid: 18041 + - uid: 19211 components: - type: Transform rot: 3.141592653589793 rad @@ -129129,11 +130383,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 173 - - 17984 - - 17985 - - uid: 18042 + - 247 + - 252 + - 19134 + - 19135 + - uid: 19212 components: - type: Transform rot: 3.141592653589793 rad @@ -129141,11 +130395,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 173 - - 17984 - - 17985 - - uid: 18043 + - 247 + - 252 + - 19134 + - 19135 + - uid: 19213 components: - type: Transform rot: 3.141592653589793 rad @@ -129153,11 +130407,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 173 - - 17984 - - 17985 - - uid: 18044 + - 247 + - 252 + - 19134 + - 19135 + - uid: 19214 components: - type: Transform rot: 3.141592653589793 rad @@ -129165,11 +130419,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 173 - - 17984 - - 17985 - - uid: 18045 + - 247 + - 252 + - 19134 + - 19135 + - uid: 19215 components: - type: Transform rot: 3.141592653589793 rad @@ -129177,11 +130431,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 173 - - 17984 - - 17985 - - uid: 18046 + - 247 + - 252 + - 19134 + - 19135 + - uid: 19216 components: - type: Transform rot: 3.141592653589793 rad @@ -129189,11 +130443,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 173 - - 17984 - - 17985 - - uid: 18047 + - 247 + - 252 + - 19134 + - 19135 + - uid: 19217 components: - type: Transform rot: -1.5707963267948966 rad @@ -129201,46 +130455,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 179 - - uid: 18048 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,22.5 - parent: 2 - - uid: 18049 - components: - - type: Transform - pos: 38.5,22.5 - parent: 2 - - uid: 21841 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 21045 - - type: DeviceNetwork - deviceLists: - - 40934 - - uid: 21854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 21045 - - type: DeviceNetwork - deviceLists: - - 40934 - - uid: 21857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 21045 - - type: DeviceNetwork - deviceLists: - - 40934 - - uid: 24335 + - 256 + - uid: 19218 components: - type: Transform rot: -1.5707963267948966 rad @@ -129248,8 +130464,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 30927 - - uid: 27021 + - 275 + - uid: 19219 components: - type: Transform rot: 3.141592653589793 rad @@ -129257,8 +130473,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 39739 - - uid: 31064 + - 278 + - uid: 19220 components: - type: Transform rot: 3.141592653589793 rad @@ -129266,9 +130482,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 30927 - - 1595 - - uid: 31092 + - 275 + - 262 + - uid: 19221 components: - type: Transform rot: 3.141592653589793 rad @@ -129276,9 +130492,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 30927 - - 30920 - - uid: 31095 + - 275 + - 274 + - uid: 19222 components: - type: Transform rot: 3.141592653589793 rad @@ -129286,9 +130502,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 30927 - - 543 - - uid: 31097 + - 275 + - 259 + - uid: 19223 components: - type: Transform rot: -1.5707963267948966 rad @@ -129296,25 +130512,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 30927 - - uid: 32588 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-1.5 - parent: 21045 - - type: DeviceNetwork - deviceLists: - - 40934 - - uid: 34351 + - 275 + - uid: 19224 components: - type: Transform pos: 10.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 39739 - - uid: 34352 + - 278 + - uid: 19225 components: - type: Transform rot: 3.141592653589793 rad @@ -129322,17 +130529,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 39739 - - uid: 34407 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17954 - - uid: 39545 + - 278 + - uid: 19226 components: - type: Transform rot: -1.5707963267948966 rad @@ -129340,8 +130538,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 39547 - - uid: 39546 + - 19136 + - uid: 19227 components: - type: Transform rot: 1.5707963267948966 rad @@ -129349,25 +130547,25 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 39547 - - uid: 39593 + - 19136 + - uid: 19228 components: - type: Transform pos: 27.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17976 - - 39606 - - uid: 40071 + - 19127 + - 277 + - uid: 19229 components: - type: Transform pos: 17.5,-19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 39739 - - uid: 40072 + - 278 + - uid: 19230 components: - type: Transform rot: 3.141592653589793 rad @@ -129375,8 +130573,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40074 - - uid: 40073 + - 279 + - uid: 19231 components: - type: Transform rot: 1.5707963267948966 rad @@ -129384,8 +130582,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40074 - - uid: 40121 + - 279 + - uid: 19232 components: - type: Transform rot: 1.5707963267948966 rad @@ -129393,18 +130591,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40124 - - 40123 - - uid: 40122 + - 280 + - 19138 + - uid: 19233 components: - type: Transform pos: -16.5,-40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40124 - - 40123 - - uid: 40444 + - 280 + - 19138 + - uid: 19234 components: - type: Transform rot: 3.141592653589793 rad @@ -129412,8 +130610,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 27662 - - uid: 40464 + - 272 + - uid: 19235 components: - type: Transform rot: 1.5707963267948966 rad @@ -129421,8 +130619,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 394 - - uid: 40465 + - 258 + - uid: 19236 components: - type: Transform rot: -1.5707963267948966 rad @@ -129430,17 +130628,98 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 394 + - 258 + - uid: 19237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 293 + - uid: 19238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 293 + - uid: 19239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 293 + - uid: 19240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 298 + - uid: 19241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 164 + - uid: 40730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 40666 + - type: DeviceNetwork + deviceLists: + - 40667 + - uid: 40731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 40666 + - type: DeviceNetwork + deviceLists: + - 40667 + - uid: 40732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 40666 + - type: DeviceNetwork + deviceLists: + - 40667 + - uid: 40733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 40666 + - type: DeviceNetwork + deviceLists: + - 40667 - proto: FirelockElectronics entities: - - uid: 18050 + - uid: 19242 components: - type: Transform pos: 36.504063,-37.886707 parent: 2 - proto: FirelockGlass entities: - - uid: 180 + - uid: 19243 components: - type: Transform rot: 1.5707963267948966 rad @@ -129448,9 +130727,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40451 - - 40453 - - uid: 351 + - 282 + - 283 + - uid: 19244 components: - type: Transform rot: 1.5707963267948966 rad @@ -129458,10 +130737,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 49 - - 17925 - - 17923 - - uid: 542 + - 143 + - 19085 + - 19083 + - uid: 19245 components: - type: Transform rot: 1.5707963267948966 rad @@ -129469,23 +130748,23 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 19617 - - 40468 - - uid: 581 + - 269 + - 286 + - uid: 19246 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-77.5 parent: 2 - - uid: 2675 + - uid: 19247 components: - type: Transform pos: 46.5,-23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2712 - - uid: 6182 + - 264 + - uid: 19248 components: - type: Transform rot: -1.5707963267948966 rad @@ -129493,8 +130772,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 41017 - - uid: 7784 + - 292 + - uid: 19249 components: - type: Transform rot: 1.5707963267948966 rad @@ -129502,8 +130781,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 394 - - uid: 7785 + - 258 + - uid: 19250 components: - type: Transform rot: 1.5707963267948966 rad @@ -129511,30 +130790,30 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2071 - - 40468 - - uid: 9100 + - 263 + - 286 + - uid: 19251 components: - type: Transform pos: 26.5,-32.5 parent: 2 - - uid: 9351 + - uid: 19252 components: - type: Transform pos: 49.5,-16.5 parent: 2 - type: DeviceNetwork deviceLists: - - 27662 - - uid: 9719 + - 272 + - uid: 19253 components: - type: Transform pos: 56.5,-16.5 parent: 2 - type: DeviceNetwork deviceLists: - - 27662 - - uid: 11488 + - 272 + - uid: 19254 components: - type: Transform rot: 1.5707963267948966 rad @@ -129542,9 +130821,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 19617 - - 40468 - - uid: 11494 + - 269 + - 286 + - uid: 19255 components: - type: Transform rot: 1.5707963267948966 rad @@ -129552,9 +130831,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40451 - - 40453 - - uid: 11651 + - 282 + - 283 + - uid: 19256 components: - type: Transform rot: 1.5707963267948966 rad @@ -129562,8 +130841,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 27662 - - uid: 11661 + - 272 + - uid: 19257 components: - type: Transform rot: 1.5707963267948966 rad @@ -129571,8 +130850,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 27662 - - uid: 11664 + - 272 + - uid: 19258 components: - type: Transform rot: 1.5707963267948966 rad @@ -129580,8 +130859,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 27662 - - uid: 11765 + - 272 + - uid: 19259 components: - type: Transform rot: 1.5707963267948966 rad @@ -129589,9 +130868,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 58 - - 40451 - - uid: 11768 + - 150 + - 282 + - uid: 19260 components: - type: Transform rot: 1.5707963267948966 rad @@ -129599,9 +130878,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 58 - - 40451 - - uid: 11845 + - 150 + - 282 + - uid: 19261 components: - type: Transform rot: 1.5707963267948966 rad @@ -129609,9 +130888,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 58 - - 40451 - - uid: 11910 + - 150 + - 282 + - uid: 19262 components: - type: Transform rot: 1.5707963267948966 rad @@ -129619,8 +130898,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 58 - - uid: 12083 + - 150 + - uid: 19263 components: - type: Transform rot: 1.5707963267948966 rad @@ -129628,8 +130907,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 58 - - uid: 12988 + - 150 + - uid: 19264 components: - type: Transform rot: 1.5707963267948966 rad @@ -129637,16 +130916,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 58 - - uid: 13001 + - 150 + - uid: 19265 components: - type: Transform pos: 48.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2712 - - uid: 13006 + - 264 + - uid: 19266 components: - type: Transform rot: 1.5707963267948966 rad @@ -129654,9 +130933,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 27662 - - 40487 - - uid: 13374 + - 272 + - 288 + - uid: 19267 components: - type: Transform rot: -1.5707963267948966 rad @@ -129664,13 +130943,13 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40468 - - uid: 13869 + - 286 + - uid: 19268 components: - type: Transform pos: 51.5,-20.5 parent: 2 - - uid: 14825 + - uid: 19269 components: - type: Transform rot: 1.5707963267948966 rad @@ -129678,9 +130957,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 27662 - - 40487 - - uid: 14898 + - 272 + - 288 + - uid: 19270 components: - type: Transform rot: 1.5707963267948966 rad @@ -129688,9 +130967,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 27662 - - 40487 - - uid: 15364 + - 272 + - 288 + - uid: 19271 components: - type: Transform rot: 1.5707963267948966 rad @@ -129698,17 +130977,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40436 - - uid: 15606 + - 281 + - uid: 19272 components: - type: Transform pos: 66.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2071 - - 37871 - - uid: 17941 + - 263 + - 276 + - uid: 19273 components: - type: Transform rot: 1.5707963267948966 rad @@ -129716,24 +130995,24 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 394 - - 40468 - - uid: 18055 + - 258 + - 286 + - uid: 19274 components: - type: Transform pos: -39.5,-29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17959 - - 164 - - uid: 18056 + - 19110 + - 243 + - uid: 19275 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-53.5 parent: 2 - - uid: 18057 + - uid: 19276 components: - type: Transform rot: 3.141592653589793 rad @@ -129741,14 +131020,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 90 - - uid: 18058 + - 175 + - uid: 19277 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-26.5 parent: 2 - - uid: 18059 + - uid: 19278 components: - type: Transform rot: -1.5707963267948966 rad @@ -129756,14 +131035,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 178 - - uid: 18060 + - 255 + - uid: 19279 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-75.5 parent: 2 - - uid: 18061 + - uid: 19280 components: - type: Transform rot: 3.141592653589793 rad @@ -129771,17 +131050,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 40451 - - uid: 18062 + - 247 + - 282 + - uid: 19281 components: - type: Transform pos: -59.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 35 - - uid: 18063 + - 130 + - uid: 19282 components: - type: Transform rot: 3.141592653589793 rad @@ -129789,9 +131068,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 164 - - 86 - - uid: 18064 + - 243 + - 171 + - uid: 19283 components: - type: Transform rot: 3.141592653589793 rad @@ -129799,158 +131078,158 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 164 - - 86 - - uid: 18065 + - 243 + - 171 + - uid: 19284 components: - type: Transform pos: -72.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 142 - - 165 - - uid: 18066 + - 225 + - 244 + - uid: 19285 components: - type: Transform pos: -76.5,-16.5 parent: 2 - type: DeviceNetwork deviceLists: - - 166 - - uid: 18067 + - 245 + - uid: 19286 components: - type: Transform pos: -73.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 142 - - 165 - - uid: 18068 + - 225 + - 244 + - uid: 19287 components: - type: Transform pos: -74.5,-5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 165 - - 167 - - uid: 18069 + - 244 + - 246 + - uid: 19288 components: - type: Transform pos: -79.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 166 - - 167 - - uid: 18070 + - 245 + - 246 + - uid: 19289 components: - type: Transform pos: -69.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 167 - - 160 - - uid: 18071 + - 246 + - 239 + - uid: 19290 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-32.5 parent: 2 - - uid: 18072 + - uid: 19291 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-31.5 parent: 2 - - uid: 18074 + - uid: 19292 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-67.5 parent: 2 - - uid: 18075 + - uid: 19293 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-43.5 parent: 2 - - uid: 18076 + - uid: 19294 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-39.5 parent: 2 - - uid: 18079 + - uid: 19295 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-46.5 parent: 2 - - uid: 18080 + - uid: 19296 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-33.5 parent: 2 - - uid: 18081 + - uid: 19297 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-32.5 parent: 2 - - uid: 18082 + - uid: 19298 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-31.5 parent: 2 - - uid: 18083 + - uid: 19299 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,-39.5 parent: 2 - - uid: 18084 + - uid: 19300 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,-40.5 parent: 2 - - uid: 18085 + - uid: 19301 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,-41.5 parent: 2 - - uid: 18086 + - uid: 19302 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,-23.5 parent: 2 - - uid: 18087 + - uid: 19303 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,-22.5 parent: 2 - - uid: 18088 + - uid: 19304 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,-21.5 parent: 2 - - uid: 18089 + - uid: 19305 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-33.5 parent: 2 - - uid: 18090 + - uid: 19306 components: - type: Transform rot: 3.141592653589793 rad @@ -129958,8 +131237,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 156 - - uid: 18091 + - 238 + - uid: 19307 components: - type: Transform rot: 3.141592653589793 rad @@ -129967,8 +131246,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 156 - - uid: 18092 + - 238 + - uid: 19308 components: - type: Transform rot: 3.141592653589793 rad @@ -129976,62 +131255,62 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 156 - - uid: 18093 + - 238 + - uid: 19309 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-66.5 parent: 2 - - uid: 18094 + - uid: 19310 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-66.5 parent: 2 - - uid: 18095 + - uid: 19311 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-66.5 parent: 2 - - uid: 18096 + - uid: 19312 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-56.5 parent: 2 - - uid: 18097 + - uid: 19313 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-56.5 parent: 2 - - uid: 18098 + - uid: 19314 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-56.5 parent: 2 - - uid: 18099 + - uid: 19315 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-35.5 parent: 2 - - uid: 18100 + - uid: 19316 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-35.5 parent: 2 - - uid: 18101 + - uid: 19317 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-35.5 parent: 2 - - uid: 18102 + - uid: 19318 components: - type: Transform rot: 3.141592653589793 rad @@ -130039,8 +131318,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 156 - - uid: 18103 + - 238 + - uid: 19319 components: - type: Transform rot: 3.141592653589793 rad @@ -130048,8 +131327,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 156 - - uid: 18104 + - 238 + - uid: 19320 components: - type: Transform rot: 3.141592653589793 rad @@ -130057,284 +131336,284 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 156 - - uid: 18105 + - 238 + - uid: 19321 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-66.5 parent: 2 - - uid: 18106 + - uid: 19322 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-66.5 parent: 2 - - uid: 18107 + - uid: 19323 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-66.5 parent: 2 - - uid: 18108 + - uid: 19324 components: - type: Transform pos: -29.5,-56.5 parent: 2 - - uid: 18109 + - uid: 19325 components: - type: Transform pos: -28.5,-56.5 parent: 2 - - uid: 18110 + - uid: 19326 components: - type: Transform pos: -27.5,-56.5 parent: 2 - - uid: 18111 + - uid: 19327 components: - type: Transform pos: -32.5,-46.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17967 - - uid: 18112 + - 19118 + - uid: 19328 components: - type: Transform pos: -31.5,-46.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17967 - - uid: 18113 + - 19118 + - uid: 19329 components: - type: Transform pos: -30.5,-46.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17967 - - uid: 18114 + - 19118 + - uid: 19330 components: - type: Transform pos: -32.5,-40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17967 - - uid: 18115 + - 19118 + - uid: 19331 components: - type: Transform pos: -31.5,-40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17967 - - uid: 18116 + - 19118 + - uid: 19332 components: - type: Transform pos: -30.5,-40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17967 - - uid: 18117 + - 19118 + - uid: 19333 components: - type: Transform pos: -34.5,-42.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17967 - - 153 - - uid: 18118 + - 19118 + - 236 + - uid: 19334 components: - type: Transform pos: -34.5,-43.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17967 - - 153 - - uid: 18119 + - 19118 + - 236 + - uid: 19335 components: - type: Transform pos: -34.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17967 - - 153 - - uid: 18120 + - 19118 + - 236 + - uid: 19336 components: - type: Transform pos: 43.5,-28.5 parent: 2 - - uid: 18121 + - uid: 19337 components: - type: Transform pos: 44.5,-28.5 parent: 2 - - uid: 18122 + - uid: 19338 components: - type: Transform pos: 45.5,-28.5 parent: 2 - - uid: 18123 + - uid: 19339 components: - type: Transform pos: 43.5,-36.5 parent: 2 - - uid: 18124 + - uid: 19340 components: - type: Transform pos: 44.5,-36.5 parent: 2 - - uid: 18125 + - uid: 19341 components: - type: Transform pos: 45.5,-36.5 parent: 2 - - uid: 18126 + - uid: 19342 components: - type: Transform pos: 47.5,-31.5 parent: 2 - - uid: 18127 + - uid: 19343 components: - type: Transform pos: 47.5,-32.5 parent: 2 - - uid: 18128 + - uid: 19344 components: - type: Transform pos: 47.5,-33.5 parent: 2 - - uid: 18129 + - uid: 19345 components: - type: Transform pos: 30.5,-30.5 parent: 2 - - uid: 18130 + - uid: 19346 components: - type: Transform pos: 29.5,-30.5 parent: 2 - - uid: 18131 + - uid: 19347 components: - type: Transform pos: 28.5,-30.5 parent: 2 - - uid: 18132 + - uid: 19348 components: - type: Transform pos: 14.5,-0.5 parent: 2 - - uid: 18133 + - uid: 19349 components: - type: Transform pos: 14.5,0.5 parent: 2 - - uid: 18134 + - uid: 19350 components: - type: Transform pos: 14.5,1.5 parent: 2 - - uid: 18135 + - uid: 19351 components: - type: Transform pos: -27.5,-12.5 parent: 2 - - uid: 18136 + - uid: 19352 components: - type: Transform pos: -28.5,-12.5 parent: 2 - - uid: 18137 + - uid: 19353 components: - type: Transform pos: -29.5,-12.5 parent: 2 - - uid: 18138 + - uid: 19354 components: - type: Transform pos: 30.5,-12.5 parent: 2 - - uid: 18139 + - uid: 19355 components: - type: Transform pos: 29.5,-12.5 parent: 2 - - uid: 18140 + - uid: 19356 components: - type: Transform pos: 28.5,-12.5 parent: 2 - - uid: 18141 + - uid: 19357 components: - type: Transform pos: -14.5,1.5 parent: 2 - - uid: 18142 + - uid: 19358 components: - type: Transform pos: -14.5,0.5 parent: 2 - - uid: 18143 + - uid: 19359 components: - type: Transform pos: -14.5,-0.5 parent: 2 - - uid: 18144 + - uid: 19360 components: - type: Transform pos: 1.5,5.5 parent: 2 - - uid: 18145 + - uid: 19361 components: - type: Transform pos: 0.5,5.5 parent: 2 - - uid: 18146 + - uid: 19362 components: - type: Transform pos: -0.5,5.5 parent: 2 - - uid: 18147 + - uid: 19363 components: - type: Transform pos: -0.5,19.5 parent: 2 - - uid: 18148 + - uid: 19364 components: - type: Transform pos: 0.5,19.5 parent: 2 - - uid: 18149 + - uid: 19365 components: - type: Transform pos: 1.5,19.5 parent: 2 - - uid: 18150 + - uid: 19366 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-30.5 parent: 2 - - uid: 18151 + - uid: 19367 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-30.5 parent: 2 - - uid: 18152 + - uid: 19368 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-30.5 parent: 2 - - uid: 18153 + - uid: 19369 components: - type: Transform rot: 1.5707963267948966 rad @@ -130342,9 +131621,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - 35 - - uid: 18154 + - 236 + - 130 + - uid: 19370 components: - type: Transform rot: 1.5707963267948966 rad @@ -130352,9 +131631,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - 35 - - uid: 18155 + - 236 + - 130 + - uid: 19371 components: - type: Transform rot: 1.5707963267948966 rad @@ -130362,9 +131641,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - 35 - - uid: 18156 + - 236 + - 130 + - uid: 19372 components: - type: Transform rot: 1.5707963267948966 rad @@ -130372,8 +131651,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 35 - - uid: 18157 + - 130 + - uid: 19373 components: - type: Transform rot: 1.5707963267948966 rad @@ -130381,8 +131660,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 35 - - uid: 18158 + - 130 + - uid: 19374 components: - type: Transform rot: 1.5707963267948966 rad @@ -130390,252 +131669,252 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 35 - - uid: 18159 + - 130 + - uid: 19375 components: - type: Transform pos: -0.5,-77.5 parent: 2 - type: DeviceNetwork deviceLists: - - 156 - - uid: 18160 + - 238 + - uid: 19376 components: - type: Transform pos: 0.5,-77.5 parent: 2 - type: DeviceNetwork deviceLists: - - 156 - - uid: 18161 + - 238 + - uid: 19377 components: - type: Transform pos: 1.5,-77.5 parent: 2 - type: DeviceNetwork deviceLists: - - 156 - - uid: 18162 + - 238 + - uid: 19378 components: - type: Transform pos: 2.5,-80.5 parent: 2 - - uid: 18163 + - uid: 19379 components: - type: Transform pos: 2.5,-81.5 parent: 2 - - uid: 18164 + - uid: 19380 components: - type: Transform pos: 2.5,-82.5 parent: 2 - - uid: 18165 + - uid: 19381 components: - type: Transform pos: 1.5,-83.5 parent: 2 - - uid: 18166 + - uid: 19382 components: - type: Transform pos: -0.5,-83.5 parent: 2 - - uid: 18167 + - uid: 19383 components: - type: Transform pos: -1.5,-86.5 parent: 2 - - uid: 18168 + - uid: 19384 components: - type: Transform pos: -7.5,-92.5 parent: 2 - - uid: 18169 + - uid: 19385 components: - type: Transform pos: -10.5,-90.5 parent: 2 - - uid: 18170 + - uid: 19386 components: - type: Transform pos: -8.5,-82.5 parent: 2 - - uid: 18171 + - uid: 19387 components: - type: Transform pos: -9.5,-77.5 parent: 2 - type: DeviceNetwork deviceLists: - - 156 - - uid: 18172 + - 238 + - uid: 19388 components: - type: Transform pos: -11.5,-77.5 parent: 2 - type: DeviceNetwork deviceLists: - - 156 - - uid: 18173 + - 238 + - uid: 19389 components: - type: Transform pos: -23.5,-74.5 parent: 2 - - uid: 18174 + - uid: 19390 components: - type: Transform pos: -24.5,-74.5 parent: 2 - - uid: 18175 + - uid: 19391 components: - type: Transform pos: -25.5,-74.5 parent: 2 - - uid: 18176 + - uid: 19392 components: - type: Transform pos: -27.5,-72.5 parent: 2 - - uid: 18177 + - uid: 19393 components: - type: Transform pos: -28.5,-72.5 parent: 2 - - uid: 18178 + - uid: 19394 components: - type: Transform pos: -23.5,-79.5 parent: 2 - - uid: 18179 + - uid: 19395 components: - type: Transform pos: -24.5,-79.5 parent: 2 - - uid: 18180 + - uid: 19396 components: - type: Transform pos: -25.5,-79.5 parent: 2 - - uid: 18181 + - uid: 19397 components: - type: Transform pos: -31.5,-82.5 parent: 2 - - uid: 18182 + - uid: 19398 components: - type: Transform pos: -32.5,-82.5 parent: 2 - - uid: 18183 + - uid: 19399 components: - type: Transform pos: -32.5,-91.5 parent: 2 - - uid: 18184 + - uid: 19400 components: - type: Transform pos: -31.5,-91.5 parent: 2 - - uid: 18185 + - uid: 19401 components: - type: Transform pos: -28.5,-97.5 parent: 2 - - uid: 18186 + - uid: 19402 components: - type: Transform pos: -36.5,-92.5 parent: 2 - - uid: 18187 + - uid: 19403 components: - type: Transform pos: -45.5,-80.5 parent: 2 - - uid: 18188 + - uid: 19404 components: - type: Transform pos: -45.5,-81.5 parent: 2 - - uid: 18189 + - uid: 19405 components: - type: Transform pos: -41.5,-82.5 parent: 2 - - uid: 18190 + - uid: 19406 components: - type: Transform pos: -41.5,-73.5 parent: 2 - - uid: 18191 + - uid: 19407 components: - type: Transform pos: -41.5,-70.5 parent: 2 - - uid: 18192 + - uid: 19408 components: - type: Transform pos: -46.5,-66.5 parent: 2 - - uid: 18193 + - uid: 19409 components: - type: Transform pos: -46.5,-65.5 parent: 2 - - uid: 18194 + - uid: 19410 components: - type: Transform pos: -46.5,-64.5 parent: 2 - - uid: 18195 + - uid: 19411 components: - type: Transform pos: -41.5,-64.5 parent: 2 - - uid: 18196 + - uid: 19412 components: - type: Transform pos: -37.5,-60.5 parent: 2 - - uid: 18197 + - uid: 19413 components: - type: Transform pos: -33.5,-58.5 parent: 2 - - uid: 18198 + - uid: 19414 components: - type: Transform pos: -38.5,-56.5 parent: 2 - - uid: 18199 + - uid: 19415 components: - type: Transform pos: -42.5,-50.5 parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - uid: 18200 + - 236 + - uid: 19416 components: - type: Transform pos: -43.5,-50.5 parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - uid: 18201 + - 236 + - uid: 19417 components: - type: Transform pos: -44.5,-50.5 parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - uid: 18202 + - 236 + - uid: 19418 components: - type: Transform pos: -45.5,-52.5 parent: 2 - - uid: 18203 + - uid: 19419 components: - type: Transform rot: 1.5707963267948966 rad @@ -130643,8 +131922,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - uid: 18204 + - 171 + - uid: 19420 components: - type: Transform rot: 1.5707963267948966 rad @@ -130652,8 +131931,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - uid: 18205 + - 171 + - uid: 19421 components: - type: Transform rot: 1.5707963267948966 rad @@ -130661,500 +131940,506 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - uid: 18206 + - 171 + - uid: 19422 components: - type: Transform pos: -33.5,-37.5 parent: 2 - - uid: 18207 + - uid: 19423 components: - type: Transform pos: -33.5,-38.5 parent: 2 - - uid: 18208 + - uid: 19424 components: - type: Transform pos: -33.5,-39.5 parent: 2 - - uid: 18209 + - uid: 19425 components: - type: Transform pos: -35.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - uid: 18210 + - 236 + - uid: 19426 components: - type: Transform pos: -36.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - uid: 18211 + - 236 + - uid: 19427 components: - type: Transform pos: -37.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - uid: 18212 + - 236 + - uid: 19428 components: - type: Transform pos: -42.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - uid: 18213 + - 236 + - uid: 19429 components: - type: Transform pos: -41.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - uid: 18214 + - 236 + - uid: 19430 components: - type: Transform pos: -43.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - uid: 18215 + - 236 + - uid: 19431 components: - type: Transform pos: -49.5,-45.5 parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - uid: 18216 + - 236 + - uid: 19432 components: - type: Transform pos: -59.5,-45.5 parent: 2 - type: DeviceNetwork deviceLists: - - 35 - - uid: 18217 + - 130 + - uid: 19433 components: - type: Transform pos: -64.5,-40.5 parent: 2 - - uid: 18218 + - uid: 19434 components: - type: Transform pos: -69.5,-42.5 parent: 2 - - uid: 18219 + - uid: 19435 components: - type: Transform pos: -69.5,-43.5 parent: 2 - - uid: 18220 + - uid: 19436 components: - type: Transform pos: -69.5,-44.5 parent: 2 - - uid: 18221 + - uid: 19437 components: - type: Transform pos: -71.5,-46.5 parent: 2 - - uid: 18222 + - uid: 19438 components: - type: Transform pos: -56.5,-65.5 parent: 2 - - uid: 18223 + - uid: 19439 components: - type: Transform pos: -59.5,-65.5 parent: 2 - - uid: 18224 + - uid: 19440 components: - type: Transform pos: -66.5,-65.5 parent: 2 - - uid: 18225 + - uid: 19441 components: - type: Transform pos: -51.5,-63.5 parent: 2 - - uid: 18226 + - uid: 19442 components: - type: Transform pos: -54.5,-57.5 parent: 2 - - uid: 18227 + - uid: 19443 components: - type: Transform pos: -49.5,-67.5 parent: 2 - - uid: 18228 + - uid: 19444 components: - type: Transform pos: -46.5,-79.5 parent: 2 - - uid: 18229 + - uid: 19445 components: - type: Transform pos: -40.5,-85.5 parent: 2 - - uid: 18230 + - uid: 19446 components: - type: Transform pos: -1.5,-92.5 parent: 2 - - uid: 18231 + - uid: 19447 components: - type: Transform pos: 10.5,-85.5 parent: 2 - - uid: 18232 + - uid: 19448 components: - type: Transform pos: 5.5,-85.5 parent: 2 - - uid: 18233 + - uid: 19449 components: - type: Transform pos: 13.5,-83.5 parent: 2 - - uid: 18234 + - uid: 19450 components: - type: Transform pos: 13.5,-75.5 parent: 2 - type: DeviceNetwork deviceLists: - - 156 - - uid: 18235 + - 238 + - uid: 19451 components: - type: Transform pos: 22.5,-74.5 parent: 2 - - uid: 18236 + - uid: 19452 components: - type: Transform pos: 28.5,-72.5 parent: 2 - - uid: 18237 + - uid: 19453 components: - type: Transform pos: 30.5,-71.5 parent: 2 - - uid: 18238 + - uid: 19454 components: - type: Transform pos: 31.5,-62.5 parent: 2 - - uid: 18239 + - uid: 19455 components: - type: Transform pos: 31.5,-61.5 parent: 2 - - uid: 18240 + - uid: 19456 components: - type: Transform pos: 38.5,-72.5 parent: 2 - - uid: 18241 + - uid: 19457 components: - type: Transform pos: 37.5,-66.5 parent: 2 - - uid: 18242 + - uid: 19458 components: - type: Transform pos: 41.5,-68.5 parent: 2 - - uid: 18243 + - uid: 19459 components: - type: Transform pos: 50.5,-71.5 parent: 2 - - uid: 18244 + - uid: 19460 components: - type: Transform pos: 49.5,-71.5 parent: 2 - - uid: 18245 + - uid: 19461 components: - type: Transform pos: 48.5,-71.5 parent: 2 - - uid: 18246 + - uid: 19462 components: - type: Transform pos: 61.5,-67.5 parent: 2 - - uid: 18247 + - uid: 19463 components: - type: Transform pos: 62.5,-68.5 parent: 2 - - uid: 18248 + - uid: 19464 components: - type: Transform pos: 54.5,-60.5 parent: 2 - - uid: 18249 + - uid: 19465 components: - type: Transform pos: 54.5,-58.5 parent: 2 - - uid: 18250 + - uid: 19466 components: - type: Transform pos: 52.5,-34.5 parent: 2 - - uid: 18251 + - uid: 19467 components: - type: Transform pos: 53.5,-34.5 parent: 2 - - uid: 18252 + - uid: 19468 components: - type: Transform pos: 54.5,-34.5 parent: 2 - - uid: 18253 + - uid: 19469 components: - type: Transform pos: 61.5,-31.5 parent: 2 - - uid: 18254 + - uid: 19470 components: - type: Transform pos: 61.5,-32.5 parent: 2 - - uid: 18255 + - uid: 19471 components: - type: Transform pos: 61.5,-33.5 parent: 2 - - uid: 18256 + - uid: 19472 components: - type: Transform pos: 63.5,-30.5 parent: 2 - - uid: 18257 + - uid: 19473 components: - type: Transform pos: 64.5,-30.5 parent: 2 - - uid: 18259 + - uid: 19474 components: - type: Transform pos: 65.5,-34.5 parent: 2 - - uid: 18260 + - uid: 19475 components: - type: Transform pos: 68.5,-30.5 parent: 2 - - uid: 18261 + - uid: 19476 components: - type: Transform pos: 69.5,-30.5 parent: 2 - - uid: 18262 + - uid: 19477 components: - type: Transform pos: 60.5,-30.5 parent: 2 - - uid: 18263 + - uid: 19478 components: - type: Transform pos: 73.5,-30.5 parent: 2 - - uid: 18264 + - uid: 19479 components: - type: Transform pos: 77.5,-30.5 parent: 2 - - uid: 18265 + - uid: 19480 components: - type: Transform pos: 78.5,-34.5 parent: 2 - - uid: 18266 + - uid: 19481 components: - type: Transform pos: 76.5,-25.5 parent: 2 - - uid: 18267 + - uid: 19482 components: - type: Transform pos: 69.5,-23.5 parent: 2 - - uid: 18268 + - uid: 19483 components: - type: Transform pos: 80.5,-21.5 parent: 2 - - uid: 18269 + - uid: 19484 components: - type: Transform pos: 103.5,-40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 41017 - - uid: 18270 + - 292 + - uid: 19485 components: - type: Transform pos: 103.5,-22.5 parent: 2 - - uid: 18271 + - uid: 19486 components: - type: Transform pos: 46.5,-27.5 parent: 2 - - uid: 18272 + - uid: 19487 components: - type: Transform pos: 42.5,-29.5 parent: 2 - - uid: 18307 + - uid: 19488 components: - type: Transform pos: 21.5,8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 147 - - uid: 18308 + - 230 + - uid: 19489 components: - type: Transform pos: 30.5,15.5 parent: 2 - type: DeviceNetwork deviceLists: - - 170 - - 150 - - uid: 18309 + - 249 + - 233 + - uid: 19490 components: - type: Transform pos: 15.5,2.5 parent: 2 - - uid: 18310 + - uid: 19491 components: - type: Transform pos: 13.5,9.5 parent: 2 - - uid: 18311 + - uid: 19492 components: - type: Transform pos: -4.5,2.5 parent: 2 - - uid: 18312 + - uid: 19493 components: - type: Transform pos: -5.5,2.5 parent: 2 - - uid: 18313 + - uid: 19494 components: - type: Transform pos: 2.5,9.5 parent: 2 - - uid: 18314 + - uid: 19495 components: - type: Transform pos: 2.5,8.5 parent: 2 - - uid: 18315 + - uid: 19496 components: - type: Transform pos: -1.5,10.5 parent: 2 - - uid: 18316 + - uid: 19497 components: - type: Transform pos: -3.5,7.5 parent: 2 - - uid: 18317 + - uid: 19498 components: - type: Transform pos: -8.5,12.5 parent: 2 - - uid: 18318 + - type: DeviceNetwork + deviceLists: + - 293 + - uid: 19499 components: - type: Transform pos: 2.5,14.5 parent: 2 - - uid: 18319 + - uid: 19500 components: - type: Transform pos: 2.5,16.5 parent: 2 - - uid: 18320 + - uid: 19501 components: - type: Transform pos: -1.5,16.5 parent: 2 - - uid: 18321 + - uid: 19502 components: - type: Transform pos: -1.5,14.5 parent: 2 - - uid: 18322 + - uid: 19503 components: - type: Transform pos: 8.5,18.5 parent: 2 - - uid: 18323 + - uid: 19504 components: - type: Transform pos: 12.5,13.5 parent: 2 - - uid: 18325 + - uid: 19505 components: - type: Transform pos: -20.5,2.5 parent: 2 - - uid: 18326 + - type: DeviceNetwork + deviceLists: + - 301 + - uid: 19506 components: - type: Transform pos: -22.5,1.5 parent: 2 - - uid: 18327 + - uid: 19507 components: - type: Transform pos: -22.5,0.5 parent: 2 - - uid: 18328 + - uid: 19508 components: - type: Transform pos: -25.5,-1.5 parent: 2 - - uid: 18329 + - uid: 19509 components: - type: Transform pos: -26.5,-1.5 parent: 2 - - uid: 18330 + - uid: 19510 components: - type: Transform pos: -29.5,-7.5 parent: 2 - - uid: 18331 + - uid: 19511 components: - type: Transform pos: -31.5,1.5 parent: 2 - - uid: 18332 + - uid: 19512 components: - type: Transform pos: -31.5,15.5 parent: 2 - - uid: 18333 + - uid: 19513 components: - type: Transform rot: 1.5707963267948966 rad @@ -131162,216 +132447,216 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 147 - - uid: 18334 + - 230 + - uid: 19514 components: - type: Transform pos: -34.5,4.5 parent: 2 - - uid: 18335 + - uid: 19515 components: - type: Transform pos: -32.5,-30.5 parent: 2 - type: DeviceNetwork deviceLists: - - 163 - - uid: 18336 + - 242 + - uid: 19516 components: - type: Transform pos: -40.5,-31.5 parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - uid: 18337 + - 171 + - uid: 19517 components: - type: Transform pos: -42.5,-31.5 parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - uid: 18338 + - 171 + - uid: 19518 components: - type: Transform pos: -43.5,-33.5 parent: 2 - - uid: 18339 + - uid: 19519 components: - type: Transform pos: -35.5,-35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 164 - - uid: 18340 + - 243 + - uid: 19520 components: - type: Transform pos: -45.5,-30.5 parent: 2 - - uid: 18341 + - uid: 19521 components: - type: Transform pos: -49.5,-30.5 parent: 2 - - uid: 18342 + - uid: 19522 components: - type: Transform pos: -50.5,-30.5 parent: 2 - - uid: 18343 + - uid: 19523 components: - type: Transform pos: -48.5,-39.5 parent: 2 - - uid: 18344 + - uid: 19524 components: - type: Transform pos: -58.5,-28.5 parent: 2 - - uid: 18345 + - uid: 19525 components: - type: Transform pos: -52.5,-26.5 parent: 2 - - uid: 18346 + - uid: 19526 components: - type: Transform pos: -48.5,-26.5 parent: 2 - - uid: 18347 + - uid: 19527 components: - type: Transform pos: -39.5,-22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - uid: 18348 + - 171 + - uid: 19528 components: - type: Transform pos: -39.5,-20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - uid: 18349 + - 171 + - uid: 19529 components: - type: Transform pos: -50.5,-15.5 parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - 174 - - uid: 18350 + - 171 + - 253 + - uid: 19530 components: - type: Transform pos: -47.5,-14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - 175 - - uid: 18351 + - 171 + - 254 + - uid: 19531 components: - type: Transform pos: -41.5,-13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - uid: 18352 + - 171 + - uid: 19532 components: - type: Transform pos: -42.5,-13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - uid: 18353 + - 171 + - uid: 19533 components: - type: Transform pos: -43.5,-13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - uid: 18354 + - 171 + - uid: 19534 components: - type: Transform pos: -39.5,-17.5 parent: 2 - type: DeviceNetwork deviceLists: - - 163 - - 86 - - uid: 18355 + - 242 + - 171 + - uid: 19535 components: - type: Transform pos: -40.5,-8.5 parent: 2 - - uid: 18356 + - uid: 19536 components: - type: Transform pos: -40.5,-3.5 parent: 2 - - uid: 18357 + - uid: 19537 components: - type: Transform pos: -34.5,-2.5 parent: 2 - - uid: 18358 + - uid: 19538 components: - type: Transform pos: -41.5,0.5 parent: 2 - - uid: 18359 + - uid: 19539 components: - type: Transform pos: -42.5,0.5 parent: 2 - - uid: 18360 + - uid: 19540 components: - type: Transform pos: -43.5,0.5 parent: 2 - - uid: 18361 + - uid: 19541 components: - type: Transform pos: -49.5,7.5 parent: 2 - - uid: 18362 + - uid: 19542 components: - type: Transform pos: -54.5,-4.5 parent: 2 - - uid: 18363 + - uid: 19543 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-38.5 parent: 2 - - uid: 18364 + - uid: 19544 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 - - uid: 18365 + - uid: 19545 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-56.5 parent: 2 - - uid: 18366 + - uid: 19546 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-50.5 parent: 2 - - uid: 18367 + - uid: 19547 components: - type: Transform rot: 1.5707963267948966 rad @@ -131379,8 +132664,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - uid: 18368 + - 236 + - uid: 19548 components: - type: Transform rot: 1.5707963267948966 rad @@ -131388,8 +132673,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - uid: 18369 + - 236 + - uid: 19549 components: - type: Transform rot: 1.5707963267948966 rad @@ -131397,110 +132682,110 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - uid: 18370 + - 236 + - uid: 19550 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-63.5 parent: 2 - - uid: 18371 + - uid: 19551 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-54.5 parent: 2 - - uid: 18372 + - uid: 19552 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-59.5 parent: 2 - - uid: 18373 + - uid: 19553 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-70.5 parent: 2 - - uid: 18374 + - uid: 19554 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-70.5 parent: 2 - - uid: 18375 + - uid: 19555 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-82.5 parent: 2 - - uid: 18376 + - uid: 19556 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-44.5 parent: 2 - - uid: 18377 + - uid: 19557 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-40.5 parent: 2 - - uid: 18381 + - uid: 19558 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,2.5 parent: 2 - - uid: 18382 + - uid: 19559 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,5.5 parent: 2 - - uid: 18383 + - uid: 19560 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 2 - - uid: 18384 + - uid: 19561 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-25.5 parent: 2 - - uid: 18385 + - uid: 19562 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-71.5 parent: 2 - - uid: 18386 + - uid: 19563 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-71.5 parent: 2 - - uid: 18387 + - uid: 19564 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-71.5 parent: 2 - - uid: 18388 + - uid: 19565 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-64.5 parent: 2 - - uid: 18389 + - uid: 19566 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-74.5 parent: 2 - - uid: 18390 + - uid: 19567 components: - type: Transform rot: 3.141592653589793 rad @@ -131508,52 +132793,52 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 156 - - uid: 18391 + - 238 + - uid: 19568 components: - type: Transform pos: -1.5,-79.5 parent: 2 - - uid: 18392 + - uid: 19569 components: - type: Transform pos: -1.5,-81.5 parent: 2 - - uid: 18393 + - uid: 19570 components: - type: Transform pos: -1.5,-84.5 parent: 2 - - uid: 18394 + - uid: 19571 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-82.5 parent: 2 - - uid: 18395 + - uid: 19572 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-79.5 parent: 2 - - uid: 18396 + - uid: 19573 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-97.5 parent: 2 - - uid: 18400 + - uid: 19574 components: - type: Transform pos: 58.5,-29.5 parent: 2 - - uid: 18401 + - uid: 19575 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-40.5 parent: 2 - - uid: 18402 + - uid: 19576 components: - type: Transform rot: 3.141592653589793 rad @@ -131561,198 +132846,198 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 35 - - uid: 18403 + - 130 + - uid: 19577 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-47.5 parent: 2 - - uid: 18404 + - uid: 19578 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-45.5 parent: 2 - - uid: 18405 + - uid: 19579 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-39.5 parent: 2 - - uid: 18406 + - uid: 19580 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-37.5 parent: 2 - - uid: 18407 + - uid: 19581 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-34.5 parent: 2 - - uid: 18408 + - uid: 19582 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-75.5 parent: 2 - - uid: 18409 + - uid: 19583 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-82.5 parent: 2 - - uid: 18410 + - uid: 19584 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-76.5 parent: 2 - - uid: 18412 + - uid: 19585 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-75.5 parent: 2 - - uid: 18413 + - uid: 19586 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-94.5 parent: 2 - - uid: 18414 + - uid: 19587 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-92.5 parent: 2 - - uid: 18415 + - uid: 19588 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-88.5 parent: 2 - - uid: 18416 + - uid: 19589 components: - type: Transform pos: -49.5,-91.5 parent: 2 - - uid: 18417 + - uid: 19590 components: - type: Transform pos: -45.5,-93.5 parent: 2 - - uid: 18418 + - uid: 19591 components: - type: Transform pos: -47.5,-96.5 parent: 2 - - uid: 18419 + - uid: 19592 components: - type: Transform pos: -48.5,-96.5 parent: 2 - - uid: 18420 + - uid: 19593 components: - type: Transform pos: -54.5,-86.5 parent: 2 - - uid: 18421 + - uid: 19594 components: - type: Transform pos: -53.5,-82.5 parent: 2 - - uid: 18422 + - uid: 19595 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-53.5 parent: 2 - - uid: 18423 + - uid: 19596 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-49.5 parent: 2 - - uid: 18424 + - uid: 19597 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-50.5 parent: 2 - - uid: 18425 + - uid: 19598 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-28.5 parent: 2 - - uid: 18426 + - uid: 19599 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-19.5 parent: 2 - - uid: 18427 + - uid: 19600 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-19.5 parent: 2 - - uid: 18428 + - uid: 19601 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-26.5 parent: 2 - - uid: 18429 + - uid: 19602 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-26.5 parent: 2 - - uid: 18430 + - uid: 19603 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,-29.5 parent: 2 - - uid: 18432 + - uid: 19604 components: - type: Transform rot: 1.5707963267948966 rad pos: -62.5,-19.5 parent: 2 - - uid: 18433 + - uid: 19605 components: - type: Transform pos: -64.5,-5.5 parent: 2 - - uid: 18434 + - uid: 19606 components: - type: Transform pos: -66.5,-17.5 parent: 2 - - uid: 18435 + - uid: 19607 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,5.5 parent: 2 - - uid: 18436 + - uid: 19608 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,10.5 parent: 2 - - uid: 18437 + - uid: 19609 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,8.5 parent: 2 - - uid: 18438 + - uid: 19610 components: - type: Transform rot: 1.5707963267948966 rad @@ -131760,14 +133045,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 163 - - uid: 18439 + - 242 + - uid: 19611 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,14.5 parent: 2 - - uid: 18440 + - type: DeviceNetwork + deviceLists: + - 293 + - uid: 19612 components: - type: Transform rot: -1.5707963267948966 rad @@ -131775,9 +133063,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 147 - - 150 - - uid: 18441 + - 230 + - 233 + - uid: 19613 components: - type: Transform rot: -1.5707963267948966 rad @@ -131785,8 +133073,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 147 - - uid: 18442 + - 230 + - uid: 19614 components: - type: Transform rot: -1.5707963267948966 rad @@ -131794,22 +133082,22 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 150 - - uid: 18443 + - 233 + - uid: 19615 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-23.5 parent: 2 - - uid: 18444 + - uid: 19616 components: - type: Transform pos: -58.5,-37.5 parent: 2 - type: DeviceNetwork deviceLists: - - 178 - - uid: 18445 + - 255 + - uid: 19617 components: - type: Transform rot: 1.5707963267948966 rad @@ -131817,9 +133105,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 173 - - 17984 - - uid: 18447 + - 252 + - 19134 + - uid: 19618 components: - type: Transform rot: 3.141592653589793 rad @@ -131827,8 +133115,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17982 - - uid: 18448 + - 19133 + - uid: 19619 components: - type: Transform rot: 3.141592653589793 rad @@ -131836,8 +133124,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17982 - - uid: 18449 + - 19133 + - uid: 19620 components: - type: Transform rot: 3.141592653589793 rad @@ -131845,8 +133133,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - uid: 18450 + - 247 + - uid: 19621 components: - type: Transform rot: 3.141592653589793 rad @@ -131854,9 +133142,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 86 - - 164 - - uid: 18451 + - 171 + - 243 + - uid: 19622 components: - type: Transform rot: 1.5707963267948966 rad @@ -131864,14 +133152,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17982 - - uid: 18452 + - 19133 + - uid: 19623 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-77.5 parent: 2 - - uid: 18454 + - uid: 19624 components: - type: Transform rot: -1.5707963267948966 rad @@ -131879,38 +133167,38 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 54 - - uid: 18456 + - 148 + - uid: 19625 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-73.5 parent: 2 - - uid: 18462 + - uid: 19626 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,18.5 parent: 2 - - uid: 18463 + - uid: 19627 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,5.5 parent: 2 - - uid: 18464 + - uid: 19628 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,8.5 parent: 2 - - uid: 18465 + - uid: 19629 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,10.5 parent: 2 - - uid: 18466 + - uid: 19630 components: - type: Transform rot: 3.141592653589793 rad @@ -131918,8 +133206,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 156 - - uid: 18467 + - 238 + - uid: 19631 components: - type: Transform rot: 3.141592653589793 rad @@ -131927,8 +133215,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 54 - - uid: 18468 + - 148 + - uid: 19632 components: - type: Transform rot: 3.141592653589793 rad @@ -131936,10 +133224,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 169 - - 17985 - - uid: 18469 + - 247 + - 248 + - 19135 + - uid: 19633 components: - type: Transform rot: 3.141592653589793 rad @@ -131947,9 +133235,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 169 - - 170 - - uid: 18470 + - 248 + - 249 + - uid: 19634 components: - type: Transform rot: 3.141592653589793 rad @@ -131957,9 +133245,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 169 - - 170 - - uid: 18471 + - 248 + - 249 + - uid: 19635 components: - type: Transform rot: 3.141592653589793 rad @@ -131967,9 +133255,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 169 - - 170 - - uid: 18472 + - 248 + - 249 + - uid: 19636 components: - type: Transform rot: 3.141592653589793 rad @@ -131977,10 +133265,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 170 - - 17985 - - uid: 18473 + - 247 + - 249 + - 19135 + - uid: 19637 components: - type: Transform rot: 3.141592653589793 rad @@ -131988,10 +133276,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 170 - - 17985 - - uid: 18474 + - 247 + - 249 + - 19135 + - uid: 19638 components: - type: Transform rot: 3.141592653589793 rad @@ -131999,10 +133287,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 170 - - 17985 - - uid: 18475 + - 247 + - 249 + - 19135 + - uid: 19639 components: - type: Transform rot: 3.141592653589793 rad @@ -132010,10 +133298,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 170 - - 17985 - - uid: 18476 + - 247 + - 249 + - 19135 + - uid: 19640 components: - type: Transform rot: 3.141592653589793 rad @@ -132021,10 +133309,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 170 - - 17985 - - uid: 18477 + - 247 + - 249 + - 19135 + - uid: 19641 components: - type: Transform rot: 3.141592653589793 rad @@ -132032,10 +133320,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 170 - - 17985 - - uid: 18478 + - 247 + - 249 + - 19135 + - uid: 19642 components: - type: Transform rot: 3.141592653589793 rad @@ -132043,9 +133331,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 170 - - 172 - - uid: 18479 + - 249 + - 251 + - uid: 19643 components: - type: Transform rot: 3.141592653589793 rad @@ -132053,10 +133341,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 172 - - 17985 - - uid: 18480 + - 247 + - 251 + - 19135 + - uid: 19644 components: - type: Transform rot: 3.141592653589793 rad @@ -132064,10 +133352,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 172 - - 17985 - - uid: 18481 + - 247 + - 251 + - 19135 + - uid: 19645 components: - type: Transform rot: 3.141592653589793 rad @@ -132075,10 +133363,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 172 - - 17985 - - uid: 18482 + - 247 + - 251 + - 19135 + - uid: 19646 components: - type: Transform rot: 3.141592653589793 rad @@ -132086,10 +133374,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 172 - - 17985 - - uid: 18483 + - 247 + - 251 + - 19135 + - uid: 19647 components: - type: Transform rot: 3.141592653589793 rad @@ -132097,10 +133385,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 172 - - 17985 - - uid: 18484 + - 247 + - 251 + - 19135 + - uid: 19648 components: - type: Transform rot: 3.141592653589793 rad @@ -132108,8 +133396,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 172 - - uid: 18485 + - 251 + - uid: 19649 components: - type: Transform rot: 3.141592653589793 rad @@ -132117,8 +133405,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 172 - - uid: 18486 + - 251 + - uid: 19650 components: - type: Transform rot: 3.141592653589793 rad @@ -132126,8 +133414,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 169 - - uid: 18487 + - 248 + - uid: 19651 components: - type: Transform rot: 3.141592653589793 rad @@ -132135,9 +133423,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 - - 17985 - - uid: 18490 + - 247 + - 19135 + - uid: 19652 components: - type: Transform rot: 1.5707963267948966 rad @@ -132145,8 +133433,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 178 - - uid: 18491 + - 255 + - uid: 19653 components: - type: Transform rot: 1.5707963267948966 rad @@ -132154,22 +133442,22 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 153 - - uid: 18492 + - 236 + - uid: 19654 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,26.5 parent: 2 - - uid: 18493 + - uid: 19655 components: - type: Transform pos: 33.5,20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 179 - - uid: 18494 + - 256 + - uid: 19656 components: - type: Transform rot: 1.5707963267948966 rad @@ -132177,18 +133465,24 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 114 - - uid: 18495 + - 199 + - uid: 19657 components: - type: Transform pos: -1.5,-87.5 parent: 2 - - uid: 25163 + - uid: 19658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,19.5 + parent: 2 + - uid: 19659 components: - type: Transform pos: 26.5,-31.5 parent: 2 - - uid: 25803 + - uid: 19660 components: - type: Transform rot: -1.5707963267948966 rad @@ -132196,8 +133490,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 41017 - - uid: 27324 + - 292 + - uid: 19661 components: - type: Transform rot: 1.5707963267948966 rad @@ -132205,10 +133499,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 41014 - - 41016 - - 41017 - - uid: 29048 + - 291 + - 19139 + - 292 + - uid: 19662 components: - type: Transform rot: 1.5707963267948966 rad @@ -132216,10 +133510,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 41014 - - 41016 - - 41017 - - uid: 32558 + - 291 + - 19139 + - 292 + - uid: 19663 components: - type: Transform rot: 1.5707963267948966 rad @@ -132227,8 +133521,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40436 - - uid: 32729 + - 281 + - uid: 19664 components: - type: Transform rot: 1.5707963267948966 rad @@ -132236,10 +133530,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 41014 - - 41016 - - 41017 - - uid: 32744 + - 291 + - 19139 + - 292 + - uid: 19665 components: - type: Transform rot: 1.5707963267948966 rad @@ -132247,22 +133541,22 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40436 - - uid: 32766 + - 281 + - uid: 19666 components: - type: Transform pos: 42.5,-23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23127 - - 2712 - - uid: 34908 + - 271 + - 264 + - uid: 19667 components: - type: Transform pos: 49.5,19.5 parent: 2 - - uid: 35913 + - uid: 19668 components: - type: Transform rot: 1.5707963267948966 rad @@ -132270,20 +133564,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 394 - - uid: 36940 + - 258 + - uid: 19669 components: - type: Transform pos: -56.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 89 - - 17960 - - 49 - - 17925 - - 17923 - - uid: 37877 + - 174 + - 19111 + - 143 + - 19085 + - 19083 + - uid: 19670 components: - type: Transform rot: -1.5707963267948966 rad @@ -132291,8 +133585,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 37871 - - uid: 37878 + - 276 + - uid: 19671 components: - type: Transform rot: -1.5707963267948966 rad @@ -132300,118 +133594,55 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 37871 - - uid: 38225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 37887 - - type: DeviceNetwork - deviceLists: - - 38224 - - uid: 38226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 37887 - - type: DeviceNetwork - deviceLists: - - 38224 - - uid: 38227 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 37887 - - type: DeviceNetwork - deviceLists: - - 38224 - - uid: 38228 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 37887 - - type: DeviceNetwork - deviceLists: - - 38224 - - uid: 38229 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 37887 - - type: DeviceNetwork - deviceLists: - - 38224 - - uid: 38230 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 37887 - - type: DeviceNetwork - deviceLists: - - 38224 - - uid: 38231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 37887 - - type: DeviceNetwork - deviceLists: - - 38224 - - uid: 39485 + - 276 + - uid: 19672 components: - type: Transform pos: -0.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 30404 - - 39547 - - uid: 39486 + - 273 + - 19136 + - uid: 19673 components: - type: Transform pos: 0.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 30404 - - 39547 - - uid: 39487 + - 273 + - 19136 + - uid: 19674 components: - type: Transform pos: 1.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 30404 - - 39547 - - uid: 39549 + - 273 + - 19136 + - uid: 19675 components: - type: Transform pos: 26.5,-33.5 parent: 2 - - uid: 39581 + - uid: 19676 components: - type: Transform pos: -28.5,-42.5 parent: 2 - - uid: 39585 + - uid: 19677 components: - type: Transform pos: -28.5,-43.5 parent: 2 - - uid: 39586 + - uid: 19678 components: - type: Transform pos: -28.5,-44.5 parent: 2 - - uid: 39592 + - uid: 19679 components: - type: Transform rot: 3.141592653589793 rad @@ -132419,57 +133650,57 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17976 - - 39606 - - uid: 40431 + - 19127 + - 277 + - uid: 19680 components: - type: Transform pos: 36.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23127 - - uid: 40432 + - 271 + - uid: 19681 components: - type: Transform pos: 45.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2712 - - uid: 40433 + - 264 + - uid: 19682 components: - type: Transform pos: 43.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2712 - - uid: 40434 + - 264 + - uid: 19683 components: - type: Transform pos: 43.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40436 - - 2712 - - uid: 40435 + - 281 + - 264 + - uid: 19684 components: - type: Transform pos: 45.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40436 - - 2712 - - uid: 40442 + - 281 + - 264 + - uid: 19685 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,19.5 parent: 2 - - uid: 40443 + - uid: 19686 components: - type: Transform rot: 3.141592653589793 rad @@ -132477,9 +133708,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 27662 - - 40457 - - uid: 40445 + - 272 + - 285 + - uid: 19687 components: - type: Transform rot: 3.141592653589793 rad @@ -132487,8 +133718,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 27662 - - uid: 40447 + - 272 + - uid: 19688 components: - type: Transform rot: 1.5707963267948966 rad @@ -132496,26 +133727,26 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 58 - - uid: 40452 + - 150 + - uid: 19689 components: - type: Transform pos: 45.5,-4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40451 - - 40455 - - uid: 40456 + - 282 + - 284 + - uid: 19690 components: - type: Transform pos: 53.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40455 - - 40457 - - uid: 40458 + - 284 + - 285 + - uid: 19691 components: - type: Transform rot: -1.5707963267948966 rad @@ -132523,9 +133754,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40457 - - 40468 - - uid: 40460 + - 285 + - 286 + - uid: 19692 components: - type: Transform rot: -1.5707963267948966 rad @@ -132533,9 +133764,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40468 - - 22105 - - uid: 40461 + - 286 + - 270 + - uid: 19693 components: - type: Transform rot: -1.5707963267948966 rad @@ -132543,8 +133774,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 22105 - - uid: 40462 + - 270 + - uid: 19694 components: - type: Transform rot: -1.5707963267948966 rad @@ -132552,8 +133783,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 22105 - - uid: 40475 + - 270 + - uid: 19695 components: - type: Transform rot: 1.5707963267948966 rad @@ -132561,27 +133792,27 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40476 - - 40487 - - uid: 40477 + - 287 + - 288 + - uid: 19696 components: - type: Transform pos: 66.5,-7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40487 - - 40490 - - uid: 40478 + - 288 + - 289 + - uid: 19697 components: - type: Transform pos: 66.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40487 - - 40490 - - uid: 40491 + - 288 + - 289 + - uid: 19698 components: - type: Transform rot: -1.5707963267948966 rad @@ -132589,9 +133820,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40490 - - 40518 - - uid: 40492 + - 289 + - 290 + - uid: 19699 components: - type: Transform rot: -1.5707963267948966 rad @@ -132599,8 +133830,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40490 - - uid: 40493 + - 289 + - uid: 19700 components: - type: Transform rot: -1.5707963267948966 rad @@ -132608,8 +133839,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40490 - - uid: 40494 + - 289 + - uid: 19701 components: - type: Transform rot: -1.5707963267948966 rad @@ -132617,8 +133848,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40490 - - uid: 40497 + - 289 + - uid: 19702 components: - type: Transform rot: 1.5707963267948966 rad @@ -132626,10 +133857,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40490 - - 37871 - - 40518 - - uid: 40498 + - 289 + - 276 + - 290 + - uid: 19703 components: - type: Transform rot: 1.5707963267948966 rad @@ -132637,24 +133868,158 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40490 - - 40518 + - 289 + - 290 + - uid: 19704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 157 + - uid: 19705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 157 + - uid: 19706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 157 + - uid: 19707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 157 + - uid: 19708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 299 + - uid: 19709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 299 + - 214 + - uid: 19710 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 300 + - uid: 19711 + components: + - type: Transform + pos: -15.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 300 + - uid: 41171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 41170 + - uid: 41172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 41170 + - uid: 41173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 41170 + - uid: 41174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 41170 + - uid: 41175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 41170 + - uid: 41176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 41170 + - uid: 41177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 41170 - proto: Fireplace entities: - - uid: 18496 + - uid: 19712 components: - type: Transform pos: -79.5,-17.5 parent: 2 - proto: Flash entities: - - uid: 18498 + - uid: 19713 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.3613946,13.425031 parent: 2 - - uid: 18499 + - uid: 19714 components: - type: Transform rot: 1.5707963267948966 rad @@ -132662,22 +134027,22 @@ entities: parent: 2 - proto: FlashlightLantern entities: - - uid: 18501 + - uid: 19715 components: - type: Transform pos: 16.460556,-103.34386 parent: 2 - - uid: 18502 + - uid: 19716 components: - type: Transform pos: -28.39971,-78.40641 parent: 2 - - uid: 18503 + - uid: 19717 components: - type: Transform pos: -46.5,-95.5 parent: 2 - - uid: 18504 + - uid: 19718 components: - type: Transform rot: 1.5707963267948966 rad @@ -132685,56 +134050,49 @@ entities: parent: 2 - proto: FlashlightSeclite entities: - - uid: 40512 + - uid: 19719 components: - type: Transform pos: 68.51442,2.7373502 parent: 2 - - uid: 40513 + - uid: 19720 components: - type: Transform pos: 68.54567,2.5029752 parent: 2 - proto: FlippoEngravedLighter entities: - - uid: 25664 + - uid: 19722 components: - type: Transform - parent: 25663 + parent: 19721 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FlippoLighter entities: - - uid: 22155 + - uid: 19723 components: - type: Transform pos: 56.097004,-2.334701 parent: 2 - - uid: 25654 + - uid: 19725 components: - type: Transform - parent: 25636 + parent: 19724 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: Floodlight - entities: - - uid: 34400 - components: - - type: Transform - pos: -13.503754,5.5650454 - parent: 2 - proto: FloodlightBroken entities: - - uid: 34378 + - uid: 19726 components: - type: Transform pos: -0.5523869,-72.38893 parent: 2 - proto: FloorDrain entities: - - uid: 1657 + - uid: 19727 components: - type: Transform rot: 3.141592653589793 rad @@ -132742,7 +134100,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 14566 + - uid: 19728 components: - type: Transform rot: 3.141592653589793 rad @@ -132750,21 +134108,21 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18506 + - uid: 19729 components: - type: Transform pos: 75.5,-42.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18507 + - uid: 19730 components: - type: Transform pos: -14.5,-76.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18509 + - uid: 19731 components: - type: Transform rot: 3.141592653589793 rad @@ -132772,7 +134130,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18510 + - uid: 19732 components: - type: Transform rot: 3.141592653589793 rad @@ -132780,14 +134138,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18511 + - uid: 19733 components: - type: Transform pos: -54.5,-38.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 18512 + - uid: 19734 components: - type: Transform rot: 1.5707963267948966 rad @@ -132795,7 +134153,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 18513 + - uid: 19735 components: - type: Transform rot: 1.5707963267948966 rad @@ -132803,7 +134161,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 23326 + - uid: 19736 components: - type: Transform rot: 3.141592653589793 rad @@ -132811,7 +134169,7 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 24750 + - uid: 19737 components: - type: Transform rot: -1.5707963267948966 rad @@ -132819,21 +134177,21 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 26118 + - uid: 19738 components: - type: Transform pos: 74.5,-12.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 26127 + - uid: 19739 components: - type: Transform pos: 76.5,-12.5 parent: 2 - type: Fixtures fixtures: {} - - uid: 26131 + - uid: 19740 components: - type: Transform pos: 78.5,-12.5 @@ -132842,82 +134200,82 @@ entities: fixtures: {} - proto: FloorTileItemAstroIce entities: - - uid: 32426 + - uid: 19741 components: - type: Transform - pos: -16.489063,-33.65736 + pos: -16.612171,-33.363903 parent: 2 - - uid: 32430 + - uid: 19742 components: - type: Transform - pos: -16.598438,-34.18861 + pos: -16.489063,-33.65736 parent: 2 - - uid: 32448 + - uid: 19743 components: - type: Transform pos: -18.629688,-40.68861 parent: 2 - - uid: 32452 + - uid: 19744 components: - type: Transform pos: -18.535938,-40.235485 parent: 2 - - uid: 32453 + - uid: 19745 components: - type: Transform pos: -14.207813,-40.797985 parent: 2 - - uid: 32454 + - uid: 19746 components: - type: Transform pos: -14.551563,-40.75111 parent: 2 - - uid: 32473 + - uid: 19747 components: - type: Transform pos: -18.586708,-31.39135 parent: 2 - - uid: 32474 + - uid: 19748 components: - type: Transform pos: -14.492958,-31.344475 parent: 2 - - uid: 32476 + - uid: 19749 components: - type: Transform pos: -14.399208,-31.406975 parent: 2 - - uid: 32496 + - uid: 19750 components: - type: Transform pos: -14.242958,-31.5476 parent: 2 - proto: FloorTileItemGrayConcrete entities: - - uid: 18514 + - uid: 19751 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.8028755,-95.8944 parent: 2 - - uid: 18515 + - uid: 19752 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.074626,-99.975784 parent: 2 - - uid: 18516 + - uid: 19753 components: - type: Transform pos: -13.3168125,-101.43668 parent: 2 - - uid: 18517 + - uid: 19754 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5556436,-99.05358 parent: 2 - - uid: 18518 + - uid: 19755 components: - type: Transform rot: 1.5707963267948966 rad @@ -132925,29 +134283,29 @@ entities: parent: 2 - proto: FloorTileItemLino entities: - - uid: 18519 + - uid: 19756 components: - type: Transform pos: -81.4497,-26.060171 parent: 2 - - uid: 18520 + - uid: 19757 components: - type: Transform pos: -81.215324,-26.271109 parent: 2 - - uid: 18521 + - uid: 19758 components: - type: Transform pos: -83.05166,-27.173347 parent: 2 - proto: FloorTileItemOldConcrete entities: - - uid: 18522 + - uid: 19759 components: - type: Transform pos: -51.575184,-71.63811 parent: 2 - - uid: 18523 + - uid: 19760 components: - type: Transform rot: 3.141592653589793 rad @@ -132955,81 +134313,67 @@ entities: parent: 2 - proto: FloorTileItemSteel entities: - - uid: 18524 + - uid: 19761 components: - type: Transform pos: -69.14034,-17.311636 parent: 2 - - uid: 18525 + - uid: 19762 components: - type: Transform pos: -67.85909,-16.702261 parent: 2 -- proto: FloorTileItemWood - entities: - - uid: 18530 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.031655,14.69135 - parent: 2 - - uid: 18532 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.125405,13.363225 - parent: 2 - proto: FloorTileItemWoodLargeLight entities: - - uid: 41473 + - uid: 19763 components: - type: Transform pos: 11.27867,-39.371506 parent: 2 - - uid: 41474 + - uid: 19764 components: - type: Transform pos: 13.77867,-38.23088 parent: 2 - - uid: 41475 + - uid: 19765 components: - type: Transform pos: 16.653671,-39.54338 parent: 2 - - uid: 41477 + - uid: 19766 components: - type: Transform pos: 8.27867,-43.40281 parent: 2 - proto: FloorWaterEntity entities: - - uid: 25929 + - uid: 19767 components: - type: Transform pos: -2.5,-27.5 parent: 2 - - uid: 25930 + - uid: 19768 components: - type: Transform pos: -3.5,-27.5 parent: 2 - - uid: 25931 + - uid: 19769 components: - type: Transform pos: -3.5,-28.5 parent: 2 - - uid: 25932 + - uid: 19770 components: - type: Transform pos: -2.5,-28.5 parent: 2 - - uid: 26030 + - uid: 19771 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-26.5 parent: 2 - - uid: 26050 + - uid: 19772 components: - type: Transform rot: 3.141592653589793 rad @@ -133037,45 +134381,45 @@ entities: parent: 2 - proto: FloraRockSolid01 entities: - - uid: 18533 + - uid: 19773 components: - type: Transform pos: 59.574043,-37.210567 parent: 2 - proto: FloraRockSolid02 entities: - - uid: 18534 + - uid: 19774 components: - type: Transform pos: 47.49115,-40.398067 parent: 2 - proto: FloraTree01 entities: - - uid: 18535 + - uid: 19775 components: - type: Transform rot: 3.141592653589793 rad pos: -46.02616,13.667983 parent: 2 - - uid: 18536 + - uid: 19776 components: - type: Transform rot: 3.141592653589793 rad pos: -50.21366,16.511734 parent: 2 - - uid: 18537 + - uid: 19777 components: - type: Transform pos: 49.566105,-38.618214 parent: 2 - - uid: 18538 + - uid: 19778 components: - type: Transform pos: 56.17899,-39.220024 parent: 2 - proto: FloraTree02 entities: - - uid: 18540 + - uid: 19779 components: - type: Transform rot: 3.141592653589793 rad @@ -133083,7 +134427,7 @@ entities: parent: 2 - proto: FloraTree03 entities: - - uid: 18542 + - uid: 19780 components: - type: Transform rot: 3.141592653589793 rad @@ -133091,14 +134435,14 @@ entities: parent: 2 - proto: FloraTree04 entities: - - uid: 18544 + - uid: 19781 components: - type: Transform pos: 51.25721,-42.532524 parent: 2 - proto: FloraTree05 entities: - - uid: 18545 + - uid: 19782 components: - type: Transform rot: 3.141592653589793 rad @@ -133106,7 +134450,7 @@ entities: parent: 2 - proto: FloraTreeLarge06 entities: - - uid: 18546 + - uid: 19783 components: - type: Transform rot: 3.141592653589793 rad @@ -133114,19 +134458,19 @@ entities: parent: 2 - proto: FloraTreeStump entities: - - uid: 18547 + - uid: 19784 components: - type: Transform rot: 3.141592653589793 rad pos: 49.75992,-38.149433 parent: 2 - - uid: 18548 + - uid: 19785 components: - type: Transform rot: 3.141592653589793 rad pos: 51.16617,-38.336933 parent: 2 - - uid: 18549 + - uid: 19786 components: - type: Transform rot: 3.141592653589793 rad @@ -133134,327 +134478,327 @@ entities: parent: 2 - proto: FloraTreeStumpConifer entities: - - uid: 18551 + - uid: 19787 components: - type: Transform pos: 49.939617,-39.62802 parent: 2 - proto: FoamCrossbow entities: - - uid: 18552 + - uid: 19788 components: - type: Transform pos: 67.53759,-50.619473 parent: 2 - proto: FoamedAluminiumMetal entities: - - uid: 4817 + - uid: 19789 components: - type: Transform pos: 2.5,-10.5 parent: 2 - - uid: 9029 + - uid: 19790 components: - type: Transform pos: 2.5,-67.5 parent: 2 - - uid: 9461 + - uid: 19791 components: - type: Transform pos: -1.5,-67.5 parent: 2 - - uid: 10915 + - uid: 19792 components: - type: Transform pos: 22.5,-30.5 parent: 2 - - uid: 11139 + - uid: 19793 components: - type: Transform pos: -1.5,-10.5 parent: 2 - - uid: 11525 + - uid: 19794 components: - type: Transform pos: 22.5,-34.5 parent: 2 - - uid: 18543 + - uid: 19795 components: - type: Transform pos: 21.5,-31.5 parent: 2 - - uid: 18553 + - uid: 19796 components: - type: Transform pos: -53.5,-2.5 parent: 2 - - uid: 18554 + - uid: 19797 components: - type: Transform pos: -54.5,-3.5 parent: 2 - - uid: 18555 + - uid: 19798 components: - type: Transform pos: -54.5,-1.5 parent: 2 - - uid: 18556 + - uid: 19799 components: - type: Transform pos: -54.5,-0.5 parent: 2 - - uid: 18557 + - uid: 19800 components: - type: Transform pos: -52.5,-1.5 parent: 2 - - uid: 18558 + - uid: 19801 components: - type: Transform pos: -50.5,-0.5 parent: 2 - - uid: 18559 + - uid: 19802 components: - type: Transform pos: -53.5,-1.5 parent: 2 - - uid: 18560 + - uid: 19803 components: - type: Transform pos: -52.5,-0.5 parent: 2 - - uid: 27120 + - uid: 19804 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-41.5 parent: 2 - - uid: 30587 + - uid: 19805 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-45.5 parent: 2 - - uid: 30863 + - uid: 19806 components: - type: Transform pos: 5.5,-33.5 parent: 2 - - uid: 33759 + - uid: 19807 components: - type: Transform pos: 5.5,-32.5 parent: 2 - - uid: 33930 + - uid: 19808 components: - type: Transform pos: 4.5,-33.5 parent: 2 - - uid: 33955 + - uid: 19809 components: - type: Transform pos: 5.5,-34.5 parent: 2 - - uid: 33957 + - uid: 19810 components: - type: Transform pos: 4.5,-32.5 parent: 2 - - uid: 33958 + - uid: 19811 components: - type: Transform pos: 4.5,-31.5 parent: 2 - - uid: 40060 + - uid: 19812 components: - type: Transform pos: 21.5,-30.5 parent: 2 - - uid: 40061 + - uid: 19813 components: - type: Transform pos: 21.5,-34.5 parent: 2 - - uid: 40062 + - uid: 19814 components: - type: Transform pos: -23.5,-41.5 parent: 2 - - uid: 40063 + - uid: 19815 components: - type: Transform pos: -23.5,-45.5 parent: 2 - - uid: 40064 + - uid: 19816 components: - type: Transform pos: -24.5,-46.5 parent: 2 - - uid: 40065 + - uid: 19817 components: - type: Transform pos: -23.5,-40.5 parent: 2 - - uid: 40066 + - uid: 19818 components: - type: Transform pos: -2.5,-10.5 parent: 2 - - uid: 40067 + - uid: 19819 components: - type: Transform pos: -2.5,-66.5 parent: 2 - - uid: 40068 + - uid: 19820 components: - type: Transform pos: -2.5,-67.5 parent: 2 - - uid: 40069 + - uid: 19821 components: - type: Transform pos: 3.5,-67.5 parent: 2 - - uid: 40070 + - uid: 19822 components: - type: Transform pos: 3.5,-68.5 parent: 2 - - uid: 40109 + - uid: 19823 components: - type: Transform pos: 0.5,-12.5 parent: 2 - - uid: 40110 + - uid: 19824 components: - type: Transform pos: 1.5,-12.5 parent: 2 - - uid: 40111 + - uid: 19825 components: - type: Transform pos: -0.5,-12.5 parent: 2 - - uid: 40112 + - uid: 19826 components: - type: Transform pos: 0.5,-13.5 parent: 2 - - uid: 40113 + - uid: 19827 components: - type: Transform pos: 1.5,-13.5 parent: 2 - - uid: 40114 + - uid: 19828 components: - type: Transform pos: 2.5,-12.5 parent: 2 - proto: FoamedIronMetal entities: - - uid: 28006 + - uid: 19829 components: - type: Transform pos: -21.5,-42.5 parent: 2 - - uid: 28009 + - uid: 19830 components: - type: Transform pos: 5.5,-38.5 parent: 2 - - uid: 28010 + - uid: 19831 components: - type: Transform pos: 5.5,-37.5 parent: 2 - - uid: 28012 + - uid: 19832 components: - type: Transform pos: 4.5,-37.5 parent: 2 - - uid: 28013 + - uid: 19833 components: - type: Transform pos: 16.5,-33.5 parent: 2 - - uid: 28826 + - uid: 19834 components: - type: Transform pos: -20.5,-42.5 parent: 2 - - uid: 30283 + - uid: 19835 components: - type: Transform pos: -20.5,-43.5 parent: 2 - - uid: 37745 + - uid: 19836 components: - type: Transform pos: 18.5,-33.5 parent: 2 - - uid: 37746 + - uid: 19837 components: - type: Transform pos: 18.5,-32.5 parent: 2 - - uid: 37747 + - uid: 19838 components: - type: Transform pos: 19.5,-32.5 parent: 2 - - uid: 37748 + - uid: 19839 components: - type: Transform pos: 4.5,-38.5 parent: 2 - - uid: 37749 + - uid: 19840 components: - type: Transform pos: 5.5,-36.5 parent: 2 - - uid: 37760 + - uid: 19841 components: - type: Transform pos: 16.5,-32.5 parent: 2 - - uid: 37761 + - uid: 19842 components: - type: Transform pos: 14.5,-32.5 parent: 2 - - uid: 39084 + - uid: 19843 components: - type: Transform pos: 19.5,-33.5 parent: 2 - - uid: 39735 + - uid: 19844 components: - type: Transform pos: 17.5,-33.5 parent: 2 - - uid: 40105 + - uid: 19845 components: - type: Transform pos: -21.5,-43.5 parent: 2 - proto: FoodBakedBunHotX entities: - - uid: 18561 + - uid: 19846 components: - type: Transform pos: 33.41241,-63.34057 parent: 2 - - uid: 18562 + - uid: 19847 components: - type: Transform pos: 33.803036,-63.512444 parent: 2 - proto: FoodBakedPancakeCc entities: - - uid: 16875 + - uid: 18857 components: - type: Transform - parent: 24294 + parent: 18855 - type: Stack count: 6 - type: Physics @@ -133462,7 +134806,7 @@ entities: - type: InsideEntityStorage - proto: FoodBakedVulpkaninPlate entities: - - uid: 18563 + - uid: 19848 components: - type: MetaData name: Вульпес Инкульта @@ -133471,148 +134815,153 @@ entities: parent: 2 - proto: FoodBanana entities: - - uid: 18564 + - uid: 19849 components: - type: Transform pos: 38.42539,-15.280518 parent: 2 - - uid: 18565 + - uid: 19850 components: - type: Transform pos: 38.722263,-15.296143 parent: 2 - - uid: 18566 + - uid: 19851 components: - type: Transform pos: 38.472263,-15.233643 parent: 2 - - uid: 18567 + - uid: 19852 components: - type: Transform pos: -48.403137,-112.45925 parent: 2 - - uid: 18568 + - uid: 19853 components: - type: Transform pos: -48.543762,-112.39675 parent: 2 - - uid: 18569 + - uid: 19854 components: - type: Transform pos: -48.668762,-112.47488 parent: 2 - proto: FoodBoxDonkpocketCarp entities: - - uid: 18573 + - uid: 19855 components: - type: Transform pos: -9.549273,-89.22121 parent: 2 - proto: FoodBoxDonkpocketDink entities: - - uid: 18574 + - uid: 19856 components: - type: Transform pos: 95.945114,-48.31866 parent: 2 - proto: FoodBoxDonkpocketHonk entities: - - uid: 18575 + - uid: 19857 components: - type: Transform pos: 53.366394,-52.185284 parent: 2 - - uid: 18577 + - uid: 19858 components: - type: Transform pos: 37.542347,-17.35374 parent: 2 - proto: FoodBoxDonkpocketPizza entities: - - uid: 18578 + - uid: 19859 components: - type: Transform rot: 3.141592653589793 rad pos: 7.4916925,19.528557 parent: 2 - - uid: 18579 + - uid: 19860 components: - type: Transform pos: 53.630524,-52.405323 parent: 2 - proto: FoodBoxDonkpocketSpicy entities: - - uid: 25302 + - uid: 19861 components: - type: Transform pos: 50.63306,2.8524473 parent: 2 - proto: FoodBoxDonkpocketStonk entities: - - uid: 18580 + - uid: 19862 components: - type: Transform pos: -10.470591,23.59679 parent: 2 - proto: FoodBoxDonut entities: - - uid: 7793 + - uid: 19863 components: - type: Transform pos: 46.548893,-5.5815773 parent: 2 - - uid: 9361 + - uid: 19864 components: - type: Transform pos: 46.548893,-5.3472023 parent: 2 - - uid: 18581 + - uid: 19865 components: - type: Transform pos: -62.656868,-72.05943 parent: 2 - - uid: 18582 + - uid: 19866 components: - type: Transform pos: -6.6280947,8.496237 parent: 2 - - uid: 18583 + - uid: 19867 components: - type: Transform pos: 70.493164,-37.398773 parent: 2 - - uid: 18584 + - uid: 19868 components: - type: Transform rot: 3.141592653589793 rad pos: -5.573481,-0.5511309 parent: 2 - - uid: 18585 + - uid: 19869 components: - type: Transform pos: 21.537498,-2.4429417 parent: 2 - - uid: 18586 + - uid: 19870 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.450951,7.5088024 parent: 2 - - uid: 22253 + - uid: 19871 components: - type: Transform pos: 52.512894,5.7238545 parent: 2 + - uid: 19872 + components: + - type: Transform + pos: -9.435904,15.6597595 + parent: 2 - proto: FoodBreadMimanaSlice entities: - - uid: 18590 + - uid: 19873 components: - type: Transform pos: 34.117794,-17.169199 parent: 2 - proto: FoodBreadPlain entities: - - uid: 7083 + - uid: 19874 components: - type: MetaData desc: Тостер хлебирован за оверлут. @@ -133622,54 +134971,54 @@ entities: parent: 2 - proto: FoodBurgerGhost entities: - - uid: 36755 + - uid: 19875 components: - type: Transform pos: -36.487896,-1.4155221 parent: 2 - proto: FoodBurgerMime entities: - - uid: 18593 + - uid: 19876 components: - type: Transform pos: 51.434517,-54.369267 parent: 2 - proto: FoodBurgerRobot entities: - - uid: 31602 + - uid: 19877 components: - type: Transform pos: -17.988283,-54.400684 parent: 2 - - uid: 31604 + - uid: 19878 components: - type: Transform pos: -18.519533,-54.463184 parent: 2 - proto: FoodCakeBrain entities: - - uid: 39127 + - uid: 19879 components: - type: Transform pos: -1.4665136,-39.22168 parent: 2 - proto: FoodCakeClown entities: - - uid: 18594 + - uid: 19880 components: - type: Transform pos: 38.48872,-17.325846 parent: 2 - proto: FoodCakePumpkin entities: - - uid: 40902 + - uid: 19881 components: - type: Transform pos: 30.56216,12.676757 parent: 2 - proto: FoodCartCold entities: - - uid: 17617 + - uid: 18760 components: - type: Transform rot: -1.5707963267948966 rad @@ -133681,85 +135030,85 @@ entities: showEnts: False occludes: True ents: - - 17629 - - 17630 - - 17626 - - 17624 - - 17625 - - 17634 - - 17623 - - 17622 - - 17628 - - 17627 - - 17631 - - 17633 - - 17621 - - 17618 - - 17619 - - 17620 - - 17632 + - 18772 + - 18773 + - 18769 + - 18767 + - 18768 + - 18777 + - 18766 + - 18765 + - 18771 + - 18770 + - 18774 + - 18776 + - 18764 + - 18761 + - 18762 + - 18763 + - 18775 - type: Storage storedItems: - 17629: + 18772: position: 0,0 _rotation: South - 17630: + 18773: position: 1,0 _rotation: South - 17626: + 18769: position: 2,0 _rotation: South - 17625: + 18768: position: 4,0 _rotation: South - 17624: + 18767: position: 3,0 _rotation: South - 17634: + 18777: position: 5,0 _rotation: South - 17623: + 18766: position: 6,0 _rotation: South - 17622: + 18765: position: 7,0 _rotation: South - 17628: + 18771: position: 0,2 _rotation: South - 17627: + 18770: position: 1,2 _rotation: South - 17631: + 18774: position: 2,2 _rotation: South - 17633: + 18776: position: 3,2 _rotation: South - 17621: + 18764: position: 4,2 _rotation: South - 17618: + 18761: position: 5,2 _rotation: South - 17619: + 18762: position: 6,2 _rotation: South - 17620: + 18763: position: 7,2 _rotation: South - 17632: + 18775: position: 0,4 _rotation: East - proto: FoodCartHot entities: - - uid: 18596 + - uid: 19882 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,7.5 parent: 2 - - uid: 26246 + - uid: 19883 components: - type: Transform rot: -1.5707963267948966 rad @@ -133767,180 +135116,180 @@ entities: parent: 2 - proto: FoodCheeseSlice entities: - - uid: 18597 + - uid: 19884 components: - type: Transform pos: 28.81606,11.750308 parent: 2 - proto: FoodCondimentBottleColdsauce entities: - - uid: 17621 + - uid: 18764 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - proto: FoodCondimentBottleEnzyme entities: - - uid: 17637 + - uid: 18781 components: - type: Transform - parent: 17635 + parent: 18779 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 17883 + - uid: 18800 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - - uid: 18598 + - uid: 19885 components: - type: Transform pos: 28.62856,11.953433 parent: 2 - - uid: 18599 + - uid: 19886 components: - type: Transform pos: -55.325607,11.7430105 parent: 2 - proto: FoodCondimentPacketAstrotame entities: - - uid: 25075 + - uid: 18801 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - proto: FoodCondimentPacketBbq entities: - - uid: 23773 + - uid: 18802 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - - uid: 34327 + - uid: 18803 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - proto: FoodCondimentPacketCornoil entities: - - uid: 33756 + - uid: 18804 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - - uid: 34324 + - uid: 18805 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - proto: FoodCondimentPacketHorseradish entities: - - uid: 28068 + - uid: 18806 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - proto: FoodCondimentPacketKetchup entities: - - uid: 24650 + - uid: 18807 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - proto: FoodCondimentPacketMustard entities: - - uid: 30611 + - uid: 18808 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - proto: FoodCondimentPacketPepper entities: - - uid: 24659 + - uid: 18809 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - proto: FoodCondimentPacketSalt entities: - - uid: 24651 + - uid: 18810 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - proto: FoodCondimentPacketSoy entities: - - uid: 24639 + - uid: 18811 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - proto: FoodCondimentPacketSugar entities: - - uid: 25213 + - uid: 18812 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - proto: FoodCornTrash entities: - - uid: 31083 + - uid: 19887 components: - type: Transform pos: 88.546265,-9.700335 parent: 2 - proto: FoodDonkpocket entities: - - uid: 18600 + - uid: 19888 components: - type: Transform pos: 62.35533,-64.4108 parent: 2 - proto: FoodDonkpocketDank entities: - - uid: 18601 + - uid: 19889 components: - type: Transform pos: 32.471024,10.833689 parent: 2 - - uid: 18602 + - uid: 19890 components: - type: Transform pos: 46.301174,21.661882 parent: 2 - - uid: 18603 + - uid: 19891 components: - type: Transform pos: 46.53555,21.583757 parent: 2 - - uid: 18604 + - uid: 19892 components: - type: Transform pos: 46.332424,21.349382 parent: 2 - - uid: 18605 + - uid: 19893 components: - type: Transform pos: 46.676174,21.411882 parent: 2 - proto: FoodDonkpocketWarm entities: - - uid: 19181 + - uid: 19894 components: - type: MetaData desc: Тёпленький донк с прошлой смены, пальчики оближешь. @@ -133949,390 +135298,390 @@ entities: parent: 2 - proto: FoodDonutBluePumpkin entities: - - uid: 40903 + - uid: 19895 components: - type: Transform pos: 28.40591,7.614257 parent: 2 - - uid: 40904 + - uid: 19896 components: - type: Transform pos: 28.59341,8.208007 parent: 2 -- proto: FoodDonutBungo - entities: - - uid: 18526 - components: - - type: Transform - pos: -8.570518,18.532965 - parent: 2 - proto: FoodDonutCaramel entities: - - uid: 18607 + - uid: 19897 components: - type: Transform pos: -6.3937197,8.746237 parent: 2 - - uid: 18608 + - uid: 19898 components: - type: Transform pos: 70.61918,-36.66392 parent: 2 +- proto: FoodDonutJellySlugcat + entities: + - uid: 19899 + components: + - type: Transform + pos: -8.4720955,18.668385 + parent: 2 - proto: FoodFrozenCornuto entities: - - uid: 17622 + - uid: 18765 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - proto: FoodFrozenFreezy entities: - - uid: 17623 + - uid: 18766 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - proto: FoodFrozenPopsicleBerry entities: - - uid: 17624 + - uid: 18767 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - proto: FoodFrozenPopsicleJumbo entities: - - uid: 17625 + - uid: 18768 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - proto: FoodFrozenPopsicleOrange entities: - - uid: 17626 + - uid: 18769 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - - uid: 19817 + - uid: 19901 components: - type: Transform - parent: 24296 + parent: 19900 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodFrozenSandwich entities: - - uid: 17627 + - uid: 18770 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - proto: FoodFrozenSandwichStrawberry entities: - - uid: 17628 + - uid: 18771 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - proto: FoodFrozenSnowcone entities: - - uid: 17629 + - uid: 18772 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - proto: FoodFrozenSnowconeBase entities: - - uid: 17630 + - uid: 18773 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - proto: FoodFrozenSnowconeBerry entities: - - uid: 17631 + - uid: 18774 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - proto: FoodFrozenSnowconeClown entities: - - uid: 17632 + - uid: 18775 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - proto: FoodFrozenSnowconeFruit entities: - - uid: 17633 + - uid: 18776 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - proto: FoodFrozenSnowconeMime entities: - - uid: 14696 + - uid: 15629 components: - type: Transform - parent: 14692 + parent: 15625 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodFrozenSundae entities: - - uid: 17634 + - uid: 18777 components: - type: Transform - parent: 17617 + parent: 18760 - type: Physics canCollide: False - - uid: 19827 + - uid: 19902 components: - type: Transform - parent: 24296 + parent: 19900 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodMealFriesCarrot entities: - - uid: 19349 + - uid: 18750 components: - type: Transform - parent: 24295 + parent: 18747 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodMealSashimi entities: - - uid: 16868 + - uid: 19904 components: - type: Transform - parent: 9030 + parent: 19903 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodMeat entities: - - uid: 17638 + - uid: 18782 components: - type: Transform - parent: 17635 + parent: 18779 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 17639 + - uid: 18783 components: - type: Transform - parent: 17635 + parent: 18779 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodMeatXeno entities: - - uid: 18622 + - uid: 19905 components: - type: Transform pos: -47.631653,-74.324524 parent: 2 - - uid: 18623 + - uid: 19906 components: - type: Transform pos: -47.741028,-73.668274 parent: 2 - - uid: 18624 + - uid: 19907 components: - type: Transform pos: -54.373566,-74.21454 parent: 2 - - uid: 18625 + - uid: 19908 components: - type: Transform pos: -48.334778,-74.324524 parent: 2 - proto: FoodMimana entities: - - uid: 14697 + - uid: 15630 components: - type: Transform - parent: 14692 + parent: 15625 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodNoodlesSpesslaw entities: - - uid: 18628 + - uid: 19909 components: - type: Transform pos: -19.500786,6.5491867 parent: 2 - proto: FoodPieBananaCream entities: - - uid: 18630 + - uid: 19911 components: - type: Transform - parent: 18629 + parent: 19910 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18631 + - uid: 19912 components: - type: Transform - parent: 18629 + parent: 19910 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18632 + - uid: 19913 components: - type: Transform - parent: 18629 + parent: 19910 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18633 + - uid: 19914 components: - type: Transform - parent: 18629 + parent: 19910 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18634 + - uid: 19915 components: - type: Transform - parent: 18629 + parent: 19910 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18635 + - uid: 19916 components: - type: Transform - parent: 18629 + parent: 19910 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18636 + - uid: 19917 components: - type: Transform - parent: 18629 + parent: 19910 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18637 + - uid: 19918 components: - type: Transform - parent: 18629 + parent: 19910 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 18640 + - uid: 19920 components: - type: Transform pos: -50.315296,-112.50843 parent: 2 - - uid: 18641 + - uid: 19921 components: - type: Transform pos: -50.11217,-112.35218 parent: 2 - - uid: 18642 + - uid: 19922 components: - type: Transform pos: -50.315296,-112.22718 parent: 2 - - uid: 18643 + - uid: 19923 components: - type: Transform pos: -50.54967,-112.41468 parent: 2 - proto: FoodPizzaDonkpocketSlice entities: - - uid: 18644 + - uid: 19924 components: - type: Transform pos: -37.82073,-5.3962727 parent: 2 - proto: FoodPlate entities: - - uid: 18645 + - uid: 19925 components: - type: Transform pos: 32.52904,4.7490935 parent: 2 - - uid: 18646 + - uid: 19926 components: - type: Transform pos: -19.49841,6.615534 parent: 2 - proto: FoodPlateSmall entities: - - uid: 25340 + - uid: 18813 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - - uid: 25363 + - uid: 18814 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - proto: FoodPlateSmallPlastic entities: - - uid: 27798 + - uid: 19927 components: - type: Transform pos: 85.4859,-9.3747635 parent: 2 - proto: FoodPlateTrash entities: - - uid: 18653 + - uid: 19928 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.793531,-97.708046 parent: 2 - - uid: 18654 + - uid: 19929 components: - type: Transform pos: -19.613325,-101.45608 parent: 2 - - uid: 18655 + - uid: 19930 components: - type: Transform pos: -17.9102,-98.12795 parent: 2 - - uid: 18656 + - uid: 19931 components: - type: Transform pos: -19.94145,-95.2217 parent: 2 - - uid: 18657 + - uid: 19932 components: - type: Transform pos: -17.269575,-95.48733 parent: 2 - proto: FoodSaladAesir entities: - - uid: 18658 + - uid: 19933 components: - type: Transform pos: 38.54234,-44.43526 parent: 2 - proto: FoodSaladCaesar entities: - - uid: 18659 + - uid: 19934 components: - type: MetaData desc: Как салат может управлять империей? @@ -134341,7 +135690,7 @@ entities: parent: 2 - proto: FoodSnackChips entities: - - uid: 18660 + - uid: 19935 components: - type: MetaData desc: Первый император партии. @@ -134351,101 +135700,101 @@ entities: parent: 2 - proto: FoodSnackChocolate entities: - - uid: 15615 + - uid: 2517 components: - type: Transform - parent: 15614 + parent: 2515 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15616 + - uid: 2518 components: - type: Transform - parent: 15614 + parent: 2515 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15621 + - uid: 2519 components: - type: Transform - parent: 15614 + parent: 2515 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodSnackChocolateBar entities: - - uid: 18661 + - uid: 19936 components: - type: Transform pos: -6.439806,-84.170586 parent: 2 - - uid: 18662 + - uid: 19937 components: - type: Transform pos: -17.36111,-1.3529868 parent: 2 - proto: FoodSnackSyndi entities: - - uid: 18663 + - uid: 19938 components: - type: Transform pos: 49.67742,-100.15202 parent: 2 - - uid: 18664 + - uid: 19939 components: - type: Transform pos: 23.027298,-69.37171 parent: 2 - - uid: 18665 + - uid: 19940 components: - type: Transform pos: -30.504393,-1.2859936 parent: 2 - proto: FoodSoupClown entities: - - uid: 14572 + - uid: 1317 components: - type: Transform - parent: 14567 + parent: 1311 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodSoupEyeball entities: - - uid: 40928 + - uid: 19941 components: - type: Transform pos: 29.473808,30.5809 parent: 2 - proto: FoodTartMime entities: - - uid: 14698 + - uid: 15631 components: - type: Transform - parent: 14692 + parent: 15625 - type: Physics canCollide: False - type: InsideEntityStorage - proto: FoodTinBeans entities: - - uid: 32954 + - uid: 19942 components: - type: Transform pos: -19.624096,19.738306 parent: 2 - - uid: 32989 + - uid: 19943 components: - type: Transform pos: -19.342846,19.691431 parent: 2 - - uid: 32990 + - uid: 19944 components: - type: Transform pos: -19.467846,19.832056 parent: 2 - proto: FoodTinBeansTrash entities: - - uid: 18670 + - uid: 19945 components: - type: Transform rot: -1.5707963267948966 rad @@ -134453,43 +135802,43 @@ entities: parent: 2 - proto: FoodTinMRE entities: - - uid: 18671 + - uid: 19946 components: - type: Transform pos: -17.587526,17.545277 parent: 2 - - uid: 18672 + - uid: 19947 components: - type: Transform pos: -17.368776,17.576527 parent: 2 - - uid: 18673 + - uid: 19948 components: - type: Transform pos: -17.431276,17.639027 parent: 2 - proto: FoodTinMRETrash entities: - - uid: 18675 + - uid: 19949 components: - type: Transform pos: -17.228151,17.943596 parent: 2 - proto: FoodTinPeachesTrash entities: - - uid: 17830 + - uid: 19950 components: - type: Transform pos: -16.554482,19.21821 parent: 2 - - uid: 31091 + - uid: 19951 components: - type: Transform pos: 88.58296,-10.599283 parent: 2 - proto: ForensicScanner entities: - - uid: 30714 + - uid: 19952 components: - type: MetaData desc: Для экспресс тестов днк. @@ -134499,7 +135848,7 @@ entities: parent: 2 - proto: FuelDispenser entities: - - uid: 18683 + - uid: 19953 components: - type: Transform rot: -1.5707963267948966 rad @@ -134507,78 +135856,78 @@ entities: parent: 2 - proto: Fulton1 entities: - - uid: 39111 + - uid: 19954 components: - type: Transform pos: 4.5980988,-46.26865 parent: 2 - proto: FultonBeacon entities: - - uid: 39110 + - uid: 19955 components: - type: Transform pos: 6.5824738,-48.315525 parent: 2 - proto: GasAnalyzer entities: - - uid: 18684 + - uid: 19956 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.483376,-19.439384 parent: 2 - - uid: 18686 + - uid: 19957 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.65291,-54.3892 parent: 2 - - uid: 18687 + - uid: 19958 components: - type: Transform pos: -76.5,-27.5 parent: 2 - - uid: 18688 + - uid: 19959 components: - type: Transform pos: 95.45756,-84.44403 parent: 2 - proto: GasCanisterBrokenBase entities: - - uid: 18689 + - uid: 19960 components: - type: Transform pos: -68.5,-20.5 parent: 2 - - uid: 18690 + - uid: 19961 components: - type: Transform pos: 31.5,21.5 parent: 2 - - uid: 18691 + - uid: 19962 components: - type: Transform pos: -67.5,9.5 parent: 2 - - uid: 18692 + - uid: 19963 components: - type: Transform pos: -23.5,-96.5 parent: 2 - - uid: 18693 + - uid: 19964 components: - type: Transform pos: -46.5,-69.5 parent: 2 - proto: GasFilterFlipped entities: - - uid: 18694 + - uid: 19965 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-21.5 parent: 2 - - uid: 18695 + - uid: 19966 components: - type: Transform rot: 1.5707963267948966 rad @@ -134588,7 +135937,7 @@ entities: color: '#FFAA00FF' - proto: GasMinerCarbonDioxide entities: - - uid: 18696 + - uid: 19967 components: - type: Transform rot: 3.141592653589793 rad @@ -134596,32 +135945,36 @@ entities: parent: 2 - proto: GasMinerNitrogenStationLarge entities: - - uid: 18697 + - uid: 19968 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-101.5 parent: 2 - - uid: 41472 + - type: GasMiner + spawnAmount: 800 + - uid: 19969 components: - type: Transform pos: -9.5,-53.5 parent: 2 - proto: GasMinerOxygenStationLarge entities: - - uid: 18698 + - uid: 19970 components: - type: Transform pos: 31.5,-98.5 parent: 2 - - uid: 41471 + - type: GasMiner + spawnAmount: 800 + - uid: 19971 components: - type: Transform pos: -2.5,-54.5 parent: 2 - proto: GasMinerPlasma entities: - - uid: 36697 + - uid: 19972 components: - type: Transform pos: 31.5,-92.5 @@ -134630,7 +135983,7 @@ entities: spawnAmount: 25 - proto: GasMinerWaterVapor entities: - - uid: 18699 + - uid: 19973 components: - type: Transform rot: 3.141592653589793 rad @@ -134638,7 +135991,7 @@ entities: parent: 2 - proto: GasMixer entities: - - uid: 18702 + - uid: 19974 components: - type: Transform rot: -1.5707963267948966 rad @@ -134646,20 +135999,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FF00FF' - - uid: 18703 + - uid: 19975 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-89.5 parent: 2 - - uid: 18704 + - uid: 19976 components: - type: Transform pos: 36.5,-103.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 18705 + - uid: 19977 components: - type: Transform rot: -1.5707963267948966 rad @@ -134668,7 +136021,7 @@ entities: - type: GasMixer inletTwoConcentration: 0.20999998 inletOneConcentration: 0.79 - - uid: 34319 + - uid: 19978 components: - type: Transform rot: 1.5707963267948966 rad @@ -134678,7 +136031,7 @@ entities: color: '#2A6478FF' - proto: GasMixerFlipped entities: - - uid: 18706 + - uid: 19979 components: - type: Transform rot: -1.5707963267948966 rad @@ -134689,316 +136042,316 @@ entities: inletOneConcentration: 0.79 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 34295 + - uid: 19980 components: - type: Transform pos: -5.5,-51.5 parent: 2 - proto: GasOutletInjector entities: - - uid: 14952 + - uid: 19981 components: - type: Transform pos: -1.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 14953 + - uid: 19982 components: - type: Transform pos: -0.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 14954 + - uid: 19983 components: - type: Transform pos: 0.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 14955 + - uid: 19984 components: - type: Transform pos: 1.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 14960 + - uid: 19985 components: - type: Transform pos: 2.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 17377 + - uid: 19986 components: - type: Transform pos: -7.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 17403 + - uid: 19987 components: - type: Transform pos: -6.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 17498 + - uid: 19988 components: - type: Transform pos: -1.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 17602 + - uid: 19989 components: - type: Transform pos: -5.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 17686 + - uid: 19990 components: - type: Transform pos: -0.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 17694 + - uid: 19991 components: - type: Transform pos: -4.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18588 + - uid: 19992 components: - type: Transform pos: -4.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18589 + - uid: 19993 components: - type: Transform pos: -5.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18591 + - uid: 19994 components: - type: Transform pos: -6.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18592 + - uid: 19995 components: - type: Transform pos: -7.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18609 + - uid: 19996 components: - type: Transform pos: -8.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18610 + - uid: 19997 components: - type: Transform pos: -9.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18707 + - uid: 19998 components: - type: Transform pos: -72.5,-77.5 parent: 2 - - uid: 18793 + - uid: 19999 components: - type: Transform pos: 2.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 21643 + - uid: 20000 components: - type: Transform pos: 0.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 21894 + - uid: 20001 components: - type: Transform pos: -9.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 21895 + - uid: 20002 components: - type: Transform pos: -8.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 21943 + - uid: 20003 components: - type: Transform pos: -16.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 21982 + - uid: 20004 components: - type: Transform pos: -12.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 21983 + - uid: 20005 components: - type: Transform pos: -15.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22012 + - uid: 20006 components: - type: Transform pos: -13.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22510 + - uid: 20007 components: - type: Transform pos: 1.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22511 + - uid: 20008 components: - type: Transform pos: -14.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22516 + - uid: 20009 components: - type: Transform pos: -16.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22517 + - uid: 20010 components: - type: Transform pos: -15.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22635 + - uid: 20011 components: - type: Transform pos: -14.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22636 + - uid: 20012 components: - type: Transform pos: -13.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22683 + - uid: 20013 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,6.5 parent: 2 - - uid: 22694 + - uid: 20014 components: - type: Transform pos: -12.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24020 + - uid: 20015 components: - type: Transform pos: -4.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24055 + - uid: 20016 components: - type: Transform pos: -5.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24056 + - uid: 20017 components: - type: Transform pos: -6.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24057 + - uid: 20018 components: - type: Transform pos: -7.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24058 + - uid: 20019 components: - type: Transform pos: -8.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24063 + - uid: 20020 components: - type: Transform pos: -9.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24232 + - uid: 20021 components: - type: Transform pos: -12.5,-11.5 parent: 2 - - uid: 24266 + - uid: 20022 components: - type: Transform pos: -13.5,-11.5 parent: 2 - - uid: 24275 + - uid: 20023 components: - type: Transform pos: -14.5,-11.5 parent: 2 - - uid: 24284 + - uid: 20024 components: - type: Transform pos: -15.5,-11.5 parent: 2 - - uid: 24312 + - uid: 20025 components: - type: Transform pos: -16.5,-11.5 parent: 2 - - uid: 30926 + - uid: 20026 components: - type: Transform rot: -1.5707963267948966 rad @@ -135006,18 +136359,18 @@ entities: parent: 2 - proto: GasPassiveGate entities: - - uid: 19177 + - uid: 20027 components: - type: Transform pos: -17.5,-15.5 parent: 2 - - uid: 34293 + - uid: 20028 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-53.5 parent: 2 - - uid: 34294 + - uid: 20029 components: - type: Transform rot: 1.5707963267948966 rad @@ -135025,25 +136378,25 @@ entities: parent: 2 - proto: GasPassiveVent entities: - - uid: 18708 + - uid: 20030 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-98.5 parent: 2 - - uid: 18709 + - uid: 20031 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-108.5 parent: 2 - - uid: 18710 + - uid: 20032 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-77.5 parent: 2 - - uid: 18711 + - uid: 20033 components: - type: Transform rot: 3.141592653589793 rad @@ -135051,37 +136404,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 18712 + - uid: 20034 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-101.5 parent: 2 - - uid: 18714 + - uid: 20035 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-56.5 parent: 2 - - uid: 18716 + - uid: 20036 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-92.5 parent: 2 - - uid: 18717 + - uid: 20037 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-89.5 parent: 2 - - uid: 18718 + - uid: 20038 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-86.5 parent: 2 - - uid: 18719 + - uid: 20039 components: - type: Transform rot: 1.5707963267948966 rad @@ -135089,19 +136442,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18720 + - uid: 20040 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-58.5 parent: 2 - - uid: 18721 + - uid: 20041 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-108.5 parent: 2 - - uid: 18722 + - uid: 20042 components: - type: Transform rot: -1.5707963267948966 rad @@ -135109,13 +136462,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18723 + - uid: 20043 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-95.5 parent: 2 - - uid: 18724 + - uid: 20044 components: - type: Transform rot: -1.5707963267948966 rad @@ -135123,7 +136476,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18725 + - uid: 20045 components: - type: Transform rot: -1.5707963267948966 rad @@ -135131,73 +136484,81 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18726 + - uid: 20046 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-77.5 parent: 2 - - uid: 18727 + - uid: 20047 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-73.5 parent: 2 - - uid: 18728 + - uid: 20048 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,-15.5 parent: 2 - - uid: 21866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-2.5 - parent: 21045 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 34286 + - uid: 20049 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-53.5 parent: 2 - - uid: 34288 + - uid: 20050 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-53.5 parent: 2 - - uid: 34299 + - uid: 20051 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-54.5 parent: 2 - - uid: 34300 + - uid: 20052 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-54.5 parent: 2 - - uid: 38232 + - uid: 20053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 102.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 40734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 40666 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41178 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-15.5 - parent: 37887 - - uid: 38837 + parent: 40828 + - uid: 41783 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-7.5 - parent: 38722 + parent: 41669 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasPipeBend entities: - - uid: 2024 + - uid: 20054 components: - type: Transform rot: -1.5707963267948966 rad @@ -135205,21 +136566,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2662 + - uid: 20055 components: - type: Transform pos: 42.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2767 + - uid: 20056 components: - type: Transform pos: 43.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5166 + - uid: 20057 components: - type: Transform rot: 3.141592653589793 rad @@ -135227,7 +136588,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 7706 + - uid: 20058 components: - type: Transform rot: 1.5707963267948966 rad @@ -135235,7 +136596,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9695 + - uid: 20059 components: - type: Transform rot: -1.5707963267948966 rad @@ -135243,14 +136604,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9722 + - uid: 20060 components: - type: Transform pos: 63.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9935 + - uid: 20061 components: - type: Transform rot: -1.5707963267948966 rad @@ -135258,7 +136619,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9946 + - uid: 20062 components: - type: Transform rot: -1.5707963267948966 rad @@ -135266,29 +136627,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9948 + - uid: 20063 components: - type: Transform pos: 62.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14463 + - uid: 20064 components: - type: Transform pos: 48.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14741 + - uid: 20065 components: - type: Transform rot: 1.5707963267948966 rad @@ -135296,7 +136649,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15477 + - uid: 20066 components: - type: Transform rot: -1.5707963267948966 rad @@ -135304,7 +136657,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17939 + - uid: 20067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20068 components: - type: Transform rot: 3.141592653589793 rad @@ -135312,7 +136673,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18627 + - uid: 20069 components: - type: Transform rot: 1.5707963267948966 rad @@ -135320,29 +136681,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18729 + - uid: 20070 components: - type: Transform pos: -43.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18730 + - uid: 20071 components: - type: Transform pos: 33.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18732 + - uid: 20072 components: - type: Transform rot: -1.5707963267948966 rad @@ -135350,7 +136703,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18733 + - uid: 20073 components: - type: Transform rot: 1.5707963267948966 rad @@ -135358,7 +136711,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18734 + - uid: 20074 components: - type: Transform rot: -1.5707963267948966 rad @@ -135366,7 +136719,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 18735 + - uid: 20075 components: - type: Transform rot: 3.141592653589793 rad @@ -135374,7 +136727,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18736 + - uid: 20076 components: - type: Transform rot: 1.5707963267948966 rad @@ -135382,14 +136735,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 18737 + - uid: 20077 components: - type: Transform pos: 31.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18738 + - uid: 20078 components: - type: Transform rot: 1.5707963267948966 rad @@ -135397,14 +136750,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18740 + - uid: 20079 components: - type: Transform pos: -48.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18741 + - uid: 20080 components: - type: Transform rot: 3.141592653589793 rad @@ -135412,14 +136765,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18743 + - uid: 20081 components: - type: Transform pos: 62.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18748 + - uid: 20082 components: - type: Transform rot: 1.5707963267948966 rad @@ -135427,7 +136780,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FF00FF' - - uid: 18749 + - uid: 20083 components: - type: Transform rot: -1.5707963267948966 rad @@ -135435,34 +136788,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18750 + - uid: 20084 components: - type: Transform pos: 35.5,-46.5 parent: 2 - - uid: 18751 + - uid: 20085 components: - type: Transform pos: 39.5,-49.5 parent: 2 - - uid: 18752 + - uid: 20086 components: - type: Transform pos: 35.5,-48.5 parent: 2 - - uid: 18753 + - uid: 20087 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-20.5 parent: 2 - - uid: 18754 + - uid: 20088 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-21.5 parent: 2 - - uid: 18755 + - uid: 20089 components: - type: Transform rot: -1.5707963267948966 rad @@ -135470,7 +136823,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18756 + - uid: 20090 components: - type: Transform rot: 1.5707963267948966 rad @@ -135478,7 +136831,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 18757 + - uid: 20091 components: - type: Transform rot: 3.141592653589793 rad @@ -135486,7 +136839,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 18758 + - uid: 20092 components: - type: Transform rot: 1.5707963267948966 rad @@ -135494,7 +136847,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18759 + - uid: 20093 components: - type: Transform rot: 3.141592653589793 rad @@ -135502,7 +136855,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18760 + - uid: 20094 components: - type: Transform rot: -1.5707963267948966 rad @@ -135510,7 +136863,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18761 + - uid: 20095 components: - type: Transform rot: 1.5707963267948966 rad @@ -135518,7 +136871,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18762 + - uid: 20096 components: - type: Transform rot: -1.5707963267948966 rad @@ -135526,7 +136879,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18763 + - uid: 20097 components: - type: Transform rot: -1.5707963267948966 rad @@ -135534,7 +136887,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18764 + - uid: 20098 components: - type: Transform rot: 1.5707963267948966 rad @@ -135542,7 +136895,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18765 + - uid: 20099 components: - type: Transform rot: 1.5707963267948966 rad @@ -135550,21 +136903,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18766 + - uid: 20100 components: - type: Transform pos: 53.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18767 + - uid: 20101 components: - type: Transform pos: 56.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18768 + - uid: 20102 components: - type: Transform rot: 1.5707963267948966 rad @@ -135572,14 +136925,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18769 + - uid: 20103 components: - type: Transform pos: 50.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18770 + - uid: 20104 components: - type: Transform rot: -1.5707963267948966 rad @@ -135587,7 +136940,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18771 + - uid: 20105 components: - type: Transform rot: 3.141592653589793 rad @@ -135595,7 +136948,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18781 + - uid: 20106 components: - type: Transform rot: 1.5707963267948966 rad @@ -135603,7 +136956,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18782 + - uid: 20107 components: - type: Transform rot: 3.141592653589793 rad @@ -135611,7 +136964,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18783 + - uid: 20108 components: - type: Transform rot: 3.141592653589793 rad @@ -135619,7 +136972,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18784 + - uid: 20109 components: - type: Transform rot: 3.141592653589793 rad @@ -135627,7 +136980,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18785 + - uid: 20110 components: - type: Transform rot: 1.5707963267948966 rad @@ -135635,7 +136988,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18786 + - uid: 20111 components: - type: Transform rot: 1.5707963267948966 rad @@ -135643,21 +136996,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18787 + - uid: 20112 components: - type: Transform pos: 102.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18789 + - uid: 20113 components: - type: Transform pos: 102.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18790 + - uid: 20114 components: - type: Transform rot: 1.5707963267948966 rad @@ -135665,7 +137018,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18791 + - uid: 20115 components: - type: Transform rot: 1.5707963267948966 rad @@ -135673,14 +137026,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18794 + - uid: 20116 components: - type: Transform pos: 30.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18795 + - uid: 20117 components: - type: Transform rot: 3.141592653589793 rad @@ -135688,14 +137041,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18796 + - uid: 20118 components: - type: Transform pos: 29.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18797 + - uid: 20119 components: - type: Transform rot: 3.141592653589793 rad @@ -135703,14 +137056,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18798 + - uid: 20120 components: - type: Transform pos: 28.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18799 + - uid: 20121 components: - type: Transform rot: 3.141592653589793 rad @@ -135718,14 +137071,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18800 + - uid: 20122 components: - type: Transform pos: 28.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18801 + - uid: 20123 components: - type: Transform rot: 3.141592653589793 rad @@ -135733,14 +137086,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18802 + - uid: 20124 components: - type: Transform pos: 27.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18803 + - uid: 20125 components: - type: Transform rot: 3.141592653589793 rad @@ -135748,7 +137101,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18804 + - uid: 20126 components: - type: Transform rot: 3.141592653589793 rad @@ -135756,14 +137109,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18805 + - uid: 20127 components: - type: Transform pos: 25.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18806 + - uid: 20128 components: - type: Transform rot: 3.141592653589793 rad @@ -135771,14 +137124,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18807 + - uid: 20129 components: - type: Transform pos: 24.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18808 + - uid: 20130 components: - type: Transform rot: 3.141592653589793 rad @@ -135786,14 +137139,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18809 + - uid: 20131 components: - type: Transform pos: 23.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18810 + - uid: 20132 components: - type: Transform rot: 3.141592653589793 rad @@ -135801,14 +137154,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18811 + - uid: 20133 components: - type: Transform pos: 22.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18812 + - uid: 20134 components: - type: Transform rot: 3.141592653589793 rad @@ -135816,14 +137169,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18813 + - uid: 20135 components: - type: Transform pos: 20.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18814 + - uid: 20136 components: - type: Transform rot: 3.141592653589793 rad @@ -135831,14 +137184,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18815 + - uid: 20137 components: - type: Transform pos: 18.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18816 + - uid: 20138 components: - type: Transform rot: 3.141592653589793 rad @@ -135846,14 +137199,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18817 + - uid: 20139 components: - type: Transform pos: 24.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18818 + - uid: 20140 components: - type: Transform rot: 3.141592653589793 rad @@ -135861,14 +137214,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18819 + - uid: 20141 components: - type: Transform pos: 22.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18820 + - uid: 20142 components: - type: Transform rot: 3.141592653589793 rad @@ -135876,14 +137229,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18821 + - uid: 20143 components: - type: Transform pos: 20.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18822 + - uid: 20144 components: - type: Transform rot: 3.141592653589793 rad @@ -135891,14 +137244,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18823 + - uid: 20145 components: - type: Transform pos: 18.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18824 + - uid: 20146 components: - type: Transform rot: 3.141592653589793 rad @@ -135906,7 +137259,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18825 + - uid: 20147 components: - type: Transform rot: 3.141592653589793 rad @@ -135914,21 +137267,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18826 + - uid: 20148 components: - type: Transform pos: 13.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18827 + - uid: 20149 components: - type: Transform pos: 11.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18828 + - uid: 20150 components: - type: Transform rot: -1.5707963267948966 rad @@ -135936,7 +137289,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18829 + - uid: 20151 components: - type: Transform rot: -1.5707963267948966 rad @@ -135944,14 +137297,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18830 + - uid: 20152 components: - type: Transform pos: 4.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18831 + - uid: 20153 components: - type: Transform rot: -1.5707963267948966 rad @@ -135959,15 +137312,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18832 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18833 + - uid: 20154 components: - type: Transform rot: 1.5707963267948966 rad @@ -135975,21 +137320,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18834 + - uid: 20155 components: - type: Transform pos: 8.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18835 + - uid: 20156 components: - type: Transform pos: 9.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18836 + - uid: 20157 components: - type: Transform rot: 3.141592653589793 rad @@ -135997,7 +137342,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18837 + - uid: 20158 components: - type: Transform rot: -1.5707963267948966 rad @@ -136005,7 +137350,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18838 + - uid: 20159 components: - type: Transform rot: -1.5707963267948966 rad @@ -136013,7 +137358,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18839 + - uid: 20160 components: - type: Transform rot: 1.5707963267948966 rad @@ -136021,7 +137366,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18840 + - uid: 20161 components: - type: Transform rot: 1.5707963267948966 rad @@ -136029,7 +137374,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18841 + - uid: 20162 components: - type: Transform rot: -1.5707963267948966 rad @@ -136037,7 +137382,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18842 + - uid: 20163 components: - type: Transform rot: 1.5707963267948966 rad @@ -136045,7 +137390,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18843 + - uid: 20164 components: - type: Transform rot: -1.5707963267948966 rad @@ -136053,7 +137398,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18844 + - uid: 20165 components: - type: Transform rot: 1.5707963267948966 rad @@ -136061,7 +137406,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18845 + - uid: 20166 components: - type: Transform rot: -1.5707963267948966 rad @@ -136069,21 +137414,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18846 + - uid: 20167 components: - type: Transform pos: 33.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18847 + - uid: 20168 components: - type: Transform pos: 36.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18848 + - uid: 20169 components: - type: Transform rot: -1.5707963267948966 rad @@ -136091,7 +137436,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18849 + - uid: 20170 components: - type: Transform rot: 1.5707963267948966 rad @@ -136099,7 +137444,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18850 + - uid: 20171 components: - type: Transform rot: 1.5707963267948966 rad @@ -136107,7 +137452,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18851 + - uid: 20172 components: - type: Transform rot: -1.5707963267948966 rad @@ -136115,7 +137460,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18852 + - uid: 20173 components: - type: Transform rot: -1.5707963267948966 rad @@ -136123,7 +137468,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18853 + - uid: 20174 components: - type: Transform rot: 3.141592653589793 rad @@ -136131,7 +137476,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18854 + - uid: 20175 components: - type: Transform rot: 3.141592653589793 rad @@ -136139,21 +137484,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18855 + - uid: 20176 components: - type: Transform pos: -11.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18856 + - uid: 20177 components: - type: Transform pos: -9.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18857 + - uid: 20178 components: - type: Transform rot: 3.141592653589793 rad @@ -136161,7 +137506,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18858 + - uid: 20179 components: - type: Transform rot: 1.5707963267948966 rad @@ -136169,7 +137514,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18859 + - uid: 20180 components: - type: Transform rot: 1.5707963267948966 rad @@ -136177,7 +137522,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18860 + - uid: 20181 components: - type: Transform rot: 3.141592653589793 rad @@ -136185,29 +137530,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18861 + - uid: 20182 components: - type: Transform pos: -20.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18862 + - uid: 20183 components: - type: Transform pos: -25.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-71.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18864 + - uid: 20184 components: - type: Transform rot: 3.141592653589793 rad @@ -136215,7 +137552,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18865 + - uid: 20185 components: - type: Transform rot: -1.5707963267948966 rad @@ -136223,7 +137560,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18866 + - uid: 20186 components: - type: Transform rot: -1.5707963267948966 rad @@ -136231,21 +137568,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18867 + - uid: 20187 components: - type: Transform pos: -29.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18868 + - uid: 20188 components: - type: Transform pos: -27.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18869 + - uid: 20189 components: - type: Transform rot: 3.141592653589793 rad @@ -136253,7 +137590,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18870 + - uid: 20190 components: - type: Transform rot: 3.141592653589793 rad @@ -136261,7 +137598,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18871 + - uid: 20191 components: - type: Transform rot: -1.5707963267948966 rad @@ -136269,7 +137606,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18872 + - uid: 20192 components: - type: Transform rot: 1.5707963267948966 rad @@ -136277,15 +137614,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18874 + - uid: 20193 components: - type: Transform rot: -1.5707963267948966 rad @@ -136293,7 +137622,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18875 + - uid: 20194 components: - type: Transform rot: -1.5707963267948966 rad @@ -136301,7 +137630,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18876 + - uid: 20195 components: - type: Transform rot: -1.5707963267948966 rad @@ -136309,7 +137638,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18877 + - uid: 20196 components: - type: Transform rot: -1.5707963267948966 rad @@ -136317,7 +137646,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18878 + - uid: 20197 components: - type: Transform rot: -1.5707963267948966 rad @@ -136325,7 +137654,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18879 + - uid: 20198 components: - type: Transform rot: -1.5707963267948966 rad @@ -136333,7 +137662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18880 + - uid: 20199 components: - type: Transform rot: -1.5707963267948966 rad @@ -136341,7 +137670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18881 + - uid: 20200 components: - type: Transform rot: -1.5707963267948966 rad @@ -136349,7 +137678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18882 + - uid: 20201 components: - type: Transform rot: 1.5707963267948966 rad @@ -136357,7 +137686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18883 + - uid: 20202 components: - type: Transform rot: 1.5707963267948966 rad @@ -136365,7 +137694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18884 + - uid: 20203 components: - type: Transform rot: 1.5707963267948966 rad @@ -136373,7 +137702,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18885 + - uid: 20204 components: - type: Transform rot: 1.5707963267948966 rad @@ -136381,7 +137710,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18886 + - uid: 20205 components: - type: Transform rot: 1.5707963267948966 rad @@ -136389,15 +137718,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18887 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18888 + - uid: 20206 components: - type: Transform rot: 1.5707963267948966 rad @@ -136405,7 +137726,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18889 + - uid: 20207 components: - type: Transform rot: 1.5707963267948966 rad @@ -136413,7 +137734,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18890 + - uid: 20208 components: - type: Transform rot: 1.5707963267948966 rad @@ -136421,7 +137742,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18891 + - uid: 20209 components: - type: Transform rot: 1.5707963267948966 rad @@ -136429,7 +137750,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18892 + - uid: 20210 components: - type: Transform rot: 1.5707963267948966 rad @@ -136437,23 +137758,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18895 + - uid: 20211 components: - type: Transform rot: -1.5707963267948966 rad @@ -136461,7 +137766,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18896 + - uid: 20212 components: - type: Transform rot: -1.5707963267948966 rad @@ -136469,7 +137774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18897 + - uid: 20213 components: - type: Transform rot: -1.5707963267948966 rad @@ -136477,7 +137782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18898 + - uid: 20214 components: - type: Transform rot: -1.5707963267948966 rad @@ -136485,7 +137790,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18899 + - uid: 20215 components: - type: Transform rot: -1.5707963267948966 rad @@ -136493,15 +137798,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18900 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18901 + - uid: 20216 components: - type: Transform rot: 1.5707963267948966 rad @@ -136509,7 +137806,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18902 + - uid: 20217 components: - type: Transform rot: 1.5707963267948966 rad @@ -136517,7 +137814,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18903 + - uid: 20218 components: - type: Transform rot: 1.5707963267948966 rad @@ -136525,21 +137822,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18904 + - uid: 20219 components: - type: Transform pos: -26.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18905 + - uid: 20220 components: - type: Transform pos: -25.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18906 + - uid: 20221 components: - type: Transform rot: 3.141592653589793 rad @@ -136547,7 +137844,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18907 + - uid: 20222 components: - type: Transform rot: 3.141592653589793 rad @@ -136555,7 +137852,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18908 + - uid: 20223 components: - type: Transform rot: 1.5707963267948966 rad @@ -136563,14 +137860,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18909 + - uid: 20224 components: - type: Transform pos: -30.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18910 + - uid: 20225 components: - type: Transform rot: -1.5707963267948966 rad @@ -136578,49 +137875,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18911 + - uid: 20226 components: - type: Transform pos: -40.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18912 + - uid: 20227 components: - type: Transform pos: -39.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18913 + - uid: 20228 components: - type: Transform pos: -38.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18914 + - uid: 20229 components: - type: Transform pos: -35.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18915 + - uid: 20230 components: - type: Transform pos: -37.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18916 + - uid: 20231 components: - type: Transform pos: -40.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18917 + - uid: 20232 components: - type: Transform rot: 3.141592653589793 rad @@ -136628,28 +137925,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18918 + - uid: 20233 components: - type: Transform pos: -42.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18919 + - uid: 20234 components: - type: Transform pos: -47.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18920 + - uid: 20235 components: - type: Transform pos: -46.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18921 + - uid: 20236 components: - type: Transform rot: 3.141592653589793 rad @@ -136657,7 +137954,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18922 + - uid: 20237 components: - type: Transform rot: 3.141592653589793 rad @@ -136665,7 +137962,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18923 + - uid: 20238 components: - type: Transform rot: -1.5707963267948966 rad @@ -136673,7 +137970,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18924 + - uid: 20239 components: - type: Transform rot: 3.141592653589793 rad @@ -136681,28 +137978,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18925 + - uid: 20240 components: - type: Transform pos: -51.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18926 + - uid: 20241 components: - type: Transform pos: -35.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18927 + - uid: 20242 components: - type: Transform pos: -74.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18928 + - uid: 20243 components: - type: Transform rot: 1.5707963267948966 rad @@ -136710,14 +138007,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18929 + - uid: 20244 components: - type: Transform pos: -67.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18930 + - uid: 20245 components: - type: Transform rot: 1.5707963267948966 rad @@ -136725,7 +138022,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18931 + - uid: 20246 components: - type: Transform rot: 3.141592653589793 rad @@ -136733,7 +138030,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18932 + - uid: 20247 components: - type: Transform rot: -1.5707963267948966 rad @@ -136741,7 +138038,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18933 + - uid: 20248 components: - type: Transform rot: 3.141592653589793 rad @@ -136749,14 +138046,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18934 + - uid: 20249 components: - type: Transform pos: 40.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18935 + - uid: 20250 components: - type: Transform rot: 3.141592653589793 rad @@ -136764,21 +138061,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18936 + - uid: 20251 components: - type: Transform pos: -43.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18937 + - uid: 20252 components: - type: Transform pos: -41.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18938 + - uid: 20253 components: - type: Transform rot: 1.5707963267948966 rad @@ -136786,7 +138083,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18939 + - uid: 20254 components: - type: Transform rot: 1.5707963267948966 rad @@ -136794,7 +138091,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18940 + - uid: 20255 components: - type: Transform rot: -1.5707963267948966 rad @@ -136802,7 +138099,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18941 + - uid: 20256 components: - type: Transform rot: -1.5707963267948966 rad @@ -136810,7 +138107,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18942 + - uid: 20257 components: - type: Transform rot: 1.5707963267948966 rad @@ -136818,13 +138115,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18945 + - uid: 20258 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-88.5 parent: 2 - - uid: 18946 + - uid: 20259 components: - type: Transform rot: 1.5707963267948966 rad @@ -136832,7 +138129,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18947 + - uid: 20260 components: - type: Transform rot: 3.141592653589793 rad @@ -136840,7 +138137,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18948 + - uid: 20261 components: - type: Transform rot: -1.5707963267948966 rad @@ -136848,7 +138145,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18949 + - uid: 20262 components: - type: Transform rot: 1.5707963267948966 rad @@ -136856,7 +138153,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18952 + - uid: 20263 components: - type: Transform rot: 3.141592653589793 rad @@ -136864,7 +138161,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18953 + - uid: 20264 components: - type: Transform rot: 3.141592653589793 rad @@ -136872,7 +138169,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18954 + - uid: 20265 components: - type: Transform rot: 3.141592653589793 rad @@ -136880,7 +138177,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18956 + - uid: 20266 components: - type: Transform rot: 3.141592653589793 rad @@ -136888,14 +138185,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18957 + - uid: 20267 components: - type: Transform pos: -7.5,-96.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18958 + - uid: 20268 components: - type: Transform rot: 1.5707963267948966 rad @@ -136903,7 +138200,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18959 + - uid: 20269 components: - type: Transform rot: -1.5707963267948966 rad @@ -136911,7 +138208,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18960 + - uid: 20270 components: - type: Transform rot: -1.5707963267948966 rad @@ -136919,7 +138216,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18961 + - uid: 20271 components: - type: Transform rot: 3.141592653589793 rad @@ -136927,7 +138224,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18962 + - uid: 20272 components: - type: Transform rot: 3.141592653589793 rad @@ -136935,7 +138232,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18963 + - uid: 20273 components: - type: Transform rot: 3.141592653589793 rad @@ -136943,7 +138240,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18964 + - uid: 20274 components: - type: Transform rot: 3.141592653589793 rad @@ -136951,7 +138248,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 18966 + - uid: 20275 components: - type: Transform rot: 1.5707963267948966 rad @@ -136959,7 +138256,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18967 + - uid: 20276 components: - type: Transform rot: -1.5707963267948966 rad @@ -136967,7 +138264,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18968 + - uid: 20277 components: - type: Transform rot: 1.5707963267948966 rad @@ -136975,20 +138272,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18969 + - uid: 20278 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-94.5 parent: 2 - - uid: 18972 + - uid: 20279 components: - type: Transform pos: -54.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18973 + - uid: 20280 components: - type: Transform rot: -1.5707963267948966 rad @@ -136996,7 +138293,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18974 + - uid: 20281 components: - type: Transform rot: 1.5707963267948966 rad @@ -137004,7 +138301,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18975 + - uid: 20282 components: - type: Transform rot: -1.5707963267948966 rad @@ -137012,7 +138309,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18976 + - uid: 20283 components: - type: Transform rot: -1.5707963267948966 rad @@ -137020,7 +138317,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18977 + - uid: 20284 components: - type: Transform rot: 1.5707963267948966 rad @@ -137028,7 +138325,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18978 + - uid: 20285 components: - type: Transform rot: -1.5707963267948966 rad @@ -137036,14 +138333,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18979 + - uid: 20286 components: - type: Transform pos: -76.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18980 + - uid: 20287 components: - type: Transform rot: 1.5707963267948966 rad @@ -137051,7 +138348,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 18981 + - uid: 20288 components: - type: Transform rot: -1.5707963267948966 rad @@ -137059,20 +138356,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18982 - components: - - type: Transform - pos: 35.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18983 + - uid: 20289 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-78.5 parent: 2 - - uid: 18990 + - uid: 20290 components: - type: Transform rot: 1.5707963267948966 rad @@ -137080,24 +138370,24 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18991 + - uid: 20291 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-73.5 parent: 2 - - uid: 18992 + - uid: 20292 components: - type: Transform pos: -71.5,-26.5 parent: 2 - - uid: 18993 + - uid: 20293 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-25.5 parent: 2 - - uid: 18994 + - uid: 20294 components: - type: Transform rot: -1.5707963267948966 rad @@ -137105,14 +138395,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18995 + - uid: 20295 components: - type: Transform pos: -59.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18996 + - uid: 20296 components: - type: Transform rot: 3.141592653589793 rad @@ -137120,14 +138410,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18997 + - uid: 20297 components: - type: Transform pos: -68.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18998 + - uid: 20298 components: - type: Transform rot: 3.141592653589793 rad @@ -137135,7 +138425,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18999 + - uid: 20299 components: - type: Transform rot: 1.5707963267948966 rad @@ -137143,7 +138433,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19000 + - uid: 20300 components: - type: Transform rot: -1.5707963267948966 rad @@ -137151,7 +138441,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19001 + - uid: 20301 components: - type: Transform rot: 1.5707963267948966 rad @@ -137159,7 +138449,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19002 + - uid: 20302 components: - type: Transform rot: -1.5707963267948966 rad @@ -137167,7 +138457,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19003 + - uid: 20303 components: - type: Transform rot: 3.141592653589793 rad @@ -137175,7 +138465,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19004 + - uid: 20304 components: - type: Transform rot: 1.5707963267948966 rad @@ -137183,7 +138473,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19005 + - uid: 20305 components: - type: Transform rot: 3.141592653589793 rad @@ -137191,7 +138481,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19006 + - uid: 20306 components: - type: Transform rot: 3.141592653589793 rad @@ -137199,14 +138489,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19007 + - uid: 20307 components: - type: Transform pos: -77.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19008 + - uid: 20308 components: - type: Transform rot: 3.141592653589793 rad @@ -137214,7 +138504,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19009 + - uid: 20309 components: - type: Transform rot: 1.5707963267948966 rad @@ -137222,7 +138512,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19010 + - uid: 20310 components: - type: Transform rot: -1.5707963267948966 rad @@ -137230,7 +138520,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19011 + - uid: 20311 components: - type: Transform rot: 1.5707963267948966 rad @@ -137238,14 +138528,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19012 + - uid: 20312 components: - type: Transform pos: -56.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19013 + - uid: 20313 components: - type: Transform rot: 3.141592653589793 rad @@ -137253,7 +138543,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19014 + - uid: 20314 components: - type: Transform rot: -1.5707963267948966 rad @@ -137261,34 +138551,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19015 + - uid: 20315 components: - type: Transform pos: -49.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19016 + - uid: 20316 components: - type: Transform pos: -71.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19017 + - uid: 20317 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,-83.5 parent: 2 - - uid: 19018 + - uid: 20318 components: - type: Transform pos: 100.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19019 + - uid: 20319 components: - type: Transform rot: 1.5707963267948966 rad @@ -137296,7 +138586,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19020 + - uid: 20320 components: - type: Transform rot: 3.141592653589793 rad @@ -137304,21 +138594,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19021 + - uid: 20321 components: - type: Transform pos: 100.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19022 + - uid: 20322 components: - type: Transform pos: 101.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19023 + - uid: 20323 components: - type: Transform rot: 1.5707963267948966 rad @@ -137326,7 +138616,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19026 + - uid: 20324 components: - type: Transform rot: 3.141592653589793 rad @@ -137334,7 +138624,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19028 + - uid: 20325 components: - type: Transform rot: 3.141592653589793 rad @@ -137342,21 +138632,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19029 + - uid: 20326 components: - type: Transform pos: 37.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19030 + - uid: 20327 components: - type: Transform pos: 39.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19031 + - uid: 20328 components: - type: Transform rot: 1.5707963267948966 rad @@ -137364,7 +138654,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19032 + - uid: 20329 components: - type: Transform rot: -1.5707963267948966 rad @@ -137372,7 +138662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19033 + - uid: 20330 components: - type: Transform rot: 1.5707963267948966 rad @@ -137380,7 +138670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19034 + - uid: 20331 components: - type: Transform rot: -1.5707963267948966 rad @@ -137388,7 +138678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19035 + - uid: 20332 components: - type: Transform rot: -1.5707963267948966 rad @@ -137396,7 +138686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' - - uid: 19515 + - uid: 20333 components: - type: Transform rot: 1.5707963267948966 rad @@ -137404,42 +138694,44 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19536 + - uid: 20334 components: - type: Transform pos: 45.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19538 + - uid: 20335 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-8.5 + rot: 1.5707963267948966 rad + pos: -27.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21863 + color: '#FF0000FF' + - uid: 20336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 21045 + rot: 3.141592653589793 rad + pos: -29.5,-70.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22005 + - uid: 20337 components: - type: Transform pos: 102.5,-39.5 parent: 2 - - uid: 22281 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20338 components: - type: Transform pos: -3.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22396 + - uid: 20339 components: - type: Transform rot: 3.141592653589793 rad @@ -137447,7 +138739,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22513 + - uid: 20340 components: - type: Transform rot: 3.141592653589793 rad @@ -137455,7 +138747,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22788 + - uid: 20341 components: - type: Transform rot: -1.5707963267948966 rad @@ -137463,7 +138755,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22843 + - uid: 20342 components: - type: Transform rot: 3.141592653589793 rad @@ -137471,14 +138763,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22844 + - uid: 20343 components: - type: Transform pos: -2.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 23060 + - uid: 20344 components: - type: Transform rot: 3.141592653589793 rad @@ -137486,7 +138778,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24075 + - uid: 20345 components: - type: Transform rot: 1.5707963267948966 rad @@ -137494,7 +138786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24207 + - uid: 20346 components: - type: Transform rot: -1.5707963267948966 rad @@ -137502,7 +138794,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24587 + - uid: 20347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20348 components: - type: Transform rot: 1.5707963267948966 rad @@ -137510,7 +138810,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24686 + - uid: 20349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20350 components: - type: Transform rot: -1.5707963267948966 rad @@ -137518,14 +138826,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24880 + - uid: 20351 components: - type: Transform pos: 49.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 26304 + - uid: 20352 components: - type: Transform rot: -1.5707963267948966 rad @@ -137533,7 +138841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 27146 + - uid: 20353 components: - type: Transform rot: -1.5707963267948966 rad @@ -137541,7 +138849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 27967 + - uid: 20354 components: - type: Transform rot: 1.5707963267948966 rad @@ -137549,14 +138857,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28626 + - uid: 20355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20356 components: - type: Transform pos: 58.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28761 + - uid: 20357 components: - type: Transform rot: 3.141592653589793 rad @@ -137564,7 +138880,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28965 + - uid: 20358 components: - type: Transform rot: -1.5707963267948966 rad @@ -137572,7 +138888,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29086 + - uid: 20359 components: - type: Transform rot: 1.5707963267948966 rad @@ -137580,7 +138896,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29477 + - uid: 20360 components: - type: Transform rot: 3.141592653589793 rad @@ -137588,7 +138904,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29479 + - uid: 20361 components: - type: Transform rot: -1.5707963267948966 rad @@ -137596,7 +138912,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29614 + - uid: 20362 components: - type: Transform rot: -1.5707963267948966 rad @@ -137604,7 +138920,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29645 + - uid: 20363 components: - type: Transform rot: 1.5707963267948966 rad @@ -137612,7 +138928,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29647 + - uid: 20364 components: - type: Transform rot: -1.5707963267948966 rad @@ -137620,7 +138936,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29648 + - uid: 20365 components: - type: Transform rot: 1.5707963267948966 rad @@ -137628,7 +138944,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29659 + - uid: 20366 components: - type: Transform rot: -1.5707963267948966 rad @@ -137636,7 +138952,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29680 + - uid: 20367 components: - type: Transform rot: 3.141592653589793 rad @@ -137644,7 +138960,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29920 + - uid: 20368 components: - type: Transform rot: -1.5707963267948966 rad @@ -137652,14 +138968,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30015 + - uid: 20369 components: - type: Transform pos: 84.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30022 + - uid: 20370 components: - type: Transform rot: -1.5707963267948966 rad @@ -137667,7 +138983,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30422 + - uid: 20371 components: - type: Transform rot: 1.5707963267948966 rad @@ -137675,69 +138991,69 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 32553 + - uid: 20372 components: - type: Transform pos: 52.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 32555 + - uid: 20373 components: - type: Transform pos: 51.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 33201 + - uid: 20374 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,5.5 parent: 2 - - uid: 33427 + - uid: 20375 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,5.5 parent: 2 - - uid: 34303 + - uid: 20376 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-54.5 parent: 2 - - uid: 34305 + - uid: 20377 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-54.5 parent: 2 - - uid: 34307 + - uid: 20378 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-51.5 parent: 2 - - uid: 34312 + - uid: 20379 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-51.5 parent: 2 - - uid: 34315 + - uid: 20380 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-51.5 parent: 2 - - uid: 34320 + - uid: 20381 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-48.5 parent: 2 - - uid: 34322 + - uid: 20382 components: - type: Transform rot: -1.5707963267948966 rad @@ -137745,7 +139061,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 37812 + - uid: 20383 components: - type: Transform rot: 1.5707963267948966 rad @@ -137753,7 +139069,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37829 + - uid: 20384 components: - type: Transform rot: -1.5707963267948966 rad @@ -137761,7 +139077,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37848 + - uid: 20385 components: - type: Transform rot: 1.5707963267948966 rad @@ -137769,110 +139085,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 38233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-8.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38234 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38235 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38236 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38238 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,0.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,0.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38840 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-11.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38841 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 38722 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 38722 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38843 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 38722 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 39165 + - uid: 20386 components: - type: Transform pos: -5.5,-55.5 parent: 2 - - uid: 39167 + - uid: 20387 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-55.5 parent: 2 - - uid: 39504 + - uid: 20388 components: - type: Transform rot: 1.5707963267948966 rad @@ -137880,14 +139104,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39509 + - uid: 20389 components: - type: Transform pos: -4.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39510 + - uid: 20390 components: - type: Transform rot: 3.141592653589793 rad @@ -137895,7 +139119,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39518 + - uid: 20391 components: - type: Transform rot: 1.5707963267948966 rad @@ -137903,14 +139127,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39524 + - uid: 20392 components: - type: Transform pos: 5.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39525 + - uid: 20393 components: - type: Transform rot: 3.141592653589793 rad @@ -137918,14 +139142,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39536 + - uid: 20394 components: - type: Transform pos: -0.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39537 + - uid: 20395 components: - type: Transform rot: 1.5707963267948966 rad @@ -137933,7 +139157,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39538 + - uid: 20396 components: - type: Transform rot: -1.5707963267948966 rad @@ -137941,7 +139165,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39539 + - uid: 20397 components: - type: Transform rot: 3.141592653589793 rad @@ -137949,7 +139173,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39817 + - uid: 20398 components: - type: Transform rot: -1.5707963267948966 rad @@ -137957,7 +139181,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39818 + - uid: 20399 components: - type: Transform rot: 1.5707963267948966 rad @@ -137965,7 +139189,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39819 + - uid: 20400 components: - type: Transform rot: -1.5707963267948966 rad @@ -137973,7 +139197,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39882 + - uid: 20401 components: - type: Transform rot: 3.141592653589793 rad @@ -137981,28 +139205,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39883 + - uid: 20402 components: - type: Transform pos: 6.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39886 + - uid: 20403 components: - type: Transform pos: 2.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39896 + - uid: 20404 components: - type: Transform pos: -16.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39915 + - uid: 20405 components: - type: Transform rot: -1.5707963267948966 rad @@ -138010,7 +139234,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39918 + - uid: 20406 components: - type: Transform rot: 3.141592653589793 rad @@ -138018,56 +139242,68 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 40859 + - uid: 20407 components: - type: Transform rot: 1.5707963267948966 rad pos: 112.5,-40.5 parent: 2 - - uid: 40861 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20408 components: - type: Transform rot: -1.5707963267948966 rad pos: 112.5,-42.5 parent: 2 - - uid: 40912 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20409 components: - type: Transform pos: 127.5,-38.5 parent: 2 - - uid: 40914 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20410 components: - type: Transform rot: -1.5707963267948966 rad pos: 128.5,-40.5 parent: 2 - - uid: 40981 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20411 components: - type: Transform rot: -1.5707963267948966 rad pos: 110.5,-40.5 parent: 2 - - uid: 40982 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20412 components: - type: Transform rot: 1.5707963267948966 rad pos: 110.5,-38.5 parent: 2 - - uid: 41166 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20413 components: - type: Transform pos: 18.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41177 + - uid: 20414 components: - type: Transform pos: 10.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41179 + - uid: 20415 components: - type: Transform rot: 3.141592653589793 rad @@ -138075,7 +139311,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41203 + - uid: 20416 components: - type: Transform rot: -1.5707963267948966 rad @@ -138083,7 +139319,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41213 + - uid: 20417 components: - type: Transform rot: 3.141592653589793 rad @@ -138091,7 +139327,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41226 + - uid: 20418 components: - type: Transform rot: -1.5707963267948966 rad @@ -138099,7 +139335,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41229 + - uid: 20419 components: - type: Transform rot: -1.5707963267948966 rad @@ -138107,14 +139343,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41242 + - uid: 20420 components: - type: Transform pos: 11.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41264 + - uid: 20421 components: - type: Transform rot: -1.5707963267948966 rad @@ -138122,7 +139358,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41294 + - uid: 20422 components: - type: Transform rot: 3.141592653589793 rad @@ -138130,7 +139366,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41308 + - uid: 20423 components: - type: Transform rot: -1.5707963267948966 rad @@ -138138,14 +139374,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41327 + - uid: 20424 components: - type: Transform pos: -7.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41328 + - uid: 20425 components: - type: Transform rot: 3.141592653589793 rad @@ -138153,7 +139389,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41329 + - uid: 20426 components: - type: Transform rot: 3.141592653589793 rad @@ -138161,14 +139397,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41338 + - uid: 20427 components: - type: Transform pos: -14.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41339 + - uid: 20428 components: - type: Transform rot: 1.5707963267948966 rad @@ -138176,7 +139412,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41356 + - uid: 20429 components: - type: Transform rot: 3.141592653589793 rad @@ -138184,14 +139420,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41366 + - uid: 20430 components: - type: Transform pos: -10.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41373 + - uid: 20431 components: - type: Transform rot: 3.141592653589793 rad @@ -138199,21 +139435,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41375 + - uid: 20432 components: - type: Transform pos: -5.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41387 + - uid: 20433 components: - type: Transform pos: -2.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41388 + - uid: 20434 components: - type: Transform rot: -1.5707963267948966 rad @@ -138221,7 +139457,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41389 + - uid: 20435 components: - type: Transform rot: 3.141592653589793 rad @@ -138229,7 +139465,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41392 + - uid: 20436 components: - type: Transform rot: 3.141592653589793 rad @@ -138237,21 +139473,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41393 + - uid: 20437 components: - type: Transform pos: -1.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41425 + - uid: 20438 components: - type: Transform pos: -10.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41426 + - uid: 20439 components: - type: Transform rot: 1.5707963267948966 rad @@ -138259,7 +139495,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41427 + - uid: 20440 components: - type: Transform rot: -1.5707963267948966 rad @@ -138267,7 +139503,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41428 + - uid: 20441 components: - type: Transform rot: 1.5707963267948966 rad @@ -138275,7 +139511,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41454 + - uid: 20442 components: - type: Transform rot: 3.141592653589793 rad @@ -138283,7 +139519,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41455 + - uid: 20443 components: - type: Transform rot: 1.5707963267948966 rad @@ -138291,7 +139527,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41480 + - uid: 20444 components: - type: Transform rot: 3.141592653589793 rad @@ -138299,14 +139535,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41481 + - uid: 20445 components: - type: Transform pos: -3.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41484 + - uid: 20446 components: - type: Transform rot: -1.5707963267948966 rad @@ -138314,7 +139550,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41509 + - uid: 20447 components: - type: Transform rot: -1.5707963267948966 rad @@ -138322,7 +139558,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41510 + - uid: 20448 components: - type: Transform rot: -1.5707963267948966 rad @@ -138330,7 +139566,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41517 + - uid: 20449 components: - type: Transform rot: 1.5707963267948966 rad @@ -138338,7 +139574,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41553 + - uid: 20450 components: - type: Transform rot: 1.5707963267948966 rad @@ -138346,7 +139582,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41564 + - uid: 20451 components: - type: Transform rot: 1.5707963267948966 rad @@ -138354,7 +139590,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41573 + - uid: 20452 components: - type: Transform rot: 3.141592653589793 rad @@ -138362,7 +139598,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41574 + - uid: 20453 components: - type: Transform rot: -1.5707963267948966 rad @@ -138370,7 +139606,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41580 + - uid: 20454 components: - type: Transform rot: 3.141592653589793 rad @@ -138378,16 +139614,273 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41581 + - uid: 20455 components: - type: Transform pos: -10.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' + - uid: 20456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20464 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20466 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20475 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 40735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 40666 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41180 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 40828 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41182 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 40828 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 40828 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41184 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 41669 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 41669 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 41669 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41787 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 41669 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 41669 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 41669 + - type: AtmosPipeColor + color: '#0000FFFF' - proto: GasPipeBroken entities: - - uid: 39924 + - uid: 20476 components: - type: Transform rot: 1.5707963267948966 rad @@ -138395,308 +139888,336 @@ entities: parent: 2 - proto: GasPipeFourway entities: - - uid: 14905 + - uid: 20477 components: - type: Transform pos: 62.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15005 + - uid: 20478 components: - type: Transform pos: 56.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15101 + - uid: 20479 components: - type: Transform pos: 51.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16232 + - uid: 20480 components: - type: Transform pos: 42.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16615 + - uid: 20481 components: - type: Transform pos: 52.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16867 + - uid: 20482 components: - type: Transform pos: 51.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16898 + - uid: 20483 components: - type: Transform pos: 43.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17699 + - uid: 20484 components: - type: Transform pos: 45.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17825 + - uid: 20485 components: - type: Transform pos: 56.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17902 + - uid: 20486 components: - type: Transform pos: 51.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18617 + - uid: 20487 components: - type: Transform pos: -16.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 19036 + - uid: 20488 components: - type: Transform pos: 26.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19037 + - uid: 20489 components: - type: Transform pos: 64.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19038 + - uid: 20490 components: - type: Transform pos: -37.5,-20.5 parent: 2 - - uid: 19039 + - uid: 20491 components: - type: Transform pos: 50.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19040 + - uid: 20492 components: - type: Transform pos: 43.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19041 + - uid: 20493 components: - type: Transform pos: 45.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19042 + - uid: 20494 components: - type: Transform pos: -0.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19043 + - uid: 20495 components: - type: Transform pos: 1.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19044 + - uid: 20496 components: - type: Transform pos: 1.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19045 + - uid: 20497 components: - type: Transform pos: -0.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19046 + - uid: 20498 components: - type: Transform pos: 30.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19047 + - uid: 20499 components: - type: Transform pos: -42.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19048 + - uid: 20500 components: - type: Transform pos: -40.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19049 + - uid: 20501 components: - type: Transform pos: -49.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19050 + - uid: 20502 components: - type: Transform pos: 46.5,-97.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19051 + - uid: 20503 components: - type: Transform pos: 31.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19052 + - uid: 20504 components: - type: Transform pos: 98.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19053 + - uid: 20505 components: - type: Transform pos: 97.5,-78.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19054 + - uid: 20506 components: - type: Transform pos: 97.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19055 + - uid: 20507 components: - type: Transform pos: 99.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19522 + - uid: 20508 components: - type: Transform pos: 42.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22407 + - uid: 20509 components: - type: Transform pos: -12.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 34955 + - uid: 20510 components: - type: Transform - pos: 74.5,4.5 + pos: 43.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 37847 + - uid: 20511 components: - type: Transform - pos: 52.5,-13.5 + pos: 7.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38239 + color: '#FF0000FF' + - uid: 20512 components: - type: Transform - pos: 1.5,-8.5 - parent: 37887 + pos: -65.5,-44.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 38240 + - uid: 20513 components: - type: Transform - pos: 0.5,-9.5 - parent: 37887 + pos: 30.5,10.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 38241 + - uid: 20514 components: - type: Transform - pos: 1.5,-6.5 - parent: 37887 + pos: 74.5,4.5 + parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39876 + - uid: 20515 + components: + - type: Transform + pos: 52.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20516 components: - type: Transform pos: -13.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 40472 + - uid: 20517 components: - type: Transform pos: 57.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41272 + - uid: 20518 components: - type: Transform pos: -11.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41280 + - uid: 20519 components: - type: Transform pos: -10.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41479 + - uid: 20520 components: - type: Transform pos: -3.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' + - uid: 41185 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41186 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 40828 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41187 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' - proto: GasPipeHalf entities: - - uid: 39933 + - uid: 20521 components: - type: Transform rot: -1.5707963267948966 rad @@ -138704,7 +140225,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39934 + - uid: 20522 components: - type: Transform rot: 1.5707963267948966 rad @@ -138714,7 +140235,7 @@ entities: color: '#B7410EFF' - proto: GasPipeStraight entities: - - uid: 223 + - uid: 20523 components: - type: Transform rot: 3.141592653589793 rad @@ -138722,7 +140243,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 224 + - uid: 20524 components: - type: Transform rot: 1.5707963267948966 rad @@ -138730,7 +140251,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 278 + - uid: 20525 components: - type: Transform rot: 1.5707963267948966 rad @@ -138738,7 +140259,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 738 + - uid: 20526 components: - type: Transform rot: 3.141592653589793 rad @@ -138746,7 +140267,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 744 + - uid: 20527 components: - type: Transform rot: 1.5707963267948966 rad @@ -138754,14 +140275,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 745 + - uid: 20528 components: - type: Transform pos: 45.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 746 + - uid: 20529 components: - type: Transform rot: 3.141592653589793 rad @@ -138769,14 +140290,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 748 + - uid: 20530 components: - type: Transform pos: 42.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 749 + - uid: 20531 components: - type: Transform rot: 3.141592653589793 rad @@ -138784,14 +140305,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 754 + - uid: 20532 components: - type: Transform pos: 44.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 782 + - uid: 20533 components: - type: Transform rot: 1.5707963267948966 rad @@ -138799,14 +140320,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 817 + - uid: 20534 components: - type: Transform pos: 63.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 992 + - uid: 20535 components: - type: Transform rot: 1.5707963267948966 rad @@ -138814,14 +140335,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 995 + - uid: 20536 components: - type: Transform pos: 42.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1552 + - uid: 20537 components: - type: Transform rot: -1.5707963267948966 rad @@ -138829,7 +140350,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1572 + - uid: 20538 components: - type: Transform rot: -1.5707963267948966 rad @@ -138837,7 +140358,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1711 + - uid: 20539 components: - type: Transform rot: 3.141592653589793 rad @@ -138845,7 +140366,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 1756 + - uid: 20540 components: - type: Transform rot: -1.5707963267948966 rad @@ -138853,7 +140374,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2021 + - uid: 20541 components: - type: Transform rot: 1.5707963267948966 rad @@ -138861,7 +140382,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2059 + - uid: 20542 components: - type: Transform rot: 3.141592653589793 rad @@ -138869,7 +140390,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2102 + - uid: 20543 components: - type: Transform rot: 1.5707963267948966 rad @@ -138877,7 +140398,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2148 + - uid: 20544 components: - type: Transform rot: 3.141592653589793 rad @@ -138885,7 +140406,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2587 + - uid: 20545 components: - type: Transform rot: 1.5707963267948966 rad @@ -138893,7 +140414,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2608 + - uid: 20546 components: - type: Transform rot: 3.141592653589793 rad @@ -138901,7 +140422,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2609 + - uid: 20547 components: - type: Transform rot: 3.141592653589793 rad @@ -138909,7 +140430,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2610 + - uid: 20548 components: - type: Transform rot: 1.5707963267948966 rad @@ -138917,7 +140438,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2612 + - uid: 20549 components: - type: Transform rot: 3.141592653589793 rad @@ -138925,7 +140446,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2613 + - uid: 20550 components: - type: Transform rot: 1.5707963267948966 rad @@ -138933,7 +140454,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2617 + - uid: 20551 components: - type: Transform rot: -1.5707963267948966 rad @@ -138941,7 +140462,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2618 + - uid: 20552 components: - type: Transform rot: -1.5707963267948966 rad @@ -138949,7 +140470,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2619 + - uid: 20553 components: - type: Transform rot: -1.5707963267948966 rad @@ -138957,7 +140478,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2620 + - uid: 20554 components: - type: Transform rot: -1.5707963267948966 rad @@ -138965,7 +140486,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2621 + - uid: 20555 components: - type: Transform rot: -1.5707963267948966 rad @@ -138973,7 +140494,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2632 + - uid: 20556 components: - type: Transform rot: 1.5707963267948966 rad @@ -138981,7 +140502,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2660 + - uid: 20557 components: - type: Transform rot: 3.141592653589793 rad @@ -138989,7 +140510,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2677 + - uid: 20558 components: - type: Transform rot: 1.5707963267948966 rad @@ -138997,7 +140518,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2685 + - uid: 20559 components: - type: Transform rot: 1.5707963267948966 rad @@ -139005,7 +140526,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2699 + - uid: 20560 components: - type: Transform rot: 3.141592653589793 rad @@ -139013,7 +140534,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2700 + - uid: 20561 components: - type: Transform rot: 3.141592653589793 rad @@ -139021,7 +140542,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2701 + - uid: 20562 components: - type: Transform rot: 3.141592653589793 rad @@ -139029,7 +140550,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2709 + - uid: 20563 components: - type: Transform rot: -1.5707963267948966 rad @@ -139037,7 +140558,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2746 + - uid: 20564 components: - type: Transform rot: -1.5707963267948966 rad @@ -139045,7 +140566,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2747 + - uid: 20565 components: - type: Transform rot: -1.5707963267948966 rad @@ -139053,7 +140574,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2824 + - uid: 20566 components: - type: Transform rot: 1.5707963267948966 rad @@ -139061,14 +140582,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 3098 + - uid: 20567 components: - type: Transform pos: 44.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5168 + - uid: 20568 components: - type: Transform rot: -1.5707963267948966 rad @@ -139076,7 +140597,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5170 + - uid: 20569 components: - type: Transform rot: 3.141592653589793 rad @@ -139084,7 +140605,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5611 + - uid: 20570 components: - type: Transform rot: 3.141592653589793 rad @@ -139092,7 +140613,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 5924 + - uid: 20571 components: - type: Transform rot: 3.141592653589793 rad @@ -139100,7 +140621,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 5975 + - uid: 20572 components: - type: Transform rot: 1.5707963267948966 rad @@ -139108,7 +140629,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 6033 + - uid: 20573 components: - type: Transform rot: 1.5707963267948966 rad @@ -139116,7 +140637,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 6034 + - uid: 20574 components: - type: Transform rot: 1.5707963267948966 rad @@ -139124,7 +140645,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6035 + - uid: 20575 components: - type: Transform rot: 3.141592653589793 rad @@ -139132,14 +140653,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 6039 + - uid: 20576 components: - type: Transform pos: 44.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6041 + - uid: 20577 components: - type: Transform rot: 3.141592653589793 rad @@ -139147,14 +140668,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6043 + - uid: 20578 components: - type: Transform pos: 63.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6048 + - uid: 20579 components: - type: Transform rot: 1.5707963267948966 rad @@ -139162,7 +140683,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6049 + - uid: 20580 components: - type: Transform rot: 1.5707963267948966 rad @@ -139170,7 +140691,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6050 + - uid: 20581 components: - type: Transform rot: 3.141592653589793 rad @@ -139178,7 +140699,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6991 + - uid: 20582 components: - type: Transform rot: -1.5707963267948966 rad @@ -139186,7 +140707,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 6992 + - uid: 20583 components: - type: Transform rot: 1.5707963267948966 rad @@ -139194,14 +140715,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 6993 + - uid: 20584 components: - type: Transform pos: 45.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 7085 + - uid: 20585 components: - type: Transform rot: 1.5707963267948966 rad @@ -139209,7 +140730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 7086 + - uid: 20586 components: - type: Transform rot: 1.5707963267948966 rad @@ -139217,7 +140738,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 7087 + - uid: 20587 components: - type: Transform rot: 1.5707963267948966 rad @@ -139225,14 +140746,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 7162 + - uid: 20588 components: - type: Transform pos: 45.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 7700 + - uid: 20589 components: - type: Transform rot: -1.5707963267948966 rad @@ -139240,7 +140761,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 7710 + - uid: 20590 components: - type: Transform rot: 3.141592653589793 rad @@ -139248,7 +140769,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 7711 + - uid: 20591 components: - type: Transform rot: -1.5707963267948966 rad @@ -139256,7 +140777,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 7712 + - uid: 20592 components: - type: Transform rot: -1.5707963267948966 rad @@ -139264,14 +140785,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9474 + - uid: 20593 components: - type: Transform pos: 45.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9684 + - uid: 20594 components: - type: Transform rot: 1.5707963267948966 rad @@ -139279,7 +140800,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9706 + - uid: 20595 components: - type: Transform rot: 1.5707963267948966 rad @@ -139287,7 +140808,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9730 + - uid: 20596 components: - type: Transform rot: 3.141592653589793 rad @@ -139295,7 +140816,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9732 + - uid: 20597 components: - type: Transform rot: -1.5707963267948966 rad @@ -139303,7 +140824,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9733 + - uid: 20598 components: - type: Transform rot: -1.5707963267948966 rad @@ -139311,7 +140832,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9944 + - uid: 20599 components: - type: Transform rot: 3.141592653589793 rad @@ -139319,7 +140840,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9945 + - uid: 20600 components: - type: Transform rot: 1.5707963267948966 rad @@ -139327,7 +140848,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11074 + - uid: 20601 components: - type: Transform rot: 3.141592653589793 rad @@ -139335,7 +140856,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13003 + - uid: 20602 components: - type: Transform rot: -1.5707963267948966 rad @@ -139343,7 +140864,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13004 + - uid: 20603 components: - type: Transform rot: 1.5707963267948966 rad @@ -139351,7 +140872,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 13976 + - uid: 20604 components: - type: Transform rot: 1.5707963267948966 rad @@ -139359,7 +140880,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14067 + - uid: 20605 components: - type: Transform rot: 1.5707963267948966 rad @@ -139367,14 +140888,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14077 + - uid: 20606 components: - type: Transform pos: 57.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14101 + - uid: 20607 components: - type: Transform rot: 1.5707963267948966 rad @@ -139382,7 +140903,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14102 + - uid: 20608 components: - type: Transform rot: 3.141592653589793 rad @@ -139390,14 +140911,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14112 + - uid: 20609 components: - type: Transform pos: 45.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14137 + - uid: 20610 components: - type: Transform rot: 1.5707963267948966 rad @@ -139405,7 +140926,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14144 + - uid: 20611 components: - type: Transform rot: 1.5707963267948966 rad @@ -139413,21 +140934,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14249 + - uid: 20612 components: - type: Transform pos: 51.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14362 + - uid: 20613 components: - type: Transform pos: 45.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14372 + - uid: 20614 components: - type: Transform rot: 3.141592653589793 rad @@ -139435,14 +140956,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14403 + - uid: 20615 components: - type: Transform pos: 45.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14405 + - uid: 20616 components: - type: Transform rot: 1.5707963267948966 rad @@ -139450,7 +140971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14616 + - uid: 20617 components: - type: Transform rot: 1.5707963267948966 rad @@ -139458,14 +140979,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14747 + - uid: 20618 components: - type: Transform pos: 63.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14751 + - uid: 20619 components: - type: Transform rot: 3.141592653589793 rad @@ -139473,14 +140994,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14773 + - uid: 20620 components: - type: Transform pos: 43.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14873 + - uid: 20621 components: - type: Transform rot: -1.5707963267948966 rad @@ -139488,7 +141009,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14909 + - uid: 20622 components: - type: Transform rot: 3.141592653589793 rad @@ -139496,7 +141017,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14931 + - uid: 20623 components: - type: Transform rot: 1.5707963267948966 rad @@ -139504,7 +141025,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14933 + - uid: 20624 components: - type: Transform rot: 1.5707963267948966 rad @@ -139512,7 +141033,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14981 + - uid: 20625 components: - type: Transform rot: 1.5707963267948966 rad @@ -139520,7 +141041,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14986 + - uid: 20626 components: - type: Transform rot: 3.141592653589793 rad @@ -139528,14 +141049,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15087 + - uid: 20627 components: - type: Transform pos: 63.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15157 + - uid: 20628 components: - type: Transform rot: 3.141592653589793 rad @@ -139543,7 +141064,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15160 + - uid: 20629 components: - type: Transform rot: 3.141592653589793 rad @@ -139551,7 +141072,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15164 + - uid: 20630 components: - type: Transform rot: 1.5707963267948966 rad @@ -139559,7 +141080,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15183 + - uid: 20631 components: - type: Transform rot: 1.5707963267948966 rad @@ -139567,7 +141088,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15251 + - uid: 20632 components: - type: Transform rot: 1.5707963267948966 rad @@ -139575,14 +141096,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15254 + - uid: 20633 components: - type: Transform pos: 42.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15281 + - uid: 20634 components: - type: Transform rot: 1.5707963267948966 rad @@ -139590,7 +141111,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15287 + - uid: 20635 components: - type: Transform rot: 1.5707963267948966 rad @@ -139598,7 +141119,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15288 + - uid: 20636 components: - type: Transform rot: 3.141592653589793 rad @@ -139606,7 +141127,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15301 + - uid: 20637 components: - type: Transform rot: 1.5707963267948966 rad @@ -139614,7 +141135,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15715 + - uid: 20638 components: - type: Transform rot: 1.5707963267948966 rad @@ -139622,7 +141143,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15752 + - uid: 20639 components: - type: Transform rot: 3.141592653589793 rad @@ -139630,21 +141151,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15782 + - uid: 20640 components: - type: Transform pos: 52.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15826 + - uid: 20641 components: - type: Transform pos: 51.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16235 + - uid: 20642 components: - type: Transform rot: 1.5707963267948966 rad @@ -139652,14 +141173,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16239 + - uid: 20643 components: - type: Transform pos: 45.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16240 + - uid: 20644 components: - type: Transform rot: -1.5707963267948966 rad @@ -139667,14 +141188,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16254 + - uid: 20645 components: - type: Transform pos: 57.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16621 + - uid: 20646 components: - type: Transform rot: 3.141592653589793 rad @@ -139682,7 +141203,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16622 + - uid: 20647 components: - type: Transform rot: 3.141592653589793 rad @@ -139690,22 +141211,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16623 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16626 + - uid: 20648 components: - type: Transform pos: 45.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16640 + - uid: 20649 components: - type: Transform rot: 3.141592653589793 rad @@ -139713,7 +141226,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16865 + - uid: 20650 components: - type: Transform rot: 1.5707963267948966 rad @@ -139721,7 +141234,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16900 + - uid: 20651 components: - type: Transform rot: 3.141592653589793 rad @@ -139729,7 +141242,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16989 + - uid: 20652 components: - type: Transform rot: -1.5707963267948966 rad @@ -139737,35 +141250,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16991 + - uid: 20653 components: - type: Transform pos: 57.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17352 + - uid: 20654 components: - type: Transform pos: 42.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17560 + - uid: 20655 components: - type: Transform pos: 56.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17649 + - uid: 20656 components: - type: Transform pos: 57.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17690 + - uid: 20657 components: - type: Transform rot: 1.5707963267948966 rad @@ -139773,7 +141286,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17737 + - uid: 20658 components: - type: Transform rot: -1.5707963267948966 rad @@ -139781,7 +141294,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17738 + - uid: 20659 components: - type: Transform rot: 1.5707963267948966 rad @@ -139789,28 +141302,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17739 + - uid: 20660 components: - type: Transform pos: 56.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17769 + - uid: 20661 components: - type: Transform pos: 48.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17779 + - uid: 20662 components: - type: Transform pos: 56.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17806 + - uid: 20663 components: - type: Transform rot: 1.5707963267948966 rad @@ -139818,7 +141331,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17938 + - uid: 20664 components: - type: Transform rot: 1.5707963267948966 rad @@ -139826,7 +141339,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17942 + - uid: 20665 components: - type: Transform rot: 1.5707963267948966 rad @@ -139834,7 +141347,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 17944 + - uid: 20666 components: - type: Transform rot: 1.5707963267948966 rad @@ -139842,7 +141355,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18277 + - uid: 20667 components: - type: Transform rot: 1.5707963267948966 rad @@ -139850,7 +141363,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18292 + - uid: 20668 components: - type: Transform rot: 3.141592653589793 rad @@ -139858,7 +141371,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18297 + - uid: 20669 components: - type: Transform rot: 1.5707963267948966 rad @@ -139866,7 +141379,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18299 + - uid: 20670 components: - type: Transform rot: 3.141592653589793 rad @@ -139874,7 +141387,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18300 + - uid: 20671 components: - type: Transform rot: 3.141592653589793 rad @@ -139882,21 +141395,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18304 + - uid: 20672 components: - type: Transform pos: 56.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18380 + - uid: 20673 components: - type: Transform pos: 56.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18666 + - uid: 20674 components: - type: Transform rot: 1.5707963267948966 rad @@ -139904,7 +141417,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18742 + - uid: 20675 + components: + - type: Transform + pos: -47.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20676 components: - type: Transform rot: 1.5707963267948966 rad @@ -139912,14 +141432,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18773 + - uid: 20677 components: - type: Transform pos: 44.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18943 + - uid: 20678 components: - type: Transform rot: 3.141592653589793 rad @@ -139927,14 +141447,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18950 + - uid: 20679 components: - type: Transform pos: -2.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 19027 + - uid: 20680 components: - type: Transform rot: 1.5707963267948966 rad @@ -139942,7 +141462,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19056 + - uid: 20681 components: - type: Transform rot: 1.5707963267948966 rad @@ -139950,7 +141470,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19057 + - uid: 20682 components: - type: Transform rot: 1.5707963267948966 rad @@ -139958,14 +141478,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19058 + - uid: 20683 components: - type: Transform pos: 26.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19059 + - uid: 20684 components: - type: Transform rot: 1.5707963267948966 rad @@ -139973,25 +141493,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19060 + - uid: 20685 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-98.5 parent: 2 - - uid: 19061 + - uid: 20686 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-98.5 parent: 2 - - uid: 19062 + - uid: 20687 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-101.5 parent: 2 - - uid: 19063 + - uid: 20688 components: - type: Transform rot: 1.5707963267948966 rad @@ -139999,7 +141519,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19064 + - uid: 20689 components: - type: Transform rot: 3.141592653589793 rad @@ -140007,7 +141527,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19065 + - uid: 20690 components: - type: Transform rot: 3.141592653589793 rad @@ -140015,36 +141535,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19067 + - uid: 20691 components: - type: Transform pos: 27.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19068 + - uid: 20692 components: - type: Transform pos: 27.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19069 + - uid: 20693 components: - type: Transform pos: 27.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19070 + - uid: 20694 components: - type: Transform rot: -1.5707963267948966 rad @@ -140052,22 +141564,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19072 + - uid: 20695 components: - type: Transform pos: 27.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19073 + - uid: 20696 components: - type: Transform rot: 1.5707963267948966 rad @@ -140075,7 +141579,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19074 + - uid: 20697 components: - type: Transform rot: 1.5707963267948966 rad @@ -140083,57 +141587,57 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19075 + - uid: 20698 components: - type: Transform pos: 31.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19076 + - uid: 20699 components: - type: Transform pos: 31.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19077 + - uid: 20700 components: - type: Transform pos: 31.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19078 + - uid: 20701 components: - type: Transform pos: 31.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19079 + - uid: 20702 components: - type: Transform pos: 26.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19080 + - uid: 20703 components: - type: Transform pos: 31.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19081 + - uid: 20704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,10.5 + rot: 3.141592653589793 rad + pos: -20.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19083 + - uid: 20705 components: - type: Transform rot: 1.5707963267948966 rad @@ -140141,7 +141645,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19084 + - uid: 20706 components: - type: Transform rot: 1.5707963267948966 rad @@ -140149,7 +141653,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19085 + - uid: 20707 components: - type: Transform rot: 1.5707963267948966 rad @@ -140157,7 +141661,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19086 + - uid: 20708 components: - type: Transform rot: 1.5707963267948966 rad @@ -140165,55 +141669,55 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19087 + - uid: 20709 components: - type: Transform pos: -62.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19088 + - uid: 20710 components: - type: Transform pos: -62.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19089 + - uid: 20711 components: - type: Transform pos: -62.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19090 + - uid: 20712 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-76.5 parent: 2 - - uid: 19093 + - uid: 20713 components: - type: Transform pos: 43.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19094 + - uid: 20714 components: - type: Transform pos: 44.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19095 + - uid: 20715 components: - type: Transform pos: 31.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19096 + - uid: 20716 components: - type: Transform rot: 1.5707963267948966 rad @@ -140221,26 +141725,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19097 + - uid: 20717 components: - type: Transform pos: -54.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19098 + - uid: 20718 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-95.5 parent: 2 - - uid: 19099 + - uid: 20719 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-98.5 parent: 2 - - uid: 19100 + - uid: 20720 components: - type: Transform rot: -1.5707963267948966 rad @@ -140248,56 +141752,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19101 + - uid: 20721 components: - type: Transform pos: 45.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19102 + - uid: 20722 components: - type: Transform pos: 45.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19103 + - uid: 20723 components: - type: Transform pos: 45.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19104 + - uid: 20724 components: - type: Transform pos: 45.5,-91.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19105 + - uid: 20725 components: - type: Transform pos: 45.5,-92.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19106 + - uid: 20726 components: - type: Transform pos: 45.5,-93.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19107 + - uid: 20727 components: - type: Transform pos: 45.5,-94.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19108 + - uid: 20728 components: - type: Transform rot: -1.5707963267948966 rad @@ -140305,7 +141809,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19109 + - uid: 20729 components: - type: Transform rot: 1.5707963267948966 rad @@ -140313,7 +141817,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19111 + - uid: 20730 components: - type: Transform rot: 1.5707963267948966 rad @@ -140321,7 +141825,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19112 + - uid: 20731 components: - type: Transform rot: -1.5707963267948966 rad @@ -140329,14 +141833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19116 - components: - - type: Transform - pos: 31.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19117 + - uid: 20732 components: - type: Transform rot: -1.5707963267948966 rad @@ -140344,21 +141841,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19118 + - uid: 20733 components: - type: Transform pos: 26.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19119 - components: - - type: Transform - pos: 26.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19120 + - uid: 20734 components: - type: Transform rot: -1.5707963267948966 rad @@ -140366,14 +141856,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19121 + - uid: 20735 components: - type: Transform pos: 31.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19122 + - uid: 20736 components: - type: Transform rot: -1.5707963267948966 rad @@ -140381,28 +141871,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19123 + - uid: 20737 components: - type: Transform pos: 31.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19124 + - uid: 20738 components: - type: Transform pos: 31.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19128 + - uid: 20739 components: - type: Transform pos: -54.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19129 + - uid: 20740 components: - type: Transform rot: 1.5707963267948966 rad @@ -140410,21 +141900,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19130 + - uid: 20741 components: - type: Transform pos: -54.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19131 + - uid: 20742 components: - type: Transform pos: 37.5,-104.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19132 + - uid: 20743 components: - type: Transform rot: 3.141592653589793 rad @@ -140432,21 +141922,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 19133 + - uid: 20744 components: - type: Transform pos: 43.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19134 + - uid: 20745 components: - type: Transform pos: 43.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19135 + - uid: 20746 components: - type: Transform rot: 1.5707963267948966 rad @@ -140454,7 +141944,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 19137 + - uid: 20747 components: - type: Transform rot: 1.5707963267948966 rad @@ -140462,7 +141952,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19138 + - uid: 20748 components: - type: Transform rot: -1.5707963267948966 rad @@ -140470,100 +141960,100 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 19142 + - uid: 20749 components: - type: Transform pos: -17.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 19145 + - uid: 20750 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-20.5 parent: 2 - - uid: 19146 + - uid: 20751 components: - type: Transform pos: 65.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19150 + - uid: 20752 components: - type: Transform pos: 31.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19153 + - uid: 20753 components: - type: Transform pos: 65.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19154 + - uid: 20754 components: - type: Transform pos: 64.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19155 + - uid: 20755 components: - type: Transform pos: 65.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19156 + - uid: 20756 components: - type: Transform pos: 65.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19157 + - uid: 20757 components: - type: Transform pos: 65.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19158 + - uid: 20758 components: - type: Transform pos: 65.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19164 + - uid: 20759 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-58.5 parent: 2 - - uid: 19165 + - uid: 20760 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-58.5 parent: 2 - - uid: 19166 + - uid: 20761 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-56.5 parent: 2 - - uid: 19167 + - uid: 20762 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-56.5 parent: 2 - - uid: 19168 + - uid: 20763 components: - type: Transform rot: -1.5707963267948966 rad @@ -140571,7 +142061,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19169 + - uid: 20764 components: - type: Transform rot: -1.5707963267948966 rad @@ -140579,21 +142069,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19170 + - uid: 20765 components: - type: Transform pos: -27.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19171 + - uid: 20766 components: - type: Transform pos: -27.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19172 + - uid: 20767 components: - type: Transform rot: 3.141592653589793 rad @@ -140601,7 +142091,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19173 + - uid: 20768 components: - type: Transform rot: -1.5707963267948966 rad @@ -140609,7 +142099,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19174 + - uid: 20769 components: - type: Transform rot: 3.141592653589793 rad @@ -140617,127 +142107,127 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19178 + - uid: 20770 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-48.5 parent: 2 - - uid: 19179 + - uid: 20771 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-49.5 parent: 2 - - uid: 19180 + - uid: 20772 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-48.5 parent: 2 - - uid: 19182 + - uid: 20773 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-47.5 parent: 2 - - uid: 19183 + - uid: 20774 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-47.5 parent: 2 - - uid: 19184 + - uid: 20775 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-47.5 parent: 2 - - uid: 19185 + - uid: 20776 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-47.5 parent: 2 - - uid: 19186 + - uid: 20777 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-47.5 parent: 2 - - uid: 19187 + - uid: 20778 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-49.5 parent: 2 - - uid: 19188 + - uid: 20779 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-49.5 parent: 2 - - uid: 19189 + - uid: 20780 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-49.5 parent: 2 - - uid: 19190 + - uid: 20781 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-86.5 parent: 2 - - uid: 19191 + - uid: 20782 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-86.5 parent: 2 - - uid: 19192 + - uid: 20783 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-86.5 parent: 2 - - uid: 19193 + - uid: 20784 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-89.5 parent: 2 - - uid: 19194 + - uid: 20785 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-89.5 parent: 2 - - uid: 19195 + - uid: 20786 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-89.5 parent: 2 - - uid: 19196 + - uid: 20787 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-92.5 parent: 2 - - uid: 19197 + - uid: 20788 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-92.5 parent: 2 - - uid: 19198 + - uid: 20789 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-92.5 parent: 2 - - uid: 19199 + - uid: 20790 components: - type: Transform rot: 3.141592653589793 rad @@ -140745,7 +142235,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 19200 + - uid: 20791 components: - type: Transform rot: 3.141592653589793 rad @@ -140753,7 +142243,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19201 + - uid: 20792 components: - type: Transform rot: 1.5707963267948966 rad @@ -140761,31 +142251,31 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19202 + - uid: 20793 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-101.5 parent: 2 - - uid: 19203 + - uid: 20794 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-101.5 parent: 2 - - uid: 19204 + - uid: 20795 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-95.5 parent: 2 - - uid: 19205 + - uid: 20796 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-95.5 parent: 2 - - uid: 19206 + - uid: 20797 components: - type: Transform rot: 3.141592653589793 rad @@ -140793,7 +142283,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19207 + - uid: 20798 components: - type: Transform rot: 3.141592653589793 rad @@ -140801,14 +142291,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 19208 + - uid: 20799 components: - type: Transform pos: 35.5,-102.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 19209 + - uid: 20800 components: - type: Transform rot: 3.141592653589793 rad @@ -140816,7 +142306,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19210 + - uid: 20801 components: - type: Transform rot: 3.141592653589793 rad @@ -140824,7 +142314,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19211 + - uid: 20802 components: - type: Transform rot: 3.141592653589793 rad @@ -140832,7 +142322,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19212 + - uid: 20803 components: - type: Transform rot: 3.141592653589793 rad @@ -140840,7 +142330,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19213 + - uid: 20804 components: - type: Transform rot: 3.141592653589793 rad @@ -140848,7 +142338,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19214 + - uid: 20805 components: - type: Transform rot: 3.141592653589793 rad @@ -140856,7 +142346,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19215 + - uid: 20806 components: - type: Transform rot: 3.141592653589793 rad @@ -140864,7 +142354,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19216 + - uid: 20807 components: - type: Transform rot: 3.141592653589793 rad @@ -140872,7 +142362,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19217 + - uid: 20808 components: - type: Transform rot: 3.141592653589793 rad @@ -140880,7 +142370,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19218 + - uid: 20809 components: - type: Transform rot: 3.141592653589793 rad @@ -140888,7 +142378,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19219 + - uid: 20810 components: - type: Transform rot: 3.141592653589793 rad @@ -140896,7 +142386,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19220 + - uid: 20811 components: - type: Transform rot: 1.5707963267948966 rad @@ -140904,7 +142394,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19221 + - uid: 20812 components: - type: Transform rot: 1.5707963267948966 rad @@ -140912,7 +142402,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19222 + - uid: 20813 components: - type: Transform rot: 1.5707963267948966 rad @@ -140920,7 +142410,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19223 + - uid: 20814 components: - type: Transform rot: 1.5707963267948966 rad @@ -140928,7 +142418,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19224 + - uid: 20815 components: - type: Transform rot: 1.5707963267948966 rad @@ -140936,7 +142426,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19225 + - uid: 20816 components: - type: Transform rot: 1.5707963267948966 rad @@ -140944,7 +142434,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19226 + - uid: 20817 components: - type: Transform rot: -1.5707963267948966 rad @@ -140952,7 +142442,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19227 + - uid: 20818 components: - type: Transform rot: 3.141592653589793 rad @@ -140960,7 +142450,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19228 + - uid: 20819 components: - type: Transform rot: 3.141592653589793 rad @@ -140968,7 +142458,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19229 + - uid: 20820 components: - type: Transform rot: 3.141592653589793 rad @@ -140976,14 +142466,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19230 + - uid: 20821 components: - type: Transform pos: 35.5,-101.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 19231 + - uid: 20822 components: - type: Transform rot: 3.141592653589793 rad @@ -140991,7 +142481,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19232 + - uid: 20823 components: - type: Transform rot: 3.141592653589793 rad @@ -140999,7 +142489,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19233 + - uid: 20824 components: - type: Transform rot: 1.5707963267948966 rad @@ -141007,7 +142497,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19234 + - uid: 20825 components: - type: Transform rot: 1.5707963267948966 rad @@ -141015,7 +142505,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19235 + - uid: 20826 components: - type: Transform rot: -1.5707963267948966 rad @@ -141023,7 +142513,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19236 + - uid: 20827 components: - type: Transform rot: -1.5707963267948966 rad @@ -141031,7 +142521,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19237 + - uid: 20828 components: - type: Transform rot: 3.141592653589793 rad @@ -141039,7 +142529,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 19238 + - uid: 20829 components: - type: Transform rot: 3.141592653589793 rad @@ -141047,64 +142537,64 @@ entities: parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 19239 + - uid: 20830 components: - type: Transform pos: 52.5,-97.5 parent: 2 - - uid: 19240 + - uid: 20831 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-107.5 parent: 2 - - uid: 19241 + - uid: 20832 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-106.5 parent: 2 - - uid: 19242 + - uid: 20833 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-105.5 parent: 2 - - uid: 19243 + - uid: 20834 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-104.5 parent: 2 - - uid: 19244 + - uid: 20835 components: - type: Transform pos: 43.5,-107.5 parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19245 + - uid: 20836 components: - type: Transform pos: 43.5,-106.5 parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19246 + - uid: 20837 components: - type: Transform pos: 43.5,-105.5 parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19247 + - uid: 20838 components: - type: Transform pos: 43.5,-104.5 parent: 2 - type: AtmosPipeColor color: '#A505FAFF' - - uid: 19248 + - uid: 20839 components: - type: Transform rot: 3.141592653589793 rad @@ -141112,7 +142602,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 19249 + - uid: 20840 components: - type: Transform rot: -1.5707963267948966 rad @@ -141120,12 +142610,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 19250 + - uid: 20841 components: - type: Transform pos: 52.5,-96.5 parent: 2 - - uid: 19255 + - uid: 20842 components: - type: Transform rot: -1.5707963267948966 rad @@ -141133,42 +142623,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FF00FF' - - uid: 19256 + - uid: 20843 components: - type: Transform pos: 64.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19257 + - uid: 20844 components: - type: Transform pos: 64.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19258 + - uid: 20845 components: - type: Transform pos: 64.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19259 + - uid: 20846 components: - type: Transform pos: 64.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19260 + - uid: 20847 components: - type: Transform pos: 45.5,-84.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19261 + - uid: 20848 components: - type: Transform rot: -1.5707963267948966 rad @@ -141176,7 +142666,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19262 + - uid: 20849 components: - type: Transform rot: -1.5707963267948966 rad @@ -141184,7 +142674,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19263 + - uid: 20850 components: - type: Transform rot: -1.5707963267948966 rad @@ -141192,7 +142682,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19264 + - uid: 20851 components: - type: Transform rot: -1.5707963267948966 rad @@ -141200,7 +142690,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19265 + - uid: 20852 components: - type: Transform rot: -1.5707963267948966 rad @@ -141208,7 +142698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19266 + - uid: 20853 components: - type: Transform rot: -1.5707963267948966 rad @@ -141216,7 +142706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19267 + - uid: 20854 components: - type: Transform rot: -1.5707963267948966 rad @@ -141224,7 +142714,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19268 + - uid: 20855 components: - type: Transform rot: -1.5707963267948966 rad @@ -141232,7 +142722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19269 + - uid: 20856 components: - type: Transform rot: -1.5707963267948966 rad @@ -141240,21 +142730,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19270 + - uid: 20857 components: - type: Transform pos: 46.5,-84.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19271 + - uid: 20858 components: - type: Transform pos: 46.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19272 + - uid: 20859 components: - type: Transform rot: -1.5707963267948966 rad @@ -141262,7 +142752,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19273 + - uid: 20860 components: - type: Transform rot: -1.5707963267948966 rad @@ -141270,7 +142760,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19274 + - uid: 20861 components: - type: Transform rot: -1.5707963267948966 rad @@ -141278,7 +142768,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19275 + - uid: 20862 components: - type: Transform rot: -1.5707963267948966 rad @@ -141286,7 +142776,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19276 + - uid: 20863 components: - type: Transform rot: -1.5707963267948966 rad @@ -141294,7 +142784,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19277 + - uid: 20864 components: - type: Transform rot: 3.141592653589793 rad @@ -141302,7 +142792,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19278 + - uid: 20865 components: - type: Transform rot: 3.141592653589793 rad @@ -141310,7 +142800,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19279 + - uid: 20866 components: - type: Transform rot: 3.141592653589793 rad @@ -141318,7 +142808,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19280 + - uid: 20867 components: - type: Transform rot: 3.141592653589793 rad @@ -141326,7 +142816,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19281 + - uid: 20868 components: - type: Transform rot: 3.141592653589793 rad @@ -141334,7 +142824,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19282 + - uid: 20869 components: - type: Transform rot: 3.141592653589793 rad @@ -141342,7 +142832,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19283 + - uid: 20870 components: - type: Transform rot: 3.141592653589793 rad @@ -141350,7 +142840,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19284 + - uid: 20871 components: - type: Transform rot: 1.5707963267948966 rad @@ -141358,7 +142848,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19285 + - uid: 20872 components: - type: Transform rot: 1.5707963267948966 rad @@ -141366,21 +142856,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19286 + - uid: 20873 components: - type: Transform pos: 48.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19287 + - uid: 20874 components: - type: Transform pos: 48.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19288 + - uid: 20875 components: - type: Transform rot: -1.5707963267948966 rad @@ -141388,7 +142878,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19289 + - uid: 20876 components: - type: Transform rot: -1.5707963267948966 rad @@ -141396,7 +142886,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19290 + - uid: 20877 components: - type: Transform rot: -1.5707963267948966 rad @@ -141404,7 +142894,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19291 + - uid: 20878 components: - type: Transform rot: 3.141592653589793 rad @@ -141412,7 +142902,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19292 + - uid: 20879 components: - type: Transform rot: 3.141592653589793 rad @@ -141420,7 +142910,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19293 + - uid: 20880 components: - type: Transform rot: 3.141592653589793 rad @@ -141428,7 +142918,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19294 + - uid: 20881 components: - type: Transform rot: 3.141592653589793 rad @@ -141436,56 +142926,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19295 + - uid: 20882 components: - type: Transform pos: 48.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19296 + - uid: 20883 components: - type: Transform pos: 48.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19297 + - uid: 20884 components: - type: Transform pos: 50.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19298 + - uid: 20885 components: - type: Transform pos: 50.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19299 + - uid: 20886 components: - type: Transform pos: 50.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19300 + - uid: 20887 components: - type: Transform pos: 50.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19301 + - uid: 20888 components: - type: Transform pos: 48.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19302 + - uid: 20889 components: - type: Transform rot: 3.141592653589793 rad @@ -141493,7 +142983,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19303 + - uid: 20890 components: - type: Transform rot: 3.141592653589793 rad @@ -141501,7 +142991,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19304 + - uid: 20891 components: - type: Transform rot: -1.5707963267948966 rad @@ -141509,7 +142999,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19305 + - uid: 20892 components: - type: Transform rot: -1.5707963267948966 rad @@ -141517,7 +143007,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19306 + - uid: 20893 components: - type: Transform rot: -1.5707963267948966 rad @@ -141525,7 +143015,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19307 + - uid: 20894 components: - type: Transform rot: -1.5707963267948966 rad @@ -141533,7 +143023,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19308 + - uid: 20895 components: - type: Transform rot: 1.5707963267948966 rad @@ -141541,7 +143031,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19309 + - uid: 20896 components: - type: Transform rot: 1.5707963267948966 rad @@ -141549,7 +143039,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19310 + - uid: 20897 components: - type: Transform rot: 1.5707963267948966 rad @@ -141557,7 +143047,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19311 + - uid: 20898 components: - type: Transform rot: 1.5707963267948966 rad @@ -141565,7 +143055,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19312 + - uid: 20899 components: - type: Transform rot: 1.5707963267948966 rad @@ -141573,14 +143063,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19313 + - uid: 20900 components: - type: Transform pos: 53.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19314 + - uid: 20901 components: - type: Transform rot: 1.5707963267948966 rad @@ -141588,7 +143078,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19315 + - uid: 20902 components: - type: Transform rot: 1.5707963267948966 rad @@ -141596,7 +143086,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19316 + - uid: 20903 components: - type: Transform rot: 1.5707963267948966 rad @@ -141604,7 +143094,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19317 + - uid: 20904 components: - type: Transform rot: 1.5707963267948966 rad @@ -141612,7 +143102,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19318 + - uid: 20905 components: - type: Transform rot: 1.5707963267948966 rad @@ -141620,21 +143110,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19319 + - uid: 20906 components: - type: Transform pos: 56.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19320 + - uid: 20907 components: - type: Transform pos: 56.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19321 + - uid: 20908 components: - type: Transform rot: 3.141592653589793 rad @@ -141642,7 +143132,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19322 + - uid: 20909 components: - type: Transform rot: 3.141592653589793 rad @@ -141650,7 +143140,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19323 + - uid: 20910 components: - type: Transform rot: 3.141592653589793 rad @@ -141658,7 +143148,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19324 + - uid: 20911 components: - type: Transform rot: 3.141592653589793 rad @@ -141666,7 +143156,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19325 + - uid: 20912 components: - type: Transform rot: 3.141592653589793 rad @@ -141674,7 +143164,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19326 + - uid: 20913 components: - type: Transform rot: 3.141592653589793 rad @@ -141682,7 +143172,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19327 + - uid: 20914 components: - type: Transform rot: 3.141592653589793 rad @@ -141690,7 +143180,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19328 + - uid: 20915 components: - type: Transform rot: 3.141592653589793 rad @@ -141698,7 +143188,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19329 + - uid: 20916 components: - type: Transform rot: 3.141592653589793 rad @@ -141706,7 +143196,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19330 + - uid: 20917 components: - type: Transform rot: 3.141592653589793 rad @@ -141714,7 +143204,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19331 + - uid: 20918 components: - type: Transform rot: 3.141592653589793 rad @@ -141722,7 +143212,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19332 + - uid: 20919 components: - type: Transform rot: 3.141592653589793 rad @@ -141730,7 +143220,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19333 + - uid: 20920 components: - type: Transform rot: 3.141592653589793 rad @@ -141738,7 +143228,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19334 + - uid: 20921 components: - type: Transform rot: 3.141592653589793 rad @@ -141746,7 +143236,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19335 + - uid: 20922 components: - type: Transform rot: 3.141592653589793 rad @@ -141754,7 +143244,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19336 + - uid: 20923 components: - type: Transform rot: 3.141592653589793 rad @@ -141762,7 +143252,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19337 + - uid: 20924 components: - type: Transform rot: 3.141592653589793 rad @@ -141770,7 +143260,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19338 + - uid: 20925 components: - type: Transform rot: 3.141592653589793 rad @@ -141778,21 +143268,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19339 + - uid: 20926 components: - type: Transform pos: 50.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19340 + - uid: 20927 components: - type: Transform pos: 50.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19341 + - uid: 20928 components: - type: Transform rot: 1.5707963267948966 rad @@ -141800,7 +143290,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19342 + - uid: 20929 components: - type: Transform rot: 1.5707963267948966 rad @@ -141808,7 +143298,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19343 + - uid: 20930 components: - type: Transform rot: 1.5707963267948966 rad @@ -141816,7 +143306,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19344 + - uid: 20931 components: - type: Transform rot: 1.5707963267948966 rad @@ -141824,7 +143314,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19345 + - uid: 20932 components: - type: Transform rot: 1.5707963267948966 rad @@ -141832,7 +143322,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19346 + - uid: 20933 components: - type: Transform rot: 1.5707963267948966 rad @@ -141840,7 +143330,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19347 + - uid: 20934 components: - type: Transform rot: 1.5707963267948966 rad @@ -141848,7 +143338,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19348 + - uid: 20935 components: - type: Transform rot: 1.5707963267948966 rad @@ -141856,7 +143346,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19350 + - uid: 20936 components: - type: Transform rot: 1.5707963267948966 rad @@ -141864,7 +143354,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19351 + - uid: 20937 components: - type: Transform rot: 1.5707963267948966 rad @@ -141872,7 +143362,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19352 + - uid: 20938 components: - type: Transform rot: 1.5707963267948966 rad @@ -141880,7 +143370,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19353 + - uid: 20939 components: - type: Transform rot: 1.5707963267948966 rad @@ -141888,7 +143378,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19354 + - uid: 20940 components: - type: Transform rot: 1.5707963267948966 rad @@ -141896,7 +143386,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19355 + - uid: 20941 components: - type: Transform rot: 1.5707963267948966 rad @@ -141904,7 +143394,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19356 + - uid: 20942 components: - type: Transform rot: 1.5707963267948966 rad @@ -141912,7 +143402,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19357 + - uid: 20943 components: - type: Transform rot: 1.5707963267948966 rad @@ -141920,7 +143410,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19358 + - uid: 20944 components: - type: Transform rot: 1.5707963267948966 rad @@ -141928,7 +143418,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19359 + - uid: 20945 components: - type: Transform rot: 1.5707963267948966 rad @@ -141936,7 +143426,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19360 + - uid: 20946 components: - type: Transform rot: 1.5707963267948966 rad @@ -141944,7 +143434,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19361 + - uid: 20947 components: - type: Transform rot: 1.5707963267948966 rad @@ -141952,7 +143442,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19362 + - uid: 20948 components: - type: Transform rot: 1.5707963267948966 rad @@ -141960,7 +143450,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19363 + - uid: 20949 components: - type: Transform rot: 1.5707963267948966 rad @@ -141968,7 +143458,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19364 + - uid: 20950 components: - type: Transform rot: 1.5707963267948966 rad @@ -141976,7 +143466,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19365 + - uid: 20951 components: - type: Transform rot: 1.5707963267948966 rad @@ -141984,7 +143474,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19366 + - uid: 20952 components: - type: Transform rot: 1.5707963267948966 rad @@ -141992,203 +143482,203 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19367 + - uid: 20953 components: - type: Transform pos: 45.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19368 + - uid: 20954 components: - type: Transform pos: 45.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19369 + - uid: 20955 components: - type: Transform pos: 45.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19370 + - uid: 20956 components: - type: Transform pos: 45.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19371 + - uid: 20957 components: - type: Transform pos: 45.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19372 + - uid: 20958 components: - type: Transform pos: 45.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19373 + - uid: 20959 components: - type: Transform pos: 45.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19374 + - uid: 20960 components: - type: Transform pos: 45.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19375 + - uid: 20961 components: - type: Transform pos: 45.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19376 + - uid: 20962 components: - type: Transform pos: 45.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19377 + - uid: 20963 components: - type: Transform pos: 45.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19378 + - uid: 20964 components: - type: Transform pos: 45.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19379 + - uid: 20965 components: - type: Transform pos: 45.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19380 + - uid: 20966 components: - type: Transform pos: 45.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19381 + - uid: 20967 components: - type: Transform pos: 43.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19382 + - uid: 20968 components: - type: Transform pos: 43.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19383 + - uid: 20969 components: - type: Transform pos: 43.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19384 + - uid: 20970 components: - type: Transform pos: 43.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19385 + - uid: 20971 components: - type: Transform pos: 43.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19386 + - uid: 20972 components: - type: Transform pos: 43.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19387 + - uid: 20973 components: - type: Transform pos: 43.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19388 + - uid: 20974 components: - type: Transform pos: 43.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19389 + - uid: 20975 components: - type: Transform pos: 43.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19390 + - uid: 20976 components: - type: Transform pos: 43.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19391 + - uid: 20977 components: - type: Transform pos: 43.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19392 + - uid: 20978 components: - type: Transform pos: 43.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19393 + - uid: 20979 components: - type: Transform pos: 43.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19394 + - uid: 20980 components: - type: Transform pos: 43.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19395 + - uid: 20981 components: - type: Transform rot: 1.5707963267948966 rad @@ -142196,7 +143686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19396 + - uid: 20982 components: - type: Transform rot: 1.5707963267948966 rad @@ -142204,7 +143694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19397 + - uid: 20983 components: - type: Transform rot: 1.5707963267948966 rad @@ -142212,7 +143702,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19398 + - uid: 20984 components: - type: Transform rot: 1.5707963267948966 rad @@ -142220,7 +143710,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19399 + - uid: 20985 components: - type: Transform rot: 1.5707963267948966 rad @@ -142228,7 +143718,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19400 + - uid: 20986 components: - type: Transform rot: 1.5707963267948966 rad @@ -142236,7 +143726,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19401 + - uid: 20987 components: - type: Transform rot: -1.5707963267948966 rad @@ -142244,7 +143734,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19402 + - uid: 20988 components: - type: Transform rot: -1.5707963267948966 rad @@ -142252,7 +143742,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19403 + - uid: 20989 components: - type: Transform rot: -1.5707963267948966 rad @@ -142260,7 +143750,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19404 + - uid: 20990 components: - type: Transform rot: 3.141592653589793 rad @@ -142268,7 +143758,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19405 + - uid: 20991 components: - type: Transform rot: 3.141592653589793 rad @@ -142276,7 +143766,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19406 + - uid: 20992 components: - type: Transform rot: 3.141592653589793 rad @@ -142284,7 +143774,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19407 + - uid: 20993 components: - type: Transform rot: 3.141592653589793 rad @@ -142292,7 +143782,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19408 + - uid: 20994 components: - type: Transform rot: 3.141592653589793 rad @@ -142300,7 +143790,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19409 + - uid: 20995 components: - type: Transform rot: 3.141592653589793 rad @@ -142308,7 +143798,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19410 + - uid: 20996 components: - type: Transform rot: 3.141592653589793 rad @@ -142316,7 +143806,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19411 + - uid: 20997 components: - type: Transform rot: 3.141592653589793 rad @@ -142324,7 +143814,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19412 + - uid: 20998 components: - type: Transform rot: 3.141592653589793 rad @@ -142332,7 +143822,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19413 + - uid: 20999 components: - type: Transform rot: 3.141592653589793 rad @@ -142340,7 +143830,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19414 + - uid: 21000 components: - type: Transform rot: 3.141592653589793 rad @@ -142348,7 +143838,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19415 + - uid: 21001 components: - type: Transform rot: 3.141592653589793 rad @@ -142356,7 +143846,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19416 + - uid: 21002 components: - type: Transform rot: 3.141592653589793 rad @@ -142364,7 +143854,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19417 + - uid: 21003 components: - type: Transform rot: 3.141592653589793 rad @@ -142372,7 +143862,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19418 + - uid: 21004 components: - type: Transform rot: 3.141592653589793 rad @@ -142380,7 +143870,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19419 + - uid: 21005 components: - type: Transform rot: -1.5707963267948966 rad @@ -142388,7 +143878,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19420 + - uid: 21006 components: - type: Transform rot: -1.5707963267948966 rad @@ -142396,7 +143886,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19421 + - uid: 21007 components: - type: Transform rot: -1.5707963267948966 rad @@ -142404,7 +143894,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19422 + - uid: 21008 components: - type: Transform rot: -1.5707963267948966 rad @@ -142412,7 +143902,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19423 + - uid: 21009 components: - type: Transform rot: -1.5707963267948966 rad @@ -142420,7 +143910,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19424 + - uid: 21010 components: - type: Transform rot: -1.5707963267948966 rad @@ -142428,7 +143918,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19425 + - uid: 21011 components: - type: Transform rot: -1.5707963267948966 rad @@ -142436,7 +143926,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19426 + - uid: 21012 components: - type: Transform rot: -1.5707963267948966 rad @@ -142444,7 +143934,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19427 + - uid: 21013 components: - type: Transform rot: -1.5707963267948966 rad @@ -142452,7 +143942,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19428 + - uid: 21014 components: - type: Transform rot: -1.5707963267948966 rad @@ -142460,7 +143950,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19429 + - uid: 21015 components: - type: Transform rot: -1.5707963267948966 rad @@ -142468,7 +143958,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19430 + - uid: 21016 components: - type: Transform rot: -1.5707963267948966 rad @@ -142476,7 +143966,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19431 + - uid: 21017 components: - type: Transform rot: -1.5707963267948966 rad @@ -142484,7 +143974,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19432 + - uid: 21018 components: - type: Transform rot: -1.5707963267948966 rad @@ -142492,7 +143982,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19433 + - uid: 21019 components: - type: Transform rot: -1.5707963267948966 rad @@ -142500,7 +143990,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19434 + - uid: 21020 components: - type: Transform rot: 3.141592653589793 rad @@ -142508,7 +143998,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19435 + - uid: 21021 components: - type: Transform rot: 3.141592653589793 rad @@ -142516,7 +144006,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19436 + - uid: 21022 components: - type: Transform rot: 3.141592653589793 rad @@ -142524,7 +144014,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19437 + - uid: 21023 components: - type: Transform rot: 3.141592653589793 rad @@ -142532,7 +144022,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19438 + - uid: 21024 components: - type: Transform rot: 3.141592653589793 rad @@ -142540,7 +144030,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19439 + - uid: 21025 components: - type: Transform rot: 3.141592653589793 rad @@ -142548,7 +144038,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19444 + - uid: 21026 components: - type: Transform rot: 3.141592653589793 rad @@ -142556,7 +144046,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19445 + - uid: 21027 components: - type: Transform rot: 3.141592653589793 rad @@ -142564,7 +144054,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19446 + - uid: 21028 components: - type: Transform rot: 3.141592653589793 rad @@ -142572,7 +144062,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19447 + - uid: 21029 components: - type: Transform rot: 3.141592653589793 rad @@ -142580,7 +144070,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19448 + - uid: 21030 components: - type: Transform rot: 3.141592653589793 rad @@ -142588,7 +144078,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19455 + - uid: 21031 components: - type: Transform rot: 3.141592653589793 rad @@ -142596,7 +144086,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19456 + - uid: 21032 components: - type: Transform rot: 3.141592653589793 rad @@ -142604,7 +144094,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19457 + - uid: 21033 components: - type: Transform rot: 1.5707963267948966 rad @@ -142612,7 +144102,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19458 + - uid: 21034 components: - type: Transform rot: 1.5707963267948966 rad @@ -142620,7 +144110,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19459 + - uid: 21035 components: - type: Transform rot: 1.5707963267948966 rad @@ -142628,7 +144118,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19460 + - uid: 21036 components: - type: Transform rot: 1.5707963267948966 rad @@ -142636,7 +144126,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19461 + - uid: 21037 components: - type: Transform rot: 1.5707963267948966 rad @@ -142644,7 +144134,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19462 + - uid: 21038 components: - type: Transform rot: 1.5707963267948966 rad @@ -142652,7 +144142,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19463 + - uid: 21039 components: - type: Transform rot: 1.5707963267948966 rad @@ -142660,7 +144150,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19464 + - uid: 21040 components: - type: Transform rot: 1.5707963267948966 rad @@ -142668,7 +144158,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19465 + - uid: 21041 components: - type: Transform rot: 1.5707963267948966 rad @@ -142676,7 +144166,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19466 + - uid: 21042 components: - type: Transform rot: 1.5707963267948966 rad @@ -142684,7 +144174,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19467 + - uid: 21043 components: - type: Transform rot: 1.5707963267948966 rad @@ -142692,7 +144182,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19468 + - uid: 21044 components: - type: Transform rot: 1.5707963267948966 rad @@ -142700,7 +144190,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19469 + - uid: 21045 components: - type: Transform rot: 1.5707963267948966 rad @@ -142708,7 +144198,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19470 + - uid: 21046 components: - type: Transform rot: 1.5707963267948966 rad @@ -142716,7 +144206,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19471 + - uid: 21047 components: - type: Transform rot: 1.5707963267948966 rad @@ -142724,7 +144214,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19472 + - uid: 21048 components: - type: Transform rot: 1.5707963267948966 rad @@ -142732,7 +144222,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19473 + - uid: 21049 components: - type: Transform rot: 1.5707963267948966 rad @@ -142740,7 +144230,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19474 + - uid: 21050 components: - type: Transform rot: 1.5707963267948966 rad @@ -142748,7 +144238,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19475 + - uid: 21051 components: - type: Transform rot: 1.5707963267948966 rad @@ -142756,7 +144246,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19476 + - uid: 21052 components: - type: Transform rot: 1.5707963267948966 rad @@ -142764,7 +144254,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19477 + - uid: 21053 components: - type: Transform rot: 1.5707963267948966 rad @@ -142772,7 +144262,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19478 + - uid: 21054 components: - type: Transform rot: 1.5707963267948966 rad @@ -142780,7 +144270,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19479 + - uid: 21055 components: - type: Transform rot: 1.5707963267948966 rad @@ -142788,7 +144278,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19480 + - uid: 21056 components: - type: Transform rot: 1.5707963267948966 rad @@ -142796,7 +144286,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19481 + - uid: 21057 components: - type: Transform rot: 1.5707963267948966 rad @@ -142804,7 +144294,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19482 + - uid: 21058 components: - type: Transform rot: 1.5707963267948966 rad @@ -142812,7 +144302,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19483 + - uid: 21059 components: - type: Transform rot: 1.5707963267948966 rad @@ -142820,7 +144310,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19484 + - uid: 21060 components: - type: Transform rot: 1.5707963267948966 rad @@ -142828,7 +144318,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19485 + - uid: 21061 components: - type: Transform rot: 1.5707963267948966 rad @@ -142836,7 +144326,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19486 + - uid: 21062 components: - type: Transform rot: 1.5707963267948966 rad @@ -142844,7 +144334,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19487 + - uid: 21063 components: - type: Transform rot: 1.5707963267948966 rad @@ -142852,7 +144342,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19488 + - uid: 21064 components: - type: Transform rot: 1.5707963267948966 rad @@ -142860,7 +144350,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19489 + - uid: 21065 components: - type: Transform rot: 1.5707963267948966 rad @@ -142868,7 +144358,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19490 + - uid: 21066 components: - type: Transform rot: 1.5707963267948966 rad @@ -142876,7 +144366,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19491 + - uid: 21067 components: - type: Transform rot: 1.5707963267948966 rad @@ -142884,7 +144374,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19492 + - uid: 21068 components: - type: Transform rot: 1.5707963267948966 rad @@ -142892,7 +144382,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19493 + - uid: 21069 components: - type: Transform rot: 1.5707963267948966 rad @@ -142900,7 +144390,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19494 + - uid: 21070 components: - type: Transform rot: 1.5707963267948966 rad @@ -142908,7 +144398,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19495 + - uid: 21071 components: - type: Transform rot: 1.5707963267948966 rad @@ -142916,7 +144406,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19496 + - uid: 21072 components: - type: Transform rot: 1.5707963267948966 rad @@ -142924,7 +144414,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19497 + - uid: 21073 components: - type: Transform rot: 1.5707963267948966 rad @@ -142932,7 +144422,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19498 + - uid: 21074 components: - type: Transform rot: 1.5707963267948966 rad @@ -142940,7 +144430,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19499 + - uid: 21075 components: - type: Transform rot: 1.5707963267948966 rad @@ -142948,7 +144438,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19500 + - uid: 21076 components: - type: Transform rot: 1.5707963267948966 rad @@ -142956,7 +144446,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19501 + - uid: 21077 components: - type: Transform rot: 1.5707963267948966 rad @@ -142964,7 +144454,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19502 + - uid: 21078 components: - type: Transform rot: 1.5707963267948966 rad @@ -142972,7 +144462,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19503 + - uid: 21079 components: - type: Transform rot: 3.141592653589793 rad @@ -142980,7 +144470,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19504 + - uid: 21080 components: - type: Transform rot: 3.141592653589793 rad @@ -142988,7 +144478,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19505 + - uid: 21081 components: - type: Transform rot: 3.141592653589793 rad @@ -142996,7 +144486,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19506 + - uid: 21082 components: - type: Transform rot: 3.141592653589793 rad @@ -143004,7 +144494,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19507 + - uid: 21083 components: - type: Transform rot: 3.141592653589793 rad @@ -143012,7 +144502,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19508 + - uid: 21084 components: - type: Transform rot: 3.141592653589793 rad @@ -143020,7 +144510,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19509 + - uid: 21085 components: - type: Transform rot: 3.141592653589793 rad @@ -143028,7 +144518,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19510 + - uid: 21086 components: - type: Transform rot: 3.141592653589793 rad @@ -143036,7 +144526,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19521 + - uid: 21087 components: - type: Transform rot: 3.141592653589793 rad @@ -143044,7 +144534,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19523 + - uid: 21088 components: - type: Transform rot: 3.141592653589793 rad @@ -143052,28 +144542,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19528 + - uid: 21089 components: - type: Transform pos: 28.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19529 + - uid: 21090 components: - type: Transform pos: 28.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19534 + - uid: 21091 components: - type: Transform pos: 45.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19537 + - uid: 21092 components: - type: Transform rot: 3.141592653589793 rad @@ -143081,7 +144571,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19539 + - uid: 21093 components: - type: Transform rot: 3.141592653589793 rad @@ -143089,7 +144579,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19540 + - uid: 21094 components: - type: Transform rot: 3.141592653589793 rad @@ -143097,7 +144587,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19547 + - uid: 21095 components: - type: Transform rot: 1.5707963267948966 rad @@ -143105,7 +144595,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19548 + - uid: 21096 components: - type: Transform rot: 1.5707963267948966 rad @@ -143113,7 +144603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19549 + - uid: 21097 components: - type: Transform rot: 1.5707963267948966 rad @@ -143121,7 +144611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19550 + - uid: 21098 components: - type: Transform rot: 1.5707963267948966 rad @@ -143129,21 +144619,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19551 + - uid: 21099 components: - type: Transform pos: 28.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19552 + - uid: 21100 components: - type: Transform pos: 28.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19553 + - uid: 21101 components: - type: Transform rot: 1.5707963267948966 rad @@ -143151,21 +144641,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19559 + - uid: 21102 components: - type: Transform pos: 43.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19560 + - uid: 21103 components: - type: Transform pos: 43.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19573 + - uid: 21104 components: - type: Transform rot: 1.5707963267948966 rad @@ -143173,7 +144663,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19574 + - uid: 21105 components: - type: Transform rot: 1.5707963267948966 rad @@ -143181,14 +144671,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19593 + - uid: 21106 components: - type: Transform pos: 52.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19594 + - uid: 21107 components: - type: Transform rot: 1.5707963267948966 rad @@ -143196,7 +144686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19598 + - uid: 21108 components: - type: Transform rot: 1.5707963267948966 rad @@ -143204,7 +144694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19604 + - uid: 21109 components: - type: Transform rot: 1.5707963267948966 rad @@ -143212,7 +144702,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19605 + - uid: 21110 components: - type: Transform rot: 1.5707963267948966 rad @@ -143220,7 +144710,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19614 + - uid: 21111 components: - type: Transform rot: 1.5707963267948966 rad @@ -143228,7 +144718,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19615 + - uid: 21112 components: - type: Transform rot: -1.5707963267948966 rad @@ -143236,7 +144726,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19616 + - uid: 21113 components: - type: Transform rot: -1.5707963267948966 rad @@ -143244,35 +144734,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19621 + - uid: 21114 components: - type: Transform pos: 63.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19624 + - uid: 21115 components: - type: Transform pos: 44.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19628 + - uid: 21116 components: - type: Transform pos: 43.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19629 + - uid: 21117 components: - type: Transform pos: 43.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19652 + - uid: 21118 components: - type: Transform rot: 1.5707963267948966 rad @@ -143280,7 +144770,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19653 + - uid: 21119 components: - type: Transform rot: 1.5707963267948966 rad @@ -143288,7 +144778,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19654 + - uid: 21120 components: - type: Transform rot: 1.5707963267948966 rad @@ -143296,7 +144786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19655 + - uid: 21121 components: - type: Transform rot: 1.5707963267948966 rad @@ -143304,7 +144794,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19656 + - uid: 21122 components: - type: Transform rot: 3.141592653589793 rad @@ -143312,7 +144802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19657 + - uid: 21123 components: - type: Transform rot: 3.141592653589793 rad @@ -143320,28 +144810,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19658 + - uid: 21124 components: - type: Transform pos: 73.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19659 + - uid: 21125 components: - type: Transform pos: 73.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19660 + - uid: 21126 components: - type: Transform pos: 73.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19661 + - uid: 21127 components: - type: Transform rot: -1.5707963267948966 rad @@ -143349,7 +144839,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19662 + - uid: 21128 components: - type: Transform rot: -1.5707963267948966 rad @@ -143357,7 +144847,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19663 + - uid: 21129 components: - type: Transform rot: -1.5707963267948966 rad @@ -143365,7 +144855,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19664 + - uid: 21130 components: - type: Transform rot: 3.141592653589793 rad @@ -143373,7 +144863,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19665 + - uid: 21131 components: - type: Transform rot: 3.141592653589793 rad @@ -143381,7 +144871,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19666 + - uid: 21132 components: - type: Transform rot: 3.141592653589793 rad @@ -143389,7 +144879,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19667 + - uid: 21133 components: - type: Transform rot: 3.141592653589793 rad @@ -143397,7 +144887,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19668 + - uid: 21134 components: - type: Transform rot: 3.141592653589793 rad @@ -143405,7 +144895,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19669 + - uid: 21135 components: - type: Transform rot: 3.141592653589793 rad @@ -143413,7 +144903,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19670 + - uid: 21136 components: - type: Transform rot: 3.141592653589793 rad @@ -143421,7 +144911,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19671 + - uid: 21137 components: - type: Transform rot: 3.141592653589793 rad @@ -143429,7 +144919,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19672 + - uid: 21138 components: - type: Transform rot: -1.5707963267948966 rad @@ -143437,7 +144927,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19673 + - uid: 21139 components: - type: Transform rot: -1.5707963267948966 rad @@ -143445,7 +144935,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19674 + - uid: 21140 components: - type: Transform rot: -1.5707963267948966 rad @@ -143453,7 +144943,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19675 + - uid: 21141 components: - type: Transform rot: -1.5707963267948966 rad @@ -143461,7 +144951,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19676 + - uid: 21142 components: - type: Transform rot: -1.5707963267948966 rad @@ -143469,7 +144959,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19677 + - uid: 21143 components: - type: Transform rot: -1.5707963267948966 rad @@ -143477,7 +144967,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19678 + - uid: 21144 components: - type: Transform rot: -1.5707963267948966 rad @@ -143485,7 +144975,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19679 + - uid: 21145 components: - type: Transform rot: 3.141592653589793 rad @@ -143493,7 +144983,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19680 + - uid: 21146 components: - type: Transform rot: 3.141592653589793 rad @@ -143501,7 +144991,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19681 + - uid: 21147 components: - type: Transform rot: 3.141592653589793 rad @@ -143509,7 +144999,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19682 + - uid: 21148 components: - type: Transform rot: 3.141592653589793 rad @@ -143517,7 +145007,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19683 + - uid: 21149 components: - type: Transform rot: 3.141592653589793 rad @@ -143525,7 +145015,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19684 + - uid: 21150 components: - type: Transform rot: 3.141592653589793 rad @@ -143533,7 +145023,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19685 + - uid: 21151 components: - type: Transform rot: 1.5707963267948966 rad @@ -143541,7 +145031,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19686 + - uid: 21152 components: - type: Transform rot: 1.5707963267948966 rad @@ -143549,7 +145039,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19687 + - uid: 21153 components: - type: Transform rot: 1.5707963267948966 rad @@ -143557,7 +145047,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19688 + - uid: 21154 components: - type: Transform rot: 1.5707963267948966 rad @@ -143565,7 +145055,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19689 + - uid: 21155 components: - type: Transform rot: 1.5707963267948966 rad @@ -143573,7 +145063,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19691 + - uid: 21156 components: - type: Transform rot: 1.5707963267948966 rad @@ -143581,7 +145071,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19692 + - uid: 21157 components: - type: Transform rot: 1.5707963267948966 rad @@ -143589,7 +145079,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19693 + - uid: 21158 components: - type: Transform rot: 1.5707963267948966 rad @@ -143597,7 +145087,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19694 + - uid: 21159 components: - type: Transform rot: 1.5707963267948966 rad @@ -143605,7 +145095,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19695 + - uid: 21160 components: - type: Transform rot: 1.5707963267948966 rad @@ -143613,7 +145103,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19696 + - uid: 21161 components: - type: Transform rot: 1.5707963267948966 rad @@ -143621,7 +145111,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19697 + - uid: 21162 components: - type: Transform rot: 1.5707963267948966 rad @@ -143629,7 +145119,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19698 + - uid: 21163 components: - type: Transform rot: 1.5707963267948966 rad @@ -143637,7 +145127,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19699 + - uid: 21164 components: - type: Transform rot: 1.5707963267948966 rad @@ -143645,7 +145135,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19700 + - uid: 21165 components: - type: Transform rot: 1.5707963267948966 rad @@ -143653,7 +145143,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19701 + - uid: 21166 components: - type: Transform rot: 1.5707963267948966 rad @@ -143661,7 +145151,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19702 + - uid: 21167 components: - type: Transform rot: 1.5707963267948966 rad @@ -143669,7 +145159,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19703 + - uid: 21168 components: - type: Transform rot: 1.5707963267948966 rad @@ -143677,7 +145167,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19704 + - uid: 21169 components: - type: Transform rot: 1.5707963267948966 rad @@ -143685,7 +145175,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19705 + - uid: 21170 components: - type: Transform rot: 1.5707963267948966 rad @@ -143693,7 +145183,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19706 + - uid: 21171 components: - type: Transform rot: 1.5707963267948966 rad @@ -143701,7 +145191,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19707 + - uid: 21172 components: - type: Transform rot: 1.5707963267948966 rad @@ -143709,7 +145199,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19708 + - uid: 21173 components: - type: Transform rot: 1.5707963267948966 rad @@ -143717,7 +145207,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19709 + - uid: 21174 components: - type: Transform rot: 1.5707963267948966 rad @@ -143725,7 +145215,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19710 + - uid: 21175 components: - type: Transform rot: 1.5707963267948966 rad @@ -143733,7 +145223,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19711 + - uid: 21176 components: - type: Transform rot: 1.5707963267948966 rad @@ -143741,7 +145231,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19712 + - uid: 21177 components: - type: Transform rot: 1.5707963267948966 rad @@ -143749,7 +145239,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19713 + - uid: 21178 components: - type: Transform rot: 1.5707963267948966 rad @@ -143757,7 +145247,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19714 + - uid: 21179 components: - type: Transform rot: 1.5707963267948966 rad @@ -143765,7 +145255,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19715 + - uid: 21180 components: - type: Transform rot: 1.5707963267948966 rad @@ -143773,7 +145263,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19716 + - uid: 21181 components: - type: Transform rot: 1.5707963267948966 rad @@ -143781,7 +145271,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19717 + - uid: 21182 components: - type: Transform rot: 1.5707963267948966 rad @@ -143789,7 +145279,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19718 + - uid: 21183 components: - type: Transform rot: 1.5707963267948966 rad @@ -143797,7 +145287,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19719 + - uid: 21184 components: - type: Transform rot: 1.5707963267948966 rad @@ -143805,7 +145295,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19720 + - uid: 21185 components: - type: Transform rot: 1.5707963267948966 rad @@ -143813,112 +145303,112 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19721 + - uid: 21186 components: - type: Transform pos: 83.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19722 + - uid: 21187 components: - type: Transform pos: 83.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19723 + - uid: 21188 components: - type: Transform pos: 83.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19724 + - uid: 21189 components: - type: Transform pos: 83.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19725 + - uid: 21190 components: - type: Transform pos: 83.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19726 + - uid: 21191 components: - type: Transform pos: 83.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19727 + - uid: 21192 components: - type: Transform pos: 83.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19728 + - uid: 21193 components: - type: Transform pos: 83.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19729 + - uid: 21194 components: - type: Transform pos: 83.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19730 + - uid: 21195 components: - type: Transform pos: 83.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19731 + - uid: 21196 components: - type: Transform pos: 83.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19732 + - uid: 21197 components: - type: Transform pos: 83.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19733 + - uid: 21198 components: - type: Transform pos: 83.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19734 + - uid: 21199 components: - type: Transform pos: 83.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19735 + - uid: 21200 components: - type: Transform pos: 83.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19736 + - uid: 21201 components: - type: Transform rot: -1.5707963267948966 rad @@ -143926,7 +145416,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19737 + - uid: 21202 components: - type: Transform rot: -1.5707963267948966 rad @@ -143934,7 +145424,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19738 + - uid: 21203 components: - type: Transform rot: -1.5707963267948966 rad @@ -143942,7 +145432,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19739 + - uid: 21204 components: - type: Transform rot: -1.5707963267948966 rad @@ -143950,7 +145440,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19740 + - uid: 21205 components: - type: Transform rot: -1.5707963267948966 rad @@ -143958,7 +145448,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19741 + - uid: 21206 components: - type: Transform rot: -1.5707963267948966 rad @@ -143966,7 +145456,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19742 + - uid: 21207 components: - type: Transform rot: -1.5707963267948966 rad @@ -143974,7 +145464,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19743 + - uid: 21208 components: - type: Transform rot: -1.5707963267948966 rad @@ -143982,7 +145472,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19744 + - uid: 21209 components: - type: Transform rot: -1.5707963267948966 rad @@ -143990,7 +145480,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19745 + - uid: 21210 components: - type: Transform rot: -1.5707963267948966 rad @@ -143998,7 +145488,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19746 + - uid: 21211 components: - type: Transform rot: -1.5707963267948966 rad @@ -144006,7 +145496,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19747 + - uid: 21212 components: - type: Transform rot: -1.5707963267948966 rad @@ -144014,7 +145504,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19748 + - uid: 21213 components: - type: Transform rot: -1.5707963267948966 rad @@ -144022,7 +145512,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19749 + - uid: 21214 components: - type: Transform rot: -1.5707963267948966 rad @@ -144030,7 +145520,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19750 + - uid: 21215 components: - type: Transform rot: -1.5707963267948966 rad @@ -144038,7 +145528,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19751 + - uid: 21216 components: - type: Transform rot: -1.5707963267948966 rad @@ -144046,7 +145536,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19752 + - uid: 21217 components: - type: Transform rot: -1.5707963267948966 rad @@ -144054,7 +145544,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19753 + - uid: 21218 components: - type: Transform rot: -1.5707963267948966 rad @@ -144062,7 +145552,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19754 + - uid: 21219 components: - type: Transform rot: -1.5707963267948966 rad @@ -144070,7 +145560,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19755 + - uid: 21220 components: - type: Transform rot: -1.5707963267948966 rad @@ -144078,7 +145568,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19756 + - uid: 21221 components: - type: Transform rot: -1.5707963267948966 rad @@ -144086,7 +145576,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19757 + - uid: 21222 components: - type: Transform rot: -1.5707963267948966 rad @@ -144094,7 +145584,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19758 + - uid: 21223 components: - type: Transform rot: -1.5707963267948966 rad @@ -144102,7 +145592,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19759 + - uid: 21224 components: - type: Transform rot: -1.5707963267948966 rad @@ -144110,7 +145600,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19760 + - uid: 21225 components: - type: Transform rot: -1.5707963267948966 rad @@ -144118,7 +145608,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19761 + - uid: 21226 components: - type: Transform rot: -1.5707963267948966 rad @@ -144126,7 +145616,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19762 + - uid: 21227 components: - type: Transform rot: -1.5707963267948966 rad @@ -144134,7 +145624,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19763 + - uid: 21228 components: - type: Transform rot: -1.5707963267948966 rad @@ -144142,7 +145632,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19764 + - uid: 21229 components: - type: Transform rot: -1.5707963267948966 rad @@ -144150,7 +145640,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19765 + - uid: 21230 components: - type: Transform rot: -1.5707963267948966 rad @@ -144158,7 +145648,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19766 + - uid: 21231 components: - type: Transform rot: -1.5707963267948966 rad @@ -144166,7 +145656,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19767 + - uid: 21232 components: - type: Transform rot: -1.5707963267948966 rad @@ -144174,7 +145664,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19768 + - uid: 21233 components: - type: Transform rot: -1.5707963267948966 rad @@ -144182,7 +145672,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19769 + - uid: 21234 components: - type: Transform rot: -1.5707963267948966 rad @@ -144190,7 +145680,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19770 + - uid: 21235 components: - type: Transform rot: -1.5707963267948966 rad @@ -144198,7 +145688,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19771 + - uid: 21236 components: - type: Transform rot: -1.5707963267948966 rad @@ -144206,7 +145696,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19772 + - uid: 21237 components: - type: Transform rot: 3.141592653589793 rad @@ -144214,7 +145704,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19773 + - uid: 21238 components: - type: Transform rot: 3.141592653589793 rad @@ -144222,7 +145712,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19774 + - uid: 21239 components: - type: Transform rot: 3.141592653589793 rad @@ -144230,7 +145720,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19775 + - uid: 21240 components: - type: Transform rot: 3.141592653589793 rad @@ -144238,7 +145728,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19776 + - uid: 21241 components: - type: Transform rot: 3.141592653589793 rad @@ -144246,7 +145736,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19777 + - uid: 21242 components: - type: Transform rot: 3.141592653589793 rad @@ -144254,7 +145744,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19778 + - uid: 21243 components: - type: Transform rot: 3.141592653589793 rad @@ -144262,7 +145752,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19779 + - uid: 21244 components: - type: Transform rot: 3.141592653589793 rad @@ -144270,7 +145760,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19780 + - uid: 21245 components: - type: Transform rot: 3.141592653589793 rad @@ -144278,7 +145768,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19781 + - uid: 21246 components: - type: Transform rot: -1.5707963267948966 rad @@ -144286,7 +145776,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19782 + - uid: 21247 components: - type: Transform rot: -1.5707963267948966 rad @@ -144294,7 +145784,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19783 + - uid: 21248 components: - type: Transform rot: -1.5707963267948966 rad @@ -144302,7 +145792,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19784 + - uid: 21249 components: - type: Transform rot: -1.5707963267948966 rad @@ -144310,21 +145800,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19785 + - uid: 21250 components: - type: Transform pos: 86.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19786 + - uid: 21251 components: - type: Transform pos: 86.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19787 + - uid: 21252 components: - type: Transform rot: 3.141592653589793 rad @@ -144332,7 +145822,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19788 + - uid: 21253 components: - type: Transform rot: 3.141592653589793 rad @@ -144340,91 +145830,91 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19789 + - uid: 21254 components: - type: Transform pos: 28.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19790 + - uid: 21255 components: - type: Transform pos: 28.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19791 + - uid: 21256 components: - type: Transform pos: 28.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19792 + - uid: 21257 components: - type: Transform pos: 28.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19793 + - uid: 21258 components: - type: Transform pos: 28.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19794 + - uid: 21259 components: - type: Transform pos: 30.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19795 + - uid: 21260 components: - type: Transform pos: 30.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19796 + - uid: 21261 components: - type: Transform pos: 30.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19797 + - uid: 21262 components: - type: Transform pos: 30.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19798 + - uid: 21263 components: - type: Transform pos: 30.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19799 + - uid: 21264 components: - type: Transform pos: 30.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19800 + - uid: 21265 components: - type: Transform pos: 30.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19801 + - uid: 21266 components: - type: Transform rot: -1.5707963267948966 rad @@ -144432,7 +145922,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19802 + - uid: 21267 components: - type: Transform rot: -1.5707963267948966 rad @@ -144440,7 +145930,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19803 + - uid: 21268 components: - type: Transform rot: -1.5707963267948966 rad @@ -144448,35 +145938,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19804 + - uid: 21269 components: - type: Transform pos: 26.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19805 + - uid: 21270 components: - type: Transform pos: 26.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19806 + - uid: 21271 components: - type: Transform pos: 26.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19808 + - uid: 21272 components: - type: Transform pos: 27.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19810 + - uid: 21273 components: - type: Transform rot: 1.5707963267948966 rad @@ -144484,7 +145974,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19811 + - uid: 21274 components: - type: Transform rot: 1.5707963267948966 rad @@ -144492,7 +145982,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19812 + - uid: 21275 components: - type: Transform rot: 1.5707963267948966 rad @@ -144500,245 +145990,245 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19813 + - uid: 21276 components: - type: Transform pos: 31.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19814 + - uid: 21277 components: - type: Transform pos: 31.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19815 + - uid: 21278 components: - type: Transform pos: 31.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19816 + - uid: 21279 components: - type: Transform pos: 31.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19818 + - uid: 21280 components: - type: Transform pos: 31.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19819 + - uid: 21281 components: - type: Transform pos: 31.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19820 + - uid: 21282 components: - type: Transform pos: 31.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19821 + - uid: 21283 components: - type: Transform pos: 31.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19822 + - uid: 21284 components: - type: Transform pos: 31.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19823 + - uid: 21285 components: - type: Transform pos: 33.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19824 + - uid: 21286 components: - type: Transform pos: 33.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19825 + - uid: 21287 components: - type: Transform pos: 33.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19826 + - uid: 21288 components: - type: Transform pos: 33.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19828 + - uid: 21289 components: - type: Transform pos: 33.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19829 + - uid: 21290 components: - type: Transform pos: 33.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19830 + - uid: 21291 components: - type: Transform pos: 33.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19831 + - uid: 21292 components: - type: Transform pos: 33.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19832 + - uid: 21293 components: - type: Transform pos: 28.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19833 + - uid: 21294 components: - type: Transform pos: 28.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19834 + - uid: 21295 components: - type: Transform pos: 30.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19835 + - uid: 21296 components: - type: Transform pos: 30.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19836 + - uid: 21297 components: - type: Transform pos: 30.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19837 + - uid: 21298 components: - type: Transform pos: 30.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19838 + - uid: 21299 components: - type: Transform pos: 28.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19839 + - uid: 21300 components: - type: Transform pos: 28.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19840 + - uid: 21301 components: - type: Transform pos: 30.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19841 + - uid: 21302 components: - type: Transform pos: 30.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19842 + - uid: 21303 components: - type: Transform pos: 30.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19843 + - uid: 21304 components: - type: Transform pos: 30.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19844 + - uid: 21305 components: - type: Transform pos: 28.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19845 + - uid: 21306 components: - type: Transform pos: 28.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19846 + - uid: 21307 components: - type: Transform pos: 28.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19847 + - uid: 21308 components: - type: Transform pos: 28.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19848 + - uid: 21309 components: - type: Transform pos: 28.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19849 + - uid: 21310 components: - type: Transform rot: 1.5707963267948966 rad @@ -144746,7 +146236,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19850 + - uid: 21311 components: - type: Transform rot: 1.5707963267948966 rad @@ -144754,7 +146244,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19851 + - uid: 21312 components: - type: Transform rot: 1.5707963267948966 rad @@ -144762,7 +146252,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19852 + - uid: 21313 components: - type: Transform rot: -1.5707963267948966 rad @@ -144770,7 +146260,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19853 + - uid: 21314 components: - type: Transform rot: 3.141592653589793 rad @@ -144778,7 +146268,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19854 + - uid: 21315 components: - type: Transform rot: 3.141592653589793 rad @@ -144786,7 +146276,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19855 + - uid: 21316 components: - type: Transform rot: 3.141592653589793 rad @@ -144794,7 +146284,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19856 + - uid: 21317 components: - type: Transform rot: 3.141592653589793 rad @@ -144802,7 +146292,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19857 + - uid: 21318 components: - type: Transform rot: -1.5707963267948966 rad @@ -144810,7 +146300,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19858 + - uid: 21319 components: - type: Transform rot: -1.5707963267948966 rad @@ -144818,7 +146308,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19859 + - uid: 21320 components: - type: Transform rot: 3.141592653589793 rad @@ -144826,7 +146316,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19860 + - uid: 21321 components: - type: Transform rot: 3.141592653589793 rad @@ -144834,7 +146324,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19861 + - uid: 21322 components: - type: Transform rot: 3.141592653589793 rad @@ -144842,7 +146332,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19862 + - uid: 21323 components: - type: Transform rot: 3.141592653589793 rad @@ -144850,7 +146340,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19863 + - uid: 21324 components: - type: Transform rot: 3.141592653589793 rad @@ -144858,7 +146348,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19864 + - uid: 21325 components: - type: Transform rot: 3.141592653589793 rad @@ -144866,7 +146356,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19865 + - uid: 21326 components: - type: Transform rot: 3.141592653589793 rad @@ -144874,7 +146364,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19866 + - uid: 21327 components: - type: Transform rot: -1.5707963267948966 rad @@ -144882,7 +146372,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19867 + - uid: 21328 components: - type: Transform rot: -1.5707963267948966 rad @@ -144890,7 +146380,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19868 + - uid: 21329 components: - type: Transform rot: -1.5707963267948966 rad @@ -144898,7 +146388,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19869 + - uid: 21330 components: - type: Transform rot: 1.5707963267948966 rad @@ -144906,7 +146396,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19870 + - uid: 21331 components: - type: Transform rot: 1.5707963267948966 rad @@ -144914,42 +146404,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19871 + - uid: 21332 components: - type: Transform pos: 26.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19872 + - uid: 21333 components: - type: Transform pos: 26.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19873 + - uid: 21334 components: - type: Transform pos: 26.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19874 + - uid: 21335 components: - type: Transform pos: 26.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19875 + - uid: 21336 components: - type: Transform pos: 26.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19876 + - uid: 21337 components: - type: Transform rot: -1.5707963267948966 rad @@ -144957,7 +146447,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19877 + - uid: 21338 components: - type: Transform rot: -1.5707963267948966 rad @@ -144965,7 +146455,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19878 + - uid: 21339 components: - type: Transform rot: 1.5707963267948966 rad @@ -144973,7 +146463,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19879 + - uid: 21340 components: - type: Transform rot: 1.5707963267948966 rad @@ -144981,77 +146471,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19880 + - uid: 21341 components: - type: Transform pos: 15.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19881 + - uid: 21342 components: - type: Transform pos: 15.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19882 + - uid: 21343 components: - type: Transform pos: 15.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19883 + - uid: 21344 components: - type: Transform pos: 15.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19884 + - uid: 21345 components: - type: Transform pos: 15.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19885 + - uid: 21346 components: - type: Transform pos: 15.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19886 + - uid: 21347 components: - type: Transform pos: 17.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19887 + - uid: 21348 components: - type: Transform pos: 17.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19888 - components: - - type: Transform - pos: 17.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19889 + - uid: 21349 components: - type: Transform pos: 17.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19890 + - uid: 21350 components: - type: Transform rot: -1.5707963267948966 rad @@ -145059,7 +146542,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19891 + - uid: 21351 components: - type: Transform rot: -1.5707963267948966 rad @@ -145067,7 +146550,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19892 + - uid: 21352 components: - type: Transform rot: -1.5707963267948966 rad @@ -145075,7 +146558,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19893 + - uid: 21353 components: - type: Transform rot: -1.5707963267948966 rad @@ -145083,15 +146566,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19894 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19895 + - uid: 21354 components: - type: Transform rot: -1.5707963267948966 rad @@ -145099,7 +146574,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19896 + - uid: 21355 components: - type: Transform rot: 3.141592653589793 rad @@ -145107,7 +146582,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19897 + - uid: 21356 components: - type: Transform rot: 3.141592653589793 rad @@ -145115,7 +146590,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19898 + - uid: 21357 components: - type: Transform rot: 3.141592653589793 rad @@ -145123,15 +146598,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19899 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19900 + - uid: 21358 components: - type: Transform rot: 3.141592653589793 rad @@ -145139,7 +146606,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19901 + - uid: 21359 components: - type: Transform rot: 1.5707963267948966 rad @@ -145147,7 +146614,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19902 + - uid: 21360 components: - type: Transform rot: 1.5707963267948966 rad @@ -145155,7 +146622,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19903 + - uid: 21361 components: - type: Transform rot: 1.5707963267948966 rad @@ -145163,7 +146630,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19904 + - uid: 21362 components: - type: Transform rot: 1.5707963267948966 rad @@ -145171,7 +146638,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19905 + - uid: 21363 components: - type: Transform rot: 1.5707963267948966 rad @@ -145179,7 +146646,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19906 + - uid: 21364 components: - type: Transform rot: 1.5707963267948966 rad @@ -145187,7 +146654,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19907 + - uid: 21365 components: - type: Transform rot: 1.5707963267948966 rad @@ -145195,7 +146662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19908 + - uid: 21366 components: - type: Transform rot: 1.5707963267948966 rad @@ -145203,7 +146670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19909 + - uid: 21367 components: - type: Transform rot: 1.5707963267948966 rad @@ -145211,7 +146678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19910 + - uid: 21368 components: - type: Transform rot: 1.5707963267948966 rad @@ -145219,7 +146686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19911 + - uid: 21369 components: - type: Transform rot: 1.5707963267948966 rad @@ -145227,7 +146694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19912 + - uid: 21370 components: - type: Transform rot: 1.5707963267948966 rad @@ -145235,7 +146702,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19913 + - uid: 21371 components: - type: Transform rot: 1.5707963267948966 rad @@ -145243,7 +146710,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19914 + - uid: 21372 components: - type: Transform rot: 1.5707963267948966 rad @@ -145251,42 +146718,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19915 + - uid: 21373 components: - type: Transform pos: 7.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19916 + - uid: 21374 components: - type: Transform pos: 7.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19917 + - uid: 21375 components: - type: Transform pos: 8.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19918 + - uid: 21376 components: - type: Transform pos: 8.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19919 + - uid: 21377 components: - type: Transform pos: 8.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19920 + - uid: 21378 components: - type: Transform rot: -1.5707963267948966 rad @@ -145294,7 +146761,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19921 + - uid: 21379 components: - type: Transform rot: -1.5707963267948966 rad @@ -145302,7 +146769,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19922 + - uid: 21380 components: - type: Transform rot: -1.5707963267948966 rad @@ -145310,7 +146777,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19923 + - uid: 21381 components: - type: Transform rot: -1.5707963267948966 rad @@ -145318,7 +146785,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19924 + - uid: 21382 components: - type: Transform rot: -1.5707963267948966 rad @@ -145326,7 +146793,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19926 + - uid: 21383 components: - type: Transform rot: -1.5707963267948966 rad @@ -145334,7 +146801,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19927 + - uid: 21384 components: - type: Transform rot: -1.5707963267948966 rad @@ -145342,7 +146809,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19928 + - uid: 21385 components: - type: Transform rot: 3.141592653589793 rad @@ -145350,7 +146817,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19929 + - uid: 21386 components: - type: Transform rot: 3.141592653589793 rad @@ -145358,7 +146825,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19930 + - uid: 21387 components: - type: Transform rot: 3.141592653589793 rad @@ -145366,7 +146833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19931 + - uid: 21388 components: - type: Transform rot: 3.141592653589793 rad @@ -145374,7 +146841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19932 + - uid: 21389 components: - type: Transform rot: 3.141592653589793 rad @@ -145382,7 +146849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19933 + - uid: 21390 components: - type: Transform rot: 3.141592653589793 rad @@ -145390,7 +146857,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19934 + - uid: 21391 components: - type: Transform rot: 3.141592653589793 rad @@ -145398,7 +146865,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19935 + - uid: 21392 components: - type: Transform rot: 3.141592653589793 rad @@ -145406,7 +146873,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19936 + - uid: 21393 components: - type: Transform rot: 3.141592653589793 rad @@ -145414,7 +146881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19937 + - uid: 21394 components: - type: Transform rot: 3.141592653589793 rad @@ -145422,7 +146889,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19938 + - uid: 21395 components: - type: Transform rot: 3.141592653589793 rad @@ -145430,7 +146897,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19939 + - uid: 21396 components: - type: Transform rot: -1.5707963267948966 rad @@ -145438,7 +146905,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19940 + - uid: 21397 components: - type: Transform rot: -1.5707963267948966 rad @@ -145446,7 +146913,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19941 + - uid: 21398 components: - type: Transform rot: -1.5707963267948966 rad @@ -145454,7 +146921,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19942 + - uid: 21399 components: - type: Transform rot: -1.5707963267948966 rad @@ -145462,7 +146929,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19943 + - uid: 21400 components: - type: Transform rot: -1.5707963267948966 rad @@ -145470,7 +146937,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19944 + - uid: 21401 components: - type: Transform rot: -1.5707963267948966 rad @@ -145478,7 +146945,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19945 + - uid: 21402 components: - type: Transform rot: 3.141592653589793 rad @@ -145486,7 +146953,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19946 + - uid: 21403 components: - type: Transform rot: 3.141592653589793 rad @@ -145494,7 +146961,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19947 + - uid: 21404 components: - type: Transform rot: 3.141592653589793 rad @@ -145502,7 +146969,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19949 + - uid: 21405 components: - type: Transform rot: 1.5707963267948966 rad @@ -145510,7 +146977,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19950 + - uid: 21406 components: - type: Transform rot: 1.5707963267948966 rad @@ -145518,7 +146985,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19951 + - uid: 21407 components: - type: Transform rot: 1.5707963267948966 rad @@ -145526,7 +146993,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19952 + - uid: 21408 components: - type: Transform rot: 1.5707963267948966 rad @@ -145534,7 +147001,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19953 + - uid: 21409 components: - type: Transform rot: 1.5707963267948966 rad @@ -145542,7 +147009,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19954 + - uid: 21410 components: - type: Transform rot: 3.141592653589793 rad @@ -145550,7 +147017,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19955 + - uid: 21411 components: - type: Transform rot: 3.141592653589793 rad @@ -145558,7 +147025,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19956 + - uid: 21412 components: - type: Transform rot: 3.141592653589793 rad @@ -145566,7 +147033,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19957 + - uid: 21413 components: - type: Transform rot: 3.141592653589793 rad @@ -145574,7 +147041,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19958 + - uid: 21414 components: - type: Transform rot: 3.141592653589793 rad @@ -145582,7 +147049,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19959 + - uid: 21415 components: - type: Transform rot: 3.141592653589793 rad @@ -145590,7 +147057,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19960 + - uid: 21416 components: - type: Transform rot: 3.141592653589793 rad @@ -145598,7 +147065,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19961 + - uid: 21417 components: - type: Transform rot: 3.141592653589793 rad @@ -145606,7 +147073,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19962 + - uid: 21418 components: - type: Transform rot: 3.141592653589793 rad @@ -145614,15 +147081,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19964 + - uid: 21419 components: - type: Transform rot: 1.5707963267948966 rad @@ -145630,7 +147089,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19965 + - uid: 21420 components: - type: Transform rot: 1.5707963267948966 rad @@ -145638,42 +147097,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19966 + - uid: 21421 components: - type: Transform pos: -4.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19967 + - uid: 21422 components: - type: Transform pos: -4.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19968 + - uid: 21423 components: - type: Transform pos: -5.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19969 + - uid: 21424 components: - type: Transform pos: -5.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19970 + - uid: 21425 components: - type: Transform pos: -5.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19971 + - uid: 21426 components: - type: Transform rot: -1.5707963267948966 rad @@ -145681,7 +147140,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19972 + - uid: 21427 components: - type: Transform rot: -1.5707963267948966 rad @@ -145689,91 +147148,91 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19973 + - uid: 21428 components: - type: Transform pos: -0.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19974 + - uid: 21429 components: - type: Transform pos: -0.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19975 + - uid: 21430 components: - type: Transform pos: -0.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19976 + - uid: 21431 components: - type: Transform pos: -0.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19977 + - uid: 21432 components: - type: Transform pos: -0.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19978 + - uid: 21433 components: - type: Transform pos: -0.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19979 + - uid: 21434 components: - type: Transform pos: 1.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19980 + - uid: 21435 components: - type: Transform pos: 1.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19981 + - uid: 21436 components: - type: Transform pos: 1.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19982 + - uid: 21437 components: - type: Transform pos: 1.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19983 + - uid: 21438 components: - type: Transform pos: 1.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19984 + - uid: 21439 components: - type: Transform pos: 1.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19985 + - uid: 21440 components: - type: Transform rot: 1.5707963267948966 rad @@ -145781,7 +147240,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19986 + - uid: 21441 components: - type: Transform rot: 1.5707963267948966 rad @@ -145789,7 +147248,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19987 + - uid: 21442 components: - type: Transform rot: 1.5707963267948966 rad @@ -145797,7 +147256,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19988 + - uid: 21443 components: - type: Transform rot: 1.5707963267948966 rad @@ -145805,7 +147264,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19989 + - uid: 21444 components: - type: Transform rot: 1.5707963267948966 rad @@ -145813,7 +147272,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19990 + - uid: 21445 components: - type: Transform rot: 1.5707963267948966 rad @@ -145821,7 +147280,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19991 + - uid: 21446 components: - type: Transform rot: 1.5707963267948966 rad @@ -145829,7 +147288,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19992 + - uid: 21447 components: - type: Transform rot: 1.5707963267948966 rad @@ -145837,7 +147296,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19993 + - uid: 21448 components: - type: Transform rot: 1.5707963267948966 rad @@ -145845,7 +147304,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19994 + - uid: 21449 components: - type: Transform rot: 1.5707963267948966 rad @@ -145853,7 +147312,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19995 + - uid: 21450 components: - type: Transform rot: 1.5707963267948966 rad @@ -145861,7 +147320,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19996 + - uid: 21451 components: - type: Transform rot: 1.5707963267948966 rad @@ -145869,7 +147328,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19997 + - uid: 21452 components: - type: Transform rot: 1.5707963267948966 rad @@ -145877,7 +147336,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19998 + - uid: 21453 components: - type: Transform rot: 1.5707963267948966 rad @@ -145885,49 +147344,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19999 + - uid: 21454 components: - type: Transform pos: 1.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20000 + - uid: 21455 components: - type: Transform pos: 1.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20001 + - uid: 21456 components: - type: Transform pos: 1.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20002 + - uid: 21457 components: - type: Transform pos: -0.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20003 + - uid: 21458 components: - type: Transform pos: -0.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20004 + - uid: 21459 components: - type: Transform pos: -0.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20005 + - uid: 21460 components: - type: Transform rot: -1.5707963267948966 rad @@ -145935,15 +147394,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20007 + - uid: 21461 components: - type: Transform rot: -1.5707963267948966 rad @@ -145951,7 +147402,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20008 + - uid: 21462 components: - type: Transform rot: -1.5707963267948966 rad @@ -145959,7 +147410,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20009 + - uid: 21463 components: - type: Transform rot: -1.5707963267948966 rad @@ -145967,7 +147418,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20010 + - uid: 21464 components: - type: Transform rot: -1.5707963267948966 rad @@ -145975,7 +147426,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20011 + - uid: 21465 components: - type: Transform rot: -1.5707963267948966 rad @@ -145983,7 +147434,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20012 + - uid: 21466 components: - type: Transform rot: -1.5707963267948966 rad @@ -145991,15 +147442,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20014 + - uid: 21467 components: - type: Transform rot: -1.5707963267948966 rad @@ -146007,7 +147450,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20015 + - uid: 21468 components: - type: Transform rot: -1.5707963267948966 rad @@ -146015,7 +147458,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20016 + - uid: 21469 components: - type: Transform rot: -1.5707963267948966 rad @@ -146023,15 +147466,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20018 + - uid: 21470 components: - type: Transform rot: 3.141592653589793 rad @@ -146039,15 +147474,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20019 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20020 + - uid: 21471 components: - type: Transform rot: -1.5707963267948966 rad @@ -146055,7 +147482,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20021 + - uid: 21472 components: - type: Transform rot: -1.5707963267948966 rad @@ -146063,7 +147490,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20022 + - uid: 21473 components: - type: Transform rot: -1.5707963267948966 rad @@ -146071,7 +147498,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20023 + - uid: 21474 components: - type: Transform rot: -1.5707963267948966 rad @@ -146079,7 +147506,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20024 + - uid: 21475 components: - type: Transform rot: -1.5707963267948966 rad @@ -146087,7 +147514,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20025 + - uid: 21476 components: - type: Transform rot: -1.5707963267948966 rad @@ -146095,7 +147522,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20026 + - uid: 21477 components: - type: Transform rot: -1.5707963267948966 rad @@ -146103,7 +147530,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20027 + - uid: 21478 components: - type: Transform rot: -1.5707963267948966 rad @@ -146111,7 +147538,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20028 + - uid: 21479 components: - type: Transform rot: -1.5707963267948966 rad @@ -146119,7 +147546,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20029 + - uid: 21480 components: - type: Transform rot: -1.5707963267948966 rad @@ -146127,7 +147554,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20030 + - uid: 21481 components: - type: Transform rot: -1.5707963267948966 rad @@ -146135,7 +147562,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20031 + - uid: 21482 components: - type: Transform rot: 3.141592653589793 rad @@ -146143,7 +147570,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20032 + - uid: 21483 components: - type: Transform rot: 3.141592653589793 rad @@ -146151,15 +147578,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20033 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20034 + - uid: 21484 components: - type: Transform rot: 3.141592653589793 rad @@ -146167,7 +147586,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20035 + - uid: 21485 components: - type: Transform rot: 3.141592653589793 rad @@ -146175,7 +147594,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20036 + - uid: 21486 components: - type: Transform rot: 3.141592653589793 rad @@ -146183,7 +147602,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20037 + - uid: 21487 components: - type: Transform rot: 3.141592653589793 rad @@ -146191,15 +147610,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20038 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20039 + - uid: 21488 components: - type: Transform rot: 3.141592653589793 rad @@ -146207,7 +147618,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20040 + - uid: 21489 components: - type: Transform rot: 3.141592653589793 rad @@ -146215,7 +147626,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20041 + - uid: 21490 components: - type: Transform rot: 3.141592653589793 rad @@ -146223,7 +147634,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20042 + - uid: 21491 components: - type: Transform rot: 3.141592653589793 rad @@ -146231,7 +147642,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20043 + - uid: 21492 components: - type: Transform rot: 3.141592653589793 rad @@ -146239,7 +147650,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20044 + - uid: 21493 components: - type: Transform rot: 3.141592653589793 rad @@ -146247,113 +147658,105 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20046 + - uid: 21494 components: - type: Transform pos: 31.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20047 + - uid: 21495 components: - type: Transform pos: 31.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20048 + - uid: 21496 components: - type: Transform pos: 31.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20049 + - uid: 21497 components: - type: Transform pos: 31.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20050 + - uid: 21498 components: - type: Transform pos: 31.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20051 + - uid: 21499 components: - type: Transform pos: 31.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20052 + - uid: 21500 components: - type: Transform pos: 31.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20053 + - uid: 21501 components: - type: Transform pos: 33.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20054 + - uid: 21502 components: - type: Transform pos: 33.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20055 + - uid: 21503 components: - type: Transform pos: 33.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20056 + - uid: 21504 components: - type: Transform pos: 33.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20057 + - uid: 21505 components: - type: Transform pos: 33.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20058 + - uid: 21506 components: - type: Transform pos: 33.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20059 + - uid: 21507 components: - type: Transform pos: 33.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20060 + - uid: 21508 components: - type: Transform rot: 1.5707963267948966 rad @@ -146361,7 +147764,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20061 + - uid: 21509 components: - type: Transform rot: 1.5707963267948966 rad @@ -146369,7 +147772,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20062 + - uid: 21510 components: - type: Transform rot: 1.5707963267948966 rad @@ -146377,7 +147780,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20063 + - uid: 21511 components: - type: Transform rot: 1.5707963267948966 rad @@ -146385,49 +147788,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20064 + - uid: 21512 components: - type: Transform pos: 33.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20065 + - uid: 21513 components: - type: Transform pos: 33.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20066 + - uid: 21514 components: - type: Transform pos: 33.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20067 + - uid: 21515 components: - type: Transform pos: 33.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20068 + - uid: 21516 components: - type: Transform pos: 31.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20069 + - uid: 21517 components: - type: Transform pos: 31.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20070 + - uid: 21518 components: - type: Transform rot: 3.141592653589793 rad @@ -146435,7 +147838,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20071 + - uid: 21519 components: - type: Transform rot: 3.141592653589793 rad @@ -146443,7 +147846,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20072 + - uid: 21520 components: - type: Transform rot: 3.141592653589793 rad @@ -146451,7 +147854,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20073 + - uid: 21521 components: - type: Transform rot: 3.141592653589793 rad @@ -146459,7 +147862,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20074 + - uid: 21522 components: - type: Transform rot: 3.141592653589793 rad @@ -146467,7 +147870,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20075 + - uid: 21523 components: - type: Transform rot: 3.141592653589793 rad @@ -146475,7 +147878,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20076 + - uid: 21524 components: - type: Transform rot: 3.141592653589793 rad @@ -146483,7 +147886,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20077 + - uid: 21525 components: - type: Transform rot: 3.141592653589793 rad @@ -146491,7 +147894,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20078 + - uid: 21526 components: - type: Transform rot: 3.141592653589793 rad @@ -146499,7 +147902,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20079 + - uid: 21527 components: - type: Transform rot: 3.141592653589793 rad @@ -146507,7 +147910,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20080 + - uid: 21528 components: - type: Transform rot: 3.141592653589793 rad @@ -146515,7 +147918,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20081 + - uid: 21529 components: - type: Transform rot: 3.141592653589793 rad @@ -146523,7 +147926,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20082 + - uid: 21530 components: - type: Transform rot: 3.141592653589793 rad @@ -146531,7 +147934,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20083 + - uid: 21531 components: - type: Transform rot: 3.141592653589793 rad @@ -146539,7 +147942,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20084 + - uid: 21532 components: - type: Transform rot: 3.141592653589793 rad @@ -146547,7 +147950,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20085 + - uid: 21533 components: - type: Transform rot: 3.141592653589793 rad @@ -146555,7 +147958,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20086 + - uid: 21534 components: - type: Transform rot: 3.141592653589793 rad @@ -146563,7 +147966,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20087 + - uid: 21535 components: - type: Transform rot: 3.141592653589793 rad @@ -146571,7 +147974,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20088 + - uid: 21536 components: - type: Transform rot: 3.141592653589793 rad @@ -146579,7 +147982,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20089 + - uid: 21537 components: - type: Transform rot: 3.141592653589793 rad @@ -146587,7 +147990,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20090 + - uid: 21538 components: - type: Transform rot: 3.141592653589793 rad @@ -146595,7 +147998,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20091 + - uid: 21539 components: - type: Transform rot: 3.141592653589793 rad @@ -146603,7 +148006,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20092 + - uid: 21540 components: - type: Transform rot: 3.141592653589793 rad @@ -146611,7 +148014,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20093 + - uid: 21541 components: - type: Transform rot: 3.141592653589793 rad @@ -146619,7 +148022,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20094 + - uid: 21542 components: - type: Transform rot: 3.141592653589793 rad @@ -146627,7 +148030,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20095 + - uid: 21543 components: - type: Transform rot: 1.5707963267948966 rad @@ -146635,7 +148038,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20096 + - uid: 21544 components: - type: Transform rot: 1.5707963267948966 rad @@ -146643,7 +148046,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20097 + - uid: 21545 components: - type: Transform rot: 1.5707963267948966 rad @@ -146651,7 +148054,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20098 + - uid: 21546 components: - type: Transform rot: 1.5707963267948966 rad @@ -146659,7 +148062,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20099 + - uid: 21547 components: - type: Transform rot: 1.5707963267948966 rad @@ -146667,7 +148070,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20100 + - uid: 21548 components: - type: Transform rot: 1.5707963267948966 rad @@ -146675,7 +148078,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20101 + - uid: 21549 components: - type: Transform rot: 1.5707963267948966 rad @@ -146683,7 +148086,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20102 + - uid: 21550 components: - type: Transform rot: 1.5707963267948966 rad @@ -146691,7 +148094,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20103 + - uid: 21551 components: - type: Transform rot: 1.5707963267948966 rad @@ -146699,7 +148102,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20104 + - uid: 21552 components: - type: Transform rot: 1.5707963267948966 rad @@ -146707,14 +148110,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20105 + - uid: 21553 components: - type: Transform pos: 29.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20106 + - uid: 21554 components: - type: Transform rot: -1.5707963267948966 rad @@ -146722,7 +148125,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20107 + - uid: 21555 components: - type: Transform rot: -1.5707963267948966 rad @@ -146730,7 +148133,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20108 + - uid: 21556 components: - type: Transform rot: 1.5707963267948966 rad @@ -146738,7 +148141,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20109 + - uid: 21557 components: - type: Transform rot: 1.5707963267948966 rad @@ -146746,7 +148149,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20110 + - uid: 21558 components: - type: Transform rot: 1.5707963267948966 rad @@ -146754,7 +148157,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20111 + - uid: 21559 components: - type: Transform rot: 1.5707963267948966 rad @@ -146762,21 +148165,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20112 + - uid: 21560 components: - type: Transform pos: 33.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20113 + - uid: 21561 components: - type: Transform pos: 33.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20114 + - uid: 21562 components: - type: Transform rot: 1.5707963267948966 rad @@ -146784,7 +148187,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20115 + - uid: 21563 components: - type: Transform rot: 1.5707963267948966 rad @@ -146792,7 +148195,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20116 + - uid: 21564 components: - type: Transform rot: 1.5707963267948966 rad @@ -146800,7 +148203,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20117 + - uid: 21565 components: - type: Transform rot: 1.5707963267948966 rad @@ -146808,7 +148211,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20118 + - uid: 21566 components: - type: Transform rot: 1.5707963267948966 rad @@ -146816,28 +148219,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20119 + - uid: 21567 components: - type: Transform pos: 36.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20120 + - uid: 21568 components: - type: Transform pos: 36.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20121 + - uid: 21569 components: - type: Transform pos: 36.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20122 + - uid: 21570 components: - type: Transform rot: 3.141592653589793 rad @@ -146845,7 +148248,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20123 + - uid: 21571 components: - type: Transform rot: 3.141592653589793 rad @@ -146853,7 +148256,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20124 + - uid: 21572 components: - type: Transform rot: 3.141592653589793 rad @@ -146861,7 +148264,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20125 + - uid: 21573 components: - type: Transform rot: 1.5707963267948966 rad @@ -146869,7 +148272,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20126 + - uid: 21574 components: - type: Transform rot: 1.5707963267948966 rad @@ -146877,7 +148280,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20127 + - uid: 21575 components: - type: Transform rot: 1.5707963267948966 rad @@ -146885,7 +148288,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20128 + - uid: 21576 components: - type: Transform rot: 1.5707963267948966 rad @@ -146893,7 +148296,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20129 + - uid: 21577 components: - type: Transform rot: 1.5707963267948966 rad @@ -146901,7 +148304,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20130 + - uid: 21578 components: - type: Transform rot: 1.5707963267948966 rad @@ -146909,7 +148312,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20131 + - uid: 21579 components: - type: Transform rot: 1.5707963267948966 rad @@ -146917,7 +148320,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20132 + - uid: 21580 components: - type: Transform rot: 1.5707963267948966 rad @@ -146925,7 +148328,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20133 + - uid: 21581 components: - type: Transform rot: 1.5707963267948966 rad @@ -146933,7 +148336,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20134 + - uid: 21582 components: - type: Transform rot: 1.5707963267948966 rad @@ -146941,7 +148344,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20135 + - uid: 21583 components: - type: Transform rot: 1.5707963267948966 rad @@ -146949,7 +148352,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20136 + - uid: 21584 components: - type: Transform rot: 1.5707963267948966 rad @@ -146957,7 +148360,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20137 + - uid: 21585 components: - type: Transform rot: 1.5707963267948966 rad @@ -146965,7 +148368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20138 + - uid: 21586 components: - type: Transform rot: 1.5707963267948966 rad @@ -146973,7 +148376,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20139 + - uid: 21587 components: - type: Transform rot: 1.5707963267948966 rad @@ -146981,7 +148384,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20140 + - uid: 21588 components: - type: Transform rot: 1.5707963267948966 rad @@ -146989,7 +148392,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20141 + - uid: 21589 components: - type: Transform rot: 1.5707963267948966 rad @@ -146997,7 +148400,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20142 + - uid: 21590 components: - type: Transform rot: 1.5707963267948966 rad @@ -147005,7 +148408,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20143 + - uid: 21591 components: - type: Transform rot: 3.141592653589793 rad @@ -147013,7 +148416,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20144 + - uid: 21592 components: - type: Transform rot: 3.141592653589793 rad @@ -147021,7 +148424,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20145 + - uid: 21593 components: - type: Transform rot: 3.141592653589793 rad @@ -147029,7 +148432,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20146 + - uid: 21594 components: - type: Transform rot: 3.141592653589793 rad @@ -147037,7 +148440,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20147 + - uid: 21595 components: - type: Transform rot: 1.5707963267948966 rad @@ -147045,7 +148448,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20148 + - uid: 21596 components: - type: Transform rot: 1.5707963267948966 rad @@ -147053,7 +148456,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20149 + - uid: 21597 components: - type: Transform rot: 1.5707963267948966 rad @@ -147061,7 +148464,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20150 + - uid: 21598 components: - type: Transform rot: 1.5707963267948966 rad @@ -147069,7 +148472,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20151 + - uid: 21599 components: - type: Transform rot: 1.5707963267948966 rad @@ -147077,7 +148480,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20152 + - uid: 21600 components: - type: Transform rot: 1.5707963267948966 rad @@ -147085,7 +148488,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20153 + - uid: 21601 components: - type: Transform rot: 1.5707963267948966 rad @@ -147093,7 +148496,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20154 + - uid: 21602 components: - type: Transform rot: 1.5707963267948966 rad @@ -147101,7 +148504,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20155 + - uid: 21603 components: - type: Transform rot: 1.5707963267948966 rad @@ -147109,7 +148512,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20156 + - uid: 21604 components: - type: Transform rot: 1.5707963267948966 rad @@ -147117,7 +148520,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20157 + - uid: 21605 components: - type: Transform rot: 1.5707963267948966 rad @@ -147125,7 +148528,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20158 + - uid: 21606 components: - type: Transform rot: 1.5707963267948966 rad @@ -147133,7 +148536,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20159 + - uid: 21607 components: - type: Transform rot: 1.5707963267948966 rad @@ -147141,7 +148544,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20160 + - uid: 21608 components: - type: Transform rot: 1.5707963267948966 rad @@ -147149,7 +148552,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20161 + - uid: 21609 components: - type: Transform rot: 1.5707963267948966 rad @@ -147157,7 +148560,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20162 + - uid: 21610 components: - type: Transform rot: 1.5707963267948966 rad @@ -147165,7 +148568,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20163 + - uid: 21611 components: - type: Transform rot: 1.5707963267948966 rad @@ -147173,7 +148576,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20164 + - uid: 21612 components: - type: Transform rot: 1.5707963267948966 rad @@ -147181,7 +148584,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20165 + - uid: 21613 components: - type: Transform rot: 1.5707963267948966 rad @@ -147189,7 +148592,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20166 + - uid: 21614 components: - type: Transform rot: 1.5707963267948966 rad @@ -147197,7 +148600,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20167 + - uid: 21615 components: - type: Transform rot: 1.5707963267948966 rad @@ -147205,7 +148608,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20168 + - uid: 21616 components: - type: Transform rot: 3.141592653589793 rad @@ -147213,7 +148616,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20169 + - uid: 21617 components: - type: Transform rot: 3.141592653589793 rad @@ -147221,7 +148624,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20170 + - uid: 21618 components: - type: Transform rot: 3.141592653589793 rad @@ -147229,7 +148632,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20171 + - uid: 21619 components: - type: Transform rot: 1.5707963267948966 rad @@ -147237,7 +148640,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20172 + - uid: 21620 components: - type: Transform rot: 1.5707963267948966 rad @@ -147245,7 +148648,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20173 + - uid: 21621 components: - type: Transform rot: 1.5707963267948966 rad @@ -147253,7 +148656,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20174 + - uid: 21622 components: - type: Transform rot: 1.5707963267948966 rad @@ -147261,7 +148664,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20175 + - uid: 21623 components: - type: Transform rot: 1.5707963267948966 rad @@ -147269,7 +148672,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20176 + - uid: 21624 components: - type: Transform rot: 1.5707963267948966 rad @@ -147277,7 +148680,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20177 + - uid: 21625 components: - type: Transform rot: 1.5707963267948966 rad @@ -147285,7 +148688,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20178 + - uid: 21626 components: - type: Transform rot: 1.5707963267948966 rad @@ -147293,7 +148696,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20179 + - uid: 21627 components: - type: Transform rot: 1.5707963267948966 rad @@ -147301,7 +148704,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20180 + - uid: 21628 components: - type: Transform rot: 1.5707963267948966 rad @@ -147309,7 +148712,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20181 + - uid: 21629 components: - type: Transform rot: 1.5707963267948966 rad @@ -147317,7 +148720,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20182 + - uid: 21630 components: - type: Transform rot: 1.5707963267948966 rad @@ -147325,7 +148728,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20183 + - uid: 21631 components: - type: Transform rot: 1.5707963267948966 rad @@ -147333,7 +148736,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20184 + - uid: 21632 components: - type: Transform rot: 1.5707963267948966 rad @@ -147341,7 +148744,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20185 + - uid: 21633 components: - type: Transform rot: 1.5707963267948966 rad @@ -147349,7 +148752,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20186 + - uid: 21634 components: - type: Transform rot: 1.5707963267948966 rad @@ -147357,7 +148760,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20187 + - uid: 21635 components: - type: Transform rot: 1.5707963267948966 rad @@ -147365,14 +148768,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20188 + - uid: 21636 components: - type: Transform pos: -9.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20189 + - uid: 21637 components: - type: Transform rot: -1.5707963267948966 rad @@ -147380,7 +148783,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20190 + - uid: 21638 components: - type: Transform rot: -1.5707963267948966 rad @@ -147388,7 +148791,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20191 + - uid: 21639 components: - type: Transform rot: -1.5707963267948966 rad @@ -147396,7 +148799,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20192 + - uid: 21640 components: - type: Transform rot: -1.5707963267948966 rad @@ -147404,7 +148807,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20193 + - uid: 21641 components: - type: Transform rot: -1.5707963267948966 rad @@ -147412,7 +148815,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20194 + - uid: 21642 components: - type: Transform rot: -1.5707963267948966 rad @@ -147420,7 +148823,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20195 + - uid: 21643 components: - type: Transform rot: -1.5707963267948966 rad @@ -147428,15 +148831,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-71.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20197 + - uid: 21644 components: - type: Transform rot: -1.5707963267948966 rad @@ -147444,7 +148839,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20198 + - uid: 21645 components: - type: Transform rot: -1.5707963267948966 rad @@ -147452,7 +148847,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20199 + - uid: 21646 components: - type: Transform rot: -1.5707963267948966 rad @@ -147460,7 +148855,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20200 + - uid: 21647 components: - type: Transform rot: -1.5707963267948966 rad @@ -147468,7 +148863,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20201 + - uid: 21648 components: - type: Transform rot: -1.5707963267948966 rad @@ -147476,15 +148871,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20202 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-73.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20203 + - uid: 21649 components: - type: Transform rot: -1.5707963267948966 rad @@ -147492,7 +148879,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20204 + - uid: 21650 components: - type: Transform rot: -1.5707963267948966 rad @@ -147500,7 +148887,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20205 + - uid: 21651 components: - type: Transform rot: -1.5707963267948966 rad @@ -147508,7 +148895,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20206 + - uid: 21652 components: - type: Transform rot: -1.5707963267948966 rad @@ -147516,7 +148903,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20207 + - uid: 21653 components: - type: Transform rot: -1.5707963267948966 rad @@ -147524,7 +148911,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20208 + - uid: 21654 components: - type: Transform rot: -1.5707963267948966 rad @@ -147532,7 +148919,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20209 + - uid: 21655 components: - type: Transform rot: -1.5707963267948966 rad @@ -147540,7 +148927,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20210 + - uid: 21656 components: - type: Transform rot: -1.5707963267948966 rad @@ -147548,77 +148935,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20211 + - uid: 21657 components: - type: Transform pos: 1.5,-77.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20212 + - uid: 21658 components: - type: Transform pos: 1.5,-78.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20213 + - uid: 21659 components: - type: Transform pos: 1.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20214 + - uid: 21660 components: - type: Transform pos: 1.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20215 + - uid: 21661 components: - type: Transform pos: -0.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20216 + - uid: 21662 components: - type: Transform pos: -0.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20217 + - uid: 21663 components: - type: Transform pos: -0.5,-78.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20218 + - uid: 21664 components: - type: Transform pos: -0.5,-77.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20219 + - uid: 21665 components: - type: Transform pos: -0.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20220 + - uid: 21666 components: - type: Transform pos: -0.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20221 + - uid: 21667 components: - type: Transform rot: 1.5707963267948966 rad @@ -147626,7 +149013,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20222 + - uid: 21668 components: - type: Transform rot: 1.5707963267948966 rad @@ -147634,7 +149021,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20223 + - uid: 21669 components: - type: Transform rot: 1.5707963267948966 rad @@ -147642,7 +149029,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20224 + - uid: 21670 components: - type: Transform rot: 1.5707963267948966 rad @@ -147650,7 +149037,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20225 + - uid: 21671 components: - type: Transform rot: 1.5707963267948966 rad @@ -147658,7 +149045,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20226 + - uid: 21672 components: - type: Transform rot: 1.5707963267948966 rad @@ -147666,7 +149053,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20227 + - uid: 21673 components: - type: Transform rot: 1.5707963267948966 rad @@ -147674,7 +149061,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20228 + - uid: 21674 components: - type: Transform rot: 1.5707963267948966 rad @@ -147682,7 +149069,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20229 + - uid: 21675 components: - type: Transform rot: -1.5707963267948966 rad @@ -147690,7 +149077,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20230 + - uid: 21676 components: - type: Transform rot: -1.5707963267948966 rad @@ -147698,7 +149085,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20231 + - uid: 21677 components: - type: Transform rot: -1.5707963267948966 rad @@ -147706,7 +149093,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20232 + - uid: 21678 components: - type: Transform rot: -1.5707963267948966 rad @@ -147714,7 +149101,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20233 + - uid: 21679 components: - type: Transform rot: -1.5707963267948966 rad @@ -147722,7 +149109,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20234 + - uid: 21680 components: - type: Transform rot: -1.5707963267948966 rad @@ -147730,7 +149117,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20235 + - uid: 21681 components: - type: Transform rot: -1.5707963267948966 rad @@ -147738,7 +149125,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20236 + - uid: 21682 components: - type: Transform rot: -1.5707963267948966 rad @@ -147746,7 +149133,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20237 + - uid: 21683 components: - type: Transform rot: -1.5707963267948966 rad @@ -147754,7 +149141,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20238 + - uid: 21684 components: - type: Transform rot: -1.5707963267948966 rad @@ -147762,7 +149149,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20239 + - uid: 21685 components: - type: Transform rot: 3.141592653589793 rad @@ -147770,7 +149157,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20240 + - uid: 21686 components: - type: Transform rot: 3.141592653589793 rad @@ -147778,7 +149165,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20241 + - uid: 21687 components: - type: Transform rot: 3.141592653589793 rad @@ -147786,7 +149173,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20242 + - uid: 21688 components: - type: Transform rot: 3.141592653589793 rad @@ -147794,7 +149181,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20243 + - uid: 21689 components: - type: Transform rot: 3.141592653589793 rad @@ -147802,7 +149189,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20244 + - uid: 21690 components: - type: Transform rot: 3.141592653589793 rad @@ -147810,7 +149197,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20245 + - uid: 21691 components: - type: Transform rot: -1.5707963267948966 rad @@ -147818,7 +149205,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20246 + - uid: 21692 components: - type: Transform rot: -1.5707963267948966 rad @@ -147826,7 +149213,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20247 + - uid: 21693 components: - type: Transform rot: -1.5707963267948966 rad @@ -147834,7 +149221,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20248 + - uid: 21694 components: - type: Transform rot: 3.141592653589793 rad @@ -147842,7 +149229,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20249 + - uid: 21695 components: - type: Transform rot: 3.141592653589793 rad @@ -147850,7 +149237,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20250 + - uid: 21696 components: - type: Transform rot: 1.5707963267948966 rad @@ -147858,7 +149245,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20251 + - uid: 21697 components: - type: Transform rot: 1.5707963267948966 rad @@ -147866,7 +149253,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20252 + - uid: 21698 components: - type: Transform rot: 1.5707963267948966 rad @@ -147874,7 +149261,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20253 + - uid: 21699 components: - type: Transform rot: 1.5707963267948966 rad @@ -147882,7 +149269,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20254 + - uid: 21700 components: - type: Transform rot: 1.5707963267948966 rad @@ -147890,7 +149277,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20255 + - uid: 21701 components: - type: Transform rot: 1.5707963267948966 rad @@ -147898,7 +149285,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20256 + - uid: 21702 components: - type: Transform rot: 1.5707963267948966 rad @@ -147906,7 +149293,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20257 + - uid: 21703 components: - type: Transform rot: 1.5707963267948966 rad @@ -147914,7 +149301,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20258 + - uid: 21704 components: - type: Transform rot: 1.5707963267948966 rad @@ -147922,7 +149309,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20259 + - uid: 21705 components: - type: Transform rot: 1.5707963267948966 rad @@ -147930,7 +149317,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20260 + - uid: 21706 components: - type: Transform rot: 1.5707963267948966 rad @@ -147938,7 +149325,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20261 + - uid: 21707 components: - type: Transform rot: 1.5707963267948966 rad @@ -147946,7 +149333,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20262 + - uid: 21708 components: - type: Transform rot: 1.5707963267948966 rad @@ -147954,7 +149341,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20263 + - uid: 21709 components: - type: Transform rot: 1.5707963267948966 rad @@ -147962,7 +149349,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20264 + - uid: 21710 components: - type: Transform rot: 1.5707963267948966 rad @@ -147970,7 +149357,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20265 + - uid: 21711 components: - type: Transform rot: 1.5707963267948966 rad @@ -147978,98 +149365,98 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20266 + - uid: 21712 components: - type: Transform pos: -8.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20267 + - uid: 21713 components: - type: Transform pos: -8.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20268 + - uid: 21714 components: - type: Transform pos: -8.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20269 + - uid: 21715 components: - type: Transform pos: -8.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20270 + - uid: 21716 components: - type: Transform pos: -8.5,-91.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20271 + - uid: 21717 components: - type: Transform pos: -8.5,-92.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20272 + - uid: 21718 components: - type: Transform pos: -8.5,-93.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20273 + - uid: 21719 components: - type: Transform pos: -6.5,-93.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20274 + - uid: 21720 components: - type: Transform pos: -6.5,-92.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20275 + - uid: 21721 components: - type: Transform pos: -6.5,-91.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20276 + - uid: 21722 components: - type: Transform pos: -6.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20277 + - uid: 21723 components: - type: Transform pos: -6.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20278 + - uid: 21724 components: - type: Transform pos: -6.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20279 + - uid: 21725 components: - type: Transform rot: 1.5707963267948966 rad @@ -148077,7 +149464,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20280 + - uid: 21726 components: - type: Transform rot: 1.5707963267948966 rad @@ -148085,21 +149472,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20281 + - uid: 21727 components: - type: Transform pos: -0.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20282 + - uid: 21728 components: - type: Transform pos: -0.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20283 + - uid: 21729 components: - type: Transform rot: -1.5707963267948966 rad @@ -148107,7 +149494,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20284 + - uid: 21730 components: - type: Transform rot: -1.5707963267948966 rad @@ -148115,7 +149502,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20285 + - uid: 21731 components: - type: Transform rot: -1.5707963267948966 rad @@ -148123,7 +149510,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20286 + - uid: 21732 components: - type: Transform rot: -1.5707963267948966 rad @@ -148131,7 +149518,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20287 + - uid: 21733 components: - type: Transform rot: 3.141592653589793 rad @@ -148139,7 +149526,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20288 + - uid: 21734 components: - type: Transform rot: 3.141592653589793 rad @@ -148147,7 +149534,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20289 + - uid: 21735 components: - type: Transform rot: 3.141592653589793 rad @@ -148155,7 +149542,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20290 + - uid: 21736 components: - type: Transform rot: 3.141592653589793 rad @@ -148163,7 +149550,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20291 + - uid: 21737 components: - type: Transform rot: 3.141592653589793 rad @@ -148171,7 +149558,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20292 + - uid: 21738 components: - type: Transform rot: 3.141592653589793 rad @@ -148179,7 +149566,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20293 + - uid: 21739 components: - type: Transform rot: 3.141592653589793 rad @@ -148187,7 +149574,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20294 + - uid: 21740 components: - type: Transform rot: 3.141592653589793 rad @@ -148195,7 +149582,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20295 + - uid: 21741 components: - type: Transform rot: 3.141592653589793 rad @@ -148203,7 +149590,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20296 + - uid: 21742 components: - type: Transform rot: 1.5707963267948966 rad @@ -148211,7 +149598,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20297 + - uid: 21743 components: - type: Transform rot: 1.5707963267948966 rad @@ -148219,7 +149606,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20298 + - uid: 21744 components: - type: Transform rot: 1.5707963267948966 rad @@ -148227,7 +149614,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20299 + - uid: 21745 components: - type: Transform rot: 1.5707963267948966 rad @@ -148235,7 +149622,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20300 + - uid: 21746 components: - type: Transform rot: 1.5707963267948966 rad @@ -148243,35 +149630,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20301 + - uid: 21747 components: - type: Transform pos: -1.5,-91.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20302 + - uid: 21748 components: - type: Transform pos: -1.5,-92.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20303 + - uid: 21749 components: - type: Transform pos: -1.5,-93.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20304 + - uid: 21750 components: - type: Transform pos: -1.5,-94.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20305 + - uid: 21751 components: - type: Transform rot: -1.5707963267948966 rad @@ -148279,7 +149666,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20306 + - uid: 21752 components: - type: Transform rot: -1.5707963267948966 rad @@ -148287,7 +149674,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20307 + - uid: 21753 components: - type: Transform rot: -1.5707963267948966 rad @@ -148295,7 +149682,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20308 + - uid: 21754 components: - type: Transform rot: -1.5707963267948966 rad @@ -148303,7 +149690,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20309 + - uid: 21755 components: - type: Transform rot: -1.5707963267948966 rad @@ -148311,7 +149698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20310 + - uid: 21756 components: - type: Transform rot: 3.141592653589793 rad @@ -148319,14 +149706,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20311 + - uid: 21757 components: - type: Transform pos: -25.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20312 + - uid: 21758 components: - type: Transform rot: -1.5707963267948966 rad @@ -148334,7 +149721,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20313 + - uid: 21759 components: - type: Transform rot: -1.5707963267948966 rad @@ -148342,7 +149729,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20314 + - uid: 21760 components: - type: Transform rot: -1.5707963267948966 rad @@ -148350,15 +149737,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20315 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-69.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20316 + - uid: 21761 components: - type: Transform rot: 1.5707963267948966 rad @@ -148366,7 +149745,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20317 + - uid: 21762 components: - type: Transform rot: 1.5707963267948966 rad @@ -148374,15 +149753,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-70.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20319 + - uid: 21763 components: - type: Transform rot: 3.141592653589793 rad @@ -148390,7 +149761,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20320 + - uid: 21764 components: - type: Transform rot: 3.141592653589793 rad @@ -148398,7 +149769,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20321 + - uid: 21765 components: - type: Transform rot: 3.141592653589793 rad @@ -148406,98 +149777,98 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20322 + - uid: 21766 components: - type: Transform pos: -23.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20323 + - uid: 21767 components: - type: Transform pos: -23.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20324 + - uid: 21768 components: - type: Transform pos: -23.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20325 + - uid: 21769 components: - type: Transform pos: -23.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20326 + - uid: 21770 components: - type: Transform pos: -23.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20327 + - uid: 21771 components: - type: Transform pos: -23.5,-77.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20328 + - uid: 21772 components: - type: Transform pos: -23.5,-78.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20329 + - uid: 21773 components: - type: Transform pos: -23.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20330 + - uid: 21774 components: - type: Transform pos: -25.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20331 + - uid: 21775 components: - type: Transform pos: -25.5,-75.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20332 + - uid: 21776 components: - type: Transform pos: -25.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20333 + - uid: 21777 components: - type: Transform pos: -25.5,-78.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20334 + - uid: 21778 components: - type: Transform pos: -25.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20335 + - uid: 21779 components: - type: Transform rot: 3.141592653589793 rad @@ -148505,7 +149876,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20336 + - uid: 21780 components: - type: Transform rot: 1.5707963267948966 rad @@ -148513,7 +149884,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20337 + - uid: 21781 components: - type: Transform rot: 1.5707963267948966 rad @@ -148521,7 +149892,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20338 + - uid: 21782 components: - type: Transform rot: 1.5707963267948966 rad @@ -148529,7 +149900,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20339 + - uid: 21783 components: - type: Transform rot: 1.5707963267948966 rad @@ -148537,7 +149908,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20340 + - uid: 21784 components: - type: Transform rot: 1.5707963267948966 rad @@ -148545,7 +149916,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20341 + - uid: 21785 components: - type: Transform rot: 1.5707963267948966 rad @@ -148553,7 +149924,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20342 + - uid: 21786 components: - type: Transform rot: 1.5707963267948966 rad @@ -148561,14 +149932,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20343 + - uid: 21787 components: - type: Transform pos: -25.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20344 + - uid: 21788 components: - type: Transform rot: 1.5707963267948966 rad @@ -148576,7 +149947,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20345 + - uid: 21789 components: - type: Transform rot: 1.5707963267948966 rad @@ -148584,7 +149955,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20346 + - uid: 21790 components: - type: Transform rot: 1.5707963267948966 rad @@ -148592,7 +149963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20347 + - uid: 21791 components: - type: Transform rot: 1.5707963267948966 rad @@ -148600,7 +149971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20348 + - uid: 21792 components: - type: Transform rot: 1.5707963267948966 rad @@ -148608,7 +149979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20349 + - uid: 21793 components: - type: Transform rot: 1.5707963267948966 rad @@ -148616,7 +149987,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20350 + - uid: 21794 components: - type: Transform rot: 1.5707963267948966 rad @@ -148624,7 +149995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20351 + - uid: 21795 components: - type: Transform rot: 1.5707963267948966 rad @@ -148632,7 +150003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20352 + - uid: 21796 components: - type: Transform rot: 1.5707963267948966 rad @@ -148640,7 +150011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20353 + - uid: 21797 components: - type: Transform rot: 1.5707963267948966 rad @@ -148648,7 +150019,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20354 + - uid: 21798 components: - type: Transform rot: 1.5707963267948966 rad @@ -148656,197 +150027,189 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20355 + - uid: 21799 components: - type: Transform pos: -32.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20356 + - uid: 21800 components: - type: Transform pos: -32.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20357 + - uid: 21801 components: - type: Transform pos: -32.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20358 + - uid: 21802 components: - type: Transform pos: -32.5,-84.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20359 + - uid: 21803 components: - type: Transform pos: -32.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20360 + - uid: 21804 components: - type: Transform pos: -32.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20361 + - uid: 21805 components: - type: Transform pos: -32.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20362 + - uid: 21806 components: - type: Transform pos: -32.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20363 + - uid: 21807 components: - type: Transform pos: -32.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20364 + - uid: 21808 components: - type: Transform pos: -31.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20365 + - uid: 21809 components: - type: Transform pos: -31.5,-84.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20366 + - uid: 21810 components: - type: Transform pos: -31.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20367 + - uid: 21811 components: - type: Transform pos: -31.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20368 + - uid: 21812 components: - type: Transform pos: -31.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20369 + - uid: 21813 components: - type: Transform pos: -31.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20370 + - uid: 21814 components: - type: Transform pos: -31.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20371 + - uid: 21815 components: - type: Transform pos: -31.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20372 + - uid: 21816 components: - type: Transform pos: -32.5,-92.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20373 + - uid: 21817 components: - type: Transform pos: -32.5,-91.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20374 + - uid: 21818 components: - type: Transform pos: -31.5,-91.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-72.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20376 + - uid: 21819 components: - type: Transform pos: -27.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20377 + - uid: 21820 components: - type: Transform pos: -27.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20378 + - uid: 21821 components: - type: Transform pos: -28.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20379 + - uid: 21822 components: - type: Transform pos: -28.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20380 + - uid: 21823 components: - type: Transform pos: -27.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20381 + - uid: 21824 components: - type: Transform pos: -27.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20382 + - uid: 21825 components: - type: Transform rot: -1.5707963267948966 rad @@ -148854,147 +150217,147 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20383 + - uid: 21826 components: - type: Transform pos: -27.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20384 + - uid: 21827 components: - type: Transform pos: -27.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20385 + - uid: 21828 components: - type: Transform pos: -27.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20386 + - uid: 21829 components: - type: Transform pos: -27.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20387 + - uid: 21830 components: - type: Transform pos: -27.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20388 + - uid: 21831 components: - type: Transform pos: -27.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20389 + - uid: 21832 components: - type: Transform pos: -27.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20390 + - uid: 21833 components: - type: Transform pos: -27.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20391 + - uid: 21834 components: - type: Transform pos: -27.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20392 + - uid: 21835 components: - type: Transform pos: -27.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20393 + - uid: 21836 components: - type: Transform pos: -29.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20394 + - uid: 21837 components: - type: Transform pos: -29.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20395 + - uid: 21838 components: - type: Transform pos: -29.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20396 + - uid: 21839 components: - type: Transform pos: -29.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20397 + - uid: 21840 components: - type: Transform pos: -29.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20398 + - uid: 21841 components: - type: Transform pos: -29.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20399 + - uid: 21842 components: - type: Transform pos: -29.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20400 + - uid: 21843 components: - type: Transform pos: -29.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20401 + - uid: 21844 components: - type: Transform pos: -29.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20402 + - uid: 21845 components: - type: Transform pos: -29.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20403 + - uid: 21846 components: - type: Transform rot: 1.5707963267948966 rad @@ -149002,7 +150365,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20404 + - uid: 21847 components: - type: Transform rot: -1.5707963267948966 rad @@ -149010,15 +150373,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20406 + - uid: 21848 components: - type: Transform rot: 1.5707963267948966 rad @@ -149026,35 +150381,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20407 + - uid: 21849 components: - type: Transform pos: -27.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20408 + - uid: 21850 components: - type: Transform pos: -27.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20409 + - uid: 21851 components: - type: Transform pos: -30.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20410 - components: - - type: Transform - pos: -30.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20411 + - uid: 21852 components: - type: Transform rot: 3.141592653589793 rad @@ -149062,7 +150410,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20412 + - uid: 21853 components: - type: Transform rot: 3.141592653589793 rad @@ -149070,7 +150418,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20413 + - uid: 21854 components: - type: Transform rot: 3.141592653589793 rad @@ -149078,7 +150426,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20414 + - uid: 21855 components: - type: Transform rot: 3.141592653589793 rad @@ -149086,7 +150434,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20415 + - uid: 21856 components: - type: Transform rot: 3.141592653589793 rad @@ -149094,7 +150442,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20416 + - uid: 21857 components: - type: Transform rot: 3.141592653589793 rad @@ -149102,7 +150450,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20417 + - uid: 21858 components: - type: Transform rot: 3.141592653589793 rad @@ -149110,7 +150458,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20418 + - uid: 21859 components: - type: Transform rot: 3.141592653589793 rad @@ -149118,7 +150466,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20419 + - uid: 21860 components: - type: Transform rot: 3.141592653589793 rad @@ -149126,7 +150474,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20420 + - uid: 21861 components: - type: Transform rot: 3.141592653589793 rad @@ -149134,7 +150482,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20421 + - uid: 21862 components: - type: Transform rot: 3.141592653589793 rad @@ -149142,7 +150490,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20422 + - uid: 21863 components: - type: Transform rot: 3.141592653589793 rad @@ -149150,7 +150498,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20423 + - uid: 21864 components: - type: Transform rot: 3.141592653589793 rad @@ -149158,7 +150506,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20424 + - uid: 21865 components: - type: Transform rot: 3.141592653589793 rad @@ -149166,7 +150514,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20425 + - uid: 21866 components: - type: Transform rot: 3.141592653589793 rad @@ -149174,7 +150522,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20426 + - uid: 21867 components: - type: Transform rot: -1.5707963267948966 rad @@ -149182,7 +150530,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20427 + - uid: 21868 components: - type: Transform rot: -1.5707963267948966 rad @@ -149190,7 +150538,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20428 + - uid: 21869 components: - type: Transform rot: -1.5707963267948966 rad @@ -149198,7 +150546,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20429 + - uid: 21870 components: - type: Transform rot: -1.5707963267948966 rad @@ -149206,7 +150554,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20430 + - uid: 21871 components: - type: Transform rot: -1.5707963267948966 rad @@ -149214,7 +150562,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20431 + - uid: 21872 components: - type: Transform rot: 3.141592653589793 rad @@ -149222,7 +150570,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20432 + - uid: 21873 components: - type: Transform rot: 3.141592653589793 rad @@ -149230,7 +150578,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20433 + - uid: 21874 components: - type: Transform rot: 3.141592653589793 rad @@ -149238,7 +150586,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20434 + - uid: 21875 components: - type: Transform rot: 3.141592653589793 rad @@ -149246,7 +150594,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20435 + - uid: 21876 components: - type: Transform rot: 3.141592653589793 rad @@ -149254,7 +150602,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20436 + - uid: 21877 components: - type: Transform rot: 3.141592653589793 rad @@ -149262,7 +150610,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20437 + - uid: 21878 components: - type: Transform rot: 3.141592653589793 rad @@ -149270,7 +150618,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20438 + - uid: 21879 components: - type: Transform rot: 3.141592653589793 rad @@ -149278,7 +150626,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20439 + - uid: 21880 components: - type: Transform rot: 3.141592653589793 rad @@ -149286,7 +150634,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20440 + - uid: 21881 components: - type: Transform rot: 3.141592653589793 rad @@ -149294,7 +150642,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20441 + - uid: 21882 components: - type: Transform rot: 3.141592653589793 rad @@ -149302,7 +150650,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20442 + - uid: 21883 components: - type: Transform rot: 3.141592653589793 rad @@ -149310,7 +150658,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20443 + - uid: 21884 components: - type: Transform rot: 3.141592653589793 rad @@ -149318,7 +150666,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20444 + - uid: 21885 components: - type: Transform rot: 3.141592653589793 rad @@ -149326,7 +150674,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20445 + - uid: 21886 components: - type: Transform rot: 3.141592653589793 rad @@ -149334,7 +150682,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20446 + - uid: 21887 components: - type: Transform rot: 3.141592653589793 rad @@ -149342,7 +150690,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20447 + - uid: 21888 components: - type: Transform rot: 3.141592653589793 rad @@ -149350,7 +150698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20448 + - uid: 21889 components: - type: Transform rot: 3.141592653589793 rad @@ -149358,7 +150706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20449 + - uid: 21890 components: - type: Transform rot: 3.141592653589793 rad @@ -149366,7 +150714,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20450 + - uid: 21891 components: - type: Transform rot: 3.141592653589793 rad @@ -149374,7 +150722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20451 + - uid: 21892 components: - type: Transform rot: 1.5707963267948966 rad @@ -149382,7 +150730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20452 + - uid: 21893 components: - type: Transform rot: 1.5707963267948966 rad @@ -149390,7 +150738,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20453 + - uid: 21894 components: - type: Transform rot: 1.5707963267948966 rad @@ -149398,7 +150746,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20454 + - uid: 21895 components: - type: Transform rot: 1.5707963267948966 rad @@ -149406,287 +150754,259 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20455 + - uid: 21896 components: - type: Transform pos: -27.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20456 + - uid: 21897 components: - type: Transform pos: -27.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20457 + - uid: 21898 components: - type: Transform pos: -27.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20458 + - uid: 21899 components: - type: Transform pos: -27.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20459 + - uid: 21900 components: - type: Transform pos: -27.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20460 + - uid: 21901 components: - type: Transform pos: -27.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20461 + - uid: 21902 components: - type: Transform pos: -27.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20462 - components: - - type: Transform - pos: -27.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20463 + - uid: 21903 components: - type: Transform pos: -27.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20464 + - uid: 21904 components: - type: Transform pos: -27.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20465 + - uid: 21905 components: - type: Transform pos: -27.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20466 + - uid: 21906 components: - type: Transform pos: -27.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20467 + - uid: 21907 components: - type: Transform pos: -27.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20468 + - uid: 21908 components: - type: Transform pos: -27.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20469 + - uid: 21909 components: - type: Transform pos: -27.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20470 + - uid: 21910 components: - type: Transform pos: -27.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20471 + - uid: 21911 components: - type: Transform pos: -27.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20472 + - uid: 21912 components: - type: Transform pos: -27.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20473 - components: - - type: Transform - pos: -27.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20474 + - uid: 21913 components: - type: Transform pos: -27.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20475 + - uid: 21914 components: - type: Transform pos: -27.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20476 + - uid: 21915 components: - type: Transform pos: -29.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20477 + - uid: 21916 components: - type: Transform pos: -29.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20478 + - uid: 21917 components: - type: Transform pos: -29.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20479 + - uid: 21918 components: - type: Transform pos: -29.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20480 - components: - - type: Transform - pos: -29.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20481 + - uid: 21919 components: - type: Transform pos: -29.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20482 + - uid: 21920 components: - type: Transform pos: -29.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20483 + - uid: 21921 components: - type: Transform pos: -29.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20484 + - uid: 21922 components: - type: Transform pos: -29.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20485 + - uid: 21923 components: - type: Transform pos: -29.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20486 + - uid: 21924 components: - type: Transform pos: -29.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20487 + - uid: 21925 components: - type: Transform pos: -29.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20488 + - uid: 21926 components: - type: Transform pos: -29.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20489 + - uid: 21927 components: - type: Transform pos: -29.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20490 + - uid: 21928 components: - type: Transform pos: -29.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20491 - components: - - type: Transform - pos: -29.5,-27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20492 + - uid: 21929 components: - type: Transform pos: -29.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20493 + - uid: 21930 components: - type: Transform pos: -29.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20494 + - uid: 21931 components: - type: Transform pos: -29.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20495 + - uid: 21932 components: - type: Transform rot: -1.5707963267948966 rad @@ -149694,7 +151014,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20496 + - uid: 21933 components: - type: Transform rot: -1.5707963267948966 rad @@ -149702,15 +151022,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20498 + - uid: 21934 components: - type: Transform rot: -1.5707963267948966 rad @@ -149718,7 +151030,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20499 + - uid: 21935 components: - type: Transform rot: -1.5707963267948966 rad @@ -149726,7 +151038,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20500 + - uid: 21936 components: - type: Transform rot: -1.5707963267948966 rad @@ -149734,7 +151046,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20501 + - uid: 21937 components: - type: Transform rot: -1.5707963267948966 rad @@ -149742,7 +151054,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20502 + - uid: 21938 components: - type: Transform rot: -1.5707963267948966 rad @@ -149750,7 +151062,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20503 + - uid: 21939 components: - type: Transform rot: -1.5707963267948966 rad @@ -149758,7 +151070,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20504 + - uid: 21940 components: - type: Transform rot: -1.5707963267948966 rad @@ -149766,7 +151078,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20505 + - uid: 21941 components: - type: Transform rot: -1.5707963267948966 rad @@ -149774,7 +151086,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20506 + - uid: 21942 components: - type: Transform rot: -1.5707963267948966 rad @@ -149782,7 +151094,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20507 + - uid: 21943 components: - type: Transform rot: -1.5707963267948966 rad @@ -149790,7 +151102,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20508 + - uid: 21944 components: - type: Transform rot: -1.5707963267948966 rad @@ -149798,7 +151110,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20509 + - uid: 21945 components: - type: Transform rot: -1.5707963267948966 rad @@ -149806,7 +151118,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20510 + - uid: 21946 components: - type: Transform rot: -1.5707963267948966 rad @@ -149814,7 +151126,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20511 + - uid: 21947 components: - type: Transform rot: -1.5707963267948966 rad @@ -149822,7 +151134,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20512 + - uid: 21948 components: - type: Transform rot: -1.5707963267948966 rad @@ -149830,15 +151142,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20514 + - uid: 21949 components: - type: Transform rot: 3.141592653589793 rad @@ -149846,7 +151150,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20515 + - uid: 21950 components: - type: Transform rot: 3.141592653589793 rad @@ -149854,7 +151158,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20516 + - uid: 21951 components: - type: Transform rot: 3.141592653589793 rad @@ -149862,7 +151166,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20517 + - uid: 21952 components: - type: Transform rot: 3.141592653589793 rad @@ -149870,7 +151174,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20518 + - uid: 21953 components: - type: Transform rot: 3.141592653589793 rad @@ -149878,7 +151182,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20519 + - uid: 21954 components: - type: Transform rot: 1.5707963267948966 rad @@ -149886,7 +151190,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20520 + - uid: 21955 components: - type: Transform rot: 1.5707963267948966 rad @@ -149894,7 +151198,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20521 + - uid: 21956 components: - type: Transform rot: 1.5707963267948966 rad @@ -149902,21 +151206,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20522 + - uid: 21957 components: - type: Transform pos: -21.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20523 + - uid: 21958 components: - type: Transform pos: -21.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20524 + - uid: 21959 components: - type: Transform rot: -1.5707963267948966 rad @@ -149924,7 +151228,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20525 + - uid: 21960 components: - type: Transform rot: -1.5707963267948966 rad @@ -149932,7 +151236,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20526 + - uid: 21961 components: - type: Transform rot: -1.5707963267948966 rad @@ -149940,7 +151244,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20527 + - uid: 21962 components: - type: Transform rot: -1.5707963267948966 rad @@ -149948,23 +151252,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20530 + - uid: 21963 components: - type: Transform rot: -1.5707963267948966 rad @@ -149972,15 +151260,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20532 + - uid: 21964 components: - type: Transform rot: -1.5707963267948966 rad @@ -149988,7 +151268,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20533 + - uid: 21965 components: - type: Transform rot: -1.5707963267948966 rad @@ -149996,15 +151276,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20535 + - uid: 21966 components: - type: Transform rot: 3.141592653589793 rad @@ -150012,7 +151284,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20536 + - uid: 21967 components: - type: Transform rot: 3.141592653589793 rad @@ -150020,7 +151292,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20537 + - uid: 21968 components: - type: Transform rot: 1.5707963267948966 rad @@ -150028,7 +151300,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20538 + - uid: 21969 components: - type: Transform rot: 1.5707963267948966 rad @@ -150036,14 +151308,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20539 + - uid: 21970 components: - type: Transform pos: -13.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20540 + - uid: 21971 components: - type: Transform rot: -1.5707963267948966 rad @@ -150051,7 +151323,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20541 + - uid: 21972 components: - type: Transform rot: 3.141592653589793 rad @@ -150059,7 +151331,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20542 + - uid: 21973 components: - type: Transform rot: 3.141592653589793 rad @@ -150067,7 +151339,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20543 + - uid: 21974 components: - type: Transform rot: 3.141592653589793 rad @@ -150075,7 +151347,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20544 + - uid: 21975 components: - type: Transform rot: 1.5707963267948966 rad @@ -150083,15 +151355,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20546 + - uid: 21976 components: - type: Transform rot: 1.5707963267948966 rad @@ -150099,7 +151363,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20547 + - uid: 21977 components: - type: Transform rot: 1.5707963267948966 rad @@ -150107,15 +151371,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20548 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20549 + - uid: 21978 components: - type: Transform rot: 1.5707963267948966 rad @@ -150123,7 +151379,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20550 + - uid: 21979 components: - type: Transform rot: 1.5707963267948966 rad @@ -150131,7 +151387,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20551 + - uid: 21980 components: - type: Transform rot: 1.5707963267948966 rad @@ -150139,70 +151395,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20552 + - uid: 21981 components: - type: Transform pos: -25.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20553 + - uid: 21982 components: - type: Transform pos: -25.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20554 + - uid: 21983 components: - type: Transform pos: -25.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20555 + - uid: 21984 components: - type: Transform pos: -25.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20556 + - uid: 21985 components: - type: Transform pos: -25.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20557 + - uid: 21986 components: - type: Transform pos: -26.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20558 + - uid: 21987 components: - type: Transform pos: -26.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20559 + - uid: 21988 components: - type: Transform pos: -25.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20560 + - uid: 21989 components: - type: Transform pos: -25.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20561 + - uid: 21990 components: - type: Transform rot: -1.5707963267948966 rad @@ -150210,7 +151466,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20562 + - uid: 21991 components: - type: Transform rot: -1.5707963267948966 rad @@ -150218,7 +151474,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20563 + - uid: 21992 components: - type: Transform rot: -1.5707963267948966 rad @@ -150226,7 +151482,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20564 + - uid: 21993 components: - type: Transform rot: -1.5707963267948966 rad @@ -150234,7 +151490,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20565 + - uid: 21994 components: - type: Transform rot: -1.5707963267948966 rad @@ -150242,7 +151498,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20566 + - uid: 21995 components: - type: Transform rot: -1.5707963267948966 rad @@ -150250,7 +151506,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20567 + - uid: 21996 components: - type: Transform rot: 3.141592653589793 rad @@ -150258,7 +151514,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20568 + - uid: 21997 components: - type: Transform rot: 3.141592653589793 rad @@ -150266,7 +151522,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20569 + - uid: 21998 components: - type: Transform rot: 3.141592653589793 rad @@ -150274,7 +151530,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20570 + - uid: 21999 components: - type: Transform rot: 3.141592653589793 rad @@ -150282,7 +151538,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20571 + - uid: 22000 components: - type: Transform rot: 3.141592653589793 rad @@ -150290,7 +151546,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20572 + - uid: 22001 components: - type: Transform rot: 3.141592653589793 rad @@ -150298,7 +151554,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20573 + - uid: 22002 components: - type: Transform rot: 3.141592653589793 rad @@ -150306,7 +151562,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20574 + - uid: 22003 components: - type: Transform rot: 3.141592653589793 rad @@ -150314,7 +151570,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20575 + - uid: 22004 components: - type: Transform rot: 3.141592653589793 rad @@ -150322,7 +151578,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20576 + - uid: 22005 components: - type: Transform rot: 3.141592653589793 rad @@ -150330,7 +151586,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20577 + - uid: 22006 components: - type: Transform rot: 3.141592653589793 rad @@ -150338,7 +151594,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20578 + - uid: 22007 components: - type: Transform rot: 3.141592653589793 rad @@ -150346,7 +151602,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20579 + - uid: 22008 components: - type: Transform rot: 3.141592653589793 rad @@ -150354,7 +151610,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20580 + - uid: 22009 components: - type: Transform rot: 3.141592653589793 rad @@ -150362,7 +151618,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20581 + - uid: 22010 components: - type: Transform rot: 3.141592653589793 rad @@ -150370,7 +151626,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20582 + - uid: 22011 components: - type: Transform rot: -1.5707963267948966 rad @@ -150378,7 +151634,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20583 + - uid: 22012 components: - type: Transform rot: 3.141592653589793 rad @@ -150386,7 +151642,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20584 + - uid: 22013 components: - type: Transform rot: 3.141592653589793 rad @@ -150394,7 +151650,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20585 + - uid: 22014 components: - type: Transform rot: 3.141592653589793 rad @@ -150402,7 +151658,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20586 + - uid: 22015 components: - type: Transform rot: 3.141592653589793 rad @@ -150410,7 +151666,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20587 + - uid: 22016 components: - type: Transform rot: 3.141592653589793 rad @@ -150418,7 +151674,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20588 + - uid: 22017 components: - type: Transform rot: 3.141592653589793 rad @@ -150426,7 +151682,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20589 + - uid: 22018 components: - type: Transform rot: 1.5707963267948966 rad @@ -150434,7 +151690,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20590 + - uid: 22019 components: - type: Transform rot: 1.5707963267948966 rad @@ -150442,7 +151698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20591 + - uid: 22020 components: - type: Transform rot: 1.5707963267948966 rad @@ -150450,7 +151706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20592 + - uid: 22021 components: - type: Transform rot: 1.5707963267948966 rad @@ -150458,7 +151714,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20593 + - uid: 22022 components: - type: Transform rot: 1.5707963267948966 rad @@ -150466,7 +151722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20594 + - uid: 22023 components: - type: Transform rot: 1.5707963267948966 rad @@ -150474,7 +151730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20595 + - uid: 22024 components: - type: Transform rot: 3.141592653589793 rad @@ -150482,7 +151738,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20596 + - uid: 22025 components: - type: Transform rot: -1.5707963267948966 rad @@ -150490,7 +151746,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20597 + - uid: 22026 components: - type: Transform rot: 3.141592653589793 rad @@ -150498,7 +151754,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20598 + - uid: 22027 components: - type: Transform rot: 3.141592653589793 rad @@ -150506,7 +151762,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20599 + - uid: 22028 components: - type: Transform rot: 3.141592653589793 rad @@ -150514,7 +151770,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20600 + - uid: 22029 components: - type: Transform rot: 3.141592653589793 rad @@ -150522,7 +151778,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20601 + - uid: 22030 components: - type: Transform rot: 3.141592653589793 rad @@ -150530,7 +151786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20602 + - uid: 22031 components: - type: Transform rot: 3.141592653589793 rad @@ -150538,7 +151794,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20603 + - uid: 22032 components: - type: Transform rot: 3.141592653589793 rad @@ -150546,7 +151802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20604 + - uid: 22033 components: - type: Transform rot: 3.141592653589793 rad @@ -150554,7 +151810,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20605 + - uid: 22034 components: - type: Transform rot: 3.141592653589793 rad @@ -150562,7 +151818,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20606 + - uid: 22035 components: - type: Transform rot: 3.141592653589793 rad @@ -150570,7 +151826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20607 + - uid: 22036 components: - type: Transform rot: 3.141592653589793 rad @@ -150578,7 +151834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20608 + - uid: 22037 components: - type: Transform rot: 3.141592653589793 rad @@ -150586,7 +151842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20609 + - uid: 22038 components: - type: Transform rot: 3.141592653589793 rad @@ -150594,7 +151850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20610 + - uid: 22039 components: - type: Transform rot: 3.141592653589793 rad @@ -150602,7 +151858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20611 + - uid: 22040 components: - type: Transform rot: 3.141592653589793 rad @@ -150610,7 +151866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20612 + - uid: 22041 components: - type: Transform rot: 3.141592653589793 rad @@ -150618,7 +151874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20613 + - uid: 22042 components: - type: Transform rot: 3.141592653589793 rad @@ -150626,7 +151882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20614 + - uid: 22043 components: - type: Transform rot: 3.141592653589793 rad @@ -150634,7 +151890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20615 + - uid: 22044 components: - type: Transform rot: 3.141592653589793 rad @@ -150642,7 +151898,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20616 + - uid: 22045 components: - type: Transform rot: 3.141592653589793 rad @@ -150650,7 +151906,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20617 + - uid: 22046 components: - type: Transform rot: 3.141592653589793 rad @@ -150658,7 +151914,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20618 + - uid: 22047 components: - type: Transform rot: 3.141592653589793 rad @@ -150666,7 +151922,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20619 + - uid: 22048 components: - type: Transform rot: 3.141592653589793 rad @@ -150674,7 +151930,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20620 + - uid: 22049 components: - type: Transform rot: 3.141592653589793 rad @@ -150682,7 +151938,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20621 + - uid: 22050 components: - type: Transform rot: 3.141592653589793 rad @@ -150690,7 +151946,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20622 + - uid: 22051 components: - type: Transform rot: 1.5707963267948966 rad @@ -150698,7 +151954,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20623 + - uid: 22052 components: - type: Transform rot: 1.5707963267948966 rad @@ -150706,7 +151962,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20624 + - uid: 22053 components: - type: Transform rot: 1.5707963267948966 rad @@ -150714,7 +151970,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20625 + - uid: 22054 components: - type: Transform rot: 1.5707963267948966 rad @@ -150722,7 +151978,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20626 + - uid: 22055 components: - type: Transform rot: 1.5707963267948966 rad @@ -150730,7 +151986,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20627 + - uid: 22056 components: - type: Transform rot: 1.5707963267948966 rad @@ -150738,7 +151994,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20628 + - uid: 22057 components: - type: Transform rot: 1.5707963267948966 rad @@ -150746,7 +152002,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20629 + - uid: 22058 components: - type: Transform rot: 1.5707963267948966 rad @@ -150754,7 +152010,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20630 + - uid: 22059 components: - type: Transform rot: 1.5707963267948966 rad @@ -150762,7 +152018,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20631 + - uid: 22060 components: - type: Transform rot: 1.5707963267948966 rad @@ -150770,98 +152026,98 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20632 + - uid: 22061 components: - type: Transform pos: -44.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20633 + - uid: 22062 components: - type: Transform pos: -44.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20634 + - uid: 22063 components: - type: Transform pos: -44.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20635 + - uid: 22064 components: - type: Transform pos: -44.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20636 + - uid: 22065 components: - type: Transform pos: -44.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20637 + - uid: 22066 components: - type: Transform pos: -44.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20638 + - uid: 22067 components: - type: Transform pos: -42.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20639 + - uid: 22068 components: - type: Transform pos: -42.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20640 + - uid: 22069 components: - type: Transform pos: -42.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20641 + - uid: 22070 components: - type: Transform pos: -42.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20642 + - uid: 22071 components: - type: Transform pos: -42.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20643 + - uid: 22072 components: - type: Transform pos: -42.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20644 + - uid: 22073 components: - type: Transform pos: -42.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20645 + - uid: 22074 components: - type: Transform rot: -1.5707963267948966 rad @@ -150869,7 +152125,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20646 + - uid: 22075 components: - type: Transform rot: -1.5707963267948966 rad @@ -150877,7 +152133,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20647 + - uid: 22076 components: - type: Transform rot: -1.5707963267948966 rad @@ -150885,7 +152141,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20648 + - uid: 22077 components: - type: Transform rot: -1.5707963267948966 rad @@ -150893,7 +152149,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20649 + - uid: 22078 components: - type: Transform rot: -1.5707963267948966 rad @@ -150901,7 +152157,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20650 + - uid: 22079 components: - type: Transform rot: -1.5707963267948966 rad @@ -150909,7 +152165,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20651 + - uid: 22080 components: - type: Transform rot: -1.5707963267948966 rad @@ -150917,7 +152173,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20652 + - uid: 22081 components: - type: Transform rot: -1.5707963267948966 rad @@ -150925,7 +152181,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20653 + - uid: 22082 components: - type: Transform rot: 3.141592653589793 rad @@ -150933,7 +152189,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20654 + - uid: 22083 components: - type: Transform rot: 3.141592653589793 rad @@ -150941,7 +152197,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20655 + - uid: 22084 components: - type: Transform rot: 3.141592653589793 rad @@ -150949,7 +152205,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20656 + - uid: 22085 components: - type: Transform rot: 3.141592653589793 rad @@ -150957,7 +152213,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20657 + - uid: 22086 components: - type: Transform rot: 3.141592653589793 rad @@ -150965,7 +152221,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20658 + - uid: 22087 components: - type: Transform rot: 3.141592653589793 rad @@ -150973,7 +152229,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20659 + - uid: 22088 components: - type: Transform rot: 3.141592653589793 rad @@ -150981,7 +152237,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20660 + - uid: 22089 components: - type: Transform rot: 3.141592653589793 rad @@ -150989,7 +152245,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20661 + - uid: 22090 components: - type: Transform rot: -1.5707963267948966 rad @@ -150997,7 +152253,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20662 + - uid: 22091 components: - type: Transform rot: -1.5707963267948966 rad @@ -151005,7 +152261,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20663 + - uid: 22092 components: - type: Transform rot: 1.5707963267948966 rad @@ -151013,7 +152269,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20664 + - uid: 22093 components: - type: Transform rot: 1.5707963267948966 rad @@ -151021,7 +152277,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20665 + - uid: 22094 components: - type: Transform rot: 1.5707963267948966 rad @@ -151029,42 +152285,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20666 + - uid: 22095 components: - type: Transform pos: -36.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20667 + - uid: 22096 components: - type: Transform pos: -36.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20668 + - uid: 22097 components: - type: Transform pos: -36.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20669 + - uid: 22098 components: - type: Transform pos: -36.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20670 + - uid: 22099 components: - type: Transform pos: -36.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20671 + - uid: 22100 components: - type: Transform rot: -1.5707963267948966 rad @@ -151072,7 +152328,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20672 + - uid: 22101 components: - type: Transform rot: -1.5707963267948966 rad @@ -151080,7 +152336,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20673 + - uid: 22102 components: - type: Transform rot: -1.5707963267948966 rad @@ -151088,7 +152344,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20674 + - uid: 22103 components: - type: Transform rot: -1.5707963267948966 rad @@ -151096,7 +152352,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20675 + - uid: 22104 components: - type: Transform rot: -1.5707963267948966 rad @@ -151104,7 +152360,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20676 + - uid: 22105 components: - type: Transform rot: -1.5707963267948966 rad @@ -151112,7 +152368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20677 + - uid: 22106 components: - type: Transform rot: -1.5707963267948966 rad @@ -151120,7 +152376,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20678 + - uid: 22107 components: - type: Transform rot: -1.5707963267948966 rad @@ -151128,7 +152384,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20679 + - uid: 22108 components: - type: Transform rot: -1.5707963267948966 rad @@ -151136,7 +152392,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20680 + - uid: 22109 components: - type: Transform rot: -1.5707963267948966 rad @@ -151144,7 +152400,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20681 + - uid: 22110 components: - type: Transform rot: -1.5707963267948966 rad @@ -151152,7 +152408,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20682 + - uid: 22111 components: - type: Transform rot: -1.5707963267948966 rad @@ -151160,7 +152416,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20683 + - uid: 22112 components: - type: Transform rot: 3.141592653589793 rad @@ -151168,7 +152424,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20684 + - uid: 22113 components: - type: Transform rot: 3.141592653589793 rad @@ -151176,7 +152432,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20685 + - uid: 22114 components: - type: Transform rot: 3.141592653589793 rad @@ -151184,7 +152440,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20686 + - uid: 22115 components: - type: Transform rot: 3.141592653589793 rad @@ -151192,7 +152448,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20687 + - uid: 22116 components: - type: Transform rot: 3.141592653589793 rad @@ -151200,7 +152456,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20688 + - uid: 22117 components: - type: Transform rot: 3.141592653589793 rad @@ -151208,7 +152464,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20689 + - uid: 22118 components: - type: Transform rot: 3.141592653589793 rad @@ -151216,7 +152472,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20690 + - uid: 22119 components: - type: Transform rot: 3.141592653589793 rad @@ -151224,7 +152480,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20691 + - uid: 22120 components: - type: Transform rot: 3.141592653589793 rad @@ -151232,7 +152488,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20692 + - uid: 22121 components: - type: Transform rot: 3.141592653589793 rad @@ -151240,7 +152496,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20693 + - uid: 22122 components: - type: Transform rot: 3.141592653589793 rad @@ -151248,7 +152504,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20694 + - uid: 22123 components: - type: Transform rot: 1.5707963267948966 rad @@ -151256,7 +152512,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20695 + - uid: 22124 components: - type: Transform rot: 1.5707963267948966 rad @@ -151264,42 +152520,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20696 + - uid: 22125 components: - type: Transform pos: -42.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20697 + - uid: 22126 components: - type: Transform pos: -42.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20698 + - uid: 22127 components: - type: Transform pos: -42.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20699 + - uid: 22128 components: - type: Transform pos: -42.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20700 + - uid: 22129 components: - type: Transform pos: -42.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20701 + - uid: 22130 components: - type: Transform rot: 1.5707963267948966 rad @@ -151307,7 +152563,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20702 + - uid: 22131 components: - type: Transform rot: 1.5707963267948966 rad @@ -151315,7 +152571,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20703 + - uid: 22132 components: - type: Transform rot: 1.5707963267948966 rad @@ -151323,7 +152579,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20704 + - uid: 22133 components: - type: Transform rot: 1.5707963267948966 rad @@ -151331,7 +152587,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20705 + - uid: 22134 components: - type: Transform rot: 1.5707963267948966 rad @@ -151339,7 +152595,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20706 + - uid: 22135 components: - type: Transform rot: 1.5707963267948966 rad @@ -151347,7 +152603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20707 + - uid: 22136 components: - type: Transform rot: 1.5707963267948966 rad @@ -151355,7 +152611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20708 + - uid: 22137 components: - type: Transform rot: 1.5707963267948966 rad @@ -151363,7 +152619,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20709 + - uid: 22138 components: - type: Transform rot: 1.5707963267948966 rad @@ -151371,7 +152627,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20710 + - uid: 22139 components: - type: Transform rot: 1.5707963267948966 rad @@ -151379,7 +152635,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20711 + - uid: 22140 components: - type: Transform rot: 1.5707963267948966 rad @@ -151387,7 +152643,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20712 + - uid: 22141 components: - type: Transform rot: 1.5707963267948966 rad @@ -151395,7 +152651,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20713 + - uid: 22142 components: - type: Transform rot: 1.5707963267948966 rad @@ -151403,7 +152659,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20714 + - uid: 22143 components: - type: Transform rot: 1.5707963267948966 rad @@ -151411,7 +152667,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20715 + - uid: 22144 components: - type: Transform rot: 1.5707963267948966 rad @@ -151419,7 +152675,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20716 + - uid: 22145 components: - type: Transform rot: 1.5707963267948966 rad @@ -151427,7 +152683,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20717 + - uid: 22146 components: - type: Transform rot: -1.5707963267948966 rad @@ -151435,7 +152691,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20718 + - uid: 22147 components: - type: Transform rot: -1.5707963267948966 rad @@ -151443,7 +152699,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20719 + - uid: 22148 components: - type: Transform rot: -1.5707963267948966 rad @@ -151451,7 +152707,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20720 + - uid: 22149 components: - type: Transform rot: -1.5707963267948966 rad @@ -151459,7 +152715,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20721 + - uid: 22150 components: - type: Transform rot: -1.5707963267948966 rad @@ -151467,7 +152723,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20722 + - uid: 22151 components: - type: Transform rot: -1.5707963267948966 rad @@ -151475,28 +152731,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20723 + - uid: 22152 components: - type: Transform pos: -50.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20724 + - uid: 22153 components: - type: Transform pos: -50.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20725 + - uid: 22154 components: - type: Transform pos: -48.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20726 + - uid: 22155 components: - type: Transform rot: 3.141592653589793 rad @@ -151504,7 +152760,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20727 + - uid: 22156 components: - type: Transform rot: 3.141592653589793 rad @@ -151512,7 +152768,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20728 + - uid: 22157 components: - type: Transform rot: 3.141592653589793 rad @@ -151520,7 +152776,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20729 + - uid: 22158 components: - type: Transform rot: 3.141592653589793 rad @@ -151528,7 +152784,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20730 + - uid: 22159 components: - type: Transform rot: 3.141592653589793 rad @@ -151536,7 +152792,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20731 + - uid: 22160 components: - type: Transform rot: 3.141592653589793 rad @@ -151544,7 +152800,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20732 + - uid: 22161 components: - type: Transform rot: 3.141592653589793 rad @@ -151552,7 +152808,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20733 + - uid: 22162 components: - type: Transform rot: 3.141592653589793 rad @@ -151560,7 +152816,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20734 + - uid: 22163 components: - type: Transform rot: 3.141592653589793 rad @@ -151568,7 +152824,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20735 + - uid: 22164 components: - type: Transform rot: -1.5707963267948966 rad @@ -151576,7 +152832,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20736 + - uid: 22165 components: - type: Transform rot: -1.5707963267948966 rad @@ -151584,7 +152840,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20737 + - uid: 22166 components: - type: Transform rot: -1.5707963267948966 rad @@ -151592,7 +152848,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20738 + - uid: 22167 components: - type: Transform rot: -1.5707963267948966 rad @@ -151600,7 +152856,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20739 + - uid: 22168 components: - type: Transform rot: -1.5707963267948966 rad @@ -151608,7 +152864,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20740 + - uid: 22169 components: - type: Transform rot: -1.5707963267948966 rad @@ -151616,7 +152872,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20741 + - uid: 22170 components: - type: Transform rot: -1.5707963267948966 rad @@ -151624,7 +152880,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20742 + - uid: 22171 components: - type: Transform rot: -1.5707963267948966 rad @@ -151632,7 +152888,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20743 + - uid: 22172 components: - type: Transform rot: -1.5707963267948966 rad @@ -151640,7 +152896,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20744 + - uid: 22173 components: - type: Transform rot: -1.5707963267948966 rad @@ -151648,7 +152904,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20745 + - uid: 22174 components: - type: Transform rot: -1.5707963267948966 rad @@ -151656,7 +152912,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20746 + - uid: 22175 components: - type: Transform rot: -1.5707963267948966 rad @@ -151664,7 +152920,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20747 + - uid: 22176 components: - type: Transform rot: -1.5707963267948966 rad @@ -151672,7 +152928,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20748 + - uid: 22177 components: - type: Transform rot: -1.5707963267948966 rad @@ -151680,7 +152936,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20749 + - uid: 22178 components: - type: Transform rot: -1.5707963267948966 rad @@ -151688,7 +152944,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20750 + - uid: 22179 components: - type: Transform rot: -1.5707963267948966 rad @@ -151696,7 +152952,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20751 + - uid: 22180 components: - type: Transform rot: -1.5707963267948966 rad @@ -151704,7 +152960,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20752 + - uid: 22181 components: - type: Transform rot: -1.5707963267948966 rad @@ -151712,7 +152968,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20753 + - uid: 22182 components: - type: Transform rot: -1.5707963267948966 rad @@ -151720,7 +152976,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20754 + - uid: 22183 components: - type: Transform rot: -1.5707963267948966 rad @@ -151728,7 +152984,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20755 + - uid: 22184 components: - type: Transform rot: -1.5707963267948966 rad @@ -151736,7 +152992,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20756 + - uid: 22185 components: - type: Transform rot: -1.5707963267948966 rad @@ -151744,7 +153000,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20757 + - uid: 22186 components: - type: Transform rot: 3.141592653589793 rad @@ -151752,7 +153008,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20758 + - uid: 22187 components: - type: Transform rot: 3.141592653589793 rad @@ -151760,7 +153016,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20759 + - uid: 22188 components: - type: Transform rot: 3.141592653589793 rad @@ -151768,7 +153024,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20760 + - uid: 22189 components: - type: Transform rot: 3.141592653589793 rad @@ -151776,7 +153032,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20761 + - uid: 22190 components: - type: Transform rot: 3.141592653589793 rad @@ -151784,7 +153040,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20762 + - uid: 22191 components: - type: Transform rot: 3.141592653589793 rad @@ -151792,7 +153048,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20763 + - uid: 22192 components: - type: Transform rot: 3.141592653589793 rad @@ -151800,7 +153056,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20764 + - uid: 22193 components: - type: Transform rot: 3.141592653589793 rad @@ -151808,7 +153064,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20765 + - uid: 22194 components: - type: Transform rot: 3.141592653589793 rad @@ -151816,7 +153072,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20766 + - uid: 22195 components: - type: Transform rot: 3.141592653589793 rad @@ -151824,7 +153080,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20767 + - uid: 22196 components: - type: Transform rot: 3.141592653589793 rad @@ -151832,7 +153088,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20768 + - uid: 22197 components: - type: Transform rot: 3.141592653589793 rad @@ -151840,7 +153096,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20769 + - uid: 22198 components: - type: Transform rot: 3.141592653589793 rad @@ -151848,7 +153104,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20770 + - uid: 22199 components: - type: Transform rot: 1.5707963267948966 rad @@ -151856,7 +153112,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20771 + - uid: 22200 components: - type: Transform rot: 1.5707963267948966 rad @@ -151864,7 +153120,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20772 + - uid: 22201 components: - type: Transform rot: 1.5707963267948966 rad @@ -151872,7 +153128,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20773 + - uid: 22202 components: - type: Transform rot: 1.5707963267948966 rad @@ -151880,77 +153136,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20774 + - uid: 22203 components: - type: Transform pos: -40.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20775 + - uid: 22204 components: - type: Transform pos: -40.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20776 + - uid: 22205 components: - type: Transform pos: -40.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20777 + - uid: 22206 components: - type: Transform pos: -40.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20778 + - uid: 22207 components: - type: Transform pos: -40.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20779 + - uid: 22208 components: - type: Transform pos: -40.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20780 + - uid: 22209 components: - type: Transform pos: -42.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20781 + - uid: 22210 components: - type: Transform pos: -42.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20782 + - uid: 22211 components: - type: Transform pos: -42.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20783 + - uid: 22212 components: - type: Transform pos: -42.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20784 + - uid: 22213 components: - type: Transform rot: 1.5707963267948966 rad @@ -151958,7 +153214,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20785 + - uid: 22214 components: - type: Transform rot: 1.5707963267948966 rad @@ -151966,7 +153222,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20786 + - uid: 22215 components: - type: Transform rot: 1.5707963267948966 rad @@ -151974,7 +153230,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20787 + - uid: 22216 components: - type: Transform rot: 1.5707963267948966 rad @@ -151982,7 +153238,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20788 + - uid: 22217 components: - type: Transform rot: 1.5707963267948966 rad @@ -151990,63 +153246,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20789 + - uid: 22218 components: - type: Transform pos: -37.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20790 + - uid: 22219 components: - type: Transform pos: -37.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20791 + - uid: 22220 components: - type: Transform pos: -37.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20792 + - uid: 22221 components: - type: Transform pos: -35.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20793 + - uid: 22222 components: - type: Transform pos: -35.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20794 + - uid: 22223 components: - type: Transform pos: -35.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20795 + - uid: 22224 components: - type: Transform pos: -35.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20796 + - uid: 22225 components: - type: Transform pos: -35.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20797 + - uid: 22226 components: - type: Transform rot: -1.5707963267948966 rad @@ -152054,7 +153310,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20798 + - uid: 22227 components: - type: Transform rot: -1.5707963267948966 rad @@ -152062,7 +153318,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20799 + - uid: 22228 components: - type: Transform rot: -1.5707963267948966 rad @@ -152070,7 +153326,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20800 + - uid: 22229 components: - type: Transform rot: -1.5707963267948966 rad @@ -152078,7 +153334,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20801 + - uid: 22230 components: - type: Transform rot: -1.5707963267948966 rad @@ -152086,7 +153342,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20802 + - uid: 22231 components: - type: Transform rot: -1.5707963267948966 rad @@ -152094,70 +153350,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20803 + - uid: 22232 components: - type: Transform pos: -42.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20804 + - uid: 22233 components: - type: Transform pos: -42.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20805 + - uid: 22234 components: - type: Transform pos: -42.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20806 + - uid: 22235 components: - type: Transform pos: -40.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20807 + - uid: 22236 components: - type: Transform pos: -40.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20808 + - uid: 22237 components: - type: Transform pos: -40.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20809 + - uid: 22238 components: - type: Transform pos: -40.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20810 + - uid: 22239 components: - type: Transform pos: -42.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20811 + - uid: 22240 components: - type: Transform pos: -42.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20812 + - uid: 22241 components: - type: Transform rot: -1.5707963267948966 rad @@ -152165,7 +153421,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20813 + - uid: 22242 components: - type: Transform rot: -1.5707963267948966 rad @@ -152173,21 +153429,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20814 + - uid: 22243 components: - type: Transform pos: -45.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20815 + - uid: 22244 components: - type: Transform pos: -45.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20816 + - uid: 22245 components: - type: Transform rot: 1.5707963267948966 rad @@ -152195,7 +153451,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20817 + - uid: 22246 components: - type: Transform rot: 1.5707963267948966 rad @@ -152203,7 +153459,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20818 + - uid: 22247 components: - type: Transform rot: 3.141592653589793 rad @@ -152211,15 +153467,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20819 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20820 + - uid: 22248 components: - type: Transform rot: 3.141592653589793 rad @@ -152227,7 +153475,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20821 + - uid: 22249 components: - type: Transform rot: 3.141592653589793 rad @@ -152235,7 +153483,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20822 + - uid: 22250 components: - type: Transform rot: 3.141592653589793 rad @@ -152243,7 +153491,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20823 + - uid: 22251 components: - type: Transform rot: 3.141592653589793 rad @@ -152251,7 +153499,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20824 + - uid: 22252 components: - type: Transform rot: 3.141592653589793 rad @@ -152259,7 +153507,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20825 + - uid: 22253 components: - type: Transform rot: 3.141592653589793 rad @@ -152267,7 +153515,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20826 + - uid: 22254 components: - type: Transform rot: 3.141592653589793 rad @@ -152275,7 +153523,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20827 + - uid: 22255 components: - type: Transform rot: 3.141592653589793 rad @@ -152283,7 +153531,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20828 + - uid: 22256 components: - type: Transform rot: 3.141592653589793 rad @@ -152291,7 +153539,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20829 + - uid: 22257 components: - type: Transform rot: 3.141592653589793 rad @@ -152299,7 +153547,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20830 + - uid: 22258 components: - type: Transform rot: 3.141592653589793 rad @@ -152307,7 +153555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20831 + - uid: 22259 components: - type: Transform rot: 3.141592653589793 rad @@ -152315,7 +153563,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20832 + - uid: 22260 components: - type: Transform rot: 3.141592653589793 rad @@ -152323,7 +153571,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20833 + - uid: 22261 components: - type: Transform rot: 3.141592653589793 rad @@ -152331,7 +153579,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20834 + - uid: 22262 components: - type: Transform rot: 3.141592653589793 rad @@ -152339,7 +153587,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20835 + - uid: 22263 components: - type: Transform rot: 3.141592653589793 rad @@ -152347,7 +153595,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20836 + - uid: 22264 components: - type: Transform rot: 3.141592653589793 rad @@ -152355,7 +153603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20837 + - uid: 22265 components: - type: Transform rot: 3.141592653589793 rad @@ -152363,7 +153611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20838 + - uid: 22266 components: - type: Transform rot: 1.5707963267948966 rad @@ -152371,7 +153619,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20839 + - uid: 22267 components: - type: Transform rot: 3.141592653589793 rad @@ -152379,7 +153627,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20840 + - uid: 22268 components: - type: Transform rot: 3.141592653589793 rad @@ -152387,7 +153635,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20841 + - uid: 22269 components: - type: Transform rot: 1.5707963267948966 rad @@ -152395,7 +153643,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20842 + - uid: 22270 components: - type: Transform rot: 1.5707963267948966 rad @@ -152403,7 +153651,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20843 + - uid: 22271 components: - type: Transform rot: 1.5707963267948966 rad @@ -152411,7 +153659,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20844 + - uid: 22272 components: - type: Transform rot: 1.5707963267948966 rad @@ -152419,7 +153667,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20845 + - uid: 22273 components: - type: Transform rot: 1.5707963267948966 rad @@ -152427,7 +153675,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20846 + - uid: 22274 components: - type: Transform rot: 1.5707963267948966 rad @@ -152435,7 +153683,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20847 + - uid: 22275 components: - type: Transform rot: 1.5707963267948966 rad @@ -152443,7 +153691,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20848 + - uid: 22276 components: - type: Transform rot: 1.5707963267948966 rad @@ -152451,7 +153699,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20849 + - uid: 22277 components: - type: Transform rot: 1.5707963267948966 rad @@ -152459,7 +153707,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20850 + - uid: 22278 components: - type: Transform rot: 1.5707963267948966 rad @@ -152467,7 +153715,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20851 + - uid: 22279 components: - type: Transform rot: 1.5707963267948966 rad @@ -152475,7 +153723,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20852 + - uid: 22280 components: - type: Transform rot: 1.5707963267948966 rad @@ -152483,7 +153731,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20853 + - uid: 22281 components: - type: Transform rot: 1.5707963267948966 rad @@ -152491,7 +153739,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20854 + - uid: 22282 components: - type: Transform rot: 3.141592653589793 rad @@ -152499,7 +153747,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20855 + - uid: 22283 components: - type: Transform rot: 3.141592653589793 rad @@ -152507,7 +153755,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20856 + - uid: 22284 components: - type: Transform rot: 3.141592653589793 rad @@ -152515,7 +153763,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20857 + - uid: 22285 components: - type: Transform rot: 3.141592653589793 rad @@ -152523,7 +153771,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20858 + - uid: 22286 components: - type: Transform rot: 3.141592653589793 rad @@ -152531,7 +153779,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20859 + - uid: 22287 components: - type: Transform rot: 3.141592653589793 rad @@ -152539,7 +153787,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20860 + - uid: 22288 components: - type: Transform rot: 3.141592653589793 rad @@ -152547,7 +153795,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20861 + - uid: 22289 components: - type: Transform rot: 3.141592653589793 rad @@ -152555,7 +153803,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20862 + - uid: 22290 components: - type: Transform rot: 3.141592653589793 rad @@ -152563,7 +153811,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20863 + - uid: 22291 components: - type: Transform rot: 3.141592653589793 rad @@ -152571,7 +153819,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20864 + - uid: 22292 components: - type: Transform rot: 3.141592653589793 rad @@ -152579,7 +153827,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20865 + - uid: 22293 components: - type: Transform rot: 3.141592653589793 rad @@ -152587,23 +153835,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20868 + - uid: 22294 components: - type: Transform rot: 3.141592653589793 rad @@ -152611,31 +153843,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20869 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20870 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20872 + - uid: 22295 components: - type: Transform rot: 3.141592653589793 rad @@ -152643,7 +153851,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20873 + - uid: 22296 components: - type: Transform rot: 3.141592653589793 rad @@ -152651,7 +153859,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20874 + - uid: 22297 components: - type: Transform rot: 3.141592653589793 rad @@ -152659,7 +153867,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20875 + - uid: 22298 components: - type: Transform rot: 3.141592653589793 rad @@ -152667,7 +153875,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20876 + - uid: 22299 components: - type: Transform rot: 3.141592653589793 rad @@ -152675,7 +153883,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20877 + - uid: 22300 components: - type: Transform rot: 3.141592653589793 rad @@ -152683,7 +153891,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20878 + - uid: 22301 components: - type: Transform rot: 3.141592653589793 rad @@ -152691,49 +153899,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20879 + - uid: 22302 components: - type: Transform pos: -53.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20880 + - uid: 22303 components: - type: Transform pos: -53.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20881 + - uid: 22304 components: - type: Transform pos: -53.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20882 + - uid: 22305 components: - type: Transform pos: -53.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20883 + - uid: 22306 components: - type: Transform pos: -53.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20884 + - uid: 22307 components: - type: Transform pos: -53.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20885 + - uid: 22308 components: - type: Transform rot: 3.141592653589793 rad @@ -152741,7 +153949,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20886 + - uid: 22309 components: - type: Transform rot: 3.141592653589793 rad @@ -152749,7 +153957,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20887 + - uid: 22310 components: - type: Transform rot: 3.141592653589793 rad @@ -152757,7 +153965,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20888 + - uid: 22311 components: - type: Transform rot: -1.5707963267948966 rad @@ -152765,7 +153973,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20889 + - uid: 22312 components: - type: Transform rot: -1.5707963267948966 rad @@ -152773,7 +153981,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20890 + - uid: 22313 components: - type: Transform rot: -1.5707963267948966 rad @@ -152781,7 +153989,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20891 + - uid: 22314 components: - type: Transform rot: -1.5707963267948966 rad @@ -152789,7 +153997,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20892 + - uid: 22315 components: - type: Transform rot: -1.5707963267948966 rad @@ -152797,7 +154005,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20893 + - uid: 22316 components: - type: Transform rot: 3.141592653589793 rad @@ -152805,7 +154013,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20894 + - uid: 22317 components: - type: Transform rot: 3.141592653589793 rad @@ -152813,7 +154021,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20895 + - uid: 22318 components: - type: Transform rot: 1.5707963267948966 rad @@ -152821,7 +154029,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20896 + - uid: 22319 components: - type: Transform rot: 1.5707963267948966 rad @@ -152829,56 +154037,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20897 + - uid: 22320 components: - type: Transform pos: -47.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20898 + - uid: 22321 components: - type: Transform pos: -47.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20899 + - uid: 22322 components: - type: Transform pos: -47.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20900 + - uid: 22323 components: - type: Transform pos: -47.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20901 + - uid: 22324 components: - type: Transform pos: -46.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20902 - components: - - type: Transform - pos: -46.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20903 + - uid: 22325 components: - type: Transform pos: -46.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20904 + - uid: 22326 components: - type: Transform rot: -1.5707963267948966 rad @@ -152886,7 +154087,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20905 + - uid: 22327 components: - type: Transform rot: -1.5707963267948966 rad @@ -152894,7 +154095,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20906 + - uid: 22328 components: - type: Transform rot: -1.5707963267948966 rad @@ -152902,7 +154103,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20907 + - uid: 22329 components: - type: Transform rot: 1.5707963267948966 rad @@ -152910,7 +154111,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20908 + - uid: 22330 components: - type: Transform rot: 1.5707963267948966 rad @@ -152918,7 +154119,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20909 + - uid: 22331 components: - type: Transform rot: 1.5707963267948966 rad @@ -152926,7 +154127,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20910 + - uid: 22332 components: - type: Transform rot: 1.5707963267948966 rad @@ -152934,7 +154135,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20911 + - uid: 22333 components: - type: Transform rot: 1.5707963267948966 rad @@ -152942,7 +154143,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20912 + - uid: 22334 components: - type: Transform rot: 1.5707963267948966 rad @@ -152950,7 +154151,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20913 + - uid: 22335 components: - type: Transform rot: 1.5707963267948966 rad @@ -152958,7 +154159,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20914 + - uid: 22336 components: - type: Transform rot: 1.5707963267948966 rad @@ -152966,7 +154167,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20915 + - uid: 22337 components: - type: Transform rot: 1.5707963267948966 rad @@ -152974,7 +154175,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20916 + - uid: 22338 components: - type: Transform rot: 1.5707963267948966 rad @@ -152982,7 +154183,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20917 + - uid: 22339 components: - type: Transform rot: 1.5707963267948966 rad @@ -152990,7 +154191,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20918 + - uid: 22340 components: - type: Transform rot: 1.5707963267948966 rad @@ -152998,7 +154199,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20919 + - uid: 22341 components: - type: Transform rot: 1.5707963267948966 rad @@ -153006,7 +154207,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20920 + - uid: 22342 components: - type: Transform rot: 1.5707963267948966 rad @@ -153014,7 +154215,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20921 + - uid: 22343 components: - type: Transform rot: 1.5707963267948966 rad @@ -153022,7 +154223,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20922 + - uid: 22344 components: - type: Transform rot: 1.5707963267948966 rad @@ -153030,7 +154231,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20923 + - uid: 22345 components: - type: Transform rot: 1.5707963267948966 rad @@ -153038,7 +154239,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20924 + - uid: 22346 components: - type: Transform rot: 1.5707963267948966 rad @@ -153046,7 +154247,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20925 + - uid: 22347 components: - type: Transform rot: 1.5707963267948966 rad @@ -153054,7 +154255,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20926 + - uid: 22348 components: - type: Transform rot: 1.5707963267948966 rad @@ -153062,7 +154263,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20927 + - uid: 22349 components: - type: Transform rot: 1.5707963267948966 rad @@ -153070,7 +154271,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20928 + - uid: 22350 components: - type: Transform rot: 1.5707963267948966 rad @@ -153078,7 +154279,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20929 + - uid: 22351 components: - type: Transform rot: 1.5707963267948966 rad @@ -153086,7 +154287,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20930 + - uid: 22352 components: - type: Transform rot: 1.5707963267948966 rad @@ -153094,7 +154295,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20931 + - uid: 22353 components: - type: Transform rot: 1.5707963267948966 rad @@ -153102,7 +154303,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20932 + - uid: 22354 components: - type: Transform rot: 1.5707963267948966 rad @@ -153110,7 +154311,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20933 + - uid: 22355 components: - type: Transform rot: 1.5707963267948966 rad @@ -153118,15 +154319,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20934 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20935 + - uid: 22356 components: - type: Transform rot: 1.5707963267948966 rad @@ -153134,7 +154327,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20936 + - uid: 22357 components: - type: Transform rot: 1.5707963267948966 rad @@ -153142,7 +154335,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20937 + - uid: 22358 components: - type: Transform rot: 1.5707963267948966 rad @@ -153150,7 +154343,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20938 + - uid: 22359 components: - type: Transform rot: 1.5707963267948966 rad @@ -153158,7 +154351,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20939 + - uid: 22360 components: - type: Transform rot: 1.5707963267948966 rad @@ -153166,7 +154359,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20940 + - uid: 22361 components: - type: Transform rot: 1.5707963267948966 rad @@ -153174,7 +154367,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20941 + - uid: 22362 components: - type: Transform rot: 1.5707963267948966 rad @@ -153182,7 +154375,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20942 + - uid: 22363 components: - type: Transform rot: 1.5707963267948966 rad @@ -153190,7 +154383,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20943 + - uid: 22364 components: - type: Transform rot: 1.5707963267948966 rad @@ -153198,7 +154391,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20944 + - uid: 22365 components: - type: Transform rot: 1.5707963267948966 rad @@ -153206,7 +154399,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20945 + - uid: 22366 components: - type: Transform rot: 1.5707963267948966 rad @@ -153214,7 +154407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20946 + - uid: 22367 components: - type: Transform rot: 1.5707963267948966 rad @@ -153222,56 +154415,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20947 + - uid: 22368 components: - type: Transform pos: -72.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20948 + - uid: 22369 components: - type: Transform pos: -72.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20949 + - uid: 22370 components: - type: Transform pos: -72.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20950 + - uid: 22371 components: - type: Transform pos: -74.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20951 + - uid: 22372 components: - type: Transform pos: -74.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20952 + - uid: 22373 components: - type: Transform pos: -74.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20953 + - uid: 22374 components: - type: Transform pos: -74.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20954 + - uid: 22375 components: - type: Transform rot: 1.5707963267948966 rad @@ -153279,7 +154472,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20955 + - uid: 22376 components: - type: Transform rot: 1.5707963267948966 rad @@ -153287,7 +154480,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20956 + - uid: 22377 components: - type: Transform rot: 1.5707963267948966 rad @@ -153295,7 +154488,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20957 + - uid: 22378 components: - type: Transform rot: 1.5707963267948966 rad @@ -153303,7 +154496,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20958 + - uid: 22379 components: - type: Transform rot: 1.5707963267948966 rad @@ -153311,7 +154504,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20959 + - uid: 22380 components: - type: Transform rot: 1.5707963267948966 rad @@ -153319,98 +154512,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20960 - components: - - type: Transform - pos: -74.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20961 - components: - - type: Transform - pos: -72.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20962 + - uid: 22381 components: - type: Transform pos: -72.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20963 - components: - - type: Transform - pos: -72.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20964 + - uid: 22382 components: - type: Transform pos: -72.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20965 + - uid: 22383 components: - type: Transform pos: -72.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20966 + - uid: 22384 components: - type: Transform pos: -72.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20967 + - uid: 22385 components: - type: Transform pos: -72.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20968 - components: - - type: Transform - pos: -74.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20969 + - uid: 22386 components: - type: Transform pos: -74.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20970 + - uid: 22387 components: - type: Transform pos: -74.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20971 + - uid: 22388 components: - type: Transform pos: -74.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20972 + - uid: 22389 components: - type: Transform pos: -74.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20973 + - uid: 22390 components: - type: Transform rot: 3.141592653589793 rad @@ -153418,7 +154583,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20974 + - uid: 22391 components: - type: Transform rot: 3.141592653589793 rad @@ -153426,7 +154591,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20975 + - uid: 22392 components: - type: Transform rot: 3.141592653589793 rad @@ -153434,7 +154599,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20976 + - uid: 22393 components: - type: Transform rot: 3.141592653589793 rad @@ -153442,7 +154607,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20977 + - uid: 22394 components: - type: Transform rot: 3.141592653589793 rad @@ -153450,7 +154615,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20978 + - uid: 22395 components: - type: Transform rot: 3.141592653589793 rad @@ -153458,7 +154623,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20979 + - uid: 22396 components: - type: Transform rot: 3.141592653589793 rad @@ -153466,7 +154631,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20980 + - uid: 22397 components: - type: Transform rot: 3.141592653589793 rad @@ -153474,7 +154639,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20981 + - uid: 22398 components: - type: Transform rot: 3.141592653589793 rad @@ -153482,7 +154647,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20982 + - uid: 22399 components: - type: Transform rot: -1.5707963267948966 rad @@ -153490,7 +154655,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20983 + - uid: 22400 components: - type: Transform rot: -1.5707963267948966 rad @@ -153498,14 +154663,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20984 + - uid: 22401 components: - type: Transform pos: 45.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20985 + - uid: 22402 components: - type: Transform rot: -1.5707963267948966 rad @@ -153513,7 +154678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20986 + - uid: 22403 components: - type: Transform rot: -1.5707963267948966 rad @@ -153521,7 +154686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20987 + - uid: 22404 components: - type: Transform rot: -1.5707963267948966 rad @@ -153529,7 +154694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20988 + - uid: 22405 components: - type: Transform rot: -1.5707963267948966 rad @@ -153537,49 +154702,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20989 + - uid: 22406 components: - type: Transform pos: 40.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20990 + - uid: 22407 components: - type: Transform pos: 40.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20991 + - uid: 22408 components: - type: Transform pos: 40.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20992 + - uid: 22409 components: - type: Transform pos: 40.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20993 + - uid: 22410 components: - type: Transform pos: 40.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20994 + - uid: 22411 components: - type: Transform pos: 40.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20995 + - uid: 22412 components: - type: Transform rot: 3.141592653589793 rad @@ -153587,7 +154752,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20996 + - uid: 22413 components: - type: Transform rot: 1.5707963267948966 rad @@ -153595,7 +154760,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20997 + - uid: 22414 components: - type: Transform rot: 1.5707963267948966 rad @@ -153603,7 +154768,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20998 + - uid: 22415 components: - type: Transform rot: 1.5707963267948966 rad @@ -153611,28 +154776,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20999 + - uid: 22416 components: - type: Transform pos: -43.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21000 + - uid: 22417 components: - type: Transform pos: -43.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21001 + - uid: 22418 components: - type: Transform pos: -43.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21002 + - uid: 22419 components: - type: Transform rot: 1.5707963267948966 rad @@ -153640,98 +154805,98 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21003 + - uid: 22420 components: - type: Transform pos: -43.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21004 + - uid: 22421 components: - type: Transform pos: -43.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21005 + - uid: 22422 components: - type: Transform pos: -43.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21006 + - uid: 22423 components: - type: Transform pos: -43.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21007 + - uid: 22424 components: - type: Transform pos: -41.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21008 + - uid: 22425 components: - type: Transform pos: -41.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21009 + - uid: 22426 components: - type: Transform pos: -41.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21010 + - uid: 22427 components: - type: Transform pos: -41.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21011 + - uid: 22428 components: - type: Transform pos: -41.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21012 + - uid: 22429 components: - type: Transform pos: -41.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21013 + - uid: 22430 components: - type: Transform pos: -41.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21014 + - uid: 22431 components: - type: Transform pos: -41.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21015 + - uid: 22432 components: - type: Transform pos: -41.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21016 + - uid: 22433 components: - type: Transform rot: -1.5707963267948966 rad @@ -153739,7 +154904,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21017 + - uid: 22434 components: - type: Transform rot: -1.5707963267948966 rad @@ -153747,7 +154912,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21018 + - uid: 22435 components: - type: Transform rot: -1.5707963267948966 rad @@ -153755,7 +154920,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21019 + - uid: 22436 components: - type: Transform rot: -1.5707963267948966 rad @@ -153763,7 +154928,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21020 + - uid: 22437 components: - type: Transform rot: -1.5707963267948966 rad @@ -153771,7 +154936,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21021 + - uid: 22438 components: - type: Transform rot: -1.5707963267948966 rad @@ -153779,7 +154944,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21022 + - uid: 22439 components: - type: Transform rot: -1.5707963267948966 rad @@ -153787,7 +154952,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21023 + - uid: 22440 components: - type: Transform rot: -1.5707963267948966 rad @@ -153795,7 +154960,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21024 + - uid: 22441 components: - type: Transform rot: -1.5707963267948966 rad @@ -153803,7 +154968,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21025 + - uid: 22442 components: - type: Transform rot: -1.5707963267948966 rad @@ -153811,7 +154976,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21026 + - uid: 22443 components: - type: Transform rot: -1.5707963267948966 rad @@ -153819,7 +154984,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21027 + - uid: 22444 components: - type: Transform rot: -1.5707963267948966 rad @@ -153827,7 +154992,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21028 + - uid: 22445 components: - type: Transform rot: 3.141592653589793 rad @@ -153835,7 +155000,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21029 + - uid: 22446 components: - type: Transform rot: 3.141592653589793 rad @@ -153843,7 +155008,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21030 + - uid: 22447 components: - type: Transform rot: 3.141592653589793 rad @@ -153851,7 +155016,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21031 + - uid: 22448 components: - type: Transform rot: 3.141592653589793 rad @@ -153859,7 +155024,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21032 + - uid: 22449 components: - type: Transform rot: 3.141592653589793 rad @@ -153867,7 +155032,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21033 + - uid: 22450 components: - type: Transform rot: 3.141592653589793 rad @@ -153875,7 +155040,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21034 + - uid: 22451 components: - type: Transform rot: 3.141592653589793 rad @@ -153883,7 +155048,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21035 + - uid: 22452 components: - type: Transform rot: 1.5707963267948966 rad @@ -153891,7 +155056,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21036 + - uid: 22453 components: - type: Transform rot: 1.5707963267948966 rad @@ -153899,7 +155064,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21037 + - uid: 22454 components: - type: Transform rot: 1.5707963267948966 rad @@ -153907,7 +155072,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21080 + - uid: 22455 components: - type: Transform rot: 3.141592653589793 rad @@ -153915,7 +155080,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21081 + - uid: 22456 components: - type: Transform rot: 3.141592653589793 rad @@ -153923,7 +155088,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21082 + - uid: 22457 components: - type: Transform rot: 3.141592653589793 rad @@ -153931,7 +155096,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21083 + - uid: 22458 components: - type: Transform rot: 3.141592653589793 rad @@ -153939,7 +155104,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21084 + - uid: 22459 components: - type: Transform rot: 1.5707963267948966 rad @@ -153947,7 +155112,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21085 + - uid: 22460 components: - type: Transform rot: 1.5707963267948966 rad @@ -153955,7 +155120,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21086 + - uid: 22461 components: - type: Transform rot: 1.5707963267948966 rad @@ -153963,7 +155128,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21087 + - uid: 22462 components: - type: Transform rot: 1.5707963267948966 rad @@ -153971,7 +155136,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21088 + - uid: 22463 components: - type: Transform rot: 1.5707963267948966 rad @@ -153979,7 +155144,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21089 + - uid: 22464 components: - type: Transform rot: 1.5707963267948966 rad @@ -153987,7 +155152,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21090 + - uid: 22465 components: - type: Transform rot: 1.5707963267948966 rad @@ -153995,7 +155160,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21091 + - uid: 22466 components: - type: Transform rot: 1.5707963267948966 rad @@ -154003,7 +155168,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21092 + - uid: 22467 components: - type: Transform rot: 1.5707963267948966 rad @@ -154011,14 +155176,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21093 + - uid: 22468 components: - type: Transform pos: -39.5,-93.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21094 + - uid: 22469 components: - type: Transform rot: -1.5707963267948966 rad @@ -154026,7 +155191,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21095 + - uid: 22470 components: - type: Transform rot: -1.5707963267948966 rad @@ -154034,7 +155199,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21096 + - uid: 22471 components: - type: Transform rot: -1.5707963267948966 rad @@ -154042,7 +155207,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21097 + - uid: 22472 components: - type: Transform rot: -1.5707963267948966 rad @@ -154050,7 +155215,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21098 + - uid: 22473 components: - type: Transform rot: -1.5707963267948966 rad @@ -154058,7 +155223,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21099 + - uid: 22474 components: - type: Transform rot: -1.5707963267948966 rad @@ -154066,7 +155231,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21100 + - uid: 22475 components: - type: Transform rot: -1.5707963267948966 rad @@ -154074,7 +155239,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21103 + - uid: 22476 components: - type: Transform rot: 3.141592653589793 rad @@ -154082,7 +155247,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21104 + - uid: 22477 components: - type: Transform rot: 3.141592653589793 rad @@ -154090,7 +155255,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21105 + - uid: 22478 components: - type: Transform rot: 3.141592653589793 rad @@ -154098,7 +155263,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21106 + - uid: 22479 components: - type: Transform rot: 3.141592653589793 rad @@ -154106,7 +155271,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21107 + - uid: 22480 components: - type: Transform rot: 3.141592653589793 rad @@ -154114,7 +155279,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21108 + - uid: 22481 components: - type: Transform rot: 3.141592653589793 rad @@ -154122,7 +155287,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21109 + - uid: 22482 components: - type: Transform rot: 3.141592653589793 rad @@ -154130,7 +155295,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21110 + - uid: 22483 components: - type: Transform rot: 3.141592653589793 rad @@ -154138,7 +155303,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21111 + - uid: 22484 components: - type: Transform rot: 1.5707963267948966 rad @@ -154146,7 +155311,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21112 + - uid: 22485 components: - type: Transform rot: 1.5707963267948966 rad @@ -154154,7 +155319,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21113 + - uid: 22486 components: - type: Transform rot: 1.5707963267948966 rad @@ -154162,7 +155327,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21114 + - uid: 22487 components: - type: Transform rot: 1.5707963267948966 rad @@ -154170,7 +155335,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21115 + - uid: 22488 components: - type: Transform rot: 1.5707963267948966 rad @@ -154178,7 +155343,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21116 + - uid: 22489 components: - type: Transform rot: 1.5707963267948966 rad @@ -154186,7 +155351,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21117 + - uid: 22490 components: - type: Transform rot: 1.5707963267948966 rad @@ -154194,7 +155359,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21118 + - uid: 22491 components: - type: Transform rot: 1.5707963267948966 rad @@ -154202,7 +155367,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21119 + - uid: 22492 components: - type: Transform rot: 1.5707963267948966 rad @@ -154210,7 +155375,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21120 + - uid: 22493 components: - type: Transform rot: 1.5707963267948966 rad @@ -154218,7 +155383,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21121 + - uid: 22494 components: - type: Transform rot: 1.5707963267948966 rad @@ -154226,7 +155391,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21122 + - uid: 22495 components: - type: Transform rot: 1.5707963267948966 rad @@ -154234,7 +155399,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21123 + - uid: 22496 components: - type: Transform rot: 1.5707963267948966 rad @@ -154242,7 +155407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21124 + - uid: 22497 components: - type: Transform rot: -1.5707963267948966 rad @@ -154250,7 +155415,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21125 + - uid: 22498 components: - type: Transform rot: -1.5707963267948966 rad @@ -154258,7 +155423,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21126 + - uid: 22499 components: - type: Transform rot: -1.5707963267948966 rad @@ -154266,7 +155431,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21127 + - uid: 22500 components: - type: Transform rot: -1.5707963267948966 rad @@ -154274,7 +155439,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21128 + - uid: 22501 components: - type: Transform rot: -1.5707963267948966 rad @@ -154282,7 +155447,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21129 + - uid: 22502 components: - type: Transform rot: -1.5707963267948966 rad @@ -154290,7 +155455,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21130 + - uid: 22503 components: - type: Transform rot: -1.5707963267948966 rad @@ -154298,7 +155463,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21131 + - uid: 22504 components: - type: Transform rot: -1.5707963267948966 rad @@ -154306,7 +155471,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21132 + - uid: 22505 components: - type: Transform rot: -1.5707963267948966 rad @@ -154314,7 +155479,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21133 + - uid: 22506 components: - type: Transform rot: -1.5707963267948966 rad @@ -154322,7 +155487,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21134 + - uid: 22507 components: - type: Transform rot: -1.5707963267948966 rad @@ -154330,7 +155495,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21135 + - uid: 22508 components: - type: Transform rot: -1.5707963267948966 rad @@ -154338,7 +155503,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21136 + - uid: 22509 components: - type: Transform rot: -1.5707963267948966 rad @@ -154346,7 +155511,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21137 + - uid: 22510 components: - type: Transform rot: -1.5707963267948966 rad @@ -154354,7 +155519,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21138 + - uid: 22511 components: - type: Transform rot: 1.5707963267948966 rad @@ -154362,7 +155527,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21139 + - uid: 22512 components: - type: Transform rot: 1.5707963267948966 rad @@ -154370,7 +155535,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21140 + - uid: 22513 components: - type: Transform rot: 1.5707963267948966 rad @@ -154378,7 +155543,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21141 + - uid: 22514 components: - type: Transform rot: 3.141592653589793 rad @@ -154386,7 +155551,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21142 + - uid: 22515 components: - type: Transform rot: 3.141592653589793 rad @@ -154394,28 +155559,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21143 + - uid: 22516 components: - type: Transform pos: -7.5,-97.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21144 + - uid: 22517 components: - type: Transform pos: -6.5,-96.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21145 + - uid: 22518 components: - type: Transform pos: -6.5,-97.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21146 + - uid: 22519 components: - type: Transform rot: -1.5707963267948966 rad @@ -154423,7 +155588,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21147 + - uid: 22520 components: - type: Transform rot: -1.5707963267948966 rad @@ -154431,7 +155596,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21148 + - uid: 22521 components: - type: Transform rot: -1.5707963267948966 rad @@ -154439,7 +155604,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21149 + - uid: 22522 components: - type: Transform rot: -1.5707963267948966 rad @@ -154447,7 +155612,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21150 + - uid: 22523 components: - type: Transform rot: -1.5707963267948966 rad @@ -154455,7 +155620,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21151 + - uid: 22524 components: - type: Transform rot: -1.5707963267948966 rad @@ -154463,7 +155628,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21152 + - uid: 22525 components: - type: Transform rot: -1.5707963267948966 rad @@ -154471,7 +155636,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21153 + - uid: 22526 components: - type: Transform rot: -1.5707963267948966 rad @@ -154479,7 +155644,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21154 + - uid: 22527 components: - type: Transform rot: -1.5707963267948966 rad @@ -154487,7 +155652,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21155 + - uid: 22528 components: - type: Transform rot: 3.141592653589793 rad @@ -154495,7 +155660,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21156 + - uid: 22529 components: - type: Transform rot: 3.141592653589793 rad @@ -154503,7 +155668,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21157 + - uid: 22530 components: - type: Transform rot: 1.5707963267948966 rad @@ -154511,7 +155676,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21158 + - uid: 22531 components: - type: Transform rot: 1.5707963267948966 rad @@ -154519,7 +155684,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21159 + - uid: 22532 components: - type: Transform rot: 1.5707963267948966 rad @@ -154527,7 +155692,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21163 + - uid: 22533 components: - type: Transform rot: 1.5707963267948966 rad @@ -154535,7 +155700,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21164 + - uid: 22534 components: - type: Transform rot: 1.5707963267948966 rad @@ -154543,7 +155708,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21165 + - uid: 22535 components: - type: Transform rot: 1.5707963267948966 rad @@ -154551,7 +155716,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21166 + - uid: 22536 components: - type: Transform rot: 1.5707963267948966 rad @@ -154559,7 +155724,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21167 + - uid: 22537 components: - type: Transform rot: 1.5707963267948966 rad @@ -154567,7 +155732,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21168 + - uid: 22538 components: - type: Transform rot: 1.5707963267948966 rad @@ -154575,7 +155740,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21169 + - uid: 22539 components: - type: Transform rot: 1.5707963267948966 rad @@ -154583,7 +155748,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21170 + - uid: 22540 components: - type: Transform rot: 1.5707963267948966 rad @@ -154591,7 +155756,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21171 + - uid: 22541 components: - type: Transform rot: 3.141592653589793 rad @@ -154599,7 +155764,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21173 + - uid: 22542 components: - type: Transform rot: 1.5707963267948966 rad @@ -154607,7 +155772,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21174 + - uid: 22543 components: - type: Transform rot: -1.5707963267948966 rad @@ -154615,7 +155780,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21177 + - uid: 22544 components: - type: Transform rot: -1.5707963267948966 rad @@ -154623,42 +155788,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21179 + - uid: 22545 components: - type: Transform pos: 43.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21180 + - uid: 22546 components: - type: Transform pos: 43.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21181 + - uid: 22547 components: - type: Transform pos: 44.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21182 + - uid: 22548 components: - type: Transform pos: 44.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21183 + - uid: 22549 components: - type: Transform pos: 44.5,-73.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21184 + - uid: 22550 components: - type: Transform rot: -1.5707963267948966 rad @@ -154666,7 +155831,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21185 + - uid: 22551 components: - type: Transform rot: -1.5707963267948966 rad @@ -154674,14 +155839,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21186 + - uid: 22552 components: - type: Transform pos: 26.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21187 + - uid: 22553 components: - type: Transform rot: 3.141592653589793 rad @@ -154689,7 +155854,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21188 + - uid: 22554 components: - type: Transform rot: -1.5707963267948966 rad @@ -154697,15 +155862,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21190 + - uid: 22555 components: - type: Transform rot: -1.5707963267948966 rad @@ -154713,7 +155870,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21191 + - uid: 22556 components: - type: Transform rot: 3.141592653589793 rad @@ -154721,7 +155878,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21192 + - uid: 22557 components: - type: Transform rot: -1.5707963267948966 rad @@ -154729,7 +155886,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21193 + - uid: 22558 components: - type: Transform rot: -1.5707963267948966 rad @@ -154737,14 +155894,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21194 + - uid: 22559 components: - type: Transform pos: 44.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21195 + - uid: 22560 components: - type: Transform rot: -1.5707963267948966 rad @@ -154752,7 +155909,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21196 + - uid: 22561 components: - type: Transform rot: -1.5707963267948966 rad @@ -154760,7 +155917,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21197 + - uid: 22562 components: - type: Transform rot: 3.141592653589793 rad @@ -154768,7 +155925,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21198 + - uid: 22563 components: - type: Transform rot: -1.5707963267948966 rad @@ -154776,7 +155933,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21199 + - uid: 22564 components: - type: Transform rot: 1.5707963267948966 rad @@ -154784,7 +155941,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21200 + - uid: 22565 components: - type: Transform rot: -1.5707963267948966 rad @@ -154792,7 +155949,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21201 + - uid: 22566 components: - type: Transform rot: -1.5707963267948966 rad @@ -154800,21 +155957,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21202 + - uid: 22567 components: - type: Transform pos: -54.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21203 + - uid: 22568 components: - type: Transform pos: -50.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21204 + - uid: 22569 components: - type: Transform rot: 3.141592653589793 rad @@ -154822,7 +155979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21206 + - uid: 22570 components: - type: Transform rot: 1.5707963267948966 rad @@ -154830,20 +155987,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21207 + - uid: 22571 components: - type: Transform pos: 26.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21208 + - uid: 22572 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-76.5 parent: 2 - - uid: 21209 + - uid: 22573 components: - type: Transform rot: 3.141592653589793 rad @@ -154851,7 +156008,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21210 + - uid: 22574 components: - type: Transform rot: 3.141592653589793 rad @@ -154859,7 +156016,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21211 + - uid: 22575 components: - type: Transform rot: -1.5707963267948966 rad @@ -154867,7 +156024,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21212 + - uid: 22576 components: - type: Transform rot: 3.141592653589793 rad @@ -154875,7 +156032,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21213 + - uid: 22577 components: - type: Transform rot: 3.141592653589793 rad @@ -154883,7 +156040,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21214 + - uid: 22578 components: - type: Transform rot: -1.5707963267948966 rad @@ -154891,7 +156048,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21215 + - uid: 22579 components: - type: Transform rot: 3.141592653589793 rad @@ -154899,7 +156056,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21216 + - uid: 22580 components: - type: Transform rot: -1.5707963267948966 rad @@ -154907,36 +156064,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21217 + - uid: 22581 components: - type: Transform pos: 31.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21218 + - uid: 22582 components: - type: Transform pos: 31.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21220 + - uid: 22583 components: - type: Transform pos: -46.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21221 + - uid: 22584 components: - type: Transform rot: 3.141592653589793 rad @@ -154944,14 +156093,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21222 + - uid: 22585 components: - type: Transform pos: -48.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21223 + - uid: 22586 components: - type: Transform rot: 3.141592653589793 rad @@ -154959,7 +156108,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21225 + - uid: 22587 components: - type: Transform rot: 3.141592653589793 rad @@ -154967,7 +156116,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21226 + - uid: 22588 components: - type: Transform rot: 3.141592653589793 rad @@ -154975,7 +156124,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21227 + - uid: 22589 components: - type: Transform rot: 1.5707963267948966 rad @@ -154983,7 +156132,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21228 + - uid: 22590 components: - type: Transform rot: -1.5707963267948966 rad @@ -154991,7 +156140,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21229 + - uid: 22591 components: - type: Transform rot: -1.5707963267948966 rad @@ -154999,7 +156148,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21230 + - uid: 22592 components: - type: Transform rot: 1.5707963267948966 rad @@ -155007,14 +156156,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21231 + - uid: 22593 components: - type: Transform pos: 31.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21232 + - uid: 22594 components: - type: Transform rot: 3.141592653589793 rad @@ -155022,7 +156171,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21233 + - uid: 22595 components: - type: Transform rot: 3.141592653589793 rad @@ -155030,40 +156179,40 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21234 + - uid: 22596 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-78.5 parent: 2 - - uid: 21235 + - uid: 22597 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-78.5 parent: 2 - - uid: 21241 + - uid: 22598 components: - type: Transform pos: -62.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21243 + - uid: 22599 components: - type: Transform pos: -63.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21244 + - uid: 22600 components: - type: Transform pos: -63.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21247 + - uid: 22601 components: - type: Transform rot: -1.5707963267948966 rad @@ -155071,7 +156220,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21248 + - uid: 22602 components: - type: Transform rot: 3.141592653589793 rad @@ -155079,7 +156228,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21249 + - uid: 22603 components: - type: Transform rot: -1.5707963267948966 rad @@ -155087,7 +156236,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21250 + - uid: 22604 components: - type: Transform rot: -1.5707963267948966 rad @@ -155095,7 +156244,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21254 + - uid: 22605 components: - type: Transform rot: 1.5707963267948966 rad @@ -155103,28 +156252,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21255 + - uid: 22606 components: - type: Transform pos: -54.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21256 + - uid: 22607 components: - type: Transform pos: -62.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21257 + - uid: 22608 components: - type: Transform pos: -63.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21258 + - uid: 22609 components: - type: Transform rot: -1.5707963267948966 rad @@ -155132,15 +156281,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21260 + - uid: 22610 components: - type: Transform rot: 1.5707963267948966 rad @@ -155148,7 +156289,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21261 + - uid: 22611 components: - type: Transform rot: 3.141592653589793 rad @@ -155156,7 +156297,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21262 + - uid: 22612 components: - type: Transform rot: 3.141592653589793 rad @@ -155164,7 +156305,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21263 + - uid: 22613 components: - type: Transform rot: 3.141592653589793 rad @@ -155172,7 +156313,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21264 + - uid: 22614 components: - type: Transform rot: 3.141592653589793 rad @@ -155180,13 +156321,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21265 + - uid: 22615 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-95.5 parent: 2 - - uid: 21266 + - uid: 22616 components: - type: Transform rot: -1.5707963267948966 rad @@ -155194,7 +156335,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 21267 + - uid: 22617 components: - type: Transform rot: -1.5707963267948966 rad @@ -155202,7 +156343,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 21268 + - uid: 22618 components: - type: Transform rot: -1.5707963267948966 rad @@ -155210,7 +156351,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 21269 + - uid: 22619 components: - type: Transform rot: -1.5707963267948966 rad @@ -155218,7 +156359,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 21270 + - uid: 22620 components: - type: Transform rot: -1.5707963267948966 rad @@ -155226,7 +156367,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 21271 + - uid: 22621 components: - type: Transform rot: -1.5707963267948966 rad @@ -155234,7 +156375,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 21272 + - uid: 22622 components: - type: Transform rot: -1.5707963267948966 rad @@ -155242,7 +156383,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 21273 + - uid: 22623 components: - type: Transform rot: -1.5707963267948966 rad @@ -155250,7 +156391,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 21274 + - uid: 22624 components: - type: Transform rot: -1.5707963267948966 rad @@ -155258,7 +156399,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 21275 + - uid: 22625 components: - type: Transform rot: -1.5707963267948966 rad @@ -155266,7 +156407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 21277 + - uid: 22626 components: - type: Transform rot: 1.5707963267948966 rad @@ -155274,23 +156415,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21298 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 21045 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 21045 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21307 + - uid: 22627 components: - type: Transform rot: 1.5707963267948966 rad @@ -155298,19 +156423,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21318 + - uid: 22628 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-73.5 parent: 2 - - uid: 21319 + - uid: 22629 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-73.5 parent: 2 - - uid: 21320 + - uid: 22630 components: - type: Transform rot: 1.5707963267948966 rad @@ -155318,7 +156443,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21321 + - uid: 22631 components: - type: Transform rot: 1.5707963267948966 rad @@ -155326,7 +156451,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21322 + - uid: 22632 components: - type: Transform rot: 1.5707963267948966 rad @@ -155334,7 +156459,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21323 + - uid: 22633 components: - type: Transform rot: 1.5707963267948966 rad @@ -155342,7 +156467,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21324 + - uid: 22634 components: - type: Transform rot: 1.5707963267948966 rad @@ -155350,7 +156475,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21325 + - uid: 22635 components: - type: Transform rot: 1.5707963267948966 rad @@ -155358,7 +156483,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21326 + - uid: 22636 components: - type: Transform rot: 3.141592653589793 rad @@ -155366,7 +156491,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21327 + - uid: 22637 components: - type: Transform rot: 3.141592653589793 rad @@ -155374,7 +156499,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21328 + - uid: 22638 components: - type: Transform rot: 3.141592653589793 rad @@ -155382,7 +156507,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21329 + - uid: 22639 components: - type: Transform rot: 3.141592653589793 rad @@ -155390,7 +156515,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21330 + - uid: 22640 components: - type: Transform rot: 3.141592653589793 rad @@ -155398,7 +156523,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21331 + - uid: 22641 components: - type: Transform rot: 3.141592653589793 rad @@ -155406,7 +156531,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21332 + - uid: 22642 components: - type: Transform rot: 3.141592653589793 rad @@ -155414,7 +156539,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21333 + - uid: 22643 components: - type: Transform rot: 3.141592653589793 rad @@ -155422,7 +156547,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21334 + - uid: 22644 components: - type: Transform rot: -1.5707963267948966 rad @@ -155430,7 +156555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21335 + - uid: 22645 components: - type: Transform rot: -1.5707963267948966 rad @@ -155438,7 +156563,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21336 + - uid: 22646 components: - type: Transform rot: -1.5707963267948966 rad @@ -155446,7 +156571,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21337 + - uid: 22647 components: - type: Transform rot: -1.5707963267948966 rad @@ -155454,7 +156579,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21338 + - uid: 22648 components: - type: Transform rot: -1.5707963267948966 rad @@ -155462,7 +156587,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21339 + - uid: 22649 components: - type: Transform rot: -1.5707963267948966 rad @@ -155470,7 +156595,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21340 + - uid: 22650 components: - type: Transform rot: -1.5707963267948966 rad @@ -155478,7 +156603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21341 + - uid: 22651 components: - type: Transform rot: -1.5707963267948966 rad @@ -155486,7 +156611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21342 + - uid: 22652 components: - type: Transform rot: 3.141592653589793 rad @@ -155494,7 +156619,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21343 + - uid: 22653 components: - type: Transform rot: 3.141592653589793 rad @@ -155502,7 +156627,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21344 + - uid: 22654 components: - type: Transform rot: 3.141592653589793 rad @@ -155510,7 +156635,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21345 + - uid: 22655 components: - type: Transform rot: 3.141592653589793 rad @@ -155518,7 +156643,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21346 + - uid: 22656 components: - type: Transform rot: 3.141592653589793 rad @@ -155526,7 +156651,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21347 + - uid: 22657 components: - type: Transform rot: 3.141592653589793 rad @@ -155534,7 +156659,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21348 + - uid: 22658 components: - type: Transform rot: 1.5707963267948966 rad @@ -155542,7 +156667,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21349 + - uid: 22659 components: - type: Transform rot: 1.5707963267948966 rad @@ -155550,7 +156675,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21350 + - uid: 22660 components: - type: Transform rot: 1.5707963267948966 rad @@ -155558,7 +156683,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21351 + - uid: 22661 components: - type: Transform rot: 1.5707963267948966 rad @@ -155566,28 +156691,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21352 + - uid: 22662 components: - type: Transform pos: -73.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21353 + - uid: 22663 components: - type: Transform pos: -73.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21354 + - uid: 22664 components: - type: Transform pos: -73.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21355 + - uid: 22665 components: - type: Transform rot: 3.141592653589793 rad @@ -155595,7 +156720,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21356 + - uid: 22666 components: - type: Transform rot: 3.141592653589793 rad @@ -155603,7 +156728,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21357 + - uid: 22667 components: - type: Transform rot: 3.141592653589793 rad @@ -155611,7 +156736,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21358 + - uid: 22668 components: - type: Transform rot: 3.141592653589793 rad @@ -155619,7 +156744,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21359 + - uid: 22669 components: - type: Transform rot: 3.141592653589793 rad @@ -155627,7 +156752,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21360 + - uid: 22670 components: - type: Transform rot: 3.141592653589793 rad @@ -155635,7 +156760,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21361 + - uid: 22671 components: - type: Transform rot: 3.141592653589793 rad @@ -155643,7 +156768,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21362 + - uid: 22672 components: - type: Transform rot: 3.141592653589793 rad @@ -155651,7 +156776,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21363 + - uid: 22673 components: - type: Transform rot: 3.141592653589793 rad @@ -155659,7 +156784,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21364 + - uid: 22674 components: - type: Transform rot: 3.141592653589793 rad @@ -155667,7 +156792,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21365 + - uid: 22675 components: - type: Transform rot: 3.141592653589793 rad @@ -155675,7 +156800,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21366 + - uid: 22676 components: - type: Transform rot: -1.5707963267948966 rad @@ -155683,7 +156808,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21367 + - uid: 22677 components: - type: Transform rot: -1.5707963267948966 rad @@ -155691,7 +156816,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21368 + - uid: 22678 components: - type: Transform rot: -1.5707963267948966 rad @@ -155699,7 +156824,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21369 + - uid: 22679 components: - type: Transform rot: -1.5707963267948966 rad @@ -155707,7 +156832,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21370 + - uid: 22680 components: - type: Transform rot: -1.5707963267948966 rad @@ -155715,7 +156840,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21371 + - uid: 22681 components: - type: Transform rot: -1.5707963267948966 rad @@ -155723,7 +156848,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21372 + - uid: 22682 components: - type: Transform rot: -1.5707963267948966 rad @@ -155731,7 +156856,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21373 + - uid: 22683 components: - type: Transform rot: 3.141592653589793 rad @@ -155739,7 +156864,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21374 + - uid: 22684 components: - type: Transform rot: 3.141592653589793 rad @@ -155747,7 +156872,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21375 + - uid: 22685 components: - type: Transform rot: 3.141592653589793 rad @@ -155755,7 +156880,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21376 + - uid: 22686 components: - type: Transform rot: 3.141592653589793 rad @@ -155763,7 +156888,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21377 + - uid: 22687 components: - type: Transform rot: 3.141592653589793 rad @@ -155771,7 +156896,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21378 + - uid: 22688 components: - type: Transform rot: 3.141592653589793 rad @@ -155779,7 +156904,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21379 + - uid: 22689 components: - type: Transform rot: 3.141592653589793 rad @@ -155787,7 +156912,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21380 + - uid: 22690 components: - type: Transform rot: 3.141592653589793 rad @@ -155795,7 +156920,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21381 + - uid: 22691 components: - type: Transform rot: 3.141592653589793 rad @@ -155803,7 +156928,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21382 + - uid: 22692 components: - type: Transform rot: 1.5707963267948966 rad @@ -155811,7 +156936,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21383 + - uid: 22693 components: - type: Transform rot: 1.5707963267948966 rad @@ -155819,7 +156944,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21384 + - uid: 22694 components: - type: Transform rot: 3.141592653589793 rad @@ -155827,7 +156952,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21385 + - uid: 22695 components: - type: Transform rot: 3.141592653589793 rad @@ -155835,7 +156960,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21386 + - uid: 22696 components: - type: Transform rot: 3.141592653589793 rad @@ -155843,7 +156968,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21387 + - uid: 22697 components: - type: Transform rot: 3.141592653589793 rad @@ -155851,7 +156976,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21388 + - uid: 22698 components: - type: Transform rot: 3.141592653589793 rad @@ -155859,7 +156984,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21389 + - uid: 22699 components: - type: Transform rot: 3.141592653589793 rad @@ -155867,7 +156992,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21390 + - uid: 22700 components: - type: Transform rot: 3.141592653589793 rad @@ -155875,7 +157000,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21391 + - uid: 22701 components: - type: Transform rot: 3.141592653589793 rad @@ -155883,7 +157008,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21392 + - uid: 22702 components: - type: Transform rot: 1.5707963267948966 rad @@ -155891,7 +157016,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21393 + - uid: 22703 components: - type: Transform rot: 1.5707963267948966 rad @@ -155899,7 +157024,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21394 + - uid: 22704 components: - type: Transform rot: 1.5707963267948966 rad @@ -155907,14 +157032,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21395 + - uid: 22705 components: - type: Transform pos: -77.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21396 + - uid: 22706 components: - type: Transform rot: 1.5707963267948966 rad @@ -155922,7 +157047,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21397 + - uid: 22707 components: - type: Transform rot: 1.5707963267948966 rad @@ -155930,7 +157055,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21398 + - uid: 22708 components: - type: Transform rot: 3.141592653589793 rad @@ -155938,77 +157063,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21399 + - uid: 22709 components: - type: Transform pos: -77.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21400 + - uid: 22710 components: - type: Transform pos: -77.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21401 + - uid: 22711 components: - type: Transform pos: -77.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21402 + - uid: 22712 components: - type: Transform pos: -77.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21403 + - uid: 22713 components: - type: Transform pos: -77.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21404 + - uid: 22714 components: - type: Transform pos: -77.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21405 + - uid: 22715 components: - type: Transform pos: -77.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21406 + - uid: 22716 components: - type: Transform pos: -77.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21407 + - uid: 22717 components: - type: Transform pos: -77.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21408 + - uid: 22718 components: - type: Transform pos: -77.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21409 + - uid: 22719 components: - type: Transform rot: 3.141592653589793 rad @@ -156016,7 +157141,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21410 + - uid: 22720 components: - type: Transform rot: 3.141592653589793 rad @@ -156024,7 +157149,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21411 + - uid: 22721 components: - type: Transform rot: 3.141592653589793 rad @@ -156032,7 +157157,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21412 + - uid: 22722 components: - type: Transform rot: 3.141592653589793 rad @@ -156040,7 +157165,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21413 + - uid: 22723 components: - type: Transform rot: 3.141592653589793 rad @@ -156048,7 +157173,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21414 + - uid: 22724 components: - type: Transform rot: 3.141592653589793 rad @@ -156056,7 +157181,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21415 + - uid: 22725 components: - type: Transform rot: 3.141592653589793 rad @@ -156064,7 +157189,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21416 + - uid: 22726 components: - type: Transform rot: 3.141592653589793 rad @@ -156072,7 +157197,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21417 + - uid: 22727 components: - type: Transform rot: 3.141592653589793 rad @@ -156080,7 +157205,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21418 + - uid: 22728 components: - type: Transform rot: 3.141592653589793 rad @@ -156088,7 +157213,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21419 + - uid: 22729 components: - type: Transform rot: 3.141592653589793 rad @@ -156096,7 +157221,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21420 + - uid: 22730 components: - type: Transform rot: 3.141592653589793 rad @@ -156104,7 +157229,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21421 + - uid: 22731 components: - type: Transform rot: 3.141592653589793 rad @@ -156112,7 +157237,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21422 + - uid: 22732 components: - type: Transform rot: 3.141592653589793 rad @@ -156120,7 +157245,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21423 + - uid: 22733 components: - type: Transform rot: 3.141592653589793 rad @@ -156128,7 +157253,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21424 + - uid: 22734 components: - type: Transform rot: 3.141592653589793 rad @@ -156136,7 +157261,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21425 + - uid: 22735 components: - type: Transform rot: 3.141592653589793 rad @@ -156144,7 +157269,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21426 + - uid: 22736 components: - type: Transform rot: 3.141592653589793 rad @@ -156152,7 +157277,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21427 + - uid: 22737 components: - type: Transform rot: 3.141592653589793 rad @@ -156160,7 +157285,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21428 + - uid: 22738 components: - type: Transform rot: 3.141592653589793 rad @@ -156168,7 +157293,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21429 + - uid: 22739 components: - type: Transform rot: 1.5707963267948966 rad @@ -156176,7 +157301,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21430 + - uid: 22740 components: - type: Transform rot: 1.5707963267948966 rad @@ -156184,7 +157309,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21431 + - uid: 22741 components: - type: Transform rot: 1.5707963267948966 rad @@ -156192,7 +157317,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21432 + - uid: 22742 components: - type: Transform rot: 1.5707963267948966 rad @@ -156200,7 +157325,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21433 + - uid: 22743 components: - type: Transform rot: 1.5707963267948966 rad @@ -156208,7 +157333,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21434 + - uid: 22744 components: - type: Transform rot: 1.5707963267948966 rad @@ -156216,7 +157341,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21435 + - uid: 22745 components: - type: Transform rot: 1.5707963267948966 rad @@ -156224,7 +157349,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21436 + - uid: 22746 components: - type: Transform rot: 1.5707963267948966 rad @@ -156232,7 +157357,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21437 + - uid: 22747 components: - type: Transform rot: 1.5707963267948966 rad @@ -156240,7 +157365,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21438 + - uid: 22748 components: - type: Transform rot: 1.5707963267948966 rad @@ -156248,7 +157373,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21439 + - uid: 22749 components: - type: Transform rot: 1.5707963267948966 rad @@ -156256,7 +157381,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21440 + - uid: 22750 components: - type: Transform rot: 1.5707963267948966 rad @@ -156264,7 +157389,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21441 + - uid: 22751 components: - type: Transform rot: 1.5707963267948966 rad @@ -156272,7 +157397,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21442 + - uid: 22752 components: - type: Transform rot: 1.5707963267948966 rad @@ -156280,7 +157405,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21443 + - uid: 22753 components: - type: Transform rot: 1.5707963267948966 rad @@ -156288,7 +157413,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21444 + - uid: 22754 components: - type: Transform rot: 1.5707963267948966 rad @@ -156296,7 +157421,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21445 + - uid: 22755 components: - type: Transform rot: 1.5707963267948966 rad @@ -156304,7 +157429,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21446 + - uid: 22756 components: - type: Transform rot: 1.5707963267948966 rad @@ -156312,7 +157437,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21447 + - uid: 22757 components: - type: Transform rot: 1.5707963267948966 rad @@ -156320,7 +157445,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21448 + - uid: 22758 components: - type: Transform rot: 1.5707963267948966 rad @@ -156328,14 +157453,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21449 + - uid: 22759 components: - type: Transform pos: -56.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21450 + - uid: 22760 components: - type: Transform rot: -1.5707963267948966 rad @@ -156343,7 +157468,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21451 + - uid: 22761 components: - type: Transform rot: -1.5707963267948966 rad @@ -156351,7 +157476,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21452 + - uid: 22762 components: - type: Transform rot: 3.141592653589793 rad @@ -156359,7 +157484,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21453 + - uid: 22763 components: - type: Transform rot: 3.141592653589793 rad @@ -156367,7 +157492,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21454 + - uid: 22764 components: - type: Transform rot: 3.141592653589793 rad @@ -156375,7 +157500,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21455 + - uid: 22765 components: - type: Transform rot: 1.5707963267948966 rad @@ -156383,7 +157508,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21456 + - uid: 22766 components: - type: Transform rot: 1.5707963267948966 rad @@ -156391,7 +157516,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21457 + - uid: 22767 components: - type: Transform rot: 1.5707963267948966 rad @@ -156399,35 +157524,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21458 + - uid: 22768 components: - type: Transform pos: -49.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21459 + - uid: 22769 components: - type: Transform pos: -49.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21460 + - uid: 22770 components: - type: Transform pos: -49.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21461 + - uid: 22771 components: - type: Transform pos: -49.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21462 + - uid: 22772 components: - type: Transform rot: -1.5707963267948966 rad @@ -156435,7 +157560,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21463 + - uid: 22773 components: - type: Transform rot: -1.5707963267948966 rad @@ -156443,7 +157568,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21464 + - uid: 22774 components: - type: Transform rot: -1.5707963267948966 rad @@ -156451,21 +157576,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21465 + - uid: 22775 components: - type: Transform pos: 98.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21466 + - uid: 22776 components: - type: Transform pos: 98.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21467 + - uid: 22777 components: - type: Transform rot: 1.5707963267948966 rad @@ -156473,21 +157598,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21468 + - uid: 22778 components: - type: Transform pos: 100.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21469 + - uid: 22779 components: - type: Transform pos: 96.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21470 + - uid: 22780 components: - type: Transform rot: 1.5707963267948966 rad @@ -156495,49 +157620,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21471 + - uid: 22781 components: - type: Transform pos: 97.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21472 + - uid: 22782 components: - type: Transform pos: 97.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21473 + - uid: 22783 components: - type: Transform pos: 97.5,-89.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21474 + - uid: 22784 components: - type: Transform pos: 97.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21475 + - uid: 22785 components: - type: Transform pos: 97.5,-84.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21476 + - uid: 22786 components: - type: Transform pos: 97.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21477 + - uid: 22787 components: - type: Transform rot: -1.5707963267948966 rad @@ -156545,7 +157670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21478 + - uid: 22788 components: - type: Transform rot: -1.5707963267948966 rad @@ -156553,42 +157678,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21479 + - uid: 22789 components: - type: Transform pos: 98.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21480 + - uid: 22790 components: - type: Transform pos: 98.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21481 + - uid: 22791 components: - type: Transform pos: 98.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21482 + - uid: 22792 components: - type: Transform pos: 97.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21483 + - uid: 22793 components: - type: Transform pos: 97.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21484 + - uid: 22794 components: - type: Transform rot: 1.5707963267948966 rad @@ -156596,7 +157721,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21485 + - uid: 22795 components: - type: Transform rot: 1.5707963267948966 rad @@ -156604,7 +157729,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21486 + - uid: 22796 components: - type: Transform rot: 1.5707963267948966 rad @@ -156612,7 +157737,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21487 + - uid: 22797 components: - type: Transform rot: 1.5707963267948966 rad @@ -156620,7 +157745,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21488 + - uid: 22798 components: - type: Transform rot: 1.5707963267948966 rad @@ -156628,7 +157753,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21489 + - uid: 22799 components: - type: Transform rot: 1.5707963267948966 rad @@ -156636,7 +157761,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21490 + - uid: 22800 components: - type: Transform rot: 1.5707963267948966 rad @@ -156644,7 +157769,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21491 + - uid: 22801 components: - type: Transform rot: 3.141592653589793 rad @@ -156652,7 +157777,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21492 + - uid: 22802 components: - type: Transform rot: 3.141592653589793 rad @@ -156660,7 +157785,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21493 + - uid: 22803 components: - type: Transform rot: 3.141592653589793 rad @@ -156668,7 +157793,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21494 + - uid: 22804 components: - type: Transform rot: 3.141592653589793 rad @@ -156676,7 +157801,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21495 + - uid: 22805 components: - type: Transform rot: 3.141592653589793 rad @@ -156684,7 +157809,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21496 + - uid: 22806 components: - type: Transform rot: 3.141592653589793 rad @@ -156692,7 +157817,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21497 + - uid: 22807 components: - type: Transform rot: 3.141592653589793 rad @@ -156700,7 +157825,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21498 + - uid: 22808 components: - type: Transform rot: 3.141592653589793 rad @@ -156708,15 +157833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21499 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 97.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21500 + - uid: 22809 components: - type: Transform rot: 3.141592653589793 rad @@ -156724,63 +157841,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21501 + - uid: 22810 components: - type: Transform pos: 97.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21502 + - uid: 22811 components: - type: Transform pos: 97.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21503 + - uid: 22812 components: - type: Transform pos: 97.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21504 + - uid: 22813 components: - type: Transform pos: 97.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21505 + - uid: 22814 components: - type: Transform pos: 99.5,-72.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21506 + - uid: 22815 components: - type: Transform pos: 99.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21507 + - uid: 22816 components: - type: Transform pos: 99.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21508 + - uid: 22817 components: - type: Transform pos: 99.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21509 + - uid: 22818 components: - type: Transform rot: 3.141592653589793 rad @@ -156788,49 +157905,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21510 + - uid: 22819 components: - type: Transform pos: 99.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21511 + - uid: 22820 components: - type: Transform pos: 99.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21512 + - uid: 22821 components: - type: Transform pos: 97.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21513 + - uid: 22822 components: - type: Transform pos: 97.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21514 + - uid: 22823 components: - type: Transform pos: 97.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21515 + - uid: 22824 components: - type: Transform pos: 99.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21516 + - uid: 22825 components: - type: Transform rot: 3.141592653589793 rad @@ -156838,7 +157955,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21517 + - uid: 22826 components: - type: Transform rot: -1.5707963267948966 rad @@ -156846,7 +157963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21518 + - uid: 22827 components: - type: Transform rot: -1.5707963267948966 rad @@ -156854,7 +157971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21519 + - uid: 22828 components: - type: Transform rot: -1.5707963267948966 rad @@ -156862,7 +157979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21520 + - uid: 22829 components: - type: Transform rot: -1.5707963267948966 rad @@ -156870,7 +157987,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21521 + - uid: 22830 components: - type: Transform rot: -1.5707963267948966 rad @@ -156878,7 +157995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21522 + - uid: 22831 components: - type: Transform rot: -1.5707963267948966 rad @@ -156886,7 +158003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21523 + - uid: 22832 components: - type: Transform rot: -1.5707963267948966 rad @@ -156894,7 +158011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21524 + - uid: 22833 components: - type: Transform rot: -1.5707963267948966 rad @@ -156902,7 +158019,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21525 + - uid: 22834 components: - type: Transform rot: -1.5707963267948966 rad @@ -156910,7 +158027,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21526 + - uid: 22835 components: - type: Transform rot: -1.5707963267948966 rad @@ -156918,7 +158035,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21527 + - uid: 22836 components: - type: Transform rot: -1.5707963267948966 rad @@ -156926,7 +158043,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21528 + - uid: 22837 components: - type: Transform rot: -1.5707963267948966 rad @@ -156934,7 +158051,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21529 + - uid: 22838 components: - type: Transform rot: -1.5707963267948966 rad @@ -156942,7 +158059,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21530 + - uid: 22839 components: - type: Transform rot: -1.5707963267948966 rad @@ -156950,7 +158067,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21531 + - uid: 22840 components: - type: Transform rot: 3.141592653589793 rad @@ -156958,15 +158075,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21537 + - uid: 22841 components: - type: Transform rot: 1.5707963267948966 rad @@ -156974,7 +158083,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21538 + - uid: 22842 components: - type: Transform rot: 1.5707963267948966 rad @@ -156982,7 +158091,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21539 + - uid: 22843 components: - type: Transform rot: 1.5707963267948966 rad @@ -156990,7 +158099,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21540 + - uid: 22844 components: - type: Transform rot: 1.5707963267948966 rad @@ -156998,7 +158107,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21541 + - uid: 22845 components: - type: Transform rot: 1.5707963267948966 rad @@ -157006,7 +158115,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21542 + - uid: 22846 components: - type: Transform rot: 1.5707963267948966 rad @@ -157014,7 +158123,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21543 + - uid: 22847 components: - type: Transform rot: 3.141592653589793 rad @@ -157022,7 +158131,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21544 + - uid: 22848 components: - type: Transform rot: 3.141592653589793 rad @@ -157030,7 +158139,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21545 + - uid: 22849 components: - type: Transform rot: 3.141592653589793 rad @@ -157038,7 +158147,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21546 + - uid: 22850 components: - type: Transform rot: 3.141592653589793 rad @@ -157046,7 +158155,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21547 + - uid: 22851 components: - type: Transform rot: 3.141592653589793 rad @@ -157054,7 +158163,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21548 + - uid: 22852 components: - type: Transform rot: 3.141592653589793 rad @@ -157062,7 +158171,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21549 + - uid: 22853 components: - type: Transform rot: 3.141592653589793 rad @@ -157070,7 +158179,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21550 + - uid: 22854 components: - type: Transform rot: 3.141592653589793 rad @@ -157078,7 +158187,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21551 + - uid: 22855 components: - type: Transform rot: 1.5707963267948966 rad @@ -157086,7 +158195,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21552 + - uid: 22856 components: - type: Transform rot: 1.5707963267948966 rad @@ -157094,7 +158203,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21553 + - uid: 22857 components: - type: Transform rot: 1.5707963267948966 rad @@ -157102,7 +158211,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21554 + - uid: 22858 components: - type: Transform rot: 1.5707963267948966 rad @@ -157110,7 +158219,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21555 + - uid: 22859 components: - type: Transform rot: 1.5707963267948966 rad @@ -157118,7 +158227,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21556 + - uid: 22860 components: - type: Transform rot: 3.141592653589793 rad @@ -157126,7 +158235,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21557 + - uid: 22861 components: - type: Transform rot: -1.5707963267948966 rad @@ -157134,7 +158243,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21558 + - uid: 22862 components: - type: Transform rot: -1.5707963267948966 rad @@ -157142,7 +158251,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21559 + - uid: 22863 components: - type: Transform rot: -1.5707963267948966 rad @@ -157150,7 +158259,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21560 + - uid: 22864 components: - type: Transform rot: -1.5707963267948966 rad @@ -157158,7 +158267,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21561 + - uid: 22865 components: - type: Transform rot: -1.5707963267948966 rad @@ -157166,7 +158275,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21562 + - uid: 22866 components: - type: Transform rot: -1.5707963267948966 rad @@ -157174,7 +158283,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21565 + - uid: 22867 components: - type: Transform rot: 1.5707963267948966 rad @@ -157182,63 +158291,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21566 + - uid: 22868 components: - type: Transform pos: 34.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21567 + - uid: 22869 components: - type: Transform pos: 34.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21568 + - uid: 22870 components: - type: Transform pos: 34.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21569 + - uid: 22871 components: - type: Transform pos: 34.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21570 + - uid: 22872 components: - type: Transform pos: 34.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21571 + - uid: 22873 components: - type: Transform pos: 34.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21572 + - uid: 22874 components: - type: Transform pos: 34.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21573 + - uid: 22875 components: - type: Transform pos: 34.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21574 + - uid: 22876 components: - type: Transform rot: 1.5707963267948966 rad @@ -157246,7 +158355,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21575 + - uid: 22877 components: - type: Transform rot: 1.5707963267948966 rad @@ -157254,7 +158363,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21576 + - uid: 22878 components: - type: Transform rot: 3.141592653589793 rad @@ -157262,7 +158371,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21577 + - uid: 22879 components: - type: Transform rot: 3.141592653589793 rad @@ -157270,7 +158379,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21578 + - uid: 22880 components: - type: Transform rot: -1.5707963267948966 rad @@ -157278,7 +158387,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21579 + - uid: 22881 components: - type: Transform rot: -1.5707963267948966 rad @@ -157286,7 +158395,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21580 + - uid: 22882 components: - type: Transform rot: -1.5707963267948966 rad @@ -157294,7 +158403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21581 + - uid: 22883 components: - type: Transform rot: -1.5707963267948966 rad @@ -157302,42 +158411,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21582 + - uid: 22884 components: - type: Transform pos: 33.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21583 + - uid: 22885 components: - type: Transform pos: 33.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21584 + - uid: 22886 components: - type: Transform pos: 33.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21585 + - uid: 22887 components: - type: Transform pos: 33.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21586 + - uid: 22888 components: - type: Transform pos: 33.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21587 + - uid: 22889 components: - type: Transform rot: 3.141592653589793 rad @@ -157345,7 +158454,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21588 + - uid: 22890 components: - type: Transform rot: 3.141592653589793 rad @@ -157353,7 +158462,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21589 + - uid: 22891 components: - type: Transform rot: 3.141592653589793 rad @@ -157361,7 +158470,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21590 + - uid: 22892 components: - type: Transform rot: 3.141592653589793 rad @@ -157369,7 +158478,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21591 + - uid: 22893 components: - type: Transform rot: 3.141592653589793 rad @@ -157377,7 +158486,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21592 + - uid: 22894 components: - type: Transform rot: 3.141592653589793 rad @@ -157385,7 +158494,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21593 + - uid: 22895 components: - type: Transform rot: -1.5707963267948966 rad @@ -157393,7 +158502,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21594 + - uid: 22896 components: - type: Transform rot: -1.5707963267948966 rad @@ -157401,7 +158510,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21595 + - uid: 22897 components: - type: Transform rot: -1.5707963267948966 rad @@ -157409,7 +158518,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21596 + - uid: 22898 components: - type: Transform rot: -1.5707963267948966 rad @@ -157417,7 +158526,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21597 + - uid: 22899 components: - type: Transform rot: -1.5707963267948966 rad @@ -157425,7 +158534,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21598 + - uid: 22900 components: - type: Transform rot: -1.5707963267948966 rad @@ -157433,7 +158542,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21599 + - uid: 22901 components: - type: Transform rot: -1.5707963267948966 rad @@ -157441,7 +158550,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21601 + - uid: 22902 components: - type: Transform rot: 3.141592653589793 rad @@ -157449,7 +158558,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21602 + - uid: 22903 components: - type: Transform rot: 1.5707963267948966 rad @@ -157457,21 +158566,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' - - uid: 21603 + - uid: 22904 components: - type: Transform pos: -43.5,-84.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21604 + - uid: 22905 components: - type: Transform pos: -43.5,-83.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21605 + - uid: 22906 components: - type: Transform rot: 3.141592653589793 rad @@ -157479,58 +158588,45 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21606 + - uid: 22907 components: - type: Transform pos: -43.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21607 + - uid: 22908 components: - type: Transform pos: -43.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21695 + - uid: 22909 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,-41.5 parent: 2 - - uid: 21858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 21045 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21862 + - uid: 22910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,0.5 - parent: 21045 + rot: 1.5707963267948966 rad + pos: -16.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21864 + color: '#0000FFFF' + - uid: 22911 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 21045 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21865 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 21045 + pos: -16.5,0.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22284 + - uid: 22912 components: - type: Transform rot: -1.5707963267948966 rad @@ -157538,7 +158634,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22319 + - uid: 22913 components: - type: Transform rot: -1.5707963267948966 rad @@ -157546,7 +158642,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22320 + - uid: 22914 components: - type: Transform rot: -1.5707963267948966 rad @@ -157554,7 +158650,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22322 + - uid: 22915 components: - type: Transform rot: 3.141592653589793 rad @@ -157562,7 +158658,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22345 + - uid: 22916 components: - type: Transform rot: 1.5707963267948966 rad @@ -157570,7 +158666,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22346 + - uid: 22917 components: - type: Transform rot: 1.5707963267948966 rad @@ -157578,7 +158674,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22390 + - uid: 22918 components: - type: Transform rot: -1.5707963267948966 rad @@ -157586,7 +158682,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22746 + - uid: 22919 components: - type: Transform rot: -1.5707963267948966 rad @@ -157594,14 +158690,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24078 + - uid: 22920 components: - type: Transform pos: -3.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24155 + - uid: 22921 components: - type: Transform rot: 1.5707963267948966 rad @@ -157609,7 +158705,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24248 + - uid: 22922 components: - type: Transform rot: -1.5707963267948966 rad @@ -157617,7 +158713,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24293 + - uid: 22923 components: - type: Transform rot: -1.5707963267948966 rad @@ -157625,7 +158721,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24328 + - uid: 22924 components: - type: Transform rot: 3.141592653589793 rad @@ -157633,7 +158729,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24598 + - uid: 22925 components: - type: Transform rot: 1.5707963267948966 rad @@ -157641,7 +158737,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24676 + - uid: 22926 + components: + - type: Transform + pos: -47.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22929 components: - type: Transform rot: 1.5707963267948966 rad @@ -157649,7 +158768,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24824 + - uid: 22930 components: - type: Transform rot: 1.5707963267948966 rad @@ -157657,7 +158776,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24878 + - uid: 22931 components: - type: Transform rot: 1.5707963267948966 rad @@ -157665,7 +158784,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24914 + - uid: 22932 components: - type: Transform rot: -1.5707963267948966 rad @@ -157673,7 +158792,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 25002 + - uid: 22933 components: - type: Transform rot: 3.141592653589793 rad @@ -157681,7 +158800,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 26296 + - uid: 22934 components: - type: Transform rot: -1.5707963267948966 rad @@ -157689,7 +158808,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 26297 + - uid: 22935 components: - type: Transform rot: -1.5707963267948966 rad @@ -157697,7 +158816,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 26306 + - uid: 22936 components: - type: Transform rot: -1.5707963267948966 rad @@ -157705,7 +158824,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 26311 + - uid: 22937 components: - type: Transform rot: -1.5707963267948966 rad @@ -157713,7 +158832,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 26374 + - uid: 22938 components: - type: Transform rot: -1.5707963267948966 rad @@ -157721,7 +158840,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 26375 + - uid: 22939 components: - type: Transform rot: -1.5707963267948966 rad @@ -157729,7 +158848,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 26376 + - uid: 22940 components: - type: Transform rot: -1.5707963267948966 rad @@ -157737,7 +158856,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 26377 + - uid: 22941 components: - type: Transform rot: -1.5707963267948966 rad @@ -157745,7 +158864,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 26782 + - uid: 22942 components: - type: Transform rot: 3.141592653589793 rad @@ -157753,7 +158872,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 26915 + - uid: 22943 components: - type: Transform rot: 1.5707963267948966 rad @@ -157761,14 +158880,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 27331 + - uid: 22944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22945 components: - type: Transform pos: 58.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 27977 + - uid: 22946 components: - type: Transform rot: 3.141592653589793 rad @@ -157776,7 +158903,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 27998 + - uid: 22947 components: - type: Transform rot: 1.5707963267948966 rad @@ -157784,42 +158911,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28003 + - uid: 22948 components: - type: Transform pos: 58.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28136 + - uid: 22949 components: - type: Transform pos: 58.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28181 + - uid: 22950 components: - type: Transform pos: 58.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28191 + - uid: 22951 components: - type: Transform pos: 58.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28214 + - uid: 22952 components: - type: Transform pos: 58.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28215 + - uid: 22953 components: - type: Transform rot: 1.5707963267948966 rad @@ -157827,7 +158954,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28216 + - uid: 22954 components: - type: Transform rot: 1.5707963267948966 rad @@ -157835,7 +158962,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28241 + - uid: 22955 components: - type: Transform rot: 1.5707963267948966 rad @@ -157843,7 +158970,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28243 + - uid: 22956 components: - type: Transform rot: 1.5707963267948966 rad @@ -157851,105 +158978,119 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28299 + - uid: 22957 + components: + - type: Transform + pos: -23.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22958 components: - type: Transform pos: 58.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28303 + - uid: 22959 components: - type: Transform pos: 58.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28304 + - uid: 22960 components: - type: Transform pos: 58.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28305 + - uid: 22961 components: - type: Transform pos: 58.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28306 + - uid: 22962 components: - type: Transform pos: 58.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28314 + - uid: 22963 components: - type: Transform pos: 58.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28315 + - uid: 22964 components: - type: Transform pos: 56.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28317 + - uid: 22965 components: - type: Transform pos: 56.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28318 + - uid: 22966 components: - type: Transform pos: 56.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28321 + - uid: 22967 + components: + - type: Transform + pos: -47.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22968 components: - type: Transform pos: 56.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28340 + - uid: 22969 components: - type: Transform pos: 56.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28361 + - uid: 22970 components: - type: Transform pos: 56.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28362 + - uid: 22971 components: - type: Transform pos: 56.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28402 + - uid: 22972 components: - type: Transform pos: 56.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28403 + - uid: 22973 components: - type: Transform rot: -1.5707963267948966 rad @@ -157957,7 +159098,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28536 + - uid: 22974 components: - type: Transform rot: 3.141592653589793 rad @@ -157965,7 +159106,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28545 + - uid: 22975 components: - type: Transform rot: -1.5707963267948966 rad @@ -157973,7 +159114,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28585 + - uid: 22976 components: - type: Transform rot: -1.5707963267948966 rad @@ -157981,7 +159122,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28586 + - uid: 22977 components: - type: Transform rot: -1.5707963267948966 rad @@ -157989,7 +159130,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28776 + - uid: 22978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22979 components: - type: Transform rot: 1.5707963267948966 rad @@ -157997,14 +159146,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28778 + - uid: 22980 components: - type: Transform pos: 57.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28805 + - uid: 22981 components: - type: Transform rot: -1.5707963267948966 rad @@ -158012,7 +159161,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28865 + - uid: 22982 components: - type: Transform rot: -1.5707963267948966 rad @@ -158020,7 +159169,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28872 + - uid: 22983 components: - type: Transform rot: -1.5707963267948966 rad @@ -158028,7 +159177,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28907 + - uid: 22984 components: - type: Transform rot: -1.5707963267948966 rad @@ -158036,7 +159185,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28909 + - uid: 22985 components: - type: Transform rot: -1.5707963267948966 rad @@ -158044,7 +159193,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28948 + - uid: 22986 components: - type: Transform rot: -1.5707963267948966 rad @@ -158052,7 +159201,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28966 + - uid: 22987 components: - type: Transform rot: 3.141592653589793 rad @@ -158060,70 +159209,70 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28976 + - uid: 22988 components: - type: Transform pos: 64.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28982 + - uid: 22989 components: - type: Transform pos: 64.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28983 + - uid: 22990 components: - type: Transform pos: 64.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29000 + - uid: 22991 components: - type: Transform pos: 64.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29006 + - uid: 22992 components: - type: Transform pos: 62.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29050 + - uid: 22993 components: - type: Transform pos: 62.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29051 + - uid: 22994 components: - type: Transform pos: 62.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29062 + - uid: 22995 components: - type: Transform pos: 62.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29068 + - uid: 22996 components: - type: Transform pos: 62.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29087 + - uid: 22997 components: - type: Transform rot: 1.5707963267948966 rad @@ -158131,7 +159280,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29101 + - uid: 22998 components: - type: Transform rot: -1.5707963267948966 rad @@ -158139,7 +159288,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29102 + - uid: 22999 components: - type: Transform rot: -1.5707963267948966 rad @@ -158147,7 +159296,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29103 + - uid: 23000 components: - type: Transform rot: -1.5707963267948966 rad @@ -158155,7 +159304,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29107 + - uid: 23001 components: - type: Transform rot: -1.5707963267948966 rad @@ -158163,7 +159312,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29108 + - uid: 23002 components: - type: Transform rot: -1.5707963267948966 rad @@ -158171,7 +159320,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29109 + - uid: 23003 components: - type: Transform rot: -1.5707963267948966 rad @@ -158179,7 +159328,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29110 + - uid: 23004 components: - type: Transform rot: -1.5707963267948966 rad @@ -158187,7 +159336,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29111 + - uid: 23005 components: - type: Transform rot: -1.5707963267948966 rad @@ -158195,28 +159344,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29396 + - uid: 23006 components: - type: Transform pos: 77.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29397 + - uid: 23007 components: - type: Transform pos: 81.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29400 + - uid: 23008 components: - type: Transform pos: 85.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29429 + - uid: 23009 components: - type: Transform rot: 3.141592653589793 rad @@ -158224,7 +159373,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29433 + - uid: 23010 components: - type: Transform rot: 3.141592653589793 rad @@ -158232,7 +159381,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29448 + - uid: 23011 components: - type: Transform rot: 3.141592653589793 rad @@ -158240,7 +159389,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29472 + - uid: 23012 components: - type: Transform rot: 3.141592653589793 rad @@ -158248,7 +159397,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29589 + - uid: 23013 components: - type: Transform rot: -1.5707963267948966 rad @@ -158256,7 +159405,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29590 + - uid: 23014 components: - type: Transform rot: -1.5707963267948966 rad @@ -158264,7 +159413,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29591 + - uid: 23015 components: - type: Transform rot: -1.5707963267948966 rad @@ -158272,7 +159421,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29611 + - uid: 23016 components: - type: Transform rot: -1.5707963267948966 rad @@ -158280,7 +159429,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29612 + - uid: 23017 components: - type: Transform rot: -1.5707963267948966 rad @@ -158288,7 +159437,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29613 + - uid: 23018 components: - type: Transform rot: -1.5707963267948966 rad @@ -158296,21 +159445,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29616 + - uid: 23019 components: - type: Transform pos: 81.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29637 + - uid: 23020 components: - type: Transform pos: 81.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29639 + - uid: 23021 components: - type: Transform rot: -1.5707963267948966 rad @@ -158318,7 +159467,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29640 + - uid: 23022 components: - type: Transform rot: -1.5707963267948966 rad @@ -158326,7 +159475,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29641 + - uid: 23023 components: - type: Transform rot: -1.5707963267948966 rad @@ -158334,7 +159483,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29642 + - uid: 23024 components: - type: Transform rot: -1.5707963267948966 rad @@ -158342,7 +159491,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29643 + - uid: 23025 components: - type: Transform rot: -1.5707963267948966 rad @@ -158350,7 +159499,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29644 + - uid: 23026 components: - type: Transform rot: -1.5707963267948966 rad @@ -158358,7 +159507,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29666 + - uid: 23027 components: - type: Transform rot: 1.5707963267948966 rad @@ -158366,7 +159515,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29674 + - uid: 23028 components: - type: Transform rot: 1.5707963267948966 rad @@ -158374,7 +159523,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29675 + - uid: 23029 components: - type: Transform rot: 1.5707963267948966 rad @@ -158382,7 +159531,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29676 + - uid: 23030 components: - type: Transform rot: 1.5707963267948966 rad @@ -158390,7 +159539,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29677 + - uid: 23031 components: - type: Transform rot: 1.5707963267948966 rad @@ -158398,7 +159547,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29678 + - uid: 23032 components: - type: Transform rot: 1.5707963267948966 rad @@ -158406,7 +159555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29679 + - uid: 23033 components: - type: Transform rot: 1.5707963267948966 rad @@ -158414,7 +159563,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29710 + - uid: 23034 components: - type: Transform rot: 1.5707963267948966 rad @@ -158422,7 +159571,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29730 + - uid: 23035 components: - type: Transform rot: 1.5707963267948966 rad @@ -158430,28 +159579,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29749 + - uid: 23036 components: - type: Transform pos: 77.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29750 + - uid: 23037 components: - type: Transform pos: 77.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29796 + - uid: 23038 components: - type: Transform pos: 77.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29827 + - uid: 23039 components: - type: Transform rot: -1.5707963267948966 rad @@ -158459,7 +159608,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29828 + - uid: 23040 components: - type: Transform rot: -1.5707963267948966 rad @@ -158467,7 +159616,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29844 + - uid: 23041 components: - type: Transform rot: -1.5707963267948966 rad @@ -158475,7 +159624,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29853 + - uid: 23042 components: - type: Transform rot: -1.5707963267948966 rad @@ -158483,7 +159632,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29855 + - uid: 23043 components: - type: Transform rot: -1.5707963267948966 rad @@ -158491,7 +159640,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29891 + - uid: 23044 components: - type: Transform rot: -1.5707963267948966 rad @@ -158499,7 +159648,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29892 + - uid: 23045 components: - type: Transform rot: 3.141592653589793 rad @@ -158507,7 +159656,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29895 + - uid: 23046 components: - type: Transform rot: 3.141592653589793 rad @@ -158515,7 +159664,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29896 + - uid: 23047 components: - type: Transform rot: 3.141592653589793 rad @@ -158523,49 +159672,49 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29898 + - uid: 23048 components: - type: Transform pos: 79.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29915 + - uid: 23049 components: - type: Transform pos: 79.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29916 + - uid: 23050 components: - type: Transform pos: 83.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29917 + - uid: 23051 components: - type: Transform pos: 83.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29918 + - uid: 23052 components: - type: Transform pos: 87.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29919 + - uid: 23053 components: - type: Transform pos: 87.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29934 + - uid: 23054 components: - type: Transform rot: 1.5707963267948966 rad @@ -158573,7 +159722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29935 + - uid: 23055 components: - type: Transform rot: 1.5707963267948966 rad @@ -158581,7 +159730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29962 + - uid: 23056 components: - type: Transform rot: 1.5707963267948966 rad @@ -158589,7 +159738,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29970 + - uid: 23057 components: - type: Transform rot: 1.5707963267948966 rad @@ -158597,7 +159746,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29975 + - uid: 23058 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23059 components: - type: Transform rot: 1.5707963267948966 rad @@ -158605,7 +159761,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30003 + - uid: 23060 components: - type: Transform rot: 1.5707963267948966 rad @@ -158613,7 +159769,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30004 + - uid: 23061 components: - type: Transform rot: 1.5707963267948966 rad @@ -158621,7 +159777,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30026 + - uid: 23062 components: - type: Transform rot: -1.5707963267948966 rad @@ -158629,7 +159785,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30049 + - uid: 23063 components: - type: Transform rot: 3.141592653589793 rad @@ -158637,7 +159793,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30104 + - uid: 23064 components: - type: Transform rot: 3.141592653589793 rad @@ -158645,7 +159801,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30215 + - uid: 23065 components: - type: Transform rot: 3.141592653589793 rad @@ -158653,7 +159809,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30217 + - uid: 23066 components: - type: Transform rot: 3.141592653589793 rad @@ -158661,7 +159817,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30218 + - uid: 23067 components: - type: Transform rot: 3.141592653589793 rad @@ -158669,7 +159825,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30227 + - uid: 23068 components: - type: Transform rot: 3.141592653589793 rad @@ -158677,7 +159833,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30228 + - uid: 23069 components: - type: Transform rot: 3.141592653589793 rad @@ -158685,7 +159841,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30229 + - uid: 23070 components: - type: Transform rot: 3.141592653589793 rad @@ -158693,7 +159849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30230 + - uid: 23071 components: - type: Transform rot: -1.5707963267948966 rad @@ -158701,7 +159857,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30231 + - uid: 23072 components: - type: Transform rot: -1.5707963267948966 rad @@ -158709,7 +159865,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30232 + - uid: 23073 components: - type: Transform rot: -1.5707963267948966 rad @@ -158717,7 +159873,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30233 + - uid: 23074 components: - type: Transform rot: -1.5707963267948966 rad @@ -158725,7 +159881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30234 + - uid: 23075 components: - type: Transform rot: -1.5707963267948966 rad @@ -158733,7 +159889,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30235 + - uid: 23076 components: - type: Transform rot: -1.5707963267948966 rad @@ -158741,7 +159897,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30244 + - uid: 23077 components: - type: Transform rot: -1.5707963267948966 rad @@ -158749,7 +159905,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30245 + - uid: 23078 components: - type: Transform rot: -1.5707963267948966 rad @@ -158757,7 +159913,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30301 + - uid: 23079 components: - type: Transform rot: -1.5707963267948966 rad @@ -158765,7 +159921,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30307 + - uid: 23080 components: - type: Transform rot: -1.5707963267948966 rad @@ -158773,7 +159929,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30308 + - uid: 23081 components: - type: Transform rot: -1.5707963267948966 rad @@ -158781,7 +159937,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30352 + - uid: 23082 components: - type: Transform rot: -1.5707963267948966 rad @@ -158789,7 +159945,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30353 + - uid: 23083 components: - type: Transform rot: -1.5707963267948966 rad @@ -158797,7 +159953,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30382 + - uid: 23084 components: - type: Transform rot: -1.5707963267948966 rad @@ -158805,7 +159961,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30383 + - uid: 23085 components: - type: Transform rot: -1.5707963267948966 rad @@ -158813,7 +159969,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30384 + - uid: 23086 components: - type: Transform rot: -1.5707963267948966 rad @@ -158821,7 +159977,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30394 + - uid: 23087 components: - type: Transform rot: -1.5707963267948966 rad @@ -158829,7 +159985,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30395 + - uid: 23088 components: - type: Transform rot: -1.5707963267948966 rad @@ -158837,7 +159993,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30894 + - uid: 23089 components: - type: Transform rot: -1.5707963267948966 rad @@ -158845,7 +160001,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30901 + - uid: 23090 components: - type: Transform rot: 1.5707963267948966 rad @@ -158853,7 +160009,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 32329 + - uid: 23091 components: - type: Transform rot: 1.5707963267948966 rad @@ -158861,7 +160017,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 32455 + - uid: 23092 components: - type: Transform rot: 1.5707963267948966 rad @@ -158869,7 +160025,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 32457 + - uid: 23093 components: - type: Transform rot: 1.5707963267948966 rad @@ -158877,7 +160033,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 32460 + - uid: 23094 components: - type: Transform rot: 1.5707963267948966 rad @@ -158885,7 +160041,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 32479 + - uid: 23095 components: - type: Transform rot: 3.141592653589793 rad @@ -158893,7 +160049,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 32481 + - uid: 23096 components: - type: Transform rot: 3.141592653589793 rad @@ -158901,7 +160057,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 32484 + - uid: 23097 components: - type: Transform rot: 3.141592653589793 rad @@ -158909,7 +160065,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 32487 + - uid: 23098 components: - type: Transform rot: 3.141592653589793 rad @@ -158917,7 +160073,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 32551 + - uid: 23099 components: - type: Transform rot: 3.141592653589793 rad @@ -158925,7 +160081,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 32552 + - uid: 23100 components: - type: Transform rot: 3.141592653589793 rad @@ -158933,7 +160089,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 32556 + - uid: 23101 components: - type: Transform rot: -1.5707963267948966 rad @@ -158941,7 +160097,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 32557 + - uid: 23102 components: - type: Transform rot: -1.5707963267948966 rad @@ -158949,7 +160105,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 32560 + - uid: 23103 components: - type: Transform rot: -1.5707963267948966 rad @@ -158957,7 +160113,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 32767 + - uid: 23104 components: - type: Transform rot: 1.5707963267948966 rad @@ -158965,42 +160121,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 34302 + - uid: 23105 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-54.5 parent: 2 - - uid: 34306 + - uid: 23106 components: - type: Transform pos: -6.5,-55.5 parent: 2 - - uid: 34316 + - uid: 23107 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-50.5 parent: 2 - - uid: 34317 + - uid: 23108 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-50.5 parent: 2 - - uid: 34318 + - uid: 23109 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-49.5 parent: 2 - - uid: 34321 + - uid: 23110 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-48.5 parent: 2 - - uid: 34323 + - uid: 23111 components: - type: Transform rot: 3.141592653589793 rad @@ -159008,7 +160164,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 34325 + - uid: 23112 components: - type: Transform rot: 3.141592653589793 rad @@ -159016,7 +160172,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 34326 + - uid: 23113 components: - type: Transform rot: 3.141592653589793 rad @@ -159024,7 +160180,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 34328 + - uid: 23114 components: - type: Transform rot: 3.141592653589793 rad @@ -159032,7 +160188,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 34329 + - uid: 23115 components: - type: Transform rot: 3.141592653589793 rad @@ -159040,7 +160196,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 34330 + - uid: 23116 components: - type: Transform rot: 3.141592653589793 rad @@ -159048,7 +160204,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 34954 + - uid: 23117 components: - type: Transform rot: -1.5707963267948966 rad @@ -159056,21 +160212,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 34956 + - uid: 23118 components: - type: Transform pos: 74.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 34965 + - uid: 23119 components: - type: Transform pos: 74.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 34971 + - uid: 23120 components: - type: Transform rot: -1.5707963267948966 rad @@ -159078,7 +160234,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 34972 + - uid: 23121 components: - type: Transform rot: -1.5707963267948966 rad @@ -159086,7 +160242,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 34973 + - uid: 23122 components: - type: Transform rot: -1.5707963267948966 rad @@ -159094,99 +160250,99 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 36700 + - uid: 23123 components: - type: Transform pos: 55.5,-95.5 parent: 2 - - uid: 36701 + - uid: 23124 components: - type: Transform pos: 54.5,-95.5 parent: 2 - - uid: 36702 + - uid: 23125 components: - type: Transform pos: 53.5,-95.5 parent: 2 - - uid: 37728 + - uid: 23126 components: - type: Transform pos: 52.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 37797 + - uid: 23127 components: - type: Transform pos: 70.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 37801 + - uid: 23128 components: - type: Transform pos: 70.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 37804 + - uid: 23129 components: - type: Transform pos: 70.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 37805 + - uid: 23130 components: - type: Transform pos: 70.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 37806 + - uid: 23131 components: - type: Transform pos: 70.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 37807 + - uid: 23132 components: - type: Transform pos: 70.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 37813 + - uid: 23133 components: - type: Transform pos: 68.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37814 + - uid: 23134 components: - type: Transform pos: 68.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37816 + - uid: 23135 components: - type: Transform pos: 68.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37817 + - uid: 23136 components: - type: Transform pos: 68.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37818 + - uid: 23137 components: - type: Transform rot: -1.5707963267948966 rad @@ -159194,7 +160350,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37819 + - uid: 23138 components: - type: Transform rot: -1.5707963267948966 rad @@ -159202,7 +160358,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37820 + - uid: 23139 components: - type: Transform rot: -1.5707963267948966 rad @@ -159210,7 +160366,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37821 + - uid: 23140 components: - type: Transform rot: -1.5707963267948966 rad @@ -159218,7 +160374,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37822 + - uid: 23141 components: - type: Transform rot: -1.5707963267948966 rad @@ -159226,7 +160382,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37823 + - uid: 23142 components: - type: Transform rot: 3.141592653589793 rad @@ -159234,7 +160390,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37824 + - uid: 23143 components: - type: Transform rot: -1.5707963267948966 rad @@ -159242,7 +160398,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37825 + - uid: 23144 components: - type: Transform rot: -1.5707963267948966 rad @@ -159250,7 +160406,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37826 + - uid: 23145 components: - type: Transform rot: -1.5707963267948966 rad @@ -159258,7 +160414,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37827 + - uid: 23146 components: - type: Transform rot: -1.5707963267948966 rad @@ -159266,7 +160422,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37850 + - uid: 23147 components: - type: Transform rot: 1.5707963267948966 rad @@ -159274,63 +160430,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 37851 + - uid: 23148 components: - type: Transform pos: 51.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37852 + - uid: 23149 components: - type: Transform pos: 51.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37853 + - uid: 23150 components: - type: Transform pos: 51.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37854 + - uid: 23151 components: - type: Transform pos: 51.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37855 + - uid: 23152 components: - type: Transform pos: 51.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37856 + - uid: 23153 components: - type: Transform pos: 52.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 37857 + - uid: 23154 components: - type: Transform pos: 52.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 37858 + - uid: 23155 components: - type: Transform pos: 52.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 37862 + - uid: 23156 components: - type: Transform rot: 1.5707963267948966 rad @@ -159338,507 +160494,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 38242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-14.5 - parent: 37887 - - uid: 38243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-13.5 - parent: 37887 - - uid: 38244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-12.5 - parent: 37887 - - uid: 38245 - components: - - type: Transform - pos: 1.5,-10.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38246 - components: - - type: Transform - pos: 1.5,-9.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38247 - components: - - type: Transform - pos: 0.5,-10.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38251 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38253 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-8.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38254 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-8.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38256 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38260 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-9.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38261 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-9.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38262 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-10.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-11.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38277 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38278 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38280 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38281 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38282 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38283 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-8.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38285 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-6.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38286 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-5.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38651 + - uid: 23157 components: - type: Transform pos: -4.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 38844 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38845 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38847 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-10.5 - parent: 38722 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-9.5 - parent: 38722 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38850 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 38722 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38851 - components: - - type: Transform - pos: 3.5,0.5 - parent: 38722 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38853 - components: - - type: Transform - pos: 2.5,-7.5 - parent: 38722 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38854 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 38722 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38855 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 38722 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38856 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 38722 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38857 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38858 - components: - - type: Transform - pos: 4.5,-1.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38859 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38860 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38861 - components: - - type: Transform - pos: 4.5,-8.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38862 - components: - - type: Transform - pos: 4.5,-0.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 39166 + - uid: 23158 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-55.5 parent: 2 - - uid: 39496 + - uid: 23159 components: - type: Transform rot: -1.5707963267948966 rad @@ -159846,7 +160515,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39497 + - uid: 23160 components: - type: Transform rot: -1.5707963267948966 rad @@ -159854,7 +160523,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39498 + - uid: 23161 components: - type: Transform rot: -1.5707963267948966 rad @@ -159862,7 +160531,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39499 + - uid: 23162 components: - type: Transform rot: -1.5707963267948966 rad @@ -159870,7 +160539,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39500 + - uid: 23163 components: - type: Transform rot: -1.5707963267948966 rad @@ -159878,7 +160547,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39501 + - uid: 23164 components: - type: Transform rot: -1.5707963267948966 rad @@ -159886,7 +160555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39502 + - uid: 23165 components: - type: Transform rot: -1.5707963267948966 rad @@ -159894,7 +160563,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39507 + - uid: 23166 components: - type: Transform rot: -1.5707963267948966 rad @@ -159902,7 +160571,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39508 + - uid: 23167 components: - type: Transform rot: -1.5707963267948966 rad @@ -159910,7 +160579,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39511 + - uid: 23168 components: - type: Transform rot: 1.5707963267948966 rad @@ -159918,7 +160587,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39512 + - uid: 23169 components: - type: Transform rot: 1.5707963267948966 rad @@ -159926,7 +160595,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39513 + - uid: 23170 components: - type: Transform rot: 1.5707963267948966 rad @@ -159934,7 +160603,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39514 + - uid: 23171 components: - type: Transform rot: 1.5707963267948966 rad @@ -159942,7 +160611,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39515 + - uid: 23172 components: - type: Transform rot: 1.5707963267948966 rad @@ -159950,14 +160619,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39519 + - uid: 23173 components: - type: Transform pos: 0.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39520 + - uid: 23174 components: - type: Transform rot: -1.5707963267948966 rad @@ -159965,7 +160634,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39521 + - uid: 23175 components: - type: Transform rot: -1.5707963267948966 rad @@ -159973,7 +160642,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39522 + - uid: 23176 components: - type: Transform rot: -1.5707963267948966 rad @@ -159981,7 +160650,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39523 + - uid: 23177 components: - type: Transform rot: -1.5707963267948966 rad @@ -159989,7 +160658,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39526 + - uid: 23178 components: - type: Transform rot: 3.141592653589793 rad @@ -159997,7 +160666,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39527 + - uid: 23179 components: - type: Transform rot: 3.141592653589793 rad @@ -160005,7 +160674,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39528 + - uid: 23180 components: - type: Transform rot: 3.141592653589793 rad @@ -160013,7 +160682,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39529 + - uid: 23181 components: - type: Transform rot: 3.141592653589793 rad @@ -160021,7 +160690,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39530 + - uid: 23182 components: - type: Transform rot: 3.141592653589793 rad @@ -160029,7 +160698,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39531 + - uid: 23183 components: - type: Transform rot: 3.141592653589793 rad @@ -160037,7 +160706,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39532 + - uid: 23184 components: - type: Transform rot: 3.141592653589793 rad @@ -160045,7 +160714,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39533 + - uid: 23185 components: - type: Transform rot: 3.141592653589793 rad @@ -160053,7 +160722,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39534 + - uid: 23186 components: - type: Transform rot: 3.141592653589793 rad @@ -160061,7 +160730,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39535 + - uid: 23187 components: - type: Transform rot: 3.141592653589793 rad @@ -160069,42 +160738,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39540 + - uid: 23188 components: - type: Transform pos: -1.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39541 + - uid: 23189 components: - type: Transform pos: -1.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39542 + - uid: 23190 components: - type: Transform pos: 2.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39543 + - uid: 23191 components: - type: Transform pos: 2.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39544 + - uid: 23192 components: - type: Transform pos: 2.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39596 + - uid: 23193 components: - type: Transform rot: 1.5707963267948966 rad @@ -160112,7 +160781,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39597 + - uid: 23194 components: - type: Transform rot: 1.5707963267948966 rad @@ -160120,7 +160789,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39598 + - uid: 23195 components: - type: Transform rot: 1.5707963267948966 rad @@ -160128,7 +160797,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39599 + - uid: 23196 components: - type: Transform rot: 1.5707963267948966 rad @@ -160136,7 +160805,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39600 + - uid: 23197 components: - type: Transform rot: 1.5707963267948966 rad @@ -160144,7 +160813,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39601 + - uid: 23198 components: - type: Transform rot: 1.5707963267948966 rad @@ -160152,7 +160821,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39602 + - uid: 23199 components: - type: Transform rot: 1.5707963267948966 rad @@ -160160,7 +160829,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39603 + - uid: 23200 components: - type: Transform rot: 1.5707963267948966 rad @@ -160168,7 +160837,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39604 + - uid: 23201 components: - type: Transform rot: 1.5707963267948966 rad @@ -160176,7 +160845,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39812 + - uid: 23202 components: - type: Transform rot: 3.141592653589793 rad @@ -160184,7 +160853,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39813 + - uid: 23203 components: - type: Transform rot: 3.141592653589793 rad @@ -160192,7 +160861,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39814 + - uid: 23204 components: - type: Transform rot: 1.5707963267948966 rad @@ -160200,7 +160869,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39815 + - uid: 23205 components: - type: Transform rot: 1.5707963267948966 rad @@ -160208,7 +160877,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39816 + - uid: 23206 components: - type: Transform rot: 1.5707963267948966 rad @@ -160216,21 +160885,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39821 + - uid: 23207 components: - type: Transform pos: 0.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39822 + - uid: 23208 components: - type: Transform pos: 0.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39831 + - uid: 23209 components: - type: Transform rot: -1.5707963267948966 rad @@ -160238,7 +160907,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39834 + - uid: 23210 components: - type: Transform rot: -1.5707963267948966 rad @@ -160246,21 +160915,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39864 + - uid: 23211 components: - type: Transform pos: -16.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39865 + - uid: 23212 components: - type: Transform pos: -16.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39878 + - uid: 23213 components: - type: Transform rot: 3.141592653589793 rad @@ -160268,7 +160937,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39879 + - uid: 23214 components: - type: Transform rot: 3.141592653589793 rad @@ -160276,35 +160945,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39881 + - uid: 23215 components: - type: Transform pos: 5.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39884 + - uid: 23216 components: - type: Transform pos: 6.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39885 + - uid: 23217 components: - type: Transform pos: 6.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39887 + - uid: 23218 components: - type: Transform pos: 6.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39888 + - uid: 23219 components: - type: Transform rot: 1.5707963267948966 rad @@ -160312,28 +160981,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39889 + - uid: 23220 components: - type: Transform pos: 6.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39890 + - uid: 23221 components: - type: Transform pos: 6.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39891 + - uid: 23222 components: - type: Transform pos: 6.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39893 + - uid: 23223 components: - type: Transform rot: 1.5707963267948966 rad @@ -160341,7 +161010,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39894 + - uid: 23224 components: - type: Transform rot: 1.5707963267948966 rad @@ -160349,7 +161018,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39897 + - uid: 23225 components: - type: Transform rot: 1.5707963267948966 rad @@ -160357,7 +161026,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39898 + - uid: 23226 components: - type: Transform rot: 1.5707963267948966 rad @@ -160365,7 +161034,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39899 + - uid: 23227 components: - type: Transform rot: 1.5707963267948966 rad @@ -160373,7 +161042,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39900 + - uid: 23228 components: - type: Transform rot: 1.5707963267948966 rad @@ -160381,7 +161050,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39901 + - uid: 23229 components: - type: Transform rot: 1.5707963267948966 rad @@ -160389,7 +161058,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39902 + - uid: 23230 components: - type: Transform rot: 1.5707963267948966 rad @@ -160397,7 +161066,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39904 + - uid: 23231 components: - type: Transform rot: -1.5707963267948966 rad @@ -160405,7 +161074,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39905 + - uid: 23232 components: - type: Transform rot: -1.5707963267948966 rad @@ -160413,7 +161082,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39906 + - uid: 23233 components: - type: Transform rot: -1.5707963267948966 rad @@ -160421,7 +161090,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39907 + - uid: 23234 components: - type: Transform rot: -1.5707963267948966 rad @@ -160429,7 +161098,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39908 + - uid: 23235 components: - type: Transform rot: -1.5707963267948966 rad @@ -160437,7 +161106,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39909 + - uid: 23236 components: - type: Transform rot: -1.5707963267948966 rad @@ -160445,7 +161114,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39910 + - uid: 23237 components: - type: Transform rot: -1.5707963267948966 rad @@ -160453,7 +161122,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39911 + - uid: 23238 components: - type: Transform rot: -1.5707963267948966 rad @@ -160461,7 +161130,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39913 + - uid: 23239 components: - type: Transform rot: 3.141592653589793 rad @@ -160469,7 +161138,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39914 + - uid: 23240 components: - type: Transform rot: 3.141592653589793 rad @@ -160477,7 +161146,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39916 + - uid: 23241 components: - type: Transform rot: 3.141592653589793 rad @@ -160485,7 +161154,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39917 + - uid: 23242 components: - type: Transform rot: 3.141592653589793 rad @@ -160493,7 +161162,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39919 + - uid: 23243 components: - type: Transform rot: 1.5707963267948966 rad @@ -160501,7 +161170,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39920 + - uid: 23244 components: - type: Transform rot: -1.5707963267948966 rad @@ -160509,7 +161178,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39921 + - uid: 23245 components: - type: Transform rot: 1.5707963267948966 rad @@ -160517,7 +161186,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39922 + - uid: 23246 components: - type: Transform rot: 1.5707963267948966 rad @@ -160525,14 +161194,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39925 + - uid: 23247 components: - type: Transform pos: 0.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39926 + - uid: 23248 components: - type: Transform rot: 1.5707963267948966 rad @@ -160540,7 +161209,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39928 + - uid: 23249 components: - type: Transform rot: 3.141592653589793 rad @@ -160548,7 +161217,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39929 + - uid: 23250 components: - type: Transform rot: 3.141592653589793 rad @@ -160556,7 +161225,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39931 + - uid: 23251 components: - type: Transform rot: 1.5707963267948966 rad @@ -160564,7 +161233,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39932 + - uid: 23252 components: - type: Transform rot: 1.5707963267948966 rad @@ -160572,7 +161241,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39935 + - uid: 23253 components: - type: Transform rot: 1.5707963267948966 rad @@ -160580,7 +161249,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39936 + - uid: 23254 components: - type: Transform rot: 1.5707963267948966 rad @@ -160588,63 +161257,63 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39937 + - uid: 23255 components: - type: Transform pos: 5.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39938 + - uid: 23256 components: - type: Transform pos: 5.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39939 + - uid: 23257 components: - type: Transform pos: 5.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39942 + - uid: 23258 components: - type: Transform pos: 0.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39943 + - uid: 23259 components: - type: Transform pos: 0.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39944 + - uid: 23260 components: - type: Transform pos: 0.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39945 + - uid: 23261 components: - type: Transform pos: 0.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39946 + - uid: 23262 components: - type: Transform pos: 0.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39948 + - uid: 23263 components: - type: Transform rot: -1.5707963267948966 rad @@ -160652,7 +161321,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39949 + - uid: 23264 components: - type: Transform rot: -1.5707963267948966 rad @@ -160660,7 +161329,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39950 + - uid: 23265 components: - type: Transform rot: -1.5707963267948966 rad @@ -160668,14 +161337,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39952 + - uid: 23266 components: - type: Transform pos: 18.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39953 + - uid: 23267 components: - type: Transform rot: -1.5707963267948966 rad @@ -160683,7 +161352,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39954 + - uid: 23268 components: - type: Transform rot: 3.141592653589793 rad @@ -160691,7 +161360,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39956 + - uid: 23269 components: - type: Transform rot: 3.141592653589793 rad @@ -160699,7 +161368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39957 + - uid: 23270 components: - type: Transform rot: -1.5707963267948966 rad @@ -160707,7 +161376,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39958 + - uid: 23271 components: - type: Transform rot: 3.141592653589793 rad @@ -160715,7 +161384,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39959 + - uid: 23272 components: - type: Transform rot: 3.141592653589793 rad @@ -160723,7 +161392,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39960 + - uid: 23273 components: - type: Transform rot: 3.141592653589793 rad @@ -160731,7 +161400,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39961 + - uid: 23274 components: - type: Transform rot: 3.141592653589793 rad @@ -160739,7 +161408,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39962 + - uid: 23275 components: - type: Transform rot: 3.141592653589793 rad @@ -160747,7 +161416,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39963 + - uid: 23276 components: - type: Transform rot: 3.141592653589793 rad @@ -160755,7 +161424,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39964 + - uid: 23277 components: - type: Transform rot: 3.141592653589793 rad @@ -160763,7 +161432,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39965 + - uid: 23278 components: - type: Transform rot: 3.141592653589793 rad @@ -160771,7 +161440,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39966 + - uid: 23279 components: - type: Transform rot: 3.141592653589793 rad @@ -160779,7 +161448,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39967 + - uid: 23280 components: - type: Transform rot: 3.141592653589793 rad @@ -160787,7 +161456,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39968 + - uid: 23281 components: - type: Transform rot: 3.141592653589793 rad @@ -160795,7 +161464,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39969 + - uid: 23282 components: - type: Transform rot: 3.141592653589793 rad @@ -160803,7 +161472,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39970 + - uid: 23283 components: - type: Transform rot: 3.141592653589793 rad @@ -160811,7 +161480,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39971 + - uid: 23284 components: - type: Transform rot: 3.141592653589793 rad @@ -160819,7 +161488,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39973 + - uid: 23285 components: - type: Transform rot: -1.5707963267948966 rad @@ -160827,7 +161496,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39974 + - uid: 23286 components: - type: Transform rot: 3.141592653589793 rad @@ -160835,7 +161504,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39975 + - uid: 23287 components: - type: Transform rot: 3.141592653589793 rad @@ -160843,7 +161512,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39976 + - uid: 23288 components: - type: Transform rot: 3.141592653589793 rad @@ -160851,7 +161520,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39977 + - uid: 23289 components: - type: Transform rot: 3.141592653589793 rad @@ -160859,7 +161528,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39978 + - uid: 23290 components: - type: Transform rot: 1.5707963267948966 rad @@ -160867,7 +161536,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39979 + - uid: 23291 components: - type: Transform rot: 1.5707963267948966 rad @@ -160875,77 +161544,77 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39981 + - uid: 23292 components: - type: Transform pos: -16.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39982 + - uid: 23293 components: - type: Transform pos: -13.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39983 + - uid: 23294 components: - type: Transform pos: -13.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39984 + - uid: 23295 components: - type: Transform pos: -13.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39985 + - uid: 23296 components: - type: Transform pos: -13.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39986 + - uid: 23297 components: - type: Transform pos: -14.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39988 + - uid: 23298 components: - type: Transform pos: -12.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39989 + - uid: 23299 components: - type: Transform pos: -12.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39990 + - uid: 23300 components: - type: Transform pos: -12.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39991 + - uid: 23301 components: - type: Transform pos: -12.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 40402 + - uid: 23302 components: - type: Transform rot: 1.5707963267948966 rad @@ -160953,7 +161622,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 40469 + - uid: 23303 components: - type: Transform rot: 1.5707963267948966 rad @@ -160961,7 +161630,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 40470 + - uid: 23304 components: - type: Transform rot: 1.5707963267948966 rad @@ -160969,7 +161638,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 40479 + - uid: 23305 components: - type: Transform rot: -1.5707963267948966 rad @@ -160977,7 +161646,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 40480 + - uid: 23306 components: - type: Transform rot: -1.5707963267948966 rad @@ -160985,7 +161654,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 40481 + - uid: 23307 components: - type: Transform rot: -1.5707963267948966 rad @@ -160993,7 +161662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 40482 + - uid: 23308 components: - type: Transform rot: -1.5707963267948966 rad @@ -161001,280 +161670,388 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 40808 + - uid: 23309 components: - type: Transform pos: 79.5,-0.5 parent: 2 - - uid: 40809 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23310 components: - type: Transform pos: 83.5,-0.5 parent: 2 - - uid: 40810 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23311 components: - type: Transform pos: 87.5,-0.5 parent: 2 - - uid: 40860 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23312 components: - type: Transform rot: 1.5707963267948966 rad pos: 111.5,-42.5 parent: 2 - - uid: 40892 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23313 components: - type: Transform rot: -1.5707963267948966 rad pos: 113.5,-40.5 parent: 2 - - uid: 40893 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23314 components: - type: Transform rot: -1.5707963267948966 rad pos: 114.5,-40.5 parent: 2 - - uid: 40894 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23315 components: - type: Transform rot: -1.5707963267948966 rad pos: 115.5,-40.5 parent: 2 - - uid: 40895 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23316 components: - type: Transform rot: -1.5707963267948966 rad pos: 116.5,-40.5 parent: 2 - - uid: 40896 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23317 components: - type: Transform rot: -1.5707963267948966 rad pos: 121.5,-40.5 parent: 2 - - uid: 40898 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23318 components: - type: Transform rot: -1.5707963267948966 rad pos: 118.5,-40.5 parent: 2 - - uid: 40899 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23319 components: - type: Transform rot: -1.5707963267948966 rad pos: 119.5,-40.5 parent: 2 - - uid: 40900 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23320 components: - type: Transform rot: -1.5707963267948966 rad pos: 120.5,-40.5 parent: 2 - - uid: 40901 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23321 components: - type: Transform rot: -1.5707963267948966 rad pos: 124.5,-40.5 parent: 2 - - uid: 40905 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23322 components: - type: Transform rot: -1.5707963267948966 rad pos: 122.5,-40.5 parent: 2 - - uid: 40906 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23323 components: - type: Transform rot: -1.5707963267948966 rad pos: 123.5,-40.5 parent: 2 - - uid: 40907 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23324 components: - type: Transform rot: -1.5707963267948966 rad pos: 123.5,-38.5 parent: 2 - - uid: 40908 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23325 components: - type: Transform rot: -1.5707963267948966 rad pos: 125.5,-40.5 parent: 2 - - uid: 40909 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23326 components: - type: Transform rot: -1.5707963267948966 rad pos: 126.5,-40.5 parent: 2 - - uid: 40910 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23327 components: - type: Transform rot: -1.5707963267948966 rad pos: 127.5,-40.5 parent: 2 - - uid: 40911 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23328 components: - type: Transform rot: -1.5707963267948966 rad pos: 120.5,-38.5 parent: 2 - - uid: 40915 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23329 components: - type: Transform rot: -1.5707963267948966 rad pos: 115.5,-38.5 parent: 2 - - uid: 40916 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23330 components: - type: Transform rot: -1.5707963267948966 rad pos: 126.5,-38.5 parent: 2 - - uid: 40917 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23331 components: - type: Transform rot: -1.5707963267948966 rad pos: 125.5,-38.5 parent: 2 - - uid: 40918 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23332 components: - type: Transform rot: -1.5707963267948966 rad pos: 124.5,-38.5 parent: 2 - - uid: 40925 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23333 components: - type: Transform rot: -1.5707963267948966 rad pos: 121.5,-38.5 parent: 2 - - uid: 40926 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23334 components: - type: Transform rot: -1.5707963267948966 rad pos: 122.5,-38.5 parent: 2 - - uid: 40956 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23335 components: - type: Transform rot: -1.5707963267948966 rad pos: 119.5,-38.5 parent: 2 - - uid: 40957 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23336 components: - type: Transform rot: -1.5707963267948966 rad pos: 118.5,-38.5 parent: 2 - - uid: 40958 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23337 components: - type: Transform rot: -1.5707963267948966 rad pos: 117.5,-38.5 parent: 2 - - uid: 40961 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23338 components: - type: Transform rot: -1.5707963267948966 rad pos: 114.5,-38.5 parent: 2 - - uid: 40962 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23339 components: - type: Transform rot: -1.5707963267948966 rad pos: 113.5,-38.5 parent: 2 - - uid: 40963 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23340 components: - type: Transform rot: -1.5707963267948966 rad pos: 112.5,-38.5 parent: 2 - - uid: 40964 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23341 components: - type: Transform rot: -1.5707963267948966 rad pos: 111.5,-38.5 parent: 2 - - uid: 40965 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23342 components: - type: Transform rot: -1.5707963267948966 rad pos: 110.5,-42.5 parent: 2 - - uid: 40966 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23343 components: - type: Transform rot: -1.5707963267948966 rad pos: 109.5,-42.5 parent: 2 - - uid: 40967 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23344 components: - type: Transform rot: -1.5707963267948966 rad pos: 108.5,-42.5 parent: 2 - - uid: 40969 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23345 components: - type: Transform rot: -1.5707963267948966 rad pos: 106.5,-42.5 parent: 2 - - uid: 40970 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23346 components: - type: Transform rot: -1.5707963267948966 rad pos: 105.5,-42.5 parent: 2 - - uid: 40971 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23347 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-42.5 parent: 2 - - uid: 40972 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23348 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-42.5 parent: 2 - - uid: 40973 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23349 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-40.5 parent: 2 - - uid: 40974 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23350 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-40.5 parent: 2 - - uid: 40976 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23351 components: - type: Transform rot: -1.5707963267948966 rad pos: 106.5,-40.5 parent: 2 - - uid: 40977 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23352 components: - type: Transform rot: -1.5707963267948966 rad pos: 107.5,-40.5 parent: 2 - - uid: 40978 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23353 components: - type: Transform rot: -1.5707963267948966 rad pos: 108.5,-40.5 parent: 2 - - uid: 40979 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23354 components: - type: Transform rot: -1.5707963267948966 rad pos: 109.5,-40.5 parent: 2 - - uid: 41164 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23357 components: - type: Transform rot: -1.5707963267948966 rad @@ -161282,28 +162059,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41165 + - uid: 23358 components: - type: Transform pos: 6.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41172 + - uid: 23359 components: - type: Transform pos: 9.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41173 + - uid: 23360 components: - type: Transform pos: 9.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41175 + - uid: 23361 components: - type: Transform rot: 1.5707963267948966 rad @@ -161311,14 +162088,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41178 + - uid: 23362 components: - type: Transform pos: 10.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41180 + - uid: 23363 components: - type: Transform rot: 1.5707963267948966 rad @@ -161326,7 +162103,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41181 + - uid: 23364 components: - type: Transform rot: 1.5707963267948966 rad @@ -161334,7 +162111,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41182 + - uid: 23365 components: - type: Transform rot: 1.5707963267948966 rad @@ -161342,7 +162119,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41183 + - uid: 23366 components: - type: Transform rot: 1.5707963267948966 rad @@ -161350,7 +162127,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41184 + - uid: 23367 components: - type: Transform rot: 1.5707963267948966 rad @@ -161358,7 +162135,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41185 + - uid: 23368 components: - type: Transform rot: 1.5707963267948966 rad @@ -161366,7 +162143,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41186 + - uid: 23369 components: - type: Transform rot: 1.5707963267948966 rad @@ -161374,7 +162151,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41187 + - uid: 23370 components: - type: Transform rot: 1.5707963267948966 rad @@ -161382,7 +162159,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41188 + - uid: 23371 components: - type: Transform rot: 1.5707963267948966 rad @@ -161390,21 +162167,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41190 + - uid: 23372 components: - type: Transform pos: 9.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41191 + - uid: 23373 components: - type: Transform pos: 9.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41192 + - uid: 23374 components: - type: Transform rot: -1.5707963267948966 rad @@ -161412,7 +162189,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41193 + - uid: 23375 components: - type: Transform rot: -1.5707963267948966 rad @@ -161420,7 +162197,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41194 + - uid: 23376 components: - type: Transform rot: -1.5707963267948966 rad @@ -161428,7 +162205,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41195 + - uid: 23377 components: - type: Transform rot: -1.5707963267948966 rad @@ -161436,7 +162213,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41196 + - uid: 23378 components: - type: Transform rot: -1.5707963267948966 rad @@ -161444,7 +162221,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41197 + - uid: 23379 components: - type: Transform rot: -1.5707963267948966 rad @@ -161452,7 +162229,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41198 + - uid: 23380 components: - type: Transform rot: -1.5707963267948966 rad @@ -161460,7 +162237,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41199 + - uid: 23381 components: - type: Transform rot: -1.5707963267948966 rad @@ -161468,7 +162245,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41200 + - uid: 23382 components: - type: Transform rot: 3.141592653589793 rad @@ -161476,7 +162253,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41201 + - uid: 23383 components: - type: Transform rot: 3.141592653589793 rad @@ -161484,7 +162261,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41202 + - uid: 23384 components: - type: Transform rot: 3.141592653589793 rad @@ -161492,7 +162269,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41206 + - uid: 23385 components: - type: Transform rot: 1.5707963267948966 rad @@ -161500,7 +162277,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41207 + - uid: 23386 components: - type: Transform rot: 1.5707963267948966 rad @@ -161508,7 +162285,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41208 + - uid: 23387 components: - type: Transform rot: -1.5707963267948966 rad @@ -161516,7 +162293,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41210 + - uid: 23388 components: - type: Transform rot: -1.5707963267948966 rad @@ -161524,7 +162301,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41212 + - uid: 23389 components: - type: Transform rot: 3.141592653589793 rad @@ -161532,7 +162309,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41215 + - uid: 23390 components: - type: Transform rot: -1.5707963267948966 rad @@ -161540,7 +162317,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41216 + - uid: 23391 components: - type: Transform rot: -1.5707963267948966 rad @@ -161548,7 +162325,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41218 + - uid: 23392 components: - type: Transform rot: 3.141592653589793 rad @@ -161556,7 +162333,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41219 + - uid: 23393 components: - type: Transform rot: 3.141592653589793 rad @@ -161564,7 +162341,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41222 + - uid: 23394 components: - type: Transform rot: 1.5707963267948966 rad @@ -161572,7 +162349,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41223 + - uid: 23395 components: - type: Transform rot: 1.5707963267948966 rad @@ -161580,35 +162357,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41224 + - uid: 23396 components: - type: Transform pos: 19.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41225 + - uid: 23397 components: - type: Transform pos: 19.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41227 + - uid: 23398 components: - type: Transform pos: 14.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41228 + - uid: 23399 components: - type: Transform pos: 14.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41230 + - uid: 23400 components: - type: Transform rot: -1.5707963267948966 rad @@ -161616,7 +162393,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41231 + - uid: 23401 components: - type: Transform rot: -1.5707963267948966 rad @@ -161624,7 +162401,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41232 + - uid: 23402 components: - type: Transform rot: -1.5707963267948966 rad @@ -161632,42 +162409,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41235 + - uid: 23403 components: - type: Transform pos: 11.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41236 + - uid: 23404 components: - type: Transform pos: 11.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41237 + - uid: 23405 components: - type: Transform pos: 11.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41238 + - uid: 23406 components: - type: Transform pos: 11.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41239 + - uid: 23407 components: - type: Transform pos: 11.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41241 + - uid: 23408 components: - type: Transform rot: 3.141592653589793 rad @@ -161675,7 +162452,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41244 + - uid: 23409 components: - type: Transform rot: 3.141592653589793 rad @@ -161683,7 +162460,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41245 + - uid: 23410 components: - type: Transform rot: 3.141592653589793 rad @@ -161691,7 +162468,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41246 + - uid: 23411 components: - type: Transform rot: 3.141592653589793 rad @@ -161699,7 +162476,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41248 + - uid: 23412 components: - type: Transform rot: -1.5707963267948966 rad @@ -161707,35 +162484,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41256 + - uid: 23413 components: - type: Transform pos: -4.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41257 + - uid: 23414 components: - type: Transform pos: -4.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41258 + - uid: 23415 components: - type: Transform pos: -4.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41259 + - uid: 23416 components: - type: Transform pos: -4.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41260 + - uid: 23417 components: - type: Transform rot: 1.5707963267948966 rad @@ -161743,7 +162520,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41261 + - uid: 23418 components: - type: Transform rot: 1.5707963267948966 rad @@ -161751,7 +162528,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41262 + - uid: 23419 components: - type: Transform rot: 1.5707963267948966 rad @@ -161759,7 +162536,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41263 + - uid: 23420 components: - type: Transform rot: 1.5707963267948966 rad @@ -161767,7 +162544,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41265 + - uid: 23421 components: - type: Transform rot: 3.141592653589793 rad @@ -161775,7 +162552,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41266 + - uid: 23422 components: - type: Transform rot: 3.141592653589793 rad @@ -161783,7 +162560,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41267 + - uid: 23423 components: - type: Transform rot: 1.5707963267948966 rad @@ -161791,7 +162568,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41268 + - uid: 23424 components: - type: Transform rot: 1.5707963267948966 rad @@ -161799,7 +162576,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41269 + - uid: 23425 components: - type: Transform rot: 1.5707963267948966 rad @@ -161807,7 +162584,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41270 + - uid: 23426 components: - type: Transform rot: 1.5707963267948966 rad @@ -161815,7 +162592,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41271 + - uid: 23427 components: - type: Transform rot: 1.5707963267948966 rad @@ -161823,7 +162600,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41273 + - uid: 23428 components: - type: Transform rot: 1.5707963267948966 rad @@ -161831,7 +162608,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41274 + - uid: 23429 components: - type: Transform rot: 1.5707963267948966 rad @@ -161839,7 +162616,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41275 + - uid: 23430 components: - type: Transform rot: 1.5707963267948966 rad @@ -161847,7 +162624,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41276 + - uid: 23431 components: - type: Transform rot: 1.5707963267948966 rad @@ -161855,7 +162632,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41277 + - uid: 23432 components: - type: Transform rot: 1.5707963267948966 rad @@ -161863,7 +162640,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41279 + - uid: 23433 components: - type: Transform rot: 3.141592653589793 rad @@ -161871,7 +162648,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41281 + - uid: 23434 components: - type: Transform rot: 1.5707963267948966 rad @@ -161879,14 +162656,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41285 + - uid: 23435 components: - type: Transform pos: -2.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41286 + - uid: 23436 components: - type: Transform rot: -1.5707963267948966 rad @@ -161894,7 +162671,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41287 + - uid: 23437 components: - type: Transform rot: -1.5707963267948966 rad @@ -161902,7 +162679,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41288 + - uid: 23438 components: - type: Transform rot: -1.5707963267948966 rad @@ -161910,7 +162687,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41289 + - uid: 23439 components: - type: Transform rot: -1.5707963267948966 rad @@ -161918,7 +162695,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41290 + - uid: 23440 components: - type: Transform rot: -1.5707963267948966 rad @@ -161926,7 +162703,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41291 + - uid: 23441 components: - type: Transform rot: -1.5707963267948966 rad @@ -161934,21 +162711,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41292 + - uid: 23442 components: - type: Transform pos: -16.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41293 + - uid: 23443 components: - type: Transform pos: -16.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41296 + - uid: 23444 components: - type: Transform rot: 3.141592653589793 rad @@ -161956,7 +162733,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41297 + - uid: 23445 components: - type: Transform rot: 3.141592653589793 rad @@ -161964,7 +162741,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41298 + - uid: 23446 components: - type: Transform rot: -1.5707963267948966 rad @@ -161972,7 +162749,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41299 + - uid: 23447 components: - type: Transform rot: -1.5707963267948966 rad @@ -161980,7 +162757,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41300 + - uid: 23448 components: - type: Transform rot: -1.5707963267948966 rad @@ -161988,7 +162765,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41301 + - uid: 23449 components: - type: Transform rot: -1.5707963267948966 rad @@ -161996,7 +162773,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41302 + - uid: 23450 components: - type: Transform rot: -1.5707963267948966 rad @@ -162004,7 +162781,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41303 + - uid: 23451 components: - type: Transform rot: -1.5707963267948966 rad @@ -162012,7 +162789,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41304 + - uid: 23452 components: - type: Transform rot: -1.5707963267948966 rad @@ -162020,7 +162797,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41309 + - uid: 23453 components: - type: Transform rot: -1.5707963267948966 rad @@ -162028,7 +162805,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41310 + - uid: 23454 components: - type: Transform rot: -1.5707963267948966 rad @@ -162036,7 +162813,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41311 + - uid: 23455 components: - type: Transform rot: 3.141592653589793 rad @@ -162044,7 +162821,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41312 + - uid: 23456 components: - type: Transform rot: 3.141592653589793 rad @@ -162052,7 +162829,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41313 + - uid: 23457 components: - type: Transform rot: 3.141592653589793 rad @@ -162060,7 +162837,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41314 + - uid: 23458 components: - type: Transform rot: 3.141592653589793 rad @@ -162068,7 +162845,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41315 + - uid: 23459 components: - type: Transform rot: 3.141592653589793 rad @@ -162076,7 +162853,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41317 + - uid: 23460 components: - type: Transform rot: -1.5707963267948966 rad @@ -162084,7 +162861,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41318 + - uid: 23461 components: - type: Transform rot: -1.5707963267948966 rad @@ -162092,7 +162869,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41319 + - uid: 23462 components: - type: Transform rot: 3.141592653589793 rad @@ -162100,7 +162877,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41320 + - uid: 23463 components: - type: Transform rot: 3.141592653589793 rad @@ -162108,7 +162885,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41321 + - uid: 23464 components: - type: Transform rot: 3.141592653589793 rad @@ -162116,7 +162893,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41322 + - uid: 23465 components: - type: Transform rot: 3.141592653589793 rad @@ -162124,7 +162901,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41323 + - uid: 23466 components: - type: Transform rot: 3.141592653589793 rad @@ -162132,7 +162909,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41324 + - uid: 23467 components: - type: Transform rot: 3.141592653589793 rad @@ -162140,7 +162917,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41325 + - uid: 23468 components: - type: Transform rot: 1.5707963267948966 rad @@ -162148,7 +162925,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41326 + - uid: 23469 components: - type: Transform rot: 1.5707963267948966 rad @@ -162156,7 +162933,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41333 + - uid: 23470 components: - type: Transform rot: 1.5707963267948966 rad @@ -162164,7 +162941,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41334 + - uid: 23471 components: - type: Transform rot: 1.5707963267948966 rad @@ -162172,7 +162949,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41335 + - uid: 23472 components: - type: Transform rot: 1.5707963267948966 rad @@ -162180,7 +162957,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41337 + - uid: 23473 components: - type: Transform rot: 1.5707963267948966 rad @@ -162188,28 +162965,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41340 + - uid: 23474 components: - type: Transform pos: -14.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41341 + - uid: 23475 components: - type: Transform pos: -14.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41342 + - uid: 23476 components: - type: Transform pos: -14.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41345 + - uid: 23477 components: - type: Transform rot: 1.5707963267948966 rad @@ -162217,7 +162994,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41346 + - uid: 23478 components: - type: Transform rot: 1.5707963267948966 rad @@ -162225,21 +163002,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41347 + - uid: 23479 components: - type: Transform pos: -10.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41348 + - uid: 23480 components: - type: Transform pos: -10.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41349 + - uid: 23481 components: - type: Transform rot: -1.5707963267948966 rad @@ -162247,7 +163024,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41350 + - uid: 23482 components: - type: Transform rot: -1.5707963267948966 rad @@ -162255,7 +163032,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41351 + - uid: 23483 components: - type: Transform rot: -1.5707963267948966 rad @@ -162263,7 +163040,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41352 + - uid: 23484 components: - type: Transform rot: -1.5707963267948966 rad @@ -162271,7 +163048,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41353 + - uid: 23485 components: - type: Transform rot: -1.5707963267948966 rad @@ -162279,7 +163056,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41354 + - uid: 23486 components: - type: Transform rot: -1.5707963267948966 rad @@ -162287,7 +163064,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41355 + - uid: 23487 components: - type: Transform rot: -1.5707963267948966 rad @@ -162295,7 +163072,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41359 + - uid: 23488 components: - type: Transform rot: 3.141592653589793 rad @@ -162303,7 +163080,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41360 + - uid: 23489 components: - type: Transform rot: 3.141592653589793 rad @@ -162311,7 +163088,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41361 + - uid: 23490 components: - type: Transform rot: 3.141592653589793 rad @@ -162319,7 +163096,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41362 + - uid: 23491 components: - type: Transform rot: 3.141592653589793 rad @@ -162327,7 +163104,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41363 + - uid: 23492 components: - type: Transform rot: 1.5707963267948966 rad @@ -162335,7 +163112,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41364 + - uid: 23493 components: - type: Transform rot: 1.5707963267948966 rad @@ -162343,7 +163120,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41365 + - uid: 23494 components: - type: Transform rot: 1.5707963267948966 rad @@ -162351,7 +163128,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41367 + - uid: 23495 components: - type: Transform rot: -1.5707963267948966 rad @@ -162359,7 +163136,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41368 + - uid: 23496 components: - type: Transform rot: 3.141592653589793 rad @@ -162367,7 +163144,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41369 + - uid: 23497 components: - type: Transform rot: 3.141592653589793 rad @@ -162375,7 +163152,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41370 + - uid: 23498 components: - type: Transform rot: 1.5707963267948966 rad @@ -162383,7 +163160,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41371 + - uid: 23499 components: - type: Transform rot: 1.5707963267948966 rad @@ -162391,7 +163168,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41374 + - uid: 23500 components: - type: Transform rot: 3.141592653589793 rad @@ -162399,21 +163176,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41376 + - uid: 23501 components: - type: Transform pos: -5.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41377 + - uid: 23502 components: - type: Transform pos: -5.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41379 + - uid: 23503 components: - type: Transform rot: 1.5707963267948966 rad @@ -162421,42 +163198,42 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41380 + - uid: 23504 components: - type: Transform pos: -2.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41381 + - uid: 23505 components: - type: Transform pos: -2.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41382 + - uid: 23506 components: - type: Transform pos: -2.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41383 + - uid: 23507 components: - type: Transform pos: -2.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41384 + - uid: 23508 components: - type: Transform pos: -2.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41394 + - uid: 23509 components: - type: Transform rot: -1.5707963267948966 rad @@ -162464,7 +163241,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41395 + - uid: 23510 components: - type: Transform rot: -1.5707963267948966 rad @@ -162472,7 +163249,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41396 + - uid: 23511 components: - type: Transform rot: -1.5707963267948966 rad @@ -162480,7 +163257,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41397 + - uid: 23512 components: - type: Transform rot: 3.141592653589793 rad @@ -162488,7 +163265,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41398 + - uid: 23513 components: - type: Transform rot: 3.141592653589793 rad @@ -162496,7 +163273,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41399 + - uid: 23514 components: - type: Transform rot: 1.5707963267948966 rad @@ -162504,7 +163281,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41400 + - uid: 23515 components: - type: Transform rot: 1.5707963267948966 rad @@ -162512,14 +163289,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41402 + - uid: 23516 components: - type: Transform pos: -3.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41403 + - uid: 23517 components: - type: Transform rot: -1.5707963267948966 rad @@ -162527,7 +163304,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41404 + - uid: 23518 components: - type: Transform rot: -1.5707963267948966 rad @@ -162535,7 +163312,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41405 + - uid: 23519 components: - type: Transform rot: -1.5707963267948966 rad @@ -162543,7 +163320,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41406 + - uid: 23520 components: - type: Transform rot: -1.5707963267948966 rad @@ -162551,7 +163328,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41407 + - uid: 23521 components: - type: Transform rot: -1.5707963267948966 rad @@ -162559,7 +163336,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41408 + - uid: 23522 components: - type: Transform rot: -1.5707963267948966 rad @@ -162567,7 +163344,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41409 + - uid: 23523 components: - type: Transform rot: -1.5707963267948966 rad @@ -162575,7 +163352,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41410 + - uid: 23524 components: - type: Transform rot: -1.5707963267948966 rad @@ -162583,7 +163360,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41411 + - uid: 23525 components: - type: Transform rot: -1.5707963267948966 rad @@ -162591,7 +163368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41412 + - uid: 23526 components: - type: Transform rot: -1.5707963267948966 rad @@ -162599,7 +163376,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41413 + - uid: 23527 components: - type: Transform rot: -1.5707963267948966 rad @@ -162607,7 +163384,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41414 + - uid: 23528 components: - type: Transform rot: 3.141592653589793 rad @@ -162615,7 +163392,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41415 + - uid: 23529 components: - type: Transform rot: 3.141592653589793 rad @@ -162623,7 +163400,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41416 + - uid: 23530 components: - type: Transform rot: 3.141592653589793 rad @@ -162631,7 +163408,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41417 + - uid: 23531 components: - type: Transform rot: 3.141592653589793 rad @@ -162639,7 +163416,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41418 + - uid: 23532 components: - type: Transform rot: 3.141592653589793 rad @@ -162647,7 +163424,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41419 + - uid: 23533 components: - type: Transform rot: 3.141592653589793 rad @@ -162655,7 +163432,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41420 + - uid: 23534 components: - type: Transform rot: 3.141592653589793 rad @@ -162663,7 +163440,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41421 + - uid: 23535 components: - type: Transform rot: 3.141592653589793 rad @@ -162671,7 +163448,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41422 + - uid: 23536 components: - type: Transform rot: 3.141592653589793 rad @@ -162679,7 +163456,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41423 + - uid: 23537 components: - type: Transform rot: 3.141592653589793 rad @@ -162687,119 +163464,119 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41429 + - uid: 23538 components: - type: Transform pos: -10.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41433 + - uid: 23539 components: - type: Transform pos: 9.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41434 + - uid: 23540 components: - type: Transform pos: 9.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41435 + - uid: 23541 components: - type: Transform pos: 9.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41436 + - uid: 23542 components: - type: Transform pos: 9.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41437 + - uid: 23543 components: - type: Transform pos: 9.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41438 + - uid: 23544 components: - type: Transform pos: 9.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41439 + - uid: 23545 components: - type: Transform pos: 9.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41440 + - uid: 23546 components: - type: Transform pos: 9.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41441 + - uid: 23547 components: - type: Transform pos: 9.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41442 + - uid: 23548 components: - type: Transform pos: 9.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41443 + - uid: 23549 components: - type: Transform pos: 9.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41444 + - uid: 23550 components: - type: Transform pos: 9.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41445 + - uid: 23551 components: - type: Transform pos: 9.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41446 + - uid: 23552 components: - type: Transform pos: 9.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41447 + - uid: 23553 components: - type: Transform pos: 9.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41448 + - uid: 23554 components: - type: Transform rot: -1.5707963267948966 rad @@ -162807,7 +163584,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41449 + - uid: 23555 components: - type: Transform rot: -1.5707963267948966 rad @@ -162815,7 +163592,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41450 + - uid: 23556 components: - type: Transform rot: -1.5707963267948966 rad @@ -162823,28 +163600,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41456 + - uid: 23557 components: - type: Transform pos: -5.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41457 + - uid: 23558 components: - type: Transform pos: -5.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41458 + - uid: 23559 components: - type: Transform pos: -5.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41459 + - uid: 23560 components: - type: Transform rot: -1.5707963267948966 rad @@ -162852,7 +163629,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41460 + - uid: 23561 components: - type: Transform rot: -1.5707963267948966 rad @@ -162860,7 +163637,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41461 + - uid: 23562 components: - type: Transform rot: -1.5707963267948966 rad @@ -162868,7 +163645,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41462 + - uid: 23563 components: - type: Transform rot: -1.5707963267948966 rad @@ -162876,7 +163653,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41463 + - uid: 23564 components: - type: Transform rot: -1.5707963267948966 rad @@ -162884,7 +163661,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41464 + - uid: 23565 components: - type: Transform rot: -1.5707963267948966 rad @@ -162892,7 +163669,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41465 + - uid: 23566 components: - type: Transform rot: -1.5707963267948966 rad @@ -162900,7 +163677,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41466 + - uid: 23567 components: - type: Transform rot: -1.5707963267948966 rad @@ -162908,7 +163685,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41468 + - uid: 23568 components: - type: Transform rot: -1.5707963267948966 rad @@ -162916,7 +163693,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41469 + - uid: 23569 components: - type: Transform rot: -1.5707963267948966 rad @@ -162924,7 +163701,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41478 + - uid: 23570 components: - type: Transform rot: 3.141592653589793 rad @@ -162932,21 +163709,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41482 + - uid: 23571 components: - type: Transform pos: -3.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41483 + - uid: 23572 components: - type: Transform pos: -3.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41485 + - uid: 23573 components: - type: Transform rot: -1.5707963267948966 rad @@ -162954,7 +163731,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41487 + - uid: 23574 components: - type: Transform rot: 1.5707963267948966 rad @@ -162962,14 +163739,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41488 + - uid: 23575 components: - type: Transform pos: 0.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41489 + - uid: 23576 components: - type: Transform rot: -1.5707963267948966 rad @@ -162977,7 +163754,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41491 + - uid: 23577 components: - type: Transform rot: -1.5707963267948966 rad @@ -162985,7 +163762,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41492 + - uid: 23578 components: - type: Transform rot: -1.5707963267948966 rad @@ -162993,7 +163770,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41493 + - uid: 23579 components: - type: Transform rot: -1.5707963267948966 rad @@ -163001,7 +163778,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41494 + - uid: 23580 components: - type: Transform rot: -1.5707963267948966 rad @@ -163009,7 +163786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41495 + - uid: 23581 components: - type: Transform rot: -1.5707963267948966 rad @@ -163017,7 +163794,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41496 + - uid: 23582 components: - type: Transform rot: -1.5707963267948966 rad @@ -163025,7 +163802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41497 + - uid: 23583 components: - type: Transform rot: -1.5707963267948966 rad @@ -163033,7 +163810,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41499 + - uid: 23584 components: - type: Transform rot: -1.5707963267948966 rad @@ -163041,7 +163818,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41500 + - uid: 23585 components: - type: Transform rot: -1.5707963267948966 rad @@ -163049,7 +163826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41501 + - uid: 23586 components: - type: Transform rot: -1.5707963267948966 rad @@ -163057,7 +163834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41502 + - uid: 23587 components: - type: Transform rot: -1.5707963267948966 rad @@ -163065,7 +163842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41503 + - uid: 23588 components: - type: Transform rot: -1.5707963267948966 rad @@ -163073,7 +163850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41504 + - uid: 23589 components: - type: Transform rot: 3.141592653589793 rad @@ -163081,7 +163858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41505 + - uid: 23590 components: - type: Transform rot: 3.141592653589793 rad @@ -163089,7 +163866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41506 + - uid: 23591 components: - type: Transform rot: 3.141592653589793 rad @@ -163097,7 +163874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41507 + - uid: 23592 components: - type: Transform rot: 3.141592653589793 rad @@ -163105,7 +163882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41508 + - uid: 23593 components: - type: Transform rot: 3.141592653589793 rad @@ -163113,7 +163890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41511 + - uid: 23594 components: - type: Transform rot: 3.141592653589793 rad @@ -163121,490 +163898,1883 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41512 + - uid: 23595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 23596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 23597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 23598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 23599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 23600 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23601 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23602 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23608 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23613 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23629 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23630 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23631 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23632 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23633 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23634 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23646 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23647 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23648 + components: + - type: Transform + pos: -0.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23649 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23650 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23651 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23652 + components: + - type: Transform + pos: -0.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23653 + components: + - type: Transform + pos: -0.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23654 + components: + - type: Transform + pos: -0.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23655 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23656 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23657 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 23658 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23659 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 98.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 99.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 101.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23669 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23670 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23671 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23672 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23673 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23690 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23693 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23694 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23695 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23721 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23722 + components: + - type: Transform + pos: -8.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23726 + components: + - type: Transform + pos: -48.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23727 + components: + - type: Transform + pos: -48.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23728 + components: + - type: Transform + pos: -48.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23729 + components: + - type: Transform + pos: -48.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23730 + components: + - type: Transform + pos: -48.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23753 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23765 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23766 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 40736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 40666 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 40737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 40666 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 40738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 40666 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 40739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 40666 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 40740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 40666 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 40741 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 40666 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41188 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-56.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 41513 + pos: 0.5,-14.5 + parent: 40828 + - uid: 41189 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 41514 + pos: 0.5,-13.5 + parent: 40828 + - uid: 41190 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-58.5 - parent: 2 + pos: 0.5,-12.5 + parent: 40828 + - uid: 41191 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 41515 + color: '#0000FFFF' + - uid: 41192 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-59.5 - parent: 2 + pos: 1.5,-9.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 41516 + color: '#0000FFFF' + - uid: 41193 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-60.5 - parent: 2 + pos: 0.5,-10.5 + parent: 40828 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 41522 + color: '#FF0000FF' + - uid: 41194 components: - type: Transform - pos: -3.5,-17.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41523 + color: '#0000FFFF' + - uid: 41195 components: - type: Transform - pos: -3.5,-18.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41524 + color: '#0000FFFF' + - uid: 41196 components: - type: Transform - pos: -3.5,-19.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41525 + color: '#0000FFFF' + - uid: 41197 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 2 + pos: 5.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41526 + color: '#0000FFFF' + - uid: 41198 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-21.5 - parent: 2 + pos: 0.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41527 + color: '#0000FFFF' + - uid: 41199 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-21.5 - parent: 2 + pos: -0.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41528 + color: '#0000FFFF' + - uid: 41200 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 2 + pos: -1.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41529 + color: '#0000FFFF' + - uid: 41201 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 2 + pos: -2.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41530 + color: '#0000FFFF' + - uid: 41202 components: - type: Transform - pos: -10.5,-17.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41532 + color: '#0000FFFF' + - uid: 41203 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-23.5 - parent: 2 + pos: 1.5,-9.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41533 + color: '#FF0000FF' + - uid: 41204 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 2 + pos: 2.5,-9.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41534 + color: '#FF0000FF' + - uid: 41205 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 2 + pos: 3.5,-9.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41535 + color: '#FF0000FF' + - uid: 41206 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-23.5 - parent: 2 + pos: -0.5,-9.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41536 + color: '#FF0000FF' + - uid: 41207 components: - type: Transform - pos: -11.5,-21.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41539 + color: '#FF0000FF' + - uid: 41208 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-25.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41540 + color: '#FF0000FF' + - uid: 41209 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-26.5 - parent: 2 + pos: -3.5,-10.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41541 + color: '#FF0000FF' + - uid: 41210 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-27.5 - parent: 2 + pos: -3.5,-11.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41543 + color: '#FF0000FF' + - uid: 41211 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-29.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41544 + color: '#FF0000FF' + - uid: 41212 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-30.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41545 + color: '#0000FFFF' + - uid: 41213 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-31.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41546 + color: '#0000FFFF' + - uid: 41214 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-32.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41547 + color: '#0000FFFF' + - uid: 41215 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-28.5 - parent: 2 + pos: 0.5,-6.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41548 + color: '#0000FFFF' + - uid: 41216 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-28.5 - parent: 2 + pos: -0.5,-6.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41549 + color: '#0000FFFF' + - uid: 41217 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-24.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41550 + color: '#0000FFFF' + - uid: 41218 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-33.5 - parent: 2 + pos: -2.5,-6.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41554 + color: '#0000FFFF' + - uid: 41219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-38.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41555 + color: '#FF0000FF' + - uid: 41220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-33.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41556 + color: '#FF0000FF' + - uid: 41221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-33.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41557 + color: '#FF0000FF' + - uid: 41222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-33.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41558 + color: '#FF0000FF' + - uid: 41223 components: - type: Transform - pos: -16.5,-37.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41559 + color: '#FF0000FF' + - uid: 41224 components: - type: Transform - pos: -16.5,-36.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41560 + color: '#FF0000FF' + - uid: 41225 components: - type: Transform - pos: -16.5,-35.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41561 + color: '#FF0000FF' + - uid: 41226 components: - type: Transform - pos: -16.5,-34.5 - parent: 2 + pos: 1.5,-5.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41562 + color: '#0000FFFF' + - uid: 41227 components: - type: Transform - pos: -10.5,-18.5 - parent: 2 + pos: 1.5,-4.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41563 + color: '#0000FFFF' + - uid: 41228 components: - type: Transform - pos: -10.5,-19.5 - parent: 2 + pos: 1.5,-3.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41566 + color: '#0000FFFF' + - uid: 41229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-20.5 - parent: 2 + pos: 1.5,-2.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41567 + color: '#0000FFFF' + - uid: 41230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-20.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41568 + color: '#FF0000FF' + - uid: 41231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-20.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41569 + color: '#FF0000FF' + - uid: 41232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-20.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 40828 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41570 + color: '#FF0000FF' + - uid: 41790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-20.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41571 + color: '#FF0000FF' + - uid: 41791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-20.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41575 + color: '#FF0000FF' + - uid: 41792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-34.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41576 + color: '#FF0000FF' + - uid: 41793 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-35.5 - parent: 2 + pos: 4.5,-4.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41577 + color: '#FF0000FF' + - uid: 41794 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-36.5 - parent: 2 + pos: 3.5,-10.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41578 + color: '#0000FFFF' + - uid: 41795 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-37.5 - parent: 2 + pos: 3.5,-9.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41579 + color: '#0000FFFF' + - uid: 41796 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-38.5 - parent: 2 + pos: 3.5,-0.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41582 + color: '#0000FFFF' + - uid: 41797 components: - type: Transform - pos: -0.5,-45.5 - parent: 2 + pos: 3.5,0.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41583 + color: '#0000FFFF' + - uid: 41798 components: - type: Transform - pos: -0.5,-46.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41584 + color: '#FF0000FF' + - uid: 41799 components: - type: Transform - pos: -0.5,-47.5 - parent: 2 + pos: 2.5,-7.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41585 + color: '#0000FFFF' + - uid: 41800 components: - type: Transform - pos: -0.5,-48.5 - parent: 2 + pos: 2.5,-6.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41586 + color: '#0000FFFF' + - uid: 41801 components: - type: Transform - pos: -0.5,-49.5 - parent: 2 + pos: 3.5,-3.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41587 + color: '#0000FFFF' + - uid: 41802 components: - type: Transform - pos: -0.5,-50.5 - parent: 2 + pos: 3.5,-1.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41588 + color: '#0000FFFF' + - uid: 41803 components: - type: Transform - pos: -0.5,-51.5 - parent: 2 + pos: 4.5,-6.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41589 + color: '#FF0000FF' + - uid: 41804 components: - type: Transform - pos: -0.5,-52.5 - parent: 2 + pos: 4.5,-1.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41590 + color: '#FF0000FF' + - uid: 41805 components: - type: Transform - pos: -0.5,-53.5 - parent: 2 + pos: 4.5,-9.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41591 + color: '#FF0000FF' + - uid: 41806 components: - type: Transform - pos: -0.5,-54.5 - parent: 2 + pos: 4.5,-3.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41592 + color: '#FF0000FF' + - uid: 41807 components: - type: Transform - pos: -0.5,-55.5 - parent: 2 + pos: 4.5,-8.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41593 + color: '#FF0000FF' + - uid: 41808 components: - type: Transform - pos: -0.5,-56.5 - parent: 2 + pos: 4.5,-0.5 + parent: 41669 - type: AtmosPipeColor - color: '#B7410EFF' + color: '#FF0000FF' - proto: GasPipeTJunction entities: - - uid: 277 + - uid: 23768 components: - type: Transform rot: 1.5707963267948966 rad @@ -163612,22 +165782,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 747 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2636 + - uid: 23769 components: - type: Transform pos: 59.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6047 + - uid: 23770 components: - type: Transform rot: 1.5707963267948966 rad @@ -163635,14 +165797,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 9752 + - uid: 23771 components: - type: Transform pos: 58.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12254 + - uid: 23772 components: - type: Transform rot: 3.141592653589793 rad @@ -163650,7 +165812,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 13523 + - uid: 23773 components: - type: Transform rot: 3.141592653589793 rad @@ -163658,7 +165820,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13960 + - uid: 23774 components: - type: Transform rot: -1.5707963267948966 rad @@ -163666,7 +165828,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14007 + - uid: 23775 components: - type: Transform rot: 1.5707963267948966 rad @@ -163674,7 +165836,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14404 + - uid: 23776 components: - type: Transform rot: -1.5707963267948966 rad @@ -163682,7 +165844,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14527 + - uid: 23777 components: - type: Transform rot: -1.5707963267948966 rad @@ -163690,7 +165852,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14553 + - uid: 23778 components: - type: Transform rot: 1.5707963267948966 rad @@ -163698,7 +165860,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14554 + - uid: 23779 components: - type: Transform rot: 1.5707963267948966 rad @@ -163706,7 +165868,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14562 + - uid: 23780 components: - type: Transform rot: 3.141592653589793 rad @@ -163714,7 +165876,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14656 + - uid: 23781 components: - type: Transform rot: -1.5707963267948966 rad @@ -163722,7 +165884,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14859 + - uid: 23782 components: - type: Transform rot: 1.5707963267948966 rad @@ -163730,7 +165892,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14896 + - uid: 23783 components: - type: Transform rot: -1.5707963267948966 rad @@ -163738,7 +165900,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14979 + - uid: 23784 components: - type: Transform rot: 3.141592653589793 rad @@ -163746,7 +165908,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15095 + - uid: 23785 components: - type: Transform rot: 1.5707963267948966 rad @@ -163754,14 +165916,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15098 + - uid: 23786 components: - type: Transform pos: 57.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15103 + - uid: 23787 components: - type: Transform rot: 3.141592653589793 rad @@ -163769,7 +165931,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16222 + - uid: 23788 components: - type: Transform rot: -1.5707963267948966 rad @@ -163777,7 +165939,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16241 + - uid: 23789 components: - type: Transform rot: 1.5707963267948966 rad @@ -163785,7 +165947,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16629 + - uid: 23790 components: - type: Transform rot: 1.5707963267948966 rad @@ -163793,7 +165955,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16864 + - uid: 23791 components: - type: Transform rot: 3.141592653589793 rad @@ -163801,7 +165963,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16866 + - uid: 23792 components: - type: Transform rot: -1.5707963267948966 rad @@ -163809,7 +165971,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16893 + - uid: 23793 components: - type: Transform rot: -1.5707963267948966 rad @@ -163817,7 +165979,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16894 + - uid: 23794 components: - type: Transform rot: 1.5707963267948966 rad @@ -163825,7 +165987,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16895 + - uid: 23795 components: - type: Transform rot: 1.5707963267948966 rad @@ -163833,7 +165995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17350 + - uid: 23796 components: - type: Transform rot: 1.5707963267948966 rad @@ -163841,7 +166003,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 17891 + - uid: 23797 components: - type: Transform rot: -1.5707963267948966 rad @@ -163849,7 +166011,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18618 + - uid: 23798 components: - type: Transform rot: -1.5707963267948966 rad @@ -163857,7 +166019,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18626 + - uid: 23799 components: - type: Transform rot: -1.5707963267948966 rad @@ -163865,7 +166027,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18651 + - uid: 23800 components: - type: Transform rot: 3.141592653589793 rad @@ -163873,7 +166035,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18652 + - uid: 23801 components: - type: Transform rot: 3.141592653589793 rad @@ -163881,7 +166043,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18685 + - uid: 23802 components: - type: Transform rot: 3.141592653589793 rad @@ -163889,7 +166051,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18701 + - uid: 23803 components: - type: Transform rot: 3.141592653589793 rad @@ -163897,7 +166059,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18713 + - uid: 23804 components: - type: Transform rot: 3.141592653589793 rad @@ -163905,7 +166067,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18744 + - uid: 23805 components: - type: Transform rot: 3.141592653589793 rad @@ -163913,7 +166075,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18745 + - uid: 23806 components: - type: Transform rot: 3.141592653589793 rad @@ -163921,7 +166083,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18746 + - uid: 23807 components: - type: Transform rot: 3.141592653589793 rad @@ -163929,7 +166091,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18747 + - uid: 23808 components: - type: Transform rot: 3.141592653589793 rad @@ -163937,7 +166099,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18792 + - uid: 23809 components: - type: Transform rot: 3.141592653589793 rad @@ -163945,7 +166107,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 18951 + - uid: 23810 components: - type: Transform rot: 1.5707963267948966 rad @@ -163953,7 +166115,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 19147 + - uid: 23811 components: - type: Transform rot: 3.141592653589793 rad @@ -163961,7 +166123,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 19555 + - uid: 23812 components: - type: Transform rot: 1.5707963267948966 rad @@ -163969,7 +166131,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19619 + - uid: 23813 components: - type: Transform rot: -1.5707963267948966 rad @@ -163977,7 +166139,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19622 + - uid: 23814 components: - type: Transform rot: 1.5707963267948966 rad @@ -163985,13 +166147,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19690 + - uid: 23815 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,-41.5 parent: 2 - - uid: 19807 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23816 components: - type: Transform rot: 3.141592653589793 rad @@ -163999,7 +166163,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 19809 + - uid: 23817 components: - type: Transform rot: 3.141592653589793 rad @@ -164007,7 +166171,195 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 21067 + - uid: 23818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23822 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23829 + components: + - type: Transform + pos: -50.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23831 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23840 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23842 components: - type: Transform rot: -1.5707963267948966 rad @@ -164015,7 +166367,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21101 + - uid: 23843 components: - type: Transform rot: 3.141592653589793 rad @@ -164023,7 +166375,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 21102 + - uid: 23844 components: - type: Transform rot: 3.141592653589793 rad @@ -164031,12 +166383,50 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 21609 + - uid: 23845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23847 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23849 + components: + - type: Transform + pos: -17.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23850 components: - type: Transform pos: 36.5,-98.5 parent: 2 - - uid: 21611 + - uid: 23851 components: - type: Transform rot: 1.5707963267948966 rad @@ -164044,7 +166434,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21612 + - uid: 23852 components: - type: Transform rot: -1.5707963267948966 rad @@ -164052,7 +166442,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21613 + - uid: 23853 components: - type: Transform rot: -1.5707963267948966 rad @@ -164060,7 +166450,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21614 + - uid: 23854 components: - type: Transform rot: 3.141592653589793 rad @@ -164068,7 +166458,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21615 + - uid: 23855 components: - type: Transform rot: -1.5707963267948966 rad @@ -164076,7 +166466,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21616 + - uid: 23856 components: - type: Transform rot: 1.5707963267948966 rad @@ -164084,12 +166474,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21617 + - uid: 23857 components: - type: Transform pos: 36.5,-101.5 parent: 2 - - uid: 21618 + - uid: 23858 components: - type: Transform rot: 1.5707963267948966 rad @@ -164097,7 +166487,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21619 + - uid: 23859 components: - type: Transform rot: -1.5707963267948966 rad @@ -164105,7 +166495,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21620 + - uid: 23860 components: - type: Transform rot: 1.5707963267948966 rad @@ -164113,7 +166503,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21621 + - uid: 23861 components: - type: Transform rot: -1.5707963267948966 rad @@ -164121,19 +166511,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21625 + - uid: 23862 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-20.5 parent: 2 - - uid: 21626 + - uid: 23863 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-21.5 parent: 2 - - uid: 21627 + - uid: 23864 components: - type: Transform rot: -1.5707963267948966 rad @@ -164141,7 +166531,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21628 + - uid: 23865 components: - type: Transform rot: 1.5707963267948966 rad @@ -164149,7 +166539,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21631 + - uid: 23866 components: - type: Transform rot: 3.141592653589793 rad @@ -164157,7 +166547,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21632 + - uid: 23867 components: - type: Transform rot: -1.5707963267948966 rad @@ -164165,7 +166555,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21633 + - uid: 23868 components: - type: Transform rot: 3.141592653589793 rad @@ -164173,14 +166563,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21637 + - uid: 23869 components: - type: Transform pos: 70.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21638 + - uid: 23870 components: - type: Transform rot: 1.5707963267948966 rad @@ -164188,14 +166578,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21639 + - uid: 23871 components: - type: Transform pos: 65.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21640 + - uid: 23872 components: - type: Transform rot: 3.141592653589793 rad @@ -164203,14 +166593,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 21641 + - uid: 23873 components: - type: Transform pos: 27.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21642 + - uid: 23874 components: - type: Transform rot: 1.5707963267948966 rad @@ -164218,30 +166608,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21644 + - uid: 23875 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-47.5 parent: 2 - - uid: 21645 + - uid: 23876 components: - type: Transform pos: 40.5,-47.5 parent: 2 - - uid: 21646 + - uid: 23877 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-47.5 parent: 2 - - uid: 21647 + - uid: 23878 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-49.5 parent: 2 - - uid: 21648 + - uid: 23879 components: - type: Transform rot: 3.141592653589793 rad @@ -164249,14 +166639,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 21649 + - uid: 23880 components: - type: Transform pos: 41.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21650 + - uid: 23881 components: - type: Transform rot: -1.5707963267948966 rad @@ -164264,7 +166654,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21652 + - uid: 23882 components: - type: Transform rot: 3.141592653589793 rad @@ -164272,14 +166662,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21653 + - uid: 23883 components: - type: Transform pos: 42.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21655 + - uid: 23884 components: - type: Transform rot: 1.5707963267948966 rad @@ -164287,7 +166677,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21656 + - uid: 23885 components: - type: Transform rot: -1.5707963267948966 rad @@ -164295,7 +166685,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21657 + - uid: 23886 components: - type: Transform rot: 1.5707963267948966 rad @@ -164303,7 +166693,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21658 + - uid: 23887 components: - type: Transform rot: 1.5707963267948966 rad @@ -164311,7 +166701,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21659 + - uid: 23888 components: - type: Transform rot: -1.5707963267948966 rad @@ -164319,7 +166709,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21660 + - uid: 23889 components: - type: Transform rot: 1.5707963267948966 rad @@ -164327,21 +166717,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21661 + - uid: 23890 components: - type: Transform pos: 48.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21662 + - uid: 23891 components: - type: Transform pos: 50.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21663 + - uid: 23892 components: - type: Transform rot: 3.141592653589793 rad @@ -164349,7 +166739,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21664 + - uid: 23893 components: - type: Transform rot: 3.141592653589793 rad @@ -164357,7 +166747,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21666 + - uid: 23894 components: - type: Transform rot: 1.5707963267948966 rad @@ -164365,7 +166755,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21667 + - uid: 23895 components: - type: Transform rot: 1.5707963267948966 rad @@ -164373,7 +166763,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21668 + - uid: 23896 components: - type: Transform rot: -1.5707963267948966 rad @@ -164381,7 +166771,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21669 + - uid: 23897 components: - type: Transform rot: 1.5707963267948966 rad @@ -164389,7 +166779,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21670 + - uid: 23898 components: - type: Transform rot: 3.141592653589793 rad @@ -164397,7 +166787,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21671 + - uid: 23899 components: - type: Transform rot: 3.141592653589793 rad @@ -164405,14 +166795,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21672 + - uid: 23900 components: - type: Transform pos: 33.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21674 + - uid: 23901 components: - type: Transform rot: 1.5707963267948966 rad @@ -164420,21 +166810,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21676 + - uid: 23902 components: - type: Transform pos: 37.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21677 + - uid: 23903 components: - type: Transform pos: 56.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21678 + - uid: 23904 components: - type: Transform rot: 3.141592653589793 rad @@ -164442,14 +166832,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21691 + - uid: 23905 components: - type: Transform pos: 78.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21692 + - uid: 23906 components: - type: Transform rot: 3.141592653589793 rad @@ -164457,7 +166847,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21693 + - uid: 23907 components: - type: Transform rot: 3.141592653589793 rad @@ -164465,7 +166855,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21694 + - uid: 23908 components: - type: Transform rot: 1.5707963267948966 rad @@ -164473,14 +166863,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21696 + - uid: 23909 components: - type: Transform pos: 86.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21697 + - uid: 23910 components: - type: Transform rot: -1.5707963267948966 rad @@ -164488,7 +166878,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21698 + - uid: 23911 components: - type: Transform rot: -1.5707963267948966 rad @@ -164496,7 +166886,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21699 + - uid: 23912 components: - type: Transform rot: 3.141592653589793 rad @@ -164504,7 +166894,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21700 + - uid: 23913 components: - type: Transform rot: 3.141592653589793 rad @@ -164512,7 +166902,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21701 + - uid: 23914 components: - type: Transform rot: -1.5707963267948966 rad @@ -164520,14 +166910,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21702 + - uid: 23915 components: - type: Transform pos: 31.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21703 + - uid: 23916 components: - type: Transform rot: 3.141592653589793 rad @@ -164535,7 +166925,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21704 + - uid: 23917 components: - type: Transform rot: 3.141592653589793 rad @@ -164543,7 +166933,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21705 + - uid: 23918 components: - type: Transform rot: 1.5707963267948966 rad @@ -164551,7 +166941,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21706 + - uid: 23919 components: - type: Transform rot: -1.5707963267948966 rad @@ -164559,7 +166949,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21707 + - uid: 23920 components: - type: Transform rot: 1.5707963267948966 rad @@ -164567,7 +166957,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21708 + - uid: 23921 components: - type: Transform rot: 1.5707963267948966 rad @@ -164575,7 +166965,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21709 + - uid: 23922 components: - type: Transform rot: -1.5707963267948966 rad @@ -164583,21 +166973,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21710 + - uid: 23923 components: - type: Transform pos: 27.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21711 + - uid: 23924 components: - type: Transform pos: 19.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21712 + - uid: 23925 components: - type: Transform rot: 3.141592653589793 rad @@ -164605,7 +166995,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21713 + - uid: 23926 components: - type: Transform rot: 3.141592653589793 rad @@ -164613,21 +167003,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21714 + - uid: 23927 components: - type: Transform pos: 8.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21715 + - uid: 23928 components: - type: Transform - pos: 7.5,3.5 + pos: -25.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21716 + color: '#0000FFFF' + - uid: 23929 components: - type: Transform rot: 1.5707963267948966 rad @@ -164635,7 +167025,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21717 + - uid: 23930 components: - type: Transform rot: 1.5707963267948966 rad @@ -164643,7 +167033,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21718 + - uid: 23931 components: - type: Transform rot: 3.141592653589793 rad @@ -164651,14 +167041,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21719 + - uid: 23932 components: - type: Transform pos: -5.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21720 + - uid: 23933 components: - type: Transform rot: 3.141592653589793 rad @@ -164666,14 +167056,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21721 + - uid: 23934 components: - type: Transform pos: -4.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21722 + - uid: 23935 components: - type: Transform rot: -1.5707963267948966 rad @@ -164681,7 +167071,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21723 + - uid: 23936 components: - type: Transform rot: 1.5707963267948966 rad @@ -164689,28 +167079,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21724 + - uid: 23937 components: - type: Transform pos: -0.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21725 + - uid: 23938 components: - type: Transform pos: 1.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21726 + - uid: 23939 components: - type: Transform pos: 7.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21727 + - uid: 23940 components: - type: Transform rot: 3.141592653589793 rad @@ -164718,7 +167108,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21728 + - uid: 23941 components: - type: Transform rot: -1.5707963267948966 rad @@ -164726,7 +167116,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21729 + - uid: 23942 components: - type: Transform rot: 1.5707963267948966 rad @@ -164734,7 +167124,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21730 + - uid: 23943 components: - type: Transform rot: 1.5707963267948966 rad @@ -164742,7 +167132,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21731 + - uid: 23944 components: - type: Transform rot: 1.5707963267948966 rad @@ -164750,7 +167140,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21732 + - uid: 23945 components: - type: Transform rot: 1.5707963267948966 rad @@ -164758,7 +167148,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21733 + - uid: 23946 components: - type: Transform rot: -1.5707963267948966 rad @@ -164766,7 +167156,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21734 + - uid: 23947 components: - type: Transform rot: 3.141592653589793 rad @@ -164774,36 +167164,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21735 + - uid: 23948 components: - type: Transform pos: 1.5,-76.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21736 + - uid: 23949 components: - type: Transform pos: -7.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21737 - components: - - type: Transform - pos: -0.5,-74.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21738 + - uid: 23950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-70.5 + pos: -0.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21739 + - uid: 23951 components: - type: Transform rot: 1.5707963267948966 rad @@ -164811,7 +167193,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21740 + - uid: 23952 components: - type: Transform rot: -1.5707963267948966 rad @@ -164819,7 +167201,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21741 + - uid: 23953 components: - type: Transform rot: 1.5707963267948966 rad @@ -164827,7 +167209,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21742 + - uid: 23954 components: - type: Transform rot: -1.5707963267948966 rad @@ -164835,7 +167217,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21743 + - uid: 23955 components: - type: Transform rot: 3.141592653589793 rad @@ -164843,14 +167225,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21744 + - uid: 23956 components: - type: Transform pos: 5.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21745 + - uid: 23957 components: - type: Transform rot: -1.5707963267948966 rad @@ -164858,7 +167240,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21746 + - uid: 23958 components: - type: Transform rot: -1.5707963267948966 rad @@ -164866,21 +167248,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21747 + - uid: 23959 components: - type: Transform pos: -6.5,-87.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21748 + - uid: 23960 components: - type: Transform pos: -8.5,-86.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21749 + - uid: 23961 components: - type: Transform rot: 3.141592653589793 rad @@ -164888,7 +167270,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21750 + - uid: 23962 components: - type: Transform rot: 1.5707963267948966 rad @@ -164896,14 +167278,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21751 + - uid: 23963 components: - type: Transform pos: 7.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21752 + - uid: 23964 components: - type: Transform rot: 1.5707963267948966 rad @@ -164911,29 +167293,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21753 + - uid: 23965 components: - type: Transform pos: -23.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21754 - components: - - type: Transform - pos: -28.5,-71.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21755 + - uid: 23966 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-73.5 + pos: -29.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21756 + color: '#0000FFFF' + - uid: 23967 components: - type: Transform rot: -1.5707963267948966 rad @@ -164941,7 +167315,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21757 + - uid: 23968 components: - type: Transform rot: 1.5707963267948966 rad @@ -164949,7 +167323,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21758 + - uid: 23969 components: - type: Transform rot: -1.5707963267948966 rad @@ -164957,7 +167331,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21759 + - uid: 23970 components: - type: Transform rot: -1.5707963267948966 rad @@ -164965,7 +167339,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21760 + - uid: 23971 components: - type: Transform rot: -1.5707963267948966 rad @@ -164973,7 +167347,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21761 + - uid: 23972 components: - type: Transform rot: 1.5707963267948966 rad @@ -164981,7 +167355,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21762 + - uid: 23973 components: - type: Transform rot: -1.5707963267948966 rad @@ -164989,7 +167363,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21763 + - uid: 23974 components: - type: Transform rot: 1.5707963267948966 rad @@ -164997,7 +167371,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21764 + - uid: 23975 components: - type: Transform rot: 1.5707963267948966 rad @@ -165005,7 +167379,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21765 + - uid: 23976 components: - type: Transform rot: -1.5707963267948966 rad @@ -165013,7 +167387,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21766 + - uid: 23977 components: - type: Transform rot: -1.5707963267948966 rad @@ -165021,7 +167395,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21767 + - uid: 23978 components: - type: Transform rot: -1.5707963267948966 rad @@ -165029,7 +167403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21768 + - uid: 23979 components: - type: Transform rot: 1.5707963267948966 rad @@ -165037,7 +167411,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21769 + - uid: 23980 components: - type: Transform rot: 3.141592653589793 rad @@ -165045,7 +167419,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21770 + - uid: 23981 components: - type: Transform rot: -1.5707963267948966 rad @@ -165053,7 +167427,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21771 + - uid: 23982 components: - type: Transform rot: 1.5707963267948966 rad @@ -165061,7 +167435,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21772 + - uid: 23983 components: - type: Transform rot: -1.5707963267948966 rad @@ -165069,7 +167443,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21773 + - uid: 23984 components: - type: Transform rot: 1.5707963267948966 rad @@ -165077,7 +167451,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21774 + - uid: 23985 components: - type: Transform rot: 3.141592653589793 rad @@ -165085,14 +167459,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21775 + - uid: 23986 components: - type: Transform pos: -44.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21776 + - uid: 23987 components: - type: Transform rot: 1.5707963267948966 rad @@ -165100,7 +167474,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21777 + - uid: 23988 components: - type: Transform rot: 1.5707963267948966 rad @@ -165108,7 +167482,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21778 + - uid: 23989 components: - type: Transform rot: 3.141592653589793 rad @@ -165116,7 +167490,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21779 + - uid: 23990 components: - type: Transform rot: 3.141592653589793 rad @@ -165124,7 +167498,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21780 + - uid: 23991 components: - type: Transform rot: -1.5707963267948966 rad @@ -165132,7 +167506,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21781 + - uid: 23992 components: - type: Transform rot: 1.5707963267948966 rad @@ -165140,7 +167514,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21782 + - uid: 23993 components: - type: Transform rot: -1.5707963267948966 rad @@ -165148,7 +167522,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21783 + - uid: 23994 components: - type: Transform rot: 1.5707963267948966 rad @@ -165156,7 +167530,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21784 + - uid: 23995 components: - type: Transform rot: -1.5707963267948966 rad @@ -165164,7 +167538,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21785 + - uid: 23996 components: - type: Transform rot: 1.5707963267948966 rad @@ -165172,7 +167546,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21786 + - uid: 23997 components: - type: Transform rot: 1.5707963267948966 rad @@ -165180,7 +167554,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21787 + - uid: 23998 components: - type: Transform rot: 1.5707963267948966 rad @@ -165188,7 +167562,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21788 + - uid: 23999 components: - type: Transform rot: -1.5707963267948966 rad @@ -165196,7 +167570,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21789 + - uid: 24000 components: - type: Transform rot: -1.5707963267948966 rad @@ -165204,14 +167578,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21790 + - uid: 24001 components: - type: Transform pos: -43.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21791 + - uid: 24002 components: - type: Transform rot: 3.141592653589793 rad @@ -165219,14 +167593,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21792 + - uid: 24003 components: - type: Transform pos: -36.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21793 + - uid: 24004 components: - type: Transform rot: 3.141592653589793 rad @@ -165234,7 +167608,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21794 + - uid: 24005 components: - type: Transform rot: -1.5707963267948966 rad @@ -165242,7 +167616,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21795 + - uid: 24006 components: - type: Transform rot: 1.5707963267948966 rad @@ -165250,7 +167624,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21796 + - uid: 24007 components: - type: Transform rot: 1.5707963267948966 rad @@ -165258,7 +167632,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21797 + - uid: 24008 components: - type: Transform rot: 1.5707963267948966 rad @@ -165266,7 +167640,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21798 + - uid: 24009 components: - type: Transform rot: -1.5707963267948966 rad @@ -165274,21 +167648,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21799 + - uid: 24010 components: - type: Transform pos: -50.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21800 + - uid: 24011 components: - type: Transform pos: -48.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21801 + - uid: 24012 components: - type: Transform rot: -1.5707963267948966 rad @@ -165296,7 +167670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21802 + - uid: 24013 components: - type: Transform rot: 1.5707963267948966 rad @@ -165304,7 +167678,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21803 + - uid: 24014 components: - type: Transform rot: 1.5707963267948966 rad @@ -165312,7 +167686,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21804 + - uid: 24015 components: - type: Transform rot: 3.141592653589793 rad @@ -165320,7 +167694,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21805 + - uid: 24016 components: - type: Transform rot: 3.141592653589793 rad @@ -165328,7 +167702,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21806 + - uid: 24017 components: - type: Transform rot: -1.5707963267948966 rad @@ -165336,7 +167710,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21807 + - uid: 24018 components: - type: Transform rot: 1.5707963267948966 rad @@ -165344,7 +167718,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21808 + - uid: 24019 components: - type: Transform rot: 3.141592653589793 rad @@ -165352,14 +167726,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21809 + - uid: 24020 components: - type: Transform pos: -61.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21810 + - uid: 24021 components: - type: Transform rot: -1.5707963267948966 rad @@ -165367,7 +167741,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21811 + - uid: 24022 components: - type: Transform rot: -1.5707963267948966 rad @@ -165375,7 +167749,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21812 + - uid: 24023 components: - type: Transform rot: 1.5707963267948966 rad @@ -165383,7 +167757,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21813 + - uid: 24024 components: - type: Transform rot: -1.5707963267948966 rad @@ -165391,7 +167765,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21814 + - uid: 24025 components: - type: Transform rot: -1.5707963267948966 rad @@ -165399,14 +167773,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21815 + - uid: 24026 components: - type: Transform pos: -44.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21816 + - uid: 24027 components: - type: Transform rot: 1.5707963267948966 rad @@ -165414,7 +167788,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21817 + - uid: 24028 components: - type: Transform rot: 1.5707963267948966 rad @@ -165422,14 +167796,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21818 + - uid: 24029 components: - type: Transform pos: -45.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21819 + - uid: 24030 components: - type: Transform rot: 1.5707963267948966 rad @@ -165437,7 +167811,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21820 + - uid: 24031 components: - type: Transform rot: -1.5707963267948966 rad @@ -165445,14 +167819,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21821 + - uid: 24032 components: - type: Transform pos: -41.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21822 + - uid: 24033 components: - type: Transform rot: 1.5707963267948966 rad @@ -165460,14 +167834,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21823 + - uid: 24034 components: - type: Transform pos: -50.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21824 + - uid: 24035 components: - type: Transform rot: 3.141592653589793 rad @@ -165475,7 +167849,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21825 + - uid: 24036 components: - type: Transform rot: 3.141592653589793 rad @@ -165483,7 +167857,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21826 + - uid: 24037 components: - type: Transform rot: 3.141592653589793 rad @@ -165491,7 +167865,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21827 + - uid: 24038 components: - type: Transform rot: 3.141592653589793 rad @@ -165499,7 +167873,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21828 + - uid: 24039 components: - type: Transform rot: -1.5707963267948966 rad @@ -165507,7 +167881,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21829 + - uid: 24040 components: - type: Transform rot: -1.5707963267948966 rad @@ -165515,7 +167889,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21830 + - uid: 24041 components: - type: Transform rot: 1.5707963267948966 rad @@ -165523,7 +167897,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21831 + - uid: 24042 components: - type: Transform rot: 1.5707963267948966 rad @@ -165531,7 +167905,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21832 + - uid: 24043 components: - type: Transform rot: 3.141592653589793 rad @@ -165539,7 +167913,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21833 + - uid: 24044 components: - type: Transform rot: 3.141592653589793 rad @@ -165547,14 +167921,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21834 + - uid: 24045 components: - type: Transform pos: -66.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21835 + - uid: 24046 components: - type: Transform rot: 3.141592653589793 rad @@ -165562,30 +167936,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21836 + - uid: 24047 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-44.5 + rot: 1.5707963267948966 rad + pos: -30.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21837 + color: '#FF0000FF' + - uid: 24048 components: - type: Transform pos: -55.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21838 + - uid: 24049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-44.5 + rot: -1.5707963267948966 rad + pos: -27.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21839 + color: '#FF0000FF' + - uid: 24050 components: - type: Transform rot: 1.5707963267948966 rad @@ -165593,7 +167967,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21842 + - uid: 24051 components: - type: Transform rot: 1.5707963267948966 rad @@ -165601,7 +167975,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21843 + - uid: 24052 components: - type: Transform rot: 1.5707963267948966 rad @@ -165609,57 +167983,57 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21844 + - uid: 24053 components: - type: Transform pos: 8.5,-101.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21845 + - uid: 24054 components: - type: Transform pos: 9.5,-99.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21846 + - uid: 24055 components: - type: Transform pos: 8.5,-88.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21847 + - uid: 24056 components: - type: Transform pos: 6.5,-90.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21848 + - uid: 24057 components: - type: Transform pos: 39.5,-85.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21849 + - uid: 24058 components: - type: Transform pos: -48.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21850 + - uid: 24059 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,10.5 + rot: -1.5707963267948966 rad + pos: -27.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21851 + - uid: 24060 components: - type: Transform rot: 1.5707963267948966 rad @@ -165667,21 +168041,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21852 + - uid: 24061 components: - type: Transform pos: -63.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21853 + - uid: 24062 components: - type: Transform pos: -62.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21855 + - uid: 24063 components: - type: Transform rot: 1.5707963267948966 rad @@ -165689,7 +168063,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21856 + - uid: 24064 components: - type: Transform rot: 1.5707963267948966 rad @@ -165697,15 +168071,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 21045 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21860 + - uid: 24065 components: - type: Transform rot: 1.5707963267948966 rad @@ -165713,7 +168079,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21861 + - uid: 24066 components: - type: Transform rot: -1.5707963267948966 rad @@ -165721,7 +168087,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21869 + - uid: 24067 components: - type: Transform rot: 3.141592653589793 rad @@ -165729,7 +168095,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21870 + - uid: 24068 components: - type: Transform rot: 1.5707963267948966 rad @@ -165737,12 +168103,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21871 + - uid: 24069 components: - type: Transform pos: -72.5,-26.5 parent: 2 - - uid: 21872 + - uid: 24070 components: - type: Transform rot: 3.141592653589793 rad @@ -165750,12 +168116,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21873 + - uid: 24071 components: - type: Transform pos: -82.5,-13.5 parent: 2 - - uid: 21874 + - uid: 24072 components: - type: Transform rot: -1.5707963267948966 rad @@ -165763,7 +168129,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21875 + - uid: 24073 components: - type: Transform rot: 3.141592653589793 rad @@ -165771,7 +168137,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21876 + - uid: 24074 components: - type: Transform rot: 1.5707963267948966 rad @@ -165779,7 +168145,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21877 + - uid: 24075 components: - type: Transform rot: 1.5707963267948966 rad @@ -165787,14 +168153,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21878 + - uid: 24076 components: - type: Transform pos: 98.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21879 + - uid: 24077 components: - type: Transform rot: 3.141592653589793 rad @@ -165802,7 +168168,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21880 + - uid: 24078 components: - type: Transform rot: -1.5707963267948966 rad @@ -165810,7 +168176,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21881 + - uid: 24079 components: - type: Transform rot: 1.5707963267948966 rad @@ -165818,7 +168184,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21882 + - uid: 24080 components: - type: Transform rot: 3.141592653589793 rad @@ -165826,14 +168192,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21883 + - uid: 24081 components: - type: Transform pos: 98.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21884 + - uid: 24082 components: - type: Transform rot: 3.141592653589793 rad @@ -165841,7 +168207,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21885 + - uid: 24083 components: - type: Transform rot: 3.141592653589793 rad @@ -165849,35 +168215,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21886 + - uid: 24084 components: - type: Transform pos: 34.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21887 + - uid: 24085 components: - type: Transform pos: 36.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21888 + - uid: 24086 components: - type: Transform pos: -32.5,-80.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21889 + - uid: 24087 components: - type: Transform pos: -31.5,-81.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21890 + - uid: 24088 components: - type: Transform rot: 3.141592653589793 rad @@ -165885,13 +168251,46 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22163 + - uid: 24089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24091 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24093 components: - type: Transform rot: 3.141592653589793 rad pos: 102.5,-42.5 parent: 2 - - uid: 22292 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24094 components: - type: Transform rot: 3.141592653589793 rad @@ -165899,7 +168298,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22293 + - uid: 24095 components: - type: Transform rot: 3.141592653589793 rad @@ -165907,7 +168306,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22316 + - uid: 24096 components: - type: Transform rot: 3.141592653589793 rad @@ -165915,7 +168314,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22317 + - uid: 24097 components: - type: Transform rot: 3.141592653589793 rad @@ -165923,7 +168322,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22318 + - uid: 24098 components: - type: Transform rot: 3.141592653589793 rad @@ -165931,7 +168330,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22329 + - uid: 24099 components: - type: Transform rot: 3.141592653589793 rad @@ -165939,7 +168338,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22330 + - uid: 24100 components: - type: Transform rot: 3.141592653589793 rad @@ -165947,7 +168346,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22342 + - uid: 24101 components: - type: Transform rot: 3.141592653589793 rad @@ -165955,7 +168354,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22343 + - uid: 24102 components: - type: Transform rot: 3.141592653589793 rad @@ -165963,7 +168362,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22344 + - uid: 24103 components: - type: Transform rot: 3.141592653589793 rad @@ -165971,7 +168370,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22365 + - uid: 24104 components: - type: Transform rot: 3.141592653589793 rad @@ -165979,7 +168378,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22382 + - uid: 24105 components: - type: Transform rot: 3.141592653589793 rad @@ -165987,7 +168386,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22388 + - uid: 24106 components: - type: Transform rot: 3.141592653589793 rad @@ -165995,7 +168394,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22472 + - uid: 24107 components: - type: Transform rot: 3.141592653589793 rad @@ -166003,7 +168402,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22514 + - uid: 24108 components: - type: Transform rot: -1.5707963267948966 rad @@ -166011,12 +168410,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 22684 + - uid: 24109 components: - type: Transform pos: 79.5,6.5 parent: 2 - - uid: 22789 + - uid: 24110 components: - type: Transform rot: -1.5707963267948966 rad @@ -166024,7 +168423,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24070 + - uid: 24111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24112 components: - type: Transform rot: 3.141592653589793 rad @@ -166032,7 +168439,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24071 + - uid: 24113 components: - type: Transform rot: 3.141592653589793 rad @@ -166040,7 +168447,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24072 + - uid: 24114 components: - type: Transform rot: 3.141592653589793 rad @@ -166048,7 +168455,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24073 + - uid: 24115 components: - type: Transform rot: 3.141592653589793 rad @@ -166056,7 +168463,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24074 + - uid: 24116 components: - type: Transform rot: 3.141592653589793 rad @@ -166064,7 +168471,23 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24136 + - uid: 24117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24119 components: - type: Transform rot: 3.141592653589793 rad @@ -166072,7 +168495,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24203 + - uid: 24120 components: - type: Transform rot: 3.141592653589793 rad @@ -166080,7 +168503,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24204 + - uid: 24121 components: - type: Transform rot: 3.141592653589793 rad @@ -166088,7 +168511,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24205 + - uid: 24122 components: - type: Transform rot: 3.141592653589793 rad @@ -166096,7 +168519,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24206 + - uid: 24123 components: - type: Transform rot: 3.141592653589793 rad @@ -166104,7 +168527,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 24578 + - uid: 24124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24125 components: - type: Transform rot: 3.141592653589793 rad @@ -166112,7 +168543,46 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 25278 + - uid: 24126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24128 + components: + - type: Transform + pos: -61.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24131 components: - type: Transform rot: -1.5707963267948966 rad @@ -166120,21 +168590,45 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 25917 + - uid: 24132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24134 components: - type: Transform pos: 2.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 26186 + - uid: 24135 components: - type: Transform pos: -1.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 26562 + - uid: 24136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 97.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24137 components: - type: Transform rot: 1.5707963267948966 rad @@ -166142,7 +168636,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 27968 + - uid: 24138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24139 + components: + - type: Transform + pos: -28.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24140 components: - type: Transform rot: 1.5707963267948966 rad @@ -166150,7 +168659,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 27969 + - uid: 24141 components: - type: Transform rot: 1.5707963267948966 rad @@ -166158,7 +168667,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28192 + - uid: 24142 components: - type: Transform rot: -1.5707963267948966 rad @@ -166166,7 +168675,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28213 + - uid: 24143 components: - type: Transform rot: 1.5707963267948966 rad @@ -166174,7 +168683,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28311 + - uid: 24144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24145 components: - type: Transform rot: -1.5707963267948966 rad @@ -166182,7 +168699,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28365 + - uid: 24146 components: - type: Transform rot: -1.5707963267948966 rad @@ -166190,7 +168707,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28975 + - uid: 24147 components: - type: Transform rot: 3.141592653589793 rad @@ -166198,7 +168715,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29421 + - uid: 24148 components: - type: Transform rot: 3.141592653589793 rad @@ -166206,7 +168723,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29473 + - uid: 24149 components: - type: Transform rot: -1.5707963267948966 rad @@ -166214,14 +168731,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29475 + - uid: 24150 components: - type: Transform pos: 82.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29476 + - uid: 24151 components: - type: Transform rot: 3.141592653589793 rad @@ -166229,21 +168746,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29615 + - uid: 24152 components: - type: Transform pos: 81.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29650 + - uid: 24153 components: - type: Transform pos: 75.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29808 + - uid: 24154 components: - type: Transform rot: 1.5707963267948966 rad @@ -166251,7 +168768,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29894 + - uid: 24155 components: - type: Transform rot: -1.5707963267948966 rad @@ -166259,14 +168776,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29897 + - uid: 24156 components: - type: Transform pos: 77.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29921 + - uid: 24157 components: - type: Transform rot: 3.141592653589793 rad @@ -166274,7 +168791,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29926 + - uid: 24158 components: - type: Transform rot: 3.141592653589793 rad @@ -166282,7 +168799,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30100 + - uid: 24159 components: - type: Transform rot: 1.5707963267948966 rad @@ -166290,7 +168807,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30216 + - uid: 24160 components: - type: Transform rot: 1.5707963267948966 rad @@ -166298,12 +168815,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 30427 + - uid: 24161 components: - type: Transform pos: -7.5,-54.5 parent: 2 - - uid: 32461 + - uid: 24162 components: - type: Transform rot: 3.141592653589793 rad @@ -166311,7 +168828,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 32472 + - uid: 24163 components: - type: Transform rot: 3.141592653589793 rad @@ -166319,7 +168836,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 32755 + - uid: 24164 components: - type: Transform rot: -1.5707963267948966 rad @@ -166327,48 +168844,48 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 33407 + - uid: 24165 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,5.5 parent: 2 - - uid: 34291 + - uid: 24166 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-53.5 parent: 2 - - uid: 34292 + - uid: 24167 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-53.5 parent: 2 - - uid: 34296 + - uid: 24168 components: - type: Transform pos: -6.5,-51.5 parent: 2 - - uid: 34304 + - uid: 24169 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-54.5 parent: 2 - - uid: 34313 + - uid: 24170 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-51.5 parent: 2 - - uid: 34314 + - uid: 24171 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-49.5 parent: 2 - - uid: 36715 + - uid: 24172 components: - type: Transform rot: -1.5707963267948966 rad @@ -166376,14 +168893,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 37809 + - uid: 24173 components: - type: Transform pos: 70.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 37811 + - uid: 24174 components: - type: Transform rot: 1.5707963267948966 rad @@ -166391,7 +168908,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37815 + - uid: 24175 components: - type: Transform rot: 1.5707963267948966 rad @@ -166399,30 +168916,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 38287 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 - parent: 37887 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38288 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38289 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 37887 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38743 + - uid: 24176 components: - type: Transform rot: -1.5707963267948966 rad @@ -166430,55 +168924,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 38863 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-8.5 - parent: 38722 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38864 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 38722 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38865 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 38722 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38868 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 38722 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 39503 + - uid: 24177 components: - type: Transform rot: 3.141592653589793 rad @@ -166486,7 +168932,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39505 + - uid: 24178 components: - type: Transform rot: -1.5707963267948966 rad @@ -166494,7 +168940,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39516 + - uid: 24179 components: - type: Transform rot: 3.141592653589793 rad @@ -166502,7 +168948,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39517 + - uid: 24180 components: - type: Transform rot: -1.5707963267948966 rad @@ -166510,7 +168956,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39605 + - uid: 24181 components: - type: Transform rot: -1.5707963267948966 rad @@ -166518,7 +168964,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39826 + - uid: 24182 components: - type: Transform rot: 1.5707963267948966 rad @@ -166526,7 +168972,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39837 + - uid: 24183 components: - type: Transform rot: -1.5707963267948966 rad @@ -166534,35 +168980,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39838 + - uid: 24184 components: - type: Transform pos: -2.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39839 + - uid: 24185 components: - type: Transform pos: 0.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39843 + - uid: 24186 components: - type: Transform pos: -1.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39845 + - uid: 24187 components: - type: Transform pos: -0.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39846 + - uid: 24188 components: - type: Transform rot: 1.5707963267948966 rad @@ -166570,14 +169016,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39847 + - uid: 24189 components: - type: Transform pos: 14.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39852 + - uid: 24190 components: - type: Transform rot: 3.141592653589793 rad @@ -166585,7 +169031,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39855 + - uid: 24191 components: - type: Transform rot: 1.5707963267948966 rad @@ -166593,7 +169039,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39856 + - uid: 24192 components: - type: Transform rot: -1.5707963267948966 rad @@ -166601,7 +169047,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39859 + - uid: 24193 components: - type: Transform rot: -1.5707963267948966 rad @@ -166609,7 +169055,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39860 + - uid: 24194 components: - type: Transform rot: -1.5707963267948966 rad @@ -166617,7 +169063,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39863 + - uid: 24195 components: - type: Transform rot: 1.5707963267948966 rad @@ -166625,7 +169071,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39866 + - uid: 24196 components: - type: Transform rot: -1.5707963267948966 rad @@ -166633,14 +169079,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39867 + - uid: 24197 components: - type: Transform pos: -12.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39877 + - uid: 24198 components: - type: Transform rot: -1.5707963267948966 rad @@ -166648,7 +169094,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39880 + - uid: 24199 components: - type: Transform rot: 1.5707963267948966 rad @@ -166656,7 +169102,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39892 + - uid: 24200 components: - type: Transform rot: 3.141592653589793 rad @@ -166664,21 +169110,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39895 + - uid: 24201 components: - type: Transform pos: 3.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39903 + - uid: 24202 components: - type: Transform pos: -4.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39923 + - uid: 24203 components: - type: Transform rot: 1.5707963267948966 rad @@ -166686,7 +169132,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39927 + - uid: 24204 components: - type: Transform rot: 3.141592653589793 rad @@ -166694,7 +169140,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39951 + - uid: 24205 components: - type: Transform rot: -1.5707963267948966 rad @@ -166702,7 +169148,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39955 + - uid: 24206 components: - type: Transform rot: 1.5707963267948966 rad @@ -166710,47 +169156,69 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 40891 + - uid: 24207 components: - type: Transform rot: -1.5707963267948966 rad pos: 112.5,-41.5 parent: 2 - - uid: 40920 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24208 components: - type: Transform rot: 3.141592653589793 rad pos: 117.5,-40.5 parent: 2 - - uid: 40959 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24209 components: - type: Transform pos: 116.5,-38.5 parent: 2 - - uid: 40968 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24210 components: - type: Transform rot: 3.141592653589793 rad pos: 107.5,-42.5 parent: 2 - - uid: 40975 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24211 components: - type: Transform pos: 105.5,-40.5 parent: 2 - - uid: 40980 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24212 components: - type: Transform rot: 1.5707963267948966 rad pos: 110.5,-39.5 parent: 2 - - uid: 40983 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24213 components: - type: Transform rot: 3.141592653589793 rad pos: 102.5,-40.5 parent: 2 - - uid: 41167 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24215 components: - type: Transform rot: -1.5707963267948966 rad @@ -166758,7 +169226,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41174 + - uid: 24216 components: - type: Transform rot: 3.141592653589793 rad @@ -166766,7 +169234,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41176 + - uid: 24217 components: - type: Transform rot: 3.141592653589793 rad @@ -166774,14 +169242,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41189 + - uid: 24218 components: - type: Transform pos: 9.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41211 + - uid: 24219 components: - type: Transform rot: -1.5707963267948966 rad @@ -166789,7 +169257,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41220 + - uid: 24220 components: - type: Transform rot: 1.5707963267948966 rad @@ -166797,7 +169265,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41240 + - uid: 24221 components: - type: Transform rot: -1.5707963267948966 rad @@ -166805,7 +169273,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41243 + - uid: 24222 components: - type: Transform rot: -1.5707963267948966 rad @@ -166813,7 +169281,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41247 + - uid: 24223 components: - type: Transform rot: 1.5707963267948966 rad @@ -166821,7 +169289,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41278 + - uid: 24224 components: - type: Transform rot: -1.5707963267948966 rad @@ -166829,7 +169297,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41295 + - uid: 24225 components: - type: Transform rot: -1.5707963267948966 rad @@ -166837,7 +169305,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41316 + - uid: 24226 components: - type: Transform rot: 1.5707963267948966 rad @@ -166845,7 +169313,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41330 + - uid: 24227 components: - type: Transform rot: 1.5707963267948966 rad @@ -166853,7 +169321,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41336 + - uid: 24228 components: - type: Transform rot: 1.5707963267948966 rad @@ -166861,7 +169329,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41358 + - uid: 24229 components: - type: Transform rot: -1.5707963267948966 rad @@ -166869,7 +169337,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41372 + - uid: 24230 components: - type: Transform rot: 3.141592653589793 rad @@ -166877,7 +169345,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41378 + - uid: 24231 components: - type: Transform rot: 3.141592653589793 rad @@ -166885,14 +169353,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41401 + - uid: 24232 components: - type: Transform pos: -3.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41424 + - uid: 24233 components: - type: Transform rot: 1.5707963267948966 rad @@ -166900,7 +169368,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41432 + - uid: 24234 components: - type: Transform rot: 1.5707963267948966 rad @@ -166908,7 +169376,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41451 + - uid: 24235 components: - type: Transform rot: 3.141592653589793 rad @@ -166916,7 +169384,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41470 + - uid: 24236 components: - type: Transform rot: -1.5707963267948966 rad @@ -166924,7 +169392,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41476 + - uid: 24237 components: - type: Transform rot: 1.5707963267948966 rad @@ -166932,21 +169400,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41490 + - uid: 24238 components: - type: Transform pos: 14.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41498 + - uid: 24239 components: - type: Transform pos: 6.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41537 + - uid: 24240 components: - type: Transform rot: 1.5707963267948966 rad @@ -166954,7 +169422,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41538 + - uid: 24241 components: - type: Transform rot: -1.5707963267948966 rad @@ -166962,7 +169430,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41542 + - uid: 24242 components: - type: Transform rot: -1.5707963267948966 rad @@ -166970,14 +169438,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41551 + - uid: 24243 components: - type: Transform pos: -16.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41552 + - uid: 24244 components: - type: Transform rot: 1.5707963267948966 rad @@ -166985,7 +169453,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41565 + - uid: 24245 components: - type: Transform rot: 3.141592653589793 rad @@ -166993,7 +169461,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 41572 + - uid: 24246 components: - type: Transform rot: -1.5707963267948966 rad @@ -167001,9 +169469,136 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B7410EFF' + - uid: 24247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 40742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 40666 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 40828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41234 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 40828 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 40828 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 41669 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 41669 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 41669 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 41669 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 41669 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 41669 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPort entities: - - uid: 18619 + - uid: 24253 components: - type: Transform rot: 1.5707963267948966 rad @@ -167011,24 +169606,24 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 21891 + - uid: 24254 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-32.5 parent: 2 - - uid: 21892 + - uid: 24255 components: - type: Transform pos: -60.5,-74.5 parent: 2 - - uid: 21893 + - uid: 24256 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-23.5 parent: 2 - - uid: 21896 + - uid: 24257 components: - type: Transform rot: 1.5707963267948966 rad @@ -167036,7 +169631,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FF00FF' - - uid: 21897 + - uid: 24258 components: - type: Transform rot: -1.5707963267948966 rad @@ -167044,60 +169639,60 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FF00FF' - - uid: 21898 + - uid: 24259 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-56.5 parent: 2 - - uid: 21899 + - uid: 24260 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-56.5 parent: 2 - - uid: 21900 + - uid: 24261 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-58.5 parent: 2 - - uid: 21903 + - uid: 24262 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-49.5 parent: 2 - - uid: 21904 + - uid: 24263 components: - type: Transform pos: 42.5,-46.5 parent: 2 - - uid: 21905 + - uid: 24264 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-46.5 parent: 2 - - uid: 21906 + - uid: 24265 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-48.5 parent: 2 - - uid: 21907 + - uid: 24266 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-47.5 parent: 2 - - uid: 21908 + - uid: 24267 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-49.5 parent: 2 - - uid: 21909 + - uid: 24268 components: - type: Transform rot: -1.5707963267948966 rad @@ -167105,7 +169700,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 21910 + - uid: 24269 components: - type: Transform rot: -1.5707963267948966 rad @@ -167113,80 +169708,80 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 21911 + - uid: 24270 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-23.5 parent: 2 - - uid: 21912 + - uid: 24271 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-89.5 parent: 2 - - uid: 21913 + - uid: 24272 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-88.5 parent: 2 - - uid: 21914 + - uid: 24273 components: - type: Transform pos: -62.5,-74.5 parent: 2 - - uid: 21915 + - uid: 24274 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-78.5 parent: 2 - - uid: 21916 + - uid: 24275 components: - type: Transform pos: -72.5,-24.5 parent: 2 - - uid: 21917 + - uid: 24276 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-27.5 parent: 2 - - uid: 21918 + - uid: 24277 components: - type: Transform pos: -71.5,-24.5 parent: 2 - - uid: 21919 + - uid: 24278 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-27.5 parent: 2 - - uid: 21920 + - uid: 24279 components: - type: Transform rot: 1.5707963267948966 rad pos: -83.5,-13.5 parent: 2 - - uid: 21921 + - uid: 24280 components: - type: Transform pos: 95.5,-82.5 parent: 2 - - uid: 21922 + - uid: 24281 components: - type: Transform pos: 96.5,-82.5 parent: 2 - - uid: 21923 + - uid: 24282 components: - type: Transform rot: 3.141592653589793 rad pos: 100.5,-84.5 parent: 2 - - uid: 21924 + - uid: 24283 components: - type: Transform rot: 1.5707963267948966 rad @@ -167194,25 +169789,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' - - uid: 21925 + - uid: 24284 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-61.5 parent: 2 - - uid: 21926 + - uid: 24285 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-60.5 parent: 2 - - uid: 21927 + - uid: 24286 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-54.5 parent: 2 - - uid: 21928 + - uid: 24287 components: - type: Transform rot: -1.5707963267948966 rad @@ -167220,13 +169815,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FFAA00FF' - - uid: 21929 + - uid: 24288 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-62.5 parent: 2 - - uid: 22347 + - uid: 24289 components: - type: Transform rot: 1.5707963267948966 rad @@ -167234,47 +169829,47 @@ entities: parent: 2 - type: AtmosPipeColor color: '#00FFFFFF' - - uid: 33198 + - uid: 24290 components: - type: Transform pos: 77.5,6.5 parent: 2 - - uid: 33199 + - uid: 24291 components: - type: Transform pos: 81.5,6.5 parent: 2 - - uid: 38290 + - uid: 24292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-56.5 + parent: 2 + - uid: 24293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-56.5 + parent: 2 + - uid: 41236 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-11.5 - parent: 37887 + parent: 40828 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 38869 + - uid: 41815 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-8.5 - parent: 38722 + parent: 41669 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-56.5 - parent: 2 - - uid: 39164 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-56.5 - parent: 2 - proto: GasPressurePump entities: - - uid: 21930 + - uid: 24294 components: - type: Transform rot: 1.5707963267948966 rad @@ -167282,7 +169877,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B3A234FF' - - uid: 21931 + - uid: 24295 components: - type: Transform rot: 1.5707963267948966 rad @@ -167290,14 +169885,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B3A234FF' - - uid: 21932 + - uid: 24296 components: - type: Transform pos: 36.5,-99.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21933 + - uid: 24297 components: - type: Transform rot: 1.5707963267948966 rad @@ -167305,13 +169900,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B3A234FF' - - uid: 21934 + - uid: 24298 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-103.5 parent: 2 - - uid: 21935 + - uid: 24299 components: - type: Transform rot: 1.5707963267948966 rad @@ -167319,7 +169914,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B3A234FF' - - uid: 21936 + - uid: 24300 components: - type: Transform rot: 1.5707963267948966 rad @@ -167327,7 +169922,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B3A234FF' - - uid: 21937 + - uid: 24301 components: - type: Transform rot: 1.5707963267948966 rad @@ -167335,7 +169930,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#B3A234FF' - - uid: 21938 + - uid: 24302 components: - type: Transform rot: 1.5707963267948966 rad @@ -167343,14 +169938,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21939 + - uid: 24303 components: - type: Transform pos: 36.5,-102.5 parent: 2 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 21940 + - uid: 24304 components: - type: Transform rot: 3.141592653589793 rad @@ -167358,37 +169953,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21941 + - uid: 24305 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-22.5 parent: 2 - - uid: 21942 + - uid: 24306 components: - type: Transform pos: -36.5,-22.5 parent: 2 - - uid: 21944 + - uid: 24307 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-58.5 parent: 2 - - uid: 21945 + - uid: 24308 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-56.5 parent: 2 - - uid: 21947 + - uid: 24309 components: - type: Transform pos: 40.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21948 + - uid: 24310 components: - type: Transform rot: 3.141592653589793 rad @@ -167396,7 +169991,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21949 + - uid: 24311 components: - type: Transform rot: -1.5707963267948966 rad @@ -167404,14 +169999,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21950 + - uid: 24312 components: - type: Transform pos: 41.5,-103.5 parent: 2 - type: AtmosPipeColor color: '#B3A234FF' - - uid: 21951 + - uid: 24313 components: - type: Transform rot: -1.5707963267948966 rad @@ -167419,24 +170014,24 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21952 + - uid: 24314 components: - type: Transform pos: -60.5,-75.5 parent: 2 - - uid: 21953 + - uid: 24315 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-75.5 parent: 2 - - uid: 21954 + - uid: 24316 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-78.5 parent: 2 - - uid: 21955 + - uid: 24317 components: - type: Transform rot: -1.5707963267948966 rad @@ -167444,7 +170039,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21956 + - uid: 24318 components: - type: Transform rot: 1.5707963267948966 rad @@ -167452,7 +170047,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 33203 + - uid: 24319 components: - type: Transform rot: -1.5707963267948966 rad @@ -167460,7 +170055,7 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 200 - - uid: 33209 + - uid: 24320 components: - type: Transform rot: 1.5707963267948966 rad @@ -167468,74 +170063,74 @@ entities: parent: 2 - type: GasPressurePump targetPressure: 200 - - uid: 34309 + - uid: 24321 components: - type: Transform pos: -1.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 38291 + - uid: 41237 components: - type: Transform pos: 0.5,-11.5 - parent: 37887 + parent: 40828 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasRecycler entities: - - uid: 34308 + - uid: 24322 components: - type: Transform pos: -1.5,-50.5 parent: 2 - proto: GasThermoMachineFreezer entities: - - uid: 21957 + - uid: 24323 components: - type: Transform pos: -38.5,-19.5 parent: 2 - - uid: 21958 + - uid: 24324 components: - type: Transform pos: 42.5,-89.5 parent: 2 - - uid: 21959 + - uid: 24325 components: - type: Transform pos: 42.5,-90.5 parent: 2 - - uid: 21960 + - uid: 24326 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-61.5 parent: 2 - - uid: 30850 + - uid: 24327 components: - type: Transform pos: -13.5,-32.5 parent: 2 - - uid: 34310 + - uid: 24328 components: - type: Transform pos: -2.5,-50.5 parent: 2 - proto: GasThermoMachineFreezerEnabled entities: - - uid: 21961 + - uid: 24329 components: - type: Transform pos: 24.5,14.5 parent: 2 - - uid: 21962 + - uid: 24330 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-74.5 parent: 2 - - uid: 21963 + - uid: 24331 components: - type: Transform pos: 101.5,-82.5 @@ -167544,7 +170139,7 @@ entities: targetTemperature: 73.15 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21964 + - uid: 24332 components: - type: Transform rot: 3.141592653589793 rad @@ -167556,28 +170151,28 @@ entities: color: '#0000FFFF' - proto: GasThermoMachineHeater entities: - - uid: 21965 + - uid: 24333 components: - type: Transform pos: 42.5,-91.5 parent: 2 - - uid: 21966 + - uid: 24334 components: - type: Transform pos: 53.5,-86.5 parent: 2 - - uid: 21967 + - uid: 24335 components: - type: Transform pos: -74.5,-24.5 parent: 2 - - uid: 21968 + - uid: 24336 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-13.5 parent: 2 - - uid: 21969 + - uid: 24337 components: - type: Transform rot: 1.5707963267948966 rad @@ -167585,7 +170180,7 @@ entities: parent: 2 - proto: GasThermoMachineHeaterEnabled entities: - - uid: 34311 + - uid: 24338 components: - type: Transform rot: -1.5707963267948966 rad @@ -167593,12 +170188,12 @@ entities: parent: 2 - proto: GasValve entities: - - uid: 18616 + - uid: 24339 components: - type: Transform pos: -16.5,-17.5 parent: 2 - - uid: 21970 + - uid: 24340 components: - type: Transform rot: 1.5707963267948966 rad @@ -167606,25 +170201,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21971 + - uid: 24341 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,-14.5 parent: 2 - - uid: 34289 + - uid: 24342 components: - type: Transform pos: -6.5,-52.5 parent: 2 - - uid: 34290 + - uid: 24343 components: - type: Transform pos: -5.5,-52.5 parent: 2 - proto: GasVentPump entities: - - uid: 813 + - uid: 24344 components: - type: Transform rot: -1.5707963267948966 rad @@ -167632,10 +170227,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2071 + - 263 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 814 + - uid: 24345 components: - type: Transform rot: -1.5707963267948966 rad @@ -167643,30 +170238,30 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 19617 + - 269 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1114 + - uid: 24346 components: - type: Transform pos: 44.5,-22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2712 + - 264 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 1888 + - uid: 24347 components: - type: Transform pos: 49.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40455 + - 284 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2633 + - uid: 24348 components: - type: Transform rot: -1.5707963267948966 rad @@ -167674,10 +170269,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 394 + - 258 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2635 + - uid: 24349 components: - type: Transform rot: 3.141592653589793 rad @@ -167685,10 +170280,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 394 + - 258 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 2653 + - uid: 24350 components: - type: Transform rot: 1.5707963267948966 rad @@ -167696,10 +170291,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40451 + - 282 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14805 + - uid: 24351 components: - type: Transform rot: -1.5707963267948966 rad @@ -167707,10 +170302,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 58 + - 150 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 14949 + - uid: 24352 components: - type: Transform rot: 3.141592653589793 rad @@ -167718,7 +170313,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15019 + - uid: 24353 components: - type: Transform rot: -1.5707963267948966 rad @@ -167726,7 +170321,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15732 + - uid: 24354 components: - type: Transform rot: 1.5707963267948966 rad @@ -167734,17 +170329,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 + - 283 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 15825 + - uid: 24355 components: - type: Transform pos: 56.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 16892 + - uid: 24356 components: - type: Transform rot: 3.141592653589793 rad @@ -167752,17 +170347,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18305 + - uid: 24357 components: - type: Transform pos: 43.5,10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40453 + - 283 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18378 + - uid: 24358 components: - type: Transform rot: 1.5707963267948966 rad @@ -167770,10 +170365,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 + - 283 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18461 + - uid: 24359 components: - type: Transform rot: 1.5707963267948966 rad @@ -167781,10 +170376,21 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 + - 283 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18678 + - uid: 24360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 173 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24361 components: - type: Transform rot: -1.5707963267948966 rad @@ -167792,10 +170398,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 + - 283 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18700 + - uid: 24362 components: - type: Transform rot: -1.5707963267948966 rad @@ -167803,10 +170409,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 + - 283 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 18788 + - uid: 24363 components: - type: Transform rot: 1.5707963267948966 rad @@ -167814,8 +170420,21 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 54 - - uid: 19531 + - 148 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 173 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24365 components: - type: Transform rot: -1.5707963267948966 rad @@ -167823,10 +170442,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 + - 283 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19578 + - uid: 24366 components: - type: Transform rot: 3.141592653589793 rad @@ -167834,30 +170453,41 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2712 + - 264 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19580 + - uid: 24367 components: - type: Transform pos: 49.5,-17.5 parent: 2 - type: DeviceNetwork deviceLists: - - 818 + - 260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 19587 + - uid: 24368 components: - type: Transform pos: 61.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2741 + - 266 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21972 + - uid: 24369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 197 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24370 components: - type: Transform rot: 1.5707963267948966 rad @@ -167865,10 +170495,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 + - 247 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21973 + - uid: 24371 components: - type: Transform rot: 3.141592653589793 rad @@ -167876,7 +170506,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21974 + - uid: 24372 components: - type: Transform rot: -1.5707963267948966 rad @@ -167884,7 +170514,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21976 + - uid: 24373 components: - type: Transform rot: 3.141592653589793 rad @@ -167892,7 +170522,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21977 + - uid: 24374 components: - type: Transform rot: 1.5707963267948966 rad @@ -167900,10 +170530,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 170 + - 249 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21978 + - uid: 24375 components: - type: Transform rot: 1.5707963267948966 rad @@ -167911,10 +170541,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 175 + - 254 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21979 + - uid: 24376 components: - type: Transform rot: -1.5707963267948966 rad @@ -167922,7 +170552,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21980 + - uid: 24377 components: - type: Transform rot: 3.141592653589793 rad @@ -167930,7 +170560,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21981 + - uid: 24378 components: - type: Transform rot: 3.141592653589793 rad @@ -167938,7 +170568,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21984 + - uid: 24379 components: - type: Transform rot: 3.141592653589793 rad @@ -167946,7 +170576,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21985 + - uid: 24380 components: - type: Transform rot: -1.5707963267948966 rad @@ -167954,7 +170584,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21986 + - uid: 24381 components: - type: Transform rot: 1.5707963267948966 rad @@ -167962,7 +170592,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21987 + - uid: 24382 components: - type: Transform rot: 3.141592653589793 rad @@ -167970,7 +170600,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21988 + - uid: 24383 components: - type: Transform rot: -1.5707963267948966 rad @@ -167978,7 +170608,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21989 + - uid: 24384 components: - type: Transform rot: 3.141592653589793 rad @@ -167986,7 +170616,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21990 + - uid: 24385 components: - type: Transform rot: -1.5707963267948966 rad @@ -167994,7 +170624,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21991 + - uid: 24386 components: - type: Transform rot: 1.5707963267948966 rad @@ -168002,7 +170632,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21992 + - uid: 24387 components: - type: Transform rot: 3.141592653589793 rad @@ -168010,21 +170640,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21993 + - uid: 24388 components: - type: Transform pos: 68.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22003 + - uid: 24389 components: - type: Transform pos: 77.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22004 + - uid: 24390 components: - type: Transform rot: -1.5707963267948966 rad @@ -168032,7 +170662,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22006 + - uid: 24391 components: - type: Transform rot: 3.141592653589793 rad @@ -168040,7 +170670,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22007 + - uid: 24392 components: - type: Transform rot: 1.5707963267948966 rad @@ -168048,21 +170678,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22008 + - uid: 24393 components: - type: Transform pos: 86.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22009 + - uid: 24394 components: - type: Transform pos: 102.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22010 + - uid: 24395 components: - type: Transform rot: 3.141592653589793 rad @@ -168070,7 +170700,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22011 + - uid: 24396 components: - type: Transform rot: 3.141592653589793 rad @@ -168078,7 +170708,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22013 + - uid: 24397 components: - type: Transform rot: 1.5707963267948966 rad @@ -168086,7 +170716,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22014 + - uid: 24398 components: - type: Transform rot: 3.141592653589793 rad @@ -168094,14 +170724,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22015 + - uid: 24399 components: - type: Transform pos: 17.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22016 + - uid: 24400 components: - type: Transform rot: 3.141592653589793 rad @@ -168109,7 +170739,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22017 + - uid: 24401 components: - type: Transform rot: 3.141592653589793 rad @@ -168117,7 +170747,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22018 + - uid: 24402 components: - type: Transform rot: 3.141592653589793 rad @@ -168125,14 +170755,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22019 + - uid: 24403 components: - type: Transform pos: -6.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22020 + - uid: 24404 components: - type: Transform rot: 1.5707963267948966 rad @@ -168140,7 +170770,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22021 + - uid: 24405 components: - type: Transform rot: 1.5707963267948966 rad @@ -168148,7 +170778,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22022 + - uid: 24406 components: - type: Transform rot: -1.5707963267948966 rad @@ -168156,7 +170786,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22023 + - uid: 24407 components: - type: Transform rot: 1.5707963267948966 rad @@ -168164,7 +170794,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22024 + - uid: 24408 components: - type: Transform rot: 3.141592653589793 rad @@ -168172,7 +170802,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22025 + - uid: 24409 components: - type: Transform rot: 3.141592653589793 rad @@ -168180,7 +170810,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22026 + - uid: 24410 components: - type: Transform rot: 3.141592653589793 rad @@ -168188,7 +170818,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22027 + - uid: 24411 components: - type: Transform rot: -1.5707963267948966 rad @@ -168196,7 +170826,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22028 + - uid: 24412 components: - type: Transform rot: -1.5707963267948966 rad @@ -168204,7 +170834,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22029 + - uid: 24413 components: - type: Transform rot: 3.141592653589793 rad @@ -168212,7 +170842,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22030 + - uid: 24414 components: - type: Transform rot: 1.5707963267948966 rad @@ -168220,7 +170850,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22031 + - uid: 24415 components: - type: Transform rot: 3.141592653589793 rad @@ -168228,7 +170858,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22032 + - uid: 24416 components: - type: Transform rot: 3.141592653589793 rad @@ -168236,7 +170866,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22033 + - uid: 24417 components: - type: Transform rot: -1.5707963267948966 rad @@ -168244,7 +170874,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22034 + - uid: 24418 components: - type: Transform rot: 1.5707963267948966 rad @@ -168252,7 +170882,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22035 + - uid: 24419 components: - type: Transform rot: 1.5707963267948966 rad @@ -168260,7 +170890,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22036 + - uid: 24420 components: - type: Transform rot: -1.5707963267948966 rad @@ -168268,7 +170898,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22037 + - uid: 24421 components: - type: Transform rot: 3.141592653589793 rad @@ -168276,7 +170906,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22038 + - uid: 24422 components: - type: Transform rot: 3.141592653589793 rad @@ -168284,10 +170914,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 156 + - 238 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22039 + - uid: 24423 components: - type: Transform rot: 1.5707963267948966 rad @@ -168295,7 +170925,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22040 + - uid: 24424 components: - type: Transform rot: -1.5707963267948966 rad @@ -168303,7 +170933,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22041 + - uid: 24425 components: - type: Transform rot: 1.5707963267948966 rad @@ -168311,7 +170941,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22042 + - uid: 24426 components: - type: Transform rot: 3.141592653589793 rad @@ -168319,15 +170949,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-70.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22044 + - uid: 24427 components: - type: Transform rot: 3.141592653589793 rad @@ -168335,7 +170957,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22045 + - uid: 24428 components: - type: Transform rot: 1.5707963267948966 rad @@ -168343,7 +170965,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22046 + - uid: 24429 components: - type: Transform rot: -1.5707963267948966 rad @@ -168351,7 +170973,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22047 + - uid: 24430 components: - type: Transform rot: -1.5707963267948966 rad @@ -168359,7 +170981,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22048 + - uid: 24431 components: - type: Transform rot: -1.5707963267948966 rad @@ -168367,7 +170989,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22049 + - uid: 24432 components: - type: Transform rot: -1.5707963267948966 rad @@ -168375,7 +170997,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22050 + - uid: 24433 components: - type: Transform rot: 1.5707963267948966 rad @@ -168383,7 +171005,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22051 + - uid: 24434 components: - type: Transform rot: -1.5707963267948966 rad @@ -168391,7 +171013,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22052 + - uid: 24435 components: - type: Transform rot: 3.141592653589793 rad @@ -168399,7 +171021,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22053 + - uid: 24436 components: - type: Transform rot: 1.5707963267948966 rad @@ -168407,14 +171029,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22054 + - uid: 24437 components: - type: Transform pos: -37.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22055 + - uid: 24438 components: - type: Transform rot: -1.5707963267948966 rad @@ -168422,7 +171044,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22056 + - uid: 24439 components: - type: Transform rot: 1.5707963267948966 rad @@ -168430,7 +171052,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22057 + - uid: 24440 components: - type: Transform rot: 3.141592653589793 rad @@ -168438,7 +171060,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22058 + - uid: 24441 components: - type: Transform rot: 1.5707963267948966 rad @@ -168446,7 +171068,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22059 + - uid: 24442 components: - type: Transform rot: -1.5707963267948966 rad @@ -168454,7 +171076,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22060 + - uid: 24443 components: - type: Transform rot: -1.5707963267948966 rad @@ -168462,14 +171084,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22061 + - uid: 24444 components: - type: Transform pos: -51.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22062 + - uid: 24445 components: - type: Transform rot: -1.5707963267948966 rad @@ -168477,7 +171099,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22063 + - uid: 24446 components: - type: Transform rot: 3.141592653589793 rad @@ -168485,7 +171107,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22064 + - uid: 24447 components: - type: Transform rot: 1.5707963267948966 rad @@ -168493,7 +171115,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22065 + - uid: 24448 components: - type: Transform rot: 1.5707963267948966 rad @@ -168501,7 +171123,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22066 + - uid: 24449 components: - type: Transform rot: -1.5707963267948966 rad @@ -168509,22 +171131,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22067 + - uid: 24450 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 171 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22068 + - uid: 24451 components: - type: Transform pos: -51.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22069 + - uid: 24452 components: - type: Transform rot: 1.5707963267948966 rad @@ -168532,21 +171157,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22070 - components: - - type: Transform - pos: -47.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22071 + - uid: 24453 components: - type: Transform pos: -53.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22072 + - uid: 24454 components: - type: Transform rot: 1.5707963267948966 rad @@ -168554,7 +171172,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22073 + - uid: 24455 components: - type: Transform rot: 3.141592653589793 rad @@ -168562,10 +171180,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 164 + - 243 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22074 + - uid: 24456 components: - type: Transform rot: 3.141592653589793 rad @@ -168573,10 +171191,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 86 + - 171 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22075 + - uid: 24457 components: - type: Transform rot: -1.5707963267948966 rad @@ -168584,7 +171202,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22076 + - uid: 24458 components: - type: Transform rot: -1.5707963267948966 rad @@ -168592,7 +171210,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22077 + - uid: 24459 components: - type: Transform rot: 1.5707963267948966 rad @@ -168600,27 +171218,27 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 153 + - 236 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22078 + - uid: 24460 components: - type: Transform pos: -57.5,-43.5 parent: 2 - type: DeviceNetwork deviceLists: - - 35 + - 130 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22079 + - uid: 24461 components: - type: Transform pos: -65.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22080 + - uid: 24462 components: - type: Transform rot: 1.5707963267948966 rad @@ -168628,7 +171246,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22081 + - uid: 24463 components: - type: Transform rot: 3.141592653589793 rad @@ -168636,7 +171254,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22082 + - uid: 24464 components: - type: Transform rot: -1.5707963267948966 rad @@ -168644,7 +171262,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22083 + - uid: 24465 components: - type: Transform rot: -1.5707963267948966 rad @@ -168652,7 +171270,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22084 + - uid: 24466 components: - type: Transform rot: 1.5707963267948966 rad @@ -168660,7 +171278,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22089 + - uid: 24467 components: - type: Transform rot: -1.5707963267948966 rad @@ -168668,7 +171286,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22090 + - uid: 24468 components: - type: Transform rot: -1.5707963267948966 rad @@ -168676,7 +171294,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22091 + - uid: 24469 components: - type: Transform rot: -1.5707963267948966 rad @@ -168684,7 +171302,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22092 + - uid: 24470 components: - type: Transform rot: -1.5707963267948966 rad @@ -168692,7 +171310,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22093 + - uid: 24471 components: - type: Transform rot: 1.5707963267948966 rad @@ -168700,7 +171318,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22094 + - uid: 24472 components: - type: Transform rot: -1.5707963267948966 rad @@ -168708,7 +171326,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22095 + - uid: 24473 components: - type: Transform rot: 3.141592653589793 rad @@ -168716,7 +171334,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22096 + - uid: 24474 components: - type: Transform rot: 1.5707963267948966 rad @@ -168724,10 +171342,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 151 + - 234 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22097 + - uid: 24475 components: - type: Transform rot: 3.141592653589793 rad @@ -168735,10 +171353,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 171 + - 250 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22098 + - uid: 24476 components: - type: Transform rot: -1.5707963267948966 rad @@ -168746,20 +171364,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 + - 247 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22100 + - uid: 24477 components: - type: Transform pos: 33.5,13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 169 + - 248 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22101 + - uid: 24478 components: - type: Transform rot: 3.141592653589793 rad @@ -168767,10 +171385,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 173 + - 252 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22102 + - uid: 24479 components: - type: Transform rot: 1.5707963267948966 rad @@ -168778,10 +171396,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 172 + - 251 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22103 + - uid: 24480 components: - type: Transform rot: 3.141592653589793 rad @@ -168789,7 +171407,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22109 + - uid: 24481 components: - type: Transform rot: -1.5707963267948966 rad @@ -168797,10 +171415,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 93 + - 178 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22110 + - uid: 24482 components: - type: Transform rot: 3.141592653589793 rad @@ -168808,7 +171426,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22111 + - uid: 24483 components: - type: Transform rot: 3.141592653589793 rad @@ -168816,7 +171434,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22112 + - uid: 24484 components: - type: Transform rot: 3.141592653589793 rad @@ -168824,7 +171442,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22113 + - uid: 24485 components: - type: Transform rot: 3.141592653589793 rad @@ -168832,7 +171450,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22114 + - uid: 24486 components: - type: Transform rot: -1.5707963267948966 rad @@ -168840,14 +171458,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22115 + - uid: 24487 components: - type: Transform pos: 99.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22116 + - uid: 24488 components: - type: Transform rot: 3.141592653589793 rad @@ -168855,7 +171473,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22117 + - uid: 24489 components: - type: Transform rot: 1.5707963267948966 rad @@ -168863,7 +171481,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22118 + - uid: 24490 components: - type: Transform rot: -1.5707963267948966 rad @@ -168871,27 +171489,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22119 + - uid: 24491 components: - type: Transform pos: -54.5,-14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 174 + - 253 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22122 + - uid: 24492 components: - type: Transform pos: -56.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 178 + - 255 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22123 + - uid: 24493 components: - type: Transform rot: 1.5707963267948966 rad @@ -168899,10 +171517,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 179 + - 256 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22124 + - uid: 24494 components: - type: Transform rot: 3.141592653589793 rad @@ -168910,10 +171528,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 179 + - 256 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22125 + - uid: 24495 components: - type: Transform rot: 1.5707963267948966 rad @@ -168921,10 +171539,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 114 + - 199 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22126 + - uid: 24496 components: - type: Transform rot: 3.141592653589793 rad @@ -168932,10 +171550,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 99 + - 184 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24157 + - uid: 24497 components: - type: Transform rot: 3.141592653589793 rad @@ -168943,10 +171561,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 23127 + - 271 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 24871 + - uid: 24498 components: - type: Transform rot: -1.5707963267948966 rad @@ -168954,7 +171572,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 26217 + - uid: 24499 components: - type: Transform rot: 3.141592653589793 rad @@ -168962,8 +171580,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 41017 - - uid: 26761 + - 292 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24500 components: - type: Transform rot: 1.5707963267948966 rad @@ -168971,10 +171591,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40436 + - 281 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28180 + - uid: 24501 components: - type: Transform rot: -1.5707963267948966 rad @@ -168982,10 +171602,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 27662 + - 272 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 28515 + - uid: 24502 components: - type: Transform rot: 1.5707963267948966 rad @@ -168993,20 +171613,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40457 + - 285 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29094 + - uid: 24503 components: - type: Transform pos: 64.5,-4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40476 + - 287 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29388 + - uid: 24504 components: - type: Transform rot: 3.141592653589793 rad @@ -169014,7 +171634,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29389 + - uid: 24505 components: - type: Transform rot: 3.141592653589793 rad @@ -169022,57 +171642,57 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29392 + - uid: 24506 components: - type: Transform pos: 84.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 30927 + - 275 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29393 + - uid: 24507 components: - type: Transform pos: 81.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 30920 + - 274 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29394 + - uid: 24508 components: - type: Transform pos: 85.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 543 + - 259 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29395 + - uid: 24509 components: - type: Transform pos: 77.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 1595 + - 262 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 29687 + - uid: 24510 components: - type: Transform pos: 74.5,-1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40518 + - 290 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 30411 + - uid: 24511 components: - type: Transform rot: 3.141592653589793 rad @@ -169080,10 +171700,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40468 + - 286 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 32456 + - uid: 24512 components: - type: Transform rot: 1.5707963267948966 rad @@ -169091,20 +171711,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 22105 + - 270 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 32775 + - uid: 24513 components: - type: Transform pos: 74.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 37871 + - 276 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 34415 + - uid: 24514 components: - type: Transform rot: 3.141592653589793 rad @@ -169112,7 +171732,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 34433 + - uid: 24515 components: - type: Transform rot: -1.5707963267948966 rad @@ -169120,10 +171740,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 37871 + - 276 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 34897 + - uid: 24516 components: - type: Transform rot: -1.5707963267948966 rad @@ -169131,10 +171751,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 27662 + - 272 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 37831 + - uid: 24517 components: - type: Transform rot: 1.5707963267948966 rad @@ -169142,119 +171762,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 37871 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38292 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-9.5 - parent: 37887 - - type: DeviceNetwork - deviceLists: - - 37891 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38293 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-9.5 - parent: 37887 - - type: DeviceNetwork - deviceLists: - - 37892 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38294 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-6.5 - parent: 37887 - - type: DeviceNetwork - deviceLists: - - 37889 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38295 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 37887 - - type: DeviceNetwork - deviceLists: - - 37890 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38296 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 37887 - - type: DeviceNetwork - deviceLists: - - 37888 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38297 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 37887 - - type: DeviceNetwork - deviceLists: - - 37888 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38870 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 38722 - - type: DeviceNetwork - deviceLists: - - 38723 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-11.5 - parent: 38722 - - type: DeviceNetwork - deviceLists: - - 38723 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38872 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 38722 - - type: DeviceNetwork - deviceLists: - - 38723 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 38873 - components: - - type: Transform - pos: 3.5,1.5 - parent: 38722 - - type: DeviceNetwork - deviceLists: - - 38723 + - 276 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39490 + - uid: 24518 components: - type: Transform rot: 3.141592653589793 rad @@ -169262,11 +171773,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 30404 - - 39547 + - 273 + - 19136 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39493 + - uid: 24519 components: - type: Transform rot: 1.5707963267948966 rad @@ -169274,11 +171785,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 30404 - - 39547 + - 273 + - 19136 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39494 + - uid: 24520 components: - type: Transform rot: -1.5707963267948966 rad @@ -169286,11 +171797,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 30404 - - 39547 + - 273 + - 19136 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39594 + - uid: 24521 components: - type: Transform rot: 1.5707963267948966 rad @@ -169298,28 +171809,28 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 39606 + - 277 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39810 + - uid: 24522 components: - type: Transform pos: 56.5,-55.5 parent: 2 - type: DeviceNetwork deviceLists: - - 44 - - 39820 + - 139 + - 19137 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 39853 + - uid: 24523 components: - type: Transform pos: -13.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39854 + - uid: 24524 components: - type: Transform rot: 1.5707963267948966 rad @@ -169327,7 +171838,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39857 + - uid: 24525 components: - type: Transform rot: -1.5707963267948966 rad @@ -169335,7 +171846,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39858 + - uid: 24526 components: - type: Transform rot: 1.5707963267948966 rad @@ -169343,7 +171854,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39861 + - uid: 24527 components: - type: Transform rot: -1.5707963267948966 rad @@ -169351,7 +171862,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39862 + - uid: 24528 components: - type: Transform rot: 3.141592653589793 rad @@ -169359,28 +171870,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39868 + - uid: 24529 components: - type: Transform pos: 15.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39869 + - uid: 24530 components: - type: Transform pos: 19.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39870 + - uid: 24531 components: - type: Transform pos: 18.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39871 + - uid: 24532 components: - type: Transform rot: -1.5707963267948966 rad @@ -169388,13 +171899,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39872 + - uid: 24533 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-36.5 parent: 2 - - uid: 39873 + - uid: 24534 components: - type: Transform rot: -1.5707963267948966 rad @@ -169402,7 +171913,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39940 + - uid: 24535 components: - type: Transform rot: 1.5707963267948966 rad @@ -169410,7 +171921,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39947 + - uid: 24536 components: - type: Transform rot: 1.5707963267948966 rad @@ -169418,7 +171929,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 39972 + - uid: 24537 components: - type: Transform rot: 1.5707963267948966 rad @@ -169426,7 +171937,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 40467 + - uid: 24538 components: - type: Transform rot: -1.5707963267948966 rad @@ -169434,10 +171945,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40468 + - 286 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 40473 + - uid: 24539 components: - type: Transform rot: 1.5707963267948966 rad @@ -169445,30 +171956,30 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 22105 + - 270 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 40485 + - uid: 24540 components: - type: Transform pos: 63.5,-8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40487 + - 288 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 40488 + - uid: 24541 components: - type: Transform pos: 69.5,-8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40490 + - 289 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 40496 + - uid: 24542 components: - type: Transform rot: 1.5707963267948966 rad @@ -169476,11 +171987,11 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40490 - - 40518 + - 289 + - 290 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 40986 + - uid: 24543 components: - type: Transform rot: -1.5707963267948966 rad @@ -169488,8 +171999,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 41014 - - uid: 40988 + - 291 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24544 components: - type: Transform rot: 3.141592653589793 rad @@ -169497,8 +172010,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 41014 - - uid: 40991 + - 291 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24545 components: - type: Transform rot: 3.141592653589793 rad @@ -169506,8 +172021,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 41014 - - uid: 41168 + - 291 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24546 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 293 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24547 components: - type: Transform rot: 3.141592653589793 rad @@ -169515,14 +172042,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41171 + - uid: 24548 components: - type: Transform pos: 18.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41204 + - uid: 24549 components: - type: Transform rot: 1.5707963267948966 rad @@ -169530,13 +172057,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41205 + - uid: 24550 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-35.5 parent: 2 - - uid: 41209 + - uid: 24551 components: - type: Transform rot: 1.5707963267948966 rad @@ -169544,7 +172071,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41214 + - uid: 24552 components: - type: Transform rot: -1.5707963267948966 rad @@ -169552,7 +172079,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41306 + - uid: 24553 components: - type: Transform rot: 3.141592653589793 rad @@ -169560,7 +172087,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41307 + - uid: 24554 components: - type: Transform rot: 1.5707963267948966 rad @@ -169568,7 +172095,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41331 + - uid: 24555 components: - type: Transform rot: -1.5707963267948966 rad @@ -169576,7 +172103,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41332 + - uid: 24556 components: - type: Transform rot: 3.141592653589793 rad @@ -169584,7 +172111,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41343 + - uid: 24557 components: - type: Transform rot: -1.5707963267948966 rad @@ -169592,7 +172119,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41344 + - uid: 24558 components: - type: Transform rot: 1.5707963267948966 rad @@ -169600,14 +172127,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41357 + - uid: 24559 components: - type: Transform pos: -18.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41385 + - uid: 24560 components: - type: Transform rot: 3.141592653589793 rad @@ -169615,7 +172142,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41386 + - uid: 24561 components: - type: Transform rot: 1.5707963267948966 rad @@ -169623,7 +172150,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41390 + - uid: 24562 components: - type: Transform rot: -1.5707963267948966 rad @@ -169631,7 +172158,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41391 + - uid: 24563 components: - type: Transform rot: 3.141592653589793 rad @@ -169639,21 +172166,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41430 + - uid: 24564 components: - type: Transform pos: -15.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41431 + - uid: 24565 components: - type: Transform pos: 9.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41452 + - uid: 24566 components: - type: Transform rot: 1.5707963267948966 rad @@ -169661,56 +172188,387 @@ entities: parent: 2 - type: AtmosPipeColor color: '#2A6478FF' - - uid: 41453 + - uid: 24567 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 41467 + color: '#2A6478FF' + - uid: 24568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24571 + components: + - type: Transform + pos: 18.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#2A6478FF' + - uid: 24573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 247 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24574 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 150 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24577 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 165 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 298 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24579 + components: + - type: Transform + pos: -2.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 164 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24580 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 164 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 164 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24582 + components: + - type: Transform + pos: -35.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 236 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 299 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 215 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 195 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 197 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 168 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 168 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 166 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 157 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 157 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24592 + components: + - type: Transform + pos: -15.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 300 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 301 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40832 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40833 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40830 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40831 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40829 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 41243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-25.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40829 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 41518 + color: '#0000FFFF' + - uid: 41816 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-61.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 41519 + color: '#0000FFFF' + - uid: 41817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-61.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 41520 + color: '#0000FFFF' + - uid: 41818 components: - type: Transform - pos: 18.5,-53.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 - type: AtmosPipeColor - color: '#2A6478FF' - - uid: 41521 + color: '#0000FFFF' + - uid: 41819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-53.5 - parent: 2 + pos: 3.5,1.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 - type: AtmosPipeColor - color: '#2A6478FF' + color: '#0000FFFF' - proto: GasVentScrubber entities: - - uid: 273 + - uid: 24594 components: - type: Transform rot: 1.5707963267948966 rad @@ -169718,17 +172576,17 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 22105 + - 270 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2676 + - uid: 24595 components: - type: Transform pos: 51.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2708 + - uid: 24596 components: - type: Transform rot: -1.5707963267948966 rad @@ -169736,10 +172594,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 19617 + - 269 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2816 + - uid: 24597 components: - type: Transform rot: 3.141592653589793 rad @@ -169747,10 +172605,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 394 + - 258 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5163 + - uid: 24598 components: - type: Transform rot: 1.5707963267948966 rad @@ -169758,10 +172616,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40451 + - 282 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9689 + - uid: 24599 components: - type: Transform rot: 3.141592653589793 rad @@ -169769,10 +172627,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2714 + - 265 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12998 + - uid: 24600 components: - type: Transform rot: 3.141592653589793 rad @@ -169780,10 +172638,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 394 + - 258 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14824 + - uid: 24601 components: - type: Transform rot: -1.5707963267948966 rad @@ -169791,10 +172649,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 58 + - 150 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 14899 + - uid: 24602 components: - type: Transform rot: 3.141592653589793 rad @@ -169802,7 +172660,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15036 + - uid: 24603 components: - type: Transform rot: 3.141592653589793 rad @@ -169810,8 +172668,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17835 - - uid: 15321 + - 268 + - uid: 24604 components: - type: Transform rot: 3.141592653589793 rad @@ -169819,10 +172677,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2071 + - 263 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 15780 + - uid: 24605 components: - type: Transform rot: 1.5707963267948966 rad @@ -169830,10 +172688,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2712 + - 264 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 16992 + - uid: 24606 components: - type: Transform rot: 1.5707963267948966 rad @@ -169841,10 +172699,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 + - 283 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18303 + - uid: 24607 components: - type: Transform rot: -1.5707963267948966 rad @@ -169852,10 +172710,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 + - 283 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 18772 + - uid: 24608 components: - type: Transform rot: 1.5707963267948966 rad @@ -169863,10 +172721,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 + - 283 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19533 + - uid: 24609 components: - type: Transform rot: 1.5707963267948966 rad @@ -169874,7 +172732,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19535 + - uid: 24610 components: - type: Transform rot: -1.5707963267948966 rad @@ -169882,10 +172740,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 + - 283 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19561 + - uid: 24611 components: - type: Transform rot: 1.5707963267948966 rad @@ -169893,10 +172751,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 + - 283 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19566 + - uid: 24612 components: - type: Transform rot: -1.5707963267948966 rad @@ -169904,10 +172762,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40453 + - 283 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19579 + - uid: 24613 components: - type: Transform rot: 1.5707963267948966 rad @@ -169915,59 +172773,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 19641 + - uid: 24614 components: - type: Transform pos: 64.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2741 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-0.5 - parent: 21045 - - type: DeviceNetwork - deviceLists: - - 40934 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21840 - components: - - type: Transform - pos: 0.5,4.5 - parent: 21045 - - type: DeviceNetwork - deviceLists: - - 40934 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22127 - components: - - type: Transform - pos: 27.5,13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 170 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 169 + - 266 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22129 + - uid: 24615 components: - type: Transform rot: 1.5707963267948966 rad @@ -169975,10 +172791,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 172 + - 251 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22130 + - uid: 24616 components: - type: Transform rot: 1.5707963267948966 rad @@ -169986,10 +172802,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 171 + - 250 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22131 + - uid: 24617 components: - type: Transform rot: 3.141592653589793 rad @@ -169997,7 +172813,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22133 + - uid: 24618 components: - type: Transform rot: 3.141592653589793 rad @@ -170005,10 +172821,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 178 + - 255 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22134 + - uid: 24619 components: - type: Transform rot: 1.5707963267948966 rad @@ -170016,27 +172832,27 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 178 + - 255 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22135 + - uid: 24620 components: - type: Transform pos: -35.5,-79.5 parent: 2 - type: DeviceNetwork deviceLists: - - 114 + - 199 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22137 + - uid: 24621 components: - type: Transform pos: 40.5,-94.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22138 + - uid: 24622 components: - type: Transform rot: 3.141592653589793 rad @@ -170044,7 +172860,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22139 + - uid: 24623 components: - type: Transform rot: -1.5707963267948966 rad @@ -170052,35 +172868,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22140 + - uid: 24624 components: - type: Transform pos: 72.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22141 + - uid: 24625 components: - type: Transform pos: -30.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22144 + - uid: 24626 components: - type: Transform pos: 34.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22145 + - uid: 24627 components: - type: Transform pos: 55.5,-82.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22146 + - uid: 24628 components: - type: Transform rot: -1.5707963267948966 rad @@ -170088,7 +172904,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22147 + - uid: 24629 components: - type: Transform rot: 3.141592653589793 rad @@ -170096,7 +172912,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22148 + - uid: 24630 components: - type: Transform rot: 1.5707963267948966 rad @@ -170104,14 +172920,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22149 + - uid: 24631 components: - type: Transform pos: 62.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22150 + - uid: 24632 components: - type: Transform rot: -1.5707963267948966 rad @@ -170119,21 +172935,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22151 + - uid: 24633 components: - type: Transform pos: 50.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22152 + - uid: 24634 components: - type: Transform pos: 64.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22153 + - uid: 24635 components: - type: Transform rot: -1.5707963267948966 rad @@ -170141,7 +172957,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22161 + - uid: 24636 components: - type: Transform rot: -1.5707963267948966 rad @@ -170149,15 +172965,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22162 + - uid: 24637 components: - type: Transform pos: 107.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 41017 - - uid: 22164 + - 292 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24638 components: - type: Transform rot: -1.5707963267948966 rad @@ -170165,21 +172983,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22165 + - uid: 24639 components: - type: Transform pos: 88.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22166 + - uid: 24640 components: - type: Transform pos: 39.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22168 + - uid: 24641 components: - type: Transform rot: -1.5707963267948966 rad @@ -170187,7 +173005,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22169 + - uid: 24642 components: - type: Transform rot: -1.5707963267948966 rad @@ -170195,14 +173013,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22170 + - uid: 24643 components: - type: Transform pos: 15.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22171 + - uid: 24644 components: - type: Transform rot: 1.5707963267948966 rad @@ -170210,7 +173028,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22172 + - uid: 24645 components: - type: Transform rot: 3.141592653589793 rad @@ -170218,21 +173036,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22173 + - uid: 24646 components: - type: Transform pos: 4.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22174 + - uid: 24647 components: - type: Transform pos: -2.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22175 + - uid: 24648 components: - type: Transform rot: 3.141592653589793 rad @@ -170240,7 +173058,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22176 + - uid: 24649 components: - type: Transform rot: -1.5707963267948966 rad @@ -170248,7 +173066,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22177 + - uid: 24650 components: - type: Transform rot: 1.5707963267948966 rad @@ -170256,7 +173074,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22178 + - uid: 24651 components: - type: Transform rot: -1.5707963267948966 rad @@ -170264,21 +173082,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22179 + - uid: 24652 components: - type: Transform pos: -6.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22180 + - uid: 24653 components: - type: Transform pos: 7.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22181 + - uid: 24654 components: - type: Transform rot: -1.5707963267948966 rad @@ -170286,7 +173104,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22182 + - uid: 24655 components: - type: Transform rot: 1.5707963267948966 rad @@ -170294,7 +173112,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22183 + - uid: 24656 components: - type: Transform rot: 1.5707963267948966 rad @@ -170302,7 +173120,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22184 + - uid: 24657 components: - type: Transform rot: 3.141592653589793 rad @@ -170310,21 +173128,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22185 + - uid: 24658 components: - type: Transform pos: 23.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22186 + - uid: 24659 components: - type: Transform pos: 5.5,-79.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22187 + - uid: 24660 components: - type: Transform rot: -1.5707963267948966 rad @@ -170332,7 +173150,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22188 + - uid: 24661 components: - type: Transform rot: 1.5707963267948966 rad @@ -170340,7 +173158,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22189 + - uid: 24662 components: - type: Transform rot: 3.141592653589793 rad @@ -170348,7 +173166,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22190 + - uid: 24663 components: - type: Transform rot: 3.141592653589793 rad @@ -170356,17 +173174,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22191 + - uid: 24664 components: - type: Transform pos: 8.5,-75.5 parent: 2 - type: DeviceNetwork deviceLists: - - 156 + - 238 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22192 + - uid: 24665 components: - type: Transform rot: -1.5707963267948966 rad @@ -170374,7 +173192,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22193 + - uid: 24666 components: - type: Transform rot: 3.141592653589793 rad @@ -170382,7 +173200,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22194 + - uid: 24667 components: - type: Transform rot: -1.5707963267948966 rad @@ -170390,7 +173208,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22195 + - uid: 24668 components: - type: Transform rot: 1.5707963267948966 rad @@ -170398,14 +173216,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22196 - components: - - type: Transform - pos: -21.5,-71.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22197 + - uid: 24669 components: - type: Transform rot: 1.5707963267948966 rad @@ -170413,7 +173224,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22198 + - uid: 24670 components: - type: Transform rot: -1.5707963267948966 rad @@ -170421,14 +173232,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22199 + - uid: 24671 components: - type: Transform pos: -31.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22200 + - uid: 24672 components: - type: Transform rot: 1.5707963267948966 rad @@ -170436,14 +173247,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22201 + - uid: 24673 components: - type: Transform pos: -18.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22202 + - uid: 24674 components: - type: Transform rot: 1.5707963267948966 rad @@ -170451,7 +173262,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22203 + - uid: 24675 components: - type: Transform rot: -1.5707963267948966 rad @@ -170459,7 +173270,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22204 + - uid: 24676 components: - type: Transform rot: 1.5707963267948966 rad @@ -170467,14 +173278,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22205 + - uid: 24677 components: - type: Transform pos: -37.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22206 + - uid: 24678 components: - type: Transform rot: 1.5707963267948966 rad @@ -170482,7 +173293,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22207 + - uid: 24679 components: - type: Transform rot: 1.5707963267948966 rad @@ -170490,7 +173301,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22208 + - uid: 24680 components: - type: Transform rot: -1.5707963267948966 rad @@ -170498,7 +173309,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22209 + - uid: 24681 components: - type: Transform rot: 3.141592653589793 rad @@ -170506,7 +173317,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22210 + - uid: 24682 components: - type: Transform rot: 3.141592653589793 rad @@ -170514,7 +173325,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22211 + - uid: 24683 components: - type: Transform rot: -1.5707963267948966 rad @@ -170522,7 +173333,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22212 + - uid: 24684 components: - type: Transform rot: 1.5707963267948966 rad @@ -170530,7 +173341,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22213 + - uid: 24685 components: - type: Transform rot: -1.5707963267948966 rad @@ -170538,7 +173349,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22214 + - uid: 24686 components: - type: Transform rot: -1.5707963267948966 rad @@ -170546,14 +173357,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22215 + - uid: 24687 components: - type: Transform pos: -52.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22216 + - uid: 24688 components: - type: Transform rot: 1.5707963267948966 rad @@ -170561,14 +173372,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22217 + - uid: 24689 components: - type: Transform pos: -64.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22218 + - uid: 24690 components: - type: Transform rot: 1.5707963267948966 rad @@ -170576,7 +173387,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22219 + - uid: 24691 components: - type: Transform rot: -1.5707963267948966 rad @@ -170584,7 +173395,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22220 + - uid: 24692 components: - type: Transform rot: 1.5707963267948966 rad @@ -170592,7 +173403,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22221 + - uid: 24693 components: - type: Transform rot: 3.141592653589793 rad @@ -170600,14 +173411,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22222 - components: - - type: Transform - pos: -49.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22223 + - uid: 24694 components: - type: Transform rot: 1.5707963267948966 rad @@ -170615,7 +173419,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22224 + - uid: 24695 components: - type: Transform rot: 3.141592653589793 rad @@ -170623,7 +173427,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22225 + - uid: 24696 components: - type: Transform rot: 1.5707963267948966 rad @@ -170631,10 +173435,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 86 + - 171 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22226 + - uid: 24697 components: - type: Transform rot: 1.5707963267948966 rad @@ -170642,7 +173446,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22227 + - uid: 24698 components: - type: Transform rot: 3.141592653589793 rad @@ -170650,7 +173454,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22228 + - uid: 24699 components: - type: Transform rot: 1.5707963267948966 rad @@ -170658,10 +173462,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 153 + - 236 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22229 + - uid: 24700 components: - type: Transform rot: 3.141592653589793 rad @@ -170669,10 +173473,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 35 + - 130 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22230 + - uid: 24701 components: - type: Transform rot: 3.141592653589793 rad @@ -170680,7 +173484,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22231 + - uid: 24702 components: - type: Transform rot: 3.141592653589793 rad @@ -170688,7 +173492,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22232 + - uid: 24703 components: - type: Transform rot: -1.5707963267948966 rad @@ -170696,7 +173500,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22233 + - uid: 24704 components: - type: Transform rot: 1.5707963267948966 rad @@ -170704,7 +173508,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22234 + - uid: 24705 components: - type: Transform rot: 3.141592653589793 rad @@ -170712,7 +173516,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22237 + - uid: 24706 components: - type: Transform rot: -1.5707963267948966 rad @@ -170720,7 +173524,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22238 + - uid: 24707 components: - type: Transform rot: -1.5707963267948966 rad @@ -170728,7 +173532,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22239 + - uid: 24708 components: - type: Transform rot: -1.5707963267948966 rad @@ -170736,7 +173540,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22240 + - uid: 24709 components: - type: Transform rot: 1.5707963267948966 rad @@ -170744,7 +173548,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22241 + - uid: 24710 components: - type: Transform rot: 1.5707963267948966 rad @@ -170752,7 +173556,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22242 + - uid: 24711 components: - type: Transform rot: -1.5707963267948966 rad @@ -170760,7 +173564,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22243 + - uid: 24712 components: - type: Transform rot: -1.5707963267948966 rad @@ -170768,7 +173572,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22244 + - uid: 24713 components: - type: Transform rot: 3.141592653589793 rad @@ -170776,10 +173580,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 151 + - 234 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22245 + - uid: 24714 components: - type: Transform rot: 3.141592653589793 rad @@ -170787,10 +173591,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 173 + - 252 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22246 + - uid: 24715 components: - type: Transform rot: 1.5707963267948966 rad @@ -170798,10 +173602,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 168 + - 247 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22247 + - uid: 24716 components: - type: Transform rot: 3.141592653589793 rad @@ -170809,7 +173613,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22248 + - uid: 24717 components: - type: Transform rot: 3.141592653589793 rad @@ -170817,87 +173621,111 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22250 + - uid: 24718 components: - type: Transform pos: -46.5,-8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 175 + - 254 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22255 + - uid: 24719 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,-90.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 294 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22256 + - uid: 24720 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,-86.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 294 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22257 + - uid: 24721 components: - type: Transform rot: 1.5707963267948966 rad pos: 95.5,-78.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 294 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22258 + - uid: 24722 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-78.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 294 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22259 + - uid: 24723 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,-75.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 294 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22260 + - uid: 24724 components: - type: Transform pos: 98.5,-70.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22261 + - uid: 24725 components: - type: Transform pos: 97.5,-63.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 294 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22262 + - uid: 24726 components: - type: Transform rot: 1.5707963267948966 rad pos: 93.5,-71.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 294 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22263 + - uid: 24727 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-71.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 294 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22265 + - uid: 24728 components: - type: Transform rot: 1.5707963267948966 rad @@ -170905,10 +173733,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 174 + - 253 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22266 + - uid: 24729 components: - type: Transform rot: -1.5707963267948966 rad @@ -170916,7 +173744,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22268 + - uid: 24730 components: - type: Transform rot: 3.141592653589793 rad @@ -170924,10 +173752,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 179 + - 256 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22269 + - uid: 24731 components: - type: Transform rot: 3.141592653589793 rad @@ -170935,10 +173763,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 179 + - 256 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22271 + - uid: 24732 components: - type: Transform rot: 3.141592653589793 rad @@ -170946,10 +173774,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 99 + - 184 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24897 + - uid: 24733 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 157 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24734 components: - type: Transform rot: -1.5707963267948966 rad @@ -170957,20 +173795,31 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 2712 + - 264 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 26488 + - uid: 24735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 249 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24736 components: - type: Transform pos: 48.5,-14.5 parent: 2 - type: DeviceNetwork deviceLists: - - 27662 + - 272 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 26586 + - uid: 24737 components: - type: Transform rot: -1.5707963267948966 rad @@ -170978,10 +173827,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40436 + - 281 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28193 + - uid: 24738 components: - type: Transform rot: 1.5707963267948966 rad @@ -170989,10 +173838,21 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 27662 + - 272 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28601 + - uid: 24739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 168 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24740 components: - type: Transform rot: 1.5707963267948966 rad @@ -171000,20 +173860,42 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40457 + - 285 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 28967 + - uid: 24741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-70.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 197 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24742 components: - type: Transform pos: 50.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40455 + - 284 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29093 + - uid: 24743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 171 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24744 components: - type: Transform rot: -1.5707963267948966 rad @@ -171021,10 +173903,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40476 + - 287 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29688 + - uid: 24745 components: - type: Transform rot: 3.141592653589793 rad @@ -171032,7 +173914,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29689 + - uid: 24746 components: - type: Transform rot: 3.141592653589793 rad @@ -171040,35 +173922,41 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 30927 + - 275 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 29690 + - uid: 24747 components: - type: Transform pos: 79.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 1595 - - uid: 29693 + - 262 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24748 components: - type: Transform pos: 83.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 30920 - - 543 - - uid: 29705 + - 274 + - 259 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24749 components: - type: Transform pos: 87.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 543 - - uid: 29706 + - 259 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24750 components: - type: Transform rot: 1.5707963267948966 rad @@ -171076,20 +173964,20 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 40518 + - 290 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 32764 + - uid: 24751 components: - type: Transform pos: 38.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 23127 + - 271 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37714 + - uid: 24752 components: - type: Transform rot: -1.5707963267948966 rad @@ -171097,571 +173985,973 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 37871 + - 276 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37727 + - uid: 24753 components: - type: Transform pos: 75.5,5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 37871 + - 276 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 37832 + - uid: 24754 components: - type: Transform pos: 79.5,4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 37871 + - 276 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 38298 + - uid: 24755 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 37887 + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 37891 + - 273 + - 19136 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 38299 + - uid: 24756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 37887 + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 37892 + - 273 + - 19136 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 38300 + - uid: 24757 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 37887 + pos: 6.5,-6.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 37890 + - 273 + - 19136 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 38301 + - uid: 24758 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 37887 + pos: 26.5,-38.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 37889 + - 277 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 38302 + - uid: 24759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-7.5 - parent: 37887 + pos: 59.5,-55.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 37888 + - 139 + - 19137 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 38874 + - uid: 24760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24762 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 38722 + pos: -1.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24763 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24764 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24767 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24768 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 38723 + - 278 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 38875 + color: '#B7410EFF' + - uid: 24770 components: - type: Transform - pos: 5.5,1.5 - parent: 38722 + pos: 16.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-48.5 + parent: 2 + - uid: 24772 + components: + - type: Transform + pos: 6.5,-47.5 + parent: 2 + - uid: 24773 + components: + - type: Transform + pos: 11.5,-58.5 + parent: 2 + - uid: 24774 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 2 + - uid: 24775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-47.5 + parent: 2 + - uid: 24776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24777 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24783 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,6.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 38723 + - 286 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 38876 + - uid: 24785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 38722 + rot: 1.5707963267948966 rad + pos: 53.5,5.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 38723 + - 286 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 38877 + - uid: 24786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 38722 + rot: 1.5707963267948966 rad + pos: 48.5,14.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 38723 + - 270 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39491 + - uid: 24787 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-6.5 + pos: 62.5,-8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 30404 - - 39547 + - 288 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39492 + - uid: 24788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-5.5 + rot: 3.141592653589793 rad + pos: 68.5,-8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 30404 - - 39547 + - 289 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39495 + - uid: 24789 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-6.5 + pos: 69.5,-1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 30404 - - 39547 + - 289 + - 290 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39595 + - uid: 24790 + components: + - type: Transform + pos: 117.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 291 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24791 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-38.5 + pos: 101.5,-42.5 parent: 2 - type: DeviceNetwork deviceLists: - - 39606 + - 148 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39811 + - uid: 24792 components: - type: Transform - pos: 59.5,-55.5 + pos: 87.5,-40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 44 - - 39820 + - 148 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 39823 + - uid: 24793 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-39.5 + pos: 111.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 291 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24794 + components: + - type: Transform + pos: 128.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 291 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24795 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 157 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39824 + - uid: 24797 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24798 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-40.5 + pos: 15.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39825 + - uid: 24799 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-39.5 + pos: 17.5,-30.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 278 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39827 + - uid: 24800 components: - type: Transform - pos: 1.5,-28.5 + rot: 1.5707963267948966 rad + pos: 10.5,-15.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 278 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39828 + - uid: 24801 components: - type: Transform - pos: -4.5,-23.5 + rot: 1.5707963267948966 rad + pos: 10.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 278 + - type: AtmosPipeColor + color: '#B7410EFF' + - uid: 24802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-28.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 278 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39829 + - uid: 24803 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-22.5 + pos: 17.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39830 + - uid: 24804 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-28.5 + pos: -20.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39832 + - uid: 24805 components: - type: Transform - pos: -3.5,-16.5 + rot: -1.5707963267948966 rad + pos: -2.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39833 + - uid: 24806 components: - type: Transform - pos: -10.5,-16.5 + rot: 1.5707963267948966 rad + pos: -16.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#B7410EFF' - - uid: 39835 + - uid: 24807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-19.5 + pos: 30.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 39739 + - 247 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 39836 + color: '#FF0000FF' + - uid: 24808 components: - type: Transform - pos: 16.5,-14.5 + rot: -1.5707963267948966 rad + pos: 37.5,6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 247 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 39840 + color: '#FF0000FF' + - uid: 24809 + components: + - type: Transform + pos: 35.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 248 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24810 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-48.5 + pos: 38.5,10.5 parent: 2 - - uid: 39841 + - type: DeviceNetwork + deviceLists: + - 248 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24811 components: - type: Transform - pos: 6.5,-47.5 + pos: 23.5,8.5 parent: 2 - - uid: 39842 + - type: DeviceNetwork + deviceLists: + - 251 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24812 components: - type: Transform - pos: 11.5,-58.5 + rot: 1.5707963267948966 rad + pos: 32.5,-7.5 parent: 2 - - uid: 39844 + - type: DeviceNetwork + deviceLists: + - 247 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24813 components: - type: Transform - pos: -1.5,-56.5 + rot: 3.141592653589793 rad + pos: 34.5,9.5 parent: 2 - - uid: 39848 + - type: DeviceNetwork + deviceLists: + - 248 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-47.5 + pos: 28.5,14.5 parent: 2 - - uid: 39849 + - type: DeviceNetwork + deviceLists: + - 249 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-47.5 + pos: 26.5,7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 249 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 39850 + color: '#FF0000FF' + - uid: 24816 components: - type: Transform - pos: 9.5,-31.5 + rot: -1.5707963267948966 rad + pos: 44.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 150 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24817 + components: + - type: Transform + pos: 44.5,7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 283 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 39851 + color: '#FF0000FF' + - uid: 24818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-15.5 + pos: 14.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 165 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24819 + components: + - type: Transform + pos: 18.5,20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 298 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 39874 + color: '#FF0000FF' + - uid: 24820 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-40.5 + pos: 0.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 164 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 39875 + color: '#FF0000FF' + - uid: 24821 + components: + - type: Transform + pos: -1.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 164 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24822 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-34.5 + pos: -13.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 164 + - 293 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 39912 + color: '#FF0000FF' + - uid: 24823 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-53.5 + pos: -8.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 164 + - 293 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24824 + components: + - type: Transform + pos: -48.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 173 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 39930 + color: '#FF0000FF' + - uid: 24825 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-38.5 + pos: -45.5,-25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 173 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 39941 + color: '#FF0000FF' + - uid: 24826 components: - type: Transform - pos: 2.5,-20.5 + rot: 3.141592653589793 rad + pos: -37.5,-43.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 236 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 40466 + color: '#FF0000FF' + - uid: 24827 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,6.5 + pos: -66.5,-49.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40468 + - 299 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 40471 + - uid: 24828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,5.5 + rot: 3.141592653589793 rad + pos: -61.5,-50.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40468 + - 299 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 40474 + - uid: 24829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,14.5 + rot: 3.141592653589793 rad + pos: -50.5,-39.5 parent: 2 - type: DeviceNetwork deviceLists: - - 22105 + - 175 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 40486 + - uid: 24830 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-8.5 + rot: 1.5707963267948966 rad + pos: -47.5,-40.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40487 + - 175 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 40489 + - uid: 24831 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-8.5 + rot: -1.5707963267948966 rad + pos: -71.5,-43.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40490 + - 215 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 40495 + - uid: 24832 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,-1.5 + pos: -27.5,-54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 40490 - - 40518 + - 195 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 40960 + - uid: 24833 components: - type: Transform - pos: 117.5,-39.5 + pos: -15.5,-72.5 parent: 2 - type: DeviceNetwork deviceLists: - - 41014 - - uid: 40984 + - 197 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24834 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-42.5 + pos: -28.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 54 - - uid: 40985 + - 168 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24835 components: - type: Transform - pos: 87.5,-40.5 + pos: -12.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 54 - - uid: 40987 + - 157 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24836 components: - type: Transform rot: 1.5707963267948966 rad - pos: 111.5,-41.5 + pos: -25.5,-5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 41014 - - uid: 40992 + - 166 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24837 components: - type: Transform - pos: 128.5,-39.5 + pos: 13.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 41014 - - uid: 41169 + - 157 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24838 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-43.5 + pos: -16.5,5.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 300 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41170 + color: '#FF0000FF' + - uid: 24839 components: - type: Transform - pos: 9.5,-36.5 + rot: -1.5707963267948966 rad + pos: -14.5,9.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 300 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41217 + color: '#FF0000FF' + - uid: 24840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-23.5 + pos: -20.5,7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 301 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41221 + color: '#FF0000FF' + - uid: 40743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-30.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 40666 - type: DeviceNetwork deviceLists: - - 39739 + - 40667 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41233 + color: '#FF0000FF' + - uid: 40744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-15.5 - parent: 2 + pos: 0.5,4.5 + parent: 40666 - type: DeviceNetwork deviceLists: - - 39739 + - 40667 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41234 + color: '#FF0000FF' + - uid: 41244 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-23.5 - parent: 2 + pos: -5.5,-12.5 + parent: 40828 - type: DeviceNetwork deviceLists: - - 39739 + - 40832 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41250 + color: '#FF0000FF' + - uid: 41245 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-28.5 - parent: 2 + pos: 4.5,-10.5 + parent: 40828 - type: DeviceNetwork deviceLists: - - 39739 + - 40833 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41255 + color: '#FF0000FF' + - uid: 41246 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-24.5 - parent: 2 + pos: 5.5,-4.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40831 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41305 + color: '#FF0000FF' + - uid: 41247 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-49.5 - parent: 2 + pos: -3.5,-4.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40830 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41486 + color: '#FF0000FF' + - uid: 41248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 40828 + - type: DeviceNetwork + deviceLists: + - 40829 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41820 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 2 + pos: 5.5,-5.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 - type: AtmosPipeColor - color: '#B7410EFF' - - uid: 41531 + color: '#FF0000FF' + - uid: 41821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-23.5 - parent: 2 + pos: 5.5,1.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 - type: AtmosPipeColor - color: '#B7410EFF' + color: '#FF0000FF' + - uid: 41822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 41823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 41669 + - type: DeviceNetwork + deviceLists: + - 41670 + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasVolumePump entities: - - uid: 22272 + - uid: 24841 components: - type: Transform rot: -1.5707963267948966 rad @@ -171669,7 +174959,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22273 + - uid: 24842 components: - type: Transform rot: 3.141592653589793 rad @@ -171677,14 +174967,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FEF101FF' - - uid: 22274 + - uid: 24843 components: - type: Transform pos: 98.5,-84.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22275 + - uid: 24844 components: - type: Transform pos: 100.5,-83.5 @@ -171693,7 +174983,7 @@ entities: color: '#FF0000FF' - proto: Gateway entities: - - uid: 13529 + - uid: 24845 components: - type: Transform pos: 22.5,-22.5 @@ -171702,412 +174992,430 @@ entities: enabled: True - proto: Gauze entities: - - uid: 32513 + - uid: 2523 components: - type: Transform - pos: 16.452196,-19.400105 - parent: 2 - - uid: 39094 + parent: 2520 + - type: Physics + canCollide: False + - uid: 2530 + components: + - type: Transform + parent: 2527 + - type: Physics + canCollide: False + - uid: 2537 + components: + - type: Transform + parent: 2534 + - type: Physics + canCollide: False + - uid: 18699 components: - type: Transform - parent: 39093 + parent: 18698 - type: Physics canCollide: False + - uid: 24846 + components: + - type: Transform + pos: 16.452196,-19.400105 + parent: 2 - proto: GeigerCounter entities: - - uid: 22277 + - uid: 24847 components: - type: Transform pos: 78.38674,-49.55499 parent: 2 - proto: GeneratorBasic entities: - - uid: 22279 + - uid: 24848 components: - type: Transform pos: 98.5,-61.5 parent: 2 - proto: GeneratorRTG entities: - - uid: 22280 + - uid: 24849 components: - type: Transform pos: 99.5,-61.5 parent: 2 - - uid: 22282 + - uid: 24850 components: - type: Transform pos: 97.5,-61.5 parent: 2 - - uid: 22283 + - uid: 24851 components: - type: Transform pos: -48.5,-74.5 parent: 2 - - uid: 33925 + - uid: 24852 components: - type: Transform pos: -6.5,-46.5 parent: 2 - proto: GeneratorRTGDamaged entities: - - uid: 33923 + - uid: 24853 components: - type: Transform pos: -7.5,-46.5 parent: 2 - - uid: 33924 + - uid: 24854 components: - type: Transform pos: -8.5,-46.5 parent: 2 - proto: GeneratorWallmountAPU entities: - - uid: 21284 + - uid: 40745 components: - type: Transform pos: -2.5,-0.5 - parent: 21045 + parent: 40666 - type: PowerSupplier supplyRampRate: 1000 supplyRampTolerance: 1000 supplyRate: 12000 - - uid: 38303 + - uid: 41249 components: - type: Transform pos: 2.5,-11.5 - parent: 37887 - - uid: 38304 + parent: 40828 + - uid: 41250 components: - type: Transform pos: 2.5,-12.5 - parent: 37887 - - uid: 38305 + parent: 40828 + - uid: 41251 components: - type: Transform pos: -1.5,-11.5 - parent: 37887 - - uid: 38878 + parent: 40828 + - uid: 41824 components: - type: Transform pos: 7.5,-7.5 - parent: 38722 - - uid: 38879 + parent: 41669 + - uid: 41825 components: - type: Transform pos: 1.5,-7.5 - parent: 38722 - - uid: 38880 + parent: 41669 + - uid: 41826 components: - type: Transform pos: 5.5,-9.5 - parent: 38722 + parent: 41669 - proto: GenericTank entities: - - uid: 22285 + - uid: 59 + components: + - type: MetaData + name: резервуар космического очистителя + - type: Transform + pos: -0.49263692,-53.470585 + parent: 2 + - type: SolutionContainerManager + solutions: null + containers: + - tank + - type: Pullable + prevFixedRotation: True + - type: ContainerContainer + containers: + solution@tank: !type:ContainerSlot + ent: 60 + - uid: 24855 components: - type: Transform pos: 17.5,-83.5 parent: 2 - - uid: 22286 + - uid: 24856 components: - type: Transform pos: -11.5,-96.5 parent: 2 - - uid: 22287 + - uid: 24857 components: - type: Transform pos: -42.5,-107.5 parent: 2 - - uid: 39730 + - uid: 24858 components: - type: Transform pos: -8.5,-48.5 parent: 2 - - uid: 41282 - components: - - type: MetaData - name: резервуар космического очистителя - - type: Transform - pos: -0.49263692,-53.470585 - parent: 2 - - type: SolutionContainerManager - solutions: null - containers: - - tank - - type: Pullable - prevFixedRotation: True - - type: ContainerContainer - containers: - solution@tank: !type:ContainerSlot - ent: 41283 - proto: Girder entities: - - uid: 2046 + - uid: 24859 components: - type: Transform pos: -59.5,-16.5 parent: 2 - - uid: 16890 + - uid: 24860 components: - type: Transform pos: -12.5,-26.5 parent: 2 - - uid: 22288 + - uid: 24861 components: - type: Transform pos: -67.5,6.5 parent: 2 - - uid: 22289 + - uid: 24862 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,-46.5 parent: 2 - - uid: 22290 + - uid: 24863 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-91.5 parent: 2 - - uid: 22291 + - uid: 24864 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-51.5 parent: 2 - - uid: 22294 + - uid: 24865 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-45.5 parent: 2 - - uid: 22295 + - uid: 24866 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-77.5 parent: 2 - - uid: 22296 + - uid: 24867 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,19.5 parent: 2 - - uid: 22297 + - uid: 24868 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-61.5 parent: 2 - - uid: 22298 + - uid: 24869 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-81.5 parent: 2 - - uid: 22299 + - uid: 24870 components: - type: Transform pos: -43.5,-95.5 parent: 2 - - uid: 22300 + - uid: 24871 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-34.5 parent: 2 - - uid: 22301 + - uid: 24872 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-32.5 parent: 2 - - uid: 22302 + - uid: 24873 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-25.5 parent: 2 - - uid: 22303 + - uid: 24874 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,7.5 parent: 2 - - uid: 22304 + - uid: 24875 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,9.5 parent: 2 - - uid: 22305 + - uid: 24876 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,14.5 parent: 2 - - uid: 22306 + - uid: 24877 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,15.5 parent: 2 - - uid: 22307 + - uid: 24878 components: - type: Transform pos: -65.5,-15.5 parent: 2 - - uid: 22308 + - uid: 24879 components: - type: Transform pos: -22.5,16.5 parent: 2 - - uid: 22309 + - uid: 24880 components: - type: Transform pos: -18.5,14.5 parent: 2 - - uid: 22310 + - uid: 24881 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-118.5 parent: 2 - - uid: 22311 + - uid: 24882 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-122.5 parent: 2 - - uid: 22312 + - uid: 24883 components: - type: Transform pos: -42.5,-120.5 parent: 2 - - uid: 22313 + - uid: 24884 components: - type: Transform pos: -57.5,-76.5 parent: 2 - - uid: 22314 + - uid: 24885 components: - type: Transform pos: 108.5,-46.5 parent: 2 - - uid: 22315 + - uid: 24886 components: - type: Transform pos: 92.5,-46.5 parent: 2 - - uid: 22321 + - uid: 24887 components: - type: Transform pos: 75.5,-45.5 parent: 2 - - uid: 22323 + - uid: 24888 components: - type: Transform pos: -45.5,-106.5 parent: 2 - - uid: 22324 + - uid: 24889 components: - type: Transform pos: -39.5,-107.5 parent: 2 - - uid: 22325 + - uid: 24890 components: - type: Transform pos: -28.5,-109.5 parent: 2 - - uid: 22326 + - uid: 24891 components: - type: Transform pos: -49.5,-119.5 parent: 2 - - uid: 22327 + - uid: 24892 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-21.5 parent: 2 - - uid: 22328 + - uid: 24893 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-21.5 parent: 2 - - uid: 22331 + - uid: 24894 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,28.5 parent: 2 - - uid: 22332 + - uid: 24895 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-4.5 parent: 2 - - uid: 22333 + - uid: 24896 components: - type: Transform pos: -47.5,1.5 parent: 2 - proto: GlassBoxBroken entities: - - uid: 33762 + - uid: 24897 components: - type: Transform pos: 14.5,-23.5 parent: 2 - proto: GlowstickBase entities: - - uid: 22334 + - uid: 24898 components: - type: Transform pos: -46.635826,-97.712006 parent: 2 - - uid: 22335 + - uid: 24899 components: - type: Transform rot: 3.141592653589793 rad pos: -51.455772,-103.54919 parent: 2 - - uid: 22336 + - uid: 24900 components: - type: Transform pos: -76.321335,-9.98569 parent: 2 - - uid: 22337 + - uid: 24901 components: - type: Transform pos: -74.14946,-7.76694 parent: 2 - proto: GlowstickBlue entities: - - uid: 22338 + - uid: 24902 components: - type: Transform pos: -47.2452,-100.72763 parent: 2 - proto: GlowstickPurple entities: - - uid: 22339 + - uid: 24903 components: - type: Transform pos: -45.542076,-103.274506 parent: 2 - proto: GlowstickRed entities: - - uid: 22340 + - uid: 24904 components: - type: Transform pos: -49.667076,-97.555756 parent: 2 - proto: Gohei entities: - - uid: 22341 + - uid: 24905 components: - type: MetaData desc: плётка используемая что бы подгонять мапперов. @@ -172117,8371 +175425,8391 @@ entities: parent: 2 - proto: GoldRingDiamond entities: - - uid: 6318 + - uid: 24906 components: - type: Transform pos: -6.2808795,-8.315094 parent: 2 - proto: GoldRingGem entities: - - uid: 29414 + - uid: 24907 components: - type: Transform pos: -6.3746295,-8.471344 parent: 2 - proto: GravityGenerator entities: - - uid: 13458 + - uid: 24908 components: - type: Transform pos: 27.5,-42.5 parent: 2 - proto: GravityGeneratorMini entities: - - uid: 21997 + - uid: 40746 components: - type: Transform pos: -0.5,-0.5 - parent: 21045 - - uid: 38306 + parent: 40666 + - uid: 41252 components: - type: Transform pos: 1.5,-12.5 - parent: 37887 - - uid: 38881 + parent: 40828 + - uid: 41827 components: - type: Transform pos: 1.5,-9.5 - parent: 38722 + parent: 41669 - proto: GrenadeBaton entities: - - uid: 26438 + - uid: 24909 components: - type: Transform pos: 12.37467,-16.41426 parent: 2 - - uid: 26493 + - uid: 24910 components: - type: Transform pos: 12.640295,-16.304886 parent: 2 - proto: GrenadeFoamDart entities: - - uid: 33634 + - uid: 24911 components: - type: Transform pos: 8.747442,-16.62456 parent: 2 - proto: GrenadeFrag entities: - - uid: 26491 + - uid: 24912 components: - type: Transform pos: 8.300089,-15.383011 parent: 2 - - uid: 26492 + - uid: 24913 components: - type: Transform pos: 8.503214,-15.289261 parent: 2 - proto: GrenadeIncendiary entities: - - uid: 37106 + - uid: 16302 components: - type: Transform - parent: 37104 + parent: 16300 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37926 + - uid: 40867 components: - type: Transform - parent: 37923 + parent: 40864 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37927 + - uid: 40868 components: - type: Transform - parent: 37923 + parent: 40864 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37928 + - uid: 40869 components: - type: Transform - parent: 37923 + parent: 40864 - type: Physics canCollide: False - type: InsideEntityStorage - proto: GrenadeShrapnel entities: - - uid: 37251 + - uid: 16303 components: - type: Transform - parent: 37104 + parent: 16300 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37929 + - uid: 40870 components: - type: Transform - parent: 37923 + parent: 40864 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37930 + - uid: 40871 components: - type: Transform - parent: 37923 + parent: 40864 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37931 + - uid: 40872 components: - type: Transform - parent: 37923 + parent: 40864 - type: Physics canCollide: False - type: InsideEntityStorage - proto: GrenadeStinger entities: - - uid: 37105 + - uid: 16304 components: - type: Transform - parent: 37104 + parent: 16300 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37932 + - uid: 40873 components: - type: Transform - parent: 37923 + parent: 40864 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37933 + - uid: 40874 components: - type: Transform - parent: 37923 + parent: 40864 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37934 + - uid: 40875 components: - type: Transform - parent: 37923 + parent: 40864 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37935 + - uid: 40876 components: - type: Transform - parent: 37923 + parent: 40864 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37936 + - uid: 40877 components: - type: Transform - parent: 37923 + parent: 40864 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Grille entities: - - uid: 15 + - uid: 24914 components: - type: Transform pos: 51.5,-6.5 parent: 2 - - uid: 1887 + - uid: 24915 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,9.5 parent: 2 - - uid: 5417 + - uid: 24916 components: - type: Transform pos: 45.5,-3.5 parent: 2 - - uid: 5523 + - uid: 24917 components: - type: Transform pos: 41.5,4.5 parent: 2 - - uid: 5524 + - uid: 24918 components: - type: Transform pos: 45.5,7.5 parent: 2 - - uid: 5531 + - uid: 24919 components: - type: Transform pos: 45.5,3.5 parent: 2 - - uid: 9740 + - uid: 24920 components: - type: Transform pos: 56.5,2.5 parent: 2 - - uid: 9931 + - uid: 24921 components: - type: Transform pos: 58.5,-6.5 parent: 2 - - uid: 11124 + - uid: 24922 components: - type: Transform pos: 56.5,-6.5 parent: 2 - - uid: 14230 + - uid: 24923 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-19.5 parent: 2 - - uid: 14406 + - uid: 24924 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-16.5 parent: 2 - - uid: 14555 + - uid: 24925 components: - type: Transform pos: 41.5,1.5 parent: 2 - - uid: 14556 + - uid: 24926 components: - type: Transform pos: 45.5,0.5 parent: 2 - - uid: 14743 + - uid: 24927 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-18.5 parent: 2 - - uid: 15358 + - uid: 24928 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,21.5 parent: 2 - - uid: 16245 + - uid: 24929 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-24.5 parent: 2 - - uid: 16260 + - uid: 24930 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-22.5 parent: 2 - - uid: 16901 + - uid: 24931 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,16.5 parent: 2 - - uid: 17781 + - uid: 24932 components: - type: Transform pos: 42.5,-26.5 parent: 2 - - uid: 18301 + - uid: 24933 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-16.5 parent: 2 - - uid: 18431 + - uid: 24934 components: - type: Transform pos: 11.5,-112.5 parent: 2 - - uid: 19139 + - uid: 24935 components: - type: Transform pos: -15.5,-10.5 parent: 2 - - uid: 19442 + - uid: 24936 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-17.5 parent: 2 - - uid: 19454 + - uid: 24937 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-8.5 parent: 2 - - uid: 19572 + - uid: 24938 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-10.5 parent: 2 - - uid: 19583 + - uid: 24939 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,16.5 parent: 2 - - uid: 21054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 21045 - - uid: 21071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,3.5 - parent: 21045 - - uid: 21078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,4.5 - parent: 21045 - - uid: 21079 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,5.5 - parent: 21045 - - uid: 21160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 21045 - - uid: 22251 + - uid: 24940 components: - type: Transform pos: 74.5,-8.5 parent: 2 - - uid: 22348 + - uid: 24941 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,37.5 parent: 2 - - uid: 22349 + - uid: 24942 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,34.5 parent: 2 - - uid: 22350 + - uid: 24943 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-61.5 parent: 2 - - uid: 22351 + - uid: 24944 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-71.5 parent: 2 - - uid: 22352 + - uid: 24945 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-92.5 parent: 2 - - uid: 22353 + - uid: 24946 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-62.5 parent: 2 - - uid: 22354 + - uid: 24947 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-14.5 parent: 2 - - uid: 22355 + - uid: 24948 components: - type: Transform pos: -69.5,-72.5 parent: 2 - - uid: 22356 + - uid: 24949 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-102.5 parent: 2 - - uid: 22357 + - uid: 24950 components: - type: Transform pos: 66.5,-67.5 parent: 2 - - uid: 22358 + - uid: 24951 components: - type: Transform pos: 66.5,-69.5 parent: 2 - - uid: 22360 + - uid: 24952 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,39.5 parent: 2 - - uid: 22361 + - uid: 24953 components: - type: Transform pos: -19.5,-104.5 parent: 2 - - uid: 22362 + - uid: 24954 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-102.5 parent: 2 - - uid: 22363 + - uid: 24955 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-47.5 parent: 2 - - uid: 22364 + - uid: 24956 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-60.5 parent: 2 - - uid: 22366 + - uid: 24957 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-48.5 parent: 2 - - uid: 22367 + - uid: 24958 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-46.5 parent: 2 - - uid: 22368 + - uid: 24959 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-75.5 parent: 2 - - uid: 22369 + - uid: 24960 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-46.5 parent: 2 - - uid: 22370 + - uid: 24961 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-62.5 parent: 2 - - uid: 22371 + - uid: 24962 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-63.5 parent: 2 - - uid: 22372 + - uid: 24963 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-79.5 parent: 2 - - uid: 22373 + - uid: 24964 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-81.5 parent: 2 - - uid: 22374 + - uid: 24965 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-81.5 parent: 2 - - uid: 22375 + - uid: 24966 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-78.5 parent: 2 - - uid: 22376 + - uid: 24967 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-103.5 parent: 2 - - uid: 22378 + - uid: 24968 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-5.5 parent: 2 - - uid: 22379 + - uid: 24969 components: - type: Transform rot: 3.141592653589793 rad pos: 109.5,-58.5 parent: 2 - - uid: 22383 + - uid: 24970 components: - type: Transform pos: 12.5,27.5 parent: 2 - - uid: 22384 + - uid: 24971 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-77.5 parent: 2 - - uid: 22385 + - uid: 24972 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-59.5 parent: 2 - - uid: 22386 + - uid: 24973 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-3.5 parent: 2 - - uid: 22387 + - uid: 24974 components: - type: Transform pos: -33.5,-81.5 parent: 2 - - uid: 22391 + - uid: 24975 components: - type: Transform pos: -69.5,-74.5 parent: 2 - - uid: 22392 + - uid: 24976 components: - type: Transform pos: -50.5,-70.5 parent: 2 - - uid: 22395 + - uid: 24977 components: - type: Transform rot: 3.141592653589793 rad pos: 111.5,-58.5 parent: 2 - - uid: 22397 + - uid: 24978 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,39.5 parent: 2 - - uid: 22398 + - uid: 24979 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,39.5 parent: 2 - - uid: 22399 + - uid: 24980 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-88.5 parent: 2 - - uid: 22400 + - uid: 24981 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-100.5 parent: 2 - - uid: 22401 + - uid: 24982 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-98.5 parent: 2 - - uid: 22402 + - uid: 24983 components: - type: Transform pos: -49.5,-70.5 parent: 2 - - uid: 22403 + - uid: 24984 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-87.5 parent: 2 - - uid: 22404 + - uid: 24985 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-87.5 parent: 2 - - uid: 22405 + - uid: 24986 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-88.5 parent: 2 - - uid: 22406 + - uid: 24987 components: - type: Transform pos: -2.5,7.5 parent: 2 - - uid: 22408 + - uid: 24988 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,7.5 parent: 2 - - uid: 22409 + - uid: 24989 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,7.5 parent: 2 - - uid: 22410 + - uid: 24990 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,20.5 parent: 2 - - uid: 22411 + - uid: 24991 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,18.5 parent: 2 - - uid: 22412 + - uid: 24992 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,26.5 parent: 2 - - uid: 22413 + - uid: 24993 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-90.5 parent: 2 - - uid: 22414 + - uid: 24994 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-86.5 parent: 2 - - uid: 22415 + - uid: 24995 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-63.5 parent: 2 - - uid: 22417 + - uid: 24996 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-63.5 parent: 2 - - uid: 22419 + - uid: 24997 components: - type: Transform pos: 86.5,-37.5 parent: 2 - - uid: 22420 + - uid: 24998 components: - type: Transform pos: 65.5,-30.5 parent: 2 - - uid: 22421 + - uid: 24999 components: - type: Transform pos: 66.5,-30.5 parent: 2 - - uid: 22422 + - uid: 25000 components: - type: Transform pos: 67.5,-30.5 parent: 2 - - uid: 22425 + - uid: 25001 components: - type: Transform pos: -12.5,-69.5 parent: 2 - - uid: 22426 + - uid: 25002 components: - type: Transform pos: -17.5,-69.5 parent: 2 - - uid: 22428 + - uid: 25003 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-87.5 parent: 2 - - uid: 22429 + - uid: 25004 components: - type: Transform pos: -15.5,-69.5 parent: 2 - - uid: 22430 + - uid: 25005 components: - type: Transform pos: -21.5,-67.5 parent: 2 - - uid: 22431 + - uid: 25006 components: - type: Transform pos: -25.5,-57.5 parent: 2 - - uid: 22432 + - uid: 25007 components: - type: Transform pos: -19.5,-67.5 parent: 2 - - uid: 22433 + - uid: 25008 components: - type: Transform pos: -18.5,-68.5 parent: 2 - - uid: 22434 + - uid: 25009 components: - type: Transform pos: 12.5,-69.5 parent: 2 - - uid: 22435 + - uid: 25010 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-68.5 parent: 2 - - uid: 22436 + - uid: 25011 components: - type: Transform rot: 3.141592653589793 rad pos: 83.5,-68.5 parent: 2 - - uid: 22437 + - uid: 25012 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-82.5 parent: 2 - - uid: 22438 + - uid: 25013 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-81.5 parent: 2 - - uid: 22439 + - uid: 25014 components: - type: Transform pos: 9.5,-69.5 parent: 2 - - uid: 22440 + - uid: 25015 components: - type: Transform pos: 44.5,-70.5 parent: 2 - - uid: 22441 + - uid: 25016 components: - type: Transform pos: 43.5,-70.5 parent: 2 - - uid: 22443 + - uid: 25017 components: - type: Transform pos: -16.5,-69.5 parent: 2 - - uid: 22444 + - uid: 25018 components: - type: Transform pos: -18.5,-67.5 parent: 2 - - uid: 22445 + - uid: 25019 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-63.5 parent: 2 - - uid: 22446 + - uid: 25020 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-83.5 parent: 2 - - uid: 22447 + - uid: 25021 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-84.5 parent: 2 - - uid: 22448 + - uid: 25022 components: - type: Transform pos: -6.5,2.5 parent: 2 - - uid: 22449 + - uid: 25023 components: - type: Transform pos: 32.5,-68.5 parent: 2 - - uid: 22450 + - uid: 25024 components: - type: Transform pos: -41.5,-74.5 parent: 2 - - uid: 22451 + - uid: 25025 components: - type: Transform pos: -41.5,-72.5 parent: 2 - - uid: 22452 + - uid: 25026 components: - type: Transform pos: -59.5,-88.5 parent: 2 - - uid: 22453 + - uid: 25027 components: - type: Transform pos: -60.5,-92.5 parent: 2 - - uid: 22454 + - uid: 25028 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-75.5 parent: 2 - - uid: 22455 + - uid: 25029 components: - type: Transform pos: -41.5,-69.5 parent: 2 - - uid: 22456 + - uid: 25030 components: - type: Transform pos: -48.5,-45.5 parent: 2 - - uid: 22457 + - uid: 25031 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-75.5 parent: 2 - - uid: 22458 + - uid: 25032 components: - type: Transform pos: -8.5,-69.5 parent: 2 - - uid: 22459 + - uid: 25033 components: - type: Transform pos: -11.5,-69.5 parent: 2 - - uid: 22460 + - uid: 25034 components: - type: Transform pos: -10.5,-69.5 parent: 2 - - uid: 22461 + - uid: 25035 components: - type: Transform pos: -58.5,14.5 parent: 2 - - uid: 22462 + - uid: 25036 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,13.5 parent: 2 - - uid: 22463 + - uid: 25037 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,13.5 parent: 2 - - uid: 22464 + - uid: 25038 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,16.5 parent: 2 - - uid: 22467 + - uid: 25039 components: - type: Transform pos: -27.5,-51.5 parent: 2 - - uid: 22468 + - uid: 25040 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-63.5 parent: 2 - - uid: 22469 + - uid: 25041 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-75.5 parent: 2 - - uid: 22470 + - uid: 25042 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-51.5 parent: 2 - - uid: 22471 + - uid: 25043 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-51.5 parent: 2 - - uid: 22473 + - uid: 25044 components: - type: Transform pos: 2.5,6.5 parent: 2 - - uid: 22474 + - uid: 25045 components: - type: Transform pos: 2.5,7.5 parent: 2 - - uid: 22475 + - uid: 25046 components: - type: Transform pos: 2.5,10.5 parent: 2 - - uid: 22476 + - uid: 25047 components: - type: Transform pos: 2.5,11.5 parent: 2 - - uid: 22477 + - uid: 25048 components: - type: Transform pos: 9.5,18.5 parent: 2 - - uid: 22478 + - uid: 25049 components: - type: Transform pos: 10.5,18.5 parent: 2 - - uid: 22479 + - uid: 25050 components: - type: Transform pos: 11.5,18.5 parent: 2 - - uid: 22480 + - uid: 25051 components: - type: Transform pos: 12.5,24.5 parent: 2 - - uid: 22481 + - uid: 25052 components: - type: Transform pos: 11.5,24.5 parent: 2 - - uid: 22482 + - uid: 25053 components: - type: Transform pos: 11.5,25.5 parent: 2 - - uid: 22483 + - uid: 25054 components: - type: Transform pos: 10.5,25.5 parent: 2 - - uid: 22484 + - uid: 25055 components: - type: Transform pos: 10.5,26.5 parent: 2 - - uid: 22485 + - uid: 25056 components: - type: Transform pos: 8.5,26.5 parent: 2 - - uid: 22486 + - uid: 25057 components: - type: Transform pos: 7.5,26.5 parent: 2 - - uid: 22487 + - uid: 25058 components: - type: Transform pos: 6.5,26.5 parent: 2 - - uid: 22488 + - uid: 25059 components: - type: Transform pos: 6.5,27.5 parent: 2 - - uid: 22489 + - uid: 25060 components: - type: Transform pos: 5.5,27.5 parent: 2 - - uid: 22490 + - uid: 25061 components: - type: Transform pos: 4.5,27.5 parent: 2 - - uid: 22491 + - uid: 25062 components: - type: Transform pos: 3.5,27.5 parent: 2 - - uid: 22492 + - uid: 25063 components: - type: Transform pos: 3.5,28.5 parent: 2 - - uid: 22493 + - uid: 25064 components: - type: Transform pos: 2.5,28.5 parent: 2 - - uid: 22494 + - uid: 25065 components: - type: Transform pos: 1.5,28.5 parent: 2 - - uid: 22495 + - uid: 25066 components: - type: Transform pos: 0.5,28.5 parent: 2 - - uid: 22496 + - uid: 25067 components: - type: Transform pos: -0.5,28.5 parent: 2 - - uid: 22497 + - uid: 25068 components: - type: Transform pos: -1.5,28.5 parent: 2 - - uid: 22498 + - uid: 25069 components: - type: Transform pos: -2.5,28.5 parent: 2 - - uid: 22499 + - uid: 25070 components: - type: Transform pos: -2.5,27.5 parent: 2 - - uid: 22500 + - uid: 25071 components: - type: Transform pos: -3.5,27.5 parent: 2 - - uid: 22501 + - uid: 25072 components: - type: Transform pos: -4.5,27.5 parent: 2 - - uid: 22502 + - uid: 25073 components: - type: Transform pos: -5.5,27.5 parent: 2 - - uid: 22503 + - uid: 25074 components: - type: Transform pos: -5.5,26.5 parent: 2 - - uid: 22504 + - uid: 25075 components: - type: Transform pos: -7.5,26.5 parent: 2 - - uid: 22505 + - uid: 25076 components: - type: Transform pos: -8.5,26.5 parent: 2 - - uid: 22506 + - uid: 25077 components: - type: Transform pos: -9.5,26.5 parent: 2 - - uid: 22507 + - uid: 25078 components: - type: Transform pos: -9.5,25.5 parent: 2 - - uid: 22508 + - uid: 25079 components: - type: Transform pos: -10.5,25.5 parent: 2 - - uid: 22509 + - uid: 25080 components: - type: Transform pos: -11.5,23.5 parent: 2 - - uid: 22512 + - uid: 25081 components: - type: Transform pos: -21.5,2.5 parent: 2 - - uid: 22518 + - uid: 25082 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-101.5 parent: 2 - - uid: 22519 + - uid: 25083 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-98.5 parent: 2 - - uid: 22523 + - uid: 25084 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-7.5 parent: 2 - - uid: 22524 + - uid: 25085 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-0.5 parent: 2 - - uid: 22525 + - uid: 25086 components: - type: Transform pos: -55.5,-22.5 parent: 2 - - uid: 22526 + - uid: 25087 components: - type: Transform pos: -54.5,-22.5 parent: 2 - - uid: 22527 + - uid: 25088 components: - type: Transform pos: -53.5,-22.5 parent: 2 - - uid: 22528 + - uid: 25089 components: - type: Transform pos: -53.5,-26.5 parent: 2 - - uid: 22529 + - uid: 25090 components: - type: Transform pos: -54.5,-26.5 parent: 2 - - uid: 22530 + - uid: 25091 components: - type: Transform pos: -28.5,-49.5 parent: 2 - - uid: 22531 + - uid: 25092 components: - type: Transform pos: -25.5,-64.5 parent: 2 - - uid: 22532 + - uid: 25093 components: - type: Transform pos: -25.5,-63.5 parent: 2 - - uid: 22533 + - uid: 25094 components: - type: Transform pos: -25.5,-54.5 parent: 2 - - uid: 22534 + - uid: 25095 components: - type: Transform pos: -25.5,-35.5 parent: 2 - - uid: 22535 + - uid: 25096 components: - type: Transform pos: -24.5,-64.5 parent: 2 - - uid: 22536 + - uid: 25097 components: - type: Transform pos: -24.5,-65.5 parent: 2 - - uid: 22537 + - uid: 25098 components: - type: Transform pos: -25.5,-59.5 parent: 2 - - uid: 22538 + - uid: 25099 components: - type: Transform pos: -25.5,-56.5 parent: 2 - - uid: 22539 + - uid: 25100 components: - type: Transform pos: -25.5,-61.5 parent: 2 - - uid: 22540 + - uid: 25101 components: - type: Transform pos: -25.5,-55.5 parent: 2 - - uid: 22541 + - uid: 25102 components: - type: Transform pos: -36.5,-35.5 parent: 2 - - uid: 22542 + - uid: 25103 components: - type: Transform pos: -53.5,-4.5 parent: 2 - - uid: 22543 + - uid: 25104 components: - type: Transform pos: -52.5,-4.5 parent: 2 - - uid: 22544 + - uid: 25105 components: - type: Transform pos: -48.5,-3.5 parent: 2 - - uid: 22545 + - uid: 25106 components: - type: Transform pos: -48.5,-0.5 parent: 2 - - uid: 22546 + - uid: 25107 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-40.5 parent: 2 - - uid: 22547 + - uid: 25108 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-40.5 parent: 2 - - uid: 22548 + - uid: 25109 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-5.5 parent: 2 - - uid: 22549 + - uid: 25110 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-44.5 parent: 2 - - uid: 22550 + - uid: 25111 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-44.5 parent: 2 - - uid: 22551 + - uid: 25112 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-44.5 parent: 2 - - uid: 22552 + - uid: 25113 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-40.5 parent: 2 - - uid: 22553 + - uid: 25114 components: - type: Transform pos: -25.5,-62.5 parent: 2 - - uid: 22554 + - uid: 25115 components: - type: Transform pos: -25.5,-51.5 parent: 2 - - uid: 22555 + - uid: 25116 components: - type: Transform pos: -23.5,-67.5 parent: 2 - - uid: 22556 + - uid: 25117 components: - type: Transform pos: -24.5,-66.5 parent: 2 - - uid: 22557 + - uid: 25118 components: - type: Transform pos: -28.5,-48.5 parent: 2 - - uid: 22558 + - uid: 25119 components: - type: Transform pos: -25.5,-52.5 parent: 2 - - uid: 22559 + - uid: 25120 components: - type: Transform pos: -26.5,-51.5 parent: 2 - - uid: 22560 + - uid: 25121 components: - type: Transform pos: -22.5,-67.5 parent: 2 - - uid: 22561 + - uid: 25122 components: - type: Transform pos: -7.5,-69.5 parent: 2 - - uid: 22562 + - uid: 25123 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-34.5 parent: 2 - - uid: 22563 + - uid: 25124 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-34.5 parent: 2 - - uid: 22564 + - uid: 25125 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-34.5 parent: 2 - - uid: 22565 + - uid: 25126 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-30.5 parent: 2 - - uid: 22566 + - uid: 25127 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-30.5 parent: 2 - - uid: 22567 + - uid: 25128 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-30.5 parent: 2 - - uid: 22568 + - uid: 25129 components: - type: Transform pos: 61.5,-63.5 parent: 2 - - uid: 22569 + - uid: 25130 components: - type: Transform pos: 39.5,-43.5 parent: 2 - - uid: 22570 + - uid: 25131 components: - type: Transform pos: 38.5,-43.5 parent: 2 - - uid: 22571 + - uid: 25132 components: - type: Transform pos: 37.5,-43.5 parent: 2 - - uid: 22572 + - uid: 25133 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-36.5 parent: 2 - - uid: 22574 + - uid: 25134 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-59.5 parent: 2 - - uid: 22575 + - uid: 25135 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-93.5 parent: 2 - - uid: 22576 + - uid: 25136 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-46.5 parent: 2 - - uid: 22577 + - uid: 25137 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-104.5 parent: 2 - - uid: 22578 + - uid: 25138 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-94.5 parent: 2 - - uid: 22579 + - uid: 25139 components: - type: Transform pos: 50.5,-80.5 parent: 2 - - uid: 22580 + - uid: 25140 components: - type: Transform pos: 61.5,-71.5 parent: 2 - - uid: 22581 + - uid: 25141 components: - type: Transform pos: 60.5,-71.5 parent: 2 - - uid: 22582 + - uid: 25142 components: - type: Transform pos: 59.5,-71.5 parent: 2 - - uid: 22583 + - uid: 25143 components: - type: Transform pos: 57.5,-70.5 parent: 2 - - uid: 22584 + - uid: 25144 components: - type: Transform pos: 56.5,-70.5 parent: 2 - - uid: 22585 + - uid: 25145 components: - type: Transform pos: 55.5,-70.5 parent: 2 - - uid: 22586 + - uid: 25146 components: - type: Transform pos: 58.5,-75.5 parent: 2 - - uid: 22587 + - uid: 25147 components: - type: Transform pos: 58.5,-76.5 parent: 2 - - uid: 22588 + - uid: 25148 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-96.5 parent: 2 - - uid: 22589 + - uid: 25149 components: - type: Transform pos: 48.5,-80.5 parent: 2 - - uid: 22590 + - uid: 25150 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-99.5 parent: 2 - - uid: 22591 + - uid: 25151 components: - type: Transform pos: -28.5,-47.5 parent: 2 - - uid: 22592 + - uid: 25152 components: - type: Transform pos: -28.5,-50.5 parent: 2 - - uid: 22593 + - uid: 25153 components: - type: Transform pos: 8.5,-69.5 parent: 2 - - uid: 22594 + - uid: 25154 components: - type: Transform pos: 11.5,-69.5 parent: 2 - - uid: 22595 + - uid: 25155 components: - type: Transform pos: 13.5,-69.5 parent: 2 - - uid: 22596 + - uid: 25156 components: - type: Transform pos: 16.5,-69.5 parent: 2 - - uid: 22597 + - uid: 25157 components: - type: Transform pos: 17.5,-69.5 parent: 2 - - uid: 22598 + - uid: 25158 components: - type: Transform pos: 18.5,-69.5 parent: 2 - - uid: 22599 + - uid: 25159 components: - type: Transform pos: 19.5,-68.5 parent: 2 - - uid: 22600 + - uid: 25160 components: - type: Transform pos: 19.5,-67.5 parent: 2 - - uid: 22601 + - uid: 25161 components: - type: Transform pos: 20.5,-67.5 parent: 2 - - uid: 22602 + - uid: 25162 components: - type: Transform pos: 22.5,-67.5 parent: 2 - - uid: 22603 + - uid: 25163 components: - type: Transform pos: 23.5,-67.5 parent: 2 - - uid: 22604 + - uid: 25164 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-95.5 parent: 2 - - uid: 22605 + - uid: 25165 components: - type: Transform pos: 24.5,-67.5 parent: 2 - - uid: 22606 + - uid: 25166 components: - type: Transform pos: 25.5,-66.5 parent: 2 - - uid: 22607 + - uid: 25167 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-101.5 parent: 2 - - uid: 22608 + - uid: 25168 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-91.5 parent: 2 - - uid: 22609 + - uid: 25169 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-92.5 parent: 2 - - uid: 22610 + - uid: 25170 components: - type: Transform pos: 16.5,-95.5 parent: 2 - - uid: 22611 + - uid: 25171 components: - type: Transform pos: 17.5,-101.5 parent: 2 - - uid: 22612 + - uid: 25172 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-95.5 parent: 2 - - uid: 22613 + - uid: 25173 components: - type: Transform pos: 16.5,-101.5 parent: 2 - - uid: 22614 + - uid: 25174 components: - type: Transform pos: 25.5,-65.5 parent: 2 - - uid: 22615 + - uid: 25175 components: - type: Transform pos: 26.5,-64.5 parent: 2 - - uid: 22616 + - uid: 25176 components: - type: Transform pos: -3.5,-89.5 parent: 2 - - uid: 22617 + - uid: 25177 components: - type: Transform pos: -3.5,-90.5 parent: 2 - - uid: 22618 + - uid: 25178 components: - type: Transform pos: -3.5,-91.5 parent: 2 - - uid: 22619 + - uid: 25179 components: - type: Transform pos: -0.5,-100.5 parent: 2 - - uid: 22620 + - uid: 25180 components: - type: Transform pos: -1.5,-100.5 parent: 2 - - uid: 22621 + - uid: 25181 components: - type: Transform pos: -2.5,-100.5 parent: 2 - - uid: 22622 + - uid: 25182 components: - type: Transform pos: -0.5,-92.5 parent: 2 - - uid: 22623 + - uid: 25183 components: - type: Transform pos: 0.5,-92.5 parent: 2 - - uid: 22624 + - uid: 25184 components: - type: Transform pos: 2.5,-78.5 parent: 2 - - uid: 22625 + - uid: 25185 components: - type: Transform pos: 2.5,-79.5 parent: 2 - - uid: 22626 + - uid: 25186 components: - type: Transform pos: -1.5,-80.5 parent: 2 - - uid: 22627 + - uid: 25187 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-83.5 parent: 2 - - uid: 22628 + - uid: 25188 components: - type: Transform pos: 11.5,-85.5 parent: 2 - - uid: 22629 + - uid: 25189 components: - type: Transform pos: 8.5,-81.5 parent: 2 - - uid: 22630 + - uid: 25190 components: - type: Transform pos: 26.5,-63.5 parent: 2 - - uid: 22631 + - uid: 25191 components: - type: Transform pos: -11.5,-102.5 parent: 2 - - uid: 22632 + - uid: 25192 components: - type: Transform pos: -8.5,-99.5 parent: 2 - - uid: 22633 + - uid: 25193 components: - type: Transform pos: -7.5,-82.5 parent: 2 - - uid: 22634 + - uid: 25194 components: - type: Transform pos: -14.5,-102.5 parent: 2 - - uid: 22637 + - uid: 25195 components: - type: Transform pos: 26.5,-62.5 parent: 2 - - uid: 22638 + - uid: 25196 components: - type: Transform pos: 26.5,-61.5 parent: 2 - - uid: 22639 + - uid: 25197 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-76.5 parent: 2 - - uid: 22640 + - uid: 25198 components: - type: Transform pos: 49.5,-80.5 parent: 2 - - uid: 22644 + - uid: 25199 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,-46.5 parent: 2 - - uid: 22645 + - uid: 25200 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-46.5 parent: 2 - - uid: 22646 + - uid: 25201 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-46.5 parent: 2 - - uid: 22647 + - uid: 25202 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-51.5 parent: 2 - - uid: 22648 + - uid: 25203 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-51.5 parent: 2 - - uid: 22649 + - uid: 25204 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-46.5 parent: 2 - - uid: 22650 + - uid: 25205 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-46.5 parent: 2 - - uid: 22651 + - uid: 25206 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-46.5 parent: 2 - - uid: 22652 + - uid: 25207 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-46.5 parent: 2 - - uid: 22653 + - uid: 25208 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-35.5 parent: 2 - - uid: 22655 + - uid: 25209 components: - type: Transform pos: -41.5,-68.5 parent: 2 - - uid: 22656 + - uid: 25210 components: - type: Transform pos: -41.5,-67.5 parent: 2 - - uid: 22657 + - uid: 25211 components: - type: Transform pos: -47.5,-65.5 parent: 2 - - uid: 22658 + - uid: 25212 components: - type: Transform pos: -45.5,-65.5 parent: 2 - - uid: 22659 + - uid: 25213 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-67.5 parent: 2 - - uid: 22660 + - uid: 25214 components: - type: Transform pos: -52.5,-63.5 parent: 2 - - uid: 22661 + - uid: 25215 components: - type: Transform pos: -53.5,-63.5 parent: 2 - - uid: 22662 + - uid: 25216 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-46.5 parent: 2 - - uid: 22663 + - uid: 25217 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-45.5 parent: 2 - - uid: 22664 + - uid: 25218 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-45.5 parent: 2 - - uid: 22665 + - uid: 25219 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-45.5 parent: 2 - - uid: 22666 + - uid: 25220 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-41.5 parent: 2 - - uid: 22667 + - uid: 25221 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-41.5 parent: 2 - - uid: 22668 + - uid: 25222 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-41.5 parent: 2 - - uid: 22669 + - uid: 25223 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-74.5 parent: 2 - - uid: 22670 + - uid: 25224 components: - type: Transform pos: -47.5,-45.5 parent: 2 - - uid: 22671 + - uid: 25225 components: - type: Transform pos: -46.5,-45.5 parent: 2 - - uid: 22672 + - uid: 25226 components: - type: Transform pos: -45.5,-46.5 parent: 2 - - uid: 22673 + - uid: 25227 components: - type: Transform pos: -45.5,-47.5 parent: 2 - - uid: 22674 + - uid: 25228 components: - type: Transform pos: -45.5,-48.5 parent: 2 - - uid: 22675 + - uid: 25229 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-40.5 parent: 2 - - uid: 22676 + - uid: 25230 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-40.5 parent: 2 - - uid: 22677 + - uid: 25231 components: - type: Transform pos: -54.5,-56.5 parent: 2 - - uid: 22678 + - uid: 25232 components: - type: Transform pos: -54.5,-58.5 parent: 2 - - uid: 22679 + - uid: 25233 components: - type: Transform pos: -56.5,-58.5 parent: 2 - - uid: 22680 + - uid: 25234 components: - type: Transform pos: -56.5,-56.5 parent: 2 - - uid: 22681 + - uid: 25235 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-64.5 parent: 2 - - uid: 22689 + - uid: 25236 components: - type: Transform pos: -41.5,-31.5 parent: 2 - - uid: 22690 + - uid: 25237 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-77.5 parent: 2 - - uid: 22691 + - uid: 25238 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-88.5 parent: 2 - - uid: 22692 + - uid: 25239 components: - type: Transform pos: 88.5,4.5 parent: 2 - - uid: 22693 + - uid: 25240 components: - type: Transform pos: 26.5,-59.5 parent: 2 - - uid: 22695 + - uid: 25241 components: - type: Transform pos: 26.5,-57.5 parent: 2 - - uid: 22696 + - uid: 25242 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-73.5 parent: 2 - - uid: 22697 + - uid: 25243 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-73.5 parent: 2 - - uid: 22698 + - uid: 25244 components: - type: Transform pos: 26.5,-56.5 parent: 2 - - uid: 22699 + - uid: 25245 components: - type: Transform pos: 26.5,-55.5 parent: 2 - - uid: 22700 + - uid: 25246 components: - type: Transform pos: 26.5,-21.5 parent: 2 - - uid: 22701 + - uid: 25247 components: - type: Transform pos: 26.5,-23.5 parent: 2 - - uid: 22702 + - uid: 25248 components: - type: Transform pos: 26.5,-22.5 parent: 2 - - uid: 22705 + - uid: 25249 components: - type: Transform pos: 26.5,-24.5 parent: 2 - - uid: 22707 + - uid: 25250 components: - type: Transform pos: 26.5,-19.5 parent: 2 - - uid: 22708 + - uid: 25251 components: - type: Transform pos: 23.5,-8.5 parent: 2 - - uid: 22709 + - uid: 25252 components: - type: Transform pos: 26.5,-16.5 parent: 2 - - uid: 22710 + - uid: 25253 components: - type: Transform pos: 26.5,-17.5 parent: 2 - - uid: 22712 + - uid: 25254 components: - type: Transform pos: 26.5,-14.5 parent: 2 - - uid: 22713 + - uid: 25255 components: - type: Transform pos: 26.5,-15.5 parent: 2 - - uid: 22714 + - uid: 25256 components: - type: Transform pos: 26.5,-13.5 parent: 2 - - uid: 22715 + - uid: 25257 components: - type: Transform pos: 17.5,-95.5 parent: 2 - - uid: 22716 + - uid: 25258 components: - type: Transform pos: 25.5,-12.5 parent: 2 - - uid: 22717 + - uid: 25259 components: - type: Transform pos: 25.5,-10.5 parent: 2 - - uid: 22718 + - uid: 25260 components: - type: Transform pos: 25.5,-11.5 parent: 2 - - uid: 22719 + - uid: 25261 components: - type: Transform pos: 23.5,-8.5 parent: 2 - - uid: 22720 + - uid: 25262 components: - type: Transform pos: 23.5,-7.5 parent: 2 - - uid: 22721 + - uid: 25263 components: - type: Transform pos: 22.5,-7.5 parent: 2 - - uid: 22722 + - uid: 25264 components: - type: Transform pos: 22.5,-6.5 parent: 2 - - uid: 22723 + - uid: 25265 components: - type: Transform pos: 21.5,-6.5 parent: 2 - - uid: 22724 + - uid: 25266 components: - type: Transform pos: 21.5,-5.5 parent: 2 - - uid: 22725 + - uid: 25267 components: - type: Transform pos: 20.5,-5.5 parent: 2 - - uid: 22726 + - uid: 25268 components: - type: Transform pos: 20.5,-4.5 parent: 2 - - uid: 22727 + - uid: 25269 components: - type: Transform pos: 24.5,-8.5 parent: 2 - - uid: 22728 + - uid: 25270 components: - type: Transform pos: 18.5,-4.5 parent: 2 - - uid: 22729 + - uid: 25271 components: - type: Transform pos: 18.5,-3.5 parent: 2 - - uid: 22730 + - uid: 25272 components: - type: Transform pos: 17.5,-3.5 parent: 2 - - uid: 22731 + - uid: 25273 components: - type: Transform pos: 16.5,-3.5 parent: 2 - - uid: 22732 + - uid: 25274 components: - type: Transform pos: 15.5,-2.5 parent: 2 - - uid: 22733 + - uid: 25275 components: - type: Transform pos: 14.5,-2.5 parent: 2 - - uid: 22734 + - uid: 25276 components: - type: Transform pos: 13.5,-2.5 parent: 2 - - uid: 22742 + - uid: 25277 components: - type: Transform pos: -16.5,-10.5 parent: 2 - - uid: 22747 + - uid: 25278 components: - type: Transform pos: -11.5,-2.5 parent: 2 - - uid: 22748 + - uid: 25279 components: - type: Transform pos: -12.5,-2.5 parent: 2 - - uid: 22749 + - uid: 25280 components: - type: Transform pos: -13.5,-2.5 parent: 2 - - uid: 22750 + - uid: 25281 components: - type: Transform pos: -14.5,-2.5 parent: 2 - - uid: 22751 + - uid: 25282 components: - type: Transform pos: -19.5,-4.5 parent: 2 - - uid: 22752 + - uid: 25283 components: - type: Transform pos: -16.5,-3.5 parent: 2 - - uid: 22753 + - uid: 25284 components: - type: Transform pos: -16.5,-3.5 parent: 2 - - uid: 22754 + - uid: 25285 components: - type: Transform pos: -17.5,-3.5 parent: 2 - - uid: 22755 + - uid: 25286 components: - type: Transform pos: -17.5,-4.5 parent: 2 - - uid: 22756 + - uid: 25287 components: - type: Transform pos: -19.5,-5.5 parent: 2 - - uid: 22758 + - uid: 25288 components: - type: Transform pos: -20.5,-5.5 parent: 2 - - uid: 22759 + - uid: 25289 components: - type: Transform pos: -20.5,-6.5 parent: 2 - - uid: 22760 + - uid: 25290 components: - type: Transform pos: -21.5,-6.5 parent: 2 - - uid: 22761 + - uid: 25291 components: - type: Transform pos: -21.5,-7.5 parent: 2 - - uid: 22762 + - uid: 25292 components: - type: Transform pos: -22.5,-7.5 parent: 2 - - uid: 22763 + - uid: 25293 components: - type: Transform pos: -22.5,-8.5 parent: 2 - - uid: 22764 + - uid: 25294 components: - type: Transform pos: -23.5,-8.5 parent: 2 - - uid: 22765 + - uid: 25295 components: - type: Transform pos: -24.5,-12.5 parent: 2 - - uid: 22766 + - uid: 25296 components: - type: Transform pos: -24.5,-11.5 parent: 2 - - uid: 22767 + - uid: 25297 components: - type: Transform pos: -24.5,-10.5 parent: 2 - - uid: 22768 + - uid: 25298 components: - type: Transform pos: -23.5,-10.5 parent: 2 - - uid: 22769 + - uid: 25299 components: - type: Transform pos: -25.5,-32.5 parent: 2 - - uid: 22770 + - uid: 25300 components: - type: Transform pos: -25.5,-13.5 parent: 2 - - uid: 22771 + - uid: 25301 components: - type: Transform pos: -25.5,-14.5 parent: 2 - - uid: 22772 + - uid: 25302 components: - type: Transform pos: -25.5,-15.5 parent: 2 - - uid: 22773 + - uid: 25303 components: - type: Transform pos: -25.5,-16.5 parent: 2 - - uid: 22776 + - uid: 25304 components: - type: Transform pos: -10.5,24.5 parent: 2 - - uid: 22777 + - uid: 25305 components: - type: Transform pos: -25.5,-17.5 parent: 2 - - uid: 22779 + - uid: 25306 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-95.5 parent: 2 - - uid: 22780 + - uid: 25307 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-102.5 parent: 2 - - uid: 22781 + - uid: 25308 components: - type: Transform pos: -25.5,-34.5 parent: 2 - - uid: 22782 + - uid: 25309 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-102.5 parent: 2 - - uid: 22783 + - uid: 25310 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-92.5 parent: 2 - - uid: 22784 + - uid: 25311 components: - type: Transform pos: -25.5,-31.5 parent: 2 - - uid: 22785 + - uid: 25312 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-101.5 parent: 2 - - uid: 22786 + - uid: 25313 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-89.5 parent: 2 - - uid: 22787 + - uid: 25314 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-98.5 parent: 2 - - uid: 22790 + - uid: 25315 components: - type: Transform pos: -6.5,26.5 parent: 2 - - uid: 22791 + - uid: 25316 components: - type: Transform pos: -25.5,-28.5 parent: 2 - - uid: 22792 + - uid: 25317 components: - type: Transform pos: -25.5,-29.5 parent: 2 - - uid: 22793 + - uid: 25318 components: - type: Transform pos: -25.5,-30.5 parent: 2 - - uid: 22794 + - uid: 25319 components: - type: Transform pos: -38.5,-60.5 parent: 2 - - uid: 22795 + - uid: 25320 components: - type: Transform pos: -39.5,-60.5 parent: 2 - - uid: 22796 + - uid: 25321 components: - type: Transform pos: -40.5,-60.5 parent: 2 - - uid: 22797 + - uid: 25322 components: - type: Transform pos: -41.5,-65.5 parent: 2 - - uid: 22798 + - uid: 25323 components: - type: Transform pos: -39.5,-56.5 parent: 2 - - uid: 22799 + - uid: 25324 components: - type: Transform pos: -41.5,-54.5 parent: 2 - - uid: 22800 + - uid: 25325 components: - type: Transform pos: -41.5,-53.5 parent: 2 - - uid: 22801 + - uid: 25326 components: - type: Transform pos: -41.5,-52.5 parent: 2 - - uid: 22802 + - uid: 25327 components: - type: Transform pos: -39.5,-21.5 parent: 2 - - uid: 22803 + - uid: 25328 components: - type: Transform pos: 93.5,-37.5 parent: 2 - - uid: 22804 + - uid: 25329 components: - type: Transform pos: 94.5,-37.5 parent: 2 - - uid: 22805 + - uid: 25330 components: - type: Transform pos: 95.5,-37.5 parent: 2 - - uid: 22806 + - uid: 25331 components: - type: Transform pos: 96.5,-37.5 parent: 2 - - uid: 22807 + - uid: 25332 components: - type: Transform pos: 84.5,-35.5 parent: 2 - - uid: 22808 + - uid: 25333 components: - type: Transform pos: -25.5,-26.5 parent: 2 - - uid: 22809 + - uid: 25334 components: - type: Transform pos: 93.5,-25.5 parent: 2 - - uid: 22810 + - uid: 25335 components: - type: Transform pos: 94.5,-25.5 parent: 2 - - uid: 22811 + - uid: 25336 components: - type: Transform pos: 95.5,-25.5 parent: 2 - - uid: 22812 + - uid: 25337 components: - type: Transform pos: 96.5,-25.5 parent: 2 - - uid: 22813 + - uid: 25338 components: - type: Transform pos: 96.5,-19.5 parent: 2 - - uid: 22814 + - uid: 25339 components: - type: Transform pos: 95.5,-19.5 parent: 2 - - uid: 22815 + - uid: 25340 components: - type: Transform pos: 94.5,-19.5 parent: 2 - - uid: 22816 + - uid: 25341 components: - type: Transform pos: 93.5,-19.5 parent: 2 - - uid: 22817 + - uid: 25342 components: - type: Transform pos: 84.5,-34.5 parent: 2 - - uid: 22818 + - uid: 25343 components: - type: Transform pos: 84.5,-33.5 parent: 2 - - uid: 22819 + - uid: 25344 components: - type: Transform pos: 84.5,-32.5 parent: 2 - - uid: 22820 + - uid: 25345 components: - type: Transform pos: 84.5,-30.5 parent: 2 - - uid: 22821 + - uid: 25346 components: - type: Transform pos: 84.5,-29.5 parent: 2 - - uid: 22822 + - uid: 25347 components: - type: Transform pos: 84.5,-28.5 parent: 2 - - uid: 22823 + - uid: 25348 components: - type: Transform pos: 84.5,-27.5 parent: 2 - - uid: 22824 + - uid: 25349 components: - type: Transform pos: 87.5,-37.5 parent: 2 - - uid: 22825 + - uid: 25350 components: - type: Transform pos: 88.5,-37.5 parent: 2 - - uid: 22826 + - uid: 25351 components: - type: Transform pos: -25.5,-22.5 parent: 2 - - uid: 22827 + - uid: 25352 components: - type: Transform pos: 100.5,-37.5 parent: 2 - - uid: 22828 + - uid: 25353 components: - type: Transform pos: 101.5,-37.5 parent: 2 - - uid: 22829 + - uid: 25354 components: - type: Transform pos: 102.5,-37.5 parent: 2 - - uid: 22830 + - uid: 25355 components: - type: Transform pos: 88.5,-25.5 parent: 2 - - uid: 22831 + - uid: 25356 components: - type: Transform pos: 87.5,-25.5 parent: 2 - - uid: 22832 + - uid: 25357 components: - type: Transform pos: 86.5,-25.5 parent: 2 - - uid: 22833 + - uid: 25358 components: - type: Transform pos: 86.5,-19.5 parent: 2 - - uid: 22834 + - uid: 25359 components: - type: Transform pos: 87.5,-19.5 parent: 2 - - uid: 22835 + - uid: 25360 components: - type: Transform pos: 88.5,-19.5 parent: 2 - - uid: 22836 + - uid: 25361 components: - type: Transform pos: 100.5,-25.5 parent: 2 - - uid: 22837 + - uid: 25362 components: - type: Transform pos: 101.5,-25.5 parent: 2 - - uid: 22838 + - uid: 25363 components: - type: Transform pos: 102.5,-25.5 parent: 2 - - uid: 22839 + - uid: 25364 components: - type: Transform pos: 102.5,-19.5 parent: 2 - - uid: 22840 + - uid: 25365 components: - type: Transform pos: 101.5,-19.5 parent: 2 - - uid: 22841 + - uid: 25366 components: - type: Transform pos: 100.5,-19.5 parent: 2 - - uid: 22842 + - uid: 25367 components: - type: Transform pos: -25.5,-19.5 parent: 2 - - uid: 22845 + - uid: 25368 components: - type: Transform pos: 30.5,-48.5 parent: 2 - - uid: 22846 + - uid: 25369 components: - type: Transform pos: 30.5,-49.5 parent: 2 - - uid: 22847 + - uid: 25370 components: - type: Transform pos: 30.5,-50.5 parent: 2 - - uid: 22848 + - uid: 25371 components: - type: Transform pos: 24.5,-68.5 parent: 2 - - uid: 22849 + - uid: 25372 components: - type: Transform pos: 27.5,-54.5 parent: 2 - - uid: 22850 + - uid: 25373 components: - type: Transform pos: 27.5,-55.5 parent: 2 - - uid: 22851 + - uid: 25374 components: - type: Transform pos: 27.5,-56.5 parent: 2 - - uid: 22852 + - uid: 25375 components: - type: Transform pos: 27.5,-57.5 parent: 2 - - uid: 22853 + - uid: 25376 components: - type: Transform pos: 27.5,-61.5 parent: 2 - - uid: 22854 + - uid: 25377 components: - type: Transform pos: 27.5,-62.5 parent: 2 - - uid: 22855 + - uid: 25378 components: - type: Transform pos: 27.5,-63.5 parent: 2 - - uid: 22856 + - uid: 25379 components: - type: Transform pos: 27.5,-64.5 parent: 2 - - uid: 22857 + - uid: 25380 components: - type: Transform pos: 23.5,-68.5 parent: 2 - - uid: 22858 + - uid: 25381 components: - type: Transform pos: 22.5,-68.5 parent: 2 - - uid: 22859 + - uid: 25382 components: - type: Transform pos: 18.5,-70.5 parent: 2 - - uid: 22860 + - uid: 25383 components: - type: Transform pos: 17.5,-70.5 parent: 2 - - uid: 22861 + - uid: 25384 components: - type: Transform pos: 16.5,-70.5 parent: 2 - - uid: 22862 + - uid: 25385 components: - type: Transform pos: 13.5,-70.5 parent: 2 - - uid: 22863 + - uid: 25386 components: - type: Transform pos: 12.5,-70.5 parent: 2 - - uid: 22864 + - uid: 25387 components: - type: Transform pos: 11.5,-70.5 parent: 2 - - uid: 22865 + - uid: 25388 components: - type: Transform pos: -10.5,-70.5 parent: 2 - - uid: 22866 + - uid: 25389 components: - type: Transform pos: -11.5,-70.5 parent: 2 - - uid: 22867 + - uid: 25390 components: - type: Transform pos: -12.5,-70.5 parent: 2 - - uid: 22868 + - uid: 25391 components: - type: Transform pos: -15.5,-70.5 parent: 2 - - uid: 22869 + - uid: 25392 components: - type: Transform pos: -16.5,-70.5 parent: 2 - - uid: 22870 + - uid: 25393 components: - type: Transform pos: -17.5,-70.5 parent: 2 - - uid: 22871 + - uid: 25394 components: - type: Transform pos: -21.5,-68.5 parent: 2 - - uid: 22872 + - uid: 25395 components: - type: Transform pos: -22.5,-68.5 parent: 2 - - uid: 22873 + - uid: 25396 components: - type: Transform pos: -23.5,-68.5 parent: 2 - - uid: 22874 + - uid: 25397 components: - type: Transform pos: -26.5,-64.5 parent: 2 - - uid: 22875 + - uid: 25398 components: - type: Transform pos: -26.5,-63.5 parent: 2 - - uid: 22876 + - uid: 25399 components: - type: Transform pos: -26.5,-62.5 parent: 2 - - uid: 22877 + - uid: 25400 components: - type: Transform pos: -26.5,-61.5 parent: 2 - - uid: 22878 + - uid: 25401 components: - type: Transform pos: -26.5,-57.5 parent: 2 - - uid: 22879 + - uid: 25402 components: - type: Transform pos: -26.5,-56.5 parent: 2 - - uid: 22880 + - uid: 25403 components: - type: Transform pos: -26.5,-55.5 parent: 2 - - uid: 22881 + - uid: 25404 components: - type: Transform pos: -26.5,-54.5 parent: 2 - - uid: 22882 + - uid: 25405 components: - type: Transform pos: -29.5,-50.5 parent: 2 - - uid: 22883 + - uid: 25406 components: - type: Transform pos: -29.5,-49.5 parent: 2 - - uid: 22884 + - uid: 25407 components: - type: Transform pos: -29.5,-48.5 parent: 2 - - uid: 22885 + - uid: 25408 components: - type: Transform pos: -29.5,-47.5 parent: 2 - - uid: 22886 + - uid: 25409 components: - type: Transform pos: -29.5,-46.5 parent: 2 - - uid: 22887 + - uid: 25410 components: - type: Transform pos: -29.5,-40.5 parent: 2 - - uid: 22888 + - uid: 25411 components: - type: Transform pos: -29.5,-39.5 parent: 2 - - uid: 22889 + - uid: 25412 components: - type: Transform pos: -29.5,-38.5 parent: 2 - - uid: 22890 + - uid: 25413 components: - type: Transform pos: -29.5,-37.5 parent: 2 - - uid: 22891 + - uid: 25414 components: - type: Transform pos: -29.5,-36.5 parent: 2 - - uid: 22892 + - uid: 25415 components: - type: Transform pos: -26.5,-32.5 parent: 2 - - uid: 22893 + - uid: 25416 components: - type: Transform pos: -26.5,-31.5 parent: 2 - - uid: 22894 + - uid: 25417 components: - type: Transform pos: -26.5,-30.5 parent: 2 - - uid: 22895 + - uid: 25418 components: - type: Transform pos: -26.5,-29.5 parent: 2 - - uid: 22896 + - uid: 25419 components: - type: Transform pos: -26.5,-28.5 parent: 2 - - uid: 22897 + - uid: 25420 components: - type: Transform pos: -26.5,-24.5 parent: 2 - - uid: 22898 + - uid: 25421 components: - type: Transform pos: -26.5,-23.5 parent: 2 - - uid: 22899 + - uid: 25422 components: - type: Transform pos: -26.5,-22.5 parent: 2 - - uid: 22900 + - uid: 25423 components: - type: Transform pos: -26.5,-21.5 parent: 2 - - uid: 22901 + - uid: 25424 components: - type: Transform pos: -26.5,-17.5 parent: 2 - - uid: 22902 + - uid: 25425 components: - type: Transform pos: -26.5,-16.5 parent: 2 - - uid: 22903 + - uid: 25426 components: - type: Transform pos: -26.5,-15.5 parent: 2 - - uid: 22904 + - uid: 25427 components: - type: Transform pos: -26.5,-14.5 parent: 2 - - uid: 22905 + - uid: 25428 components: - type: Transform pos: -26.5,-13.5 parent: 2 - - uid: 22906 + - uid: 25429 components: - type: Transform pos: -24.5,-8.5 parent: 2 - - uid: 22907 + - uid: 25430 components: - type: Transform pos: -24.5,-7.5 parent: 2 - - uid: 22908 + - uid: 25431 components: - type: Transform pos: -23.5,-7.5 parent: 2 - - uid: 22909 + - uid: 25432 components: - type: Transform pos: -23.5,-6.5 parent: 2 - - uid: 22910 + - uid: 25433 components: - type: Transform pos: -22.5,-6.5 parent: 2 - - uid: 22911 + - uid: 25434 components: - type: Transform pos: -22.5,-5.5 parent: 2 - - uid: 22912 + - uid: 25435 components: - type: Transform pos: -21.5,-5.5 parent: 2 - - uid: 22913 + - uid: 25436 components: - type: Transform pos: 12.5,-1.5 parent: 2 - - uid: 22914 + - uid: 25437 components: - type: Transform pos: -21.5,-4.5 parent: 2 - - uid: 22915 + - uid: 25438 components: - type: Transform pos: -20.5,-4.5 parent: 2 - - uid: 22916 + - uid: 25439 components: - type: Transform pos: -20.5,-3.5 parent: 2 - - uid: 22917 + - uid: 25440 components: - type: Transform pos: -19.5,-3.5 parent: 2 - - uid: 22918 + - uid: 25441 components: - type: Transform pos: -14.5,-1.5 parent: 2 - - uid: 22919 + - uid: 25442 components: - type: Transform pos: -13.5,-1.5 parent: 2 - - uid: 22920 + - uid: 25443 components: - type: Transform pos: -12.5,-1.5 parent: 2 - - uid: 22921 + - uid: 25444 components: - type: Transform pos: -11.5,-1.5 parent: 2 - - uid: 22922 + - uid: 25445 components: - type: Transform pos: 13.5,-1.5 parent: 2 - - uid: 22923 + - uid: 25446 components: - type: Transform pos: 14.5,-1.5 parent: 2 - - uid: 22924 + - uid: 25447 components: - type: Transform pos: 15.5,-1.5 parent: 2 - - uid: 22925 + - uid: 25448 components: - type: Transform pos: 27.5,-21.5 parent: 2 - - uid: 22926 + - uid: 25449 components: - type: Transform pos: 20.5,-3.5 parent: 2 - - uid: 22927 + - uid: 25450 components: - type: Transform pos: 21.5,-3.5 parent: 2 - - uid: 22928 + - uid: 25451 components: - type: Transform pos: 21.5,-4.5 parent: 2 - - uid: 22929 + - uid: 25452 components: - type: Transform pos: 22.5,-4.5 parent: 2 - - uid: 22930 + - uid: 25453 components: - type: Transform pos: 22.5,-5.5 parent: 2 - - uid: 22931 + - uid: 25454 components: - type: Transform pos: 23.5,-5.5 parent: 2 - - uid: 22932 + - uid: 25455 components: - type: Transform pos: 23.5,-6.5 parent: 2 - - uid: 22933 + - uid: 25456 components: - type: Transform pos: 24.5,-6.5 parent: 2 - - uid: 22934 + - uid: 25457 components: - type: Transform pos: 24.5,-7.5 parent: 2 - - uid: 22935 + - uid: 25458 components: - type: Transform pos: 25.5,-7.5 parent: 2 - - uid: 22936 + - uid: 25459 components: - type: Transform pos: 25.5,-8.5 parent: 2 - - uid: 22937 + - uid: 25460 components: - type: Transform pos: 27.5,-13.5 parent: 2 - - uid: 22938 + - uid: 25461 components: - type: Transform pos: 27.5,-14.5 parent: 2 - - uid: 22939 + - uid: 25462 components: - type: Transform pos: 27.5,-15.5 parent: 2 - - uid: 22940 + - uid: 25463 components: - type: Transform pos: 27.5,-16.5 parent: 2 - - uid: 22941 + - uid: 25464 components: - type: Transform pos: 27.5,-17.5 parent: 2 - - uid: 22942 + - uid: 25465 components: - type: Transform pos: 27.5,-22.5 parent: 2 - - uid: 22943 + - uid: 25466 components: - type: Transform pos: 27.5,-23.5 parent: 2 - - uid: 22944 + - uid: 25467 components: - type: Transform pos: 27.5,-24.5 parent: 2 - - uid: 22945 + - uid: 25468 components: - type: Transform pos: 27.5,-27.5 parent: 2 - - uid: 22946 + - uid: 25469 components: - type: Transform pos: 27.5,-28.5 parent: 2 - - uid: 22947 + - uid: 25470 components: - type: Transform pos: 27.5,-29.5 parent: 2 - - uid: 22950 + - uid: 25471 components: - type: Transform pos: 57.5,-34.5 parent: 2 - - uid: 22951 + - uid: 25472 components: - type: Transform pos: 56.5,-34.5 parent: 2 - - uid: 22952 + - uid: 25473 components: - type: Transform pos: 55.5,-34.5 parent: 2 - - uid: 22953 + - uid: 25474 components: - type: Transform pos: 51.5,-34.5 parent: 2 - - uid: 22954 + - uid: 25475 components: - type: Transform pos: 50.5,-34.5 parent: 2 - - uid: 22955 + - uid: 25476 components: - type: Transform pos: 49.5,-34.5 parent: 2 - - uid: 22956 + - uid: 25477 components: - type: Transform pos: 46.5,-35.5 parent: 2 - - uid: 22957 + - uid: 25478 components: - type: Transform pos: 46.5,-36.5 parent: 2 - - uid: 22958 + - uid: 25479 components: - type: Transform pos: 46.5,-37.5 parent: 2 - - uid: 22959 + - uid: 25480 components: - type: Transform pos: 46.5,-40.5 parent: 2 - - uid: 22960 + - uid: 25481 components: - type: Transform pos: 46.5,-41.5 parent: 2 - - uid: 22961 + - uid: 25482 components: - type: Transform pos: 46.5,-42.5 parent: 2 - - uid: 22962 + - uid: 25483 components: - type: Transform pos: -73.5,-60.5 parent: 2 - - uid: 22963 + - uid: 25484 components: - type: Transform pos: -74.5,-60.5 parent: 2 - - uid: 22964 + - uid: 25485 components: - type: Transform pos: -72.5,-60.5 parent: 2 - - uid: 22965 + - uid: 25486 components: - type: Transform pos: -71.5,-60.5 parent: 2 - - uid: 22966 + - uid: 25487 components: - type: Transform pos: -70.5,-60.5 parent: 2 - - uid: 22967 + - uid: 25488 components: - type: Transform pos: -77.5,-63.5 parent: 2 - - uid: 22968 + - uid: 25489 components: - type: Transform pos: -77.5,-64.5 parent: 2 - - uid: 22969 + - uid: 25490 components: - type: Transform pos: -77.5,-65.5 parent: 2 - - uid: 22970 + - uid: 25491 components: - type: Transform pos: -77.5,-66.5 parent: 2 - - uid: 22971 + - uid: 25492 components: - type: Transform pos: -77.5,-67.5 parent: 2 - - uid: 22972 + - uid: 25493 components: - type: Transform pos: -74.5,-70.5 parent: 2 - - uid: 22973 + - uid: 25494 components: - type: Transform pos: -73.5,-70.5 parent: 2 - - uid: 22974 + - uid: 25495 components: - type: Transform pos: -72.5,-70.5 parent: 2 - - uid: 22975 + - uid: 25496 components: - type: Transform pos: -71.5,-70.5 parent: 2 - - uid: 22976 + - uid: 25497 components: - type: Transform pos: -70.5,-70.5 parent: 2 - - uid: 22977 + - uid: 25498 components: - type: Transform pos: 44.5,-86.5 parent: 2 - - uid: 22978 + - uid: 25499 components: - type: Transform pos: 44.5,-87.5 parent: 2 - - uid: 22979 + - uid: 25500 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-49.5 parent: 2 - - uid: 22980 + - uid: 25501 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-49.5 parent: 2 - - uid: 22981 + - uid: 25502 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-104.5 parent: 2 - - uid: 22982 + - uid: 25503 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-106.5 parent: 2 - - uid: 22983 + - uid: 25504 components: - type: Transform pos: -25.5,-21.5 parent: 2 - - uid: 22984 + - uid: 25505 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-106.5 parent: 2 - - uid: 22985 + - uid: 25506 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-106.5 parent: 2 - - uid: 22986 + - uid: 25507 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-106.5 parent: 2 - - uid: 22987 + - uid: 25508 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-106.5 parent: 2 - - uid: 22988 + - uid: 25509 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-50.5 parent: 2 - - uid: 22989 + - uid: 25510 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-50.5 parent: 2 - - uid: 22990 + - uid: 25511 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-50.5 parent: 2 - - uid: 22991 + - uid: 25512 components: - type: Transform pos: -25.5,-23.5 parent: 2 - - uid: 22992 + - uid: 25513 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-86.5 parent: 2 - - uid: 22993 + - uid: 25514 components: - type: Transform pos: -25.5,-24.5 parent: 2 - - uid: 22994 + - uid: 25515 components: - type: Transform pos: -28.5,-46.5 parent: 2 - - uid: 22995 + - uid: 25516 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-106.5 parent: 2 - - uid: 22996 + - uid: 25517 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-106.5 parent: 2 - - uid: 23000 + - uid: 25518 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-106.5 parent: 2 - - uid: 23002 + - uid: 25519 components: - type: Transform pos: -26.5,-35.5 parent: 2 - - uid: 23003 + - uid: 25520 components: - type: Transform pos: -27.5,-35.5 parent: 2 - - uid: 23004 + - uid: 25521 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-89.5 parent: 2 - - uid: 23005 + - uid: 25522 components: - type: Transform pos: -28.5,-36.5 parent: 2 - - uid: 23006 + - uid: 25523 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-92.5 parent: 2 - - uid: 23008 + - uid: 25524 components: - type: Transform pos: 35.5,-97.5 parent: 2 - - uid: 23009 + - uid: 25525 components: - type: Transform pos: -28.5,-37.5 parent: 2 - - uid: 23012 + - uid: 25526 components: - type: Transform pos: 26.5,-54.5 parent: 2 - - uid: 23017 + - uid: 25527 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-104.5 parent: 2 - - uid: 23018 + - uid: 25528 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-104.5 parent: 2 - - uid: 23019 + - uid: 25529 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-104.5 parent: 2 - - uid: 23020 + - uid: 25530 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-104.5 parent: 2 - - uid: 23021 + - uid: 25531 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-104.5 parent: 2 - - uid: 23022 + - uid: 25532 components: - type: Transform pos: 12.5,-2.5 parent: 2 - - uid: 23023 + - uid: 25533 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-49.5 parent: 2 - - uid: 23024 + - uid: 25534 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-87.5 parent: 2 - - uid: 23027 + - uid: 25535 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-60.5 parent: 2 - - uid: 23028 + - uid: 25536 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-46.5 parent: 2 - - uid: 23029 + - uid: 25537 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-47.5 parent: 2 - - uid: 23030 + - uid: 25538 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-46.5 parent: 2 - - uid: 23031 + - uid: 25539 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-48.5 parent: 2 - - uid: 23032 + - uid: 25540 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-45.5 parent: 2 - - uid: 23033 + - uid: 25541 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-99.5 parent: 2 - - uid: 23034 + - uid: 25542 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-87.5 parent: 2 - - uid: 23035 + - uid: 25543 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-96.5 parent: 2 - - uid: 23036 + - uid: 25544 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-85.5 parent: 2 - - uid: 23037 + - uid: 25545 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-90.5 parent: 2 - - uid: 23038 + - uid: 25546 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-93.5 parent: 2 - - uid: 23039 + - uid: 25547 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-93.5 parent: 2 - - uid: 23040 + - uid: 25548 components: - type: Transform pos: 35.5,-85.5 parent: 2 - - uid: 23041 + - uid: 25549 components: - type: Transform pos: 24.5,-10.5 parent: 2 - - uid: 23042 + - uid: 25550 components: - type: Transform pos: 26.5,-52.5 parent: 2 - - uid: 23043 + - uid: 25551 components: - type: Transform pos: 104.5,-19.5 parent: 2 - - uid: 23044 + - uid: 25552 components: - type: Transform pos: 105.5,-19.5 parent: 2 - - uid: 23045 + - uid: 25553 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-32.5 parent: 2 - - uid: 23046 + - uid: 25554 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 2 - - uid: 23050 + - uid: 25555 components: - type: Transform pos: 26.5,-72.5 parent: 2 - - uid: 23051 + - uid: 25556 components: - type: Transform pos: 27.5,-72.5 parent: 2 - - uid: 23053 + - uid: 25557 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-36.5 parent: 2 - - uid: 23054 + - uid: 25558 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-36.5 parent: 2 - - uid: 23055 + - uid: 25559 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-61.5 parent: 2 - - uid: 23056 + - uid: 25560 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-61.5 parent: 2 - - uid: 23057 + - uid: 25561 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-92.5 parent: 2 - - uid: 23058 + - uid: 25562 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-105.5 parent: 2 - - uid: 23059 + - uid: 25563 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-107.5 parent: 2 - - uid: 23063 + - uid: 25564 components: - type: Transform pos: 14.5,-104.5 parent: 2 - - uid: 23064 + - uid: 25565 components: - type: Transform pos: 13.5,-104.5 parent: 2 - - uid: 23065 + - uid: 25566 components: - type: Transform pos: 12.5,-104.5 parent: 2 - - uid: 23066 + - uid: 25567 components: - type: Transform pos: 17.5,-104.5 parent: 2 - - uid: 23067 + - uid: 25568 components: - type: Transform pos: 7.5,-104.5 parent: 2 - - uid: 23068 + - uid: 25569 components: - type: Transform pos: 6.5,-104.5 parent: 2 - - uid: 23069 + - uid: 25570 components: - type: Transform pos: 4.5,-101.5 parent: 2 - - uid: 23070 + - uid: 25571 components: - type: Transform pos: 4.5,-100.5 parent: 2 - - uid: 23071 + - uid: 25572 components: - type: Transform pos: 4.5,-99.5 parent: 2 - - uid: 23072 + - uid: 25573 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,24.5 parent: 2 - - uid: 23073 + - uid: 25574 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-45.5 parent: 2 - - uid: 23074 + - uid: 25575 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-45.5 parent: 2 - - uid: 23076 + - uid: 25576 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-106.5 parent: 2 - - uid: 23077 + - uid: 25577 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-107.5 parent: 2 - - uid: 23078 + - uid: 25578 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-107.5 parent: 2 - - uid: 23079 + - uid: 25579 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-107.5 parent: 2 - - uid: 23080 + - uid: 25580 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-106.5 parent: 2 - - uid: 23081 + - uid: 25581 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-106.5 parent: 2 - - uid: 23082 + - uid: 25582 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-106.5 parent: 2 - - uid: 23083 + - uid: 25583 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-107.5 parent: 2 - - uid: 23084 + - uid: 25584 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-104.5 parent: 2 - - uid: 23085 + - uid: 25585 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-102.5 parent: 2 - - uid: 23086 + - uid: 25586 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-102.5 parent: 2 - - uid: 23087 + - uid: 25587 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,14.5 parent: 2 - - uid: 23088 + - uid: 25588 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-13.5 parent: 2 - - uid: 23089 + - uid: 25589 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,14.5 parent: 2 - - uid: 23090 + - uid: 25590 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,14.5 parent: 2 - - uid: 23091 + - uid: 25591 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,18.5 parent: 2 - - uid: 23092 + - uid: 25592 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,17.5 parent: 2 - - uid: 23093 + - uid: 25593 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,16.5 parent: 2 - - uid: 23094 + - uid: 25594 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,15.5 parent: 2 - - uid: 23095 + - uid: 25595 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-29.5 parent: 2 - - uid: 23096 + - uid: 25596 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-80.5 parent: 2 - - uid: 23097 + - uid: 25597 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-80.5 parent: 2 - - uid: 23098 + - uid: 25598 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-80.5 parent: 2 - - uid: 23099 + - uid: 25599 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-80.5 parent: 2 - - uid: 23100 + - uid: 25600 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-46.5 parent: 2 - - uid: 23101 + - uid: 25601 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-46.5 parent: 2 - - uid: 23102 + - uid: 25602 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-46.5 parent: 2 - - uid: 23103 + - uid: 25603 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-46.5 parent: 2 - - uid: 23104 + - uid: 25604 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-69.5 parent: 2 - - uid: 23105 + - uid: 25605 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-69.5 parent: 2 - - uid: 23106 + - uid: 25606 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-78.5 parent: 2 - - uid: 23107 + - uid: 25607 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-77.5 parent: 2 - - uid: 23108 + - uid: 25608 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,-14.5 parent: 2 - - uid: 23109 + - uid: 25609 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-16.5 parent: 2 - - uid: 23110 + - uid: 25610 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-17.5 parent: 2 - - uid: 23113 + - uid: 25611 components: - type: Transform pos: 42.5,-27.5 parent: 2 - - uid: 23131 + - uid: 25612 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,27.5 parent: 2 - - uid: 23132 + - uid: 25613 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,27.5 parent: 2 - - uid: 23133 + - uid: 25614 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,28.5 parent: 2 - - uid: 23134 + - uid: 25615 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,28.5 parent: 2 - - uid: 23135 + - uid: 25616 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,28.5 parent: 2 - - uid: 23136 + - uid: 25617 components: - type: Transform pos: 21.5,29.5 parent: 2 - - uid: 23137 + - uid: 25618 components: - type: Transform pos: 20.5,28.5 parent: 2 - - uid: 23138 + - uid: 25619 components: - type: Transform pos: 21.5,28.5 parent: 2 - - uid: 23140 + - uid: 25620 components: - type: Transform pos: 9.5,30.5 parent: 2 - - uid: 23141 + - uid: 25621 components: - type: Transform pos: 8.5,30.5 parent: 2 - - uid: 23142 + - uid: 25622 components: - type: Transform pos: 10.5,29.5 parent: 2 - - uid: 23143 + - uid: 25623 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,32.5 parent: 2 - - uid: 23144 + - uid: 25624 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,32.5 parent: 2 - - uid: 23145 + - uid: 25625 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,31.5 parent: 2 - - uid: 23146 + - uid: 25626 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,32.5 parent: 2 - - uid: 23147 + - uid: 25627 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,31.5 parent: 2 - - uid: 23148 + - uid: 25628 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,32.5 parent: 2 - - uid: 23149 + - uid: 25629 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,31.5 parent: 2 - - uid: 23150 + - uid: 25630 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,31.5 parent: 2 - - uid: 23151 + - uid: 25631 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,30.5 parent: 2 - - uid: 23153 + - uid: 25632 components: - type: Transform pos: -12.5,29.5 parent: 2 - - uid: 23154 + - uid: 25633 components: - type: Transform pos: -13.5,28.5 parent: 2 - - uid: 23155 + - uid: 25634 components: - type: Transform pos: -14.5,27.5 parent: 2 - - uid: 23157 + - uid: 25635 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,21.5 parent: 2 - - uid: 23158 + - uid: 25636 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,21.5 parent: 2 - - uid: 23159 + - uid: 25637 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,22.5 parent: 2 - - uid: 23160 + - uid: 25638 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,21.5 parent: 2 - - uid: 23161 + - uid: 25639 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,21.5 parent: 2 - - uid: 23163 + - uid: 25640 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,22.5 parent: 2 - - uid: 23164 + - uid: 25641 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,19.5 parent: 2 - - uid: 23165 + - uid: 25642 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,18.5 parent: 2 - - uid: 23166 + - uid: 25643 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,17.5 parent: 2 - - uid: 23167 + - uid: 25644 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,16.5 parent: 2 - - uid: 23168 + - uid: 25645 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,15.5 parent: 2 - - uid: 23169 + - uid: 25646 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-33.5 parent: 2 - - uid: 23170 + - uid: 25647 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-76.5 parent: 2 - - uid: 23171 + - uid: 25648 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,-68.5 parent: 2 - - uid: 23172 + - uid: 25649 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-75.5 parent: 2 - - uid: 23173 + - uid: 25650 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-73.5 parent: 2 - - uid: 23174 + - uid: 25651 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-72.5 parent: 2 - - uid: 23175 + - uid: 25652 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,-69.5 parent: 2 - - uid: 23176 + - uid: 25653 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,-65.5 parent: 2 - - uid: 23177 + - uid: 25654 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,-64.5 parent: 2 - - uid: 23178 + - uid: 25655 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,-59.5 parent: 2 - - uid: 23179 + - uid: 25656 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,-58.5 parent: 2 - - uid: 23180 + - uid: 25657 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-56.5 parent: 2 - - uid: 23181 + - uid: 25658 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-54.5 parent: 2 - - uid: 23182 + - uid: 25659 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-91.5 parent: 2 - - uid: 23183 + - uid: 25660 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-92.5 parent: 2 - - uid: 23184 + - uid: 25661 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-94.5 parent: 2 - - uid: 23185 + - uid: 25662 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-95.5 parent: 2 - - uid: 23186 + - uid: 25663 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-99.5 parent: 2 - - uid: 23187 + - uid: 25664 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-100.5 parent: 2 - - uid: 23188 + - uid: 25665 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-101.5 parent: 2 - - uid: 23189 + - uid: 25666 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-102.5 parent: 2 - - uid: 23190 + - uid: 25667 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-103.5 parent: 2 - - uid: 23191 + - uid: 25668 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-109.5 parent: 2 - - uid: 23192 + - uid: 25669 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-110.5 parent: 2 - - uid: 23193 + - uid: 25670 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-109.5 parent: 2 - - uid: 23194 + - uid: 25671 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-106.5 parent: 2 - - uid: 23195 + - uid: 25672 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-107.5 parent: 2 - - uid: 23196 + - uid: 25673 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-113.5 parent: 2 - - uid: 23197 + - uid: 25674 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-114.5 parent: 2 - - uid: 23198 + - uid: 25675 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-114.5 parent: 2 - - uid: 23199 + - uid: 25676 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-114.5 parent: 2 - - uid: 23200 + - uid: 25677 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-114.5 parent: 2 - - uid: 23201 + - uid: 25678 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-114.5 parent: 2 - - uid: 23202 + - uid: 25679 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-114.5 parent: 2 - - uid: 23203 + - uid: 25680 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-114.5 parent: 2 - - uid: 23204 + - uid: 25681 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-114.5 parent: 2 - - uid: 23205 + - uid: 25682 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-114.5 parent: 2 - - uid: 23206 + - uid: 25683 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-114.5 parent: 2 - - uid: 23207 + - uid: 25684 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-114.5 parent: 2 - - uid: 23208 + - uid: 25685 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-112.5 parent: 2 - - uid: 23209 + - uid: 25686 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-111.5 parent: 2 - - uid: 23210 + - uid: 25687 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-108.5 parent: 2 - - uid: 23211 + - uid: 25688 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-107.5 parent: 2 - - uid: 23212 + - uid: 25689 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-106.5 parent: 2 - - uid: 23213 + - uid: 25690 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-105.5 parent: 2 - - uid: 23214 + - uid: 25691 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-102.5 parent: 2 - - uid: 23215 + - uid: 25692 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-99.5 parent: 2 - - uid: 23223 + - uid: 25693 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-104.5 parent: 2 - - uid: 23224 + - uid: 25694 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-95.5 parent: 2 - - uid: 23225 + - uid: 25695 components: - type: Transform pos: -51.5,-70.5 parent: 2 - - uid: 23226 + - uid: 25696 components: - type: Transform pos: -48.5,-70.5 parent: 2 - - uid: 23227 + - uid: 25697 components: - type: Transform pos: -47.5,-70.5 parent: 2 - - uid: 23228 + - uid: 25698 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,29.5 parent: 2 - - uid: 23229 + - uid: 25699 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-95.5 parent: 2 - - uid: 23230 + - uid: 25700 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-37.5 parent: 2 - - uid: 23232 + - uid: 25701 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,39.5 parent: 2 - - uid: 23235 + - uid: 25702 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-24.5 parent: 2 - - uid: 23236 + - uid: 25703 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,39.5 parent: 2 - - uid: 23238 + - uid: 25704 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-104.5 parent: 2 - - uid: 23240 + - uid: 25705 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-38.5 parent: 2 - - uid: 23241 + - uid: 25706 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-99.5 parent: 2 - - uid: 23242 + - uid: 25707 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-59.5 parent: 2 - - uid: 23243 + - uid: 25708 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,-70.5 parent: 2 - - uid: 23244 + - uid: 25709 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,-71.5 parent: 2 - - uid: 23245 + - uid: 25710 components: - type: Transform rot: 3.141592653589793 rad pos: 83.5,-72.5 parent: 2 - - uid: 23246 + - uid: 25711 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-104.5 parent: 2 - - uid: 23247 + - uid: 25712 components: - type: Transform pos: 35.5,-91.5 parent: 2 - - uid: 23250 + - uid: 25713 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-76.5 parent: 2 - - uid: 23251 + - uid: 25714 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-76.5 parent: 2 - - uid: 23252 + - uid: 25715 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,16.5 parent: 2 - - uid: 23253 + - uid: 25716 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,16.5 parent: 2 - - uid: 23254 + - uid: 25717 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,13.5 parent: 2 - - uid: 23255 + - uid: 25718 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,16.5 parent: 2 - - uid: 23256 + - uid: 25719 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,15.5 parent: 2 - - uid: 23257 + - uid: 25720 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-76.5 parent: 2 - - uid: 23258 + - uid: 25721 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-64.5 parent: 2 - - uid: 23259 + - uid: 25722 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-78.5 parent: 2 - - uid: 23261 + - uid: 25723 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-78.5 parent: 2 - - uid: 23262 + - uid: 25724 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-2.5 parent: 2 - - uid: 23263 + - uid: 25725 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-46.5 parent: 2 - - uid: 23268 + - uid: 25726 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-30.5 parent: 2 - - uid: 23270 + - uid: 25727 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-58.5 parent: 2 - - uid: 23271 + - uid: 25728 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-56.5 parent: 2 - - uid: 23272 + - uid: 25729 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-55.5 parent: 2 - - uid: 23273 + - uid: 25730 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-58.5 parent: 2 - - uid: 23274 + - uid: 25731 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-57.5 parent: 2 - - uid: 23276 + - uid: 25732 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-51.5 parent: 2 - - uid: 23279 + - uid: 25733 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-51.5 parent: 2 - - uid: 23280 + - uid: 25734 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-67.5 parent: 2 - - uid: 23281 + - uid: 25735 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-67.5 parent: 2 - - uid: 23282 + - uid: 25736 components: - type: Transform pos: -69.5,-76.5 parent: 2 - - uid: 23283 + - uid: 25737 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-73.5 parent: 2 - - uid: 23284 + - uid: 25738 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-98.5 parent: 2 - - uid: 23285 + - uid: 25739 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-96.5 parent: 2 - - uid: 23286 + - uid: 25740 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,9.5 parent: 2 - - uid: 23287 + - uid: 25741 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-97.5 parent: 2 - - uid: 23288 + - uid: 25742 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-51.5 parent: 2 - - uid: 23289 + - uid: 25743 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-46.5 parent: 2 - - uid: 23291 + - uid: 25744 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-51.5 parent: 2 - - uid: 23292 + - uid: 25745 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-51.5 parent: 2 - - uid: 23293 + - uid: 25746 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-68.5 parent: 2 - - uid: 23294 + - uid: 25747 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-68.5 parent: 2 - - uid: 23295 + - uid: 25748 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-68.5 parent: 2 - - uid: 23296 + - uid: 25749 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-68.5 parent: 2 - - uid: 23297 + - uid: 25750 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-68.5 parent: 2 - - uid: 23299 + - uid: 25751 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-65.5 parent: 2 - - uid: 23300 + - uid: 25752 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-63.5 parent: 2 - - uid: 23301 + - uid: 25753 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-7.5 parent: 2 - - uid: 23302 + - uid: 25754 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-33.5 parent: 2 - - uid: 23303 + - uid: 25755 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-34.5 parent: 2 - - uid: 23304 + - uid: 25756 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-28.5 parent: 2 - - uid: 23305 + - uid: 25757 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-28.5 parent: 2 - - uid: 23306 + - uid: 25758 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-27.5 parent: 2 - - uid: 23310 + - uid: 25759 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-58.5 parent: 2 - - uid: 23311 + - uid: 25760 components: - type: Transform pos: -69.5,-78.5 parent: 2 - - uid: 23312 + - uid: 25761 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,32.5 parent: 2 - - uid: 23313 + - uid: 25762 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-65.5 parent: 2 - - uid: 23314 + - uid: 25763 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-30.5 parent: 2 - - uid: 23315 + - uid: 25764 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-30.5 parent: 2 - - uid: 23316 + - uid: 25765 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-26.5 parent: 2 - - uid: 23317 + - uid: 25766 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-57.5 parent: 2 - - uid: 23318 + - uid: 25767 components: - type: Transform pos: -47.5,-37.5 parent: 2 - - uid: 23319 + - uid: 25768 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-68.5 parent: 2 - - uid: 23320 + - uid: 25769 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-68.5 parent: 2 - - uid: 23321 + - uid: 25770 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-68.5 parent: 2 - - uid: 23322 + - uid: 25771 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-73.5 parent: 2 - - uid: 23323 + - uid: 25772 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-68.5 parent: 2 - - uid: 23324 + - uid: 25773 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-68.5 parent: 2 - - uid: 23325 + - uid: 25774 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-75.5 parent: 2 - - uid: 23328 + - uid: 25775 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-38.5 parent: 2 - - uid: 23329 + - uid: 25776 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-39.5 parent: 2 - - uid: 23330 + - uid: 25777 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-34.5 parent: 2 - - uid: 23334 + - uid: 25778 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-66.5 parent: 2 - - uid: 23343 + - uid: 25779 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,-95.5 parent: 2 - - uid: 23344 + - uid: 25780 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-93.5 parent: 2 - - uid: 23348 + - uid: 25781 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-104.5 parent: 2 - - uid: 23351 + - uid: 25782 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-104.5 parent: 2 - - uid: 23352 + - uid: 25783 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-103.5 parent: 2 - - uid: 23353 + - uid: 25784 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-104.5 parent: 2 - - uid: 23354 + - uid: 25785 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-104.5 parent: 2 - - uid: 23355 + - uid: 25786 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-103.5 parent: 2 - - uid: 23356 + - uid: 25787 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-100.5 parent: 2 - - uid: 23357 + - uid: 25788 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-100.5 parent: 2 - - uid: 23358 + - uid: 25789 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-100.5 parent: 2 - - uid: 23359 + - uid: 25790 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-99.5 parent: 2 - - uid: 23360 + - uid: 25791 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-96.5 parent: 2 - - uid: 23361 + - uid: 25792 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-95.5 parent: 2 - - uid: 23362 + - uid: 25793 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-100.5 parent: 2 - - uid: 23363 + - uid: 25794 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-99.5 parent: 2 - - uid: 23364 + - uid: 25795 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-96.5 parent: 2 - - uid: 23365 + - uid: 25796 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-95.5 parent: 2 - - uid: 23366 + - uid: 25797 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-92.5 parent: 2 - - uid: 23367 + - uid: 25798 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-91.5 parent: 2 - - uid: 23368 + - uid: 25799 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-90.5 parent: 2 - - uid: 23369 + - uid: 25800 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-90.5 parent: 2 - - uid: 23370 + - uid: 25801 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-87.5 parent: 2 - - uid: 23371 + - uid: 25802 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-86.5 parent: 2 - - uid: 23372 + - uid: 25803 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-86.5 parent: 2 - - uid: 23373 + - uid: 25804 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-83.5 parent: 2 - - uid: 23374 + - uid: 25805 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-82.5 parent: 2 - - uid: 23375 + - uid: 25806 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-81.5 parent: 2 - - uid: 23376 + - uid: 25807 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-109.5 parent: 2 - - uid: 23377 + - uid: 25808 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-110.5 parent: 2 - - uid: 23378 + - uid: 25809 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-111.5 parent: 2 - - uid: 23379 + - uid: 25810 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-112.5 parent: 2 - - uid: 23380 + - uid: 25811 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-113.5 parent: 2 - - uid: 23381 + - uid: 25812 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-114.5 parent: 2 - - uid: 23382 + - uid: 25813 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-115.5 parent: 2 - - uid: 23383 + - uid: 25814 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-116.5 parent: 2 - - uid: 23384 + - uid: 25815 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-116.5 parent: 2 - - uid: 23385 + - uid: 25816 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-115.5 parent: 2 - - uid: 23386 + - uid: 25817 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-114.5 parent: 2 - - uid: 23387 + - uid: 25818 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-113.5 parent: 2 - - uid: 23388 + - uid: 25819 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-112.5 parent: 2 - - uid: 23389 + - uid: 25820 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-111.5 parent: 2 - - uid: 23390 + - uid: 25821 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-110.5 parent: 2 - - uid: 23391 + - uid: 25822 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-109.5 parent: 2 - - uid: 23392 + - uid: 25823 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-104.5 parent: 2 - - uid: 23393 + - uid: 25824 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,0.5 parent: 2 - - uid: 23394 + - uid: 25825 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,1.5 parent: 2 - - uid: 23395 + - uid: 25826 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,2.5 parent: 2 - - uid: 23396 + - uid: 25827 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,3.5 parent: 2 - - uid: 23397 + - uid: 25828 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,4.5 parent: 2 - - uid: 23398 + - uid: 25829 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,0.5 parent: 2 - - uid: 23399 + - uid: 25830 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,1.5 parent: 2 - - uid: 23400 + - uid: 25831 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,2.5 parent: 2 - - uid: 23401 + - uid: 25832 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,3.5 parent: 2 - - uid: 23402 + - uid: 25833 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,4.5 parent: 2 - - uid: 23403 + - uid: 25834 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,29.5 parent: 2 - - uid: 23404 + - uid: 25835 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,-0.5 parent: 2 - - uid: 23405 + - uid: 25836 components: - type: Transform rot: 3.141592653589793 rad pos: -92.5,2.5 parent: 2 - - uid: 23406 + - uid: 25837 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,26.5 parent: 2 - - uid: 23407 + - uid: 25838 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-109.5 parent: 2 - - uid: 23408 + - uid: 25839 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-110.5 parent: 2 - - uid: 23409 + - uid: 25840 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,20.5 parent: 2 - - uid: 23410 + - uid: 25841 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-110.5 parent: 2 - - uid: 23411 + - uid: 25842 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,13.5 parent: 2 - - uid: 23412 + - uid: 25843 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,18.5 parent: 2 - - uid: 23413 + - uid: 25844 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,17.5 parent: 2 - - uid: 23414 + - uid: 25845 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,12.5 parent: 2 - - uid: 23415 + - uid: 25846 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,15.5 parent: 2 - - uid: 23416 + - uid: 25847 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,9.5 parent: 2 - - uid: 23417 + - uid: 25848 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,7.5 parent: 2 - - uid: 23418 + - uid: 25849 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,5.5 parent: 2 - - uid: 23419 + - uid: 25850 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,5.5 parent: 2 - - uid: 23420 + - uid: 25851 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-1.5 parent: 2 - - uid: 23421 + - uid: 25852 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,18.5 parent: 2 - - uid: 23422 + - uid: 25853 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,-17.5 parent: 2 - - uid: 23423 + - uid: 25854 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,-15.5 parent: 2 - - uid: 23424 + - uid: 25855 components: - type: Transform rot: 3.141592653589793 rad pos: -92.5,-15.5 parent: 2 - - uid: 23425 + - uid: 25856 components: - type: Transform rot: 3.141592653589793 rad pos: -92.5,-14.5 parent: 2 - - uid: 23426 + - uid: 25857 components: - type: Transform rot: 3.141592653589793 rad pos: -93.5,-11.5 parent: 2 - - uid: 23427 + - uid: 25858 components: - type: Transform rot: 3.141592653589793 rad pos: -93.5,-10.5 parent: 2 - - uid: 23428 + - uid: 25859 components: - type: Transform rot: 3.141592653589793 rad pos: -93.5,-7.5 parent: 2 - - uid: 23429 + - uid: 25860 components: - type: Transform rot: 3.141592653589793 rad pos: -93.5,-6.5 parent: 2 - - uid: 23430 + - uid: 25861 components: - type: Transform rot: 3.141592653589793 rad pos: -93.5,-5.5 parent: 2 - - uid: 23431 + - uid: 25862 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-4.5 parent: 2 - - uid: 23432 + - uid: 25863 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-17.5 parent: 2 - - uid: 23433 + - uid: 25864 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-17.5 parent: 2 - - uid: 23434 + - uid: 25865 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-17.5 parent: 2 - - uid: 23435 + - uid: 25866 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-114.5 parent: 2 - - uid: 23436 + - uid: 25867 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-111.5 parent: 2 - - uid: 23437 + - uid: 25868 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-111.5 parent: 2 - - uid: 23438 + - uid: 25869 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-112.5 parent: 2 - - uid: 23439 + - uid: 25870 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-115.5 parent: 2 - - uid: 23440 + - uid: 25871 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-124.5 parent: 2 - - uid: 23441 + - uid: 25872 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-124.5 parent: 2 - - uid: 23442 + - uid: 25873 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-124.5 parent: 2 - - uid: 23443 + - uid: 25874 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-126.5 parent: 2 - - uid: 23444 + - uid: 25875 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-125.5 parent: 2 - - uid: 23445 + - uid: 25876 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-124.5 parent: 2 - - uid: 23446 + - uid: 25877 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-124.5 parent: 2 - - uid: 23447 + - uid: 25878 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-124.5 parent: 2 - - uid: 23448 + - uid: 25879 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-124.5 parent: 2 - - uid: 23449 + - uid: 25880 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-125.5 parent: 2 - - uid: 23450 + - uid: 25881 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-128.5 parent: 2 - - uid: 23451 + - uid: 25882 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-126.5 parent: 2 - - uid: 23452 + - uid: 25883 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-126.5 parent: 2 - - uid: 23453 + - uid: 25884 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-125.5 parent: 2 - - uid: 23454 + - uid: 25885 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-128.5 parent: 2 - - uid: 23455 + - uid: 25886 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-127.5 parent: 2 - - uid: 23456 + - uid: 25887 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-128.5 parent: 2 - - uid: 23457 + - uid: 25888 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-127.5 parent: 2 - - uid: 23458 + - uid: 25889 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-127.5 parent: 2 - - uid: 23459 + - uid: 25890 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-126.5 parent: 2 - - uid: 23460 + - uid: 25891 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-125.5 parent: 2 - - uid: 23461 + - uid: 25892 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-123.5 parent: 2 - - uid: 23462 + - uid: 25893 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-123.5 parent: 2 - - uid: 23463 + - uid: 25894 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-122.5 parent: 2 - - uid: 23464 + - uid: 25895 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-120.5 parent: 2 - - uid: 23465 + - uid: 25896 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-120.5 parent: 2 - - uid: 23466 + - uid: 25897 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-118.5 parent: 2 - - uid: 23467 + - uid: 25898 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-117.5 parent: 2 - - uid: 23468 + - uid: 25899 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-114.5 parent: 2 - - uid: 23469 + - uid: 25900 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-112.5 parent: 2 - - uid: 23470 + - uid: 25901 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-110.5 parent: 2 - - uid: 23471 + - uid: 25902 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-110.5 parent: 2 - - uid: 23472 + - uid: 25903 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-109.5 parent: 2 - - uid: 23473 + - uid: 25904 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-106.5 parent: 2 - - uid: 23474 + - uid: 25905 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-107.5 parent: 2 - - uid: 23475 + - uid: 25906 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-106.5 parent: 2 - - uid: 23476 + - uid: 25907 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-97.5 parent: 2 - - uid: 23477 + - uid: 25908 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,-97.5 parent: 2 - - uid: 23478 + - uid: 25909 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,-96.5 parent: 2 - - uid: 23479 + - uid: 25910 components: - type: Transform rot: 3.141592653589793 rad pos: 100.5,-97.5 parent: 2 - - uid: 23480 + - uid: 25911 components: - type: Transform rot: 3.141592653589793 rad pos: 102.5,-96.5 parent: 2 - - uid: 23481 + - uid: 25912 components: - type: Transform rot: 3.141592653589793 rad pos: 102.5,-95.5 parent: 2 - - uid: 23482 + - uid: 25913 components: - type: Transform rot: 3.141592653589793 rad pos: 93.5,-94.5 parent: 2 - - uid: 23483 + - uid: 25914 components: - type: Transform rot: 3.141592653589793 rad pos: 94.5,-94.5 parent: 2 - - uid: 23484 + - uid: 25915 components: - type: Transform rot: 3.141592653589793 rad pos: 103.5,-93.5 parent: 2 - - uid: 23485 + - uid: 25916 components: - type: Transform rot: 3.141592653589793 rad pos: 94.5,-96.5 parent: 2 - - uid: 23486 + - uid: 25917 components: - type: Transform rot: 3.141592653589793 rad pos: 83.5,-81.5 parent: 2 - - uid: 23487 + - uid: 25918 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,-87.5 parent: 2 - - uid: 23488 + - uid: 25919 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,-83.5 parent: 2 - - uid: 23489 + - uid: 25920 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,-84.5 parent: 2 - - uid: 23490 + - uid: 25921 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,-85.5 parent: 2 - - uid: 23491 + - uid: 25922 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,-88.5 parent: 2 - - uid: 23492 + - uid: 25923 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,-89.5 parent: 2 - - uid: 23493 + - uid: 25924 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-93.5 parent: 2 - - uid: 23494 + - uid: 25925 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-92.5 parent: 2 - - uid: 23495 + - uid: 25926 components: - type: Transform rot: 3.141592653589793 rad pos: 105.5,-93.5 parent: 2 - - uid: 23496 + - uid: 25927 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,-93.5 parent: 2 - - uid: 23497 + - uid: 25928 components: - type: Transform rot: 3.141592653589793 rad pos: 106.5,-93.5 parent: 2 - - uid: 23498 + - uid: 25929 components: - type: Transform rot: 3.141592653589793 rad pos: 106.5,-92.5 parent: 2 - - uid: 23499 + - uid: 25930 components: - type: Transform rot: 3.141592653589793 rad pos: 108.5,-85.5 parent: 2 - - uid: 23500 + - uid: 25931 components: - type: Transform rot: 3.141592653589793 rad pos: 107.5,-89.5 parent: 2 - - uid: 23501 + - uid: 25932 components: - type: Transform rot: 3.141592653589793 rad pos: 107.5,-88.5 parent: 2 - - uid: 23502 + - uid: 25933 components: - type: Transform rot: 3.141592653589793 rad pos: 107.5,-85.5 parent: 2 - - uid: 23503 + - uid: 25934 components: - type: Transform rot: 3.141592653589793 rad pos: 107.5,-86.5 parent: 2 - - uid: 23504 + - uid: 25935 components: - type: Transform rot: 3.141592653589793 rad pos: 110.5,-77.5 parent: 2 - - uid: 23505 + - uid: 25936 components: - type: Transform rot: 3.141592653589793 rad pos: 109.5,-83.5 parent: 2 - - uid: 23506 + - uid: 25937 components: - type: Transform rot: 3.141592653589793 rad pos: 110.5,-81.5 parent: 2 - - uid: 23507 + - uid: 25938 components: - type: Transform rot: 3.141592653589793 rad pos: 110.5,-80.5 parent: 2 - - uid: 23508 + - uid: 25939 components: - type: Transform rot: 3.141592653589793 rad pos: 109.5,-76.5 parent: 2 - - uid: 23509 + - uid: 25940 components: - type: Transform rot: 3.141592653589793 rad pos: 110.5,-76.5 parent: 2 - - uid: 23510 + - uid: 25941 components: - type: Transform rot: 3.141592653589793 rad pos: 109.5,-74.5 parent: 2 - - uid: 23511 + - uid: 25942 components: - type: Transform rot: 3.141592653589793 rad pos: 110.5,-72.5 parent: 2 - - uid: 23512 + - uid: 25943 components: - type: Transform rot: 3.141592653589793 rad pos: 110.5,-71.5 parent: 2 - - uid: 23513 + - uid: 25944 components: - type: Transform rot: 3.141592653589793 rad pos: 110.5,-68.5 parent: 2 - - uid: 23514 + - uid: 25945 components: - type: Transform rot: 3.141592653589793 rad pos: 110.5,-67.5 parent: 2 - - uid: 23515 + - uid: 25946 components: - type: Transform rot: 3.141592653589793 rad pos: 109.5,-66.5 parent: 2 - - uid: 23516 + - uid: 25947 components: - type: Transform rot: 3.141592653589793 rad pos: 109.5,-63.5 parent: 2 - - uid: 23517 + - uid: 25948 components: - type: Transform rot: 3.141592653589793 rad pos: 108.5,-62.5 parent: 2 - - uid: 23518 + - uid: 25949 components: - type: Transform rot: 3.141592653589793 rad pos: 107.5,-62.5 parent: 2 - - uid: 23519 + - uid: 25950 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-26.5 parent: 2 - - uid: 23521 + - uid: 25951 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-90.5 parent: 2 - - uid: 23522 + - uid: 25952 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-90.5 parent: 2 - - uid: 23523 + - uid: 25953 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,36.5 parent: 2 - - uid: 23524 + - uid: 25954 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,34.5 parent: 2 - - uid: 23525 + - uid: 25955 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,31.5 parent: 2 - - uid: 23526 + - uid: 25956 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,33.5 parent: 2 - - uid: 23527 + - uid: 25957 components: - type: Transform rot: 3.141592653589793 rad pos: 112.5,-52.5 parent: 2 - - uid: 23528 + - uid: 25958 components: - type: Transform rot: 3.141592653589793 rad pos: 114.5,-50.5 parent: 2 - - uid: 23529 + - uid: 25959 components: - type: Transform rot: 3.141592653589793 rad pos: 114.5,-49.5 parent: 2 - - uid: 23530 + - uid: 25960 components: - type: Transform rot: 3.141592653589793 rad pos: 115.5,-43.5 parent: 2 - - uid: 23531 + - uid: 25961 components: - type: Transform rot: 3.141592653589793 rad pos: 115.5,-44.5 parent: 2 - - uid: 23532 + - uid: 25962 components: - type: Transform rot: 3.141592653589793 rad pos: 115.5,-47.5 parent: 2 - - uid: 23537 + - uid: 25963 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-35.5 parent: 2 - - uid: 23540 + - uid: 25964 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-14.5 parent: 2 - - uid: 23541 + - uid: 25965 components: - type: Transform rot: 3.141592653589793 rad pos: -92.5,-18.5 parent: 2 - - uid: 23542 + - uid: 25966 components: - type: Transform rot: 3.141592653589793 rad pos: -92.5,-19.5 parent: 2 - - uid: 23543 + - uid: 25967 components: - type: Transform rot: 3.141592653589793 rad pos: -92.5,-23.5 parent: 2 - - uid: 23544 + - uid: 25968 components: - type: Transform rot: 3.141592653589793 rad pos: -92.5,-24.5 parent: 2 - - uid: 23545 + - uid: 25969 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-28.5 parent: 2 - - uid: 23546 + - uid: 25970 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-27.5 parent: 2 - - uid: 23547 + - uid: 25971 components: - type: Transform rot: 3.141592653589793 rad pos: -92.5,-21.5 parent: 2 - - uid: 23548 + - uid: 25972 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,-23.5 parent: 2 - - uid: 23549 + - uid: 25973 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-2.5 parent: 2 - - uid: 23550 + - uid: 25974 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-4.5 parent: 2 - - uid: 23551 + - uid: 25975 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-0.5 parent: 2 - - uid: 23552 + - uid: 25976 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,1.5 parent: 2 - - uid: 23553 + - uid: 25977 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,0.5 parent: 2 - - uid: 23554 + - uid: 25978 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-24.5 parent: 2 - - uid: 23555 + - uid: 25979 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-24.5 parent: 2 - - uid: 23556 + - uid: 25980 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-77.5 parent: 2 - - uid: 23557 + - uid: 25981 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-77.5 parent: 2 - - uid: 23558 + - uid: 25982 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,31.5 parent: 2 - - uid: 23559 + - uid: 25983 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,22.5 parent: 2 - - uid: 23560 + - uid: 25984 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,23.5 parent: 2 - - uid: 23561 + - uid: 25985 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,26.5 parent: 2 - - uid: 23562 + - uid: 25986 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,30.5 parent: 2 - - uid: 23563 + - uid: 25987 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,31.5 parent: 2 - - uid: 23564 + - uid: 25988 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,22.5 parent: 2 - - uid: 23565 + - uid: 25989 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,32.5 parent: 2 - - uid: 23566 + - uid: 25990 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,32.5 parent: 2 - - uid: 23567 + - uid: 25991 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,30.5 parent: 2 - - uid: 23568 + - uid: 25992 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,28.5 parent: 2 - - uid: 23569 + - uid: 25993 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,26.5 parent: 2 - - uid: 23570 + - uid: 25994 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,26.5 parent: 2 - - uid: 23571 + - uid: 25995 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,23.5 parent: 2 - - uid: 23572 + - uid: 25996 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-109.5 parent: 2 - - uid: 23573 + - uid: 25997 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-109.5 parent: 2 - - uid: 23574 + - uid: 25998 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-107.5 parent: 2 - - uid: 23575 + - uid: 25999 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-107.5 parent: 2 - - uid: 23576 + - uid: 26000 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-75.5 parent: 2 - - uid: 23577 + - uid: 26001 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-75.5 parent: 2 - - uid: 23578 + - uid: 26002 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-75.5 parent: 2 - - uid: 23579 + - uid: 26003 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-74.5 parent: 2 - - uid: 23580 + - uid: 26004 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-74.5 parent: 2 - - uid: 23581 + - uid: 26005 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-89.5 parent: 2 - - uid: 23582 + - uid: 26006 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-99.5 parent: 2 - - uid: 23583 + - uid: 26007 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-99.5 parent: 2 - - uid: 23584 + - uid: 26008 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-98.5 parent: 2 - - uid: 23585 + - uid: 26009 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-98.5 parent: 2 - - uid: 23586 + - uid: 26010 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-98.5 parent: 2 - - uid: 23587 + - uid: 26011 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-98.5 parent: 2 - - uid: 23588 + - uid: 26012 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-98.5 parent: 2 - - uid: 23589 + - uid: 26013 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-96.5 parent: 2 - - uid: 23590 + - uid: 26014 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-95.5 parent: 2 - - uid: 23591 + - uid: 26015 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-98.5 parent: 2 - - uid: 23592 + - uid: 26016 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-92.5 parent: 2 - - uid: 23593 + - uid: 26017 components: - type: Transform rot: 3.141592653589793 rad pos: 83.5,-96.5 parent: 2 - - uid: 23594 + - uid: 26018 components: - type: Transform rot: 3.141592653589793 rad pos: 83.5,-95.5 parent: 2 - - uid: 23595 + - uid: 26019 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-93.5 parent: 2 - - uid: 23596 + - uid: 26020 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-92.5 parent: 2 - - uid: 23597 + - uid: 26021 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-90.5 parent: 2 - - uid: 23598 + - uid: 26022 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,-90.5 parent: 2 - - uid: 23599 + - uid: 26023 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-91.5 parent: 2 - - uid: 23600 + - uid: 26024 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-89.5 parent: 2 - - uid: 23601 + - uid: 26025 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-89.5 parent: 2 - - uid: 23602 + - uid: 26026 components: - type: Transform pos: 56.5,-91.5 parent: 2 - - uid: 23603 + - uid: 26027 components: - type: Transform pos: 56.5,-90.5 parent: 2 - - uid: 23604 + - uid: 26028 components: - type: Transform pos: 56.5,-89.5 parent: 2 - - uid: 23605 + - uid: 26029 components: - type: Transform pos: 56.5,-88.5 parent: 2 - - uid: 23606 + - uid: 26030 components: - type: Transform pos: -37.5,-35.5 parent: 2 - - uid: 23997 + - uid: 26031 components: - type: Transform pos: -14.5,-10.5 parent: 2 - - uid: 24013 + - uid: 26032 components: - type: Transform pos: -13.5,-10.5 parent: 2 - - uid: 24577 + - uid: 26033 components: - type: Transform pos: 74.5,-6.5 parent: 2 - - uid: 24664 + - uid: 26034 components: - type: Transform pos: -12.5,-10.5 parent: 2 - - uid: 24713 + - uid: 26035 components: - type: Transform pos: -18.5,-12.5 parent: 2 - - uid: 24732 + - uid: 26036 components: - type: Transform pos: -18.5,-13.5 parent: 2 - - uid: 24758 + - uid: 26037 components: - type: Transform pos: 45.5,-5.5 parent: 2 - - uid: 24767 + - uid: 26038 components: - type: Transform pos: -18.5,-14.5 parent: 2 - - uid: 24779 + - uid: 26039 components: - type: Transform pos: -18.5,-15.5 parent: 2 - - uid: 24781 + - uid: 26040 components: - type: Transform pos: -18.5,-16.5 parent: 2 - - uid: 26822 + - uid: 26041 components: - type: Transform pos: 90.5,-3.5 parent: 2 - - uid: 26823 + - uid: 26042 components: - type: Transform pos: 90.5,-4.5 parent: 2 - - uid: 26824 + - uid: 26043 components: - type: Transform pos: 90.5,-6.5 parent: 2 - - uid: 26832 + - uid: 26044 components: - type: Transform pos: 90.5,-7.5 parent: 2 - - uid: 26851 + - uid: 26045 components: - type: Transform pos: 90.5,-5.5 parent: 2 - - uid: 27797 + - uid: 26046 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,9.5 parent: 2 - - uid: 28704 + - uid: 26047 components: - type: Transform pos: 4.5,-112.5 parent: 2 - - uid: 28968 + - uid: 26048 components: - type: Transform pos: 62.5,-6.5 parent: 2 - - uid: 28969 + - uid: 26049 components: - type: Transform pos: 64.5,-6.5 parent: 2 - - uid: 29379 + - uid: 26050 components: - type: Transform pos: 77.5,-0.5 parent: 2 - - uid: 29380 + - uid: 26051 components: - type: Transform pos: 79.5,-0.5 parent: 2 - - uid: 29381 + - uid: 26052 components: - type: Transform pos: 81.5,-0.5 parent: 2 - - uid: 29382 + - uid: 26053 components: - type: Transform pos: 83.5,-0.5 parent: 2 - - uid: 29386 + - uid: 26054 components: - type: Transform pos: 85.5,-0.5 parent: 2 - - uid: 29387 + - uid: 26055 components: - type: Transform pos: 87.5,-0.5 parent: 2 - - uid: 30508 + - uid: 26056 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,11.5 parent: 2 - - uid: 33740 + - uid: 26057 components: - type: Transform pos: -37.5,20.5 parent: 2 - - uid: 34209 + - uid: 26058 components: - type: Transform pos: -95.5,-9.5 parent: 2 - - uid: 34259 + - uid: 26059 components: - type: Transform rot: 1.5707963267948966 rad pos: -97.5,-9.5 parent: 2 - - uid: 34263 + - uid: 26060 components: - type: Transform rot: 1.5707963267948966 rad pos: -96.5,-9.5 parent: 2 - - uid: 34649 + - uid: 26061 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,22.5 parent: 2 - - uid: 34865 + - uid: 26062 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,24.5 parent: 2 - - uid: 34866 + - uid: 26063 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,23.5 parent: 2 - - uid: 34868 + - uid: 26064 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,24.5 parent: 2 - - uid: 34870 + - uid: 26065 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,24.5 parent: 2 - - uid: 34872 + - uid: 26066 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,24.5 parent: 2 - - uid: 35093 + - uid: 26067 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,27.5 parent: 2 - - uid: 35910 + - uid: 26068 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,27.5 parent: 2 - - uid: 35962 + - uid: 26069 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,14.5 parent: 2 - - uid: 36917 + - uid: 26070 components: - type: Transform pos: 46.5,-11.5 parent: 2 - - uid: 37355 + - uid: 26071 components: - type: Transform pos: 56.5,-80.5 parent: 2 - - uid: 37356 + - uid: 26072 components: - type: Transform pos: 56.5,-82.5 parent: 2 - - uid: 37364 + - uid: 26073 components: - type: Transform pos: 59.5,-82.5 parent: 2 - - uid: 37373 + - uid: 26074 components: - type: Transform pos: 59.5,-80.5 parent: 2 - - uid: 37803 + - uid: 26075 components: - type: Transform pos: 93.5,-5.5 parent: 2 - - uid: 37835 + - uid: 26076 components: - type: Transform pos: 52.5,-6.5 parent: 2 - - uid: 37879 + - uid: 26077 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,14.5 parent: 2 - - uid: 37880 + - uid: 26078 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,14.5 parent: 2 - - uid: 37881 + - uid: 26079 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,14.5 parent: 2 - - uid: 37882 + - uid: 26080 components: - type: Transform rot: -1.5707963267948966 rad pos: 76.5,14.5 parent: 2 - - uid: 37883 + - uid: 26081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,13.5 + parent: 2 + - uid: 26082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,13.5 + parent: 2 + - uid: 26083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,10.5 + parent: 2 + - uid: 26084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,13.5 + parent: 2 + - uid: 26085 + components: + - type: Transform + pos: 4.5,-113.5 + parent: 2 + - uid: 26086 + components: + - type: Transform + pos: 7.5,-112.5 + parent: 2 + - uid: 26087 + components: + - type: Transform + pos: 7.5,-111.5 + parent: 2 + - uid: 26088 + components: + - type: Transform + pos: 4.5,-109.5 + parent: 2 + - uid: 26089 + components: + - type: Transform + pos: 11.5,-111.5 + parent: 2 + - uid: 26090 + components: + - type: Transform + pos: 13.5,-110.5 + parent: 2 + - uid: 26091 + components: + - type: Transform + pos: 12.5,-111.5 + parent: 2 + - uid: 26092 + components: + - type: Transform + pos: 15.5,-113.5 + parent: 2 + - uid: 26093 + components: + - type: Transform + pos: 17.5,-113.5 + parent: 2 + - uid: 26094 + components: + - type: Transform + pos: 15.5,-109.5 + parent: 2 + - uid: 26095 + components: + - type: Transform + pos: 16.5,-109.5 + parent: 2 + - uid: 26096 + components: + - type: Transform + pos: 8.5,-109.5 + parent: 2 + - uid: 26097 + components: + - type: Transform + pos: 9.5,-109.5 + parent: 2 + - uid: 26098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 82.5,12.5 + parent: 2 + - uid: 26099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,9.5 + parent: 2 + - uid: 26100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 84.5,10.5 + parent: 2 + - uid: 26101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,10.5 + parent: 2 + - uid: 26102 + components: + - type: Transform + pos: 85.5,5.5 + parent: 2 + - uid: 26103 + components: + - type: Transform + pos: 86.5,5.5 + parent: 2 + - uid: 26104 + components: + - type: Transform + pos: 93.5,-6.5 + parent: 2 + - uid: 26105 + components: + - type: Transform + pos: 93.5,-2.5 + parent: 2 + - uid: 26106 + components: + - type: Transform + pos: 92.5,-0.5 + parent: 2 + - uid: 26107 + components: + - type: Transform + pos: 90.5,2.5 + parent: 2 + - uid: 26108 + components: + - type: Transform + pos: 87.5,4.5 + parent: 2 + - uid: 26109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 117.5,-37.5 + parent: 2 + - uid: 26110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 118.5,-37.5 + parent: 2 + - uid: 26111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 119.5,-37.5 + parent: 2 + - uid: 26112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 120.5,-37.5 + parent: 2 + - uid: 26113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 117.5,-41.5 + parent: 2 + - uid: 26114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 118.5,-41.5 + parent: 2 + - uid: 26115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 119.5,-41.5 + parent: 2 + - uid: 26116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 120.5,-41.5 + parent: 2 + - uid: 26117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 124.5,-37.5 + parent: 2 + - uid: 26118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 125.5,-37.5 + parent: 2 + - uid: 26119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 126.5,-37.5 + parent: 2 + - uid: 26120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 127.5,-37.5 + parent: 2 + - uid: 26121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 124.5,-41.5 + parent: 2 + - uid: 26122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 125.5,-41.5 + parent: 2 + - uid: 26123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 126.5,-41.5 + parent: 2 + - uid: 26124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 127.5,-41.5 + parent: 2 + - uid: 26125 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - uid: 26126 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 26127 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 26128 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 40747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 40666 + - uid: 40748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 40666 + - uid: 40749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 40666 + - uid: 40750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 40666 + - uid: 40751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 40666 + - uid: 40752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,13.5 - parent: 2 - - uid: 38307 + pos: 4.5,2.5 + parent: 40666 + - uid: 40753 + components: + - type: Transform + pos: -3.5,2.5 + parent: 40666 + - uid: 41253 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-15.5 - parent: 37887 - - uid: 38308 + parent: 40828 + - uid: 41254 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-14.5 - parent: 37887 - - uid: 38309 + parent: 40828 + - uid: 41255 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-13.5 - parent: 37887 - - uid: 38310 + parent: 40828 + - uid: 41256 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-13.5 - parent: 37887 - - uid: 38311 + parent: 40828 + - uid: 41257 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-12.5 - parent: 37887 - - uid: 38312 + parent: 40828 + - uid: 41258 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-15.5 - parent: 37887 - - uid: 38313 + parent: 40828 + - uid: 41259 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-11.5 - parent: 37887 - - uid: 38314 + parent: 40828 + - uid: 41260 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-10.5 - parent: 37887 - - uid: 38315 + parent: 40828 + - uid: 41261 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-10.5 - parent: 37887 - - uid: 38316 + parent: 40828 + - uid: 41262 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-9.5 - parent: 37887 - - uid: 38317 + parent: 40828 + - uid: 41263 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-8.5 - parent: 37887 - - uid: 38318 + parent: 40828 + - uid: 41264 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-14.5 - parent: 37887 - - uid: 38319 + parent: 40828 + - uid: 41265 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-9.5 - parent: 37887 - - uid: 38320 + parent: 40828 + - uid: 41266 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-8.5 - parent: 37887 - - uid: 38321 + parent: 40828 + - uid: 41267 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-2.5 - parent: 37887 - - uid: 38322 + parent: 40828 + - uid: 41268 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-0.5 - parent: 37887 - - uid: 38323 + parent: 40828 + - uid: 41269 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-4.5 - parent: 37887 - - uid: 38324 + parent: 40828 + - uid: 41270 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-5.5 - parent: 37887 - - uid: 38325 + parent: 40828 + - uid: 41271 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-6.5 - parent: 37887 - - uid: 38326 + parent: 40828 + - uid: 41272 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-7.5 - parent: 37887 - - uid: 38327 + parent: 40828 + - uid: 41273 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-10.5 - parent: 37887 - - uid: 38328 + parent: 40828 + - uid: 41274 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-11.5 - parent: 37887 - - uid: 38329 + parent: 40828 + - uid: 41275 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-12.5 - parent: 37887 - - uid: 38330 + parent: 40828 + - uid: 41276 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-13.5 - parent: 37887 - - uid: 38331 + parent: 40828 + - uid: 41277 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-15.5 - parent: 37887 - - uid: 38332 + parent: 40828 + - uid: 41278 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-15.5 - parent: 37887 - - uid: 38333 + parent: 40828 + - uid: 41279 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-15.5 - parent: 37887 - - uid: 38334 + parent: 40828 + - uid: 41280 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-14.5 - parent: 37887 - - uid: 38335 + parent: 40828 + - uid: 41281 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-14.5 - parent: 37887 - - uid: 38336 + parent: 40828 + - uid: 41282 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-14.5 - parent: 37887 - - uid: 38337 + parent: 40828 + - uid: 41283 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-15.5 - parent: 37887 - - uid: 38338 + parent: 40828 + - uid: 41284 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-15.5 - parent: 37887 - - uid: 38339 + parent: 40828 + - uid: 41285 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-15.5 - parent: 37887 - - uid: 38340 + parent: 40828 + - uid: 41286 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-13.5 - parent: 37887 - - uid: 38341 + parent: 40828 + - uid: 41287 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-12.5 - parent: 37887 - - uid: 38342 + parent: 40828 + - uid: 41288 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-11.5 - parent: 37887 - - uid: 38343 + parent: 40828 + - uid: 41289 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-10.5 - parent: 37887 - - uid: 38344 + parent: 40828 + - uid: 41290 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-7.5 - parent: 37887 - - uid: 38345 + parent: 40828 + - uid: 41291 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-6.5 - parent: 37887 - - uid: 38346 + parent: 40828 + - uid: 41292 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-5.5 - parent: 37887 - - uid: 38347 + parent: 40828 + - uid: 41293 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-4.5 - parent: 37887 - - uid: 38348 + parent: 40828 + - uid: 41294 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-1.5 - parent: 37887 - - uid: 38349 + parent: 40828 + - uid: 41295 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 - parent: 37887 - - uid: 38350 + parent: 40828 + - uid: 41296 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-1.5 - parent: 37887 - - uid: 38351 + parent: 40828 + - uid: 41297 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-2.5 - parent: 37887 - - uid: 38352 + parent: 40828 + - uid: 41298 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-1.5 - parent: 37887 - - uid: 38353 + parent: 40828 + - uid: 41299 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-0.5 - parent: 37887 - - uid: 38354 + parent: 40828 + - uid: 41300 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,10.5 - parent: 37887 - - uid: 38355 + parent: 40828 + - uid: 41301 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,2.5 - parent: 37887 - - uid: 38356 + parent: 40828 + - uid: 41302 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,3.5 - parent: 37887 - - uid: 38357 + parent: 40828 + - uid: 41303 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,6.5 - parent: 37887 - - uid: 38358 + parent: 40828 + - uid: 41304 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,7.5 - parent: 37887 - - uid: 38359 + parent: 40828 + - uid: 41305 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,8.5 - parent: 37887 - - uid: 38360 + parent: 40828 + - uid: 41306 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,10.5 - parent: 37887 - - uid: 38361 + parent: 40828 + - uid: 41307 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,8.5 - parent: 37887 - - uid: 38362 + parent: 40828 + - uid: 41308 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,7.5 - parent: 37887 - - uid: 38363 + parent: 40828 + - uid: 41309 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,6.5 - parent: 37887 - - uid: 38364 + parent: 40828 + - uid: 41310 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,3.5 - parent: 37887 - - uid: 38365 + parent: 40828 + - uid: 41311 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,2.5 - parent: 37887 - - uid: 38366 + parent: 40828 + - uid: 41312 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-10.5 - parent: 37887 - - uid: 38367 + parent: 40828 + - uid: 41313 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-11.5 - parent: 37887 - - uid: 38368 + parent: 40828 + - uid: 41314 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-13.5 - parent: 37887 - - uid: 38369 + parent: 40828 + - uid: 41315 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-13.5 - parent: 37887 - - uid: 38370 + parent: 40828 + - uid: 41316 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-12.5 - parent: 37887 - - uid: 38371 + parent: 40828 + - uid: 41317 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-10.5 - parent: 37887 - - uid: 38882 + parent: 40828 + - uid: 41828 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,3.5 - parent: 38722 - - uid: 38883 + parent: 41669 + - uid: 41829 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,3.5 - parent: 38722 - - uid: 38884 + parent: 41669 + - uid: 41830 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,4.5 - parent: 38722 - - uid: 38885 + parent: 41669 + - uid: 41831 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 - parent: 38722 - - uid: 38886 + parent: 41669 + - uid: 41832 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,5.5 - parent: 38722 - - uid: 38887 + parent: 41669 + - uid: 41833 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,5.5 - parent: 38722 - - uid: 38888 + parent: 41669 + - uid: 41834 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,4.5 - parent: 38722 - - uid: 39506 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,13.5 - parent: 2 - - uid: 39564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,10.5 - parent: 2 - - uid: 39565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,13.5 - parent: 2 - - uid: 39998 - components: - - type: Transform - pos: 4.5,-113.5 - parent: 2 - - uid: 40000 - components: - - type: Transform - pos: 7.5,-112.5 - parent: 2 - - uid: 40001 - components: - - type: Transform - pos: 7.5,-111.5 - parent: 2 - - uid: 40002 - components: - - type: Transform - pos: 4.5,-109.5 - parent: 2 - - uid: 40079 - components: - - type: Transform - pos: 11.5,-111.5 - parent: 2 - - uid: 40080 - components: - - type: Transform - pos: 13.5,-110.5 - parent: 2 - - uid: 40082 - components: - - type: Transform - pos: 12.5,-111.5 - parent: 2 - - uid: 40085 - components: - - type: Transform - pos: 15.5,-113.5 - parent: 2 - - uid: 40086 - components: - - type: Transform - pos: 17.5,-113.5 - parent: 2 - - uid: 40087 - components: - - type: Transform - pos: 15.5,-109.5 - parent: 2 - - uid: 40093 - components: - - type: Transform - pos: 16.5,-109.5 - parent: 2 - - uid: 40094 - components: - - type: Transform - pos: 8.5,-109.5 - parent: 2 - - uid: 40095 - components: - - type: Transform - pos: 9.5,-109.5 - parent: 2 - - uid: 40169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,12.5 - parent: 2 - - uid: 40170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,9.5 - parent: 2 - - uid: 40171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,10.5 - parent: 2 - - uid: 40173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,10.5 - parent: 2 - - uid: 40177 - components: - - type: Transform - pos: 85.5,5.5 - parent: 2 - - uid: 40178 - components: - - type: Transform - pos: 86.5,5.5 - parent: 2 - - uid: 40189 - components: - - type: Transform - pos: 93.5,-6.5 - parent: 2 - - uid: 40191 - components: - - type: Transform - pos: 93.5,-2.5 - parent: 2 - - uid: 40192 - components: - - type: Transform - pos: 92.5,-0.5 - parent: 2 - - uid: 40193 - components: - - type: Transform - pos: 90.5,2.5 - parent: 2 - - uid: 40194 - components: - - type: Transform - pos: 87.5,4.5 - parent: 2 - - uid: 40817 - components: - - type: Transform - pos: 4.5,2.5 - parent: 21045 - - uid: 40818 - components: - - type: Transform - pos: -3.5,2.5 - parent: 21045 - - uid: 40839 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 117.5,-37.5 - parent: 2 - - uid: 40840 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 118.5,-37.5 - parent: 2 - - uid: 40841 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 119.5,-37.5 - parent: 2 - - uid: 40842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 120.5,-37.5 - parent: 2 - - uid: 40843 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 117.5,-41.5 - parent: 2 - - uid: 40844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 118.5,-41.5 - parent: 2 - - uid: 40845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 119.5,-41.5 - parent: 2 - - uid: 40846 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 120.5,-41.5 - parent: 2 - - uid: 40848 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 124.5,-37.5 - parent: 2 - - uid: 40849 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 125.5,-37.5 - parent: 2 - - uid: 40850 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 126.5,-37.5 - parent: 2 - - uid: 40851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 127.5,-37.5 - parent: 2 - - uid: 40852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 124.5,-41.5 - parent: 2 - - uid: 40853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 125.5,-41.5 - parent: 2 - - uid: 40854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 126.5,-41.5 - parent: 2 - - uid: 40855 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 127.5,-41.5 - parent: 2 + parent: 41669 - proto: GrilleBroken entities: - - uid: 23607 + - uid: 26129 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-91.5 parent: 2 - - uid: 23608 + - uid: 26130 components: - type: Transform pos: 63.5,-91.5 parent: 2 - - uid: 23609 + - uid: 26131 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,-72.5 parent: 2 - - uid: 23610 + - uid: 26132 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,28.5 parent: 2 - - uid: 23611 + - uid: 26133 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-69.5 parent: 2 - - uid: 23612 + - uid: 26134 components: - type: Transform pos: 85.5,-69.5 parent: 2 - - uid: 23613 + - uid: 26135 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-75.5 parent: 2 - - uid: 23614 + - uid: 26136 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-75.5 parent: 2 - - uid: 23615 + - uid: 26137 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-104.5 parent: 2 - - uid: 23616 + - uid: 26138 components: - type: Transform pos: 57.5,-106.5 parent: 2 - - uid: 23617 + - uid: 26139 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,0.5 parent: 2 - - uid: 23618 + - uid: 26140 components: - type: Transform pos: -56.5,0.5 parent: 2 - - uid: 23619 + - uid: 26141 components: - type: Transform pos: -56.5,-2.5 parent: 2 - - uid: 23620 + - uid: 26142 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-1.5 parent: 2 - - uid: 23621 + - uid: 26143 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-107.5 parent: 2 - - uid: 23622 + - uid: 26144 components: - type: Transform pos: 11.5,-107.5 parent: 2 - - uid: 23623 + - uid: 26145 components: - type: Transform pos: 13.5,-107.5 parent: 2 - - uid: 23624 + - uid: 26146 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-107.5 parent: 2 - - uid: 23625 + - uid: 26147 components: - type: Transform pos: -2.5,-102.5 parent: 2 - - uid: 23626 + - uid: 26148 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-106.5 parent: 2 - - uid: 23627 + - uid: 26149 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-102.5 parent: 2 - - uid: 23628 + - uid: 26150 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-106.5 parent: 2 - - uid: 23629 + - uid: 26151 components: - type: Transform pos: 81.5,-76.5 parent: 2 - - uid: 23630 + - uid: 26152 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-78.5 parent: 2 - - uid: 23644 + - uid: 26153 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,30.5 parent: 2 - - uid: 23645 + - uid: 26154 components: - type: Transform pos: 10.5,30.5 parent: 2 - - uid: 23646 + - uid: 26155 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,32.5 parent: 2 - - uid: 23647 + - uid: 26156 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,32.5 parent: 2 - - uid: 23648 + - uid: 26157 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,31.5 parent: 2 - - uid: 23649 + - uid: 26158 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,31.5 parent: 2 - - uid: 23650 + - uid: 26159 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,28.5 parent: 2 - - uid: 23651 + - uid: 26160 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,28.5 parent: 2 - - uid: 23652 + - uid: 26161 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,21.5 parent: 2 - - uid: 23653 + - uid: 26162 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,21.5 parent: 2 - - uid: 23654 + - uid: 26163 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,21.5 parent: 2 - - uid: 23655 + - uid: 26164 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,17.5 parent: 2 - - uid: 23656 + - uid: 26165 components: - type: Transform pos: -81.5,-35.5 parent: 2 - - uid: 23657 + - uid: 26166 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-35.5 parent: 2 - - uid: 23658 + - uid: 26167 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-34.5 parent: 2 - - uid: 23659 + - uid: 26168 components: - type: Transform pos: -76.5,-79.5 parent: 2 - - uid: 23660 + - uid: 26169 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-78.5 parent: 2 - - uid: 23661 + - uid: 26170 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-79.5 parent: 2 - - uid: 23662 + - uid: 26171 components: - type: Transform pos: -83.5,-63.5 parent: 2 - - uid: 23663 + - uid: 26172 components: - type: Transform pos: -81.5,-55.5 parent: 2 - - uid: 23664 + - uid: 26173 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,-70.5 parent: 2 - - uid: 23665 + - uid: 26174 components: - type: Transform pos: -81.5,-71.5 parent: 2 - - uid: 23666 + - uid: 26175 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-71.5 parent: 2 - - uid: 23667 + - uid: 26176 components: - type: Transform pos: -82.5,-67.5 parent: 2 - - uid: 23668 + - uid: 26177 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,-63.5 parent: 2 - - uid: 23669 + - uid: 26178 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,-60.5 parent: 2 - - uid: 23670 + - uid: 26179 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,-61.5 parent: 2 - - uid: 23671 + - uid: 26180 components: - type: Transform rot: -1.5707963267948966 rad pos: -82.5,-58.5 parent: 2 - - uid: 23672 + - uid: 26181 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,-58.5 parent: 2 - - uid: 23673 + - uid: 26182 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-57.5 parent: 2 - - uid: 23674 + - uid: 26183 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-55.5 parent: 2 - - uid: 23675 + - uid: 26184 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-104.5 parent: 2 - - uid: 23676 + - uid: 26185 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-93.5 parent: 2 - - uid: 23677 + - uid: 26186 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-96.5 parent: 2 - - uid: 23678 + - uid: 26187 components: - type: Transform pos: 27.5,-98.5 parent: 2 - - uid: 23679 + - uid: 26188 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-110.5 parent: 2 - - uid: 23680 + - uid: 26189 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-110.5 parent: 2 - - uid: 23681 + - uid: 26190 components: - type: Transform pos: 27.5,-105.5 parent: 2 - - uid: 23682 + - uid: 26191 components: - type: Transform pos: 28.5,-106.5 parent: 2 - - uid: 23683 + - uid: 26192 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-106.5 parent: 2 - - uid: 23684 + - uid: 26193 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-108.5 parent: 2 - - uid: 23685 + - uid: 26194 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-112.5 parent: 2 - - uid: 23686 + - uid: 26195 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-110.5 parent: 2 - - uid: 23687 + - uid: 26196 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-108.5 parent: 2 - - uid: 23688 + - uid: 26197 components: - type: Transform pos: 55.5,-108.5 parent: 2 - - uid: 23689 + - uid: 26198 components: - type: Transform pos: 53.5,-110.5 parent: 2 - - uid: 23690 + - uid: 26199 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-112.5 parent: 2 - - uid: 23691 + - uid: 26200 components: - type: Transform pos: 49.5,-113.5 parent: 2 - - uid: 23692 + - uid: 26201 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-113.5 parent: 2 - - uid: 23693 + - uid: 26202 components: - type: Transform pos: 51.5,-113.5 parent: 2 - - uid: 23694 + - uid: 26203 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-110.5 parent: 2 - - uid: 23695 + - uid: 26204 components: - type: Transform pos: 56.5,-106.5 parent: 2 - - uid: 23696 + - uid: 26205 components: - type: Transform pos: 30.5,-112.5 parent: 2 - - uid: 23697 + - uid: 26206 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-114.5 parent: 2 - - uid: 23698 + - uid: 26207 components: - type: Transform pos: 32.5,-114.5 parent: 2 - - uid: 23699 + - uid: 26208 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-114.5 parent: 2 - - uid: 23700 + - uid: 26209 components: - type: Transform pos: 38.5,-114.5 parent: 2 - - uid: 23701 + - uid: 26210 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-114.5 parent: 2 - - uid: 23702 + - uid: 26211 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-114.5 parent: 2 - - uid: 23703 + - uid: 26212 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-114.5 parent: 2 - - uid: 23704 + - uid: 26213 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-114.5 parent: 2 - - uid: 23705 + - uid: 26214 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-93.5 parent: 2 - - uid: 23706 + - uid: 26215 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-112.5 parent: 2 - - uid: 23707 + - uid: 26216 components: - type: Transform pos: 27.5,-90.5 parent: 2 - - uid: 23708 + - uid: 26217 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-90.5 parent: 2 - - uid: 23709 + - uid: 26218 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,27.5 parent: 2 - - uid: 23713 + - uid: 26219 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,28.5 parent: 2 - - uid: 23714 + - uid: 26220 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,-68.5 parent: 2 - - uid: 23715 + - uid: 26221 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,15.5 parent: 2 - - uid: 23716 + - uid: 26222 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,16.5 parent: 2 - - uid: 23717 + - uid: 26223 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,16.5 parent: 2 - - uid: 23718 + - uid: 26224 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,15.5 parent: 2 - - uid: 23719 + - uid: 26225 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,15.5 parent: 2 - - uid: 23721 + - uid: 26226 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,-95.5 parent: 2 - - uid: 23722 + - uid: 26227 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-94.5 parent: 2 - - uid: 23723 + - uid: 26228 components: - type: Transform pos: -75.5,-81.5 parent: 2 - - uid: 23724 + - uid: 26229 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-88.5 parent: 2 - - uid: 23725 + - uid: 26230 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-97.5 parent: 2 - - uid: 23726 + - uid: 26231 components: - type: Transform pos: -74.5,-102.5 parent: 2 - - uid: 23727 + - uid: 26232 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-100.5 parent: 2 - - uid: 23728 + - uid: 26233 components: - type: Transform pos: -60.5,-94.5 parent: 2 - - uid: 23729 + - uid: 26234 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-94.5 parent: 2 - - uid: 23730 + - uid: 26235 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-94.5 parent: 2 - - uid: 23731 + - uid: 26236 components: - type: Transform pos: -93.5,-0.5 parent: 2 - - uid: 23732 + - uid: 26237 components: - type: Transform rot: 1.5707963267948966 rad pos: -92.5,-0.5 parent: 2 - - uid: 23733 + - uid: 26238 components: - type: Transform pos: -92.5,-0.5 parent: 2 - - uid: 23734 + - uid: 26239 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,-0.5 parent: 2 - - uid: 23735 + - uid: 26240 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,19.5 parent: 2 - - uid: 23736 + - uid: 26241 components: - type: Transform pos: -89.5,19.5 parent: 2 - - uid: 23737 + - uid: 26242 components: - type: Transform rot: -1.5707963267948966 rad pos: -89.5,19.5 parent: 2 - - uid: 23738 + - uid: 26243 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,11.5 parent: 2 - - uid: 23739 + - uid: 26244 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,18.5 parent: 2 - - uid: 23740 + - uid: 26245 components: - type: Transform rot: -1.5707963267948966 rad pos: -90.5,-15.5 parent: 2 - - uid: 23741 + - uid: 26246 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,-8.5 parent: 2 - - uid: 23742 + - uid: 26247 components: - type: Transform rot: 3.141592653589793 rad pos: -93.5,-8.5 parent: 2 - - uid: 23743 + - uid: 26248 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-116.5 parent: 2 - - uid: 23744 + - uid: 26249 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-126.5 parent: 2 - - uid: 23745 + - uid: 26250 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-126.5 parent: 2 - - uid: 23746 + - uid: 26251 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-124.5 parent: 2 - - uid: 23747 + - uid: 26252 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-125.5 parent: 2 - - uid: 23748 + - uid: 26253 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-128.5 parent: 2 - - uid: 23749 + - uid: 26254 components: - type: Transform rot: 1.5707963267948966 rad pos: 95.5,-96.5 parent: 2 - - uid: 23750 + - uid: 26255 components: - type: Transform rot: -1.5707963267948966 rad pos: 109.5,-62.5 parent: 2 - - uid: 23751 + - uid: 26256 components: - type: Transform pos: 109.5,-62.5 parent: 2 - - uid: 23752 + - uid: 26257 components: - type: Transform pos: 109.5,-65.5 parent: 2 - - uid: 23753 + - uid: 26258 components: - type: Transform rot: 1.5707963267948966 rad pos: 109.5,-65.5 parent: 2 - - uid: 23754 + - uid: 26259 components: - type: Transform rot: 3.141592653589793 rad pos: 110.5,-69.5 parent: 2 - - uid: 23755 + - uid: 26260 components: - type: Transform rot: 3.141592653589793 rad pos: 109.5,-75.5 parent: 2 - - uid: 23756 + - uid: 26261 components: - type: Transform pos: 109.5,-75.5 parent: 2 - - uid: 23757 + - uid: 26262 components: - type: Transform rot: -1.5707963267948966 rad pos: 109.5,-75.5 parent: 2 - - uid: 23758 + - uid: 26263 components: - type: Transform rot: 3.141592653589793 rad pos: 109.5,-84.5 parent: 2 - - uid: 23759 + - uid: 26264 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-93.5 parent: 2 - - uid: 23760 + - uid: 26265 components: - type: Transform rot: 1.5707963267948966 rad pos: 104.5,-93.5 parent: 2 - - uid: 23761 + - uid: 26266 components: - type: Transform rot: 1.5707963267948966 rad pos: 99.5,-97.5 parent: 2 - - uid: 23762 + - uid: 26267 components: - type: Transform pos: 99.5,-97.5 parent: 2 - - uid: 23763 + - uid: 26268 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-96.5 parent: 2 - - uid: 23764 + - uid: 26269 components: - type: Transform pos: 89.5,-86.5 parent: 2 - - uid: 23765 + - uid: 26270 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-82.5 parent: 2 - - uid: 23766 + - uid: 26271 components: - type: Transform pos: 87.5,-82.5 parent: 2 - - uid: 23767 + - uid: 26272 components: - type: Transform pos: 86.5,-82.5 parent: 2 - - uid: 23768 + - uid: 26273 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,35.5 parent: 2 - - uid: 23769 + - uid: 26274 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,30.5 parent: 2 - - uid: 23770 + - uid: 26275 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,34.5 parent: 2 - - uid: 23771 + - uid: 26276 components: - type: Transform rot: 3.141592653589793 rad pos: 111.5,-37.5 parent: 2 - - uid: 23774 + - uid: 26277 components: - type: Transform rot: 3.141592653589793 rad pos: 115.5,-45.5 parent: 2 - - uid: 23775 + - uid: 26278 components: - type: Transform pos: 115.5,-46.5 parent: 2 - - uid: 23776 + - uid: 26279 components: - type: Transform pos: 114.5,-48.5 parent: 2 - - uid: 23777 + - uid: 26280 components: - type: Transform pos: 112.5,-51.5 parent: 2 - - uid: 23778 + - uid: 26281 components: - type: Transform pos: -90.5,-26.5 parent: 2 - - uid: 23779 + - uid: 26282 components: - type: Transform pos: -92.5,-20.5 parent: 2 - - uid: 23780 + - uid: 26283 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,-24.5 parent: 2 - - uid: 23781 + - uid: 26284 components: - type: Transform pos: -76.5,24.5 parent: 2 - - uid: 23782 + - uid: 26285 components: - type: Transform pos: -88.5,24.5 parent: 2 - - uid: 23783 + - uid: 26286 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,26.5 parent: 2 - - uid: 23784 + - uid: 26287 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,27.5 parent: 2 - - uid: 23785 + - uid: 26288 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,29.5 parent: 2 - - uid: 23786 + - uid: 26289 components: - type: Transform rot: 1.5707963267948966 rad pos: -83.5,32.5 parent: 2 - - uid: 23787 + - uid: 26290 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-93.5 parent: 2 - - uid: 23788 + - uid: 26291 components: - type: Transform pos: 69.5,-94.5 parent: 2 - - uid: 23789 + - uid: 26292 components: - type: Transform rot: 3.141592653589793 rad pos: 83.5,-97.5 parent: 2 - - uid: 23790 + - uid: 26293 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-99.5 parent: 2 - - uid: 23791 + - uid: 26294 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-99.5 parent: 2 - - uid: 23792 + - uid: 26295 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-98.5 parent: 2 - - uid: 23793 + - uid: 26296 components: - type: Transform pos: 84.5,-91.5 parent: 2 - - uid: 23794 + - uid: 26297 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-90.5 parent: 2 - - uid: 23795 + - uid: 26298 components: - type: Transform pos: 90.5,-91.5 parent: 2 - - uid: 35906 + - uid: 26299 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,27.5 parent: 2 - - uid: 40172 + - uid: 26300 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,13.5 parent: 2 - - uid: 40174 + - uid: 26301 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,10.5 parent: 2 - - uid: 40195 + - uid: 26302 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,1.5 parent: 2 - - uid: 40197 + - uid: 26303 components: - type: Transform pos: 93.5,-3.5 parent: 2 - - uid: 40198 + - uid: 26304 components: - type: Transform rot: 3.141592653589793 rad @@ -180489,582 +183817,582 @@ entities: parent: 2 - proto: GrilleDiagonal entities: - - uid: 21076 - components: - - type: Transform - pos: -0.5,5.5 - parent: 21045 - - uid: 21077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 21045 - - uid: 23800 + - uid: 26305 components: - type: Transform pos: -11.5,25.5 parent: 2 - - uid: 23801 + - uid: 26306 components: - type: Transform pos: -10.5,26.5 parent: 2 - - uid: 23802 + - uid: 26307 components: - type: Transform pos: -6.5,27.5 parent: 2 - - uid: 23803 + - uid: 26308 components: - type: Transform pos: -3.5,28.5 parent: 2 - - uid: 23804 + - uid: 26309 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,28.5 parent: 2 - - uid: 23805 + - uid: 26310 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,27.5 parent: 2 - - uid: 23806 + - uid: 26311 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,26.5 parent: 2 - - uid: 23807 + - uid: 26312 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,25.5 parent: 2 - - uid: 23808 + - uid: 26313 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,-0.5 parent: 2 - - uid: 34873 + - uid: 26314 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,24.5 parent: 2 - - uid: 34898 + - uid: 26315 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,23.5 parent: 2 - - uid: 38889 + - uid: 40754 + components: + - type: Transform + pos: -0.5,5.5 + parent: 40666 + - uid: 40755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 40666 + - uid: 41835 components: - type: Transform pos: 2.5,5.5 - parent: 38722 - - uid: 38890 + parent: 41669 + - uid: 41836 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,5.5 - parent: 38722 + parent: 41669 - proto: GrilleSpawner entities: - - uid: 23809 + - uid: 26316 components: - type: Transform pos: -46.5,-73.5 parent: 2 - - uid: 23810 + - uid: 26317 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-95.5 parent: 2 - - uid: 23811 + - uid: 26318 components: - type: Transform pos: 24.5,33.5 parent: 2 - - uid: 23812 + - uid: 26319 components: - type: Transform rot: -1.5707963267948966 rad pos: 62.5,-95.5 parent: 2 - - uid: 23813 + - uid: 26320 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-96.5 parent: 2 - - uid: 23814 + - uid: 26321 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-97.5 parent: 2 - - uid: 23815 + - uid: 26322 components: - type: Transform pos: 58.5,-45.5 parent: 2 - - uid: 23816 + - uid: 26323 components: - type: Transform pos: 59.5,-45.5 parent: 2 - - uid: 23817 + - uid: 26324 components: - type: Transform pos: 64.5,-86.5 parent: 2 - - uid: 23818 + - uid: 26325 components: - type: Transform pos: -59.5,-89.5 parent: 2 - - uid: 23819 + - uid: 26326 components: - type: Transform pos: -60.5,-91.5 parent: 2 - - uid: 23820 + - uid: 26327 components: - type: Transform pos: 2.5,-103.5 parent: 2 - - uid: 23821 + - uid: 26328 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-106.5 parent: 2 - - uid: 23822 + - uid: 26329 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-106.5 parent: 2 - - uid: 23823 + - uid: 26330 components: - type: Transform pos: 2.5,-106.5 parent: 2 - - uid: 23824 + - uid: 26331 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-46.5 parent: 2 - - uid: 23825 + - uid: 26332 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,13.5 parent: 2 - - uid: 23826 + - uid: 26333 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,13.5 parent: 2 - - uid: 23827 + - uid: 26334 components: - type: Transform pos: -58.5,-0.5 parent: 2 - - uid: 23828 + - uid: 26335 components: - type: Transform pos: -58.5,-1.5 parent: 2 - - uid: 23829 + - uid: 26336 components: - type: Transform pos: -58.5,-2.5 parent: 2 - - uid: 23830 + - uid: 26337 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-61.5 parent: 2 - - uid: 23831 + - uid: 26338 components: - type: Transform pos: -51.5,-93.5 parent: 2 - - uid: 23832 + - uid: 26339 components: - type: Transform pos: 11.5,-107.5 parent: 2 - - uid: 23833 + - uid: 26340 components: - type: Transform pos: -47.5,19.5 parent: 2 - - uid: 23834 + - uid: 26341 components: - type: Transform pos: -45.5,19.5 parent: 2 - - uid: 23835 + - uid: 26342 components: - type: Transform pos: 0.5,-102.5 parent: 2 - - uid: 23836 + - uid: 26343 components: - type: Transform pos: -46.5,19.5 parent: 2 - - uid: 23837 + - uid: 26344 components: - type: Transform pos: -52.5,20.5 parent: 2 - - uid: 23838 + - uid: 26345 components: - type: Transform pos: -42.5,21.5 parent: 2 - - uid: 23839 + - uid: 26346 components: - type: Transform pos: -50.5,21.5 parent: 2 - - uid: 23840 + - uid: 26347 components: - type: Transform pos: -50.5,19.5 parent: 2 - - uid: 23841 + - uid: 26348 components: - type: Transform pos: -48.5,20.5 parent: 2 - - uid: 23842 + - uid: 26349 components: - type: Transform pos: -44.5,20.5 parent: 2 - - uid: 23843 + - uid: 26350 components: - type: Transform pos: -40.5,20.5 parent: 2 - - uid: 23844 + - uid: 26351 components: - type: Transform pos: -42.5,19.5 parent: 2 - - uid: 23845 + - uid: 26352 components: - type: Transform pos: 64.5,-91.5 parent: 2 - - uid: 23846 + - uid: 26353 components: - type: Transform pos: 87.5,-13.5 parent: 2 - - uid: 23847 + - uid: 26354 components: - type: Transform pos: -48.5,13.5 parent: 2 - - uid: 23848 + - uid: 26355 components: - type: Transform pos: 79.5,-81.5 parent: 2 - - uid: 23849 + - uid: 26356 components: - type: Transform pos: 86.5,-15.5 parent: 2 - - uid: 23857 + - uid: 26357 components: - type: Transform pos: 24.5,29.5 parent: 2 - - uid: 23858 + - uid: 26358 components: - type: Transform pos: 21.5,27.5 parent: 2 - - uid: 23859 + - uid: 26359 components: - type: Transform pos: 1.5,32.5 parent: 2 - - uid: 23860 + - uid: 26360 components: - type: Transform pos: 4.5,31.5 parent: 2 - - uid: 23861 + - uid: 26361 components: - type: Transform pos: -7.5,30.5 parent: 2 - - uid: 23862 + - uid: 26362 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,27.5 parent: 2 - - uid: 23863 + - uid: 26363 components: - type: Transform pos: -14.5,26.5 parent: 2 - - uid: 23864 + - uid: 26364 components: - type: Transform pos: -11.5,29.5 parent: 2 - - uid: 23866 + - uid: 26365 components: - type: Transform pos: -31.5,21.5 parent: 2 - - uid: 23867 + - uid: 26366 components: - type: Transform pos: -24.5,21.5 parent: 2 - - uid: 23868 + - uid: 26367 components: - type: Transform pos: -19.5,22.5 parent: 2 - - uid: 23869 + - uid: 26368 components: - type: Transform pos: -21.5,22.5 parent: 2 - - uid: 23870 + - uid: 26369 components: - type: Transform pos: -58.5,17.5 parent: 2 - - uid: 23871 + - uid: 26370 components: - type: Transform pos: -56.5,19.5 parent: 2 - - uid: 23872 + - uid: 26371 components: - type: Transform pos: -59.5,16.5 parent: 2 - - uid: 23873 + - uid: 26372 components: - type: Transform pos: -61.5,16.5 parent: 2 - - uid: 23874 + - uid: 26373 components: - type: Transform pos: -78.5,-75.5 parent: 2 - - uid: 23875 + - uid: 26374 components: - type: Transform pos: -83.5,-66.5 parent: 2 - - uid: 23876 + - uid: 26375 components: - type: Transform pos: -83.5,-60.5 parent: 2 - - uid: 23877 + - uid: 26376 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-101.5 parent: 2 - - uid: 23878 + - uid: 26377 components: - type: Transform pos: 58.5,-105.5 parent: 2 - - uid: 23879 + - uid: 26378 components: - type: Transform pos: 59.5,-103.5 parent: 2 - - uid: 23880 + - uid: 26379 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,39.5 parent: 2 - - uid: 23881 + - uid: 26380 components: - type: Transform pos: -69.5,16.5 parent: 2 - - uid: 23882 + - uid: 26381 components: - type: Transform pos: -62.5,15.5 parent: 2 - - uid: 23883 + - uid: 26382 components: - type: Transform pos: -49.5,-74.5 parent: 2 - - uid: 23884 + - uid: 26383 components: - type: Transform pos: -46.5,-74.5 parent: 2 - - uid: 23885 + - uid: 26384 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,5.5 parent: 2 - - uid: 23886 + - uid: 26385 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,5.5 parent: 2 - - uid: 23887 + - uid: 26386 components: - type: Transform rot: 3.141592653589793 rad pos: -92.5,-4.5 parent: 2 - - uid: 23888 + - uid: 26387 components: - type: Transform rot: 3.141592653589793 rad pos: -93.5,-12.5 parent: 2 - - uid: 23889 + - uid: 26388 components: - type: Transform pos: -63.5,-111.5 parent: 2 - - uid: 23890 + - uid: 26389 components: - type: Transform pos: -48.5,-125.5 parent: 2 - - uid: 23891 + - uid: 26390 components: - type: Transform pos: -57.5,-126.5 parent: 2 - - uid: 23892 + - uid: 26391 components: - type: Transform pos: -42.5,-128.5 parent: 2 - - uid: 23893 + - uid: 26392 components: - type: Transform pos: -35.5,-128.5 parent: 2 - - uid: 23894 + - uid: 26393 components: - type: Transform pos: -32.5,-128.5 parent: 2 - - uid: 23895 + - uid: 26394 components: - type: Transform pos: -26.5,-120.5 parent: 2 - - uid: 23896 + - uid: 26395 components: - type: Transform pos: -28.5,-121.5 parent: 2 - - uid: 23897 + - uid: 26396 components: - type: Transform pos: -22.5,-113.5 parent: 2 - - uid: 23898 + - uid: 26397 components: - type: Transform pos: -22.5,-110.5 parent: 2 - - uid: 23899 + - uid: 26398 components: - type: Transform pos: 89.5,-90.5 parent: 2 - - uid: 23900 + - uid: 26399 components: - type: Transform pos: 82.5,-81.5 parent: 2 - - uid: 23901 + - uid: 26400 components: - type: Transform pos: 101.5,-96.5 parent: 2 - - uid: 23902 + - uid: 26401 components: - type: Transform pos: 110.5,-66.5 parent: 2 - - uid: 23903 + - uid: 26402 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,36.5 parent: 2 - - uid: 23904 + - uid: 26403 components: - type: Transform anchored: False pos: 68.5,-90.5 parent: 2 - - uid: 23905 + - uid: 26404 components: - type: Transform pos: 74.5,-74.5 parent: 2 - - uid: 23906 + - uid: 26405 components: - type: Transform pos: 70.5,-74.5 parent: 2 - - uid: 40096 + - uid: 26406 components: - type: Transform pos: 9.5,-113.5 parent: 2 - - uid: 40097 + - uid: 26407 components: - type: Transform pos: 13.5,-113.5 parent: 2 - - uid: 40098 + - uid: 26408 components: - type: Transform pos: 4.5,-110.5 parent: 2 - - uid: 40175 + - uid: 26409 components: - type: Transform pos: 85.5,6.5 parent: 2 - - uid: 40196 + - uid: 26410 components: - type: Transform rot: 3.141592653589793 rad @@ -181072,7 +184400,7 @@ entities: parent: 2 - proto: GunpetInstrument entities: - - uid: 26495 + - uid: 26411 components: - type: MetaData name: микроволновая пушка @@ -181081,24 +184409,7 @@ entities: parent: 2 - proto: GunSafe entities: - - uid: 1593 - components: - - type: Transform - pos: -1.5,-32.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1649 - - 4807 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11053 + - uid: 2435 components: - type: Transform pos: 12.5,-20.5 @@ -181130,13 +184441,30 @@ entities: showEnts: False occludes: True ents: - - 33561 - - 26494 + - 2436 + - 2437 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 23907 + - uid: 2469 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2470 + - 2471 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 26412 components: - type: MetaData name: сейф для секретов @@ -181156,8 +184484,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 + - 1.8977377 + - 7.139109 - 0 - 0 - 0 @@ -181174,14 +184502,14 @@ entities: showEnts: False occludes: True ents: - - 15362 + - 26413 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - type: Pullable prevFixedRotation: True - - uid: 23909 + - uid: 26414 components: - type: MetaData name: сейф с жетонами @@ -181215,19 +184543,19 @@ entities: showEnts: False occludes: True ents: - - 23913 - - 23914 - - 23912 - - 23910 - - 23917 - - 23916 - - 23911 - - 23915 + - 26418 + - 26419 + - 26417 + - 26415 + - 26422 + - 26421 + - 26416 + - 26420 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 26551 + - uid: 26423 components: - type: Transform pos: 8.5,-20.5 @@ -181259,16 +184587,16 @@ entities: showEnts: False occludes: True ents: - - 28011 + - 26424 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 37938 + - uid: 40879 components: - type: Transform pos: 5.5,-11.5 - parent: 37887 + parent: 40828 - type: EntityStorage air: volume: 200 @@ -181293,19 +184621,19 @@ entities: showEnts: False occludes: True ents: - - 37940 - - 37941 - - 37939 - - 37942 + - 40881 + - 40882 + - 40880 + - 40883 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 38372 + - uid: 41318 components: - type: Transform pos: -3.5,-6.5 - parent: 37887 + parent: 40828 - type: EntityStorage air: volume: 200 @@ -181330,278 +184658,280 @@ entities: showEnts: False occludes: True ents: - - 38375 - - 38373 - - 38374 + - 41321 + - 41319 + - 41320 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: GunSafeDisabler entities: - - uid: 19643 + - uid: 26425 components: - type: Transform pos: 55.5,-20.5 parent: 2 - proto: GunSafeLaserCarbine entities: - - uid: 2594 + - uid: 26426 components: - type: Transform pos: 62.5,-11.5 parent: 2 - proto: GunSafePistolMk58 entities: - - uid: 19642 + - uid: 26427 components: - type: Transform pos: 65.5,-11.5 parent: 2 - proto: GunSafeRifleLecter entities: - - uid: 1882 + - uid: 26428 components: - type: Transform pos: 63.5,-17.5 parent: 2 - proto: GunSafeSubMachineGunDrozd entities: - - uid: 2811 + - uid: 26429 components: - type: Transform pos: 64.5,-17.5 parent: 2 - proto: Gyroscope entities: - - uid: 22000 + - uid: 40756 components: - type: Transform pos: -1.5,-0.5 - parent: 21045 - - uid: 38891 + parent: 40666 + - uid: 41837 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-9.5 - parent: 38722 + parent: 41669 - proto: GyroscopeFlatpack entities: - - uid: 28557 + - uid: 26430 components: - type: Transform pos: -22.45288,-46.535347 parent: 2 - proto: Handcuffs entities: - - uid: 14546 + - uid: 26431 components: - type: Transform rot: 6.283185307179586 rad pos: 52.60071,-17.486929 parent: 2 - - uid: 14548 + - uid: 26432 components: - type: Transform rot: 6.283185307179586 rad pos: 52.545673,-17.560314 parent: 2 - - uid: 15781 + - uid: 26433 components: - type: Transform rot: 6.283185307179586 rad pos: 52.619057,-17.52362 parent: 2 - - uid: 23919 + - uid: 26434 components: - type: Transform pos: -7.590296,1.7182901 parent: 2 - - uid: 23920 + - uid: 26435 components: - type: Transform pos: -2.5020196,13.503156 parent: 2 - - uid: 23923 + - uid: 26436 components: - type: Transform pos: 73.72027,-26.411335 parent: 2 - - uid: 23925 + - uid: 26437 components: - type: Transform pos: -47.30249,-46.404476 parent: 2 - - uid: 34283 + - uid: 26438 components: - type: Transform pos: 80.95268,3.7681172 parent: 2 - - uid: 40454 + - uid: 26439 components: - type: Transform pos: 42.548824,-11.543914 parent: 2 - proto: HandheldGPSBasic entities: - - uid: 23927 + - uid: 26441 components: - type: Transform - pos: 52.51308,-76.410934 - parent: 2 - - uid: 23928 + parent: 26440 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26442 components: - type: Transform pos: -2.3341408,17.567802 parent: 2 - - uid: 23929 + - uid: 26443 components: - type: Transform pos: -8.519856,-96.43567 parent: 2 - proto: HandheldHealthAnalyzer entities: - - uid: 816 + - uid: 26444 components: - type: Transform pos: 62.341415,-4.6432304 parent: 2 - - uid: 23931 + - uid: 26445 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.3343987,19.591106 parent: 2 - - uid: 30433 + - uid: 26446 components: - type: Transform pos: -1.5541707,-35.49254 parent: 2 - proto: HandheldHealthAnalyzerUnpowered entities: - - uid: 23935 + - uid: 26447 components: - type: Transform pos: -68.47285,-49.354755 parent: 2 - - uid: 23936 + - uid: 26448 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.32156,-5.4472365 parent: 2 - - uid: 40806 + - uid: 26449 components: - type: Transform pos: 83.284225,-9.472714 parent: 2 - proto: HandHeldMassScanner entities: - - uid: 840 + - uid: 26450 components: - type: Transform pos: 19.483318,-12.427057 parent: 2 - - uid: 41601 + - uid: 41322 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5011597,-6.9646606 - parent: 37887 + parent: 40828 - proto: HandheldStationMap entities: - - uid: 23938 + - uid: 26451 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.615925,-52.310795 parent: 2 - - uid: 23939 + - uid: 26452 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.431866,24.706774 parent: 2 - - uid: 23940 + - uid: 26453 components: - type: Transform pos: -31.679695,-95.45278 parent: 2 - - uid: 23941 + - uid: 26454 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.534402,-103.27963 parent: 2 - - uid: 23942 + - uid: 26455 components: - type: Transform pos: 66.536896,-26.568066 parent: 2 - - uid: 24171 + - uid: 26456 components: - type: Transform pos: 16.484941,-27.410738 parent: 2 - proto: HandLabeler entities: - - uid: 23944 + - uid: 26457 components: - type: Transform pos: 67.05984,-27.312744 parent: 2 - - uid: 23945 + - uid: 26458 components: - type: Transform pos: -27.49639,-77.098885 parent: 2 - - uid: 23946 + - uid: 26459 components: - type: Transform pos: 50.990173,-53.741455 parent: 2 - - uid: 23947 + - uid: 26460 components: - type: Transform pos: 34.196903,-71.29056 parent: 2 - - uid: 23949 + - uid: 26461 components: - type: Transform pos: -35.393368,-27.351479 parent: 2 - - uid: 23950 + - uid: 26462 components: - type: Transform pos: -57.473927,-32.84579 parent: 2 - proto: HappyHonk entities: - - uid: 23951 + - uid: 26463 components: - type: Transform pos: 31.546932,4.9642363 parent: 2 - proto: HeadBorgJanitor entities: - - uid: 26632 + - uid: 26464 components: - type: Transform pos: 11.7199,-27.544508 parent: 2 - - uid: 32318 + - uid: 26465 components: - type: Transform pos: -20.566963,-53.306625 parent: 2 - - uid: 32319 + - uid: 26466 components: - type: Transform pos: -20.348213,-53.19725 parent: 2 - proto: HeadBorgMedical entities: - - uid: 32316 + - uid: 26467 components: - type: Transform rot: -1.5707963267948966 rad @@ -181609,14 +184939,14 @@ entities: parent: 2 - proto: HeadBorgMining entities: - - uid: 32333 + - uid: 26468 components: - type: Transform pos: -20.238838,-53.619125 parent: 2 - proto: HeadBorgService entities: - - uid: 32317 + - uid: 26469 components: - type: Transform rot: 1.5707963267948966 rad @@ -181624,14 +184954,14 @@ entities: parent: 2 - proto: HeadMoth entities: - - uid: 23952 + - uid: 26470 components: - type: Transform pos: 65.5,-50.5 parent: 2 - proto: HeadReptilian entities: - - uid: 23953 + - uid: 26471 components: - type: Transform rot: -1.5707963267948966 rad @@ -181639,41 +184969,41 @@ entities: parent: 2 - proto: HeadSkeleton entities: - - uid: 7517 + - uid: 26472 components: - type: Transform pos: -66.48876,6.5341115 parent: 2 - - uid: 23955 + - uid: 26474 components: - type: Transform - parent: 23954 + parent: 26473 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 33883 + - uid: 26475 components: - type: Transform pos: 35.508606,-63.398216 parent: 2 - - uid: 33884 + - uid: 26476 components: - type: Transform pos: -76.502785,-41.56175 parent: 2 - - uid: 35780 + - uid: 26477 components: - type: Transform pos: 33.56932,0.5548261 parent: 2 - - uid: 35786 + - uid: 26478 components: - type: Transform pos: -8.466255,25.443705 parent: 2 - proto: HeadVox entities: - - uid: 23958 + - uid: 26479 components: - type: Transform rot: 1.5707963267948966 rad @@ -181681,7 +185011,7 @@ entities: parent: 2 - proto: HeatExchanger entities: - - uid: 23960 + - uid: 26480 components: - type: Transform rot: -1.5707963267948966 rad @@ -181689,7 +185019,7 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 23961 + - uid: 26481 components: - type: Transform rot: -1.5707963267948966 rad @@ -181699,66 +185029,66 @@ entities: color: '#03FCD3FF' - proto: HighSecArmoryLocked entities: - - uid: 130 + - uid: 26482 components: - type: Transform pos: 63.5,-14.5 parent: 2 - - uid: 2037 + - uid: 26483 components: - type: Transform pos: 59.5,-18.5 parent: 2 - - uid: 9352 + - uid: 26484 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-18.5 parent: 2 - - uid: 38376 + - uid: 41323 components: - type: Transform pos: 3.5,-9.5 - parent: 37887 + parent: 40828 - proto: HighSecCentralCommandLocked entities: - - uid: 26254 + - uid: 26485 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-32.5 parent: 2 - - uid: 38892 + - uid: 41838 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-9.5 - parent: 38722 + parent: 41669 - proto: HighSecCommandLocked entities: - - uid: 23965 + - uid: 26486 components: - type: Transform pos: 99.5,-73.5 parent: 2 - - uid: 23966 + - uid: 26487 components: - type: Transform pos: 97.5,-73.5 parent: 2 - - uid: 23967 + - uid: 26488 components: - type: Transform pos: 97.5,-77.5 parent: 2 - - uid: 23968 + - uid: 26489 components: - type: Transform pos: 99.5,-77.5 parent: 2 - proto: HighSecDoor entities: - - uid: 313 + - uid: 26490 components: - type: Transform pos: 12.5,20.5 @@ -181770,13 +185100,7 @@ entities: - - ChiefEngineer - - HeadOfSecurity - - ResearchDirector - - uid: 6195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,2.5 - parent: 2 - - uid: 9062 + - uid: 26491 components: - type: Transform rot: 3.141592653589793 rad @@ -181789,7 +185113,7 @@ entities: - - ChiefEngineer - - HeadOfSecurity - - ResearchDirector - - uid: 13232 + - uid: 26492 components: - type: Transform rot: 3.141592653589793 rad @@ -181799,7 +185123,7 @@ entities: containerAccessProvider: null access: - - ChiefEngineer - - uid: 23011 + - uid: 26493 components: - type: Transform rot: 3.141592653589793 rad @@ -181809,7 +185133,7 @@ entities: containerAccessProvider: null access: - - Research - - uid: 23969 + - uid: 26494 components: - type: Transform pos: 38.5,-40.5 @@ -181818,7 +185142,7 @@ entities: containerAccessProvider: null access: - - ChiefEngineer - - uid: 23972 + - uid: 26495 components: - type: MetaData desc: Только для НаучРука, ГСБ и Старшего инженера. @@ -181833,7 +185157,7 @@ entities: - - ChiefEngineer - - HeadOfSecurity - - ResearchDirector - - uid: 23973 + - uid: 26496 components: - type: MetaData desc: Только для НаучРука, ГСБ и Старшего инженера. @@ -181848,7 +185172,7 @@ entities: - - ChiefEngineer - - HeadOfSecurity - - ResearchDirector - - uid: 26741 + - uid: 26497 components: - type: Transform pos: -1.5,-6.5 @@ -181860,7 +185184,7 @@ entities: - - ChiefEngineer - - HeadOfSecurity - - ResearchDirector - - uid: 29992 + - uid: 26498 components: - type: Transform rot: 3.141592653589793 rad @@ -181871,7 +185195,7 @@ entities: access: - - Captain - - ChiefEngineer - - uid: 30678 + - uid: 26499 components: - type: MetaData name: РОБОТОТЕХНИЧЕСКАЯ ЛАБОРАТОРИЯ @@ -181883,7 +185207,7 @@ entities: containerAccessProvider: null access: - - Research - - uid: 30680 + - uid: 26500 components: - type: MetaData name: ГЕНОХРАНИЛИЩЕ @@ -181892,13 +185216,13 @@ entities: parent: 2 - type: AccessReader containerAccessProvider: null - - uid: 30766 + - uid: 26501 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-33.5 parent: 2 - - uid: 40058 + - uid: 26502 components: - type: Transform rot: 3.141592653589793 rad @@ -181910,19 +185234,19 @@ entities: - - NuclearOperative - proto: HolofanProjector entities: - - uid: 23974 + - uid: 26503 components: - type: Transform pos: 38.471985,-52.303555 parent: 2 - - uid: 23975 + - uid: 26504 components: - type: Transform pos: 41.638515,-94.44738 parent: 2 - proto: HolyHandGrenade entities: - - uid: 9035 + - uid: 12 components: - type: MetaData desc: 'Не содержит взрывчатых веществ. «Благослови, Господи, сию ручную державу, да помоги мне исполнить мечты мои!». ' @@ -181940,243 +185264,243 @@ entities: - Contraband - proto: HospitalCurtains entities: - - uid: 23976 + - uid: 26505 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-8.5 parent: 2 - - uid: 23977 + - uid: 26506 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-8.5 parent: 2 - - uid: 23978 + - uid: 26507 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-8.5 parent: 2 - - uid: 23979 + - uid: 26508 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-22.5 parent: 2 - - uid: 23980 + - uid: 26509 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-25.5 parent: 2 - - uid: 23981 + - uid: 26510 components: - type: Transform pos: 16.5,11.5 parent: 2 - - uid: 23982 + - uid: 26511 components: - type: Transform pos: 16.5,13.5 parent: 2 - - uid: 23983 + - uid: 26512 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-21.5 parent: 2 - - uid: 23986 + - uid: 26513 components: - type: Transform pos: -53.5,-13.5 parent: 2 - - uid: 23989 + - uid: 26514 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-1.5 parent: 2 - - uid: 23990 + - uid: 26515 components: - type: Transform pos: -83.5,-11.5 parent: 2 - - uid: 23991 + - uid: 26516 components: - type: Transform pos: -83.5,-10.5 parent: 2 - - uid: 23992 + - uid: 26517 components: - type: Transform pos: -83.5,-9.5 parent: 2 - - uid: 23993 + - uid: 26518 components: - type: Transform pos: -83.5,-7.5 parent: 2 - - uid: 23994 + - uid: 26519 components: - type: Transform pos: -76.5,-10.5 parent: 2 - - uid: 23995 + - uid: 26520 components: - type: Transform pos: -73.5,-8.5 parent: 2 - proto: HospitalCurtainsOpen entities: - - uid: 17770 + - uid: 26521 components: - type: Transform pos: 78.5,-12.5 parent: 2 - - uid: 23998 + - uid: 26522 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-8.5 parent: 2 - - uid: 23999 + - uid: 26523 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-8.5 parent: 2 - - uid: 24000 + - uid: 26524 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-8.5 parent: 2 - - uid: 24001 + - uid: 26525 components: - type: Transform pos: 16.5,12.5 parent: 2 - - uid: 24002 + - uid: 26526 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-20.5 parent: 2 - - uid: 24003 + - uid: 26527 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-23.5 parent: 2 - - uid: 24004 + - uid: 26528 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-24.5 parent: 2 - - uid: 24005 + - uid: 26529 components: - type: Transform pos: -53.5,-12.5 parent: 2 - - uid: 24006 + - uid: 26530 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-75.5 parent: 2 - - uid: 24010 + - uid: 26531 components: - type: Transform pos: -83.5,-8.5 parent: 2 - - uid: 24011 + - uid: 26532 components: - type: Transform pos: -73.5,-9.5 parent: 2 - - uid: 24012 + - uid: 26533 components: - type: Transform pos: -73.5,-7.5 parent: 2 - - uid: 24197 + - uid: 26534 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-25.5 parent: 2 - - uid: 26141 + - uid: 26535 components: - type: Transform pos: 76.5,-12.5 parent: 2 - - uid: 26143 + - uid: 26536 components: - type: Transform pos: 74.5,-12.5 parent: 2 - proto: HydrogenChemistryBottle entities: - - uid: 41025 + - uid: 1989 components: - type: Transform - parent: 37041 + parent: 1980 - type: Physics canCollide: False - proto: hydroponicsSoil entities: - - uid: 24014 + - uid: 26537 components: - type: Transform pos: 44.5,24.5 parent: 2 - - uid: 24015 + - uid: 26538 components: - type: Transform pos: 44.5,23.5 parent: 2 - - uid: 24016 + - uid: 26539 components: - type: Transform pos: 44.5,22.5 parent: 2 - - uid: 24017 + - uid: 26540 components: - type: Transform pos: 46.5,24.5 parent: 2 - - uid: 24018 + - uid: 26541 components: - type: Transform pos: 46.5,23.5 parent: 2 - - uid: 24021 + - uid: 26542 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-7.5 parent: 2 - - uid: 24022 + - uid: 26543 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-8.5 parent: 2 - - uid: 24023 + - uid: 26544 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-9.5 parent: 2 - - uid: 24024 + - uid: 26545 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-12.5 parent: 2 - - uid: 24025 + - uid: 26546 components: - type: Transform rot: 3.141592653589793 rad @@ -182184,27 +185508,27 @@ entities: parent: 2 - proto: HydroponicsToolMiniHoe entities: - - uid: 24032 + - uid: 2568 + components: + - type: Transform + parent: 2559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26547 components: - type: Transform pos: 45.320877,23.290249 parent: 2 - - uid: 24033 + - uid: 26548 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.44913,-12.35248 parent: 2 - - uid: 40803 - components: - - type: Transform - parent: 40794 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: HydroponicsToolScythe entities: - - uid: 24034 + - uid: 26549 components: - type: Transform rot: 1.5707963267948966 rad @@ -182212,244 +185536,274 @@ entities: parent: 2 - proto: HydroponicsToolSpade entities: - - uid: 24036 + - uid: 2569 + components: + - type: Transform + parent: 2559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26550 components: - type: Transform pos: 45.210907,21.93156 parent: 2 - - uid: 24037 + - uid: 26551 components: - type: Transform pos: -73.35629,-9.494815 parent: 2 - - uid: 40800 - components: - - type: Transform - parent: 40794 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: hydroponicsTray entities: - - uid: 24038 + - uid: 26552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,13.5 + parent: 2 + - uid: 26553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,13.5 + parent: 2 + - uid: 26554 components: - type: Transform pos: 37.5,12.5 parent: 2 - - uid: 24039 + - uid: 26555 components: - type: Transform pos: 35.5,11.5 parent: 2 - - uid: 24040 + - uid: 26556 components: - type: Transform pos: 39.5,23.5 parent: 2 - - uid: 24041 + - uid: 26557 components: - type: Transform pos: 38.5,11.5 parent: 2 - - uid: 24042 + - uid: 26558 components: - type: Transform pos: 38.5,12.5 parent: 2 - - uid: 24043 + - uid: 26559 components: - type: Transform pos: 36.5,11.5 parent: 2 - - uid: 24044 + - uid: 26560 components: - type: Transform pos: 37.5,11.5 parent: 2 - - uid: 24045 + - uid: 26561 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,12.5 parent: 2 - - uid: 24046 + - uid: 26562 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,11.5 parent: 2 - - uid: 24047 + - uid: 26563 components: - type: Transform pos: 35.5,12.5 parent: 2 - - uid: 24048 + - uid: 26564 components: - type: Transform pos: 37.5,23.5 parent: 2 - - uid: 24049 + - uid: 26565 components: - type: Transform pos: 36.5,12.5 parent: 2 - - uid: 24050 + - uid: 26566 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,21.5 parent: 2 - - uid: 24051 + - uid: 26567 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,21.5 parent: 2 - - uid: 25334 + - uid: 26568 components: - type: Transform pos: 88.5,-7.5 parent: 2 - - uid: 25976 + - uid: 26569 components: - type: Transform pos: 88.5,-6.5 parent: 2 - - uid: 27215 + - uid: 26570 components: - type: Transform pos: 88.5,-5.5 parent: 2 + - uid: 26571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,13.5 + parent: 2 + - uid: 26572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,22.5 + parent: 2 + - uid: 26573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,22.5 + parent: 2 - proto: HydroponicsTrayEmpty entities: - - uid: 17376 + - uid: 26574 components: - type: Transform pos: -5.5,-16.5 parent: 2 - - uid: 17481 + - uid: 26575 components: - type: Transform pos: -6.5,-16.5 parent: 2 - - uid: 17497 + - uid: 26576 components: - type: Transform pos: -7.5,-16.5 parent: 2 - - uid: 17685 + - uid: 26577 components: - type: Transform pos: -9.5,-16.5 parent: 2 - - uid: 17687 + - uid: 26578 components: - type: Transform pos: -4.5,-16.5 parent: 2 - - uid: 17706 + - uid: 26579 components: - type: Transform pos: -12.5,-15.5 parent: 2 - - uid: 17707 + - uid: 26580 components: - type: Transform pos: -12.5,-13.5 parent: 2 - - uid: 18052 + - uid: 26581 components: - type: Transform pos: -16.5,-13.5 parent: 2 - - uid: 18054 + - uid: 26582 components: - type: Transform pos: -14.5,-13.5 parent: 2 - - uid: 18073 + - uid: 26583 components: - type: Transform pos: -13.5,-13.5 parent: 2 - - uid: 18077 + - uid: 26584 components: - type: Transform pos: -16.5,-15.5 parent: 2 - - uid: 18078 + - uid: 26585 components: - type: Transform pos: -15.5,-15.5 parent: 2 - - uid: 18306 + - uid: 26586 components: - type: Transform pos: -14.5,-15.5 parent: 2 - - uid: 18398 + - uid: 26587 components: - type: Transform pos: -1.5,-18.5 parent: 2 - - uid: 18399 + - uid: 26588 components: - type: Transform pos: -0.5,-18.5 parent: 2 - - uid: 18453 + - uid: 26589 components: - type: Transform pos: 0.5,-18.5 parent: 2 - - uid: 18505 + - uid: 26590 components: - type: Transform pos: 2.5,-18.5 parent: 2 - - uid: 23061 + - uid: 26591 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-16.5 parent: 2 - - uid: 23062 + - uid: 26592 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-16.5 parent: 2 - - uid: 23222 + - uid: 26593 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-16.5 parent: 2 - - uid: 23234 + - uid: 26594 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-16.5 parent: 2 - - uid: 23237 + - uid: 26595 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-14.5 parent: 2 - - uid: 23264 + - uid: 26596 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-14.5 parent: 2 - - uid: 23266 + - uid: 26597 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-14.5 parent: 2 - - uid: 23267 + - uid: 26598 components: - type: Transform rot: 3.141592653589793 rad @@ -182457,15 +185811,62 @@ entities: parent: 2 - proto: HypoDart entities: - - uid: 11464 + - uid: 42 components: - type: Transform - parent: 27043 + parent: 35 - type: Physics canCollide: False +- proto: IceCrust + entities: + - uid: 26599 + components: + - type: Transform + pos: -18.5,-37.5 + parent: 2 + - uid: 26600 + components: + - type: Transform + pos: -18.5,-38.5 + parent: 2 + - uid: 26601 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 2 + - uid: 26602 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 2 + - uid: 26603 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 2 + - uid: 26604 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 26605 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - uid: 26606 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 2 + - uid: 26607 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 - proto: IDComputerCircuitboard entities: - - uid: 24052 + - uid: 26608 components: - type: Transform rot: 3.141592653589793 rad @@ -182473,7 +185874,7 @@ entities: parent: 2 - proto: IgniteRune entities: - - uid: 24053 + - uid: 26609 components: - type: Transform pos: -81.5,-24.5 @@ -182482,322 +185883,356 @@ entities: fireStacks: 1 - proto: InflatableDoor entities: - - uid: 3475 + - uid: 26610 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-68.5 parent: 2 - - uid: 4593 + - uid: 26611 components: - type: Transform pos: 22.5,-33.5 parent: 2 - - uid: 4603 + - uid: 26612 components: - type: Transform pos: 22.5,-32.5 parent: 2 - - uid: 24054 + - uid: 26613 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-20.5 parent: 2 - - uid: 24059 + - uid: 26614 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-14.5 parent: 2 - - uid: 34382 + - uid: 26615 components: - type: Transform pos: 0.5,-8.5 parent: 2 -- proto: InflatableDoorStack1 - entities: - - uid: 14897 - components: - - type: Transform - pos: -15.47188,8.48596 - parent: 2 - proto: InflatableWall entities: - - uid: 1591 + - uid: 26616 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-68.5 parent: 2 - - uid: 6163 + - uid: 26617 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-44.5 parent: 2 - - uid: 6207 + - uid: 26618 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-43.5 parent: 2 - - uid: 13527 + - uid: 26619 components: - type: Transform pos: 22.5,-31.5 parent: 2 - - uid: 24060 + - uid: 26620 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-19.5 parent: 2 - - uid: 24064 + - uid: 26621 components: - type: Transform pos: -43.5,2.5 parent: 2 - - uid: 24065 + - uid: 26622 components: - type: Transform pos: -50.5,2.5 parent: 2 - - uid: 24066 + - uid: 26623 components: - type: Transform pos: -53.5,-7.5 parent: 2 - - uid: 24067 + - uid: 26624 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-99.5 parent: 2 - - uid: 24068 + - uid: 26625 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-98.5 parent: 2 - - uid: 24069 + - uid: 26626 components: - type: Transform pos: -49.5,4.5 parent: 2 - - uid: 24077 + - uid: 26627 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-5.5 parent: 2 - - uid: 24082 + - uid: 26628 components: - type: Transform pos: -83.5,-15.5 parent: 2 - - uid: 24083 + - uid: 26629 components: - type: Transform pos: -75.5,7.5 parent: 2 - - uid: 24084 + - uid: 26630 components: - type: Transform pos: -72.5,-21.5 parent: 2 - - uid: 24085 + - uid: 26631 components: - type: Transform pos: -70.5,-10.5 parent: 2 - - uid: 24086 + - uid: 26632 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,1.5 parent: 2 - - uid: 24087 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,21.5 - parent: 2 - - uid: 24088 + - uid: 26633 components: - type: Transform pos: -36.5,20.5 parent: 2 - - uid: 25188 + - uid: 26634 components: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 30703 + - uid: 26635 components: - type: Transform pos: 5.5,-31.5 parent: 2 - - uid: 33789 + - uid: 26636 components: - type: Transform pos: 1.5,-8.5 parent: 2 - - uid: 33956 + - uid: 26637 components: - type: Transform pos: 6.5,-32.5 parent: 2 - - uid: 34371 + - uid: 26638 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-68.5 parent: 2 - - uid: 34383 + - uid: 26639 components: - type: Transform - pos: -17.5,8.5 + pos: 4.5,-39.5 parent: 2 - - uid: 34384 + - uid: 26640 components: - type: Transform - pos: -16.5,8.5 + pos: 5.5,-39.5 parent: 2 - - uid: 34387 + - uid: 26641 components: - type: Transform - pos: -13.5,8.5 + pos: -23.5,-42.5 parent: 2 - - uid: 37750 + - uid: 26642 components: - type: Transform - pos: 4.5,-39.5 + rot: 1.5707963267948966 rad + pos: 7.5,-31.5 parent: 2 - - uid: 37751 + - uid: 26643 components: - type: Transform - pos: 5.5,-39.5 + rot: 1.5707963267948966 rad + pos: 5.5,-40.5 parent: 2 - - uid: 39548 + - uid: 26644 components: - type: Transform - pos: -23.5,-42.5 + pos: 10.5,-37.5 parent: 2 - - uid: 40126 + - uid: 26645 + components: + - type: Transform + pos: 10.5,-36.5 + parent: 2 + - uid: 26646 + components: + - type: Transform + pos: 9.5,-43.5 + parent: 2 + - uid: 26647 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 2 + - uid: 26648 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-31.5 + pos: 14.5,-37.5 parent: 2 - - uid: 40128 + - uid: 26649 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-40.5 + pos: 15.5,-37.5 parent: 2 -- proto: InflatableWallStack1 - entities: - - uid: 1083 + - uid: 26650 components: - type: Transform - pos: -14.610191,7.6271353 + rot: 1.5707963267948966 rad + pos: 14.5,-38.5 parent: 2 - - uid: 39721 + - uid: 26651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-40.5 + parent: 2 + - uid: 26652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-43.5 + parent: 2 + - uid: 26653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-41.5 + parent: 2 + - uid: 26654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-40.5 + parent: 2 + - uid: 26655 + components: + - type: Transform + pos: 18.5,-42.5 + parent: 2 +- proto: InflatableWallStack1 + entities: + - uid: 26656 components: - type: Transform pos: 0.03817773,-10.484029 parent: 2 - proto: IngotGold entities: - - uid: 14510 + - uid: 16249 components: - type: Transform - parent: 14476 + parent: 16248 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14534 + - uid: 16252 components: - type: Transform - parent: 14532 + parent: 16251 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14540 + - uid: 16255 components: - type: Transform - parent: 14538 + parent: 16254 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14543 + - uid: 16258 components: - type: Transform - parent: 14541 + parent: 16257 - type: Physics canCollide: False - type: InsideEntityStorage - proto: IngotGold1 entities: - - uid: 24090 + - uid: 26657 components: - type: Transform pos: 81.41212,-47.52112 parent: 2 - - uid: 24091 + - uid: 26658 components: - type: Transform pos: 81.59962,-47.567993 parent: 2 - - uid: 24092 + - uid: 26659 components: - type: Transform pos: 81.58399,-47.33362 parent: 2 - - uid: 29427 + - uid: 26660 components: - type: Transform pos: -6.8590045,-8.252594 parent: 2 - - uid: 29428 + - uid: 26661 components: - type: Transform pos: -6.8902545,-8.502594 parent: 2 - proto: IngotSilver entities: - - uid: 29412 + - uid: 26662 components: - type: Transform pos: -7.4725513,-8.326113 parent: 2 - proto: IngotSilver1 entities: - - uid: 14756 + - uid: 15668 components: - type: Transform - parent: 14753 + parent: 15665 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14757 + - uid: 15669 components: - type: Transform - parent: 14753 + parent: 15665 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14758 + - uid: 15670 components: - type: Transform - parent: 14753 + parent: 15665 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Intellicard entities: - - uid: 14900 + - uid: 26663 components: - type: Transform rot: 3.141592653589793 rad @@ -182807,71 +186242,71 @@ entities: location: интелкарта - proto: IntercomAll entities: - - uid: 24096 + - uid: 26664 components: - type: Transform pos: 0.5,23.5 parent: 2 - proto: IntercomCommand entities: - - uid: 24097 + - uid: 26665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,13.5 + parent: 2 + - uid: 26666 components: - type: Transform pos: 3.5,27.5 parent: 2 - - uid: 24098 + - uid: 26667 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,5.5 parent: 2 - - uid: 24099 + - uid: 26668 components: - type: Transform pos: -20.5,9.5 parent: 2 - - uid: 24100 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,16.5 - parent: 2 - proto: IntercomCommon entities: - - uid: 24101 + - uid: 26669 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-39.5 parent: 2 - - uid: 24102 + - uid: 26670 components: - type: Transform pos: -72.5,-34.5 parent: 2 - - uid: 24103 + - uid: 26671 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-38.5 parent: 2 - - uid: 24104 + - uid: 26672 components: - type: Transform pos: 6.5,-73.5 parent: 2 - - uid: 24105 + - uid: 26673 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-47.5 parent: 2 - - uid: 24106 + - uid: 26674 components: - type: Transform pos: -8.5,5.5 parent: 2 - - uid: 40428 + - uid: 26675 components: - type: Transform rot: -1.5707963267948966 rad @@ -182879,38 +186314,38 @@ entities: parent: 2 - proto: IntercomElectronics entities: - - uid: 24107 + - uid: 26676 components: - type: Transform pos: 36.535313,-38.33921 parent: 2 - proto: IntercomEngineering entities: - - uid: 24108 + - uid: 26677 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-56.5 parent: 2 - - uid: 24109 + - uid: 26678 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-91.5 parent: 2 - - uid: 24110 + - uid: 26679 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-72.5 parent: 2 - - uid: 24111 + - uid: 26680 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-100.5 parent: 2 - - uid: 24112 + - uid: 26681 components: - type: Transform rot: 3.141592653589793 rad @@ -182918,23 +186353,23 @@ entities: parent: 2 - proto: IntercomMedical entities: - - uid: 24113 + - uid: 26682 components: - type: Transform pos: -38.5,-35.5 parent: 2 - - uid: 24114 + - uid: 26683 components: - type: Transform pos: -45.5,-26.5 parent: 2 - - uid: 24115 + - uid: 26684 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-4.5 parent: 2 - - uid: 24116 + - uid: 26685 components: - type: Transform rot: 1.5707963267948966 rad @@ -182942,25 +186377,25 @@ entities: parent: 2 - proto: IntercomScience entities: - - uid: 24117 + - uid: 26686 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-60.5 parent: 2 - - uid: 24118 + - uid: 26687 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-46.5 parent: 2 - - uid: 24119 + - uid: 26688 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-70.5 parent: 2 - - uid: 24120 + - uid: 26689 components: - type: Transform rot: -1.5707963267948966 rad @@ -182968,32 +186403,32 @@ entities: parent: 2 - proto: IntercomSecurity entities: - - uid: 40771 + - uid: 26690 components: - type: Transform pos: 44.5,-21.5 parent: 2 - proto: IntercomService entities: - - uid: 24124 + - uid: 26691 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-1.5 parent: 2 - - uid: 24125 + - uid: 26692 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-0.5 parent: 2 - - uid: 24126 + - uid: 26693 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,12.5 parent: 2 - - uid: 24127 + - uid: 26694 components: - type: Transform rot: -1.5707963267948966 rad @@ -183001,24 +186436,24 @@ entities: parent: 2 - proto: IntercomSupply entities: - - uid: 24129 + - uid: 26695 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-101.5 parent: 2 - - uid: 24130 + - uid: 26696 components: - type: Transform pos: 2.5,-85.5 parent: 2 - - uid: 24131 + - uid: 26697 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-81.5 parent: 2 - - uid: 24132 + - uid: 26698 components: - type: Transform rot: 3.141592653589793 rad @@ -183026,12 +186461,12 @@ entities: parent: 2 - proto: JanitorialTrolley entities: - - uid: 24133 + - uid: 26699 components: - type: Transform pos: 5.5,-1.5 parent: 2 - - uid: 24134 + - uid: 26700 components: - type: Transform rot: -1.5707963267948966 rad @@ -183039,77 +186474,77 @@ entities: parent: 2 - proto: JanitorServiceLight entities: - - uid: 24135 + - uid: 26701 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-45.5 parent: 2 - - uid: 24137 + - uid: 26702 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-6.5 parent: 2 - - uid: 24138 + - uid: 26703 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,11.5 parent: 2 - - uid: 24139 + - uid: 26704 components: - type: Transform pos: -24.5,1.5 parent: 2 - - uid: 24140 + - uid: 26705 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-35.5 parent: 2 - - uid: 24141 + - uid: 26706 components: - type: Transform pos: -44.5,-42.5 parent: 2 - - uid: 24142 + - uid: 26707 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-34.5 parent: 2 - - uid: 24143 + - uid: 26708 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-45.5 parent: 2 - - uid: 24144 + - uid: 26709 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-44.5 parent: 2 - - uid: 24145 + - uid: 26710 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-78.5 parent: 2 - - uid: 24146 + - uid: 26711 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-34.5 parent: 2 - - uid: 24147 + - uid: 26712 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-29.5 parent: 2 - - uid: 40778 + - uid: 26713 components: - type: Transform rot: -1.5707963267948966 rad @@ -183117,407 +186552,294 @@ entities: parent: 2 - proto: JetpackBlue entities: - - uid: 24148 + - uid: 26714 components: - type: Transform pos: 46.5,-62.5 parent: 2 - proto: JetpackBlueFilled entities: - - uid: 37349 + - uid: 26715 components: - type: Transform pos: 57.494186,-82.422646 parent: 2 - proto: JetpackMini entities: - - uid: 24149 + - uid: 26716 components: - type: Transform pos: 54.5232,-96.30902 parent: 2 - - uid: 24150 + - uid: 26717 components: - type: Transform pos: 111.52574,-46.458534 parent: 2 - proto: JetpackSecurity entities: - - uid: 16 + - uid: 62 components: - type: Transform pos: 66.48599,13.616083 parent: 2 - type: GasTank - toggleActionEntity: 17 + toggleActionEntity: 63 - type: Jetpack - toggleActionEntity: 18 + toggleActionEntity: 64 - type: ActionsContainer - type: ContainerContainer containers: actions: !type:Container ents: - - 18 - - 17 + - 64 + - 63 - proto: JetpackSecurityFilled entities: - - uid: 2038 + - uid: 65 components: - type: Transform rot: 6.283185307179586 rad pos: 57.357067,-22.587494 parent: 2 - type: GasTank - toggleActionEntity: 2042 + toggleActionEntity: 66 - type: Jetpack - toggleActionEntity: 2039 + toggleActionEntity: 67 - type: ActionsContainer - type: ContainerContainer containers: actions: !type:Container ents: - - 2039 - - 2042 - - uid: 2056 + - 67 + - 66 + - uid: 26718 components: - type: Transform pos: 57.741734,-22.50916 parent: 2 - - uid: 2663 + - uid: 26719 components: - type: Transform pos: 57.53861,-22.44666 parent: 2 - proto: JetpackVoid entities: - - uid: 1611 + - uid: 15804 components: - type: Transform - parent: 15644 + parent: 15802 - type: Physics canCollide: False - type: InsideEntityStorage - proto: JetpackVoidFilled entities: - - uid: 41595 + - uid: 41107 components: - type: Transform - parent: 38162 + parent: 41103 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 41596 + - uid: 41114 components: - type: Transform - parent: 38168 + parent: 41110 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 41597 + - uid: 41121 components: - type: Transform - parent: 38174 + parent: 41117 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 41598 + - uid: 41128 components: - type: Transform - parent: 38180 + parent: 41124 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 41599 + - uid: 41135 components: - type: Transform - parent: 38186 + parent: 41131 - type: Physics canCollide: False - type: InsideEntityStorage - proto: Jug entities: - - uid: 41029 + - uid: 1990 components: - type: Transform - parent: 37041 + parent: 1980 - type: Physics canCollide: False - - uid: 41030 + - uid: 1991 components: - type: Transform - parent: 37041 + parent: 1980 - type: Physics canCollide: False - proto: Jukebox entities: - - uid: 24158 + - uid: 26720 components: - type: Transform pos: 34.5,7.5 parent: 2 - proto: KitchenElectricGrill entities: - - uid: 24159 + - uid: 26721 components: - type: Transform pos: 28.5,14.5 parent: 2 - proto: KitchenKnife entities: - - uid: 24160 + - uid: 26722 components: - type: Transform pos: 29.761024,11.77055 parent: 2 - - uid: 24162 + - uid: 26724 components: - type: Transform - parent: 24161 + parent: 26723 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 40167 + - uid: 26725 components: - type: Transform pos: 35.37294,-71.35835 parent: 2 - proto: KitchenMicrowave entities: - - uid: 24163 + - uid: 26726 components: - type: Transform pos: -43.5,-86.5 parent: 2 - - uid: 24164 + - uid: 26727 components: - type: Transform pos: 29.5,14.5 parent: 2 - - uid: 24165 + - uid: 26728 components: - type: Transform pos: 46.5,-73.5 parent: 2 - - uid: 24166 - components: - - type: Transform - pos: -7.5,19.5 - parent: 2 - - uid: 24167 + - uid: 26729 components: - type: Transform pos: 61.5,-37.5 parent: 2 - - uid: 24168 + - uid: 26730 components: - type: Transform pos: -9.5,-88.5 parent: 2 - - uid: 24169 + - uid: 26731 components: - type: Transform pos: 53.5,-51.5 parent: 2 - - uid: 24172 + - uid: 26732 components: - type: Transform pos: -55.5,12.5 parent: 2 - - uid: 24173 + - uid: 26733 components: - type: Transform pos: -37.5,-3.5 parent: 2 - - uid: 24174 + - uid: 26734 components: - type: Transform pos: 46.5,20.5 parent: 2 - - uid: 25191 + - uid: 26735 components: - type: Transform pos: 50.5,3.5 parent: 2 - - uid: 27639 + - uid: 26736 components: - type: Transform pos: 89.5,-10.5 parent: 2 + - uid: 26737 + components: + - type: Transform + pos: -9.5,13.5 + parent: 2 - proto: KitchenReagentGrinder entities: - - uid: 24175 + - uid: 26738 components: - type: Transform pos: -37.5,-34.5 parent: 2 - - uid: 24176 + - uid: 26739 components: - type: Transform pos: -76.5,-9.5 parent: 2 - - uid: 24177 + - uid: 26740 components: - type: Transform pos: -55.5,-0.5 parent: 2 - - uid: 24179 + - uid: 26741 components: - type: Transform pos: -3.5,-71.5 parent: 2 - - uid: 24180 + - uid: 26742 components: - type: Transform pos: 29.5,12.5 parent: 2 - - uid: 24181 + - uid: 26743 components: - type: Transform pos: 35.5,15.5 parent: 2 - - uid: 24182 + - uid: 26744 components: - type: Transform pos: 22.5,1.5 parent: 2 - - uid: 24183 + - uid: 26745 components: - type: Transform pos: -53.5,-75.5 parent: 2 - - uid: 24184 + - uid: 26746 components: - type: Transform pos: 33.5,23.5 parent: 2 - - uid: 38377 + - uid: 41324 components: - type: Transform pos: -2.5,-12.5 - parent: 37887 + parent: 40828 - proto: KitchenSpike entities: - - uid: 24185 + - uid: 26747 components: - type: Transform pos: 23.5,14.5 parent: 2 - proto: Lamp entities: - - uid: 2680 - components: - - type: Transform - pos: 56.785122,15.621483 - parent: 2 - - uid: 7702 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.49618,9.6562805 - parent: 2 - - uid: 14732 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-0.5 - parent: 2 - - uid: 14864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-4.5 - parent: 2 - - uid: 16887 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 81.588104,4.643117 - parent: 2 - - uid: 22380 - components: - - type: Transform - pos: 39.553074,-26.375849 - parent: 2 - - type: HandheldLight - toggleActionEntity: 22381 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 22381 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 24187 - components: - - type: Transform - pos: -62.609993,-71.49693 - parent: 2 - - uid: 24188 - components: - - type: Transform - pos: -31.577393,8.612033 - parent: 2 - - type: HandheldLight - toggleActionEntity: 6216 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 6216 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 24189 - components: - - type: Transform - pos: -37.520256,3.586957 - parent: 2 - - uid: 24190 - components: - - type: Transform - pos: -55.444374,-7.3688416 - parent: 2 - - uid: 24193 - components: - - type: Transform - pos: 24.58624,-76.29226 - parent: 2 - - uid: 24194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.403778,-48.186714 - parent: 2 - - uid: 24196 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -67.594696,-47.42654 - parent: 2 - - uid: 24198 - components: - - type: Transform - pos: -57.563206,-38.405563 - parent: 2 - - uid: 31763 - components: - - type: Transform - pos: 46.49248,16.632973 - parent: 2 - - uid: 37707 + - uid: 54 components: - type: MetaData name: волшебная лампа @@ -183525,35 +186847,148 @@ entities: pos: -41.37098,-99.313675 parent: 2 - type: HandheldLight - selfToggleActionEntity: 39563 - toggleActionEntity: 39562 + selfToggleActionEntity: 58 + toggleActionEntity: 57 - type: ContainerContainer containers: cell_slot: !type:ContainerSlot showEnts: False occludes: True - ent: 19648 + ent: 55 actions: !type:Container showEnts: False occludes: True ents: - - 39562 - - 39563 + - 57 + - 58 - type: Physics canCollide: True - type: ActionsContainer - type: Actions actions: - - 39563 + - 58 + - uid: 105 + components: + - type: Transform + pos: -31.577393,8.612033 + parent: 2 + - type: HandheldLight + toggleActionEntity: 106 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 106 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 109 + components: + - type: Transform + pos: 39.553074,-26.375849 + parent: 2 + - type: HandheldLight + toggleActionEntity: 110 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 110 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 26748 + components: + - type: Transform + pos: 56.785122,15.621483 + parent: 2 + - uid: 26749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.49618,9.6562805 + parent: 2 + - uid: 26750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-0.5 + parent: 2 + - uid: 26751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-4.5 + parent: 2 + - uid: 26752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.588104,4.643117 + parent: 2 + - uid: 26753 + components: + - type: Transform + pos: -62.609993,-71.49693 + parent: 2 + - uid: 26754 + components: + - type: Transform + pos: -37.520256,3.586957 + parent: 2 + - uid: 26755 + components: + - type: Transform + pos: -55.444374,-7.3688416 + parent: 2 + - uid: 26756 + components: + - type: Transform + pos: 24.58624,-76.29226 + parent: 2 + - uid: 26757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.403778,-48.186714 + parent: 2 + - uid: 26758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.594696,-47.42654 + parent: 2 + - uid: 26759 + components: + - type: Transform + pos: -57.563206,-38.405563 + parent: 2 + - uid: 26760 + components: + - type: Transform + pos: 46.49248,16.632973 + parent: 2 - proto: LampGold entities: - - uid: 19 + - uid: 95 components: - type: Transform pos: 36.678036,-67.21557 parent: 2 - type: HandheldLight - toggleActionEntity: 20 + toggleActionEntity: 96 - type: ContainerContainer containers: cell_slot: !type:ContainerSlot @@ -183564,17 +186999,17 @@ entities: showEnts: False occludes: True ents: - - 20 + - 96 - type: Physics canCollide: True - type: ActionsContainer - - uid: 24199 + - uid: 107 components: - type: Transform pos: 13.513687,16.437595 parent: 2 - type: HandheldLight - toggleActionEntity: 6227 + toggleActionEntity: 108 - type: ContainerContainer containers: cell_slot: !type:ContainerSlot @@ -183585,23 +187020,38 @@ entities: showEnts: False occludes: True ents: - - 6227 + - 108 - type: Physics canCollide: True - type: ActionsContainer - - uid: 24200 + - uid: 113 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.724102,20.653748 + pos: -34.553288,-7.330698 parent: 2 - - uid: 24201 + - type: HandheldLight + toggleActionEntity: 114 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 114 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 120 components: - type: Transform - pos: -34.553288,-7.330698 + pos: -11.525497,11.50857 parent: 2 - type: HandheldLight - toggleActionEntity: 30295 + toggleActionEntity: 121 - type: ContainerContainer containers: cell_slot: !type:ContainerSlot @@ -183612,19 +187062,30 @@ entities: showEnts: False occludes: True ents: - - 30295 + - 121 - type: Physics canCollide: True - type: ActionsContainer + - uid: 26761 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 26762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.724102,20.653748 + parent: 2 - proto: LampInterrogator entities: - - uid: 2879 + - uid: 103 components: - type: Transform pos: 51.51914,-9.259501 parent: 2 - type: HandheldLight - toggleActionEntity: 2880 + toggleActionEntity: 104 - type: ContainerContainer containers: cell_slot: !type:ContainerSlot @@ -183635,48 +187096,48 @@ entities: showEnts: False occludes: True ents: - - 2880 + - 104 - type: Physics canCollide: True - type: ActionsContainer - proto: LandMineExplosive entities: - - uid: 24209 + - uid: 26763 components: - type: Transform pos: -89.68935,-1.4331177 parent: 2 - - uid: 24210 + - uid: 26764 components: - type: Transform pos: -74.88008,-65.27804 parent: 2 - proto: LandMineModular entities: - - uid: 24211 + - uid: 26765 components: - type: Transform pos: -72.25352,-66.75768 parent: 2 - - uid: 24212 + - uid: 26766 components: - type: Transform pos: -70.84727,-64.67956 parent: 2 - - uid: 24213 + - uid: 26767 components: - type: Transform pos: -73.92539,-63.101433 parent: 2 - proto: Lantern entities: - - uid: 21 + - uid: 97 components: - type: Transform pos: 36.61548,-64.2816 parent: 2 - type: HandheldLight - toggleActionEntity: 22 + toggleActionEntity: 98 - type: ContainerContainer containers: cell_slot: !type:ContainerSlot @@ -183687,15 +187148,15 @@ entities: showEnts: False occludes: True ents: - - 22 + - 98 - type: ActionsContainer - - uid: 24214 + - uid: 111 components: - type: Transform pos: 33.484238,-63.94874 parent: 2 - type: HandheldLight - toggleActionEntity: 24776 + toggleActionEntity: 112 - type: ContainerContainer containers: cell_slot: !type:ContainerSlot @@ -183706,17 +187167,17 @@ entities: showEnts: False occludes: True ents: - - 24776 + - 112 - type: ActionsContainer - proto: LanternFlash entities: - - uid: 25 + - uid: 101 components: - type: Transform pos: 34.74378,-71.32181 parent: 2 - type: HandheldLight - toggleActionEntity: 26 + toggleActionEntity: 102 - type: ContainerContainer containers: cell_slot: !type:ContainerSlot @@ -183727,110 +187188,110 @@ entities: showEnts: False occludes: True ents: - - 26 + - 102 - type: ActionsContainer - - uid: 24215 + - uid: 26768 components: - type: Transform pos: -82.55063,-24.325563 parent: 2 - proto: LargeBeaker entities: - - uid: 14943 + - uid: 1992 + components: + - type: Transform + parent: 1980 + - type: Physics + canCollide: False + - uid: 26769 components: - type: Transform pos: -19.574066,-25.433702 parent: 2 - - uid: 14944 + - uid: 26770 components: - type: Transform pos: -19.363129,-25.199327 parent: 2 - - uid: 24216 + - uid: 26771 components: - type: Transform pos: -55.46563,-13.170682 parent: 2 - - uid: 24217 + - uid: 26772 components: - type: Transform pos: -34.649292,-21.959995 parent: 2 - - uid: 24218 + - uid: 26773 components: - type: Transform pos: -45.360683,-10.721433 parent: 2 - - uid: 24219 + - uid: 26774 components: - type: Transform pos: 29.956684,12.437808 parent: 2 - - uid: 24220 + - uid: 26775 components: - type: Transform pos: 33.612232,23.321634 parent: 2 - - uid: 34221 + - uid: 26776 components: - type: Transform pos: -6.8147693,-34.35171 parent: 2 - - uid: 34222 + - uid: 26777 components: - type: Transform pos: -6.9866443,-34.242336 parent: 2 - - uid: 34224 + - uid: 26778 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.7007656,-35.606224 parent: 2 - - uid: 39440 + - uid: 26779 components: - type: Transform pos: -11.488715,-39.018528 parent: 2 - - uid: 41026 - components: - - type: Transform - parent: 37041 - - type: Physics - canCollide: False - proto: LauncherCreamPie entities: - - uid: 18638 + - uid: 19919 components: - type: Transform - parent: 18629 + parent: 19910 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24221 + - uid: 26780 components: - type: Transform pos: -48.498768,-108.43273 parent: 2 - proto: LauncherSyringe entities: - - uid: 35798 + - uid: 26781 components: - type: Transform pos: -45.56118,-6.307379 parent: 2 - proto: LawyerPDA entities: - - uid: 2106 + - uid: 1376 components: - type: Transform - parent: 2104 + parent: 1372 - type: Physics canCollide: False - type: InsideEntityStorage - proto: LeadChemistryBottle entities: - - uid: 24222 + - uid: 26782 components: - type: MetaData desc: Что дед мороз мне подарит? @@ -183840,46 +187301,46 @@ entities: parent: 2 - proto: LeavesCannabisDried entities: - - uid: 17814 + - uid: 43 components: - type: Transform - parent: 27043 + parent: 35 - type: Stack count: 5 - type: Physics canCollide: False - proto: LedLightBulb entities: - - uid: 32736 + - uid: 40758 components: - type: Transform - parent: 32589 + parent: 40757 - type: LightBulb color: '#0000FFFF' - type: Physics canCollide: False - proto: Left4ZedChemistryBottle entities: - - uid: 24223 - components: - - type: Transform - pos: 36.64995,23.117214 - parent: 2 - - uid: 40798 + - uid: 2562 components: - type: Transform - parent: 40797 + parent: 2561 - type: Physics canCollide: False + - uid: 26783 + components: + - type: Transform + pos: 36.64995,23.117214 + parent: 2 - proto: LeftArmBorg entities: - - uid: 32308 + - uid: 26784 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.723213,-45.703697 parent: 2 - - uid: 32309 + - uid: 26785 components: - type: Transform rot: 3.141592653589793 rad @@ -183887,7 +187348,7 @@ entities: parent: 2 - proto: LeftArmBorgMining entities: - - uid: 32310 + - uid: 26786 components: - type: Transform rot: 3.141592653589793 rad @@ -183895,7 +187356,7 @@ entities: parent: 2 - proto: LeftArmBorgService entities: - - uid: 32311 + - uid: 26787 components: - type: Transform rot: 1.5707963267948966 rad @@ -183903,14 +187364,14 @@ entities: parent: 2 - proto: LeftArmSkeleton entities: - - uid: 24225 + - uid: 26788 components: - type: Transform pos: 65.5,-50.5 parent: 2 - proto: LeftFootMoth entities: - - uid: 24226 + - uid: 26789 components: - type: Transform rot: 1.5707963267948966 rad @@ -183918,32 +187379,32 @@ entities: parent: 2 - proto: LeftFootSkeleton entities: - - uid: 24227 + - uid: 26790 components: - type: Transform pos: 65.5,-50.5 parent: 2 - proto: LeftHandSkeleton entities: - - uid: 24228 + - uid: 26791 components: - type: Transform pos: 65.5,-50.5 parent: 2 - proto: LeftLegBorg entities: - - uid: 24229 + - uid: 26792 components: - type: Transform pos: -86.09143,-9.851116 parent: 2 - - uid: 26640 + - uid: 26793 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.548025,-29.466383 parent: 2 - - uid: 26641 + - uid: 26794 components: - type: Transform rot: 3.141592653589793 rad @@ -183951,26 +187412,26 @@ entities: parent: 2 - proto: LeftLegBorgEngineer entities: - - uid: 32315 + - uid: 26795 components: - type: Transform pos: -17.862097,-45.621193 parent: 2 - proto: LeftLegBorgJanitor entities: - - uid: 32313 + - uid: 26796 components: - type: Transform pos: -17.113838,-45.219322 parent: 2 - - uid: 32314 + - uid: 26797 components: - type: Transform pos: -17.098213,-45.359947 parent: 2 - proto: LeftLegBorgMining entities: - - uid: 32312 + - uid: 26798 components: - type: Transform rot: 1.5707963267948966 rad @@ -183978,7 +187439,7 @@ entities: parent: 2 - proto: LeftLegReptilian entities: - - uid: 24230 + - uid: 26799 components: - type: Transform rot: -1.5707963267948966 rad @@ -183986,14 +187447,14 @@ entities: parent: 2 - proto: LeftLegSkeleton entities: - - uid: 24231 + - uid: 26800 components: - type: Transform pos: 65.5,-50.5 parent: 2 - proto: LegionnaireBonfire entities: - - uid: 24233 + - uid: 26801 components: - type: MetaData desc: Легион имя мне. @@ -184002,342 +187463,334 @@ entities: parent: 2 - proto: LGBTQFlag entities: - - uid: 24234 + - uid: 26802 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,5.5 parent: 2 - - uid: 24235 + - uid: 26803 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,5.5 parent: 2 - - uid: 24236 + - uid: 26804 components: - type: Transform pos: -67.5,5.5 parent: 2 - proto: LGBTQHandyFlag entities: - - uid: 24237 + - uid: 26805 components: - type: Transform pos: -70.448006,4.5415454 parent: 2 - proto: LightBulbBroken entities: - - uid: 24238 + - uid: 26806 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.410088,-74.550186 parent: 2 - - uid: 24239 + - uid: 26807 components: - type: Transform pos: 84.382355,-44.48628 parent: 2 - proto: Lighter entities: - - uid: 24241 + - uid: 26808 components: - type: Transform pos: 8.601826,13.614818 parent: 2 - - uid: 24243 + - uid: 26809 components: - type: Transform pos: 57.742687,15.597738 parent: 2 - proto: LightHeadBorg entities: - - uid: 26596 + - uid: 26810 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.12615,-29.497633 parent: 2 - - uid: 32334 + - uid: 26811 components: - type: Transform pos: -16.486774,-45.63583 parent: 2 - proto: LightReplacer entities: - - uid: 24244 + - uid: 26812 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.522446,-29.444263 parent: 2 - - uid: 24245 + - uid: 26813 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.70501,-66.38782 parent: 2 -- proto: LightTube - entities: - - uid: 24246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.323677,22.725876 - parent: 2 - proto: LightTubeCrystalRed entities: - - uid: 24936 + - uid: 26815 components: - type: Transform - parent: 23275 + parent: 26814 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25026 + - uid: 26817 components: - type: Transform - parent: 39023 + parent: 26816 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25854 + - uid: 26819 components: - type: Transform - parent: 25853 + parent: 26818 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25862 + - uid: 26821 components: - type: Transform - parent: 25855 + parent: 26820 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25912 + - uid: 26823 components: - type: Transform - parent: 25863 + parent: 26822 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 25952 + - uid: 26825 components: - type: Transform - parent: 25936 + parent: 26824 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25979 + - uid: 26827 components: - type: Transform - parent: 25954 + parent: 26826 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 25983 + - uid: 26829 components: - type: Transform - parent: 25982 + parent: 26828 - type: LightBulb lightRadius: 2 - type: Physics canCollide: False - - uid: 26002 + - uid: 26831 components: - type: Transform - parent: 25984 + parent: 26830 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 26023 + - uid: 26833 components: - type: Transform - parent: 26010 + parent: 26832 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 26038 + - uid: 26835 components: - type: Transform - parent: 26027 + parent: 26834 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 26065 + - uid: 26837 components: - type: Transform - parent: 26064 + parent: 26836 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 26067 + - uid: 26839 components: - type: Transform - parent: 26066 + parent: 26838 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 26074 + - uid: 26841 components: - type: Transform - parent: 26068 + parent: 26840 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 26114 + - uid: 26843 components: - type: Transform - parent: 26075 + parent: 26842 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 36923 + - uid: 26845 components: - type: Transform - parent: 36922 + parent: 26844 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 36925 + - uid: 26847 components: - type: Transform - parent: 36924 + parent: 26846 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 39025 + - uid: 26849 components: - type: Transform - parent: 39024 + parent: 26848 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 39027 + - uid: 26851 components: - type: Transform - parent: 39026 + parent: 26850 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 39029 + - uid: 26853 components: - type: Transform - parent: 39028 + parent: 26852 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 39031 + - uid: 26855 components: - type: Transform - parent: 39030 + parent: 26854 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 39033 + - uid: 26857 components: - type: Transform - parent: 39032 + parent: 26856 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 39035 + - uid: 26859 components: - type: Transform - parent: 39034 + parent: 26858 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 39037 + - uid: 26861 components: - type: Transform - parent: 39036 + parent: 26860 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 39039 + - uid: 26863 components: - type: Transform - parent: 39038 + parent: 26862 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 39041 + - uid: 26865 components: - type: Transform - parent: 39040 + parent: 26864 - type: LightBulb lightEnergy: 1 - type: Physics canCollide: False - - uid: 39043 + - uid: 26867 components: - type: Transform - parent: 39042 + parent: 26866 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 39045 + - uid: 26869 components: - type: Transform - parent: 39044 + parent: 26868 - type: LightBulb lightRadius: 2 lightEnergy: 1 - type: Physics canCollide: False - - uid: 39047 + - uid: 26871 components: - type: Transform - parent: 39046 + parent: 26870 - type: LightBulb lightRadius: 2 lightEnergy: 1 @@ -184345,48 +187798,48 @@ entities: canCollide: False - proto: LiquidNitrogenCanister entities: - - uid: 24249 + - uid: 26872 components: - type: Transform pos: 36.5,-46.5 parent: 2 - - uid: 24250 + - uid: 26873 components: - type: Transform pos: -74.5,-27.5 parent: 2 - - uid: 24251 + - uid: 26874 components: - type: Transform pos: 95.5,-82.5 parent: 2 - proto: LiquidOxygenCanister entities: - - uid: 24252 + - uid: 26875 components: - type: Transform pos: 36.5,-47.5 parent: 2 - - uid: 24253 + - uid: 26876 components: - type: Transform pos: -75.5,-27.5 parent: 2 - - uid: 24254 + - uid: 26877 components: - type: Transform pos: 96.5,-82.5 parent: 2 - proto: LiveLetLiveCircuitBoard entities: - - uid: 6951 + - uid: 26878 components: - type: Transform pos: 17.495003,18.547726 parent: 2 - proto: LockableButtonArmory entities: - - uid: 61 + - uid: 26879 components: - type: MetaData desc: Эта кнопка открывает гермозатвор хранилища снаряжения красного кода. @@ -184397,9 +187850,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 15532: + 2194: - Pressed: Toggle - - uid: 9709 + - uid: 26880 components: - type: MetaData desc: Эта кнопка открывает гермозатвор хранилища снаряжения синего кода. @@ -184410,9 +187863,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 2759: + 2184: - Pressed: Toggle - - uid: 17447 + - uid: 26881 components: - type: MetaData name: Снаряжение @@ -184422,9 +187875,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 17397: + 2195: - Pressed: Toggle - - uid: 36101 + - uid: 26882 components: - type: MetaData name: блокировка камеры 1 @@ -184434,9 +187887,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 40619: + 2241: - Pressed: Toggle - - uid: 36102 + - uid: 26883 components: - type: MetaData name: блокировка камеры 4 @@ -184446,9 +187899,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 40621: + 2243: - Pressed: Toggle - - uid: 36104 + - uid: 26884 components: - type: MetaData name: блокировка камеры 2 @@ -184458,9 +187911,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 40622: + 2244: - Pressed: Toggle - - uid: 40611 + - uid: 26885 components: - type: MetaData name: блокировка камеры 5 @@ -184470,9 +187923,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 40623: + 2245: - Pressed: Toggle - - uid: 40633 + - uid: 26886 components: - type: MetaData name: блокировка камеры 3 @@ -184482,11 +187935,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 40620: + 2242: - Pressed: Toggle - proto: LockableButtonBrig entities: - - uid: 40781 + - uid: 26887 components: - type: MetaData name: вызов уборщика @@ -184496,13 +187949,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 40778: + 26713: - Pressed: Toggle - 24147: + 26712: - Pressed: Toggle - proto: LockableButtonCaptain entities: - - uid: 24255 + - uid: 26888 components: - type: MetaData name: кнопка вызова ОБР @@ -184515,25 +187968,25 @@ entities: - type: DeviceLinkSource range: 1000 linkedPorts: - 37908: + 40849: - Pressed: Open - 37909: + 40850: - Pressed: Toggle - 25752: + 28502: - Pressed: Toggle - - uid: 38378 + - uid: 41325 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.517624,-6.217499 - parent: 37887 + parent: 40828 - type: DeviceLinkSource linkedPorts: - 37907: + 40848: - Pressed: Toggle - proto: LockableButtonChapel entities: - - uid: 24256 + - uid: 26889 components: - type: MetaData desc: Эта кнопка закрывает ставни. @@ -184544,19 +187997,19 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28282: + 31087: - Pressed: Toggle - 28283: + 31088: - Pressed: Toggle - 28285: + 31090: - Pressed: Toggle - 28284: + 31089: - Pressed: Toggle - 28287: + 31092: - Pressed: Toggle - 28286: + 31091: - Pressed: Toggle - - uid: 41094 + - uid: 26890 components: - type: MetaData name: свет @@ -184566,15 +188019,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 25652: + 28326: - Pressed: Toggle - 25492: + 28179: - Pressed: Toggle - 25493: + 28180: - Pressed: Toggle - proto: LockableButtonChemistry entities: - - uid: 24257 + - uid: 26891 components: - type: MetaData desc: Эта кнопка переключает ставни. @@ -184585,21 +188038,21 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28293: + 31098: - Pressed: Toggle - 28289: + 31094: - Pressed: Toggle - 28292: + 31097: - Pressed: Toggle - 28290: + 31095: - Pressed: Toggle - 28291: + 31096: - Pressed: Toggle - 28288: + 31093: - Pressed: Toggle - proto: LockableButtonCommand entities: - - uid: 24258 + - uid: 26892 components: - type: Transform rot: -1.5707963267948966 rad @@ -184607,9 +188060,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1817: + 2143: - Pressed: Toggle - - uid: 24259 + - uid: 26893 components: - type: Transform rot: 1.5707963267948966 rad @@ -184617,33 +188070,33 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1816: + 2142: - Pressed: Toggle - - uid: 38893 + - uid: 41839 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5362701,2.5786743 - parent: 38722 + parent: 41669 - type: DeviceLinkSource linkedPorts: - 38741: + 41688: - Pressed: Toggle - 38740: + 41687: - Pressed: Toggle - 38737: + 41684: - Pressed: Toggle - 38736: + 41683: - Pressed: Toggle - 38739: + 41686: - Pressed: Toggle - 38738: + 41685: - Pressed: Toggle - 38742: + 41689: - Pressed: Toggle - proto: LockableButtonHeadOfSecurity entities: - - uid: 37830 + - uid: 26894 components: - type: MetaData name: кнопка вызова ОБР @@ -184654,13 +188107,13 @@ entities: - type: DeviceLinkSource range: 30000000 linkedPorts: - 37909: + 40850: - Pressed: Open - 31037: + 28505: - Pressed: On - proto: LockableButtonSalvage entities: - - uid: 34261 + - uid: 26895 components: - type: MetaData name: послать калибровочный сигнал @@ -184674,9 +188127,9 @@ entities: - - Salvage - type: DeviceLinkSource linkedPorts: - 34357: + 2209: - Pressed: Open - - uid: 34368 + - uid: 26896 components: - type: MetaData name: начать синхронизацию @@ -184687,11 +188140,11 @@ entities: - type: DeviceLinkSource range: 10000 linkedPorts: - 37706: + 2211: - Pressed: Open - proto: LockableButtonSecurity entities: - - uid: 742 + - uid: 26897 components: - type: MetaData desc: Эта кнопка переключает освещение. @@ -184702,11 +188155,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 15534: + 28060: - Pressed: Toggle - 37810: + 28393: - Pressed: Toggle - - uid: 32759 + - uid: 26898 components: - type: Transform rot: 3.141592653589793 rad @@ -184714,9 +188167,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 32971: + 2208: - Pressed: Toggle - - uid: 34386 + - uid: 26899 components: - type: MetaData desc: Гермозатвор @@ -184726,11 +188179,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 34360: + 2210: - Pressed: Toggle - 33208: + 39839: - Pressed: DoorBolt - - uid: 40446 + - uid: 26900 components: - type: MetaData desc: Эта кнопка блотирует шлюзы допросной. @@ -184741,11 +188194,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 36977: + 910: - Pressed: DoorBolt - 37055: + 899: - Pressed: DoorBolt - - uid: 40448 + - uid: 26901 components: - type: MetaData desc: Эта кнопка переключает освещение. @@ -184756,11 +188209,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 37810: + 28393: - Pressed: Toggle - 15534: + 28060: - Pressed: Toggle - - uid: 40643 + - uid: 26902 components: - type: MetaData name: ставни окон в космос @@ -184770,19 +188223,19 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 40638: + 31102: - Pressed: Toggle - 40639: + 31103: - Pressed: Toggle - 40640: + 31104: - Pressed: Toggle - 40641: + 31105: - Pressed: Toggle - 40642: + 31106: - Pressed: Toggle - proto: LockerAtmosphericsFilled entities: - - uid: 14644 + - uid: 20 components: - type: Transform pos: 37.5,-52.5 @@ -184793,8 +188246,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -184811,13 +188264,14 @@ entities: showEnts: False occludes: True ents: - - 14645 - - 14646 + - 21 + - 24 + - 23 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14647 + - uid: 25 components: - type: Transform pos: 36.5,-52.5 @@ -184828,8 +188282,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -184846,13 +188300,14 @@ entities: showEnts: False occludes: True ents: - - 14648 - - 14649 + - 26 + - 29 + - 28 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14650 + - uid: 30 components: - type: Transform pos: 35.5,-52.5 @@ -184863,8 +188318,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -184881,15 +188336,16 @@ entities: showEnts: False occludes: True ents: - - 14651 - - 14652 + - 31 + - 34 + - 33 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerBooze entities: - - uid: 17608 + - uid: 18743 components: - type: Transform pos: -4.5,-71.5 @@ -184920,45 +188376,45 @@ entities: showEnts: False occludes: True ents: - - 17610 - - 17611 - - 17609 + - 18745 + - 18746 + - 18744 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerBoozeFilled entities: - - uid: 24261 + - uid: 26903 components: - type: Transform pos: 22.5,7.5 parent: 2 - proto: LockerBotanistFilled entities: - - uid: 24262 + - uid: 26904 components: - type: Transform pos: 37.5,9.5 parent: 2 - - uid: 24263 + - uid: 26905 components: - type: Transform pos: 38.5,9.5 parent: 2 - - uid: 24264 + - uid: 26906 components: - type: Transform pos: 36.5,9.5 parent: 2 - proto: LockerBotanistLoot entities: - - uid: 37382 + - uid: 26907 components: - type: Transform pos: -14.5,-19.5 parent: 2 - - uid: 37385 + - uid: 26908 components: - type: Transform pos: -10.5,-26.5 @@ -184983,7 +188439,7 @@ entities: - 0 - proto: LockerBrigmedic entities: - - uid: 16246 + - uid: 2475 components: - type: Transform anchored: True @@ -184991,28 +188447,46 @@ entities: parent: 2 - type: Physics bodyType: Static + - 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: - - 2029 - - 1894 - - 1881 - - 1758 - - 1590 - - 16255 - - 16249 - - 16252 - - 16251 - - 16248 - - 16253 - - 16257 - - 16256 - - 16250 - - 16258 - - 16247 + - 2476 + - 2491 + - 2479 + - 2487 + - 2490 + - 2484 + - 2477 + - 2480 + - 2481 + - 2478 + - 2486 + - 2485 + - 2483 + - 2482 + - 2488 + - 2489 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -185021,14 +188495,14 @@ entities: prevFixedRotation: True - proto: LockerCaptainFilled entities: - - uid: 16742 + - uid: 26909 components: - type: Transform pos: 16.5,16.5 parent: 2 - proto: LockerChemistry entities: - - uid: 39987 + - uid: 15846 components: - type: Transform anchored: True @@ -185060,7 +188534,7 @@ entities: showEnts: False occludes: True ents: - - 41122 + - 15847 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -185069,7 +188543,7 @@ entities: prevFixedRotation: True - proto: LockerChemistryFilled entities: - - uid: 24267 + - uid: 26910 components: - type: Transform pos: -38.5,-31.5 @@ -185094,7 +188568,7 @@ entities: - 0 - proto: LockerChiefEngineerFilled entities: - - uid: 24268 + - uid: 26911 components: - type: Transform pos: 55.5,-76.5 @@ -185105,8 +188579,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -185123,14 +188597,14 @@ entities: showEnts: False occludes: True ents: - - 393 + - 26912 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerChiefMedicalOfficerFilled entities: - - uid: 24269 + - uid: 26913 components: - type: Transform pos: -38.5,-12.5 @@ -185141,8 +188615,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -185155,7 +188629,7 @@ entities: - 0 - proto: LockerClown entities: - - uid: 14567 + - uid: 1311 components: - type: Transform pos: -51.5,-112.5 @@ -185184,17 +188658,17 @@ entities: showEnts: False occludes: True ents: - - 254 - - 14571 - - 14570 - - 14569 - - 14568 - - 14572 + - 1312 + - 1316 + - 1315 + - 1314 + - 1313 + - 1317 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 18629 + - uid: 19910 components: - type: Transform pos: 36.5,-15.5 @@ -185223,22 +188697,22 @@ entities: showEnts: False occludes: True ents: - - 18635 - - 18632 - - 18638 - - 18637 - - 18630 - - 18631 - - 18634 - - 18636 - - 18633 + - 19916 + - 19913 + - 19919 + - 19918 + - 19911 + - 19912 + - 19915 + - 19917 + - 19914 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerDetective entities: - - uid: 1906 + - uid: 2259 components: - type: MetaData desc: Редкие книги по запросу. @@ -185273,17 +188747,17 @@ entities: showEnts: False occludes: True ents: - - 1908 - - 1911 - - 1910 - - 1909 - - 1907 - - 32 + - 2261 + - 2264 + - 2263 + - 2262 + - 2260 + - 2265 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 34904 + - uid: 15756 components: - type: MetaData name: шкаф @@ -185318,16 +188792,16 @@ entities: showEnts: False occludes: True ents: - - 34907 - - 34906 - - 34905 + - 15759 + - 15757 + - 15758 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerDetectiveFilled entities: - - uid: 23117 + - uid: 2374 components: - type: Transform pos: 39.5,-23.5 @@ -185356,14 +188830,14 @@ entities: showEnts: False occludes: True ents: - - 15363 + - 2375 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerElectricalSuppliesFilled entities: - - uid: 15165 + - uid: 26914 components: - type: Transform pos: 64.5,15.5 @@ -185388,49 +188862,49 @@ entities: - 0 - 0 - 0 - - uid: 24271 + - uid: 26915 components: - type: Transform pos: -72.5,11.5 parent: 2 - - uid: 24272 + - uid: 26916 components: - type: Transform pos: -55.5,-87.5 parent: 2 - - uid: 24273 + - uid: 26917 components: - type: Transform pos: 65.5,-71.5 parent: 2 - - uid: 24274 + - uid: 26918 components: - type: Transform pos: 79.5,-49.5 parent: 2 - - uid: 24276 + - uid: 26919 components: - type: Transform pos: -87.5,-19.5 parent: 2 - proto: LockerEngineerFilled entities: - - uid: 24277 + - uid: 26920 components: - type: Transform pos: 81.5,-52.5 parent: 2 - - uid: 24278 + - uid: 26921 components: - type: Transform pos: 49.5,-81.5 parent: 2 - - uid: 24279 + - uid: 26922 components: - type: Transform pos: 48.5,-81.5 parent: 2 - - uid: 24280 + - uid: 26923 components: - type: Transform pos: 51.5,-81.5 @@ -185453,34 +188927,34 @@ entities: - 0 - 0 - 0 - - uid: 24281 + - uid: 26924 components: - type: Transform pos: 50.5,-81.5 parent: 2 - - uid: 24282 + - uid: 26925 components: - type: Transform pos: 43.5,-60.5 parent: 2 - - uid: 24283 + - uid: 26926 components: - type: Transform pos: 44.5,-60.5 parent: 2 - proto: LockerEvidence entities: - - uid: 159 + - uid: 26927 components: - type: Transform pos: 72.5,-4.5 parent: 2 - - uid: 2764 + - uid: 26928 components: - type: Transform pos: 49.5,-20.5 parent: 2 - - uid: 9754 + - uid: 26929 components: - type: Transform pos: 49.5,-22.5 @@ -185503,27 +188977,27 @@ entities: - 0 - 0 - 0 - - uid: 14345 + - uid: 26930 components: - type: Transform pos: 42.5,4.5 parent: 2 - - uid: 14545 + - uid: 26931 components: - type: Transform pos: 42.5,1.5 parent: 2 - - uid: 14659 + - uid: 26932 components: - type: Transform pos: 44.5,8.5 parent: 2 - - uid: 15836 + - uid: 26933 components: - type: Transform pos: 50.5,-1.5 parent: 2 - - uid: 16230 + - uid: 26934 components: - type: Transform pos: 52.5,-0.5 @@ -185546,52 +189020,89 @@ entities: - 0 - 0 - 0 - - uid: 16669 + - uid: 26935 components: - type: Transform pos: 50.5,-0.5 parent: 2 - - uid: 19136 + - uid: 26936 components: - type: Transform pos: 44.5,3.5 parent: 2 - - uid: 19518 + - uid: 26937 components: - type: Transform pos: 44.5,0.5 parent: 2 - - uid: 25186 + - uid: 26938 components: - type: Transform pos: 73.5,-4.5 parent: 2 - - uid: 25198 + - uid: 26939 components: - type: Transform pos: 74.5,-4.5 parent: 2 - - uid: 25221 + - uid: 26940 components: - type: Transform pos: 75.5,-4.5 parent: 2 - - uid: 34953 + - uid: 26941 components: - type: Transform pos: 42.5,-9.5 parent: 2 - - uid: 40190 + - uid: 26942 components: - type: Transform pos: 42.5,-8.5 parent: 2 - proto: LockerFreezer entities: - - uid: 9030 + - uid: 18779 components: - type: Transform - pos: -19.5,-19.5 + pos: 25.5,14.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 234.99739 + 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: + - 18780 + - 18781 + - 18782 + - 18783 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 18852 + components: + - type: Transform + pos: -20.5,-19.5 parent: 2 - type: EntityStorage air: @@ -185617,15 +189128,15 @@ entities: showEnts: False occludes: True ents: - - 16868 + - 18853 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 13378 + - uid: 19903 components: - type: Transform - pos: -20.5,-19.5 + pos: -19.5,-19.5 parent: 2 - type: EntityStorage air: @@ -185651,49 +189162,12 @@ entities: showEnts: False occludes: True ents: - - 16869 + - 19904 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 17635 - components: - - type: Transform - pos: 25.5,14.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 234.99739 - 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: - - 17636 - - 17637 - - 17638 - - 17639 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 24161 + - uid: 26723 components: - type: Transform pos: -55.5,9.5 @@ -185722,26 +189196,23 @@ entities: showEnts: False occludes: True ents: - - 24162 + - 26724 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerFreezerBase entities: - - uid: 14753 + - uid: 2364 components: - type: Transform - anchored: True - pos: -5.5,-8.5 + pos: 87.5,-10.5 parent: 2 - - type: Physics - bodyType: Static - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14835 + temperature: 293.14673 moles: - 1.7459903 - 6.568249 @@ -185761,29 +189232,24 @@ entities: showEnts: False occludes: True ents: - - 1597 - - 14755 - - 14754 - - 14759 - - 14757 - - 14756 - - 14758 + - 2365 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - type: Pullable - prevFixedRotation: True - - uid: 24294 + - uid: 15665 components: - type: Transform - pos: -41.5,-86.5 + anchored: True + pos: -5.5,-8.5 parent: 2 + - type: Physics + bodyType: Static - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14673 + temperature: 293.14835 moles: - 1.7459903 - 6.568249 @@ -185803,13 +189269,20 @@ entities: showEnts: False occludes: True ents: - - 16875 - - 16870 + - 15672 + - 15667 + - 15666 + - 15671 + - 15669 + - 15668 + - 15670 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 24295 + - type: Pullable + prevFixedRotation: True + - uid: 18747 components: - type: Transform pos: 46.5,-75.5 @@ -185838,17 +189311,17 @@ entities: showEnts: False occludes: True ents: - - 17364 - - 17437 - - 19349 + - 18748 + - 18749 + - 18750 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 24296 + - uid: 18855 components: - type: Transform - pos: -39.5,-5.5 + pos: -41.5,-86.5 parent: 2 - type: EntityStorage air: @@ -185874,16 +189347,16 @@ entities: showEnts: False occludes: True ents: - - 19817 - - 19827 + - 18857 + - 18856 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 27632 + - uid: 19900 components: - type: Transform - pos: 87.5,-10.5 + pos: -39.5,-5.5 parent: 2 - type: EntityStorage air: @@ -185909,21 +189382,22 @@ entities: showEnts: False occludes: True ents: - - 22686 + - 19901 + - 19902 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerHeadOfPersonnelFilled entities: - - uid: 24297 + - uid: 26943 components: - type: Transform pos: -9.5,7.5 parent: 2 - proto: LockerHeadOfSecurityFilled entities: - - uid: 31636 + - uid: 26944 components: - type: Transform pos: 50.5,16.5 @@ -185952,14 +189426,14 @@ entities: showEnts: False occludes: True ents: - - 22687 + - 26945 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerMedical entities: - - uid: 14674 + - uid: 15584 components: - type: Transform pos: -19.5,10.5 @@ -185988,12 +189462,12 @@ entities: showEnts: False occludes: True ents: - - 14675 + - 15585 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14888 + - uid: 15805 components: - type: Transform pos: -51.5,-18.5 @@ -186022,36 +189496,36 @@ entities: showEnts: False occludes: True ents: - - 14889 + - 15806 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerMedicalFilled entities: - - uid: 24301 + - uid: 26946 components: - type: Transform pos: -50.5,-8.5 parent: 2 - - uid: 24302 + - uid: 26947 components: - type: Transform pos: -50.5,-9.5 parent: 2 - - uid: 24303 + - uid: 26948 components: - type: Transform pos: -50.5,-10.5 parent: 2 - - uid: 24304 + - uid: 26949 components: - type: Transform pos: -47.5,-40.5 parent: 2 - proto: LockerMedicine entities: - - uid: 2126 + - uid: 2513 components: - type: Transform pos: -19.5,12.5 @@ -186080,22 +189554,17 @@ entities: showEnts: False occludes: True ents: - - 2127 + - 2514 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerMedicineFilled entities: - - uid: 24305 - components: - - type: Transform - pos: -51.5,-17.5 - parent: 2 - - uid: 24306 + - uid: 15813 components: - type: Transform - pos: -64.5,-23.5 + pos: -47.5,-11.5 parent: 2 - type: EntityStorage air: @@ -186115,15 +189584,26 @@ entities: - 0 - 0 - 0 - - uid: 24307 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15814 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 26950 components: - type: Transform - pos: -48.5,-11.5 + pos: -51.5,-17.5 parent: 2 - - uid: 24308 + - uid: 26951 components: - type: Transform - pos: -47.5,-11.5 + pos: -64.5,-23.5 parent: 2 - type: EntityStorage air: @@ -186143,25 +189623,19 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6167 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 40155 + - uid: 26952 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 2 + - uid: 26953 components: - type: Transform pos: -59.5,-25.5 parent: 2 - proto: LockerMime entities: - - uid: 14692 + - uid: 15625 components: - type: Transform pos: 34.5,-15.5 @@ -186190,19 +189664,19 @@ entities: showEnts: False occludes: True ents: - - 14695 - - 14697 - - 14698 - - 14694 - - 14693 - - 14696 + - 15628 + - 15630 + - 15631 + - 15627 + - 15626 + - 15629 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerParamedicFilled entities: - - uid: 24309 + - uid: 26954 components: - type: Transform pos: -51.5,-12.5 @@ -186227,7 +189701,7 @@ entities: - 0 - proto: LockerQuarterMasterFilled entities: - - uid: 24310 + - uid: 26955 components: - type: Transform pos: -0.5,-98.5 @@ -186252,11 +189726,56 @@ entities: - 0 - proto: LockerRepresentative entities: - - uid: 38155 + - uid: 1785 + components: + - type: Transform + anchored: True + pos: -14.5,10.5 + parent: 2 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1791 + - 1792 + - 1786 + - 1790 + - 1789 + - 1787 + - 1788 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Pullable + prevFixedRotation: True + - uid: 41096 components: - type: Transform pos: -5.5,-4.5 - parent: 37887 + parent: 40828 - type: EntityStorage air: volume: 200 @@ -186281,19 +189800,19 @@ entities: showEnts: False occludes: True ents: - - 38158 - - 38160 - - 38156 - - 38159 - - 38161 - - 38157 + - 41099 + - 41101 + - 41097 + - 41100 + - 41102 + - 41098 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerResearchDirectorFilled entities: - - uid: 24311 + - uid: 1345 components: - type: Transform pos: -35.5,-67.5 @@ -186322,16 +189841,16 @@ entities: showEnts: False occludes: True ents: - - 396 - - 400 - - 401 + - 1346 + - 1348 + - 1347 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerSalvageSpecialistFilled entities: - - uid: 24314 + - uid: 26956 components: - type: Transform pos: -4.5,-89.5 @@ -186360,12 +189879,12 @@ entities: showEnts: False occludes: True ents: - - 471 + - 26957 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 24315 + - uid: 26958 components: - type: Transform pos: -4.5,-90.5 @@ -186394,12 +189913,12 @@ entities: showEnts: False occludes: True ents: - - 562 + - 26959 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 24316 + - uid: 26960 components: - type: Transform pos: -4.5,-91.5 @@ -186428,24 +189947,14 @@ entities: showEnts: False occludes: True ents: - - 783 + - 26961 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerScienceFilled entities: - - uid: 24317 - components: - - type: Transform - pos: -46.5,-83.5 - parent: 2 - - uid: 24318 - components: - - type: Transform - pos: -41.5,-76.5 - parent: 2 - - uid: 24319 + - uid: 15632 components: - type: Transform pos: -41.5,-77.5 @@ -186474,19 +189983,29 @@ entities: showEnts: False occludes: True ents: - - 6175 + - 15633 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 24320 + - uid: 26962 + components: + - type: Transform + pos: -46.5,-83.5 + parent: 2 + - uid: 26963 + components: + - type: Transform + pos: -41.5,-76.5 + parent: 2 + - uid: 26964 components: - type: Transform pos: -41.5,-57.5 parent: 2 - proto: LockerSecurity entities: - - uid: 14573 + - uid: 15484 components: - type: MetaData name: шкаф пилота @@ -186517,33 +190036,33 @@ entities: showEnts: False occludes: True ents: - - 14575 - - 14577 - - 14583 - - 14574 - - 14579 - - 14576 - - 14581 - - 14582 - - 14578 - - 14580 + - 15486 + - 15488 + - 15494 + - 15485 + - 15490 + - 15487 + - 15492 + - 15493 + - 15489 + - 15491 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - type: Pullable prevFixedRotation: True - - uid: 24324 + - uid: 26965 components: - type: Transform pos: -70.5,-50.5 parent: 2 - - uid: 24325 + - uid: 26966 components: - type: Transform pos: -76.5,-50.5 parent: 2 - - uid: 24329 + - uid: 26967 components: - type: Transform pos: -53.5,11.5 @@ -186572,76 +190091,76 @@ entities: showEnts: False occludes: True ents: - - 24330 + - 26968 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerSecurityFilled entities: - - uid: 155 + - uid: 26969 components: - type: Transform pos: 65.5,3.5 parent: 2 - - uid: 17431 + - uid: 26970 components: - type: Transform pos: 65.5,5.5 parent: 2 - - uid: 19125 + - uid: 26971 components: - type: Transform pos: 64.5,5.5 parent: 2 - - uid: 19519 + - uid: 26972 components: - type: Transform pos: 62.5,3.5 parent: 2 - - uid: 19524 + - uid: 26973 components: - type: Transform pos: 62.5,5.5 parent: 2 - - uid: 19590 + - uid: 26974 components: - type: Transform pos: 63.5,5.5 parent: 2 - - uid: 19611 + - uid: 26975 components: - type: Transform pos: 63.5,3.5 parent: 2 - - uid: 19612 + - uid: 26976 components: - type: Transform pos: 64.5,3.5 parent: 2 - - uid: 24331 + - uid: 26977 components: - type: Transform pos: 75.5,-26.5 parent: 2 - - uid: 24332 + - uid: 26978 components: - type: Transform pos: -2.5,-83.5 parent: 2 - - uid: 24333 + - uid: 26979 components: - type: Transform pos: -47.5,-51.5 parent: 2 - - uid: 24334 + - uid: 26980 components: - type: Transform pos: -46.5,-34.5 parent: 2 - proto: LockerSteel entities: - - uid: 33761 + - uid: 15479 components: - type: Transform pos: 15.5,-21.5 @@ -186670,19 +190189,19 @@ entities: showEnts: False occludes: True ents: - - 37762 + - 15480 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerWallMedical entities: - - uid: 37919 + - uid: 40860 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-13.5 - parent: 37887 + parent: 40828 - type: EntityStorage air: volume: 200 @@ -186707,12 +190226,12 @@ entities: showEnts: False occludes: True ents: - - 37920 - - 37921 - - 37922 + - 40861 + - 40862 + - 40863 - proto: LockerWallMedicalFilled entities: - - uid: 17812 + - uid: 26981 components: - type: Transform rot: 3.141592653589793 rad @@ -186736,26 +190255,33 @@ entities: - 0 - 0 - 0 - - uid: 38894 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26982 + - uid: 41840 components: - type: Transform pos: 5.5,-0.5 - parent: 38722 + parent: 41669 - proto: LockerWardenFilled entities: - - uid: 13980 + - uid: 26983 components: - type: Transform pos: 53.5,-21.5 parent: 2 - proto: LockerWeldingSuppliesFilled entities: - - uid: 13038 + - uid: 26984 components: - type: Transform pos: 81.5,-66.5 parent: 2 - - uid: 24344 + - uid: 26985 components: - type: Transform pos: -38.5,-112.5 @@ -186778,41 +190304,41 @@ entities: - 0 - 0 - 0 - - uid: 24346 + - uid: 26986 components: - type: Transform pos: 37.5,30.5 parent: 2 - - uid: 24347 + - uid: 26987 components: - type: Transform pos: 36.5,33.5 parent: 2 - - uid: 25985 + - uid: 26988 components: - type: Transform pos: -61.5,-18.5 parent: 2 - proto: Log entities: - - uid: 24348 + - uid: 26989 components: - type: Transform pos: -80.94435,-17.299232 parent: 2 - - uid: 24349 + - uid: 26990 components: - type: Transform pos: -81.25685,-17.189857 parent: 2 - - uid: 24350 + - uid: 26991 components: - type: Transform pos: -81.25685,-17.424232 parent: 2 - proto: LogicGateAnd entities: - - uid: 30479 + - uid: 26992 components: - type: Transform pos: -9.303374,-51.572456 @@ -186821,16 +190347,16 @@ entities: invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 37709: + 31210: - Output: Trigger - proto: LogicGateOr entities: - - uid: 38379 + - uid: 41326 components: - type: Transform anchored: True pos: -4.5,-0.5 - parent: 37887 + parent: 40828 - type: LogicGate gate: And - type: DeviceLinkSink @@ -186838,29 +190364,29 @@ entities: - type: Physics canCollide: False bodyType: Static - - uid: 38380 + - uid: 41327 components: - type: Transform anchored: True pos: -4.5,-1.5 - parent: 37887 + parent: 40828 - type: LogicGate gate: And - type: DeviceLinkSink invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 38452: + 41399: - Output: Trigger - type: Physics canCollide: False bodyType: Static - - uid: 38381 + - uid: 41328 components: - type: Transform anchored: True pos: -4.5,-2.5 - parent: 37887 + parent: 40828 - type: LogicGate gate: And - type: DeviceLinkSink @@ -186870,295 +190396,297 @@ entities: bodyType: Static - proto: LogProbeCartridge entities: - - uid: 804 + - uid: 1377 components: - type: Transform - parent: 2104 + parent: 1372 - type: Physics canCollide: False - type: InsideEntityStorage - proto: LootSpawnerArmoryArmorOnly entities: - - uid: 37842 + - uid: 26993 components: - type: Transform pos: 65.5,-19.5 parent: 2 - - uid: 40776 + - uid: 26994 components: - type: Transform pos: 60.5,-19.5 parent: 2 - proto: LootSpawnerArmoryGunsOnly entities: - - uid: 37841 + - uid: 26995 components: - type: Transform pos: 62.5,-17.5 parent: 2 - - uid: 40499 + - uid: 26996 components: - type: Transform pos: 65.5,-17.5 parent: 2 - proto: LootSpawnerCableCoil entities: - - uid: 24351 + - uid: 26997 components: - type: Transform pos: 34.5,30.5 parent: 2 - proto: LootSpawnerContraband entities: - - uid: 24352 + - uid: 26998 components: - type: Transform pos: 3.5,-95.5 parent: 2 - - uid: 24354 + - uid: 26999 components: - type: Transform pos: -88.5,-0.5 parent: 2 - proto: LootSpawnerContrabandHigh entities: - - uid: 39734 + - uid: 27000 components: - type: Transform pos: 8.5,-59.5 parent: 2 - proto: LootSpawnerIndustrial entities: - - uid: 24358 + - uid: 27001 components: - type: Transform pos: 104.5,-57.5 parent: 2 - - uid: 24359 + - uid: 27002 components: - type: Transform pos: 53.5,-48.5 parent: 2 - - uid: 39725 + - uid: 27003 components: - type: Transform pos: 5.5,-46.5 parent: 2 - - uid: 39726 + - uid: 27004 components: - type: Transform pos: -10.5,-27.5 parent: 2 - - uid: 40005 + - uid: 27005 components: - type: Transform pos: 57.5,-49.5 parent: 2 - proto: LootSpawnerIndustrialFluff entities: - - uid: 24360 + - uid: 27006 components: - type: Transform pos: -11.5,-85.5 parent: 2 - - uid: 40004 + - uid: 27007 components: - type: Transform pos: 58.5,-49.5 parent: 2 - proto: LootSpawnerMaterials entities: - - uid: 24361 + - uid: 27008 components: - type: Transform pos: -42.5,-113.5 parent: 2 - - uid: 24362 + - uid: 27009 components: - type: Transform pos: 70.5,-45.5 parent: 2 - - uid: 24363 + - uid: 27010 components: - type: Transform pos: 31.5,23.5 parent: 2 - proto: LootSpawnerMaterialsHighValue entities: - - uid: 39611 + - uid: 27011 components: - type: Transform pos: 14.5,-48.5 parent: 2 - - uid: 41117 + - uid: 27012 components: - type: Transform pos: -5.5,-54.5 parent: 2 - proto: LootSpawnerMaterialsHighValueConstruction entities: - - uid: 24364 + - uid: 27013 components: - type: Transform pos: -19.5,16.5 parent: 2 - - uid: 24365 + - uid: 27014 components: - type: Transform pos: -82.5,-23.5 parent: 2 - - uid: 24366 + - uid: 27015 components: - type: Transform pos: 74.5,-50.5 parent: 2 - - uid: 39610 + - uid: 27016 components: - type: Transform pos: -1.5,-51.5 parent: 2 - proto: LootSpawnerMaterialsSurplus entities: - - uid: 24367 + - uid: 27017 components: - type: Transform pos: -32.5,-23.5 parent: 2 - - uid: 24368 + - uid: 27018 components: - type: Transform pos: 96.5,-49.5 parent: 2 - - uid: 24369 + - uid: 27019 components: - type: Transform pos: -46.5,-121.5 parent: 2 - - uid: 24370 + - uid: 27020 components: - type: Transform pos: -52.5,-83.5 parent: 2 - - uid: 24371 + - uid: 27021 components: - type: Transform pos: -63.5,-2.5 parent: 2 - - uid: 24372 + - uid: 27022 components: - type: Transform pos: -39.5,-78.5 parent: 2 - - uid: 24373 + - uid: 27023 components: - type: Transform pos: -39.5,-78.5 parent: 2 - - uid: 24374 + - uid: 27024 components: - type: Transform pos: -66.5,-23.5 parent: 2 - - uid: 24375 + - uid: 27025 components: - type: Transform pos: -78.5,-27.5 parent: 2 - - uid: 24376 + - uid: 27026 components: - type: Transform pos: -57.5,-53.5 parent: 2 - - uid: 24377 + - uid: 27027 components: - type: Transform pos: -57.5,-74.5 parent: 2 - - uid: 24378 + - uid: 27028 components: - type: Transform pos: -56.5,-101.5 parent: 2 - proto: LootSpawnerMedicalClassy entities: - - uid: 24379 + - uid: 27029 components: - type: Transform pos: -54.5,-7.5 parent: 2 - - uid: 24380 + - uid: 27030 components: - type: Transform pos: -57.5,-17.5 parent: 2 - - uid: 24381 + - uid: 27031 components: - type: Transform pos: -54.5,0.5 parent: 2 - - uid: 39722 + - uid: 27032 components: - type: Transform pos: 20.5,-26.5 parent: 2 - - uid: 39723 + - uid: 27033 components: - type: Transform pos: 3.5,-61.5 parent: 2 - - uid: 39724 + - uid: 27034 components: - type: Transform pos: 13.5,-48.5 parent: 2 - proto: LootSpawnerMedicalMinor entities: - - uid: 24382 + - uid: 27035 components: - type: Transform pos: -45.5,-2.5 parent: 2 - proto: LootSpawnerRandomCrateEngineering entities: - - uid: 32572 + - uid: 27036 components: - type: Transform - pos: -17.5,10.5 + pos: -9.5,-46.5 parent: 2 - - uid: 39170 +- proto: LootSpawnerRandomCrateSecurity + entities: + - uid: 16266 components: - type: Transform - pos: -9.5,-46.5 + pos: 8.5,-61.5 parent: 2 - proto: LootSpawnerSecurityBasic entities: - - uid: 24383 + - uid: 27037 components: - type: Transform pos: -51.5,12.5 parent: 2 - proto: MachineAnomalyGenerator entities: - - uid: 24384 + - uid: 27038 components: - type: Transform pos: -49.5,-81.5 parent: 2 - proto: MachineAnomalyVessel entities: - - uid: 24385 + - uid: 27039 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-85.5 parent: 2 - - uid: 24386 + - uid: 27040 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-85.5 parent: 2 - - uid: 24387 + - uid: 27041 components: - type: Transform rot: 3.141592653589793 rad @@ -187166,335 +190694,337 @@ entities: parent: 2 - proto: MachineAPE entities: - - uid: 24388 + - uid: 27042 components: - type: Transform pos: -48.5,-83.5 parent: 2 - - uid: 24389 + - uid: 27043 components: - type: Transform pos: -49.5,-83.5 parent: 2 - - uid: 24390 + - uid: 27044 components: - type: Transform pos: -50.5,-83.5 parent: 2 - proto: MachineArtifactAnalyzer entities: - - uid: 24391 + - uid: 27045 components: - type: Transform pos: -73.5,-77.5 parent: 2 - - uid: 24392 + - uid: 27046 components: - type: Transform pos: -71.5,-73.5 parent: 2 - proto: MachineCentrifuge entities: - - uid: 24393 + - uid: 27047 components: - type: Transform pos: -36.5,-32.5 parent: 2 - proto: MachineElectrolysisUnit entities: - - uid: 24394 + - uid: 27048 components: - type: Transform pos: -36.5,-30.5 parent: 2 - proto: MachineFrame entities: - - uid: 17603 + - uid: 27049 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-14.5 parent: 2 - - uid: 18053 + - uid: 27050 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-13.5 parent: 2 - - uid: 18397 + - uid: 27051 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-15.5 parent: 2 - - uid: 18457 + - uid: 27052 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-16.5 parent: 2 - - uid: 18676 + - uid: 27053 components: - type: Transform pos: -58.5,-17.5 parent: 2 - - uid: 23139 + - uid: 27054 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-18.5 parent: 2 - - uid: 23248 + - uid: 27055 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-16.5 parent: 2 - - uid: 23265 + - uid: 27056 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-14.5 parent: 2 - - uid: 24396 + - uid: 27057 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,7.5 parent: 2 - - uid: 24397 + - uid: 27058 components: - type: Transform pos: -39.5,-51.5 parent: 2 - - uid: 24398 + - uid: 27059 components: - type: Transform pos: -38.5,-63.5 parent: 2 - - uid: 24399 + - uid: 27060 components: - type: Transform pos: -37.5,-63.5 parent: 2 - - uid: 24400 + - uid: 27061 components: - type: Transform pos: -36.5,-63.5 parent: 2 - - uid: 24401 + - uid: 27062 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-33.5 parent: 2 - - uid: 24402 + - uid: 27063 components: - type: Transform rot: 1.5707963267948966 rad pos: 107.5,-57.5 parent: 2 - - uid: 24405 + - uid: 27064 components: - type: Transform pos: -82.5,-9.5 parent: 2 - - uid: 24406 + - uid: 27065 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,-69.5 parent: 2 - - uid: 24407 + - uid: 27066 components: - type: Transform pos: 104.5,-68.5 parent: 2 - - uid: 32413 + - uid: 27067 components: - type: Transform pos: -18.5,-50.5 parent: 2 - - uid: 32414 + - uid: 27068 components: - type: Transform pos: -17.5,-47.5 parent: 2 - - uid: 32575 - components: - - type: Transform - pos: -13.5,6.5 - parent: 2 - - uid: 33811 + - uid: 27069 components: - type: Transform pos: 8.5,-46.5 parent: 2 - - uid: 33812 + - uid: 27070 components: - type: Transform pos: 11.5,-46.5 parent: 2 - - uid: 33814 + - uid: 27071 components: - type: Transform pos: 8.5,-48.5 parent: 2 - - uid: 39116 + - uid: 27072 components: - type: Transform pos: -7.5,-38.5 parent: 2 - proto: MachineFrameDestroyed entities: - - uid: 24411 + - uid: 27073 components: - type: Transform pos: -46.5,2.5 parent: 2 - - uid: 26806 + - uid: 27074 components: - type: Transform pos: -59.5,-21.5 parent: 2 - proto: MagazineBoxAntiMateriel entities: - - uid: 371 + - uid: 27075 components: - type: Transform pos: 64.55751,-19.446735 parent: 2 - - uid: 28014 + - uid: 27076 components: - type: Transform - pos: 8.563635,-22.442852 + pos: 12.630977,-19.490175 parent: 2 - proto: MagazineBoxRifle entities: - - uid: 37940 + - uid: 40881 components: - type: Transform - parent: 37938 + parent: 40879 - type: Physics canCollide: False - type: InsideEntityStorage - proto: MagazineLightRifle entities: - - uid: 37799 + - uid: 27077 components: - type: Transform pos: 63.522007,-19.514818 parent: 2 - - uid: 37800 + - uid: 27078 components: - type: Transform pos: 63.640064,-19.507874 parent: 2 - - uid: 38373 + - uid: 41319 components: - type: Transform - parent: 38372 + parent: 41318 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38374 + - uid: 41320 components: - type: Transform - parent: 38372 + parent: 41318 - type: Physics canCollide: False - type: InsideEntityStorage +- proto: MagazineLightRifleMaxim + entities: + - uid: 27079 + components: + - type: Transform + pos: 8.505977,-22.47455 + parent: 2 - proto: MagazinePistolPractice entities: - - uid: 2602 + - uid: 27080 components: - type: Transform pos: 61.458096,9.5217905 parent: 2 - - uid: 7790 + - uid: 27081 components: - type: Transform pos: 61.708096,9.5842905 parent: 2 - proto: MagazineRifle entities: - - uid: 37941 + - uid: 40882 components: - type: Transform - parent: 37938 + parent: 40879 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37942 + - uid: 40883 components: - type: Transform - parent: 37938 + parent: 40879 - type: Physics canCollide: False - type: InsideEntityStorage - proto: MagicDiceBag entities: - - uid: 24421 + - uid: 27082 components: - type: Transform pos: -41.31845,-99.86085 parent: 2 - - uid: 24422 + - uid: 27083 components: - type: Transform rot: -1.5707963267948966 rad pos: -67.08166,-7.3699484 parent: 2 - - uid: 24423 + - uid: 27084 components: - type: Transform pos: 82.58399,-49.23987 parent: 2 - proto: MailingUnit entities: - - uid: 24424 + - uid: 27085 components: - type: Transform pos: -55.5,-89.5 parent: 2 - type: MailingUnit tag: santa - - uid: 24425 + - uid: 27086 components: - type: Transform pos: -9.5,-81.5 parent: 2 - type: MailingUnit tag: cargo - - uid: 24426 + - uid: 27087 components: - type: Transform pos: -3.5,11.5 parent: 2 - type: MailingUnit tag: personal - - uid: 24427 + - uid: 27088 components: - type: Transform pos: -37.5,-46.5 parent: 2 - type: MailingUnit tag: RND - - uid: 24428 + - uid: 27089 components: - type: Transform pos: 48.5,-46.5 parent: 2 - type: MailingUnit tag: engineers - - uid: 24430 + - uid: 27090 components: - type: Transform pos: -38.5,-25.5 parent: 2 - type: MailingUnit tag: med - - uid: 32768 + - uid: 27091 components: - type: Transform pos: 50.5,-13.5 @@ -187503,444 +191033,444 @@ entities: tag: security - proto: MaintenanceFluffSpawner entities: - - uid: 24431 + - uid: 27092 components: - type: Transform pos: 57.5,-46.5 parent: 2 - - uid: 24432 + - uid: 27093 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-95.5 parent: 2 - - uid: 24433 + - uid: 27094 components: - type: Transform pos: -39.5,-91.5 parent: 2 - - uid: 24434 + - uid: 27095 components: - type: Transform pos: -63.5,-56.5 parent: 2 - - uid: 24435 + - uid: 27096 components: - type: Transform pos: -60.5,-40.5 parent: 2 - - uid: 24436 + - uid: 27097 components: - type: Transform pos: 76.5,-19.5 parent: 2 - - uid: 24437 + - uid: 27098 components: - type: Transform pos: -57.5,-53.5 parent: 2 - - uid: 24439 + - uid: 27099 components: - type: Transform pos: 76.5,-18.5 parent: 2 - - uid: 24441 + - uid: 27100 components: - type: Transform pos: 48.5,26.5 parent: 2 - - uid: 24442 + - uid: 27101 components: - type: Transform pos: 82.5,-15.5 parent: 2 - - uid: 24444 + - uid: 27102 components: - type: Transform pos: 96.5,-50.5 parent: 2 - - uid: 24445 + - uid: 27103 components: - type: Transform pos: 84.5,-46.5 parent: 2 - - uid: 24446 + - uid: 27104 components: - type: Transform pos: -48.5,-120.5 parent: 2 - - uid: 24447 + - uid: 27105 components: - type: Transform pos: 95.5,-48.5 parent: 2 - - uid: 24448 + - uid: 27106 components: - type: Transform pos: 92.5,-49.5 parent: 2 - - uid: 24452 + - uid: 27107 components: - type: Transform pos: -62.5,2.5 parent: 2 - - uid: 24453 + - uid: 27108 components: - type: Transform pos: -60.5,1.5 parent: 2 - - uid: 24454 + - uid: 27109 components: - type: Transform pos: -59.5,1.5 parent: 2 - - uid: 24455 + - uid: 27110 components: - type: Transform pos: -59.5,4.5 parent: 2 - - uid: 24456 + - uid: 27111 components: - type: Transform pos: -35.5,-107.5 parent: 2 - - uid: 24457 + - uid: 27112 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-111.5 parent: 2 - - uid: 24458 + - uid: 27113 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-109.5 parent: 2 - - uid: 24459 + - uid: 27114 components: - type: Transform pos: -50.5,-114.5 parent: 2 - - uid: 24460 + - uid: 27115 components: - type: Transform pos: -81.5,3.5 parent: 2 - - uid: 24461 + - uid: 27116 components: - type: Transform pos: -74.5,-19.5 parent: 2 - - uid: 24464 + - uid: 27117 components: - type: Transform pos: 37.5,18.5 parent: 2 - proto: MaintenancePlantSpawner entities: - - uid: 24465 + - uid: 27118 components: - type: Transform pos: 33.5,32.5 parent: 2 - - uid: 24466 + - uid: 27119 components: - type: Transform pos: 20.5,10.5 parent: 2 - - uid: 24467 + - uid: 27120 components: - type: Transform pos: 42.5,24.5 parent: 2 - - uid: 24468 + - uid: 27121 components: - type: Transform pos: -23.5,14.5 parent: 2 - - uid: 24469 + - uid: 27122 components: - type: Transform pos: -43.5,15.5 parent: 2 - - uid: 24470 + - uid: 27123 components: - type: Transform pos: -49.5,15.5 parent: 2 - - uid: 24471 + - uid: 27124 components: - type: Transform pos: -59.5,-8.5 parent: 2 - - uid: 24472 + - uid: 27125 components: - type: Transform pos: -67.5,-6.5 parent: 2 - - uid: 24473 + - uid: 27126 components: - type: Transform pos: -67.5,-32.5 parent: 2 - - uid: 24474 + - uid: 27127 components: - type: Transform pos: -61.5,-22.5 parent: 2 - - uid: 24475 + - uid: 27128 components: - type: Transform pos: -63.5,-54.5 parent: 2 - - uid: 24476 + - uid: 27129 components: - type: Transform pos: -49.5,-77.5 parent: 2 - - uid: 24477 + - uid: 27130 components: - type: Transform pos: -48.5,-93.5 parent: 2 - - uid: 24478 + - uid: 27131 components: - type: Transform pos: 35.5,-76.5 parent: 2 - - uid: 24479 + - uid: 27132 components: - type: Transform pos: -27.5,17.5 parent: 2 - - uid: 24480 + - uid: 27133 components: - type: Transform pos: 90.5,-49.5 parent: 2 - - uid: 24481 + - uid: 27134 components: - type: Transform pos: -39.5,-120.5 parent: 2 - - uid: 24482 + - uid: 27135 components: - type: Transform pos: -34.5,-119.5 parent: 2 - - uid: 24483 + - uid: 27136 components: - type: Transform pos: 103.5,-44.5 parent: 2 - - uid: 24491 + - uid: 27137 components: - type: Transform pos: -63.5,0.5 parent: 2 - - uid: 24493 + - uid: 27138 components: - type: Transform pos: -41.5,-106.5 parent: 2 - - uid: 24494 + - uid: 27139 components: - type: Transform pos: -83.5,-1.5 parent: 2 - - uid: 24495 + - uid: 27140 components: - type: Transform pos: -84.5,-5.5 parent: 2 - - uid: 24496 + - uid: 27141 components: - type: Transform pos: 28.5,27.5 parent: 2 - - uid: 24497 + - uid: 27142 components: - type: Transform pos: 30.5,27.5 parent: 2 - - uid: 24498 + - uid: 27143 components: - type: Transform pos: 31.5,29.5 parent: 2 - proto: MaintenanceToolSpawner entities: - - uid: 24499 + - uid: 27144 components: - type: Transform pos: -50.5,-75.5 parent: 2 - - uid: 24500 + - uid: 27145 components: - type: Transform pos: 78.5,-44.5 parent: 2 - - uid: 24501 + - uid: 27146 components: - type: Transform pos: 19.5,7.5 parent: 2 - - uid: 24502 + - uid: 27147 components: - type: Transform pos: -42.5,-91.5 parent: 2 - - uid: 24503 + - uid: 27148 components: - type: Transform pos: -68.5,-34.5 parent: 2 - - uid: 24504 + - uid: 27149 components: - type: Transform pos: 34.5,19.5 parent: 2 - - uid: 24505 + - uid: 27150 components: - type: Transform pos: -37.5,-93.5 parent: 2 - - uid: 24506 + - uid: 27151 components: - type: Transform pos: 71.5,-19.5 parent: 2 - - uid: 24508 + - uid: 27152 components: - type: Transform pos: 104.5,-44.5 parent: 2 - - uid: 24509 + - uid: 27153 components: - type: Transform pos: -39.5,-123.5 parent: 2 - - uid: 24510 + - uid: 27154 components: - type: Transform pos: -43.5,-121.5 parent: 2 - - uid: 24517 + - uid: 27155 components: - type: Transform pos: -50.5,-105.5 parent: 2 - - uid: 24518 + - uid: 27156 components: - type: Transform pos: -85.5,-1.5 parent: 2 - - uid: 24519 + - uid: 27157 components: - type: Transform pos: -73.5,-13.5 parent: 2 - - uid: 24520 + - uid: 27158 components: - type: Transform pos: -79.5,2.5 parent: 2 - proto: MaintenanceWeaponSpawner entities: - - uid: 21305 + - uid: 27159 components: - type: Transform pos: 43.5,17.5 parent: 2 - - uid: 24527 + - uid: 27160 components: - type: Transform pos: -72.5,-32.5 parent: 2 - - uid: 24528 + - uid: 27161 components: - type: Transform pos: 63.5,-53.5 parent: 2 - - uid: 24529 + - uid: 27162 components: - type: Transform pos: -47.5,-77.5 parent: 2 - - uid: 24530 + - uid: 27163 components: - type: Transform pos: -57.5,-54.5 parent: 2 - - uid: 24531 + - uid: 27164 components: - type: Transform pos: 47.5,-29.5 parent: 2 - - uid: 24532 + - uid: 27165 components: - type: Transform pos: 72.5,-19.5 parent: 2 - - uid: 24534 + - uid: 27166 components: - type: Transform pos: 39.5,-8.5 parent: 2 - - uid: 24535 + - uid: 27167 components: - type: Transform pos: 96.5,-45.5 parent: 2 - - uid: 24536 + - uid: 27168 components: - type: Transform pos: 92.5,-50.5 parent: 2 - - uid: 24537 + - uid: 27169 components: - type: Transform pos: 106.5,-53.5 parent: 2 - - uid: 24543 + - uid: 27170 components: - type: Transform pos: -66.5,6.5 parent: 2 - - uid: 24547 + - uid: 27171 components: - type: Transform pos: -76.5,-31.5 parent: 2 - - uid: 24548 + - uid: 27172 components: - type: Transform pos: -32.5,-110.5 parent: 2 - - uid: 24549 + - uid: 27173 components: - type: Transform pos: -56.5,-107.5 parent: 2 - - uid: 24550 + - uid: 27174 components: - type: Transform pos: -85.5,-3.5 parent: 2 - - uid: 24551 + - uid: 27175 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-11.5 parent: 2 - - uid: 24553 + - uid: 27176 components: - type: Transform pos: -83.5,-21.5 parent: 2 - proto: Mannequin entities: - - uid: 14704 + - uid: 15635 components: - type: Transform pos: -38.5,-103.5 @@ -187954,7 +191484,7 @@ entities: outerClothing: !type:ContainerSlot showEnts: False occludes: False - ent: 14706 + ent: 15637 neck: !type:ContainerSlot showEnts: False occludes: False @@ -187970,7 +191500,7 @@ entities: head: !type:ContainerSlot showEnts: False occludes: False - ent: 14705 + ent: 15636 suitstorage: !type:ContainerSlot showEnts: False occludes: False @@ -187979,7 +191509,7 @@ entities: showEnts: False occludes: False ent: null - - uid: 14708 + - uid: 15639 components: - type: Transform rot: 1.5707963267948966 rad @@ -187994,7 +191524,7 @@ entities: outerClothing: !type:ContainerSlot showEnts: False occludes: False - ent: 14710 + ent: 15641 neck: !type:ContainerSlot showEnts: False occludes: False @@ -188010,7 +191540,7 @@ entities: head: !type:ContainerSlot showEnts: False occludes: False - ent: 14709 + ent: 15640 suitstorage: !type:ContainerSlot showEnts: False occludes: False @@ -188019,7 +191549,7 @@ entities: showEnts: False occludes: False ent: null - - uid: 14715 + - uid: 15645 components: - type: Transform pos: -40.5,-103.5 @@ -188033,7 +191563,7 @@ entities: outerClothing: !type:ContainerSlot showEnts: False occludes: False - ent: 14717 + ent: 15647 neck: !type:ContainerSlot showEnts: False occludes: False @@ -188049,7 +191579,7 @@ entities: head: !type:ContainerSlot showEnts: False occludes: False - ent: 14716 + ent: 15646 suitstorage: !type:ContainerSlot showEnts: False occludes: False @@ -188058,7 +191588,7 @@ entities: showEnts: False occludes: False ent: null - - uid: 14727 + - uid: 15660 components: - type: Transform pos: -39.5,-103.5 @@ -188072,7 +191602,7 @@ entities: outerClothing: !type:ContainerSlot showEnts: False occludes: False - ent: 14729 + ent: 15662 neck: !type:ContainerSlot showEnts: False occludes: False @@ -188088,7 +191618,7 @@ entities: head: !type:ContainerSlot showEnts: False occludes: False - ent: 14728 + ent: 15661 suitstorage: !type:ContainerSlot showEnts: False occludes: False @@ -188097,7 +191627,7 @@ entities: showEnts: False occludes: False ent: null - - uid: 40847 + - uid: 15796 components: - type: Transform pos: 29.5,29.5 @@ -188111,7 +191641,7 @@ entities: outerClothing: !type:ContainerSlot showEnts: False occludes: False - ent: 36820 + ent: 15797 neck: !type:ContainerSlot showEnts: False occludes: False @@ -188138,14 +191668,14 @@ entities: ent: null - proto: MaterialBones1 entities: - - uid: 24563 + - uid: 27177 components: - type: Transform pos: 65.439674,-48.454266 parent: 2 - type: Stack count: 7 - - uid: 24564 + - uid: 27178 components: - type: Transform rot: -1.5707963267948966 rad @@ -188153,38 +191683,38 @@ entities: parent: 2 - proto: MaterialCloth entities: - - uid: 24565 + - uid: 27179 components: - type: Transform pos: -5.444281,8.628087 parent: 2 - - uid: 24566 + - uid: 27180 components: - type: Transform pos: -53.596252,-18.574131 parent: 2 - proto: MaterialDurathread entities: - - uid: 24567 + - uid: 27181 components: - type: Transform pos: -5.381781,8.612462 parent: 2 - proto: MaterialGunpowder entities: - - uid: 24568 + - uid: 27182 components: - type: Transform pos: -57.47855,-91.2867 parent: 2 - - uid: 24569 + - uid: 27183 components: - type: Transform pos: -57.41605,-91.14607 parent: 2 - proto: MaterialToothSharkminnow1 entities: - - uid: 26556 + - uid: 27184 components: - type: Transform rot: 3.141592653589793 rad @@ -188192,34 +191722,34 @@ entities: parent: 2 - proto: MaterialToothSpaceCarp1 entities: - - uid: 26557 + - uid: 27185 components: - type: Transform pos: 8.379614,-28.376114 parent: 2 - - uid: 26558 + - uid: 27186 components: - type: Transform pos: 8.488989,-28.422989 parent: 2 - - uid: 26574 + - uid: 27187 components: - type: Transform pos: 8.551489,-28.360489 parent: 2 - - uid: 26592 + - uid: 27188 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.332739,-28.704239 parent: 2 - - uid: 26593 + - uid: 27189 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.238989,-28.532364 parent: 2 - - uid: 26594 + - uid: 27190 components: - type: Transform rot: 1.5707963267948966 rad @@ -188227,7 +191757,7 @@ entities: parent: 2 - proto: MaterialWoodPlank entities: - - uid: 24570 + - uid: 27191 components: - type: Transform rot: 1.5707963267948966 rad @@ -188235,12 +191765,12 @@ entities: parent: 2 - proto: MaterialWoodPlank1 entities: - - uid: 24571 + - uid: 27192 components: - type: Transform pos: -15.900841,-93.71019 parent: 2 - - uid: 24572 + - uid: 27193 components: - type: Transform rot: -1.5707963267948966 rad @@ -188248,292 +191778,521 @@ entities: parent: 2 - proto: MaterialWoodPlank10 entities: - - uid: 40165 + - uid: 27194 components: - type: Transform pos: 37.507698,-71.3846 parent: 2 - proto: MatterBinStockPart entities: - - uid: 24575 + - uid: 27195 components: - type: Transform pos: -87.5,-7.5 parent: 2 - - uid: 24576 + - uid: 27196 components: - type: Transform pos: 95.5,-80.5 parent: 2 - proto: Mattress entities: - - uid: 14611 + - uid: 27197 components: - type: Transform pos: 44.5,10.5 parent: 2 - - uid: 19633 + - uid: 27198 components: - type: Transform pos: 48.5,9.5 parent: 2 - - uid: 24580 + - uid: 27199 components: - type: Transform pos: -50.5,-75.5 parent: 2 - - uid: 24581 + - uid: 27200 components: - type: Transform pos: -48.5,-75.5 parent: 2 - - uid: 24582 + - uid: 27201 components: - type: Transform pos: 33.5,-19.5 parent: 2 - - uid: 24585 + - uid: 27202 components: - type: Transform pos: 33.5,-16.5 parent: 2 - - uid: 24588 + - uid: 27203 components: - type: Transform pos: 36.5,-17.5 parent: 2 - - uid: 24589 + - uid: 27204 components: - type: Transform pos: 67.5,-50.5 parent: 2 - - uid: 24590 + - uid: 27205 components: - type: Transform pos: 68.5,-50.5 parent: 2 - - uid: 32977 + - uid: 27206 components: - type: Transform pos: 75.5,1.5 parent: 2 - proto: MechEquipmentGrabber entities: - - uid: 36731 + - uid: 27207 components: - type: Transform pos: -20.424871,-61.475033 parent: 2 - proto: MedalCase entities: - - uid: 24591 + - uid: 27208 components: - type: Transform pos: 10.543274,15.729935 parent: 2 - proto: MedicalBed entities: - - uid: 5635 + - uid: 27209 components: - type: Transform pos: 62.5,-3.5 parent: 2 - - uid: 22757 + - uid: 27210 components: - type: Transform pos: 82.5,-10.5 parent: 2 - - uid: 24593 + - uid: 27211 components: - type: Transform pos: -44.5,-23.5 parent: 2 - - uid: 24594 + - uid: 27212 components: - type: Transform pos: -44.5,-21.5 parent: 2 - - uid: 24596 + - uid: 27213 components: - type: Transform pos: -45.5,-0.5 parent: 2 - - uid: 24597 + - uid: 27214 components: - type: Transform pos: -45.5,-3.5 parent: 2 - - uid: 24600 + - uid: 27215 components: - type: Transform pos: -44.5,-18.5 parent: 2 - - uid: 28055 + - uid: 27216 components: - type: Transform pos: -44.5,-22.5 parent: 2 - - uid: 28056 + - uid: 27217 components: - type: Transform pos: -44.5,-20.5 parent: 2 - - uid: 38382 + - uid: 41329 components: - type: Transform pos: -5.5,-8.5 - parent: 37887 - - uid: 38895 + parent: 40828 + - uid: 41841 components: - type: Transform pos: 6.5,-2.5 - parent: 38722 + parent: 41669 - proto: MedicalScanner entities: - - uid: 24062 + - uid: 27218 components: - type: Transform pos: -59.5,-19.5 parent: 2 - proto: MedicalTechFab entities: - - uid: 24603 + - uid: 27219 components: - type: Transform pos: -45.5,-8.5 parent: 2 +- proto: MedicatedSuture + entities: + - uid: 27221 + components: + - type: Transform + parent: 27220 + - type: Physics + canCollide: False - proto: MedkitAdvancedFilled entities: - - uid: 24604 + - uid: 27227 components: - type: Transform rot: 3.141592653589793 rad pos: -6.602462,13.537646 parent: 2 - - uid: 32507 + - uid: 27228 components: - type: Transform pos: -1.4672513,-34.506245 parent: 2 - - uid: 38383 + - uid: 41330 components: - type: Transform pos: -5.3487854,-10.439423 - parent: 37887 + parent: 40828 +- proto: MedkitBrute + entities: + - uid: 2520 + components: + - type: Transform + pos: -47.57859,-10.229208 + parent: 2 + - type: Storage + storedItems: + 2523: + position: 0,0 + _rotation: South + 2522: + position: 1,0 + _rotation: South + 2525: + position: 2,0 + _rotation: South + 2524: + position: 3,0 + _rotation: South + 2521: + position: 2,1 + _rotation: South + 2526: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2523 + - 2522 + - 2525 + - 2524 + - 2521 + - 2526 + - uid: 2527 + components: + - type: Transform + pos: -47.606533,-10.1642065 + parent: 2 + - type: Storage + storedItems: + 2530: + position: 0,0 + _rotation: South + 2529: + position: 1,0 + _rotation: South + 2532: + position: 2,0 + _rotation: South + 2531: + position: 3,0 + _rotation: South + 2528: + position: 2,1 + _rotation: South + 2533: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2530 + - 2529 + - 2532 + - 2531 + - 2528 + - 2533 + - uid: 2534 + components: + - type: Transform + pos: -47.531715,-10.369833 + parent: 2 + - type: Storage + storedItems: + 2537: + position: 0,0 + _rotation: South + 2536: + position: 1,0 + _rotation: South + 2539: + position: 2,0 + _rotation: South + 2538: + position: 3,0 + _rotation: South + 2535: + position: 2,1 + _rotation: South + 2540: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2537 + - 2536 + - 2539 + - 2538 + - 2540 + - 2535 - proto: MedkitBruteFilled entities: - - uid: 15037 + - uid: 27229 components: - type: Transform pos: 64.508545,-2.5347085 parent: 2 - - uid: 24607 +- proto: MedkitBurn + entities: + - uid: 2571 components: - type: Transform - pos: -47.498795,-10.2503195 + pos: -48.32859,-9.275049 parent: 2 - - uid: 24608 + - type: Storage + storedItems: + 2573: + position: 0,0 + _rotation: South + 2574: + position: 1,0 + _rotation: South + 2576: + position: 2,0 + _rotation: South + 2575: + position: 3,0 + _rotation: South + 2572: + position: 2,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2573 + - 2574 + - 2576 + - 2575 + - 2572 + - uid: 2577 components: - type: Transform - pos: -47.530045,-10.3440695 + pos: -48.38057,-9.275344 parent: 2 - - uid: 24609 + - type: Storage + storedItems: + 2579: + position: 0,0 + _rotation: South + 2580: + position: 1,0 + _rotation: South + 2582: + position: 2,0 + _rotation: South + 2581: + position: 3,0 + _rotation: South + 2578: + position: 2,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2579 + - 2580 + - 2582 + - 2581 + - 2578 + - uid: 2583 components: - type: Transform - pos: -47.57692,-10.4065695 + pos: -48.364944,-9.431594 parent: 2 + - type: Storage + storedItems: + 2585: + position: 0,0 + _rotation: South + 2586: + position: 1,0 + _rotation: South + 2588: + position: 2,0 + _rotation: South + 2587: + position: 3,0 + _rotation: South + 2584: + position: 2,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2585 + - 2586 + - 2588 + - 2587 + - 2584 - proto: MedkitBurnFilled entities: - - uid: 19640 - components: - - type: Transform - pos: 64.508545,-2.2742918 - parent: 2 - - uid: 24612 + - uid: 15293 components: - type: Transform - pos: -48.38942,-9.5471945 - parent: 2 - - uid: 24613 + parent: 15292 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27230 components: - type: Transform - pos: -48.35817,-9.4534445 + pos: 64.508545,-2.2742918 parent: 2 - - uid: 24614 + - uid: 27231 components: - type: Transform - pos: -48.32692,-9.3440695 + pos: 52.51172,-76.45728 parent: 2 - - uid: 37257 - components: - - type: Transform - parent: 37256 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: MedkitCombat entities: - - uid: 24616 + - uid: 27220 components: - type: Transform - pos: -55.516678,-12.5677185 + pos: -55.467686,-12.512793 parent: 2 + - type: Storage + storedItems: + 27221: + position: 0,0 + _rotation: East + 27224: + position: 2,0 + _rotation: North + 27222: + position: 1,1 + _rotation: South + 27223: + position: 3,1 + _rotation: South + 27225: + position: 3,0 + _rotation: South + 27226: + position: 0,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 27221 + - 27224 + - 27222 + - 27223 + - 27225 + - 27226 - proto: MedkitCombatFilled entities: - - uid: 16255 + - uid: 2486 components: - type: Transform - parent: 16246 + parent: 2475 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38384 + - uid: 41331 components: - type: Transform pos: -5.570999,-10.550507 - parent: 37887 - - uid: 38896 + parent: 40828 + - uid: 41842 components: - type: Transform pos: 2.4799347,-1.5552368 - parent: 38722 + parent: 41669 - proto: MedkitFilled entities: - - uid: 2061 - components: - - type: Transform - pos: 80.502365,-9.5784445 - parent: 2 - - uid: 9347 + - uid: 16228 components: - type: Transform - parent: 920 + parent: 16226 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 19601 + - uid: 27232 + components: + - type: Transform + pos: 80.502365,-9.5784445 + parent: 2 + - uid: 27233 components: - type: Transform pos: 64.508545,-3.0347085 parent: 2 - - uid: 22442 + - uid: 27234 components: - type: Transform pos: -44.483433,-19.51846 parent: 2 - - uid: 24618 + - uid: 27235 components: - type: Transform rot: 3.141592653589793 rad pos: -6.6781487,19.653606 parent: 2 - - uid: 24620 + - uid: 27236 components: - type: Transform rot: 3.141592653589793 rad pos: -55.481255,-15.342557 parent: 2 - - uid: 24622 + - uid: 27237 components: - type: MetaData desc: OneYa @@ -188541,213 +192300,323 @@ entities: rot: 3.141592653589793 rad pos: -17.520306,-81.37365 parent: 2 - - uid: 24624 + - uid: 27238 components: - type: Transform pos: -64.40231,-50.379948 parent: 2 - - uid: 24625 + - uid: 27239 components: - type: Transform rot: 3.141592653589793 rad pos: -44.504303,-37.26448 parent: 2 - - uid: 24626 + - uid: 27240 components: - type: Transform rot: 3.141592653589793 rad pos: -7.518667,-99.40709 parent: 2 - - uid: 24627 + - uid: 27241 components: - type: Transform rot: 3.141592653589793 rad pos: -33.546227,-107.30916 parent: 2 -- proto: MedkitOxygenFilled +- proto: MedkitO2 entities: - - uid: 21043 + - uid: 68 components: - type: Transform - pos: 64.508545,-2.7847085 + pos: -47.656715,-9.323641 parent: 2 - - uid: 24628 + - type: Storage + storedItems: + 69: + position: 0,0 + _rotation: South + 72: + position: 1,0 + _rotation: South + 74: + position: 1,1 + _rotation: South + 73: + position: 2,0 + _rotation: South + 75: + position: 3,0 + _rotation: South + 71: + position: 2,1 + _rotation: South + 76: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 69 + - 72 + - 74 + - 73 + - 75 + - 71 + - 76 + - uid: 77 components: - type: Transform - pos: -47.655045,-9.3909445 + pos: -47.594215,-9.433016 parent: 2 - - uid: 24629 + - type: Storage + storedItems: + 78: + position: 0,0 + _rotation: South + 81: + position: 1,0 + _rotation: South + 83: + position: 1,1 + _rotation: South + 82: + position: 2,0 + _rotation: South + 84: + position: 3,0 + _rotation: South + 80: + position: 2,1 + _rotation: South + 85: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 78 + - 81 + - 83 + - 82 + - 84 + - 80 + - 85 + - uid: 86 components: - type: Transform - pos: -47.60817,-9.319154 + pos: -47.594215,-9.542391 parent: 2 - - uid: 24630 + - type: Storage + storedItems: + 87: + position: 0,0 + _rotation: South + 90: + position: 1,0 + _rotation: South + 92: + position: 1,1 + _rotation: South + 91: + position: 2,0 + _rotation: South + 93: + position: 3,0 + _rotation: South + 89: + position: 2,1 + _rotation: South + 94: + position: 3,1 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 87 + - 90 + - 92 + - 91 + - 93 + - 89 + - 94 +- proto: MedkitOxygenFilled + entities: + - uid: 27242 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.512764,-24.27153 + pos: 64.508545,-2.7847085 parent: 2 - - uid: 24632 + - uid: 27243 components: - type: Transform - pos: -47.686295,-9.5315695 + rot: 3.141592653589793 rad + pos: -49.512764,-24.27153 parent: 2 - - uid: 24633 + - uid: 27244 components: - type: Transform pos: -64.56355,-50.473698 parent: 2 - - uid: 38385 + - uid: 41332 components: - type: Transform pos: -5.5953827,-10.361389 - parent: 37887 + parent: 40828 - proto: MedkitRadiationFilled entities: - - uid: 15748 + - uid: 27245 components: - type: Transform pos: 64.53833,-3.428235 parent: 2 - - uid: 24634 + - uid: 27246 components: - type: Transform pos: 63.913116,-56.417984 parent: 2 - - uid: 24635 + - uid: 27247 components: - type: Transform pos: -48.35817,-8.6096945 parent: 2 - - uid: 38897 + - uid: 41843 components: - type: Transform pos: 2.4799347,-1.9155273 - parent: 38722 + parent: 41669 - proto: MedkitToxinFilled entities: - - uid: 2065 + - uid: 27248 components: - type: Transform pos: 80.47644,-10.177777 parent: 2 - - uid: 14551 + - uid: 27249 components: - type: Transform pos: 64.491455,-3.16261 parent: 2 - - uid: 24636 + - uid: 27250 components: - type: Transform pos: -47.63942,-8.6721945 parent: 2 - - uid: 24637 + - uid: 27251 components: - type: Transform pos: -47.592545,-8.5628195 parent: 2 - - uid: 24638 + - uid: 27252 components: - type: Transform pos: -47.54567,-8.4690695 parent: 2 - - uid: 24640 + - uid: 27253 components: - type: Transform pos: -53.513786,-55.384033 parent: 2 - - uid: 38898 + - uid: 41844 components: - type: Transform pos: 2.4799347,-2.2905273 - parent: 38722 + parent: 41669 - proto: MedTekCartridge entities: - - uid: 1594 + - uid: 1378 components: - type: Transform - parent: 2104 + parent: 1372 - type: Physics canCollide: False - type: InsideEntityStorage - proto: MetalFoamGrenade entities: - - uid: 37849 + - uid: 27254 components: - type: Transform pos: 52.980667,-71.355354 parent: 2 - - uid: 37859 + - uid: 27255 components: - type: Transform pos: 53.105667,-71.292854 parent: 2 - - uid: 38751 + - uid: 41697 components: - type: Transform - parent: 38744 + parent: 41690 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38752 + - uid: 41698 components: - type: Transform - parent: 38744 + parent: 41690 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38753 + - uid: 41699 components: - type: Transform - parent: 38744 + parent: 41690 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38754 + - uid: 41700 components: - type: Transform - parent: 38744 + parent: 41690 - type: Physics canCollide: False - type: InsideEntityStorage - proto: MicrophoneInstrument entities: - - uid: 24641 + - uid: 27256 components: - type: Transform pos: -20.323889,-92.41741 parent: 2 - - uid: 24642 + - uid: 27257 components: - type: Transform pos: 35.515884,-9.537717 parent: 2 - proto: Milkalyzer entities: - - uid: 34233 + - uid: 27258 components: - type: Transform pos: -20.588402,-21.946007 parent: 2 - proto: MindShieldImplanter entities: - - uid: 16256 + - uid: 2487 components: - type: MetaData name: Щит разума - type: Transform - parent: 16246 + parent: 2475 - type: Physics canCollide: False - type: InsideEntityStorage - proto: MineralScanner entities: - - uid: 40813 + - uid: 27259 components: - type: Transform pos: 15.396231,-29.394201 parent: 2 - - uid: 40814 + - uid: 27260 components: - type: Transform rot: 1.5707963267948966 rad @@ -188755,39 +192624,39 @@ entities: parent: 2 - proto: MinimoogInstrument entities: - - uid: 24643 + - uid: 27261 components: - type: Transform pos: 32.5,27.5 parent: 2 - proto: MiningDrill entities: - - uid: 24644 + - uid: 27262 components: - type: Transform pos: -2.4762564,17.41959 parent: 2 - proto: MiningWindow entities: - - uid: 34275 + - uid: 27263 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-54.5 parent: 2 - - uid: 34276 + - uid: 27264 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-53.5 parent: 2 - - uid: 34281 + - uid: 27265 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-54.5 parent: 2 - - uid: 34282 + - uid: 27266 components: - type: Transform rot: -1.5707963267948966 rad @@ -188795,25 +192664,25 @@ entities: parent: 2 - proto: MiniSyringe entities: - - uid: 23932 + - uid: 27267 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.40493,-6.401129 parent: 2 - - uid: 35799 + - uid: 27268 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.40493,-6.479254 parent: 2 - - uid: 35800 + - uid: 27269 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.40493,-6.541754 parent: 2 - - uid: 35801 + - uid: 27270 components: - type: Transform rot: -1.5707963267948966 rad @@ -188821,7 +192690,7 @@ entities: parent: 2 - proto: Mirror entities: - - uid: 15848 + - uid: 27271 components: - type: MetaData name: зеркальце @@ -188832,82 +192701,82 @@ entities: parent: 2 - type: Item inhandVisuals: {} - - uid: 24647 + - uid: 27272 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,-38.5 parent: 2 - - uid: 24648 + - uid: 27273 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,-37.5 parent: 2 - - uid: 24649 + - uid: 27274 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,-36.5 parent: 2 - - uid: 24655 + - uid: 27275 components: - type: Transform pos: 8.5,-70.5 parent: 2 - - uid: 24656 + - uid: 27276 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-94.5 parent: 2 - - uid: 24657 + - uid: 27277 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-93.5 parent: 2 - - uid: 24658 + - uid: 27278 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-92.5 parent: 2 - - uid: 24660 + - uid: 27279 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-4.5 parent: 2 - - uid: 25802 + - uid: 27280 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-76.5 parent: 2 - - uid: 26149 + - uid: 27281 components: - type: Transform pos: 75.5,-9.5 parent: 2 - - uid: 26171 + - uid: 27282 components: - type: Transform pos: 74.5,-9.5 parent: 2 - - uid: 34747 + - uid: 27283 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-76.5 parent: 2 - - uid: 35797 + - uid: 27284 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-76.5 parent: 2 - - uid: 41092 + - uid: 27285 components: - type: Transform rot: 3.141592653589793 rad @@ -188915,129 +192784,124 @@ entities: parent: 2 - proto: MirrorShield entities: - - uid: 24661 + - uid: 27286 components: - type: Transform pos: -84.48447,-27.56959 parent: 2 - proto: MMI entities: - - uid: 13867 + - uid: 27287 components: - type: Transform pos: -17.351639,-54.3246 parent: 2 - - uid: 24662 + - uid: 27288 components: - type: Transform pos: -34.551216,-55.460392 parent: 2 - proto: ModularGrenade entities: - - uid: 24665 + - uid: 27289 components: - type: Transform pos: -38.675457,-32.34256 parent: 2 - - uid: 24666 + - uid: 27290 components: - type: Transform pos: -68.930565,-62.6539 parent: 2 - - uid: 24667 + - uid: 27291 components: - type: Transform pos: -68.680565,-62.3414 parent: 2 - - uid: 24668 + - uid: 27292 components: - type: Transform pos: -68.618065,-62.56015 parent: 2 - - uid: 24669 + - uid: 27293 components: - type: Transform pos: -63.558983,-33.00352 parent: 2 - - uid: 24670 + - uid: 27294 components: - type: Transform pos: -63.308983,-31.425396 parent: 2 - - uid: 24671 + - uid: 27295 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.48086,-31.566021 parent: 2 - - uid: 24672 + - uid: 27296 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.655197,0.494864 parent: 2 - - uid: 24673 + - uid: 27297 components: - type: Transform pos: -38.675457,-32.34256 parent: 2 - - uid: 24674 + - uid: 27298 components: - type: Transform pos: -38.675457,-32.34256 parent: 2 - - uid: 24675 + - uid: 27299 components: - type: Transform pos: -38.675457,-32.34256 parent: 2 - - uid: 38386 + - uid: 41333 components: - type: Transform pos: -3.6557312,-13.251007 - parent: 37887 - - uid: 38387 + parent: 40828 + - uid: 41334 components: - type: Transform pos: -3.699524,-13.221802 - parent: 37887 - - uid: 38388 + parent: 40828 + - uid: 41335 components: - type: Transform pos: -3.728714,-13.411652 - parent: 37887 + parent: 40828 - proto: MopItem entities: - - uid: 2765 + - uid: 2554 components: - type: Transform - parent: 2698 + parent: 2552 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24677 + - uid: 27300 components: - type: Transform pos: -68.5,-18.5 parent: 2 - - uid: 24678 + - uid: 27301 components: - type: Transform pos: -6.5,-72.5 parent: 2 - - uid: 24680 + - uid: 27302 components: - type: Transform pos: -57.5,-31.5 parent: 2 - proto: Morgue entities: - - uid: 19149 - components: - - type: Transform - pos: 62.5,1.5 - parent: 2 - - uid: 23954 + - uid: 26473 components: - type: Transform rot: 1.5707963267948966 rad @@ -189067,35 +192931,40 @@ entities: showEnts: False occludes: True ents: - - 23955 - - uid: 24681 + - 26474 + - uid: 27303 + components: + - type: Transform + pos: 62.5,1.5 + parent: 2 + - uid: 27304 components: - type: Transform pos: -55.5,-31.5 parent: 2 - - uid: 24682 + - uid: 27305 components: - type: Transform pos: -54.5,-31.5 parent: 2 - - uid: 24683 + - uid: 27306 components: - type: Transform pos: -53.5,-31.5 parent: 2 - - uid: 24684 + - uid: 27307 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-73.5 parent: 2 - - uid: 24685 + - uid: 27308 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-73.5 parent: 2 - - uid: 24687 + - uid: 27309 components: - type: Transform rot: 1.5707963267948966 rad @@ -189119,52 +192988,52 @@ entities: - 0 - 0 - 0 - - uid: 24688 + - uid: 27310 components: - type: Transform pos: -55.5,-34.5 parent: 2 - - uid: 24689 + - uid: 27311 components: - type: Transform pos: -54.5,-34.5 parent: 2 - - uid: 24690 + - uid: 27312 components: - type: Transform pos: -53.5,-34.5 parent: 2 - - uid: 24691 + - uid: 27313 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-36.5 parent: 2 - - uid: 24692 + - uid: 27314 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-36.5 parent: 2 - - uid: 24693 + - uid: 27315 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-36.5 parent: 2 - - uid: 24694 + - uid: 27316 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-33.5 parent: 2 - - uid: 24695 + - uid: 27317 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-33.5 parent: 2 - - uid: 24696 + - uid: 27318 components: - type: Transform rot: 3.141592653589793 rad @@ -189172,87 +193041,87 @@ entities: parent: 2 - proto: MouseTimedSpawner entities: - - uid: 24697 + - uid: 27319 components: - type: Transform pos: -69.5,-21.5 parent: 2 - - uid: 24699 + - uid: 27320 components: - type: Transform pos: -33.5,-16.5 parent: 2 - - uid: 24701 + - uid: 27321 components: - type: Transform pos: -49.5,-93.5 parent: 2 - - uid: 24704 + - uid: 27322 components: - type: Transform pos: 37.5,-19.5 parent: 2 - - uid: 24706 + - uid: 27323 components: - type: Transform pos: -62.5,6.5 parent: 2 - - uid: 31637 + - uid: 27324 components: - type: Transform pos: 40.5,13.5 parent: 2 - - uid: 33609 + - uid: 27325 components: - type: Transform pos: -18.5,-56.5 parent: 2 - proto: Mousetrap entities: - - uid: 24707 + - uid: 27326 components: - type: Transform pos: 69.21401,-48.39836 parent: 2 - proto: Multitool entities: - - uid: 24708 + - uid: 27327 components: - type: Transform pos: -68.37957,-75.43861 parent: 2 - - uid: 24709 + - uid: 27328 components: - type: Transform pos: 41.344666,-82.48986 parent: 2 - - uid: 24710 + - uid: 27329 components: - type: Transform pos: 51.68862,-46.36927 parent: 2 - - uid: 24711 + - uid: 27330 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.455536,-63.403385 parent: 2 - - uid: 24712 + - uid: 27331 components: - type: Transform pos: -39.22503,-49.412586 parent: 2 - - uid: 24714 + - uid: 27332 components: - type: Transform pos: -42.469013,-112.45888 parent: 2 - - uid: 24715 + - uid: 27333 components: - type: Transform pos: -87.5,-11.5 parent: 2 - - uid: 26239 + - uid: 27334 components: - type: Transform rot: 1.5707963267948966 rad @@ -189260,105 +193129,105 @@ entities: parent: 2 - proto: MusicianPDA entities: - - uid: 2108 + - uid: 1379 components: - type: Transform - parent: 2104 + parent: 1372 - type: Physics canCollide: False - type: InsideEntityStorage - proto: NetProbeCartridge entities: - - uid: 921 + - uid: 1380 components: - type: Transform - parent: 2104 + parent: 1372 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24717 + - uid: 27335 components: - type: Transform pos: 41.489166,-57.470764 parent: 2 - - uid: 24718 + - uid: 27336 components: - type: Transform pos: 51.41648,-51.498405 parent: 2 - proto: Nettle entities: - - uid: 24719 + - uid: 27337 components: - type: Transform pos: -84.57718,-13.242086 parent: 2 - proto: NetworkConfigurator entities: - - uid: 24720 + - uid: 27338 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.422333,-72.570885 parent: 2 - - uid: 24721 + - uid: 27339 components: - type: Transform pos: 16.197271,5.6603804 parent: 2 - - uid: 24722 + - uid: 27340 components: - type: Transform pos: 36.52398,-35.177963 parent: 2 - - uid: 24723 + - uid: 27341 components: - type: Transform pos: 62.304565,-56.383835 parent: 2 - - uid: 24724 + - uid: 27342 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.502976,-79.737305 parent: 2 - - uid: 24725 + - uid: 27343 components: - type: Transform pos: -53.151768,-54.389374 parent: 2 - - uid: 24726 + - uid: 27344 components: - type: Transform pos: 55.204376,-84.2287 parent: 2 - - uid: 24727 + - uid: 27345 components: - type: Transform rot: -1.5707963267948966 rad pos: 109.54755,-22.058807 parent: 2 - - uid: 24728 + - uid: 27346 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.786607,23.587128 parent: 2 - - uid: 24729 + - uid: 27347 components: - type: Transform pos: -69.426704,-67.41542 parent: 2 - proto: NewsReaderCartridge entities: - - uid: 1570 + - uid: 1381 components: - type: Transform - parent: 2104 + parent: 1372 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24730 + - uid: 27348 components: - type: Transform rot: -1.5707963267948966 rad @@ -189366,189 +193235,189 @@ entities: parent: 2 - proto: NitrogenCanister entities: - - uid: 24731 + - uid: 27349 components: - type: Transform pos: 31.5,-102.5 parent: 2 - - uid: 24733 + - uid: 27350 components: - type: Transform pos: -48.5,-62.5 parent: 2 - - uid: 24734 + - uid: 27351 components: - type: Transform pos: -48.5,-61.5 parent: 2 - - uid: 24735 + - uid: 27352 components: - type: Transform pos: 37.5,-46.5 parent: 2 - - uid: 24736 + - uid: 27353 components: - type: Transform pos: -46.5,-89.5 parent: 2 - - uid: 24737 + - uid: 27354 components: - type: Transform pos: -59.5,-62.5 parent: 2 - - uid: 24738 + - uid: 27355 components: - type: Transform pos: -61.5,-25.5 parent: 2 - - uid: 24739 + - uid: 27356 components: - type: Transform pos: 33.5,-29.5 parent: 2 - - uid: 24740 + - uid: 27357 components: - type: Transform pos: 15.5,-78.5 parent: 2 - - uid: 24741 + - uid: 27358 components: - type: Transform pos: -67.5,-15.5 parent: 2 - - uid: 24742 + - uid: 27359 components: - type: Transform pos: -35.5,-122.5 parent: 2 - - uid: 24743 + - uid: 27360 components: - type: Transform pos: -68.5,12.5 parent: 2 - - uid: 24744 + - uid: 27361 components: - type: Transform pos: -68.5,-2.5 parent: 2 - - uid: 24745 + - uid: 27362 components: - type: Transform pos: -67.5,-2.5 parent: 2 - - uid: 24746 + - uid: 27363 components: - type: Transform pos: -54.5,-98.5 parent: 2 - - uid: 24747 + - uid: 27364 components: - type: Transform pos: -70.5,-12.5 parent: 2 - - uid: 24748 + - uid: 27365 components: - type: Transform pos: -71.5,-24.5 parent: 2 - - uid: 24749 + - uid: 27366 components: - type: Transform pos: 27.5,17.5 parent: 2 - - uid: 37080 + - uid: 27367 components: - type: Transform pos: 57.5,-80.5 parent: 2 - - uid: 40824 + - uid: 27368 components: - type: Transform pos: 52.5,-27.5 parent: 2 - proto: NitrogenTankFilled entities: - - uid: 1894 + - uid: 2488 components: - type: Transform - parent: 16246 + parent: 2475 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14767 + - uid: 15680 components: - type: Transform - parent: 14760 + parent: 15673 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14789 + - uid: 15698 components: - type: Transform - parent: 14786 + parent: 15695 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38166 + - uid: 41108 components: - type: Transform - parent: 38162 + parent: 41103 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38172 + - uid: 41115 components: - type: Transform - parent: 38168 + parent: 41110 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38178 + - uid: 41122 components: - type: Transform - parent: 38174 + parent: 41117 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38184 + - uid: 41129 components: - type: Transform - parent: 38180 + parent: 41124 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38190 + - uid: 41136 components: - type: Transform - parent: 38186 + parent: 41131 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38196 + - uid: 41142 components: - type: Transform - parent: 38192 + parent: 41138 - type: Physics canCollide: False - type: InsideEntityStorage - proto: NitrousOxideCanister entities: - - uid: 24751 + - uid: 27369 components: - type: Transform pos: 31.5,-96.5 parent: 2 - - uid: 24752 + - uid: 27370 components: - type: Transform pos: -48.5,-60.5 parent: 2 - - uid: 24753 + - uid: 27371 components: - type: Transform pos: 38.5,-46.5 parent: 2 - - uid: 33204 + - uid: 27372 components: - type: Transform anchored: True @@ -189558,63 +193427,63 @@ entities: bodyType: Static - proto: NitrousOxideTankFilled entities: - - uid: 24754 + - uid: 27373 components: - type: Transform rot: 3.141592653589793 rad pos: -55.479095,-19.584072 parent: 2 - - uid: 24755 + - uid: 27374 components: - type: Transform pos: -24.456526,11.467024 parent: 2 - - uid: 24756 + - uid: 27375 components: - type: Transform pos: -53.51677,-73.51513 parent: 2 - proto: NodeScanner entities: - - uid: 24757 + - uid: 27376 components: - type: Transform pos: -39.482056,-61.35141 parent: 2 - proto: NotekeeperCartridge entities: - - uid: 1579 + - uid: 1382 components: - type: Transform - parent: 2104 + parent: 1372 - type: Physics canCollide: False - type: InsideEntityStorage - proto: NoticeBoard entities: - - uid: 24759 + - uid: 27377 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,5.5 parent: 2 - - uid: 24760 + - uid: 27378 components: - type: Transform pos: -38.5,-24.5 parent: 2 - - uid: 24761 + - uid: 27379 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-70.5 parent: 2 - - uid: 24762 + - uid: 27380 components: - type: Transform pos: 32.5,8.5 parent: 2 - - uid: 24763 + - uid: 27381 components: - type: Transform rot: 3.141592653589793 rad @@ -189622,7 +193491,7 @@ entities: parent: 2 - type: Storage storedItems: - 24764: + 27382: position: 0,0 _rotation: South - type: ContainerContainer @@ -189631,8 +193500,8 @@ entities: showEnts: False occludes: True ents: - - 24764 - - uid: 24765 + - 27382 + - uid: 27383 components: - type: Transform rot: -1.5707963267948966 rad @@ -189640,106 +193509,153 @@ entities: parent: 2 - proto: NTDefaultCircuitBoard entities: - - uid: 400 + - uid: 1348 + components: + - type: Transform + parent: 1345 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NTHandyFlag + entities: + - uid: 1790 components: - type: Transform - parent: 24311 + parent: 1785 - type: Physics canCollide: False - type: InsideEntityStorage - proto: NuclearBomb entities: - - uid: 24438 + - uid: 27384 components: - type: Transform pos: -5.5,-6.5 parent: 2 - proto: NuclearBombKeg entities: - - uid: 13677 + - uid: 27385 components: - type: Transform - pos: -15.5,9.5 + pos: -19.5,-103.5 parent: 2 - proto: NukeDiskFake entities: - - uid: 40168 + - uid: 27386 components: - type: Transform pos: -9.2673025,-7.040256 parent: 2 - proto: NutimovCircuitBoard entities: - - uid: 6952 + - uid: 27387 components: - type: Transform pos: 15.479378,22.5946 parent: 2 +- proto: Ointment + entities: + - uid: 2573 + components: + - type: Transform + parent: 2571 + - type: Physics + canCollide: False + - uid: 2574 + components: + - type: Transform + parent: 2571 + - type: Physics + canCollide: False + - uid: 2579 + components: + - type: Transform + parent: 2577 + - type: Physics + canCollide: False + - uid: 2580 + components: + - type: Transform + parent: 2577 + - type: Physics + canCollide: False + - uid: 2585 + components: + - type: Transform + parent: 2583 + - type: Physics + canCollide: False + - uid: 2586 + components: + - type: Transform + parent: 2583 + - type: Physics + canCollide: False - proto: OperatingTable entities: - - uid: 15159 + - uid: 27388 components: - type: Transform pos: 66.5,-2.5 parent: 2 - - uid: 24768 + - uid: 27389 components: - type: Transform pos: -55.5,-19.5 parent: 2 - - uid: 24769 + - uid: 27390 components: - type: Transform pos: -34.5,-55.5 parent: 2 - - uid: 24770 + - uid: 27391 components: - type: Transform pos: -23.5,11.5 parent: 2 - - uid: 24771 + - uid: 27392 components: - type: Transform pos: -65.5,-24.5 parent: 2 - - uid: 24772 + - uid: 27393 components: - type: Transform pos: -54.5,-74.5 parent: 2 - - uid: 24773 + - uid: 27394 components: - type: Transform pos: -54.5,-40.5 parent: 2 - - uid: 24774 + - uid: 27395 components: - type: Transform pos: -65.5,-50.5 parent: 2 - proto: OpporozidoneBeakerSmall entities: - - uid: 41037 + - uid: 27396 components: - type: Transform pos: -34.679024,-22.510044 parent: 2 - proto: OrangeSeeds entities: - - uid: 24775 + - uid: 27397 components: - type: Transform pos: 46.481827,24.41528 parent: 2 - proto: OreBag entities: - - uid: 24777 + - uid: 27398 components: - type: Transform rot: 3.141592653589793 rad pos: -7.8257065,-96.37581 parent: 2 - - uid: 24778 + - uid: 27399 components: - type: Transform rot: 3.141592653589793 rad @@ -189747,124 +193663,124 @@ entities: parent: 2 - proto: OreBox entities: - - uid: 24780 + - uid: 27400 components: - type: Transform pos: -9.5,-93.5 parent: 2 - - uid: 27347 + - uid: 27401 components: - type: Transform pos: -21.5,-61.5 parent: 2 - - uid: 27348 + - uid: 27402 components: - type: Transform pos: -21.5,-62.5 parent: 2 - - uid: 27349 + - uid: 27403 components: - type: Transform pos: -2.5,-57.5 parent: 2 - proto: OreProcessor entities: - - uid: 24784 + - uid: 27404 components: - type: Transform pos: -1.5,-87.5 parent: 2 - proto: OrganArachnidHeart entities: - - uid: 40930 + - uid: 16214 components: - type: Transform - parent: 15229 + parent: 16213 - type: Physics canCollide: False - type: InsideEntityStorage - proto: OrganArachnidTongue entities: - - uid: 40933 + - uid: 16215 components: - type: Transform - parent: 15229 + parent: 16213 - type: Physics canCollide: False - type: InsideEntityStorage - proto: OrganDionaEyes entities: - - uid: 40932 + - uid: 27405 components: - type: Transform pos: -57.303303,-39.026672 parent: 2 - proto: OrganHumanAppendix entities: - - uid: 22002 + - uid: 16216 components: - type: Transform - parent: 15229 + parent: 16213 - type: Physics canCollide: False - type: InsideEntityStorage - proto: OrganHumanBrain entities: - - uid: 39126 + - uid: 27406 components: - type: Transform pos: -4.0133886,-40.97168 parent: 2 - proto: OrganHumanEars entities: - - uid: 9276 + - uid: 16217 components: - type: Transform - parent: 15229 + parent: 16213 - type: Physics canCollide: False - type: InsideEntityStorage - proto: OrganHumanEyes entities: - - uid: 40927 + - uid: 27407 components: - type: Transform pos: -49.32534,-23.830582 parent: 2 - - uid: 40929 + - uid: 27408 components: - type: Transform pos: -38.552746,-33.30968 parent: 2 - - uid: 40931 + - uid: 27409 components: - type: Transform pos: -48.29725,-33.85604 parent: 2 - proto: OrganHumanHeart entities: - - uid: 15230 + - uid: 16218 components: - type: Transform - parent: 15229 + parent: 16213 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24785 + - uid: 27410 components: - type: Transform pos: -83.15014,-26.559216 parent: 2 - proto: OrganHumanKidneys entities: - - uid: 24786 + - uid: 27411 components: - type: Transform pos: -64.62623,-24.98179 parent: 2 - proto: OrganHumanLungs entities: - - uid: 24787 + - uid: 27412 components: - type: Transform rot: -1.5707963267948966 rad @@ -189872,242 +193788,242 @@ entities: parent: 2 - proto: OrganHumanTongue entities: - - uid: 9704 + - uid: 16219 components: - type: Transform - parent: 15229 + parent: 16213 - type: Physics canCollide: False - type: InsideEntityStorage - proto: OxygenCanister entities: - - uid: 24788 + - uid: 27413 components: - type: Transform pos: 31.5,-99.5 parent: 2 - - uid: 24790 + - uid: 27414 components: - type: Transform pos: -46.5,-62.5 parent: 2 - - uid: 24791 + - uid: 27415 components: - type: Transform pos: -46.5,-61.5 parent: 2 - - uid: 24792 + - uid: 27416 components: - type: Transform pos: 37.5,-47.5 parent: 2 - - uid: 24793 + - uid: 27417 components: - type: Transform pos: 38.5,-47.5 parent: 2 - - uid: 24794 + - uid: 27418 components: - type: Transform pos: 34.5,-49.5 parent: 2 - - uid: 24795 + - uid: 27419 components: - type: Transform pos: -46.5,-88.5 parent: 2 - - uid: 24796 + - uid: 27420 components: - type: Transform pos: -67.5,-30.5 parent: 2 - - uid: 24797 + - uid: 27421 components: - type: Transform pos: -34.5,17.5 parent: 2 - - uid: 24798 + - uid: 27422 components: - type: Transform pos: 42.5,21.5 parent: 2 - - uid: 24800 + - uid: 27423 components: - type: Transform pos: 33.5,-78.5 parent: 2 - - uid: 24801 + - uid: 27424 components: - type: Transform pos: -67.5,-18.5 parent: 2 - - uid: 24802 + - uid: 27425 components: - type: Transform pos: 102.5,-53.5 parent: 2 - - uid: 24803 + - uid: 27426 components: - type: Transform pos: -57.5,-68.5 parent: 2 - - uid: 24804 + - uid: 27427 components: - type: Transform pos: 43.5,-62.5 parent: 2 - - uid: 24805 + - uid: 27428 components: - type: Transform pos: -41.5,-123.5 parent: 2 - - uid: 24806 + - uid: 27429 components: - type: Transform pos: -57.5,5.5 parent: 2 - - uid: 24807 + - uid: 27430 components: - type: Transform pos: -68.5,-4.5 parent: 2 - - uid: 24808 + - uid: 27431 components: - type: Transform pos: -67.5,-4.5 parent: 2 - - uid: 24809 + - uid: 27432 components: - type: Transform pos: -54.5,-97.5 parent: 2 - - uid: 24810 + - uid: 27433 components: - type: Transform pos: -79.5,-1.5 parent: 2 - - uid: 24811 + - uid: 27434 components: - type: Transform pos: -72.5,-24.5 parent: 2 - - uid: 37081 + - uid: 27435 components: - type: Transform pos: 58.5,-82.5 parent: 2 - - uid: 40554 + - uid: 27436 components: - type: Transform pos: 55.5,-21.5 parent: 2 - proto: OxygenTankFilled entities: - - uid: 2029 + - uid: 118 components: - type: Transform - parent: 16246 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14768 + - uid: 2489 components: - type: Transform - parent: 14760 + parent: 2475 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14769 + - uid: 15681 components: - type: Transform - parent: 14760 + parent: 15673 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14790 + - uid: 15682 components: - type: Transform - parent: 14786 + parent: 15673 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37255 + - uid: 15699 components: - type: Transform - parent: 36777 + parent: 15695 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38167 + - uid: 41109 components: - type: Transform - parent: 38162 + parent: 41103 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38173 + - uid: 41116 components: - type: Transform - parent: 38168 + parent: 41110 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38179 + - uid: 41123 components: - type: Transform - parent: 38174 + parent: 41117 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38185 + - uid: 41130 components: - type: Transform - parent: 38180 + parent: 41124 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38191 + - uid: 41137 components: - type: Transform - parent: 38186 + parent: 41131 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38197 + - uid: 41143 components: - type: Transform - parent: 38192 + parent: 41138 - type: Physics canCollide: False - type: InsideEntityStorage - proto: PaintingAmogusTriptych entities: - - uid: 24813 + - uid: 27437 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,8.5 parent: 2 - - uid: 24814 + - uid: 27438 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-66.5 parent: 2 - - uid: 33532 + - uid: 27439 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-42.5 parent: 2 - - uid: 38899 + - uid: 41845 components: - type: Transform pos: 7.5,2.5 - parent: 38722 + parent: 41669 - proto: PaintingCafeTerraceAtNight entities: - - uid: 33516 + - uid: 27440 components: - type: Transform rot: -1.5707963267948966 rad @@ -190115,7 +194031,7 @@ entities: parent: 2 - proto: PaintingEmpty entities: - - uid: 33539 + - uid: 27441 components: - type: Transform rot: -1.5707963267948966 rad @@ -190123,19 +194039,19 @@ entities: parent: 2 - proto: PaintingHelloWorld entities: - - uid: 33566 + - uid: 27442 components: - type: Transform pos: 17.5,-38.5 parent: 2 - proto: PaintingMonkey entities: - - uid: 24815 + - uid: 27443 components: - type: Transform pos: 22.473017,10.19018 parent: 2 - - uid: 33537 + - uid: 27444 components: - type: Transform rot: -1.5707963267948966 rad @@ -190143,7 +194059,7 @@ entities: parent: 2 - proto: PaintingMoony entities: - - uid: 33510 + - uid: 27445 components: - type: Transform rot: -1.5707963267948966 rad @@ -190151,7 +194067,7 @@ entities: parent: 2 - proto: PaintingNightHawks entities: - - uid: 33518 + - uid: 27446 components: - type: Transform rot: -1.5707963267948966 rad @@ -190159,7 +194075,7 @@ entities: parent: 2 - proto: PaintingOldGuitarist entities: - - uid: 33530 + - uid: 27447 components: - type: Transform rot: -1.5707963267948966 rad @@ -190167,7 +194083,7 @@ entities: parent: 2 - proto: PaintingOlympia entities: - - uid: 33517 + - uid: 27448 components: - type: Transform rot: -1.5707963267948966 rad @@ -190175,20 +194091,20 @@ entities: parent: 2 - proto: PaintingPersistenceOfMemory entities: - - uid: 33568 + - uid: 27449 components: - type: Transform pos: 17.5,-40.5 parent: 2 - proto: PaintingPrayerHands entities: - - uid: 24816 + - uid: 27450 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-62.5 parent: 2 - - uid: 33521 + - uid: 27451 components: - type: Transform rot: -1.5707963267948966 rad @@ -190196,7 +194112,7 @@ entities: parent: 2 - proto: PaintingRedBlueYellow entities: - - uid: 33514 + - uid: 27452 components: - type: Transform rot: -1.5707963267948966 rad @@ -190204,12 +194120,12 @@ entities: parent: 2 - proto: PaintingSadClown entities: - - uid: 24817 + - uid: 27453 components: - type: Transform pos: 38.5,-14.5 parent: 2 - - uid: 33512 + - uid: 27454 components: - type: Transform rot: -1.5707963267948966 rad @@ -190217,13 +194133,13 @@ entities: parent: 2 - proto: PaintingSaturn entities: - - uid: 24818 + - uid: 27455 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-66.5 parent: 2 - - uid: 33528 + - uid: 27456 components: - type: Transform rot: -1.5707963267948966 rad @@ -190231,73 +194147,73 @@ entities: parent: 2 - proto: PaintingSkeletonBoof entities: - - uid: 24819 + - uid: 27457 components: - type: Transform pos: 70.5,-46.5 parent: 2 - - uid: 33533 + - uid: 27458 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-42.5 parent: 2 - - uid: 35785 + - uid: 27459 components: - type: Transform pos: 18.5,15.5 parent: 2 - proto: PaintingSkeletonCigarette entities: - - uid: 24820 + - uid: 27460 components: - type: Transform pos: 65.5,-47.5 parent: 2 - - uid: 33536 + - uid: 27461 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-39.5 parent: 2 - - uid: 33885 + - uid: 27462 components: - type: Transform pos: -43.5,-21.5 parent: 2 - - uid: 33886 + - uid: 27463 components: - type: Transform pos: -33.5,-29.5 parent: 2 - - uid: 33887 + - uid: 27464 components: - type: Transform pos: -41.5,-51.5 parent: 2 - - uid: 33888 + - uid: 27465 components: - type: Transform pos: -68.5,-70.5 parent: 2 - - uid: 35781 + - uid: 27466 components: - type: Transform pos: 38.5,1.5 parent: 2 - - uid: 35782 + - uid: 27467 components: - type: Transform pos: 39.5,11.5 parent: 2 - proto: PaintingSleepingGypsy entities: - - uid: 24821 + - uid: 27468 components: - type: Transform pos: 25.5,5.5 parent: 2 - - uid: 33529 + - uid: 27469 components: - type: Transform rot: -1.5707963267948966 rad @@ -190305,7 +194221,7 @@ entities: parent: 2 - proto: PaintingTheGreatWave entities: - - uid: 33511 + - uid: 27470 components: - type: Transform rot: -1.5707963267948966 rad @@ -190313,7 +194229,7 @@ entities: parent: 2 - proto: PaintingTheKiss entities: - - uid: 33520 + - uid: 27471 components: - type: Transform rot: -1.5707963267948966 rad @@ -190321,7 +194237,7 @@ entities: parent: 2 - proto: PaintingTheScream entities: - - uid: 33515 + - uid: 27472 components: - type: Transform rot: -1.5707963267948966 rad @@ -190329,59 +194245,262 @@ entities: parent: 2 - proto: PaintingTheSonOfMan entities: - - uid: 33569 + - uid: 27473 components: - type: Transform pos: 17.5,-42.5 parent: 2 - proto: PaladinCircuitBoard entities: - - uid: 6953 + - uid: 27474 components: - type: Transform pos: 16.541878,22.5946 parent: 2 - proto: Paper entities: - - uid: 911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 85.41554,-2.4617987 - parent: 2 - - uid: 1631 + - uid: 18 components: + - type: MetaData + name: аварийная инструкция - type: Transform - pos: 41.25643,-26.35469 + pos: 57.496586,-76.37818 parent: 2 - - uid: 2579 + - type: Paper + stampState: paper_stamp-ce + stampedBy: + - stampedColor: '#FF9900FF' + stampedName: Департамент Архитектуры Станций + content: "Инструкция на случай аварийных ситуаций для атмосферных техников.\n\n1. Если вентиляция горит [bold][color=#f7f21a]жёлтым[/color][/bold], но вы уже устранили источник разгерметизации, раскрутите вентиляцию отвёрткой. В течение следующих 30 секунд ограничитель будет выключен.\n\n2. При острой [bold]нехватке воздуха[/bold] на станции, рекомендуется ставить соотношение азота к кислороду 50 на 50.\n\n3. При [bold][color=#f80000]повышенной температуре[/color][/bold] в какой-либо области, удалите весь горячий воздух с помощью режима ПАНИКА в воздушной сигнализации.\n\n4. При [bold][color=#6600ff]пониженной температуре[/color][/bold] используйте термостаты или нагреватели с пассивной вентиляцией. " + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.25 + - 0.25,-0.25 + - 0.25,0.25 + - -0.25,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + flammable: + shape: !type:PhysShapeCircle + radius: 0.35 + position: 0,0 + mask: + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + - Opaque + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 19 + - uid: 21 components: + - type: MetaData + name: аварийная инструкция - type: Transform - pos: 47.37211,-1.281286 - parent: 2 - - uid: 9416 + parent: 20 + - type: Paper + stampState: paper_stamp-ce + stampedBy: + - stampedColor: '#FF9900FF' + stampedName: Департамент Архитектуры Станций + content: "Инструкция на случай аварийных ситуаций для атмосферных техников.\n\n1. Если вентиляция горит [bold][color=#f7f21a]жёлтым[/color][/bold], но вы уже устранили источник разгерметизации, раскрутите вентиляцию отвёрткой. В течение следующих 30 секунд ограничитель будет выключен.\n\n2. При острой [bold]нехватке воздуха[/bold] на станции, рекомендуется ставить соотношение азота к кислороду 50 на 50.\n\n3. При [bold][color=#f80000]повышенной температуре[/color][/bold] в какой-либо области, удалите весь горячий воздух с помощью режима ПАНИКА в воздушной сигнализации.\n\n4. При [bold][color=#6600ff]пониженной температуре[/color][/bold] используйте термостаты или нагреватели с пассивной вентиляцией. " + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.25 + - 0.25,-0.25 + - 0.25,0.25 + - -0.25,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + flammable: + shape: !type:PhysShapeCircle + radius: 0.35 + position: 0,0 + mask: + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + - Opaque + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 22 + - type: InsideEntityStorage + - uid: 26 components: - type: MetaData - desc: Поперхнись своими отрядами, товарищ гсб. + name: аварийная инструкция - type: Transform - rot: -1.5707963267948966 rad - pos: 55.678146,-4.968878 - parent: 2 - - uid: 11489 + parent: 25 + - type: Paper + stampState: paper_stamp-ce + stampedBy: + - stampedColor: '#FF9900FF' + stampedName: Департамент Архитектуры Станций + content: "Инструкция на случай аварийных ситуаций для атмосферных техников.\n\n1. Если вентиляция горит [bold][color=#f7f21a]жёлтым[/color][/bold], но вы уже устранили источник разгерметизации, раскрутите вентиляцию отвёрткой. В течение следующих 30 секунд ограничитель будет выключен.\n\n2. При острой [bold]нехватке воздуха[/bold] на станции, рекомендуется ставить соотношение азота к кислороду 50 на 50.\n\n3. При [bold][color=#f80000]повышенной температуре[/color][/bold] в какой-либо области, удалите весь горячий воздух с помощью режима ПАНИКА в воздушной сигнализации.\n\n4. При [bold][color=#6600ff]пониженной температуре[/color][/bold] используйте термостаты или нагреватели с пассивной вентиляцией. " + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.25 + - 0.25,-0.25 + - 0.25,0.25 + - -0.25,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + flammable: + shape: !type:PhysShapeCircle + radius: 0.35 + position: 0,0 + mask: + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + - Opaque + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 27 + - type: InsideEntityStorage + - uid: 31 components: + - type: MetaData + name: аварийная инструкция - type: Transform - pos: 47.87211,-1.437536 - parent: 2 - - uid: 12993 + parent: 30 + - type: Paper + stampState: paper_stamp-ce + stampedBy: + - stampedColor: '#FF9900FF' + stampedName: Департамент Архитектуры Станций + content: "Инструкция на случай аварийных ситуаций для атмосферных техников.\n\n1. Если вентиляция горит [bold][color=#f7f21a]жёлтым[/color][/bold], но вы уже устранили источник разгерметизации, раскрутите вентиляцию отвёрткой. В течение следующих 30 секунд ограничитель будет выключен.\n\n2. При острой [bold]нехватке воздуха[/bold] на станции, рекомендуется ставить соотношение азота к кислороду 50 на 50.\n\n3. При [bold][color=#f80000]повышенной температуре[/color][/bold] в какой-либо области, удалите весь горячий воздух с помощью режима ПАНИКА в воздушной сигнализации.\n\n4. При [bold][color=#6600ff]пониженной температуре[/color][/bold] используйте термостаты или нагреватели с пассивной вентиляцией. " + - type: SolutionContainerManager + solutions: null + containers: + - food + - type: Physics + canCollide: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.25 + - 0.25,-0.25 + - 0.25,0.25 + - -0.25,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + flammable: + shape: !type:PhysShapeCircle + radius: 0.35 + position: 0,0 + mask: + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + - Opaque + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: ContainerContainer + containers: + solution@food: !type:ContainerSlot + ent: 32 + - type: InsideEntityStorage + - uid: 44 components: - type: Transform - rot: 1.3089969389957472 rad - pos: 51.06838,22.31607 - parent: 2 - - uid: 15362 + parent: 35 + - type: Paper + stampState: paper_stamp-psychologist + stampedBy: + - stampedColor: '#0082AEFF' + stampedName: stamp-component-stamped-name-psychologist + content: "Медикаментозная терапия психических расстройств.\n\n \n Нарколепсия \n - эфедрин, дозировка 30 +диловен\n - дезоксиэфедрин - лучший выбор, дозировка 20 +диловен\n - этилоксиэфедрин, дозировка 10\n - дифенилметиламин, очень дорог, дозировка 5\n\nПриступы агрессии, обострения.\n \n - пакс - успокоительное, дозировка от 5\n - хлоральгидрат - снотворное, дозировка от 10\n - криптобиолин - дезориентирует больного\n\nПовреждения мозга\n \n - маннитол, действие до конца не изучено\n\nТревожность, дрожь, опьянение\n\n - псикодин, побочные эффекты в виде галлюцинаций\n - этилредоксразин - безопасный отрезвитель\n\nГаллюцинации\n\n - синаптизин, крайне токсичен, только с диловеном\n - галоперидол, также убирает дрожь, вызывает сонливость\n\nДепрессия, шизофрения\n\n - Импедризин, токсичен, только с диловеном\n - Космический мираж - безопасный галлюциноген\n - Счастье - вызывает повреждения мозга\n - ТГК - содержится в конопле\n - Токсин Майндбрекер, он же ЛСД. Действует дольше, чем мираж\n\n\n" + - type: Physics + canCollide: False + - uid: 26413 components: - type: Transform - parent: 23907 + parent: 26412 - type: Paper stampState: paper_stamp-centcom stampedBy: @@ -190407,46 +194526,75 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 17815 + - uid: 27382 components: - type: Transform - parent: 27043 - - type: Paper - stampState: paper_stamp-psychologist - stampedBy: - - stampedColor: '#0082AEFF' - stampedName: stamp-component-stamped-name-psychologist - content: "Медикаментозная терапия психических расстройств.\n\n \n Нарколепсия \n - эфедрин, дозировка 30 +диловен\n - дезоксиэфедрин - лучший выбор, дозировка 20 +диловен\n - этилоксиэфедрин, дозировка 10\n - дифенилметиламин, очень дорог, дозировка 5\n\nПриступы агрессии, обострения.\n \n - пакс - успокоительное, дозировка от 5\n - хлоральгидрат - снотворное, дозировка от 10\n - криптобиолин - дезориентирует больного\n\nПовреждения мозга\n \n - маннитол, действие до конца не изучено\n\nТревожность, дрожь, опьянение\n\n - псикодин, побочные эффекты в виде галлюцинаций\n - этилредоксразин - безопасный отрезвитель\n\nГаллюцинации\n\n - синаптизин, крайне токсичен, только с диловеном\n - галоперидол, также убирает дрожь, вызывает сонливость\n\nДепрессия, шизофрения\n\n - Импедризин, токсичен, только с диловеном\n - Космический мираж - безопасный галлюциноген\n - Счастье - вызывает повреждения мозга\n - ТГК - содержится в конопле\n - Токсин Майндбрекер, он же ЛСД. Действует дольше, чем мираж\n\n\n" + parent: 27381 - type: Physics canCollide: False - - uid: 21309 + - uid: 27475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 85.41554,-2.4617987 + parent: 2 + - uid: 27476 + components: + - type: Transform + pos: 41.25643,-26.35469 + parent: 2 + - uid: 27477 + components: + - type: Transform + pos: 47.37211,-1.281286 + parent: 2 + - uid: 27478 + components: + - type: MetaData + desc: Поперхнись своими отрядами, товарищ гсб. + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.678146,-4.968878 + parent: 2 + - uid: 27479 + components: + - type: Transform + pos: 47.87211,-1.437536 + parent: 2 + - uid: 27480 + components: + - type: Transform + rot: 1.3089969389957472 rad + pos: 51.06838,22.31607 + parent: 2 + - uid: 27481 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.530025,10.26842 parent: 2 - - uid: 22121 + - uid: 27482 components: - type: Transform pos: 55.550022,-0.45290518 parent: 2 - - uid: 22132 + - uid: 27483 components: - type: Transform pos: 55.61256,-0.37478018 parent: 2 - - uid: 23052 + - uid: 27484 components: - type: Transform pos: 41.193893,-26.432816 parent: 2 - - uid: 23930 + - uid: 27485 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5769,10.190295 parent: 2 - - uid: 24408 + - uid: 27486 components: - type: Transform rot: 0.22689280275926285 rad @@ -190472,313 +194620,307 @@ entities: Всё очень просто! [head=2]ГЛУПЕНЬКИЙ ХОНК-ХОООНК!!![/head] - - uid: 24764 - components: - - type: Transform - parent: 24763 - - type: Physics - canCollide: False - - uid: 24822 + - uid: 27487 components: - type: Transform pos: -49.315723,-19.452253 parent: 2 - - uid: 24823 + - uid: 27488 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.41583,-42.34834 parent: 2 - - uid: 24834 + - uid: 27489 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.21405667,27.590424 parent: 2 - - uid: 24835 + - uid: 27490 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.4709132,24.587803 parent: 2 - - uid: 24836 + - uid: 27491 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.6802645,9.632844 parent: 2 - - uid: 24837 + - uid: 27492 components: - type: Transform pos: 5.809529,8.695344 parent: 2 - - uid: 24838 + - uid: 27493 components: - type: Transform pos: -23.535517,6.577045 parent: 2 - - uid: 24841 + - uid: 27494 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.80664,3.508832 parent: 2 - - uid: 24842 + - uid: 27495 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.86914,3.508832 parent: 2 - - uid: 24843 + - uid: 27496 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.916016,3.540082 parent: 2 - - uid: 24844 + - uid: 27497 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.516285,6.8015428 parent: 2 - - uid: 24845 + - uid: 27498 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.485035,12.529182 parent: 2 - - uid: 24846 + - uid: 27499 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.43816,13.201057 parent: 2 - - uid: 24847 + - uid: 27500 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.485035,13.263557 parent: 2 - - uid: 24848 + - uid: 27501 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.575924,-83.39061 parent: 2 - - uid: 24849 + - uid: 27502 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.482174,-83.45311 parent: 2 - - uid: 24850 + - uid: 27503 components: - type: Transform rot: 3.141592653589793 rad pos: -34.603973,-8.376126 parent: 2 - - uid: 24851 + - uid: 27504 components: - type: Transform rot: 3.141592653589793 rad pos: -34.510223,-8.251126 parent: 2 - - uid: 24852 + - uid: 27505 components: - type: Transform rot: 3.141592653589793 rad pos: 67.44561,-37.415405 parent: 2 - - uid: 24853 + - uid: 27506 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.46271,-42.41084 parent: 2 - - uid: 24854 + - uid: 27507 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.45752,-38.36953 parent: 2 - - uid: 24855 + - uid: 27508 components: - type: Transform rot: 3.141592653589793 rad pos: 67.41436,-37.43103 parent: 2 - - uid: 24856 + - uid: 27509 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.62509,-38.490505 parent: 2 - - uid: 24857 + - uid: 27510 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.638424,-83.32811 parent: 2 - - uid: 24858 + - uid: 27511 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.482174,-82.54686 parent: 2 - - uid: 24859 + - uid: 27512 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.1104269,-95.43045 parent: 2 - - uid: 24860 + - uid: 27513 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.2041769,-95.36795 parent: 2 - - uid: 24861 + - uid: 27514 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.551385,-81.485565 parent: 2 - - uid: 24862 + - uid: 27515 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.457635,-81.454315 parent: 2 - - uid: 24863 + - uid: 27516 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.332635,-81.391815 parent: 2 - - uid: 24864 + - uid: 27517 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.89434,-96.27694 parent: 2 - - uid: 24865 + - uid: 27518 components: - type: Transform pos: -32.284966,-94.65194 parent: 2 - - uid: 24866 + - uid: 27519 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.434746,-38.567795 parent: 2 - - uid: 24867 + - uid: 27520 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.372246,-38.505295 parent: 2 - - uid: 24881 + - uid: 27521 components: - type: Transform rot: 3.141592653589793 rad pos: -7.0573277,8.666101 parent: 2 - - uid: 24882 + - uid: 27522 components: - type: Transform rot: 3.141592653589793 rad pos: -7.0729527,8.666101 parent: 2 - - uid: 24883 + - uid: 27523 components: - type: Transform rot: 3.141592653589793 rad pos: -7.0729527,8.666101 parent: 2 - - uid: 24884 + - uid: 27524 components: - type: Transform rot: 3.141592653589793 rad pos: -7.0729527,8.634851 parent: 2 - - uid: 24885 + - uid: 27525 components: - type: Transform rot: 3.141592653589793 rad pos: -7.1198277,8.603601 parent: 2 - - uid: 24886 + - uid: 27526 components: - type: Transform rot: 3.141592653589793 rad pos: -7.1042027,8.587976 parent: 2 - - uid: 24887 + - uid: 27527 components: - type: Transform rot: 3.141592653589793 rad pos: -7.1042027,8.603601 parent: 2 - - uid: 24888 + - uid: 27528 components: - type: Transform rot: 3.141592653589793 rad pos: -7.1354527,8.603601 parent: 2 - - uid: 24889 + - uid: 27529 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5504093,9.488227 parent: 2 - - uid: 24890 + - uid: 27530 components: - type: Transform rot: 3.141592653589793 rad pos: 25.523256,-76.3491 parent: 2 - - uid: 24891 + - uid: 27531 components: - type: Transform rot: 3.141592653589793 rad pos: 25.476381,-76.4116 parent: 2 - - uid: 24892 + - uid: 27532 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.61689,-68.39358 parent: 2 - - uid: 24893 + - uid: 27533 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.442852,21.544373 parent: 2 - - uid: 24894 + - uid: 27534 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.58564,-68.44045 parent: 2 - - uid: 24895 + - uid: 27535 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.596252,-64.39053 parent: 2 - - uid: 24896 + - uid: 27536 components: - type: Transform pos: -66.5415,-76.349594 parent: 2 - - uid: 24898 + - uid: 27537 components: - type: Transform pos: -66.61962,-76.42772 parent: 2 - - uid: 24899 + - uid: 27538 components: - type: Transform rot: 1.5707963267948966 rad @@ -190812,79 +194954,79 @@ entities: =================================================== Подпись: Оператор ЦК, Доулсон-Младший [italic]место для печатей:[/italic] - - uid: 24900 + - uid: 27539 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.50298,-39.66599 parent: 2 - - uid: 24901 + - uid: 27540 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.45306,-39.61083 parent: 2 - - uid: 24902 + - uid: 27541 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.562435,-39.751453 parent: 2 - - uid: 24903 + - uid: 27542 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.597652,-0.4401635 parent: 2 - - uid: 24904 + - uid: 27543 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.488277,-0.5182885 parent: 2 - - uid: 24905 + - uid: 27544 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.394527,-0.5964135 parent: 2 - - uid: 24908 + - uid: 27545 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5067,-8.324828 parent: 2 - - uid: 24909 + - uid: 27546 components: - type: Transform rot: 3.141592653589793 rad pos: -34.53795,-8.340453 parent: 2 - - uid: 24910 + - uid: 27547 components: - type: Transform rot: 3.141592653589793 rad pos: -34.53795,-8.387328 parent: 2 - - uid: 24911 + - uid: 27548 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.42597,-48.33913 parent: 2 - - uid: 24912 + - uid: 27549 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.47285,-48.417255 parent: 2 - - uid: 24913 + - uid: 27550 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5041,-48.43288 parent: 2 - - uid: 24915 + - uid: 27551 components: - type: Transform pos: -56.268597,-89.21048 @@ -190892,7 +195034,7 @@ entities: - type: Paper content: > ХОЧУ КАНИСТРУ ФРЕЗОНА - - uid: 24916 + - uid: 27552 components: - type: Transform pos: -56.424847,-89.382355 @@ -190900,38 +195042,38 @@ entities: - type: Paper content: > Дорогой дед мороз! Хочу чтобы на новый год ты не присылал нам больше бомб и пепла! Счастливого нового года! - - uid: 24917 + - uid: 27553 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.6053,-112.66493 parent: 2 - - uid: 24918 + - uid: 27554 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.464676,-112.57118 parent: 2 - - uid: 24919 + - uid: 27555 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.57405,-113.30556 parent: 2 - - uid: 24920 + - uid: 27556 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.527176,-113.35243 parent: 2 - - uid: 32769 + - uid: 27557 components: - type: Transform pos: -11.688484,-39.449905 parent: 2 - type: Paper content: "Протокол 4415\nНовые образцы полученные без помощи Apox-6 стали покрываться язвами голубого цвета. Кожа стала приобретать синий оттенок. Генетический анализ показал инородные генетические последовательности. " - - uid: 32770 + - uid: 27558 components: - type: Transform pos: -5.426367,-29.630838 @@ -190941,7 +195083,7 @@ entities: Протокол 4398 Образцы стали проявлять признаки агрессии. Возможно побочное действие использования технологии Apox-6. - - uid: 32771 + - uid: 27559 components: - type: Transform pos: 11.535598,-48.056534 @@ -190957,7 +195099,7 @@ entities: Примите наши извинения за доставленные неудобства. - - uid: 32773 + - uid: 27560 components: - type: Transform rot: -1.5707963267948966 rad @@ -190965,7 +195107,7 @@ entities: parent: 2 - type: Paper content: "Протокол 4416\r\nСотрудники отдела снабжения поступили в медицинский блок с обширными поражениями рук и посинением кожи. " - - uid: 32774 + - uid: 27561 components: - type: Transform rot: 3.141592653589793 rad @@ -190973,7 +195115,7 @@ entities: parent: 2 - type: Paper content: "Протокол 4432\nГенетические исследования были остановлены. Попытки уничтожить образцы не увенчались успехом. " - - uid: 34262 + - uid: 27562 components: - type: Transform pos: -19.534334,-29.354733 @@ -190992,36 +195134,36 @@ entities: Надежды на спасение нет... нас ждёт та же участь... - - uid: 37716 + - uid: 27563 components: - type: Transform pos: 52.594917,-9.306356 parent: 2 - - uid: 40262 + - uid: 27564 components: - type: Transform rot: 0.4188790204786391 rad pos: 50.65171,20.885515 parent: 2 - - uid: 40263 + - uid: 27565 components: - type: Transform rot: 2.8623399732707004 rad pos: 52.199566,20.886168 parent: 2 - - uid: 40758 + - uid: 27566 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.01984,10.520765 parent: 2 - - uid: 40759 + - uid: 27567 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.05109,10.41139 parent: 2 - - uid: 41036 + - uid: 27568 components: - type: Transform pos: -34.366844,-22.718172 @@ -191072,54 +195214,66 @@ entities: [bullet]доксарубиксадон [2] editingDisabled: True + - uid: 27569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.292738,-21.438 + parent: 2 + - type: Paper + content: > + Экспериментальный квантовый дестабилизационно-дислокационный транспондер телепортирует случайные вещи в радиусе 400 парсек на платформу перед вами. Требуется начать синхронизацию и послать калибровочный сигнал с резервного пульта. + + + Осторожно. Погрешность платформы перед вами около 500 метров. - proto: PaperBin10 entities: - - uid: 24922 + - uid: 27570 components: - type: Transform pos: -66.5,-75.5 parent: 2 - - uid: 24923 + - uid: 27571 components: - type: Transform pos: 2.5,25.5 parent: 2 - - uid: 24924 + - uid: 27572 components: - type: Transform pos: -24.5,6.5 parent: 2 - - uid: 24925 + - uid: 27573 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,5.5 parent: 2 - - uid: 24926 + - uid: 27574 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.4295154,9.521872 parent: 2 - - uid: 32566 + - uid: 27575 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,14.5 parent: 2 - - uid: 37777 + - uid: 27576 components: - type: Transform pos: 51.5,-10.5 parent: 2 - proto: PaperBin20 entities: - - uid: 23115 + - uid: 27577 components: - type: Transform pos: 85.5,-3.5 parent: 2 - - uid: 40624 + - uid: 27578 components: - type: Transform rot: -1.5707963267948966 rad @@ -191127,17 +195281,17 @@ entities: parent: 2 - proto: PaperBin5 entities: - - uid: 2751 + - uid: 27579 components: - type: Transform pos: 48.5,-1.5 parent: 2 - - uid: 18280 + - uid: 27580 components: - type: Transform pos: 47.5,-5.5 parent: 2 - - uid: 24928 + - uid: 27581 components: - type: Transform rot: -1.5707963267948966 rad @@ -191145,62 +195299,62 @@ entities: parent: 2 - proto: PaperCaptainsThoughts entities: - - uid: 24929 + - uid: 27582 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.54434,16.62763 parent: 2 - - uid: 24930 + - uid: 27583 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.45059,16.75263 parent: 2 - - uid: 24931 + - uid: 27584 components: - type: Transform pos: 13.403715,15.03388 parent: 2 - - uid: 24932 + - uid: 27585 components: - type: Transform pos: 13.403715,15.049505 parent: 2 - - uid: 24933 + - uid: 27586 components: - type: Transform pos: 13.403715,15.049505 parent: 2 - - uid: 24934 + - uid: 27587 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.57559,13.955755 parent: 2 - - uid: 24935 + - uid: 27588 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.63809,13.955755 parent: 2 - - uid: 40939 + - uid: 27589 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.340697,-22.686184 parent: 2 - - uid: 40953 + - uid: 27590 components: - type: Transform pos: 14.434447,-22.451809 parent: 2 - proto: PaperCargoInvoice entities: - - uid: 6313 + - uid: 16250 components: - type: Transform - parent: 14538 + parent: 16248 - type: Paper stampState: paper_stamp-cap stampedBy: @@ -191211,10 +195365,10 @@ entities: content: "[color=tan]░░░░░░░░░░░░░░░░░░░[/color] [bold][color=#A6A600] WAYBILL [/color][/bold] \r\n[color=tan]░░░░░░░▓▓▓▓█░░░░░░░[/color] [head=2][color=#FFC200] United[/color][/head]\r\n[color=tan]░░░░░███▓█████░░░░░[/color] [head=2][color=#FFC200] Government [/color][/head]\r\n[color=tan]░░░░██▓▓▓▓▓▓▓██░░░░[/color] [head=2][color=#FFC200] of the earth[/color][/head]\r\n[color=tan]░░░██▓██▓▓██▓▓▓▓░░░[/color] [color=black][head=1]――――――[/head] \r\n[color=tan]░█░████▓▓▓▓▓▓█▓▓░█░[/color] [head=3]FROM:[/head][color=#1E3F70][italic]0.0.0 Sun Earth[/italic][/color]\r\n[color=tan]██░░██▓▓▓▓▓▓▓██░░██[/color] \n[color=tan]███░░█▓██▓▓▓█▓░░███[/color] [head=3]SEND TO:[/head][color=#1E3F70][italic] 443.34.33[/italic][/color]\r\n[color=tan]░███░░░█▓▓▓▓░░░███░[/color] [color=#1E3F70][italic][/italic][/color][color=#1E3F70][italic] G900 Vasilisk[/italic][/color]\r \r\n[color=tan]░░░███░░░░░░░███░░░[/color] [head=3]Codes:[/head][color=#1E3F70] [italic] era L2950.0[/italic][/color]\r\n[color=tan]░░░░████[color=#FFC200][head=1]UEG[/head][color=tan]████░░░░[/color][color=black][head=1]――――――[/head]\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head][head=2]\r\nGOVERNMENT PROPERTY\n[/head][head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n[bold]Sent date:[/bold]\r\n[color=#1E3F70][italic]22:00; 15/09/2963[/italic][/color]\r\n[bold]Sender:[/bold] \r\n[color=#1E3F70][italic]Directorate of Special Expeditions[/italic][/color]\r\n\r\n[bold]Recipient:[/bold] \r\n[color=#1E3F70][italic]Vasilisk Project[/italic][/color]\n[head=1]―――――――――――――[/head]\n\n\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n [color=#565A5A][bolditalic]Place for seals[/bolditalic][/color]\n\n" - type: Physics canCollide: False - - uid: 6315 + - uid: 16253 components: - type: Transform - parent: 6314 + parent: 16251 - type: Paper stampState: paper_stamp-cap stampedBy: @@ -191225,10 +195379,10 @@ entities: content: "[color=tan]░░░░░░░░░░░░░░░░░░░[/color] [bold][color=#A6A600] WAYBILL [/color][/bold] \r\n[color=tan]░░░░░░░▓▓▓▓█░░░░░░░[/color] [head=2][color=#FFC200] United[/color][/head]\r\n[color=tan]░░░░░███▓█████░░░░░[/color] [head=2][color=#FFC200] Government [/color][/head]\r\n[color=tan]░░░░██▓▓▓▓▓▓▓██░░░░[/color] [head=2][color=#FFC200] of the earth[/color][/head]\r\n[color=tan]░░░██▓██▓▓██▓▓▓▓░░░[/color] [color=black][head=1]――――――[/head] \r\n[color=tan]░█░████▓▓▓▓▓▓█▓▓░█░[/color] [head=3]FROM:[/head][color=#1E3F70][italic]0.0.0 Sun Earth[/italic][/color]\r\n[color=tan]██░░██▓▓▓▓▓▓▓██░░██[/color] \n[color=tan]███░░█▓██▓▓▓█▓░░███[/color] [head=3]SEND TO:[/head][color=#1E3F70][italic] 443.34.33[/italic][/color]\r\n[color=tan]░███░░░█▓▓▓▓░░░███░[/color] [color=#1E3F70][italic][/italic][/color][color=#1E3F70][italic] G900 Vasilisk[/italic][/color]\r \r\n[color=tan]░░░███░░░░░░░███░░░[/color] [head=3]Codes:[/head][color=#1E3F70] [italic] era L2950.0[/italic][/color]\r\n[color=tan]░░░░████[color=#FFC200][head=1]UEG[/head][color=tan]████░░░░[/color][color=black][head=1]――――――[/head]\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head][head=2]\r\nGOVERNMENT PROPERTY\n[/head][head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n[bold]Sent date:[/bold]\r\n[color=#1E3F70][italic]22:00; 15/09/2963[/italic][/color]\r\n[bold]Sender:[/bold] \r\n[color=#1E3F70][italic]Directorate of Special Expeditions[/italic][/color]\r\n\r\n[bold]Recipient:[/bold] \r\n[color=#1E3F70][italic]Vasilisk Project[/italic][/color]\n[head=1]―――――――――――――[/head]\n\n\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n [color=#565A5A][bolditalic]Place for seals[/bolditalic][/color]\n\n" - type: Physics canCollide: False - - uid: 14477 + - uid: 16256 components: - type: Transform - parent: 14476 + parent: 16254 - type: Paper stampState: paper_stamp-cap stampedBy: @@ -191239,10 +195393,10 @@ entities: content: "[color=tan]░░░░░░░░░░░░░░░░░░░[/color] [bold][color=#A6A600] WAYBILL [/color][/bold] \r\n[color=tan]░░░░░░░▓▓▓▓█░░░░░░░[/color] [head=2][color=#FFC200] United[/color][/head]\r\n[color=tan]░░░░░███▓█████░░░░░[/color] [head=2][color=#FFC200] Government [/color][/head]\r\n[color=tan]░░░░██▓▓▓▓▓▓▓██░░░░[/color] [head=2][color=#FFC200] of the earth[/color][/head]\r\n[color=tan]░░░██▓██▓▓██▓▓▓▓░░░[/color] [color=black][head=1]――――――[/head] \r\n[color=tan]░█░████▓▓▓▓▓▓█▓▓░█░[/color] [head=3]FROM:[/head][color=#1E3F70][italic]0.0.0 Sun Earth[/italic][/color]\r\n[color=tan]██░░██▓▓▓▓▓▓▓██░░██[/color] \n[color=tan]███░░█▓██▓▓▓█▓░░███[/color] [head=3]SEND TO:[/head][color=#1E3F70][italic] 443.34.33[/italic][/color]\r\n[color=tan]░███░░░█▓▓▓▓░░░███░[/color] [color=#1E3F70][italic][/italic][/color][color=#1E3F70][italic] G900 Vasilisk[/italic][/color]\r \r\n[color=tan]░░░███░░░░░░░███░░░[/color] [head=3]Codes:[/head][color=#1E3F70] [italic] era L2950.0[/italic][/color]\r\n[color=tan]░░░░████[color=#FFC200][head=1]UEG[/head][color=tan]████░░░░[/color][color=black][head=1]――――――[/head]\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head][head=2]\r\nGOVERNMENT PROPERTY\n[/head][head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n[bold]Sent date:[/bold]\r\n[color=#1E3F70][italic]22:00; 15/09/2963[/italic][/color]\r\n[bold]Sender:[/bold] \r\n[color=#1E3F70][italic]Directorate of Special Expeditions[/italic][/color]\r\n\r\n[bold]Recipient:[/bold] \r\n[color=#1E3F70][italic]Vasilisk Project[/italic][/color]\n[head=1]―――――――――――――[/head]\n\n\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n [color=#565A5A][bolditalic]Place for seals[/bolditalic][/color]\n\n" - type: Physics canCollide: False - - uid: 14533 + - uid: 16259 components: - type: Transform - parent: 14532 + parent: 16257 - type: Paper stampState: paper_stamp-cap stampedBy: @@ -191253,10 +195407,10 @@ entities: content: "[color=tan]░░░░░░░░░░░░░░░░░░░[/color] [bold][color=#A6A600] WAYBILL [/color][/bold] \r\n[color=tan]░░░░░░░▓▓▓▓█░░░░░░░[/color] [head=2][color=#FFC200] United[/color][/head]\r\n[color=tan]░░░░░███▓█████░░░░░[/color] [head=2][color=#FFC200] Government [/color][/head]\r\n[color=tan]░░░░██▓▓▓▓▓▓▓██░░░░[/color] [head=2][color=#FFC200] of the earth[/color][/head]\r\n[color=tan]░░░██▓██▓▓██▓▓▓▓░░░[/color] [color=black][head=1]――――――[/head] \r\n[color=tan]░█░████▓▓▓▓▓▓█▓▓░█░[/color] [head=3]FROM:[/head][color=#1E3F70][italic]0.0.0 Sun Earth[/italic][/color]\r\n[color=tan]██░░██▓▓▓▓▓▓▓██░░██[/color] \n[color=tan]███░░█▓██▓▓▓█▓░░███[/color] [head=3]SEND TO:[/head][color=#1E3F70][italic] 443.34.33[/italic][/color]\r\n[color=tan]░███░░░█▓▓▓▓░░░███░[/color] [color=#1E3F70][italic][/italic][/color][color=#1E3F70][italic] G900 Vasilisk[/italic][/color]\r \r\n[color=tan]░░░███░░░░░░░███░░░[/color] [head=3]Codes:[/head][color=#1E3F70] [italic] era L2950.0[/italic][/color]\r\n[color=tan]░░░░████[color=#FFC200][head=1]UEG[/head][color=tan]████░░░░[/color][color=black][head=1]――――――[/head]\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head][head=2]\r\nGOVERNMENT PROPERTY\n[/head][head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n[bold]Sent date:[/bold]\r\n[color=#1E3F70][italic]22:00; 15/09/2963[/italic][/color]\r\n[bold]Sender:[/bold] \r\n[color=#1E3F70][italic]Directorate of Special Expeditions[/italic][/color]\r\n\r\n[bold]Recipient:[/bold] \r\n[color=#1E3F70][italic]Vasilisk Project[/italic][/color]\n[head=1]―――――――――――――[/head]\n\n\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n [color=#565A5A][bolditalic]Place for seals[/bolditalic][/color]\n\n" - type: Physics canCollide: False - - uid: 14539 + - uid: 16288 components: - type: Transform - parent: 6311 + parent: 16287 - type: Paper stampState: paper_stamp-cap stampedBy: @@ -191267,10 +195421,10 @@ entities: content: "[color=tan]░░░░░░░░░░░░░░░░░░░[/color] [bold][color=#A6A600] WAYBILL [/color][/bold] \r\n[color=tan]░░░░░░░▓▓▓▓█░░░░░░░[/color] [head=2][color=#FFC200] United[/color][/head]\r\n[color=tan]░░░░░███▓█████░░░░░[/color] [head=2][color=#FFC200] Government [/color][/head]\r\n[color=tan]░░░░██▓▓▓▓▓▓▓██░░░░[/color] [head=2][color=#FFC200] of the earth[/color][/head]\r\n[color=tan]░░░██▓██▓▓██▓▓▓▓░░░[/color] [color=black][head=1]――――――[/head] \r\n[color=tan]░█░████▓▓▓▓▓▓█▓▓░█░[/color] [head=3]FROM:[/head][color=#1E3F70][italic]0.0.0 Sun Earth[/italic][/color]\r\n[color=tan]██░░██▓▓▓▓▓▓▓██░░██[/color] \n[color=tan]███░░█▓██▓▓▓█▓░░███[/color] [head=3]SEND TO:[/head][color=#1E3F70][italic] 443.34.33[/italic][/color]\r\n[color=tan]░███░░░█▓▓▓▓░░░███░[/color] [color=#1E3F70][italic][/italic][/color][color=#1E3F70][italic] G900 Vasilisk[/italic][/color]\r \r\n[color=tan]░░░███░░░░░░░███░░░[/color] [head=3]Codes:[/head][color=#1E3F70] [italic] era L2950.0[/italic][/color]\r\n[color=tan]░░░░████[color=#FFC200][head=1]UEG[/head][color=tan]████░░░░[/color][color=black][head=1]――――――[/head]\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head][head=2]\r\nGOVERNMENT PROPERTY\n[/head][head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n[bold]Sent date:[/bold]\r\n[color=#1E3F70][italic]22:00; 15/09/2963[/italic][/color]\r\n[bold]Sender:[/bold] \r\n[color=#1E3F70][italic]Directorate of Special Expeditions[/italic][/color]\r\n\r\n[bold]Recipient:[/bold] \r\n[color=#1E3F70][italic]Vasilisk Project[/italic][/color]\n[head=1]―――――――――――――[/head]\n\n\r\n[head=1]▬▬▬▬▬▬▬▬▬▬▬▬▬[/head]\r\n [color=#565A5A][bolditalic]Place for seals[/bolditalic][/color]\n\n" - type: Physics canCollide: False - - uid: 14542 + - uid: 16291 components: - type: Transform - parent: 14541 + parent: 16290 - type: Paper stampState: paper_stamp-cap stampedBy: @@ -191283,7 +195437,7 @@ entities: canCollide: False - proto: PaperDoor entities: - - uid: 33618 + - uid: 27591 components: - type: Transform rot: 3.141592653589793 rad @@ -191291,25 +195445,25 @@ entities: parent: 2 - proto: PaperOffice entities: - - uid: 17345 + - uid: 27592 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.461765,-24.83054 parent: 2 - - uid: 19585 + - uid: 27593 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.608532,-25.013998 parent: 2 - - uid: 19603 + - uid: 27594 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.388382,-25.124073 parent: 2 - - uid: 22641 + - uid: 27595 components: - type: MetaData desc: Поперхнись своими отрядами, товарищ гсб. @@ -191365,7 +195519,7 @@ entities: Срочники - Забыли свой номер - - - uid: 32968 + - uid: 27596 components: - type: Transform pos: 20.451714,-17.492172 @@ -191387,31 +195541,31 @@ entities: 2.7.29 особый груз без накладных - proto: PaperScrap entities: - - uid: 24940 + - uid: 27597 components: - type: Transform pos: -29.777176,-114.49306 parent: 2 - - uid: 24941 + - uid: 27598 components: - type: Transform pos: -29.245926,-114.19618 parent: 2 - - uid: 24942 + - uid: 27599 components: - type: Transform pos: -30.1053,-114.22743 parent: 2 - proto: ParticleAcceleratorControlBoxUnfinished entities: - - uid: 24943 + - uid: 27600 components: - type: Transform pos: 63.5,-58.5 parent: 2 - proto: ParticleAcceleratorEmitterForeUnfinished entities: - - uid: 24944 + - uid: 27601 components: - type: Transform rot: 1.5707963267948966 rad @@ -191419,7 +195573,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterPortUnfinished entities: - - uid: 24945 + - uid: 27602 components: - type: Transform rot: 1.5707963267948966 rad @@ -191427,7 +195581,7 @@ entities: parent: 2 - proto: ParticleAcceleratorEmitterStarboardUnfinished entities: - - uid: 24946 + - uid: 27603 components: - type: Transform rot: 1.5707963267948966 rad @@ -191435,20 +195589,20 @@ entities: parent: 2 - proto: ParticleAcceleratorEndCapUnfinished entities: - - uid: 24947 + - uid: 27604 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-59.5 parent: 2 - - uid: 24948 + - uid: 27605 components: - type: Transform pos: 17.5,7.5 parent: 2 - proto: ParticleAcceleratorFuelChamber entities: - - uid: 24949 + - uid: 27606 components: - type: Transform rot: 1.5707963267948966 rad @@ -191456,7 +195610,7 @@ entities: parent: 2 - proto: ParticleAcceleratorPowerBoxUnfinished entities: - - uid: 24950 + - uid: 27607 components: - type: Transform rot: -1.5707963267948966 rad @@ -191464,127 +195618,127 @@ entities: parent: 2 - proto: PartRodMetal entities: - - uid: 24951 + - uid: 27608 components: - type: Transform pos: -18.24651,-101.415245 parent: 2 - - uid: 24952 + - uid: 27609 components: - type: Transform pos: -27.496012,-78.36636 parent: 2 - - uid: 24953 + - uid: 27610 components: - type: Transform pos: 65.69005,-27.17667 parent: 2 - - uid: 24955 + - uid: 27611 components: - type: Transform pos: 109.5,-21.5 parent: 2 - - uid: 24956 + - uid: 27612 components: - type: Transform pos: 59.514774,-62.414303 parent: 2 - - uid: 24957 + - uid: 27613 components: - type: Transform pos: 43.5,-66.5 parent: 2 - - uid: 38389 + - uid: 41336 components: - type: Transform pos: -1.4355316,-7.3322144 - parent: 37887 + parent: 40828 - proto: PartRodMetal1 entities: - - uid: 24958 + - uid: 27614 components: - type: Transform pos: -19.355139,-92.37054 parent: 2 - - uid: 24959 + - uid: 27615 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.163605,-47.61128 parent: 2 - - uid: 24960 + - uid: 27616 components: - type: Transform rot: 3.141592653589793 rad pos: -63.515656,-32.105747 parent: 2 - - uid: 24961 + - uid: 27617 components: - type: Transform rot: 3.141592653589793 rad pos: -64.25003,-31.871372 parent: 2 - - uid: 24962 + - uid: 27618 components: - type: Transform rot: 3.141592653589793 rad pos: -64.359406,-32.402622 parent: 2 - - uid: 24963 + - uid: 27619 components: - type: Transform rot: 3.141592653589793 rad pos: -61.685455,-61.68288 parent: 2 - - uid: 24964 + - uid: 27620 components: - type: Transform rot: 3.141592653589793 rad pos: -61.466705,-61.636005 parent: 2 - - uid: 24965 + - uid: 27621 components: - type: Transform pos: -44.352867,13.510422 parent: 2 - - uid: 24966 + - uid: 27622 components: - type: Transform pos: -67.58551,-8.420864 parent: 2 - - uid: 24967 + - uid: 27623 components: - type: Transform pos: -67.476135,-8.530239 parent: 2 - - uid: 24968 + - uid: 27624 components: - type: Transform pos: -67.601135,-8.623989 parent: 2 - - uid: 24970 + - uid: 27625 components: - type: Transform pos: -85.54087,1.3566759 parent: 2 - - uid: 24971 + - uid: 27626 components: - type: Transform pos: -85.493996,0.65355086 parent: 2 - - uid: 29090 + - uid: 27627 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5863404,-24.63628 parent: 2 - - uid: 29113 + - uid: 27628 components: - type: Transform rot: 3.141592653589793 rad pos: -3.7425904,-24.651905 parent: 2 - - uid: 29114 + - uid: 27629 components: - type: Transform rot: 3.141592653589793 rad @@ -191592,220 +195746,225 @@ entities: parent: 2 - proto: PartRodMetal10 entities: - - uid: 24986 + - uid: 27630 components: - type: Transform pos: -68.461494,-62.86725 parent: 2 - proto: PaxChemistryBottle entities: - - uid: 17816 + - uid: 45 components: - type: Transform - parent: 27043 + parent: 35 - type: Physics canCollide: False - proto: Pen entities: - - uid: 9387 + - uid: 27631 components: - type: Transform pos: 55.42339,-0.5201292 parent: 2 - - uid: 9738 + - uid: 27632 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.355556,10.0937805 parent: 2 - - uid: 17346 + - uid: 27633 components: - type: Transform pos: 47.407757,-25.40052 parent: 2 - - uid: 18283 + - uid: 27634 components: - type: Transform rot: 3.141592653589793 rad pos: 52.142643,-5.5503273 parent: 2 - - uid: 22235 + - uid: 27635 components: - type: Transform rot: 3.141592653589793 rad pos: 55.40791,-5.4975853 parent: 2 - - uid: 22424 + - uid: 27636 components: - type: Transform pos: 41.06882,-26.54219 parent: 2 - - uid: 24653 + - uid: 27637 components: - type: Transform pos: 85.38429,-2.5867987 parent: 2 - - uid: 24987 + - uid: 27638 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.6359317,27.496674 parent: 2 - - uid: 24988 + - uid: 27639 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.3727455,16.181618 parent: 2 - - uid: 24989 + - uid: 27640 components: - type: Transform pos: 6.903279,8.570344 parent: 2 - - uid: 24990 + - uid: 27641 components: - type: Transform pos: -23.082392,6.71767 parent: 2 - - uid: 24991 + - uid: 27642 components: - type: Transform pos: -49.351166,-19.166203 parent: 2 - - uid: 24992 + - uid: 27643 components: - type: Transform pos: -34.6723,-7.865941 parent: 2 - - uid: 24993 + - uid: 27644 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.66583,-42.520214 parent: 2 - - uid: 24994 + - uid: 27645 components: - type: Transform rot: 3.141592653589793 rad pos: 67.69561,-37.30603 parent: 2 - - uid: 24995 + - uid: 27646 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.419919,-81.434166 parent: 2 - - uid: 24999 + - uid: 27647 components: - type: Transform pos: 57.553455,-73.05898 parent: 2 - - uid: 25000 + - uid: 27648 components: - type: Transform pos: 2.275529,24.492702 parent: 2 - - uid: 25001 + - uid: 27649 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.599102,21.309998 parent: 2 - - uid: 25003 + - uid: 27650 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.323864,-39.987896 parent: 2 - - uid: 25004 + - uid: 27651 components: - type: Transform pos: -1.5982285,-95.43275 parent: 2 - - uid: 25005 + - uid: 27652 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.682076,-48.161274 parent: 2 - - uid: 25006 + - uid: 27653 components: - type: Transform pos: -28.527176,-112.99306 parent: 2 - - uid: 25007 + - uid: 27654 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.683426,-112.16493 parent: 2 - - uid: 25008 + - uid: 27655 components: - type: Transform pos: -28.600348,12.59066 parent: 2 - - uid: 25009 + - uid: 27656 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.513985,5.1233263 parent: 2 - - uid: 25010 + - uid: 27657 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.791588,-46.321323 parent: 2 - - uid: 34411 + - uid: 27658 components: - type: Transform rot: -1.5707963267948966 rad pos: -65.40808,-38.200974 parent: 2 - - uid: 37732 + - uid: 27659 components: - type: Transform pos: 52.612278,-9.527596 parent: 2 + - uid: 27660 + components: + - type: Transform + pos: -18.945475,-28.844828 + parent: 2 - proto: PenExploding entities: - - uid: 22249 + - uid: 27661 components: - type: Transform pos: -30.654127,-112.24428 parent: 2 - proto: PersonalAI entities: - - uid: 25012 + - uid: 27662 components: - type: Transform pos: -66.47985,-74.523544 parent: 2 - - uid: 25014 + - uid: 27664 components: - type: Transform - parent: 25013 + parent: 27663 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 25018 + - uid: 27666 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.487228,12.727834 parent: 2 - - uid: 25019 + - uid: 27667 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.438023,-95.78225 parent: 2 - - uid: 25020 + - uid: 27668 components: - type: Transform pos: -29.462147,-107.18951 parent: 2 - - uid: 25021 + - uid: 27669 components: - type: Transform rot: -1.5707963267948966 rad @@ -191813,25 +195972,25 @@ entities: parent: 2 - proto: PetCarrier entities: - - uid: 5404 + - uid: 27670 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-22.5 parent: 2 - - uid: 17449 + - uid: 27671 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-117.5 parent: 2 - - uid: 25022 + - uid: 27672 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-47.5 parent: 2 - - uid: 25023 + - uid: 27673 components: - type: Transform rot: 3.141592653589793 rad @@ -191839,22 +195998,22 @@ entities: parent: 2 - proto: PhoneInstrument entities: - - uid: 25024 + - uid: 27674 components: - type: Transform pos: 2.49975,25.016228 parent: 2 - proto: PhosphorusChemistryBottle entities: - - uid: 40779 + - uid: 1993 components: - type: Transform - parent: 37041 + parent: 1980 - type: Physics canCollide: False - proto: PianoInstrument entities: - - uid: 25025 + - uid: 27675 components: - type: Transform rot: 1.5707963267948966 rad @@ -191862,96 +196021,96 @@ entities: parent: 2 - proto: Pickaxe entities: - - uid: 25027 + - uid: 27676 components: - type: Transform pos: -9.2632065,-96.37581 parent: 2 - - uid: 25028 + - uid: 27677 components: - type: Transform pos: -9.0913315,-96.39143 parent: 2 - proto: PillAmbuzolPlus entities: - - uid: 38391 + - uid: 41338 components: - type: Transform - parent: 38390 + parent: 41337 - type: Physics canCollide: False - - uid: 38392 + - uid: 41339 components: - type: Transform - parent: 38390 + parent: 41337 - type: Physics canCollide: False - - uid: 38393 + - uid: 41340 components: - type: Transform - parent: 38390 + parent: 41337 - type: Physics canCollide: False - - uid: 38394 + - uid: 41341 components: - type: Transform - parent: 38390 + parent: 41337 - type: Physics canCollide: False - - uid: 38395 + - uid: 41342 components: - type: Transform - parent: 38390 + parent: 41337 - type: Physics canCollide: False - - uid: 38396 + - uid: 41343 components: - type: Transform - parent: 38390 + parent: 41337 - type: Physics canCollide: False - - uid: 38397 + - uid: 41344 components: - type: Transform - parent: 38390 + parent: 41337 - type: Physics canCollide: False - - uid: 38398 + - uid: 41345 components: - type: Transform - parent: 38390 + parent: 41337 - type: Physics canCollide: False - - uid: 38399 + - uid: 41346 components: - type: Transform - parent: 38390 + parent: 41337 - type: Physics canCollide: False - - uid: 38400 + - uid: 41347 components: - type: Transform - parent: 38390 + parent: 41337 - type: Physics canCollide: False - proto: PillCanister entities: - - uid: 17817 + - uid: 46 components: - type: Transform - parent: 27043 + parent: 35 - type: Storage storedItems: - 17821: + 50: position: 0,0 _rotation: South - 17819: + 48: position: 1,0 _rotation: South - 17820: + 49: position: 2,0 _rotation: South - 17818: + 47: position: 3,0 _rotation: South - type: ContainerContainer @@ -191960,65 +196119,65 @@ entities: showEnts: False occludes: True ents: - - 17821 - - 17819 - - 17820 - - 17818 + - 50 + - 48 + - 49 + - 47 - type: Physics canCollide: False - - uid: 17908 + - uid: 27678 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.769884,18.63893 parent: 2 - - uid: 25037 + - uid: 27679 components: - type: Transform pos: -49.666336,-18.31588 parent: 2 - - uid: 25040 + - uid: 27680 components: - type: Transform pos: -68.2631,-47.37917 parent: 2 - - uid: 38390 + - uid: 41337 components: - type: MetaData name: баночка амбузола+ - type: Transform pos: -4.71109,-11.4747925 - parent: 37887 + parent: 40828 - type: Storage storedItems: - 38391: + 41338: position: 0,0 _rotation: South - 38392: + 41339: position: 1,0 _rotation: South - 38393: + 41340: position: 2,0 _rotation: South - 38394: + 41341: position: 3,0 _rotation: South - 38395: + 41342: position: 4,0 _rotation: South - 38396: + 41343: position: 0,1 _rotation: South - 38397: + 41344: position: 1,1 _rotation: South - 38398: + 41345: position: 2,1 _rotation: South - 38399: + 41346: position: 3,1 _rotation: South - 38400: + 41347: position: 4,1 _rotation: South - type: ContainerContainer @@ -192027,244 +196186,342 @@ entities: showEnts: False occludes: True ents: - - 38391 - - 38392 - - 38393 - - 38394 - - 38395 - - 38396 - - 38397 - - 38398 - - 38399 - - 38400 + - 41338 + - 41339 + - 41340 + - 41341 + - 41342 + - 41343 + - 41344 + - 41345 + - 41346 + - 41347 +- proto: PillCanisterCopper + entities: + - uid: 2524 + components: + - type: Transform + parent: 2520 + - type: Physics + canCollide: False + - uid: 2531 + components: + - type: Transform + parent: 2527 + - type: Physics + canCollide: False + - uid: 2538 + components: + - type: Transform + parent: 2534 + - type: Physics + canCollide: False +- proto: PillCanisterDermaline + entities: + - uid: 2575 + components: + - type: Transform + parent: 2571 + - type: Physics + canCollide: False + - uid: 2581 + components: + - type: Transform + parent: 2577 + - type: Physics + canCollide: False + - uid: 2587 + components: + - type: Transform + parent: 2583 + - type: Physics + canCollide: False +- proto: PillCanisterDexalin + entities: + - uid: 74 + components: + - type: Transform + parent: 68 + - type: Physics + canCollide: False + - uid: 83 + components: + - type: Transform + parent: 77 + - type: Physics + canCollide: False + - uid: 92 + components: + - type: Transform + parent: 86 + - type: Physics + canCollide: False - proto: PillCanisterIron entities: - - uid: 25044 + - uid: 2525 + components: + - type: Transform + parent: 2520 + - type: Physics + canCollide: False + - uid: 2532 + components: + - type: Transform + parent: 2527 + - type: Physics + canCollide: False + - uid: 2539 + components: + - type: Transform + parent: 2534 + - type: Physics + canCollide: False + - uid: 27681 components: - type: Transform pos: -46.630543,-5.5307565 parent: 2 +- proto: PillCanisterKelotane + entities: + - uid: 2576 + components: + - type: Transform + parent: 2571 + - type: Physics + canCollide: False + - uid: 2582 + components: + - type: Transform + parent: 2577 + - type: Physics + canCollide: False + - uid: 2588 + components: + - type: Transform + parent: 2583 + - type: Physics + canCollide: False - proto: PillCanisterTricordrazine entities: - - uid: 25045 + - uid: 27682 components: - type: Transform pos: -6.196212,13.600146 parent: 2 - proto: PillSpaceDrugs entities: - - uid: 17818 + - uid: 47 components: - type: Transform - parent: 17817 + parent: 46 - type: Physics canCollide: False - - uid: 17819 + - uid: 48 components: - type: Transform - parent: 17817 + parent: 46 - type: Physics canCollide: False - - uid: 17820 + - uid: 49 components: - type: Transform - parent: 17817 + parent: 46 - type: Physics canCollide: False - - uid: 17821 + - uid: 50 components: - type: Transform - parent: 17817 + parent: 46 - type: Physics canCollide: False - proto: PinionAirlock entities: - - uid: 36707 + - uid: 27683 components: - type: Transform pos: 2.5,-47.5 parent: 2 - - uid: 36708 + - uid: 27684 components: - type: Transform pos: -9.5,-29.5 parent: 2 - - uid: 36709 + - uid: 27685 components: - type: Transform pos: -9.5,-30.5 parent: 2 - proto: PinionAirlockGlass entities: - - uid: 36703 + - uid: 27686 components: - type: Transform pos: 6.5,-52.5 parent: 2 - - uid: 36704 + - uid: 27687 components: - type: Transform pos: 5.5,-52.5 parent: 2 - - uid: 36705 + - uid: 27688 components: - type: Transform pos: 3.5,-52.5 parent: 2 - type: Door - secondsUntilStateChange: -20135.443 + secondsUntilStateChange: -41877.258 state: Opening - type: DeviceLinkSource lastSignals: DoorStatus: True - - uid: 36706 + - uid: 27689 components: - type: Transform pos: 2.5,-52.5 parent: 2 - type: Door - secondsUntilStateChange: -20136.178 + secondsUntilStateChange: -41877.992 state: Opening - type: DeviceLinkSource lastSignals: DoorStatus: True - proto: PinpointerNuclear entities: - - uid: 25047 + - uid: 27690 components: - type: Transform pos: 8.972797,13.591203 parent: 2 - proto: PirateFlag entities: - - uid: 1011 + - uid: 27691 components: - type: Transform pos: 8.5,-13.5 parent: 2 - - uid: 1089 + - uid: 27692 components: - type: Transform pos: 12.5,-13.5 parent: 2 - proto: PirateHandyFlag entities: - - uid: 39803 + - uid: 27693 components: - type: Transform pos: 10.70426,-24.148893 parent: 2 - proto: PlasmaCanister entities: - - uid: 1615 + - uid: 27694 components: - type: Transform pos: 31.5,-93.5 parent: 2 - - uid: 25048 + - uid: 27695 components: - type: Transform pos: -48.5,-59.5 parent: 2 - - uid: 25049 + - uid: 27696 components: - type: Transform pos: 38.5,-49.5 parent: 2 - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 24353 + - uid: 27697 components: - type: Transform pos: 17.5,-78.5 parent: 2 - - uid: 25050 + - uid: 27698 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-75.5 parent: 2 - - uid: 25051 + - uid: 27699 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-74.5 parent: 2 - - uid: 25052 + - uid: 27700 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-72.5 parent: 2 - - uid: 25053 + - uid: 27701 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-72.5 parent: 2 - - uid: 25054 + - uid: 27702 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-72.5 parent: 2 - - uid: 25055 + - uid: 27703 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-74.5 parent: 2 - - uid: 25056 + - uid: 27704 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-72.5 parent: 2 - - uid: 25057 + - uid: 27705 components: - type: Transform pos: -51.5,-72.5 parent: 2 - - uid: 25058 + - uid: 27706 components: - type: Transform pos: -47.5,-72.5 parent: 2 - - uid: 25059 + - uid: 27707 components: - type: Transform pos: -49.5,-72.5 parent: 2 - - uid: 25060 + - uid: 27708 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-73.5 parent: 2 - - uid: 25061 + - uid: 27709 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-73.5 parent: 2 - - uid: 25062 + - uid: 27710 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-75.5 parent: 2 - - uid: 28827 + - uid: 27711 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-79.5 parent: 2 - - uid: 36695 + - uid: 27712 components: - type: Transform pos: 19.5,-78.5 parent: 2 - - uid: 41093 + - uid: 27713 components: - type: Transform rot: -1.5707963267948966 rad @@ -192272,23 +196529,23 @@ entities: parent: 2 - proto: PlasmaWindoorSecureChemistryLocked entities: - - uid: 25074 + - uid: 27714 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-35.5 parent: 2 - - uid: 25076 + - uid: 27715 components: - type: Transform pos: -36.5,-27.5 parent: 2 - - uid: 25077 + - uid: 27716 components: - type: Transform pos: -35.5,-27.5 parent: 2 - - uid: 41140 + - uid: 27717 components: - type: Transform rot: 3.141592653589793 rad @@ -192296,67 +196553,67 @@ entities: parent: 2 - proto: PlasmaWindoorSecureJanitorLocked entities: - - uid: 15459 + - uid: 27718 components: - type: Transform pos: 18.5,-78.5 parent: 2 - proto: PlasmaWindoorSecureScienceLocked entities: - - uid: 25078 + - uid: 27719 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-47.5 parent: 2 - - uid: 25079 + - uid: 27720 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-73.5 parent: 2 - - uid: 25080 + - uid: 27721 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,-73.5 parent: 2 - - uid: 25081 + - uid: 27722 components: - type: Transform pos: -61.5,-76.5 parent: 2 - - uid: 25082 + - uid: 27723 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-76.5 parent: 2 - - uid: 25083 + - uid: 27724 components: - type: Transform pos: -36.5,-45.5 parent: 2 - proto: PlasticBanana entities: - - uid: 25084 + - uid: 27725 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.6832,-33.776318 parent: 2 - - uid: 25085 + - uid: 27726 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.51132,-33.541943 parent: 2 - - uid: 25086 + - uid: 27727 components: - type: Transform pos: -74.44882,-33.760693 parent: 2 - - uid: 25087 + - uid: 27728 components: - type: Transform rot: 3.141592653589793 rad @@ -192364,58 +196621,58 @@ entities: parent: 2 - proto: PlasticFlapsAirtightClear entities: - - uid: 15264 + - uid: 27729 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-79.5 parent: 2 - - uid: 25088 + - uid: 27730 components: - type: Transform pos: 18.5,-100.5 parent: 2 - - uid: 25089 + - uid: 27731 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-77.5 parent: 2 - - uid: 25090 + - uid: 27732 components: - type: Transform pos: 16.5,-96.5 parent: 2 - - uid: 25091 + - uid: 27733 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-85.5 parent: 2 - - uid: 25092 + - uid: 27734 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-80.5 parent: 2 - - uid: 25093 + - uid: 27735 components: - type: Transform pos: 16.5,-100.5 parent: 2 - - uid: 25094 + - uid: 27736 components: - type: Transform pos: 18.5,-96.5 parent: 2 - proto: PlasticFlapsAirtightOpaque entities: - - uid: 25095 + - uid: 27737 components: - type: Transform pos: 41.5,-69.5 parent: 2 - - uid: 25096 + - uid: 27738 components: - type: Transform rot: 3.141592653589793 rad @@ -192423,25 +196680,25 @@ entities: parent: 2 - proto: PlasticFlapsClear entities: - - uid: 16851 + - uid: 27739 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-25.5 parent: 2 - - uid: 16853 + - uid: 27740 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-23.5 parent: 2 - - uid: 16854 + - uid: 27741 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-25.5 parent: 2 - - uid: 16857 + - uid: 27742 components: - type: Transform rot: -1.5707963267948966 rad @@ -192449,19 +196706,19 @@ entities: parent: 2 - proto: PlastitaniumWindow entities: - - uid: 25730 + - uid: 27743 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-31.5 parent: 2 - - uid: 25731 + - uid: 27744 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-32.5 parent: 2 - - uid: 25732 + - uid: 27745 components: - type: Transform rot: 1.5707963267948966 rad @@ -192469,13 +196726,13 @@ entities: parent: 2 - type: AntiAnomalyZone zoneRadius: 20 - - uid: 25733 + - uid: 27746 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-31.5 parent: 2 - - uid: 28845 + - uid: 27747 components: - type: Transform rot: 3.141592653589793 rad @@ -192483,13 +196740,13 @@ entities: parent: 2 - proto: PlastitaniumWindowDiagonal entities: - - uid: 28848 + - uid: 27748 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-15.5 parent: 2 - - uid: 28849 + - uid: 27749 components: - type: Transform rot: 3.141592653589793 rad @@ -192497,14 +196754,14 @@ entities: parent: 2 - proto: PlayerStationAi entities: - - uid: 25097 + - uid: 27750 components: - type: Transform pos: 98.5,-88.5 parent: 2 - proto: PlayerStationAiEmpty entities: - - uid: 28449 + - uid: 27751 components: - type: MetaData name: древний ИИ @@ -192513,56 +196770,56 @@ entities: parent: 2 - proto: Plunger entities: - - uid: 14586 + - uid: 15499 components: - type: Transform - parent: 14585 + parent: 15498 - type: Physics canCollide: False - - uid: 14587 + - uid: 15500 components: - type: Transform - parent: 14585 + parent: 15498 - type: Physics canCollide: False - - uid: 25098 + - uid: 27752 components: - type: Transform pos: 86.361694,-51.433376 parent: 2 - - uid: 25099 + - uid: 27753 components: - type: Transform pos: 86.736694,-51.402126 parent: 2 - - uid: 25100 + - uid: 27754 components: - type: Transform pos: 86.517944,-51.245876 parent: 2 - - uid: 40441 + - uid: 27755 components: - type: Transform pos: 71.49899,-12.380988 parent: 2 - proto: PlushieAtmosian entities: - - uid: 24299 + - uid: 27756 components: - type: Transform pos: -95.5645,-10.327504 parent: 2 - - uid: 25101 + - uid: 27757 components: - type: Transform pos: 39.48761,-52.44418 parent: 2 - - uid: 25102 + - uid: 27758 components: - type: Transform pos: 50.52304,-99.97316 parent: 2 - - uid: 25103 + - uid: 27759 components: - type: MetaData name: TiFeRi @@ -192571,75 +196828,75 @@ entities: parent: 2 - proto: PlushieCarp entities: - - uid: 25104 + - uid: 27760 components: - type: Transform pos: -27.447361,-86.60795 parent: 2 - proto: PlushieGhost entities: - - uid: 4806 + - uid: 16159 components: - type: Transform - parent: 15174 + parent: 16158 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 25106 + - uid: 27762 components: - type: Transform - parent: 25105 + parent: 27761 - type: Physics canCollide: False - type: InsideEntityStorage - proto: PlushieHampter entities: - - uid: 25107 + - uid: 27763 components: - type: Transform pos: -36.4855,-84.294624 parent: 2 - proto: PlushieHuman entities: - - uid: 25112 + - uid: 27764 components: - type: Transform pos: -26.5,-115.5 parent: 2 - proto: PlushieNar entities: - - uid: 25117 + - uid: 27765 components: - type: Transform pos: -86.5144,-27.553516 parent: 2 - proto: PlushieNuke entities: - - uid: 25118 + - uid: 27766 components: - type: Transform pos: -57.538445,-82.15837 parent: 2 - proto: PlushieRGBee entities: - - uid: 25120 + - uid: 27767 components: - type: Transform pos: -27.441078,-83.574814 parent: 2 - - uid: 25123 + - uid: 27768 components: - type: Transform pos: -9.421619,23.504316 parent: 2 - proto: PlushieRouny entities: - - uid: 25124 + - uid: 27769 components: - type: Transform pos: -45.51687,-2.2675805 parent: 2 - - uid: 25126 + - uid: 27770 components: - type: MetaData desc: Руни который устал воевать за королеву и уснул. @@ -192648,7 +196905,7 @@ entities: rot: 1.5707963267948966 rad pos: -66.63435,-61.314606 parent: 2 - - uid: 25127 + - uid: 27771 components: - type: MetaData name: Василий @@ -192658,44 +196915,44 @@ entities: parent: 2 - proto: PlushieSharkPink entities: - - uid: 25015 + - uid: 27665 components: - type: Transform - parent: 25013 + parent: 27663 - type: Physics canCollide: False - type: InsideEntityStorage - proto: PlushieSnake entities: - - uid: 25130 + - uid: 27773 components: - type: Transform - parent: 25129 + parent: 27772 - type: Physics canCollide: False - type: InsideEntityStorage - proto: PlushieSpaceLizard entities: - - uid: 25132 + - uid: 27774 components: - type: Transform pos: -36.339783,-86.55919 parent: 2 - proto: PlushieVox entities: - - uid: 25133 + - uid: 27775 components: - type: Transform pos: 53.558464,-38.75866 parent: 2 - proto: PonderingOrb entities: - - uid: 25135 + - uid: 27776 components: - type: Transform pos: -37.555374,-100.469345 parent: 2 - - uid: 25136 + - uid: 27777 components: - type: Transform rot: 1.5707963267948966 rad @@ -192703,172 +196960,172 @@ entities: parent: 2 - proto: PortableFlasher entities: - - uid: 2756 + - uid: 27778 components: - type: Transform pos: 60.5,-17.5 parent: 2 - - uid: 15829 + - uid: 27779 components: - type: Transform pos: 60.5,-16.5 parent: 2 - - uid: 25109 + - uid: 27780 components: - type: Transform pos: 57.5,-21.5 parent: 2 - - uid: 25140 + - uid: 27781 components: - type: Transform pos: -78.5,-52.5 parent: 2 - - uid: 25141 + - uid: 27782 components: - type: Transform pos: -80.5,-52.5 parent: 2 - - uid: 31494 + - uid: 27783 components: - type: Transform pos: 62.5,-13.5 parent: 2 - - uid: 37867 + - uid: 27784 components: - type: Transform pos: 71.5,3.5 parent: 2 - proto: PortableGeneratorJrPacman entities: - - uid: 13467 + - uid: 27785 components: - type: Transform pos: 25.5,-37.5 parent: 2 - - uid: 13479 + - uid: 27786 components: - type: Transform pos: 25.5,-38.5 parent: 2 - - uid: 25142 + - uid: 27787 components: - type: Transform pos: 46.5,-77.5 parent: 2 - - uid: 25144 + - uid: 27788 components: - type: Transform pos: -50.5,-88.5 parent: 2 - - uid: 25145 + - uid: 27789 components: - type: Transform pos: 45.5,-62.5 parent: 2 - - uid: 25149 + - uid: 27790 components: - type: Transform pos: 51.5,-86.5 parent: 2 - - uid: 25150 + - uid: 27791 components: - type: Transform pos: 37.5,35.5 parent: 2 - - uid: 25151 + - uid: 27792 components: - type: Transform pos: 38.5,35.5 parent: 2 - - uid: 25152 + - uid: 27793 components: - type: Transform pos: -55.5,-85.5 parent: 2 - - uid: 25153 + - uid: 27794 components: - type: Transform pos: -67.5,11.5 parent: 2 - - uid: 25154 + - uid: 27795 components: - type: Transform pos: -32.5,-19.5 parent: 2 - - uid: 25155 + - uid: 27796 components: - type: Transform pos: -51.5,-77.5 parent: 2 - - uid: 25156 + - uid: 27797 components: - type: Transform pos: -11.5,-83.5 parent: 2 - proto: PortableGeneratorPacman entities: - - uid: 25157 + - uid: 27798 components: - type: Transform pos: -37.5,-115.5 parent: 2 - - uid: 25159 + - uid: 27799 components: - type: Transform pos: 106.5,-20.5 parent: 2 - proto: PortableGeneratorSuperPacman entities: - - uid: 25161 + - uid: 27800 components: - type: Transform pos: 54.5,-65.5 parent: 2 - - uid: 25162 + - uid: 27801 components: - type: Transform pos: -69.5,-24.5 parent: 2 - proto: PortableScrubber entities: - - uid: 25164 + - uid: 27802 components: - type: Transform pos: 42.5,-49.5 parent: 2 - - uid: 25165 + - uid: 27803 components: - type: Transform pos: 42.5,-46.5 parent: 2 - - uid: 25166 + - uid: 27804 components: - type: Transform pos: 34.5,-47.5 parent: 2 - - uid: 25167 + - uid: 27805 components: - type: Transform pos: 34.5,-46.5 parent: 2 - - uid: 25168 + - uid: 27806 components: - type: Transform pos: 43.5,-86.5 parent: 2 - - uid: 25169 + - uid: 27807 components: - type: Transform pos: 43.5,-87.5 parent: 2 - proto: PosterBroken entities: - - uid: 25170 + - uid: 27808 components: - type: Transform pos: -38.5,19.5 parent: 2 - - uid: 25172 + - uid: 27809 components: - type: Transform rot: 3.141592653589793 rad @@ -192876,20 +197133,20 @@ entities: parent: 2 - proto: PosterContrabandAmbrosiaVulgaris entities: - - uid: 25173 + - uid: 27810 components: - type: Transform pos: 39.5,13.5 parent: 2 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 25174 + - uid: 27811 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-93.5 parent: 2 - - uid: 33768 + - uid: 27812 components: - type: Transform rot: 1.5707963267948966 rad @@ -192897,61 +197154,69 @@ entities: parent: 2 - proto: PosterContrabandBorgFancy entities: - - uid: 25175 + - uid: 27813 components: - type: Transform pos: -36.5,-56.5 parent: 2 - - uid: 32306 + - uid: 27814 components: - type: Transform pos: -21.5,-50.5 parent: 2 - proto: PosterContrabandBorgFancyv2 entities: - - uid: 32307 + - uid: 27815 components: - type: Transform pos: -21.5,-53.5 parent: 2 - proto: PosterContrabandClown entities: - - uid: 1984 + - uid: 27816 components: - type: Transform pos: -49.5,-107.5 parent: 2 - proto: PosterContrabandDonk entities: - - uid: 25246 + - uid: 27817 components: - type: Transform pos: 49.5,4.5 parent: 2 - proto: PosterContrabandEAT entities: - - uid: 25179 + - uid: 27818 components: - type: Transform pos: 25.5,8.5 parent: 2 - proto: PosterContrabandFreeSyndicateEncryptionKey entities: - - uid: 25180 + - uid: 27819 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,18.5 parent: 2 +- proto: PosterContrabandHaveaPuff + entities: + - uid: 27820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,22.5 + parent: 2 - proto: PosterContrabandHighEffectEngineering entities: - - uid: 25181 + - uid: 27821 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-55.5 parent: 2 - - uid: 25182 + - uid: 27822 components: - type: Transform rot: 3.141592653589793 rad @@ -192959,140 +197224,139 @@ entities: parent: 2 - proto: PosterContrabandKudzu entities: - - uid: 25183 + - uid: 27823 components: - type: Transform pos: 36.5,8.5 parent: 2 - proto: PosterContrabandLamarr entities: - - uid: 25184 + - uid: 27824 components: - type: Transform pos: -38.5,-71.5 parent: 2 - proto: PosterContrabandLustyExomorph entities: - - uid: 25187 + - uid: 27825 components: - type: Transform pos: 38.5,-71.5 parent: 2 - proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 5966 + - uid: 27826 components: - type: Transform pos: -1.5,-5.5 parent: 2 - proto: PosterContrabandPwrGame entities: - - uid: 25189 + - uid: 27827 components: - type: Transform pos: -59.5,8.5 parent: 2 - proto: PosterContrabandRevolt entities: - - uid: 25190 + - uid: 27828 components: - type: Transform pos: -39.5,19.5 parent: 2 - proto: PosterContrabandSpaceCube entities: - - uid: 25192 + - uid: 27829 components: - type: Transform pos: 33.5,-18.5 parent: 2 - proto: PosterContrabandTheBigGasTruth entities: - - uid: 25195 + - uid: 27830 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-88.5 parent: 2 +- proto: PosterContrabandWehWatches + entities: + - uid: 40665 + components: + - type: Transform + pos: 83.5,-63.5 + parent: 2 - proto: PosterLegit12Gauge entities: - - uid: 23918 + - uid: 27831 components: - type: Transform pos: 55.5,1.5 parent: 2 - - uid: 40519 + - uid: 27832 components: - type: Transform pos: 62.5,-20.5 parent: 2 - proto: PosterLegit50thAnniversaryVintageReprint entities: - - uid: 25199 + - uid: 27833 components: - type: Transform pos: -45.5,-62.5 parent: 2 - - uid: 33769 + - uid: 27834 components: - type: Transform pos: 17.5,-35.5 parent: 2 - proto: PosterLegitAnatomyPoster entities: - - uid: 25200 + - uid: 27835 components: - type: Transform pos: -56.5,-18.5 parent: 2 - proto: PosterLegitBlessThisSpess entities: - - uid: 27024 + - uid: 27836 components: - type: Transform pos: 35.5,-56.5 parent: 2 - proto: PosterLegitBuild entities: - - uid: 4820 - components: - - type: MetaData - desc: Строительство бомбоубежища для капитана. - name: Описание работ. - - type: Transform - pos: -14.5,2.5 - parent: 2 - - uid: 25201 + - uid: 27837 components: - type: Transform pos: 44.5,-55.5 parent: 2 - proto: PosterLegitCarbonDioxide entities: - - uid: 25202 + - uid: 27838 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-50.5 parent: 2 - - uid: 25203 + - uid: 27839 components: - type: Transform pos: -49.5,-61.5 parent: 2 - - uid: 38900 + - uid: 41846 components: - type: Transform pos: 0.5,-8.5 - parent: 38722 + parent: 41669 - proto: PosterLegitCarpMount entities: - - uid: 25204 + - uid: 27840 components: - type: Transform pos: -19.5,-90.5 parent: 2 - - uid: 25205 + - uid: 27841 components: - type: Transform rot: -1.5707963267948966 rad @@ -193100,148 +197364,153 @@ entities: parent: 2 - proto: PosterLegitCleanliness entities: - - uid: 25206 + - uid: 27842 components: - type: Transform pos: 5.5,2.5 parent: 2 - - uid: 25207 + - uid: 27843 components: - type: Transform pos: -56.5,-21.5 parent: 2 - proto: PosterLegitDoNotQuestion entities: - - uid: 38901 + - uid: 41847 components: - type: Transform pos: 2.5,-0.5 - parent: 38722 + parent: 41669 - proto: PosterLegitEnlist entities: - - uid: 38902 + - uid: 41848 components: - type: Transform pos: 1.5,2.5 - parent: 38722 + parent: 41669 - proto: PosterLegitHelpOthers entities: - - uid: 25208 + - uid: 27844 components: - type: Transform pos: -43.5,-20.5 parent: 2 - - uid: 40600 + - uid: 27845 components: - type: Transform pos: 61.5,-4.5 parent: 2 - proto: PosterLegitHereForYourSafety entities: - - uid: 38903 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 38722 - - uid: 40591 + - uid: 27846 components: - type: Transform pos: 42.5,-22.5 parent: 2 + - uid: 41849 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 41669 - proto: PosterLegitIonRifle entities: - - uid: 40588 + - uid: 27847 components: - type: Transform pos: 61.5,-10.5 parent: 2 - proto: PosterLegitJustAWeekAway entities: - - uid: 25209 + - uid: 27848 components: - type: Transform pos: -50.5,-23.5 parent: 2 - proto: PosterLegitMime entities: - - uid: 25210 + - uid: 27849 components: - type: Transform pos: 32.5,-14.5 parent: 2 - proto: PosterLegitNanotrasenLogo entities: - - uid: 24121 + - uid: 27850 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 27851 components: - type: Transform pos: 54.5,1.5 parent: 2 - - uid: 29005 + - uid: 27852 components: - type: Transform pos: -1.5,-7.5 parent: 2 - - uid: 38401 + - uid: 41348 components: - type: Transform pos: -2.5,-10.5 - parent: 37887 - - uid: 38402 + parent: 40828 + - uid: 41349 components: - type: Transform pos: 5.5,-7.5 - parent: 37887 - - uid: 38403 + parent: 40828 + - uid: 41350 components: - type: Transform pos: 2.5,-3.5 - parent: 37887 - - uid: 38904 + parent: 40828 + - uid: 41850 components: - type: Transform pos: 2.5,-11.5 - parent: 38722 - - uid: 38905 + parent: 41669 + - uid: 41851 components: - type: Transform pos: 6.5,-11.5 - parent: 38722 + parent: 41669 - proto: PosterLegitObey entities: - - uid: 40592 + - uid: 27853 components: - type: Transform pos: 46.5,2.5 parent: 2 - proto: PosterLegitPDAAd entities: - - uid: 25211 + - uid: 27854 components: - type: Transform pos: -1.5,6.5 parent: 2 - proto: PosterLegitPeriodicTable entities: - - uid: 25212 + - uid: 27855 components: - type: Transform pos: -39.5,-32.5 parent: 2 - - uid: 38404 + - uid: 41351 components: - type: Transform pos: -6.5,-12.5 - parent: 37887 + parent: 40828 - proto: PosterLegitReportCrimes entities: - - uid: 40595 + - uid: 27856 components: - type: Transform pos: 38.5,-6.5 parent: 2 - proto: PosterLegitSafetyEyeProtection entities: - - uid: 41114 + - uid: 27857 components: - type: Transform rot: 3.141592653589793 rad @@ -193249,33 +197518,33 @@ entities: parent: 2 - proto: PosterLegitSafetyMothEpi entities: - - uid: 25214 + - uid: 27858 components: - type: Transform pos: -43.5,-23.5 parent: 2 - - uid: 38906 + - uid: 41852 components: - type: Transform pos: 7.5,-1.5 - parent: 38722 + parent: 41669 - proto: PosterLegitSafetyMothHardhat entities: - - uid: 25215 + - uid: 27859 components: - type: Transform pos: 49.5,-61.5 parent: 2 - proto: PosterLegitSafetyMothMeth entities: - - uid: 25216 + - uid: 27860 components: - type: Transform pos: -33.5,-28.5 parent: 2 - proto: PosterLegitSafetyMothPiping entities: - - uid: 25217 + - uid: 27861 components: - type: Transform rot: 1.5707963267948966 rad @@ -193283,62 +197552,62 @@ entities: parent: 2 - proto: PosterLegitSafetyReport entities: - - uid: 38907 - components: - - type: Transform - pos: 7.5,-6.5 - parent: 38722 - - uid: 40594 + - uid: 27862 components: - type: Transform pos: 54.5,-6.5 parent: 2 + - uid: 41853 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 41669 - proto: PosterLegitScience entities: - - uid: 25218 + - uid: 27863 components: - type: Transform pos: -45.5,-84.5 parent: 2 - proto: PosterLegitSecWatch entities: - - uid: 25219 + - uid: 27864 components: - type: Transform pos: -50.5,-45.5 parent: 2 - - uid: 25220 + - uid: 27865 components: - type: Transform pos: -1.5,-82.5 parent: 2 - - uid: 40589 + - uid: 27866 components: - type: Transform pos: 73.5,-12.5 parent: 2 - proto: PosterLegitSpaceCops entities: - - uid: 40590 + - uid: 27867 components: - type: Transform pos: 52.5,8.5 parent: 2 - proto: PosterLegitStateLaws entities: - - uid: 25222 + - uid: 27868 components: - type: Transform pos: -33.5,-49.5 parent: 2 - - uid: 25223 + - uid: 27869 components: - type: Transform pos: 97.5,-85.5 parent: 2 - proto: PosterLegitThereIsNoGasGiant entities: - - uid: 25224 + - uid: 27870 components: - type: Transform rot: 1.5707963267948966 rad @@ -193346,366 +197615,371 @@ entities: parent: 2 - proto: PotassiumChemistryBottle entities: - - uid: 41024 + - uid: 1994 components: - type: Transform - parent: 37041 + parent: 1980 - type: Physics canCollide: False - proto: PottedPlant0 entities: - - uid: 23336 + - uid: 27871 components: - type: Transform pos: -8.5,-19.5 parent: 2 - - uid: 24403 + - uid: 27872 components: - type: Transform pos: -6.5,-19.5 parent: 2 - - uid: 25225 + - uid: 27873 components: - type: Transform pos: -7.5,6.5 parent: 2 + - uid: 27874 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 - proto: PottedPlant1 entities: - - uid: 25226 + - uid: 27875 components: - type: Transform pos: 25.5,-87.5 parent: 2 - - uid: 25227 + - uid: 27876 components: - type: Transform pos: 23.5,-73.5 parent: 2 - proto: PottedPlant10 entities: - - uid: 25228 + - uid: 27877 components: - type: Transform pos: -26.5,10.5 parent: 2 - - uid: 25229 + - uid: 27878 components: - type: Transform pos: -53.5,-25.5 parent: 2 - - uid: 25230 + - uid: 27879 components: - type: Transform pos: 83.5,-42.5 parent: 2 - - uid: 25231 + - uid: 27880 components: - type: Transform pos: -55.5,-47.5 parent: 2 - proto: PottedPlant11 entities: - - uid: 25232 + - uid: 27881 components: - type: Transform pos: 9.5,13.5 parent: 2 - proto: PottedPlant12 entities: - - uid: 25233 + - uid: 27882 components: - type: Transform pos: -68.5,-39.5 parent: 2 - proto: PottedPlant13 entities: - - uid: 25234 + - uid: 27883 components: - type: Transform pos: 96.5,-38.5 parent: 2 - - uid: 25235 + - uid: 27884 components: - type: Transform pos: 28.5,-81.5 parent: 2 - proto: PottedPlant14 entities: - - uid: 24573 + - uid: 27885 components: - type: Transform pos: -3.5,-17.5 parent: 2 - - uid: 25236 + - uid: 27886 components: - type: Transform pos: 93.5,-24.5 parent: 2 - proto: PottedPlant15 entities: - - uid: 25237 + - uid: 27887 components: - type: Transform pos: 3.5,-71.5 parent: 2 - - uid: 25238 + - uid: 27888 components: - type: Transform pos: -29.5,-34.5 parent: 2 - - uid: 25239 + - uid: 27889 components: - type: Transform pos: 30.5,-68.5 parent: 2 - - uid: 36916 + - uid: 27890 components: - type: Transform pos: 48.5,-11.5 parent: 2 - proto: PottedPlant16 entities: - - uid: 25241 + - uid: 27891 components: - type: Transform pos: -34.5,-40.5 parent: 2 - - uid: 25242 + - uid: 27892 components: - type: Transform pos: -51.5,-3.5 parent: 2 - - uid: 25243 + - uid: 27893 components: - type: Transform pos: -46.5,-117.5 parent: 2 - proto: PottedPlant17 entities: - - uid: 25244 + - uid: 27894 components: - type: Transform pos: -7.5,8.5 parent: 2 - proto: PottedPlant18 entities: - - uid: 25245 + - uid: 27895 components: - type: Transform pos: -70.5,-45.5 parent: 2 - proto: PottedPlant19 entities: - - uid: 33751 + - uid: 27896 components: - type: Transform pos: 20.5,-28.5 parent: 2 - proto: PottedPlant2 entities: - - uid: 24663 + - uid: 27897 components: - type: Transform pos: -11.5,-11.5 parent: 2 - - uid: 25248 + - uid: 27898 components: - type: Transform pos: 3.5,11.5 parent: 2 - - uid: 25249 + - uid: 27899 components: - type: Transform pos: -48.5,-18.5 parent: 2 - proto: PottedPlant21 entities: - - uid: 19599 + - uid: 27900 components: - type: Transform pos: 49.5,13.5 parent: 2 - - uid: 19639 + - uid: 27901 components: - type: Transform pos: 65.5,-5.5 parent: 2 - - uid: 21308 + - uid: 27902 components: - type: Transform pos: 56.5,-7.5 parent: 2 - - uid: 29014 + - uid: 27903 components: - type: Transform pos: -1.5,-26.5 parent: 2 - proto: PottedPlant22 entities: - - uid: 25252 + - uid: 27904 components: - type: Transform pos: -2.5,-90.5 parent: 2 - - uid: 25253 + - uid: 27905 components: - type: Transform pos: -60.5,-4.5 parent: 2 - proto: PottedPlant23 entities: - - uid: 25254 + - uid: 27906 components: - type: Transform pos: -39.5,-12.5 parent: 2 - proto: PottedPlant26 entities: - - uid: 25256 + - uid: 27907 components: - type: Transform pos: 29.5,-75.5 parent: 2 - proto: PottedPlant27 entities: - - uid: 33629 + - uid: 27908 components: - type: Transform pos: 10.5,-35.5 parent: 2 - proto: PottedPlant28 entities: - - uid: 33632 + - uid: 27909 components: - type: Transform pos: 12.5,-35.5 parent: 2 - - uid: 33633 + - uid: 27910 components: - type: Transform pos: 18.5,-35.5 parent: 2 - proto: PottedPlant29 entities: - - uid: 23350 + - uid: 27911 components: - type: Transform pos: -8.5,-12.5 parent: 2 - - uid: 23520 + - uid: 27912 components: - type: Transform pos: -9.5,-12.5 parent: 2 - - uid: 33631 + - uid: 27913 components: - type: Transform pos: 16.5,-35.5 parent: 2 - proto: PottedPlant3 entities: - - uid: 25257 + - uid: 27914 components: - type: Transform pos: 3.5,6.5 parent: 2 - proto: PottedPlant30 entities: - - uid: 33630 + - uid: 27915 components: - type: Transform pos: 14.5,-35.5 parent: 2 - proto: PottedPlant4 entities: - - uid: 25258 + - uid: 27916 components: - type: Transform pos: 81.5,-20.5 parent: 2 - proto: PottedPlant5 entities: - - uid: 25260 + - uid: 27917 components: - type: Transform pos: -30.5,-10.5 parent: 2 - proto: PottedPlant6 entities: - - uid: 25261 + - uid: 27918 components: - type: Transform pos: -65.5,9.5 parent: 2 - proto: PottedPlant8 entities: - - uid: 23539 + - uid: 27919 components: - type: Transform pos: -7.5,-12.5 parent: 2 - - uid: 23796 + - uid: 27920 components: - type: Transform pos: -6.5,-12.5 parent: 2 - - uid: 23797 + - uid: 27921 components: - type: Transform pos: -5.5,-12.5 parent: 2 - - uid: 23798 + - uid: 27922 components: - type: Transform pos: -4.5,-12.5 parent: 2 - - uid: 25262 + - uid: 27923 components: - type: Transform pos: -11.5,7.5 parent: 2 - - uid: 25263 + - uid: 27924 components: - type: Transform pos: -0.5,-93.5 parent: 2 - proto: PottedPlantAlt0 entities: - - uid: 25264 + - uid: 27925 components: - type: Transform pos: -26.5,14.5 parent: 2 - - uid: 25265 + - uid: 27926 components: - type: Transform pos: 52.5,-71.5 parent: 2 - - uid: 25266 + - uid: 27927 components: - type: Transform pos: 93.5,-38.5 parent: 2 - - uid: 25267 + - uid: 27928 components: - type: Transform pos: -29.5,-52.5 parent: 2 - proto: PottedPlantAlt1 entities: - - uid: 22999 + - uid: 27929 components: - type: Transform pos: 59.5,1.5 parent: 2 - proto: PottedPlantAlt2 entities: - - uid: 29013 + - uid: 27930 components: - type: Transform pos: 3.5,-22.5 parent: 2 - - uid: 30522 + - uid: 27931 components: - type: Transform pos: 75.5,-6.5 @@ -193715,54 +197989,54 @@ entities: stash: !type:ContainerSlot showEnts: False occludes: True - ent: 30526 + ent: 27932 - proto: PottedPlantAlt3 entities: - - uid: 5695 + - uid: 27933 components: - type: Transform pos: 54.5,11.5 parent: 2 - - uid: 17351 + - uid: 27934 components: - type: Transform pos: 54.5,-11.5 parent: 2 - - uid: 23118 + - uid: 27935 components: - type: Transform pos: 37.5,-23.5 parent: 2 - - uid: 25269 + - uid: 27936 components: - type: Transform pos: 2.5,27.5 parent: 2 - - uid: 25271 + - uid: 27937 components: - type: Transform pos: -53.5,-29.5 parent: 2 - - uid: 25272 + - uid: 27938 components: - type: Transform pos: -39.5,-57.5 parent: 2 - - uid: 27129 + - uid: 27939 components: - type: Transform pos: 3.5,-29.5 parent: 2 - proto: PottedPlantAlt4 entities: - - uid: 37771 + - uid: 27940 components: - type: Transform pos: 50.5,-7.5 parent: 2 - proto: PottedPlantAlt5 entities: - - uid: 24615 + - uid: 15899 components: - type: Transform pos: -13.5,-11.5 @@ -193772,392 +198046,397 @@ entities: stash: !type:ContainerSlot showEnts: False occludes: True - ent: 10804 - - uid: 24621 + ent: 15900 + - uid: 27941 components: - type: Transform pos: -14.5,-11.5 parent: 2 - - uid: 25273 + - uid: 27942 components: - type: Transform pos: 17.5,13.5 parent: 2 - - uid: 25274 + - uid: 27943 components: - type: Transform pos: -66.5,-45.5 parent: 2 - proto: PottedPlantAlt6 entities: - - uid: 25275 + - uid: 27944 components: - type: Transform pos: -55.5,-17.5 parent: 2 - proto: PottedPlantAlt7 entities: - - uid: 4606 + - uid: 27945 components: - type: Transform pos: 52.5,-5.5 parent: 2 - - uid: 24617 + - uid: 27946 components: - type: Transform pos: -12.5,-11.5 parent: 2 - - uid: 24645 + - uid: 27947 components: - type: Transform pos: -15.5,-11.5 parent: 2 - - uid: 24646 + - uid: 27948 components: - type: Transform pos: -16.5,-11.5 parent: 2 - proto: PottedPlantAlt8 entities: - - uid: 7709 + - uid: 27949 components: - type: Transform pos: 46.5,-1.5 parent: 2 - proto: PottedPlantBioluminscent entities: - - uid: 21310 + - uid: 27950 components: - type: Transform pos: 54.5,7.5 parent: 2 - - uid: 24583 + - uid: 27951 components: - type: Transform pos: -2.5,-12.5 parent: 2 - - uid: 25276 + - uid: 27952 components: - type: Transform pos: 6.5,19.5 parent: 2 - - uid: 25277 + - uid: 27953 components: - type: Transform pos: 96.5,-24.5 parent: 2 - proto: PottedPlantRandom entities: - - uid: 14670 + - uid: 16160 components: - type: Transform - pos: -10.5,16.5 + pos: 8.5,11.5 parent: 2 - - uid: 25279 + - uid: 27954 components: - type: Transform pos: 42.5,-62.5 parent: 2 - - uid: 25280 + - uid: 27955 components: - type: Transform pos: -21.5,3.5 parent: 2 - - uid: 25281 + - uid: 27956 components: - type: Transform pos: -45.5,-16.5 parent: 2 - - uid: 25282 + - uid: 27957 components: - type: Transform pos: 2.5,-86.5 parent: 2 - - uid: 25283 + - uid: 27958 components: - type: Transform pos: 56.5,-73.5 parent: 2 - - uid: 25284 + - uid: 27959 components: - type: Transform pos: -41.5,-78.5 parent: 2 - - uid: 25286 + - uid: 27960 components: - type: Transform pos: -73.5,-37.5 parent: 2 - - uid: 25288 + - uid: 27961 components: - type: Transform pos: -73.5,-38.5 parent: 2 - - uid: 25289 + - uid: 27962 components: - type: Transform pos: -73.5,-39.5 parent: 2 - - uid: 25290 + - uid: 27963 components: - type: Transform pos: -35.5,-96.5 parent: 2 - - uid: 25291 + - uid: 27964 components: - type: Transform pos: 60.5,-70.5 parent: 2 - - uid: 25292 + - uid: 27965 components: - type: Transform pos: 47.5,-72.5 parent: 2 - - uid: 25293 + - uid: 27966 components: - type: Transform pos: 47.5,-73.5 parent: 2 - - uid: 25294 + - uid: 27967 components: - type: Transform pos: 47.5,-74.5 parent: 2 - - uid: 25295 + - uid: 27968 components: - type: Transform pos: 47.5,-79.5 parent: 2 - - uid: 25296 + - uid: 27969 components: - type: Transform pos: 51.5,-84.5 parent: 2 - - uid: 25297 + - uid: 27970 components: - type: Transform pos: -22.5,-81.5 parent: 2 - - uid: 25298 + - uid: 27971 components: - type: Transform pos: -53.5,-45.5 parent: 2 - - uid: 25299 + - uid: 27972 components: - type: Transform pos: -34.5,-57.5 parent: 2 - - uid: 25300 + - uid: 27973 components: - type: Transform pos: 4.5,-93.5 parent: 2 - - uid: 25301 + - uid: 27974 components: - type: Transform pos: -8.5,-91.5 parent: 2 - - uid: 25304 + - uid: 27975 components: - type: Transform pos: -47.5,-52.5 parent: 2 - - uid: 25306 + - uid: 27976 components: - type: Transform pos: -65.5,-41.5 parent: 2 - - uid: 25307 + - uid: 27977 components: - type: Transform pos: -63.5,-39.5 parent: 2 - - uid: 25308 + - uid: 27978 components: - type: Transform pos: -75.5,-47.5 parent: 2 - - uid: 25309 + - uid: 27979 components: - type: Transform pos: 7.5,15.5 parent: 2 - - uid: 25310 + - uid: 27980 components: - type: Transform pos: 6.5,25.5 parent: 2 - - uid: 25311 + - uid: 27981 components: - type: Transform pos: 9.5,6.5 parent: 2 - - uid: 25314 + - uid: 27982 components: - type: Transform pos: 5.5,-99.5 parent: 2 - - uid: 25315 + - uid: 27983 components: - type: Transform pos: -32.5,-98.5 parent: 2 - - uid: 25316 + - uid: 27984 components: - type: Transform pos: -27.5,-0.5 parent: 2 - - uid: 25317 + - uid: 27985 components: - type: Transform pos: -31.5,10.5 parent: 2 - - uid: 25318 + - uid: 27986 components: - type: Transform pos: -33.5,3.5 parent: 2 - - uid: 25319 + - uid: 27987 components: - type: Transform pos: -24.5,12.5 parent: 2 - - uid: 25321 + - uid: 27988 components: - type: Transform pos: -39.5,-25.5 parent: 2 - - uid: 25322 + - uid: 27989 components: - type: Transform pos: -66.5,-26.5 parent: 2 - - uid: 25323 + - uid: 27990 components: - type: Transform pos: 25.5,25.5 parent: 2 - - uid: 25324 + - uid: 27991 components: - type: Transform pos: 24.5,19.5 parent: 2 - - uid: 25325 + - uid: 27992 components: - type: Transform pos: -52.5,13.5 parent: 2 - - uid: 25326 + - uid: 27993 components: - type: Transform pos: -44.5,11.5 parent: 2 - - uid: 25327 + - uid: 27994 components: - type: Transform pos: -46.5,16.5 parent: 2 - - uid: 25328 + - uid: 27995 components: - type: Transform pos: -48.5,15.5 parent: 2 - - uid: 25329 + - uid: 27996 components: - type: Transform pos: -43.5,14.5 parent: 2 - - uid: 25330 + - uid: 27997 components: - type: Transform pos: -57.5,-47.5 parent: 2 - - uid: 25331 + - uid: 27998 components: - type: Transform pos: -40.5,-14.5 parent: 2 - - uid: 25332 + - uid: 27999 components: - type: Transform pos: -47.5,-85.5 parent: 2 - - uid: 25333 + - uid: 28000 components: - type: Transform pos: -5.5,25.5 parent: 2 - - uid: 25341 + - uid: 28001 components: - type: Transform pos: -61.5,1.5 parent: 2 - - uid: 25342 + - uid: 28002 components: - type: Transform pos: -86.5,4.5 parent: 2 - - uid: 25343 + - uid: 28003 components: - type: Transform pos: -81.5,-5.5 parent: 2 - - uid: 25344 + - uid: 28004 components: - type: Transform pos: -49.5,-38.5 parent: 2 - - uid: 25345 + - uid: 28005 components: - type: Transform pos: -80.5,-23.5 parent: 2 - - uid: 25346 + - uid: 28006 components: - type: Transform pos: -33.5,5.5 parent: 2 - - uid: 25347 + - uid: 28007 components: - type: Transform pos: -9.5,-86.5 parent: 2 + - uid: 28008 + components: + - type: Transform + pos: -7.5,19.5 + parent: 2 - proto: PottedPlantRandomPlastic entities: - - uid: 25348 + - uid: 28009 components: - type: Transform pos: -60.5,-68.5 parent: 2 - - uid: 25349 + - uid: 28010 components: - type: Transform pos: 102.5,-20.5 parent: 2 - - uid: 25350 + - uid: 28011 components: - type: Transform pos: 102.5,-24.5 parent: 2 - - uid: 25351 + - uid: 28012 components: - type: Transform pos: 102.5,-38.5 parent: 2 - - uid: 25353 + - uid: 28013 components: - type: Transform pos: -64.5,-78.5 parent: 2 - proto: PottedPlantRD entities: - - uid: 24574 + - uid: 28014 components: - type: Transform pos: -7.5,-19.5 parent: 2 - - uid: 25354 + - uid: 28015 components: - type: MetaData desc: Выглядит не очень здоровым... @@ -194167,12 +198446,12 @@ entities: parent: 2 missingComponents: - StealTarget - - uid: 25355 + - uid: 28016 components: - type: Transform pos: -37.5,-67.5 parent: 2 - - uid: 35083 + - uid: 28017 components: - type: MetaData desc: Выглядит не очень здоровым... @@ -194182,58 +198461,58 @@ entities: parent: 2 - proto: PowerCageHigh entities: - - uid: 38909 + - uid: 41855 components: - type: Transform - parent: 38908 + parent: 41854 - type: Physics canCollide: False - - uid: 38911 + - uid: 41857 components: - type: Transform - parent: 38910 + parent: 41856 - type: Physics canCollide: False - proto: PowerCageRecharger entities: - - uid: 38912 + - uid: 41858 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,2.5 - parent: 38722 + parent: 41669 - proto: PowerCellAntiqueProto entities: - - uid: 32304 + - uid: 28018 components: - type: Transform pos: -15.361511,-52.11536 parent: 2 - proto: PowerCellHigh entities: - - uid: 21996 + - uid: 40759 components: - type: Transform pos: 2.360878,2.708334 - parent: 21045 - - uid: 21998 + parent: 40666 + - uid: 40760 components: - type: Transform pos: 2.360878,2.53125 - parent: 21045 + parent: 40666 - proto: PowerCellHyper entities: - - uid: 32305 + - uid: 28019 components: - type: Transform pos: -18.846472,-46.121193 parent: 2 - proto: PowerCellPotato entities: - - uid: 19648 + - uid: 55 components: - type: Transform - parent: 37707 + parent: 54 - type: SolutionContainerManager solutions: null containers: @@ -194245,87 +198524,87 @@ entities: - type: ContainerContainer containers: solution@battery: !type:ContainerSlot - ent: 19649 + ent: 56 - proto: PowerCellRecharger entities: - - uid: 23124 + - uid: 28020 components: - type: Transform pos: 41.5,-22.5 parent: 2 - - uid: 25356 + - uid: 28021 components: - type: Transform pos: -49.5,-20.5 parent: 2 - - uid: 25358 + - uid: 28022 components: - type: Transform pos: -76.5,-42.5 parent: 2 - - uid: 25359 + - uid: 28023 components: - type: Transform pos: 57.5,-71.5 parent: 2 - - uid: 25360 + - uid: 28024 components: - type: Transform pos: 50.5,-46.5 parent: 2 - - uid: 25361 + - uid: 28025 components: - type: Transform pos: -8.5,24.5 parent: 2 - - uid: 25362 + - uid: 28026 components: - type: Transform pos: -53.5,13.5 parent: 2 - - uid: 25364 + - uid: 28027 components: - type: Transform pos: -38.5,-51.5 parent: 2 - - uid: 25365 + - uid: 28028 components: - type: Transform pos: 49.5,-60.5 parent: 2 - - uid: 25367 + - uid: 28029 components: - type: Transform pos: -34.5,-98.5 parent: 2 - - uid: 25369 + - uid: 28030 components: - type: Transform pos: -56.5,-40.5 parent: 2 - - uid: 32298 + - uid: 28031 components: - type: Transform pos: -15.5,-52.5 parent: 2 - - uid: 35064 + - uid: 28032 components: - type: Transform pos: 48.5,22.5 parent: 2 - - uid: 36714 + - uid: 28033 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-80.5 parent: 2 - - uid: 39083 + - uid: 28034 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-25.5 parent: 2 - - uid: 41135 + - uid: 28035 components: - type: Transform rot: -1.5707963267948966 rad @@ -194333,68 +198612,68 @@ entities: parent: 2 - proto: PowerCellSmall entities: - - uid: 25370 + - uid: 28036 components: - type: Transform pos: -49.382027,-20.295181 parent: 2 - - uid: 25371 + - uid: 28037 components: - type: Transform pos: 49.603954,-60.333042 parent: 2 - - uid: 25372 + - uid: 28038 components: - type: Transform pos: -38.384167,-51.38693 parent: 2 - proto: PoweredLEDLightPostSmall entities: - - uid: 1658 + - uid: 28039 components: - type: Transform pos: 58.5,-40.5 parent: 2 - - uid: 6194 + - uid: 28040 components: - type: Transform pos: 47.5,-41.5 parent: 2 - - uid: 7148 + - uid: 28041 components: - type: Transform pos: 51.5,-36.5 parent: 2 - proto: PoweredLEDSmallLight entities: - - uid: 39580 + - uid: 28042 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-8.5 parent: 2 - - uid: 39583 + - uid: 28043 components: - type: Transform pos: 25.5,-40.5 parent: 2 - - uid: 39584 + - uid: 28044 components: - type: Transform pos: 29.5,-40.5 parent: 2 - - uid: 39587 + - uid: 28045 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-41.5 parent: 2 - - uid: 39607 + - uid: 28046 components: - type: Transform pos: -2.5,-6.5 parent: 2 - - uid: 39608 + - uid: 28047 components: - type: Transform rot: 3.141592653589793 rad @@ -194402,1955 +198681,1955 @@ entities: parent: 2 - proto: Poweredlight entities: - - uid: 274 + - uid: 28048 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,7.5 parent: 2 - - uid: 2092 + - uid: 28049 components: - type: Transform pos: 48.5,-46.5 parent: 2 - - uid: 2630 + - uid: 28050 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,0.5 parent: 2 - - uid: 6044 + - uid: 28051 components: - type: Transform pos: 40.5,-0.5 parent: 2 - - uid: 9703 + - uid: 28052 components: - type: Transform pos: 60.5,11.5 parent: 2 - - uid: 9717 + - uid: 28053 components: - type: Transform pos: 56.5,15.5 parent: 2 - - uid: 10927 + - uid: 28054 components: - type: Transform pos: 67.5,11.5 parent: 2 - - uid: 13005 + - uid: 28055 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,7.5 parent: 2 - - uid: 14560 + - uid: 28056 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-19.5 parent: 2 - - uid: 14815 + - uid: 28057 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,7.5 parent: 2 - - uid: 14858 + - uid: 28058 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-23.5 parent: 2 - - uid: 15291 + - uid: 28059 components: - type: Transform pos: 60.5,5.5 parent: 2 - - uid: 15534 + - uid: 28060 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-8.5 parent: 2 - - uid: 15590 + - uid: 28061 components: - type: Transform pos: 64.5,11.5 parent: 2 - - uid: 15827 + - uid: 28062 components: - type: Transform pos: 64.5,5.5 parent: 2 - - uid: 16625 + - uid: 28063 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,13.5 parent: 2 - - uid: 17689 + - uid: 28064 components: - type: Transform pos: 54.5,-17.5 parent: 2 - - uid: 18500 + - uid: 28065 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,7.5 parent: 2 - - uid: 19113 + - uid: 28066 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,13.5 parent: 2 - - uid: 19252 + - uid: 28067 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-20.5 parent: 2 - - uid: 19253 + - uid: 28068 components: - type: Transform pos: 58.5,-17.5 parent: 2 - - uid: 19516 + - uid: 28069 components: - type: Transform pos: 64.5,-1.5 parent: 2 - - uid: 19606 + - uid: 28070 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-25.5 parent: 2 - - uid: 19610 + - uid: 28071 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-22.5 parent: 2 - - uid: 19632 + - uid: 28072 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-5.5 parent: 2 - - uid: 19638 + - uid: 28073 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,0.5 parent: 2 - - uid: 19650 + - uid: 28074 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,3.5 parent: 2 - - uid: 19651 + - uid: 28075 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,3.5 parent: 2 - - uid: 21038 + - uid: 28076 components: - type: Transform pos: 78.5,1.5 parent: 2 - - uid: 22998 + - uid: 28077 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-5.5 parent: 2 - - uid: 24122 + - uid: 28078 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-1.5 parent: 2 - - uid: 24170 + - uid: 28079 components: - type: Transform pos: 86.5,1.5 parent: 2 - - uid: 24300 + - uid: 28080 components: - type: Transform pos: 47.5,16.5 parent: 2 - - uid: 24507 + - uid: 28081 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,8.5 parent: 2 - - uid: 25373 + - uid: 28082 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-103.5 parent: 2 - - uid: 25374 + - uid: 28083 components: - type: Transform pos: -38.5,-97.5 parent: 2 - - uid: 25375 + - uid: 28084 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-73.5 parent: 2 - - uid: 25376 + - uid: 28085 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-79.5 parent: 2 - - uid: 25377 + - uid: 28086 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-75.5 parent: 2 - - uid: 25378 + - uid: 28087 components: - type: Transform pos: -49.5,-8.5 parent: 2 - - uid: 25380 + - uid: 28088 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,10.5 parent: 2 - - uid: 25381 + - uid: 28089 components: - type: Transform pos: 78.5,-52.5 parent: 2 - - uid: 25382 + - uid: 28090 components: - type: Transform pos: 74.5,-52.5 parent: 2 - - uid: 25383 + - uid: 28091 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-13.5 parent: 2 - - uid: 25384 + - uid: 28092 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-61.5 parent: 2 - - uid: 25385 + - uid: 28093 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,-57.5 parent: 2 - - uid: 25386 + - uid: 28094 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,-61.5 parent: 2 - - uid: 25387 + - uid: 28095 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-66.5 parent: 2 - - uid: 25388 + - uid: 28096 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-66.5 parent: 2 - - uid: 25389 + - uid: 28097 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,-61.5 parent: 2 - - uid: 25390 + - uid: 28098 components: - type: Transform pos: 85.5,-57.5 parent: 2 - - uid: 25391 + - uid: 28099 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-57.5 parent: 2 - - uid: 25392 + - uid: 28100 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-32.5 parent: 2 - - uid: 25393 + - uid: 28101 components: - type: Transform pos: -29.5,-80.5 parent: 2 - - uid: 25395 + - uid: 28102 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-79.5 parent: 2 - - uid: 25396 + - uid: 28103 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 - - uid: 25397 + - uid: 28104 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-6.5 parent: 2 - - uid: 25398 + - uid: 28105 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,7.5 parent: 2 - - uid: 25399 + - uid: 28106 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,2.5 parent: 2 - - uid: 25401 + - uid: 28107 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,14.5 parent: 2 - - uid: 25402 + - uid: 28108 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-10.5 parent: 2 - - uid: 25403 + - uid: 28109 components: - type: Transform pos: -35.5,-25.5 parent: 2 - - uid: 25404 + - uid: 28110 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,4.5 parent: 2 - - uid: 25405 + - uid: 28111 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-36.5 parent: 2 - - uid: 25406 + - uid: 28112 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,12.5 parent: 2 - - uid: 25407 + - uid: 28113 components: - type: Transform pos: -56.5,-27.5 parent: 2 - - uid: 25408 + - uid: 28114 components: - type: Transform pos: -48.5,-68.5 parent: 2 - - uid: 25409 + - uid: 28115 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-39.5 parent: 2 - - uid: 25410 + - uid: 28116 components: - type: Transform pos: 107.5,-20.5 parent: 2 - - uid: 25411 + - uid: 28117 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-92.5 parent: 2 - - uid: 25412 + - uid: 28118 components: - type: Transform pos: 8.5,-86.5 parent: 2 - - uid: 25413 + - uid: 28119 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-42.5 parent: 2 - - uid: 25414 + - uid: 28120 components: - type: Transform pos: 82.5,-20.5 parent: 2 - - uid: 25415 + - uid: 28121 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-33.5 parent: 2 - - uid: 25416 + - uid: 28122 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-23.5 parent: 2 - - uid: 25417 + - uid: 28123 components: - type: Transform rot: 3.141592653589793 rad pos: 92.5,-41.5 parent: 2 - - uid: 25418 + - uid: 28124 components: - type: Transform pos: 46.5,-31.5 parent: 2 - - uid: 25419 + - uid: 28125 components: - type: Transform pos: 92.5,-21.5 parent: 2 - - uid: 25420 + - uid: 28126 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,-31.5 parent: 2 - - uid: 25421 + - uid: 28127 components: - type: Transform pos: 62.5,-31.5 parent: 2 - - uid: 25422 + - uid: 28128 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-43.5 parent: 2 - - uid: 25423 + - uid: 28129 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-102.5 parent: 2 - - uid: 25424 + - uid: 28130 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-49.5 parent: 2 - - uid: 25425 + - uid: 28131 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-55.5 parent: 2 - - uid: 25426 + - uid: 28132 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-59.5 parent: 2 - - uid: 25428 + - uid: 28133 components: - type: Transform pos: 51.5,-50.5 parent: 2 - - uid: 25429 + - uid: 28134 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-60.5 parent: 2 - - uid: 25430 + - uid: 28135 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-58.5 parent: 2 - - uid: 25431 + - uid: 28136 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-53.5 parent: 2 - - uid: 25432 + - uid: 28137 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-53.5 parent: 2 - - uid: 25433 + - uid: 28138 components: - type: Transform pos: 37.5,-31.5 parent: 2 - - uid: 25434 + - uid: 28139 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-73.5 parent: 2 - - uid: 25435 + - uid: 28140 components: - type: Transform pos: 64.5,-56.5 parent: 2 - - uid: 25436 + - uid: 28141 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-62.5 parent: 2 - - uid: 25437 + - uid: 28142 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-63.5 parent: 2 - - uid: 25438 + - uid: 28143 components: - type: Transform pos: 53.5,-62.5 parent: 2 - - uid: 25439 + - uid: 28144 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-66.5 parent: 2 - - uid: 25440 + - uid: 28145 components: - type: Transform pos: 49.5,-68.5 parent: 2 - - uid: 25441 + - uid: 28146 components: - type: Transform pos: 59.5,-68.5 parent: 2 - - uid: 25442 + - uid: 28147 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-73.5 parent: 2 - - uid: 25443 + - uid: 28148 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-77.5 parent: 2 - - uid: 25444 + - uid: 28149 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-81.5 parent: 2 - - uid: 25445 + - uid: 28150 components: - type: Transform pos: 55.5,-78.5 parent: 2 - - uid: 25446 + - uid: 28151 components: - type: Transform pos: 50.5,-86.5 parent: 2 - - uid: 25447 + - uid: 28152 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-92.5 parent: 2 - - uid: 25448 + - uid: 28153 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-91.5 parent: 2 - - uid: 25449 + - uid: 28154 components: - type: Transform pos: 39.5,-46.5 parent: 2 - - uid: 25450 + - uid: 28155 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-51.5 parent: 2 - - uid: 25451 + - uid: 28156 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,-28.5 parent: 2 - - uid: 25452 + - uid: 28157 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-25.5 parent: 2 - - uid: 25453 + - uid: 28158 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-26.5 parent: 2 - - uid: 25472 + - uid: 28159 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-34.5 parent: 2 - - uid: 25473 + - uid: 28160 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-33.5 parent: 2 - - uid: 25474 + - uid: 28161 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-42.5 parent: 2 - - uid: 25475 + - uid: 28162 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-56.5 parent: 2 - - uid: 25476 + - uid: 28163 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-63.5 parent: 2 - - uid: 25477 + - uid: 28164 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-50.5 parent: 2 - - uid: 25478 + - uid: 28165 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-76.5 parent: 2 - - uid: 25479 + - uid: 28166 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-71.5 parent: 2 - - uid: 25480 + - uid: 28167 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-76.5 parent: 2 - - uid: 25481 + - uid: 28168 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-73.5 parent: 2 - - uid: 25482 + - uid: 28169 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-79.5 parent: 2 - - uid: 25483 + - uid: 28170 components: - type: Transform pos: -6.5,-83.5 parent: 2 - - uid: 25484 + - uid: 28171 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-91.5 parent: 2 - - uid: 25485 + - uid: 28172 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-88.5 parent: 2 - - uid: 25486 + - uid: 28173 components: - type: Transform pos: 13.5,-86.5 parent: 2 - - uid: 25487 + - uid: 28174 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-84.5 parent: 2 - - uid: 25488 + - uid: 28175 components: - type: Transform pos: 5.5,-78.5 parent: 2 - - uid: 25489 + - uid: 28176 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-82.5 parent: 2 - - uid: 25490 + - uid: 28177 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-84.5 parent: 2 - - uid: 25491 + - uid: 28178 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-94.5 parent: 2 - - uid: 25492 + - uid: 28179 components: - type: Transform pos: 34.5,-57.5 parent: 2 - - uid: 25493 + - uid: 28180 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-63.5 parent: 2 - - uid: 25495 + - uid: 28181 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-23.5 parent: 2 - - uid: 25496 + - uid: 28182 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-10.5 parent: 2 - - uid: 25497 + - uid: 28183 components: - type: Transform pos: 25.5,-2.5 parent: 2 - - uid: 25498 + - uid: 28184 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,4.5 parent: 2 - - uid: 25499 + - uid: 28185 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-0.5 parent: 2 - - uid: 25500 + - uid: 28186 components: - type: Transform pos: 2.5,4.5 parent: 2 - - uid: 25502 + - uid: 28187 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,0.5 parent: 2 - - uid: 25503 + - uid: 28188 components: - type: Transform pos: -7.5,11.5 parent: 2 - - uid: 25504 + - uid: 28189 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,12.5 parent: 2 - - uid: 25505 + - uid: 28190 components: - type: Transform pos: 0.5,27.5 parent: 2 - - uid: 25506 + - uid: 28191 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,22.5 parent: 2 - - uid: 25507 + - uid: 28192 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,22.5 parent: 2 - - uid: 25508 + - uid: 28193 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,15.5 parent: 2 - - uid: 25509 + - uid: 28194 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,15.5 parent: 2 - - uid: 25510 + - uid: 28195 components: - type: Transform pos: 9.5,17.5 parent: 2 - - uid: 25511 + - uid: 28196 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,14.5 parent: 2 - - uid: 25512 + - uid: 28197 components: - type: Transform pos: 16.5,9.5 parent: 2 - - uid: 25513 + - uid: 28198 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-71.5 parent: 2 - - uid: 25514 + - uid: 28199 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-64.5 parent: 2 - - uid: 25515 + - uid: 28200 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-45.5 parent: 2 - - uid: 25516 + - uid: 28201 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-56.5 parent: 2 - - uid: 25517 + - uid: 28202 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-49.5 parent: 2 - - uid: 25518 + - uid: 28203 components: - type: Transform pos: -39.5,-36.5 parent: 2 - - uid: 25519 + - uid: 28204 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-33.5 parent: 2 - - uid: 25520 + - uid: 28205 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-32.5 parent: 2 - - uid: 25521 + - uid: 28206 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-30.5 parent: 2 - - uid: 25523 + - uid: 28207 components: - type: Transform pos: -52.5,-17.5 parent: 2 - - uid: 25524 + - uid: 28208 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-21.5 parent: 2 - - uid: 25525 + - uid: 28209 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-21.5 parent: 2 - - uid: 25526 + - uid: 28210 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,-16.5 parent: 2 - - uid: 25527 + - uid: 28211 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-12.5 parent: 2 - - uid: 25528 + - uid: 28212 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-15.5 parent: 2 - - uid: 25529 + - uid: 28213 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-10.5 parent: 2 - - uid: 25530 + - uid: 28214 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-8.5 parent: 2 - - uid: 25531 + - uid: 28215 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-10.5 parent: 2 - - uid: 25532 + - uid: 28216 components: - type: Transform pos: -42.5,-1.5 parent: 2 - - uid: 25533 + - uid: 28217 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-2.5 parent: 2 - - uid: 25534 + - uid: 28218 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-33.5 parent: 2 - - uid: 25535 + - uid: 28219 components: - type: Transform pos: -45.5,-42.5 parent: 2 - - uid: 25536 + - uid: 28220 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-48.5 parent: 2 - - uid: 25537 + - uid: 28221 components: - type: Transform pos: -43.5,-52.5 parent: 2 - - uid: 25538 + - uid: 28222 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-50.5 parent: 2 - - uid: 25539 + - uid: 28223 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-48.5 parent: 2 - - uid: 25540 + - uid: 28224 components: - type: Transform pos: -37.5,-57.5 parent: 2 - - uid: 25541 + - uid: 28225 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-55.5 parent: 2 - - uid: 25542 + - uid: 28226 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-60.5 parent: 2 - - uid: 25543 + - uid: 28227 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-67.5 parent: 2 - - uid: 25544 + - uid: 28228 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-65.5 parent: 2 - - uid: 25545 + - uid: 28229 components: - type: Transform pos: -38.5,-67.5 parent: 2 - - uid: 25546 + - uid: 28230 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-75.5 parent: 2 - - uid: 25547 + - uid: 28231 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-81.5 parent: 2 - - uid: 25548 + - uid: 28232 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-84.5 parent: 2 - - uid: 25549 + - uid: 28233 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-98.5 parent: 2 - - uid: 25550 + - uid: 28234 components: - type: Transform pos: -30.5,-92.5 parent: 2 - - uid: 25551 + - uid: 28235 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-88.5 parent: 2 - - uid: 25552 + - uid: 28236 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-82.5 parent: 2 - - uid: 25553 + - uid: 28237 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-89.5 parent: 2 - - uid: 25554 + - uid: 28238 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-76.5 parent: 2 - - uid: 25555 + - uid: 28239 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-75.5 parent: 2 - - uid: 25556 + - uid: 28240 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-77.5 parent: 2 - - uid: 25557 + - uid: 28241 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-78.5 parent: 2 - - uid: 25558 + - uid: 28242 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-62.5 parent: 2 - - uid: 25559 + - uid: 28243 components: - type: Transform pos: -48.5,-54.5 parent: 2 - - uid: 25560 + - uid: 28244 components: - type: Transform pos: -50.5,-64.5 parent: 2 - - uid: 25561 + - uid: 28245 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-64.5 parent: 2 - - uid: 25562 + - uid: 28246 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-61.5 parent: 2 - - uid: 25563 + - uid: 28247 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-69.5 parent: 2 - - uid: 25564 + - uid: 28248 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-73.5 parent: 2 - - uid: 25565 + - uid: 28249 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-73.5 parent: 2 - - uid: 25566 + - uid: 28250 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,19.5 parent: 2 - - uid: 25567 + - uid: 28251 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,19.5 parent: 2 - - uid: 25568 + - uid: 28252 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-0.5 parent: 2 - - uid: 25569 + - uid: 28253 components: - type: Transform pos: -22.5,-1.5 parent: 2 - - uid: 25570 + - uid: 28254 components: - type: Transform pos: -25.5,1.5 parent: 2 - - uid: 25571 + - uid: 28255 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-3.5 parent: 2 - - uid: 25572 + - uid: 28256 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,12.5 parent: 2 - - uid: 25573 + - uid: 28257 components: - type: Transform pos: -21.5,8.5 parent: 2 - - uid: 25574 + - uid: 28258 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-44.5 parent: 2 - - uid: 25575 + - uid: 28259 components: - type: Transform pos: -63.5,-42.5 parent: 2 - - uid: 25576 + - uid: 28260 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-41.5 parent: 2 - - uid: 25577 + - uid: 28261 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-45.5 parent: 2 - - uid: 25578 + - uid: 28262 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-37.5 parent: 2 - - uid: 25579 + - uid: 28263 components: - type: Transform pos: 77.5,-35.5 parent: 2 - - uid: 25580 + - uid: 28264 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,-40.5 parent: 2 - - uid: 25581 + - uid: 28265 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-24.5 parent: 2 - - uid: 25582 + - uid: 28266 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-38.5 parent: 2 - - uid: 25585 + - uid: 28267 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-18.5 parent: 2 - - uid: 25586 + - uid: 28268 components: - type: Transform pos: -7.5,4.5 parent: 2 - - uid: 25587 + - uid: 28269 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-6.5 parent: 2 - - uid: 25588 + - uid: 28270 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-14.5 parent: 2 - - uid: 25589 + - uid: 28271 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-23.5 parent: 2 - - uid: 25590 + - uid: 28272 components: - type: Transform pos: 55.5,-31.5 parent: 2 - - uid: 25591 + - uid: 28273 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-36.5 parent: 2 - - uid: 25592 + - uid: 28274 components: - type: Transform pos: -47.5,-80.5 parent: 2 - - uid: 25593 + - uid: 28275 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-84.5 parent: 2 - - uid: 25594 + - uid: 28276 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 2 - - uid: 25598 + - uid: 28277 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-27.5 parent: 2 - - uid: 25599 + - uid: 28278 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-35.5 parent: 2 - - uid: 25600 + - uid: 28279 components: - type: Transform pos: -33.5,-42.5 parent: 2 - - uid: 25601 + - uid: 28280 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-103.5 parent: 2 - - uid: 25602 + - uid: 28281 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-103.5 parent: 2 - - uid: 25603 + - uid: 28282 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-103.5 parent: 2 - - uid: 25604 + - uid: 28283 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-103.5 parent: 2 - - uid: 25605 + - uid: 28284 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-103.5 parent: 2 - - uid: 25606 + - uid: 28285 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-98.5 parent: 2 - - uid: 25607 + - uid: 28286 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-94.5 parent: 2 - - uid: 25608 + - uid: 28287 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-97.5 parent: 2 - - uid: 25609 + - uid: 28288 components: - type: Transform pos: 17.5,-99.5 parent: 2 - - uid: 25610 + - uid: 28289 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,19.5 parent: 2 - - uid: 25611 + - uid: 28290 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-84.5 parent: 2 - - uid: 25612 + - uid: 28291 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-76.5 parent: 2 - - uid: 25613 + - uid: 28292 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,11.5 parent: 2 - - uid: 25614 + - uid: 28293 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-49.5 parent: 2 - - uid: 25615 + - uid: 28294 components: - type: Transform rot: -1.5707963267948966 rad pos: 72.5,-40.5 parent: 2 - - uid: 25616 + - uid: 28295 components: - type: Transform pos: 66.5,-35.5 parent: 2 - - uid: 25617 + - uid: 28296 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-41.5 parent: 2 - - uid: 25618 + - uid: 28297 components: - type: Transform pos: -49.5,-27.5 parent: 2 - - uid: 25619 + - uid: 28298 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-31.5 parent: 2 - - uid: 25620 + - uid: 28299 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-87.5 parent: 2 - - uid: 25621 + - uid: 28300 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,-48.5 parent: 2 - - uid: 25622 + - uid: 28301 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-76.5 parent: 2 - - uid: 25624 + - uid: 28302 components: - type: Transform pos: 25.5,4.5 parent: 2 - - uid: 25625 + - uid: 28303 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,11.5 parent: 2 - - uid: 25626 + - uid: 28304 components: - type: Transform pos: 31.5,14.5 parent: 2 - - uid: 25627 + - uid: 28305 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,9.5 parent: 2 - - uid: 25628 + - uid: 28306 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,1.5 parent: 2 - - uid: 25629 + - uid: 28307 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-78.5 parent: 2 - - uid: 25630 + - uid: 28308 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-5.5 parent: 2 - - uid: 25633 + - uid: 28309 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-25.5 parent: 2 - - uid: 25634 + - uid: 28310 components: - type: Transform pos: 47.5,-62.5 parent: 2 - - uid: 25635 + - uid: 28311 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-65.5 parent: 2 - - uid: 25637 + - uid: 28312 components: - type: Transform pos: -63.5,-68.5 parent: 2 - - uid: 25638 + - uid: 28313 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-72.5 parent: 2 - - uid: 25639 + - uid: 28314 components: - type: Transform pos: -71.5,-72.5 parent: 2 - - uid: 25640 + - uid: 28315 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-75.5 parent: 2 - - uid: 25641 + - uid: 28316 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,19.5 parent: 2 - - uid: 25643 + - uid: 28317 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,19.5 parent: 2 - - uid: 25644 + - uid: 28318 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-92.5 parent: 2 - - uid: 25645 + - uid: 28319 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-100.5 parent: 2 - - uid: 25646 + - uid: 28320 components: - type: Transform pos: 48.5,-105.5 parent: 2 - - uid: 25647 + - uid: 28321 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-85.5 parent: 2 - - uid: 25648 + - uid: 28322 components: - type: Transform pos: 35.5,-105.5 parent: 2 - - uid: 25649 + - uid: 28323 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-89.5 parent: 2 - - uid: 25650 + - uid: 28324 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-92.5 parent: 2 - - uid: 25651 + - uid: 28325 components: - type: Transform pos: 55.5,-86.5 parent: 2 - - uid: 25652 + - uid: 28326 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-65.5 parent: 2 - - uid: 25653 + - uid: 28327 components: - type: Transform pos: 32.5,7.5 parent: 2 - - uid: 25656 + - uid: 28328 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-38.5 parent: 2 - - uid: 25657 + - uid: 28329 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-24.5 parent: 2 - - uid: 25658 + - uid: 28330 components: - type: Transform pos: 71.5,-31.5 parent: 2 - - uid: 25659 + - uid: 28331 components: - type: Transform pos: -31.5,8.5 parent: 2 - - uid: 25660 + - uid: 28332 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,3.5 parent: 2 - - uid: 25661 + - uid: 28333 components: - type: Transform pos: -73.5,-35.5 parent: 2 - - uid: 25666 + - uid: 28334 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,3.5 parent: 2 - - uid: 25667 + - uid: 28335 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-17.5 parent: 2 - - uid: 25668 + - uid: 28336 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,1.5 parent: 2 - - uid: 25669 + - uid: 28337 components: - type: Transform pos: -92.5,1.5 parent: 2 - - uid: 25670 + - uid: 28338 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,-87.5 parent: 2 - - uid: 25671 + - uid: 28339 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-87.5 parent: 2 - - uid: 25672 + - uid: 28340 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,-91.5 parent: 2 - - uid: 25673 + - uid: 28341 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,-80.5 parent: 2 - - uid: 25674 + - uid: 28342 components: - type: Transform rot: 3.141592653589793 rad pos: 101.5,-80.5 parent: 2 - - uid: 25675 + - uid: 28343 components: - type: Transform pos: 98.5,-74.5 parent: 2 - - uid: 25676 + - uid: 28344 components: - type: Transform rot: 3.141592653589793 rad pos: 98.5,-72.5 parent: 2 - - uid: 25677 + - uid: 28345 components: - type: Transform pos: 98.5,-66.5 parent: 2 - - uid: 25678 + - uid: 28346 components: - type: Transform rot: 3.141592653589793 rad pos: 103.5,-72.5 parent: 2 - - uid: 25679 + - uid: 28347 components: - type: Transform pos: 103.5,-66.5 parent: 2 - - uid: 25680 + - uid: 28348 components: - type: Transform pos: 93.5,-66.5 parent: 2 - - uid: 25681 + - uid: 28349 components: - type: Transform rot: 3.141592653589793 rad pos: 93.5,-72.5 parent: 2 - - uid: 25682 + - uid: 28350 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-50.5 parent: 2 - - uid: 25683 + - uid: 28351 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-47.5 parent: 2 - - uid: 25684 + - uid: 28352 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-94.5 parent: 2 - - uid: 25685 + - uid: 28353 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-91.5 parent: 2 - - uid: 25693 + - uid: 28354 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-35.5 parent: 2 - - uid: 25694 + - uid: 28355 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-40.5 parent: 2 - - uid: 25695 + - uid: 28356 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-32.5 parent: 2 - - uid: 25697 + - uid: 28357 components: - type: Transform pos: 38.5,23.5 parent: 2 - - uid: 25698 + - uid: 28358 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,20.5 parent: 2 - - uid: 25699 + - uid: 28359 components: - type: Transform pos: 5.5,11.5 parent: 2 - - uid: 25700 + - uid: 28360 components: - type: Transform pos: 40.5,-82.5 parent: 2 - - uid: 25701 + - uid: 28361 components: - type: Transform pos: -40.5,-97.5 parent: 2 - - uid: 25812 + - uid: 28362 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-0.5 parent: 2 - - uid: 26132 + - uid: 28363 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,3.5 parent: 2 - - uid: 26135 + - uid: 28364 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,5.5 parent: 2 - - uid: 27377 + - uid: 28365 components: - type: Transform pos: 44.5,-26.5 parent: 2 - - uid: 27386 + - uid: 28366 components: - type: Transform pos: 48.5,-13.5 parent: 2 - - uid: 27391 + - uid: 28367 components: - type: Transform pos: 44.5,-22.5 parent: 2 - - uid: 27433 + - uid: 28368 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-24.5 parent: 2 - - uid: 27800 + - uid: 28369 components: - type: Transform pos: 82.5,1.5 parent: 2 - - uid: 27838 + - uid: 28370 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-9.5 parent: 2 - - uid: 30602 + - uid: 28371 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-4.5 parent: 2 - - uid: 30633 + - uid: 28372 components: - type: Transform pos: 75.5,-6.5 parent: 2 - - uid: 30635 + - uid: 28373 components: - type: Transform pos: 76.5,-10.5 parent: 2 - - uid: 30645 + - uid: 28374 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-12.5 parent: 2 - - uid: 30646 + - uid: 28375 components: - type: Transform rot: -1.5707963267948966 rad pos: 89.5,-9.5 parent: 2 - - uid: 30649 + - uid: 28376 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-10.5 parent: 2 - - uid: 30654 + - uid: 28377 components: - type: Transform pos: 89.5,-0.5 parent: 2 - - uid: 30868 + - uid: 28378 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-1.5 parent: 2 - - uid: 30895 + - uid: 28379 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,-1.5 parent: 2 - - uid: 30905 + - uid: 28380 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-11.5 parent: 2 - - uid: 31041 + - uid: 28381 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-20.5 parent: 2 - - uid: 31491 + - uid: 28382 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-25.5 parent: 2 - - uid: 31575 + - uid: 28383 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-8.5 parent: 2 - - uid: 32758 + - uid: 28384 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,3.5 parent: 2 - - uid: 34390 + - uid: 28385 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,6.5 parent: 2 - - uid: 34396 + - uid: 28386 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,6.5 parent: 2 - - uid: 34625 + - uid: 28387 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,5.5 parent: 2 - - uid: 35793 + - uid: 28388 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-25.5 parent: 2 - - uid: 37341 + - uid: 28389 components: - type: Transform rot: 1.5707963267948966 rad @@ -196358,12 +200637,12 @@ entities: parent: 2 - type: PointLight radius: 3 - - uid: 37354 + - uid: 28390 components: - type: Transform pos: 57.5,-80.5 parent: 2 - - uid: 37357 + - uid: 28391 components: - type: Transform rot: -1.5707963267948966 rad @@ -196371,1060 +200650,1072 @@ entities: parent: 2 - type: PointLight radius: 3 - - uid: 37796 + - uid: 28392 components: - type: Transform pos: 54.5,-13.5 parent: 2 - - uid: 37810 + - uid: 28393 components: - type: Transform pos: 50.5,-3.5 parent: 2 - - uid: 37870 + - uid: 28394 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,5.5 parent: 2 - - uid: 38405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 37887 - - uid: 38406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 37887 - - uid: 38407 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 37887 - - uid: 38408 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-8.5 - parent: 37887 - - uid: 38409 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-9.5 - parent: 37887 - - uid: 38410 - components: - - type: Transform - pos: -4.5,-8.5 - parent: 37887 - - uid: 38411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 37887 - - uid: 38412 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 37887 - - uid: 38413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-10.5 - parent: 37887 - - uid: 38913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 38722 - - uid: 38914 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 38722 - - uid: 38915 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 38722 - - uid: 38916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 38722 - - uid: 38917 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,0.5 - parent: 38722 - - uid: 38918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,1.5 - parent: 38722 - - uid: 38919 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,1.5 - parent: 38722 - - uid: 38920 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-11.5 - parent: 38722 - - uid: 38921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-9.5 - parent: 38722 - - uid: 39560 + - uid: 28395 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-52.5 parent: 2 - - uid: 39561 + - uid: 28396 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,-52.5 parent: 2 - - uid: 39577 + - uid: 28397 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-6.5 parent: 2 - - uid: 39578 + - uid: 28398 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-2.5 parent: 2 - - uid: 39579 + - uid: 28399 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-6.5 parent: 2 - - uid: 39582 + - uid: 28400 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-38.5 parent: 2 - - uid: 40790 + - uid: 28401 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-9.5 parent: 2 - - uid: 40835 + - uid: 28402 components: - type: Transform pos: 41.5,-3.5 parent: 2 - - uid: 41005 + - uid: 28403 components: - type: Transform rot: 1.5707963267948966 rad pos: 110.5,-39.5 parent: 2 - - uid: 41006 + - uid: 28404 components: - type: Transform rot: 1.5707963267948966 rad pos: 114.5,-39.5 parent: 2 - - uid: 41007 + - uid: 28405 components: - type: Transform rot: -1.5707963267948966 rad pos: 130.5,-39.5 parent: 2 - - uid: 41008 + - uid: 28406 components: - type: Transform rot: 3.141592653589793 rad pos: 107.5,-42.5 parent: 2 - - uid: 41009 + - uid: 28407 components: - type: Transform rot: 3.141592653589793 rad pos: 123.5,-40.5 parent: 2 - - uid: 41010 + - uid: 28408 components: - type: Transform rot: 3.141592653589793 rad pos: 121.5,-40.5 parent: 2 -- proto: PoweredlightBlue - entities: - - uid: 38414 + - uid: 28409 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 37887 - - uid: 38922 + pos: 33.5,22.5 + parent: 2 + - uid: 28410 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 38722 - - uid: 38923 + pos: -8.5,15.5 + parent: 2 + - uid: 28411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 38722 - - uid: 38924 + rot: 3.141592653589793 rad + pos: -10.5,13.5 + parent: 2 + - uid: 41352 components: - type: Transform - pos: 8.5,-5.5 - parent: 38722 - - uid: 38925 + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 40828 + - uid: 41353 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-2.5 - parent: 38722 - - uid: 38926 + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 40828 + - uid: 41354 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 38722 - - uid: 38927 + pos: 0.5,-4.5 + parent: 40828 + - uid: 41355 components: - type: Transform - pos: 0.5,-5.5 - parent: 38722 -- proto: PoweredlightCyan - entities: - - uid: 17807 + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 40828 + - uid: 41356 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-13.5 - parent: 2 - - uid: 40951 + pos: 2.5,-9.5 + parent: 40828 + - uid: 41357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-16.5 - parent: 2 -- proto: PoweredlightEmpty - entities: - - uid: 2107 + pos: -4.5,-8.5 + parent: 40828 + - uid: 41358 components: - type: Transform - pos: 6.5,-50.5 - parent: 2 - - uid: 2668 + rot: 1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 40828 + - uid: 41359 components: - type: Transform - pos: 3.5,-50.5 - parent: 2 - - uid: 2686 + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 40828 + - uid: 41360 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-64.5 - parent: 2 - - uid: 2827 + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 40828 + - uid: 41859 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-61.5 - parent: 2 - - uid: 7697 + pos: 2.5,-1.5 + parent: 41669 + - uid: 41860 components: - type: Transform - pos: -17.5,-42.5 - parent: 2 - - uid: 7703 + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 41669 + - uid: 41861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-35.5 - parent: 2 - - uid: 7705 + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 41669 + - uid: 41862 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-35.5 - parent: 2 - - uid: 9359 + pos: 2.5,-5.5 + parent: 41669 + - uid: 41863 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-63.5 - parent: 2 - - uid: 9445 + pos: 5.5,0.5 + parent: 41669 + - uid: 41864 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-64.5 - parent: 2 - - uid: 14701 + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 41669 + - uid: 41865 components: - type: Transform - pos: -9.5,-38.5 - parent: 2 - - uid: 14818 + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 41669 + - uid: 41866 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-29.5 - parent: 2 - - uid: 15161 + pos: 4.5,-11.5 + parent: 41669 + - uid: 41867 components: - type: Transform - pos: -8.5,-32.5 - parent: 2 - - uid: 15238 + rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 41669 +- proto: PoweredlightBlue + entities: + - uid: 41361 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-28.5 - parent: 2 - - uid: 15283 + pos: -5.5,-5.5 + parent: 40828 + - uid: 41868 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-36.5 - parent: 2 - - uid: 15297 + pos: 1.5,-11.5 + parent: 41669 + - uid: 41869 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-25.5 - parent: 2 - - uid: 16229 + rot: 1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 41669 + - uid: 41870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-44.5 - parent: 2 - - uid: 16659 + pos: 8.5,-5.5 + parent: 41669 + - uid: 41871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-39.5 - parent: 2 - - uid: 16968 + rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 41669 + - uid: 41872 components: - type: Transform - pos: 16.5,-35.5 - parent: 2 - - uid: 16998 + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 41669 + - uid: 41873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-41.5 - parent: 2 - - uid: 16999 + pos: 0.5,-5.5 + parent: 41669 +- proto: PoweredlightCyan + entities: + - uid: 28412 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-48.5 + pos: 62.5,-13.5 parent: 2 - - uid: 17607 + - uid: 28413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-28.5 + rot: 1.5707963267948966 rad + pos: 14.5,-16.5 parent: 2 - - uid: 18019 +- proto: PoweredlightEmpty + entities: + - uid: 26814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-15.5 + pos: 69.5,-44.5 parent: 2 - - uid: 18777 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26815 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 26816 components: - type: Transform - pos: 8.5,-53.5 + rot: 3.141592653589793 rad + pos: 102.5,-45.5 parent: 2 - - uid: 18778 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26817 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 26818 components: - type: Transform - pos: 10.5,-46.5 + rot: 1.5707963267948966 rad + pos: -50.5,6.5 parent: 2 - - uid: 18779 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26819 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 26820 components: - type: Transform - pos: 9.5,-34.5 + rot: 3.141592653589793 rad + pos: -65.5,-21.5 parent: 2 - - uid: 19251 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26821 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 26822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-42.5 + pos: 57.5,-44.5 parent: 2 - - uid: 19451 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26823 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 26824 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-54.5 + rot: 1.5707963267948966 rad + pos: -50.5,-6.5 parent: 2 - - uid: 19512 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26825 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 26826 components: - type: Transform - pos: -19.5,-45.5 + pos: -45.5,4.5 parent: 2 - - uid: 19513 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26827 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 26828 components: - type: Transform - pos: 17.5,-48.5 + rot: -1.5707963267948966 rad + pos: -32.5,-1.5 parent: 2 - - uid: 19543 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26829 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 26830 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-62.5 + rot: 1.5707963267948966 rad + pos: -39.5,1.5 parent: 2 - - uid: 19591 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26831 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 26832 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-54.5 + rot: -1.5707963267948966 rad + pos: -13.5,13.5 parent: 2 - - uid: 23111 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26833 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 26834 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-44.5 + rot: -1.5707963267948966 rad + pos: -68.5,-23.5 parent: 2 - - uid: 23275 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26835 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 26836 components: - type: Transform - pos: 69.5,-44.5 + pos: -43.5,9.5 parent: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 24936 + ent: 26837 - type: ApcPowerReceiver powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 23643 + - uid: 26838 components: - type: Transform - pos: -13.5,-56.5 + pos: -55.5,3.5 parent: 2 - - uid: 24298 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26839 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 26840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-26.5 + rot: 3.141592653589793 rad + pos: -30.5,16.5 parent: 2 - - uid: 24586 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26841 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 26842 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-42.5 + pos: -34.5,12.5 parent: 2 - - uid: 25703 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26843 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 26844 components: - type: Transform - pos: -61.5,-16.5 + pos: -51.5,9.5 parent: 2 - - uid: 25704 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26845 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 26846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,22.5 + rot: -1.5707963267948966 rad + pos: 109.5,-49.5 parent: 2 - - uid: 25853 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26847 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 26848 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,6.5 + pos: 88.5,-45.5 parent: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25854 + ent: 26849 - type: ApcPowerReceiver powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 25855 + - uid: 26850 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,-21.5 + pos: 101.5,-53.5 parent: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25862 + ent: 26851 - type: ApcPowerReceiver powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 25863 + - uid: 26852 components: - type: Transform - pos: 57.5,-44.5 + pos: -58.5,7.5 parent: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25912 + ent: 26853 - type: ApcPowerReceiver powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 25936 + - uid: 26854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-6.5 + pos: -86.5,-3.5 parent: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25952 + ent: 26855 - type: ApcPowerReceiver powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 25954 + - uid: 26856 components: - type: Transform - pos: -45.5,4.5 + rot: 3.141592653589793 rad + pos: -73.5,-5.5 parent: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25979 + ent: 26857 - type: ApcPowerReceiver powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 25982 + - uid: 26858 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-1.5 + pos: -72.5,-15.5 parent: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 25983 + ent: 26859 - type: ApcPowerReceiver powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 25984 + - uid: 26860 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,1.5 + pos: -79.5,3.5 parent: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 26002 + ent: 26861 - type: ApcPowerReceiver powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 26010 + - uid: 26862 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,13.5 + pos: -76.5,-18.5 parent: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 26023 + ent: 26863 - type: ApcPowerReceiver powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 26027 + - uid: 26864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-23.5 + rot: 1.5707963267948966 rad + pos: -79.5,-8.5 parent: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 26038 + ent: 26865 - type: ApcPowerReceiver powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 26064 + - uid: 26866 components: - type: Transform - pos: -43.5,9.5 + pos: -67.5,7.5 parent: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 26065 + ent: 26867 - type: ApcPowerReceiver powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 26066 + - uid: 26868 components: - type: Transform - pos: -55.5,3.5 + pos: -64.5,0.5 parent: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 26067 + ent: 26869 - type: ApcPowerReceiver powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 26068 + - uid: 26870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,16.5 + pos: 84.5,-44.5 parent: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 26074 + ent: 26871 - type: ApcPowerReceiver powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 26075 + - uid: 28414 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 2 + - uid: 28415 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 2 + - uid: 28416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-64.5 + parent: 2 + - uid: 28417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-61.5 + parent: 2 + - uid: 28418 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 28419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-35.5 + parent: 2 + - uid: 28420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-35.5 + parent: 2 + - uid: 28421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-63.5 + parent: 2 + - uid: 28422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-64.5 + parent: 2 + - uid: 28423 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 2 + - uid: 28424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-29.5 + parent: 2 + - uid: 28425 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 2 + - uid: 28426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-28.5 + parent: 2 + - uid: 28427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-36.5 + parent: 2 + - uid: 28428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-25.5 + parent: 2 + - uid: 28429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-44.5 + parent: 2 + - uid: 28430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-39.5 + parent: 2 + - uid: 28431 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 2 + - uid: 28432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-41.5 + parent: 2 + - uid: 28433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-48.5 + parent: 2 + - uid: 28434 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,12.5 + pos: 6.5,-28.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 26114 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 32756 + - uid: 28435 components: - type: Transform - pos: -3.5,-56.5 + rot: -1.5707963267948966 rad + pos: 6.5,-15.5 parent: 2 - - uid: 32757 + - uid: 28436 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-46.5 + pos: 8.5,-53.5 parent: 2 - - uid: 32761 + - uid: 28437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-54.5 + pos: 10.5,-46.5 parent: 2 - - uid: 32776 + - uid: 28438 components: - type: Transform - pos: 14.5,-21.5 + pos: 9.5,-34.5 parent: 2 - - uid: 35975 + - uid: 28439 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-29.5 + pos: 20.5,-42.5 parent: 2 - - uid: 36051 + - uid: 28440 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-29.5 + pos: -17.5,-54.5 parent: 2 - - uid: 36055 + - uid: 28441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-24.5 + pos: -19.5,-45.5 parent: 2 - - uid: 36056 + - uid: 28442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-22.5 + pos: 17.5,-48.5 parent: 2 - - uid: 36058 + - uid: 28443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-27.5 + rot: 3.141592653589793 rad + pos: 15.5,-62.5 parent: 2 - - uid: 36059 + - uid: 28444 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-49.5 + pos: -12.5,-54.5 parent: 2 - - uid: 36065 + - uid: 28445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-50.5 + rot: 3.141592653589793 rad + pos: -5.5,-44.5 parent: 2 - - uid: 36070 + - uid: 28446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-52.5 + pos: -13.5,-56.5 parent: 2 - - uid: 36922 + - uid: 28447 components: - type: Transform - pos: -51.5,9.5 + rot: -1.5707963267948966 rad + pos: -10.5,-26.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 36923 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 36924 + - uid: 28448 components: - type: Transform rot: -1.5707963267948966 rad - pos: 109.5,-49.5 + pos: 5.5,-42.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 36925 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 39023 + - uid: 28449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 102.5,-45.5 + pos: -61.5,-16.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 25026 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 39024 + - uid: 28450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-45.5 + pos: -3.5,-56.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 39025 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 39026 + - uid: 28451 components: - type: Transform rot: 3.141592653589793 rad - pos: 101.5,-53.5 + pos: 17.5,-46.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 39027 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 39028 + - uid: 28452 components: - type: Transform - pos: -58.5,7.5 + rot: 1.5707963267948966 rad + pos: -0.5,-54.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 39029 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 39030 + - uid: 28453 components: - type: Transform - pos: -86.5,-3.5 + pos: 14.5,-21.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 39031 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 39032 + - uid: 28454 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-5.5 + rot: -1.5707963267948966 rad + pos: 17.5,-29.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 39033 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 39034 + - uid: 28455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-15.5 + rot: 3.141592653589793 rad + pos: 10.5,-29.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 39035 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 39036 + - uid: 28456 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,3.5 + pos: 17.5,-24.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 39037 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 39038 + - uid: 28457 components: - type: Transform rot: -1.5707963267948966 rad - pos: -76.5,-18.5 + pos: 23.5,-22.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 39039 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 39040 + - uid: 28458 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,-8.5 + pos: 19.5,-27.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 39041 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 39042 + - uid: 28459 components: - type: Transform - pos: -67.5,7.5 + rot: 3.141592653589793 rad + pos: -7.5,-49.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 39043 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 39044 + - uid: 28460 components: - type: Transform - pos: -64.5,0.5 + rot: 1.5707963267948966 rad + pos: -3.5,-50.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 39045 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 39046 + - uid: 28461 components: - type: Transform - pos: 84.5,-44.5 + rot: 1.5707963267948966 rad + pos: -6.5,-52.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 39047 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - proto: PoweredlightExterior entities: - - uid: 40816 + - uid: 40761 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,3.5 - parent: 21045 - - uid: 40819 + parent: 40666 + - uid: 40762 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,3.5 - parent: 21045 + parent: 40666 - proto: PoweredlightLED entities: - - uid: 21242 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 21045 - - uid: 22001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 21045 - - uid: 22737 + - uid: 28462 components: - type: Transform pos: -10.5,-12.5 parent: 2 - - uid: 23049 + - uid: 28463 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-27.5 parent: 2 - - uid: 24151 + - uid: 28464 components: - type: Transform pos: 2.5,-15.5 parent: 2 - - uid: 25705 + - uid: 28465 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 + - uid: 40763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 40666 + - uid: 40764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 40666 - proto: PoweredlightOrange entities: - - uid: 25707 + - uid: 28466 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-80.5 parent: 2 - - uid: 25708 + - uid: 28467 components: - type: Transform rot: 3.141592653589793 rad @@ -197432,182 +201723,182 @@ entities: parent: 2 - proto: PoweredLightPostSmall entities: - - uid: 9742 + - uid: 28468 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,18.5 parent: 2 - - uid: 25709 + - uid: 28469 components: - type: Transform pos: -61.5,-97.5 parent: 2 - - uid: 25710 + - uid: 28470 components: - type: Transform pos: -62.5,-93.5 parent: 2 - - uid: 25711 + - uid: 28471 components: - type: Transform pos: -75.5,-97.5 parent: 2 - - uid: 25712 + - uid: 28472 components: - type: Transform pos: -73.5,-89.5 parent: 2 - - uid: 25713 + - uid: 28473 components: - type: Transform pos: -73.5,-101.5 parent: 2 - - uid: 25714 + - uid: 28474 components: - type: Transform pos: -63.5,-101.5 parent: 2 - - uid: 25715 + - uid: 28475 components: - type: Transform pos: -63.5,-89.5 parent: 2 - - uid: 25716 + - uid: 28476 components: - type: Transform pos: -74.5,-93.5 parent: 2 - - uid: 25717 + - uid: 28477 components: - type: Transform pos: -88.5,17.5 parent: 2 - - uid: 25718 + - uid: 28478 components: - type: Transform pos: 70.5,-95.5 parent: 2 - - uid: 25724 + - uid: 28479 components: - type: Transform pos: 70.5,-87.5 parent: 2 - - uid: 25725 + - uid: 28480 components: - type: Transform pos: 69.5,-91.5 parent: 2 - - uid: 25726 + - uid: 28481 components: - type: Transform pos: 82.5,-95.5 parent: 2 - - uid: 25727 + - uid: 28482 components: - type: Transform pos: 82.5,-87.5 parent: 2 - - uid: 25728 + - uid: 28483 components: - type: Transform pos: 83.5,-91.5 parent: 2 - - uid: 25729 + - uid: 28484 components: - type: Transform pos: 76.5,-98.5 parent: 2 - - uid: 25737 + - uid: 28485 components: - type: Transform pos: -85.5,25.5 parent: 2 - - uid: 25738 + - uid: 28486 components: - type: Transform pos: -82.5,31.5 parent: 2 - - uid: 25739 + - uid: 28487 components: - type: Transform pos: -71.5,-108.5 parent: 2 - - uid: 25740 + - uid: 28488 components: - type: Transform pos: -87.5,13.5 parent: 2 - - uid: 25741 + - uid: 28489 components: - type: Transform pos: -76.5,17.5 parent: 2 - - uid: 25742 + - uid: 28490 components: - type: Transform pos: -77.5,13.5 parent: 2 - - uid: 25743 + - uid: 28491 components: - type: Transform pos: -65.5,-108.5 parent: 2 - - uid: 25744 + - uid: 28492 components: - type: Transform pos: -79.5,25.5 parent: 2 - - uid: 25745 + - uid: 28493 components: - type: Transform pos: -68.5,-105.5 parent: 2 - - uid: 25746 + - uid: 28494 components: - type: Transform pos: 83.5,-73.5 parent: 2 - - uid: 25747 + - uid: 28495 components: - type: Transform pos: 88.5,-80.5 parent: 2 - - uid: 25748 + - uid: 28496 components: - type: Transform pos: 89.5,-73.5 parent: 2 - - uid: 25749 + - uid: 28497 components: - type: Transform pos: 78.5,-71.5 parent: 2 - - uid: 25750 + - uid: 28498 components: - type: Transform pos: 69.5,-71.5 parent: 2 - - uid: 25751 + - uid: 28499 components: - type: Transform pos: 65.5,-74.5 parent: 2 - proto: PoweredlightRed entities: - - uid: 17850 + - uid: 28500 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-17.5 parent: 2 - - uid: 19152 + - uid: 28501 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-17.5 parent: 2 - - uid: 25752 + - uid: 28502 components: - type: Transform rot: 1.5707963267948966 rad @@ -197615,18 +201906,18 @@ entities: parent: 2 - type: PoweredLight on: False - - uid: 26455 + - uid: 28503 components: - type: Transform pos: 10.5,-12.5 parent: 2 - - uid: 26476 + - uid: 28504 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-25.5 parent: 2 - - uid: 31037 + - uid: 28505 components: - type: Transform rot: 3.141592653589793 rad @@ -197634,77 +201925,82 @@ entities: parent: 2 - type: PoweredLight on: False - - uid: 38415 + - uid: 41362 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-5.5 - parent: 37887 + parent: 40828 - proto: PoweredSmallLight entities: - - uid: 2109 + - uid: 28506 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,4.5 parent: 2 - - uid: 2758 + - uid: 28507 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-23.5 parent: 2 - - uid: 5419 + - uid: 28508 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,10.5 parent: 2 - - uid: 9388 + - uid: 28509 components: - type: Transform pos: 43.5,15.5 parent: 2 - - uid: 9473 + - uid: 28510 components: - type: Transform pos: 51.5,16.5 parent: 2 - - uid: 11854 + - uid: 28511 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,0.5 parent: 2 - - uid: 13002 + - uid: 28512 components: - type: Transform pos: 51.5,0.5 parent: 2 - - uid: 14749 + - uid: 28513 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,1.5 parent: 2 - - uid: 14774 + - uid: 28514 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,3.5 parent: 2 - - uid: 14777 + - uid: 28515 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,8.5 parent: 2 - - uid: 14814 + - uid: 28516 components: - type: Transform pos: 43.5,10.5 parent: 2 - - uid: 15439 + - uid: 28517 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 28518 components: - type: Transform rot: -1.5707963267948966 rad @@ -197712,1522 +202008,1516 @@ entities: parent: 2 - type: PointLight radius: 4 - - uid: 16886 + - uid: 28519 components: - type: Transform pos: 65.5,15.5 parent: 2 - - uid: 18681 + - uid: 28520 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,14.5 parent: 2 - - uid: 23014 + - uid: 28521 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-21.5 parent: 2 - - uid: 23233 + - uid: 28522 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,1.5 parent: 2 - - uid: 24599 + - uid: 28523 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-17.5 parent: 2 - - uid: 24631 + - uid: 28524 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,17.5 parent: 2 - - uid: 25754 + - uid: 28525 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,15.5 parent: 2 - - uid: 25755 + - uid: 28526 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-109.5 parent: 2 - - uid: 25756 + - uid: 28527 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-74.5 parent: 2 - - uid: 25757 + - uid: 28528 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-53.5 parent: 2 - - uid: 25758 + - uid: 28529 components: - type: Transform pos: 69.5,-65.5 parent: 2 - - uid: 25760 + - uid: 28530 components: - type: Transform rot: -1.5707963267948966 rad pos: 87.5,-53.5 parent: 2 - - uid: 25761 + - uid: 28531 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-16.5 parent: 2 - - uid: 25762 + - uid: 28532 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-72.5 parent: 2 - - uid: 25763 + - uid: 28533 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-17.5 parent: 2 - - uid: 25764 + - uid: 28534 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-105.5 parent: 2 - - uid: 25765 + - uid: 28535 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,-49.5 parent: 2 - - uid: 25766 + - uid: 28536 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,6.5 parent: 2 - - uid: 25767 + - uid: 28537 components: - type: Transform rot: 1.5707963267948966 rad pos: 93.5,-52.5 parent: 2 - - uid: 25769 + - uid: 28538 components: - type: Transform pos: -54.5,-68.5 parent: 2 - - uid: 25770 + - uid: 28539 components: - type: Transform rot: -1.5707963267948966 rad pos: 108.5,-37.5 parent: 2 - - uid: 25771 + - uid: 28540 components: - type: Transform rot: -1.5707963267948966 rad pos: 108.5,-25.5 parent: 2 - - uid: 25773 + - uid: 28541 components: - type: Transform pos: -65.5,-23.5 parent: 2 - - uid: 25774 + - uid: 28542 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-30.5 parent: 2 - - uid: 25775 + - uid: 28543 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-34.5 parent: 2 - - uid: 25778 + - uid: 28544 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,19.5 parent: 2 - - uid: 25779 + - uid: 28545 components: - type: Transform pos: -35.5,-51.5 parent: 2 - - uid: 25780 + - uid: 28546 components: - type: Transform pos: 35.5,-80.5 parent: 2 - - uid: 25781 + - uid: 28547 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,-25.5 parent: 2 - - uid: 25782 + - uid: 28548 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,-23.5 parent: 2 - - uid: 25784 + - uid: 28549 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,15.5 parent: 2 - - uid: 25785 + - uid: 28550 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-87.5 parent: 2 - - uid: 25787 + - uid: 28551 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-34.5 parent: 2 - - uid: 25789 + - uid: 28552 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,16.5 parent: 2 - - uid: 25791 + - uid: 28553 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-50.5 parent: 2 - - uid: 25794 + - uid: 28554 components: - type: Transform pos: 30.5,-86.5 parent: 2 - - uid: 25795 + - uid: 28555 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-52.5 parent: 2 - - uid: 25796 + - uid: 28556 components: - type: Transform pos: 64.5,-67.5 parent: 2 - - uid: 25797 + - uid: 28557 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-64.5 parent: 2 - - uid: 25798 + - uid: 28558 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-71.5 parent: 2 - - uid: 25799 + - uid: 28559 components: - type: Transform pos: 56.5,-75.5 parent: 2 - - uid: 25800 + - uid: 28560 components: - type: Transform pos: 42.5,-68.5 parent: 2 - - uid: 25801 + - uid: 28561 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-42.5 parent: 2 - - uid: 25804 + - uid: 28562 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-28.5 parent: 2 - - uid: 25805 + - uid: 28563 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-29.5 parent: 2 - - uid: 25806 + - uid: 28564 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-29.5 parent: 2 - - uid: 25817 + - uid: 28565 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-9.5 parent: 2 - - uid: 25818 + - uid: 28566 components: - type: Transform pos: 38.5,-29.5 parent: 2 - - uid: 25819 + - uid: 28567 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-26.5 parent: 2 - - uid: 25820 + - uid: 28568 components: - type: Transform pos: -2.5,-86.5 parent: 2 - - uid: 25821 + - uid: 28569 components: - type: Transform pos: -6.5,-93.5 parent: 2 - - uid: 25822 + - uid: 28570 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-99.5 parent: 2 - - uid: 25823 + - uid: 28571 components: - type: Transform pos: -7.5,-98.5 parent: 2 - - uid: 25824 + - uid: 28572 components: - type: Transform pos: -8.5,-101.5 parent: 2 - - uid: 25825 + - uid: 28573 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-99.5 parent: 2 - - uid: 25826 + - uid: 28574 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-79.5 parent: 2 - - uid: 25827 + - uid: 28575 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-79.5 parent: 2 - - uid: 25828 + - uid: 28576 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-68.5 parent: 2 - - uid: 25829 + - uid: 28577 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-72.5 parent: 2 - - uid: 25830 + - uid: 28578 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-67.5 parent: 2 - - uid: 25831 + - uid: 28579 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-69.5 parent: 2 - - uid: 25832 + - uid: 28580 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-68.5 parent: 2 - - uid: 25833 + - uid: 28581 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-60.5 parent: 2 - - uid: 25834 + - uid: 28582 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-55.5 parent: 2 - - uid: 25835 + - uid: 28583 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-75.5 parent: 2 - - uid: 25836 + - uid: 28584 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-72.5 parent: 2 - - uid: 25837 + - uid: 28585 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,6.5 parent: 2 - - uid: 25838 + - uid: 28586 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,6.5 parent: 2 - - uid: 25839 + - uid: 28587 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,12.5 parent: 2 - - uid: 25840 + - uid: 28588 components: - type: Transform pos: 12.5,11.5 parent: 2 - - uid: 25841 + - uid: 28589 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,7.5 parent: 2 - - uid: 25842 + - uid: 28590 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,3.5 parent: 2 - - uid: 25843 + - uid: 28591 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,7.5 parent: 2 - - uid: 25844 + - uid: 28592 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,11.5 parent: 2 - - uid: 25848 + - uid: 28593 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-89.5 parent: 2 - - uid: 25849 + - uid: 28594 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-15.5 parent: 2 - - uid: 25850 + - uid: 28595 components: - type: Transform pos: -52.5,-12.5 parent: 2 - - uid: 25851 + - uid: 28596 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-11.5 parent: 2 - - uid: 25852 + - uid: 28597 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-5.5 parent: 2 - - uid: 25856 + - uid: 28598 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-6.5 parent: 2 - - uid: 25857 + - uid: 28599 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-9.5 parent: 2 - - uid: 25858 + - uid: 28600 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-26.5 parent: 2 - - uid: 25859 + - uid: 28601 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-18.5 parent: 2 - - uid: 25860 + - uid: 28602 components: - type: Transform pos: -38.5,-17.5 parent: 2 - - uid: 25861 + - uid: 28603 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-8.5 parent: 2 - - uid: 25864 + - uid: 28604 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-39.5 parent: 2 - - uid: 25865 + - uid: 28605 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-69.5 parent: 2 - - uid: 25866 + - uid: 28606 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 - - uid: 25867 + - uid: 28607 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-84.5 parent: 2 - - uid: 25868 + - uid: 28608 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-78.5 parent: 2 - - uid: 25869 + - uid: 28609 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,-69.5 parent: 2 - - uid: 25870 + - uid: 28610 components: - type: Transform pos: -38.5,-76.5 parent: 2 - - uid: 25871 + - uid: 28611 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-61.5 parent: 2 - - uid: 25872 + - uid: 28612 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-73.5 parent: 2 - - uid: 25873 + - uid: 28613 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-74.5 parent: 2 - - uid: 25874 + - uid: 28614 components: - type: Transform pos: -28.5,-83.5 parent: 2 - - uid: 25875 + - uid: 28615 components: - type: Transform pos: -28.5,-86.5 parent: 2 - - uid: 25876 + - uid: 28616 components: - type: Transform pos: -28.5,-89.5 parent: 2 - - uid: 25877 + - uid: 28617 components: - type: Transform pos: -35.5,-89.5 parent: 2 - - uid: 25878 + - uid: 28618 components: - type: Transform pos: -35.5,-86.5 parent: 2 - - uid: 25879 + - uid: 28619 components: - type: Transform pos: -35.5,-83.5 parent: 2 - - uid: 25880 + - uid: 28620 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-79.5 parent: 2 - - uid: 25881 + - uid: 28621 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-79.5 parent: 2 - - uid: 25882 + - uid: 28622 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-79.5 parent: 2 - - uid: 25883 + - uid: 28623 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-76.5 parent: 2 - - uid: 25884 + - uid: 28624 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-95.5 parent: 2 - - uid: 25885 + - uid: 28625 components: - type: Transform pos: -12.5,-87.5 parent: 2 - - uid: 25886 + - uid: 28626 components: - type: Transform pos: -12.5,-90.5 parent: 2 - - uid: 25887 + - uid: 28627 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-82.5 parent: 2 - - uid: 25888 + - uid: 28628 components: - type: Transform pos: -58.5,-56.5 parent: 2 - - uid: 25889 + - uid: 28629 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-62.5 parent: 2 - - uid: 25890 + - uid: 28630 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-52.5 parent: 2 - - uid: 25891 + - uid: 28631 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-64.5 parent: 2 - - uid: 25892 + - uid: 28632 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-61.5 parent: 2 - - uid: 25893 + - uid: 28633 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-78.5 parent: 2 - - uid: 25894 + - uid: 28634 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-77.5 parent: 2 - - uid: 25895 + - uid: 28635 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,4.5 parent: 2 - - uid: 25896 + - uid: 28636 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,3.5 parent: 2 - - uid: 25897 + - uid: 28637 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,5.5 parent: 2 - - uid: 25898 + - uid: 28638 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,7.5 parent: 2 - - uid: 25899 + - uid: 28639 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-47.5 parent: 2 - - uid: 25900 + - uid: 28640 components: - type: Transform pos: -79.5,-45.5 parent: 2 - - uid: 25901 + - uid: 28641 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,-38.5 parent: 2 - - uid: 25902 + - uid: 28642 components: - type: Transform rot: 1.5707963267948966 rad pos: -76.5,-52.5 parent: 2 - - uid: 25903 + - uid: 28643 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-52.5 parent: 2 - - uid: 25904 + - uid: 28644 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-41.5 parent: 2 - - uid: 25905 + - uid: 28645 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-39.5 parent: 2 - - uid: 25906 + - uid: 28646 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-37.5 parent: 2 - - uid: 25907 + - uid: 28647 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-35.5 parent: 2 - - uid: 25908 + - uid: 28648 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,0.5 parent: 2 - - uid: 25910 + - uid: 28649 components: - type: Transform pos: 78.5,-26.5 parent: 2 - - uid: 25911 + - uid: 28650 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-47.5 parent: 2 - - uid: 25913 + - uid: 28651 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-23.5 parent: 2 - - uid: 25915 + - uid: 28652 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-18.5 parent: 2 - - uid: 25916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,3.5 - parent: 2 - - uid: 25918 + - uid: 28653 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,-37.5 parent: 2 - - uid: 25919 + - uid: 28654 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,-25.5 parent: 2 - - uid: 25920 + - uid: 28655 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,-37.5 parent: 2 - - uid: 25921 + - uid: 28656 components: - type: Transform rot: 1.5707963267948966 rad pos: 91.5,-19.5 parent: 2 - - uid: 25922 + - uid: 28657 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,-19.5 parent: 2 - - uid: 25923 + - uid: 28658 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,8.5 parent: 2 - - uid: 25925 + - uid: 28659 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,-107.5 parent: 2 - - uid: 25926 + - uid: 28660 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-88.5 parent: 2 - - uid: 25927 + - uid: 28661 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-50.5 parent: 2 - - uid: 25934 + - uid: 28662 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-29.5 parent: 2 - - uid: 25937 + - uid: 28663 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-16.5 parent: 2 - - uid: 25938 + - uid: 28664 components: - type: Transform pos: 34.5,19.5 parent: 2 - - uid: 25939 + - uid: 28665 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-54.5 parent: 2 - - uid: 25940 + - uid: 28666 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-57.5 parent: 2 - - uid: 25941 + - uid: 28667 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,24.5 parent: 2 - - uid: 25942 + - uid: 28668 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-85.5 parent: 2 - - uid: 25943 + - uid: 28669 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-89.5 parent: 2 - - uid: 25944 + - uid: 28670 components: - type: Transform pos: 31.5,-101.5 parent: 2 - - uid: 25945 + - uid: 28671 components: - type: Transform pos: 30.5,-95.5 parent: 2 - - uid: 25946 + - uid: 28672 components: - type: Transform pos: 30.5,-98.5 parent: 2 - - uid: 25947 + - uid: 28673 components: - type: Transform pos: 30.5,-92.5 parent: 2 - - uid: 25948 + - uid: 28674 components: - type: Transform pos: 30.5,-89.5 parent: 2 - - uid: 25949 + - uid: 28675 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-109.5 parent: 2 - - uid: 25951 + - uid: 28676 components: - type: Transform rot: -1.5707963267948966 rad pos: 109.5,-18.5 parent: 2 - - uid: 25953 + - uid: 28677 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-3.5 parent: 2 - - uid: 25956 + - uid: 28678 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-13.5 parent: 2 - - uid: 25957 + - uid: 28679 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-7.5 parent: 2 - - uid: 25958 + - uid: 28680 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-13.5 parent: 2 - - uid: 25959 + - uid: 28681 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-11.5 parent: 2 - - uid: 25960 + - uid: 28682 components: - type: Transform pos: -60.5,-6.5 parent: 2 - - uid: 25961 + - uid: 28683 components: - type: Transform pos: -75.5,-29.5 parent: 2 - - uid: 25963 + - uid: 28684 components: - type: Transform pos: 45.5,24.5 parent: 2 - - uid: 25964 + - uid: 28685 components: - type: Transform pos: 42.5,25.5 parent: 2 - - uid: 25965 + - uid: 28686 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,25.5 parent: 2 - - uid: 25966 + - uid: 28687 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-95.5 parent: 2 - - uid: 25967 + - uid: 28688 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-92.5 parent: 2 - - uid: 25968 + - uid: 28689 components: - type: Transform pos: -49.5,-87.5 parent: 2 - - uid: 25969 + - uid: 28690 components: - type: Transform pos: -45.5,-91.5 parent: 2 - - uid: 25970 + - uid: 28691 components: - type: Transform pos: -55.5,-85.5 parent: 2 - - uid: 25971 + - uid: 28692 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-83.5 parent: 2 - - uid: 25972 + - uid: 28693 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-85.5 parent: 2 - - uid: 25973 + - uid: 28694 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-82.5 parent: 2 - - uid: 25974 + - uid: 28695 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-82.5 parent: 2 - - uid: 25975 + - uid: 28696 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-78.5 parent: 2 - - uid: 25977 + - uid: 28697 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-18.5 parent: 2 - - uid: 25978 + - uid: 28698 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,12.5 parent: 2 - - uid: 25980 + - uid: 28699 components: - type: Transform pos: -50.5,20.5 parent: 2 - - uid: 25981 + - uid: 28700 components: - type: Transform pos: -42.5,20.5 parent: 2 - - uid: 25986 + - uid: 28701 components: - type: Transform pos: -38.5,18.5 parent: 2 - - uid: 25987 + - uid: 28702 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,11.5 parent: 2 - - uid: 25988 + - uid: 28703 components: - type: Transform rot: 1.5707963267948966 rad pos: -59.5,-47.5 parent: 2 - - uid: 25989 + - uid: 28704 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,20.5 parent: 2 - - uid: 25990 + - uid: 28705 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-50.5 parent: 2 - - uid: 25991 + - uid: 28706 components: - type: Transform pos: 7.5,-71.5 parent: 2 - - uid: 25992 + - uid: 28707 components: - type: Transform pos: 3.5,-71.5 parent: 2 - - uid: 25993 + - uid: 28708 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-72.5 parent: 2 - - uid: 25994 + - uid: 28709 components: - type: Transform pos: -7.5,-71.5 parent: 2 - - uid: 25995 + - uid: 28710 components: - type: Transform pos: -67.5,-52.5 parent: 2 - - uid: 25998 + - uid: 28711 components: - type: Transform pos: 76.5,-21.5 parent: 2 - - uid: 26005 + - uid: 28712 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-18.5 parent: 2 - - uid: 26006 + - uid: 28713 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-46.5 parent: 2 - - uid: 26007 + - uid: 28714 components: - type: Transform pos: -43.5,-105.5 parent: 2 - - uid: 26009 + - uid: 28715 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,6.5 parent: 2 - - uid: 26011 + - uid: 28716 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 2 - - uid: 26012 + - uid: 28717 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-49.5 parent: 2 - - uid: 26013 + - uid: 28718 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-74.5 parent: 2 - - uid: 26014 + - uid: 28719 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-103.5 parent: 2 - - uid: 26015 + - uid: 28720 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-95.5 parent: 2 - - uid: 26016 + - uid: 28721 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-83.5 parent: 2 - - uid: 26017 + - uid: 28722 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-106.5 parent: 2 - - uid: 26018 + - uid: 28723 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-118.5 parent: 2 - - uid: 26019 + - uid: 28724 components: - type: Transform pos: -27.5,-105.5 parent: 2 - - uid: 26020 + - uid: 28725 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-95.5 parent: 2 - - uid: 26021 + - uid: 28726 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-114.5 parent: 2 - - uid: 26022 + - uid: 28727 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-53.5 parent: 2 - - uid: 26024 + - uid: 28728 components: - type: Transform rot: 1.5707963267948966 rad pos: 104.5,-58.5 parent: 2 - - uid: 26025 + - uid: 28729 components: - type: Transform rot: 3.141592653589793 rad pos: 111.5,-46.5 parent: 2 - - uid: 26028 + - uid: 28730 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,-49.5 parent: 2 - - uid: 26029 + - uid: 28731 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-52.5 parent: 2 - - uid: 26031 + - uid: 28732 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-77.5 parent: 2 - - uid: 26032 + - uid: 28733 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,-47.5 parent: 2 - - uid: 26033 + - uid: 28734 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-120.5 parent: 2 - - uid: 26034 + - uid: 28735 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,19.5 parent: 2 - - uid: 26035 + - uid: 28736 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-68.5 parent: 2 - - uid: 26037 + - uid: 28737 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-100.5 parent: 2 - - uid: 26039 + - uid: 28738 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,11.5 parent: 2 - - uid: 26040 + - uid: 28739 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,9.5 parent: 2 - - uid: 26043 + - uid: 28740 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,-3.5 parent: 2 - - uid: 26044 + - uid: 28741 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-3.5 parent: 2 - - uid: 26045 + - uid: 28742 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,3.5 parent: 2 - - uid: 26046 + - uid: 28743 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,1.5 parent: 2 - - uid: 26047 + - uid: 28744 components: - type: Transform pos: -61.5,4.5 parent: 2 - - uid: 26048 + - uid: 28745 components: - type: Transform pos: -56.5,12.5 parent: 2 - - uid: 26049 + - uid: 28746 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,9.5 parent: 2 - - uid: 26053 + - uid: 28747 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-24.5 parent: 2 - - uid: 26054 + - uid: 28748 components: - type: Transform pos: -35.5,-109.5 parent: 2 - - uid: 26055 + - uid: 28749 components: - type: Transform pos: -54.5,-118.5 parent: 2 - - uid: 26056 + - uid: 28750 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-103.5 parent: 2 - - uid: 26057 + - uid: 28751 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-110.5 parent: 2 - - uid: 26058 + - uid: 28752 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-110.5 parent: 2 - - uid: 26059 + - uid: 28753 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-112.5 parent: 2 - - uid: 26060 + - uid: 28754 components: - type: Transform pos: -47.5,-114.5 parent: 2 - - uid: 26061 + - uid: 28755 components: - type: Transform pos: -47.5,-119.5 parent: 2 - - uid: 26062 + - uid: 28756 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,1.5 parent: 2 - - uid: 26069 + - uid: 28757 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-27.5 parent: 2 - - uid: 26070 + - uid: 28758 components: - type: Transform rot: 1.5707963267948966 rad pos: -87.5,-9.5 parent: 2 - - uid: 26071 + - uid: 28759 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,-21.5 parent: 2 - - uid: 26072 + - uid: 28760 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,-21.5 parent: 2 - - uid: 26073 + - uid: 28761 components: - type: Transform pos: -82.5,-13.5 parent: 2 - - uid: 26076 + - uid: 28762 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-115.5 parent: 2 - - uid: 26077 + - uid: 28763 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,14.5 parent: 2 - - uid: 26078 + - uid: 28764 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-63.5 parent: 2 - - uid: 26079 + - uid: 28765 components: - type: Transform rot: 1.5707963267948966 rad pos: 97.5,-61.5 parent: 2 - - uid: 26080 + - uid: 28766 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,-82.5 parent: 2 - - uid: 26081 + - uid: 28767 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-83.5 parent: 2 - - uid: 26082 + - uid: 28768 components: - type: Transform rot: 1.5707963267948966 rad pos: 95.5,-83.5 parent: 2 - - uid: 26083 + - uid: 28769 components: - type: Transform rot: 3.141592653589793 rad pos: 92.5,-80.5 parent: 2 - - uid: 26085 + - uid: 28770 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-96.5 parent: 2 - - uid: 26086 + - uid: 28771 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-40.5 parent: 2 - - uid: 26087 + - uid: 28772 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,30.5 parent: 2 - - uid: 26088 + - uid: 28773 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,28.5 parent: 2 - - uid: 26089 + - uid: 28774 components: - type: Transform pos: 44.5,31.5 parent: 2 - - uid: 26090 + - uid: 28775 components: - type: Transform pos: 38.5,31.5 parent: 2 - - uid: 26099 + - uid: 28776 components: - type: Transform pos: -51.5,-38.5 parent: 2 - - uid: 26100 + - uid: 28777 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,34.5 parent: 2 - - uid: 26103 + - uid: 28778 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,11.5 parent: 2 - - uid: 26104 + - uid: 28779 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,9.5 parent: 2 - - uid: 27134 + - uid: 28780 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-30.5 parent: 2 - - uid: 27344 + - uid: 28781 components: - type: Transform rot: 1.5707963267948966 rad @@ -199235,60 +203525,60 @@ entities: parent: 2 - type: PointLight radius: 4 - - uid: 27432 + - uid: 28782 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-11.5 parent: 2 - - uid: 27840 + - uid: 28783 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-2.5 parent: 2 - - uid: 31069 + - uid: 28784 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-7.5 parent: 2 - - uid: 31578 + - uid: 28785 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-9.5 parent: 2 - - uid: 32571 + - uid: 28786 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,12.5 parent: 2 - - uid: 32993 + - uid: 28787 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,1.5 parent: 2 - - uid: 35904 + - uid: 28788 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,20.5 parent: 2 - - uid: 37064 + - uid: 28789 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,16.5 parent: 2 - - uid: 37516 + - uid: 28790 components: - type: Transform pos: 68.5,-11.5 parent: 2 - - uid: 37724 + - uid: 28791 components: - type: Transform rot: 1.5707963267948966 rad @@ -199296,44 +203586,56 @@ entities: parent: 2 - type: PointLight radius: 4 - - uid: 37843 + - uid: 28792 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-8.5 parent: 2 - - uid: 38416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-12.5 - parent: 37887 - - uid: 40057 + - uid: 28793 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-71.5 parent: 2 - - uid: 40950 + - uid: 28794 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,9.5 parent: 2 - - uid: 41018 + - uid: 28795 components: - type: Transform rot: 3.141592653589793 rad pos: 132.5,-38.5 parent: 2 - - uid: 41019 + - uid: 28796 components: - type: Transform pos: 132.5,-40.5 parent: 2 + - uid: 28797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,9.5 + parent: 2 + - uid: 28798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,5.5 + parent: 2 + - uid: 41363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 40828 - proto: PoweredSmallLightEmpty entities: - - uid: 26113 + - uid: 28799 components: - type: Transform rot: 1.5707963267948966 rad @@ -199341,11 +203643,11 @@ entities: parent: 2 - proto: PoweredStrobeLightPolice entities: - - uid: 32589 + - uid: 40757 components: - type: Transform pos: 0.5,4.5 - parent: 21045 + parent: 40666 - type: AmbientSound sound: !type:SoundPathSpecifier params: @@ -199365,21 +203667,39 @@ entities: light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 32736 + ent: 40758 - type: ApcPowerReceiver powerLoad: 0 - type: DamageOnInteract isDamageActive: False +- proto: PrefilledSyringe + entities: + - uid: 52 + components: + - type: MetaData + name: шприц галоперидола + - type: Transform + parent: 35 + - type: SolutionContainerManager + solutions: null + containers: + - injector + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + solution@injector: !type:ContainerSlot + ent: 53 - proto: PresentRandomAsh entities: - - uid: 26115 + - uid: 28800 components: - type: Transform pos: -55.516136,-91.37328 parent: 2 - proto: PrintedDocumentApplicationAccess entities: - - uid: 26116 + - uid: 28801 components: - type: Transform pos: -54.570217,-15.287431 @@ -199468,2777 +203788,2783 @@ entities: ent: 7 - proto: PrintedDocumentSentence entities: - - uid: 34287 + - uid: 28802 components: - type: Transform pos: 81.51518,3.528534 parent: 2 - proto: PrinterDoc entities: - - uid: 15162 + - uid: 28803 components: - type: Transform pos: 48.5,-2.5 parent: 2 - - uid: 24321 + - uid: 28804 components: - type: Transform pos: 50.5,-17.5 parent: 2 - - uid: 26117 + - uid: 28805 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,8.5 parent: 2 - - uid: 26119 + - uid: 28806 components: - type: Transform pos: -33.5,6.5 parent: 2 - - uid: 26120 + - uid: 28807 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,11.5 parent: 2 - - uid: 26121 + - uid: 28808 components: - type: Transform pos: -8.5,23.5 parent: 2 - - uid: 26122 + - uid: 28809 components: - type: Transform pos: 12.5,-82.5 parent: 2 + - uid: 28810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,5.5 + parent: 2 - proto: Protolathe entities: - - uid: 26123 + - uid: 28811 components: - type: Transform pos: -36.5,-61.5 parent: 2 - - uid: 26124 + - uid: 28812 components: - type: Transform pos: -39.5,-46.5 parent: 2 - proto: PsychBed entities: - - uid: 26125 + - uid: 28813 components: - type: Transform pos: -51.5,-49.5 parent: 2 - proto: PumpkinLantern entities: - - uid: 36770 + - uid: 28814 components: - type: Transform pos: 28.550491,30.74158 parent: 2 - - uid: 36773 + - uid: 28815 components: - type: Transform pos: 29.810972,27.55408 parent: 2 - proto: PumpkinLanternSmall entities: - - uid: 11908 + - uid: 28816 components: - type: Transform pos: 27.342222,27.475954 parent: 2 - - uid: 36771 + - uid: 28817 components: - type: Transform pos: 30.867588,30.694704 parent: 2 - - uid: 36772 + - uid: 28818 components: - type: Transform pos: 30.117588,30.382204 parent: 2 - - uid: 36774 + - uid: 28819 components: - type: Transform pos: 32.826595,29.46033 parent: 2 +- proto: PunctAutoInjector + entities: + - uid: 27222 + components: + - type: Transform + parent: 27220 + - type: Physics + canCollide: False +- proto: PyraAutoInjector + entities: + - uid: 27223 + components: + - type: Transform + parent: 27220 + - type: Physics + canCollide: False - proto: Rack entities: - - uid: 1112 + - uid: 28820 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,18.5 parent: 2 - - uid: 1744 + - uid: 28821 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-23.5 parent: 2 - - uid: 1829 + - uid: 28822 components: - type: Transform pos: 62.5,-19.5 parent: 2 - - uid: 2583 + - uid: 28823 components: - type: Transform pos: 54.5,-17.5 parent: 2 - - uid: 2591 + - uid: 28824 components: - type: Transform pos: 62.5,-17.5 parent: 2 - - uid: 2646 + - uid: 28825 components: - type: Transform pos: 64.5,-13.5 parent: 2 - - uid: 2711 + - uid: 28826 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,13.5 parent: 2 - - uid: 2724 + - uid: 28827 components: - type: Transform pos: 55.5,-19.5 parent: 2 - - uid: 2762 + - uid: 28828 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-19.5 parent: 2 - - uid: 2801 + - uid: 28829 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-17.5 parent: 2 - - uid: 2803 + - uid: 28830 components: - type: Transform pos: 57.5,-22.5 parent: 2 - - uid: 2886 + - uid: 28831 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-19.5 parent: 2 - - uid: 3104 + - uid: 28832 components: - type: Transform pos: 65.5,-17.5 parent: 2 - - uid: 5420 + - uid: 28833 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-11.5 parent: 2 - - uid: 5464 + - uid: 28834 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-13.5 parent: 2 - - uid: 6322 + - uid: 28835 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,22.5 parent: 2 - - uid: 6323 + - uid: 28836 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,22.5 parent: 2 - - uid: 6944 + - uid: 28837 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,18.5 parent: 2 - - uid: 6945 + - uid: 28838 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,22.5 parent: 2 - - uid: 6946 + - uid: 28839 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,18.5 parent: 2 - - uid: 7633 + - uid: 28840 components: - type: Transform pos: 65.5,-19.5 parent: 2 - - uid: 7795 + - uid: 28841 components: - type: Transform pos: 63.5,-19.5 parent: 2 - - uid: 8671 + - uid: 28842 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-38.5 parent: 2 - - uid: 8676 + - uid: 28843 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-38.5 parent: 2 - - uid: 9274 + - uid: 28844 components: - type: Transform pos: 12.5,-21.5 parent: 2 - - uid: 9363 + - uid: 28845 components: - type: Transform pos: 64.5,-19.5 parent: 2 - - uid: 9379 + - uid: 28846 components: - type: Transform pos: 8.5,-17.5 parent: 2 - - uid: 9484 + - uid: 28847 components: - type: Transform pos: 8.5,-21.5 parent: 2 - - uid: 9485 + - uid: 28848 components: - type: Transform pos: 12.5,-15.5 parent: 2 - - uid: 9691 + - uid: 28849 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-11.5 parent: 2 - - uid: 9692 + - uid: 28850 components: - type: Transform pos: 46.5,-5.5 parent: 2 - - uid: 9725 + - uid: 28851 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,13.5 parent: 2 - - uid: 11054 + - uid: 28852 components: - type: Transform pos: 12.5,-17.5 parent: 2 - - uid: 13978 + - uid: 28853 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-11.5 parent: 2 - - uid: 15295 + - uid: 28854 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-11.5 parent: 2 - - uid: 16361 + - uid: 28855 components: - type: Transform pos: -19.5,-27.5 parent: 2 - - uid: 17792 + - uid: 28856 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,16.5 parent: 2 - - uid: 17854 + - uid: 28857 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,17.5 parent: 2 - - uid: 17946 + - uid: 28858 components: - type: Transform pos: 57.5,-19.5 parent: 2 - - uid: 22997 + - uid: 28859 components: - type: Transform pos: 57.5,-17.5 parent: 2 - - uid: 26128 + - uid: 28860 components: - type: Transform pos: -29.5,-86.5 parent: 2 - - uid: 26129 + - uid: 28861 components: - type: Transform pos: -34.5,-83.5 parent: 2 - - uid: 26130 + - uid: 28862 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-76.5 parent: 2 - - uid: 26133 + - uid: 28863 components: - type: Transform pos: 29.5,32.5 parent: 2 - - uid: 26134 + - uid: 28864 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-1.5 parent: 2 - - uid: 26136 + - uid: 28865 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,9.5 parent: 2 - - uid: 26138 + - uid: 28866 components: - type: Transform pos: 41.5,-82.5 parent: 2 - - uid: 26139 + - uid: 28867 components: - type: Transform pos: -66.5,-71.5 parent: 2 - - uid: 26140 + - uid: 28868 components: - type: Transform pos: -47.5,-81.5 parent: 2 - - uid: 26142 + - uid: 28869 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-19.5 parent: 2 - - uid: 26144 + - uid: 28870 components: - type: Transform rot: 1.5707963267948966 rad pos: -83.5,-21.5 parent: 2 - - uid: 26146 + - uid: 28871 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-44.5 parent: 2 - - uid: 26147 + - uid: 28872 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-105.5 parent: 2 - - uid: 26150 + - uid: 28873 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-74.5 parent: 2 - - uid: 26151 + - uid: 28874 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-32.5 parent: 2 - - uid: 26152 + - uid: 28875 components: - type: Transform pos: 19.5,7.5 parent: 2 - - uid: 26153 + - uid: 28876 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-72.5 parent: 2 - - uid: 26154 + - uid: 28877 components: - type: Transform pos: -39.5,-65.5 parent: 2 - - uid: 26155 + - uid: 28878 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,19.5 parent: 2 - - uid: 26156 + - uid: 28879 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,19.5 parent: 2 - - uid: 26157 + - uid: 28880 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-87.5 parent: 2 - - uid: 26158 + - uid: 28881 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-42.5 parent: 2 - - uid: 26159 + - uid: 28882 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-41.5 parent: 2 - - uid: 26160 + - uid: 28883 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-41.5 parent: 2 - - uid: 26161 + - uid: 28884 components: - type: Transform pos: 39.5,-35.5 parent: 2 - - uid: 26162 + - uid: 28885 components: - type: Transform pos: 38.5,-35.5 parent: 2 - - uid: 26163 + - uid: 28886 components: - type: Transform pos: 37.5,-35.5 parent: 2 - - uid: 26164 + - uid: 28887 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-42.5 parent: 2 - - uid: 26165 + - uid: 28888 components: - type: Transform pos: 53.5,-48.5 parent: 2 - - uid: 26166 + - uid: 28889 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-69.5 parent: 2 - - uid: 26167 + - uid: 28890 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-91.5 parent: 2 - - uid: 26168 + - uid: 28891 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-87.5 parent: 2 - - uid: 26172 + - uid: 28892 components: - type: Transform rot: -1.5707963267948966 rad pos: -68.5,-18.5 parent: 2 - - uid: 26173 + - uid: 28893 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-78.5 parent: 2 - - uid: 26177 + - uid: 28894 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,7.5 parent: 2 - - uid: 26178 + - uid: 28895 components: - type: Transform rot: -1.5707963267948966 rad pos: -66.5,-52.5 parent: 2 - - uid: 26180 + - uid: 28896 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-29.5 parent: 2 - - uid: 26181 + - uid: 28897 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-26.5 parent: 2 - - uid: 26182 + - uid: 28898 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-23.5 parent: 2 - - uid: 26183 + - uid: 28899 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-8.5 parent: 2 - - uid: 26184 + - uid: 28900 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-40.5 parent: 2 - - uid: 26185 + - uid: 28901 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,6.5 parent: 2 - - uid: 26187 + - uid: 28902 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-56.5 parent: 2 - - uid: 26188 + - uid: 28903 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-77.5 parent: 2 - - uid: 26189 + - uid: 28904 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-91.5 parent: 2 - - uid: 26190 + - uid: 28905 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-57.5 parent: 2 - - uid: 26191 + - uid: 28906 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-53.5 parent: 2 - - uid: 26192 + - uid: 28907 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-87.5 parent: 2 - - uid: 26193 + - uid: 28908 components: - type: Transform pos: -44.5,-92.5 parent: 2 - - uid: 26194 + - uid: 28909 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-15.5 parent: 2 - - uid: 26195 + - uid: 28910 components: - type: Transform pos: -68.5,-34.5 parent: 2 - - uid: 26196 + - uid: 28911 components: - type: Transform pos: 54.5,-96.5 parent: 2 - - uid: 26197 + - uid: 28912 components: - type: Transform pos: 76.5,-19.5 parent: 2 - - uid: 26198 + - uid: 28913 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-46.5 parent: 2 - - uid: 26199 + - uid: 28914 components: - type: Transform pos: 19.5,5.5 parent: 2 - - uid: 26200 + - uid: 28915 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-95.5 parent: 2 - - uid: 26201 + - uid: 28916 components: - type: Transform pos: 47.5,-29.5 parent: 2 - - uid: 26202 + - uid: 28917 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-31.5 parent: 2 - - uid: 26203 + - uid: 28918 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-53.5 parent: 2 - - uid: 26204 + - uid: 28919 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-54.5 parent: 2 - - uid: 26205 + - uid: 28920 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,17.5 parent: 2 - - uid: 26209 + - uid: 28921 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,12.5 parent: 2 - - uid: 26210 + - uid: 28922 components: - type: Transform pos: 72.5,-19.5 parent: 2 - - uid: 26211 + - uid: 28923 components: - type: Transform pos: 71.5,-19.5 parent: 2 - - uid: 26212 + - uid: 28924 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-95.5 parent: 2 - - uid: 26214 + - uid: 28925 components: - type: Transform pos: 76.5,-18.5 parent: 2 - - uid: 26215 + - uid: 28926 components: - type: Transform pos: -6.5,-72.5 parent: 2 - - uid: 26216 + - uid: 28927 components: - type: Transform pos: -38.5,14.5 parent: 2 - - uid: 26218 + - uid: 28928 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-121.5 parent: 2 - - uid: 26219 + - uid: 28929 components: - type: Transform pos: 96.5,-45.5 parent: 2 - - uid: 26220 + - uid: 28930 components: - type: Transform pos: 106.5,-53.5 parent: 2 - - uid: 26221 + - uid: 28931 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-71.5 parent: 2 - - uid: 26222 + - uid: 28932 components: - type: Transform rot: -1.5707963267948966 rad pos: 111.5,-46.5 parent: 2 - - uid: 26223 + - uid: 28933 components: - type: Transform pos: 96.5,-49.5 parent: 2 - - uid: 26224 + - uid: 28934 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-121.5 parent: 2 - - uid: 26225 + - uid: 28935 components: - type: Transform pos: -39.5,-123.5 parent: 2 - - uid: 26226 + - uid: 28936 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-121.5 parent: 2 - - uid: 26227 + - uid: 28937 components: - type: Transform pos: 92.5,-49.5 parent: 2 - - uid: 26229 + - uid: 28938 components: - type: Transform pos: 104.5,-44.5 parent: 2 - - uid: 26230 + - uid: 28939 components: - type: Transform pos: 96.5,-50.5 parent: 2 - - uid: 26231 + - uid: 28940 components: - type: Transform pos: 92.5,-50.5 parent: 2 - - uid: 26232 + - uid: 28941 components: - type: Transform rot: 1.5707963267948966 rad pos: 104.5,-57.5 parent: 2 - - uid: 26234 + - uid: 28942 components: - type: Transform pos: 48.5,-66.5 parent: 2 - - uid: 26235 + - uid: 28943 components: - type: Transform pos: 44.5,-62.5 parent: 2 - - uid: 26236 + - uid: 28944 components: - type: Transform pos: 46.5,-62.5 parent: 2 - - uid: 26249 + - uid: 28945 components: - type: Transform pos: -57.5,-31.5 parent: 2 - - uid: 26251 + - uid: 28946 components: - type: Transform pos: -39.5,-78.5 parent: 2 - - uid: 26252 + - uid: 28947 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-120.5 parent: 2 - - uid: 26253 + - uid: 28948 components: - type: Transform pos: 59.5,-62.5 parent: 2 - - uid: 26256 + - uid: 28949 components: - type: Transform pos: 8.5,-19.5 parent: 2 - - uid: 26258 + - uid: 28950 components: - type: Transform pos: -64.5,4.5 parent: 2 - - uid: 26259 + - uid: 28951 components: - type: Transform pos: -62.5,2.5 parent: 2 - - uid: 26260 + - uid: 28952 components: - type: Transform pos: -59.5,1.5 parent: 2 - - uid: 26261 + - uid: 28953 components: - type: Transform pos: -60.5,1.5 parent: 2 - - uid: 26262 + - uid: 28954 components: - type: Transform pos: -66.5,6.5 parent: 2 - - uid: 26263 + - uid: 28955 components: - type: Transform pos: -57.5,9.5 parent: 2 - - uid: 26264 + - uid: 28956 components: - type: Transform pos: 38.5,-83.5 parent: 2 - - uid: 26265 + - uid: 28957 components: - type: Transform pos: 12.5,-19.5 parent: 2 - - uid: 26269 + - uid: 28958 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-2.5 parent: 2 - - uid: 26270 + - uid: 28959 components: - type: Transform pos: -52.5,-83.5 parent: 2 - - uid: 26271 + - uid: 28960 components: - type: Transform pos: 70.5,-45.5 parent: 2 - - uid: 26272 + - uid: 28961 components: - type: Transform pos: 31.5,23.5 parent: 2 - - uid: 26274 + - uid: 28962 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-109.5 parent: 2 - - uid: 26275 + - uid: 28963 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,-110.5 parent: 2 - - uid: 26276 + - uid: 28964 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-107.5 parent: 2 - - uid: 26277 + - uid: 28965 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-111.5 parent: 2 - - uid: 26278 + - uid: 28966 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-111.5 parent: 2 - - uid: 26279 + - uid: 28967 components: - type: Transform pos: -48.5,-108.5 parent: 2 - - uid: 26280 + - uid: 28968 components: - type: Transform pos: -50.5,-114.5 parent: 2 - - uid: 26281 + - uid: 28969 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-113.5 parent: 2 - - uid: 26282 + - uid: 28970 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,0.5 parent: 2 - - uid: 26283 + - uid: 28971 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,4.5 parent: 2 - - uid: 26284 + - uid: 28972 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-3.5 parent: 2 - - uid: 26285 + - uid: 28973 components: - type: Transform pos: -73.5,-13.5 parent: 2 - - uid: 26286 + - uid: 28974 components: - type: Transform pos: -79.5,2.5 parent: 2 - - uid: 26287 + - uid: 28975 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-11.5 parent: 2 - - uid: 26288 + - uid: 28976 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-19.5 parent: 2 - - uid: 26289 + - uid: 28977 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-11.5 parent: 2 - - uid: 26290 + - uid: 28978 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,-84.5 parent: 2 - - uid: 26292 + - uid: 28979 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,30.5 parent: 2 - - uid: 26293 + - uid: 28980 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-94.5 parent: 2 - - uid: 26294 + - uid: 28981 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,28.5 parent: 2 - - uid: 26298 + - uid: 28982 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,-21.5 parent: 2 - - uid: 26300 + - uid: 28983 components: - type: Transform pos: 37.5,18.5 parent: 2 - - uid: 26301 + - uid: 28984 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,20.5 parent: 2 - - uid: 26302 + - uid: 28985 components: - type: Transform pos: -57.5,-74.5 parent: 2 - - uid: 26303 + - uid: 28986 components: - type: Transform pos: -56.5,-101.5 parent: 2 - - uid: 26305 + - uid: 28987 components: - type: Transform pos: -41.5,-97.5 parent: 2 - - uid: 26307 + - uid: 28988 components: - type: Transform pos: 103.5,-50.5 parent: 2 - - uid: 26308 + - uid: 28989 components: - type: Transform pos: -26.5,-112.5 parent: 2 - - uid: 26309 + - uid: 28990 components: - type: Transform pos: 67.5,-48.5 parent: 2 - - uid: 26310 + - uid: 28991 components: - type: Transform pos: 71.5,-49.5 parent: 2 - - uid: 26411 + - uid: 28992 components: - type: Transform pos: 8.5,-15.5 parent: 2 - - uid: 26509 + - uid: 28993 components: - type: Transform pos: 8.5,-23.5 parent: 2 - - uid: 26546 + - uid: 28994 components: - type: Transform pos: 12.5,-23.5 parent: 2 - - uid: 28555 + - uid: 28995 components: - type: Transform pos: 20.5,-13.5 parent: 2 - - uid: 29505 + - uid: 28996 components: - type: Transform pos: -7.5,-4.5 parent: 2 - - uid: 30502 + - uid: 28997 components: - type: Transform pos: 18.5,-19.5 parent: 2 - - uid: 30713 + - uid: 28998 components: - type: Transform pos: -11.5,-35.5 parent: 2 - - uid: 30765 + - uid: 28999 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-40.5 parent: 2 - - uid: 31618 + - uid: 29000 components: - type: Transform pos: 43.5,17.5 parent: 2 - - uid: 31826 + - uid: 29001 components: - type: Transform pos: 48.5,16.5 parent: 2 - - uid: 32955 + - uid: 29002 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,19.5 parent: 2 - - uid: 32988 + - uid: 29003 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,20.5 parent: 2 - - uid: 33550 + - uid: 29004 components: - type: Transform pos: 20.5,-43.5 parent: 2 - - uid: 34216 + - uid: 29005 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-36.5 parent: 2 - - uid: 34358 + - uid: 29006 components: - type: Transform pos: -5.5,-46.5 parent: 2 - - uid: 34393 - components: - - type: Transform - pos: -17.5,3.5 - parent: 2 - - uid: 34401 - components: - - type: Transform - pos: -17.5,7.5 - parent: 2 - - uid: 37177 + - uid: 29007 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-82.5 parent: 2 - - uid: 37705 + - uid: 29008 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-49.5 parent: 2 - - uid: 37866 + - uid: 29009 components: - type: Transform pos: 68.5,2.5 parent: 2 - - uid: 38417 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 37887 - - uid: 38418 - components: - - type: Transform - pos: -1.5,-8.5 - parent: 37887 - - uid: 39081 + - uid: 29010 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,20.5 parent: 2 - - uid: 39727 + - uid: 29011 components: - type: Transform pos: -10.5,-27.5 parent: 2 - - uid: 40553 + - uid: 29012 components: - type: Transform pos: 60.5,-13.5 parent: 2 + - uid: 41364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 40828 + - uid: 41365 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 40828 - proto: RadiationCollectorFullTank entities: - - uid: 26312 + - uid: 29013 components: - type: Transform pos: 16.5,7.5 parent: 2 - proto: RadiationCollectorNoTank entities: - - uid: 26313 + - uid: 29014 components: - type: Transform pos: 54.5,-63.5 parent: 2 - - uid: 26314 + - uid: 29015 components: - type: Transform pos: 53.5,-66.5 parent: 2 - - uid: 26315 + - uid: 29016 components: - type: Transform pos: 54.5,-62.5 parent: 2 - - uid: 26316 + - uid: 29017 components: - type: Transform pos: 14.5,6.5 parent: 2 - proto: RadioHandheld entities: - - uid: 26317 + - uid: 29018 components: - type: Transform pos: -55.382984,-13.366422 parent: 2 - - uid: 26318 + - uid: 29019 components: - type: Transform pos: -55.670765,-13.221542 parent: 2 - proto: RadioHandheldSecurity entities: - - uid: 21995 + - uid: 40765 components: - type: Transform pos: 2.7629585,2.780283 - parent: 21045 + parent: 40666 - proto: RadiumChemistryVial entities: - - uid: 41120 + - uid: 29020 components: - type: Transform pos: -19.411299,-34.266617 parent: 2 - proto: Railing entities: - - uid: 2073 + - uid: 29021 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,18.5 parent: 2 - - uid: 2755 + - uid: 29022 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,17.5 parent: 2 - - uid: 5351 + - uid: 29023 components: - type: Transform rot: 1.5707963267948966 rad pos: 89.5,-81.5 parent: 2 - - uid: 7605 + - uid: 29024 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-43.5 parent: 2 - - uid: 8072 + - uid: 29025 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-44.5 parent: 2 - - uid: 8078 + - uid: 29026 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-44.5 parent: 2 - - uid: 11486 + - uid: 29027 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,18.5 parent: 2 - - uid: 11487 + - uid: 29028 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,17.5 parent: 2 - - uid: 12324 + - uid: 29029 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-41.5 parent: 2 - - uid: 13477 + - uid: 29030 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-42.5 parent: 2 - - uid: 13486 + - uid: 29031 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-43.5 parent: 2 - - uid: 13488 + - uid: 29032 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-44.5 parent: 2 - - uid: 13489 + - uid: 29033 components: - type: Transform rot: 1.5707963267948966 rad pos: 25.5,-42.5 parent: 2 - - uid: 14946 + - uid: 29034 components: - type: Transform pos: 8.5,-8.5 parent: 2 - - uid: 14947 + - uid: 29035 components: - type: Transform pos: 7.5,-8.5 parent: 2 - - uid: 15223 + - uid: 29036 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-29.5 parent: 2 - - uid: 15257 + - uid: 29037 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-27.5 parent: 2 - - uid: 15258 + - uid: 29038 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-27.5 parent: 2 - - uid: 15261 + - uid: 29039 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-27.5 parent: 2 - - uid: 15612 + - uid: 29040 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-27.5 parent: 2 - - uid: 15613 + - uid: 29041 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-29.5 parent: 2 - - uid: 15622 + - uid: 29042 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-27.5 parent: 2 - - uid: 15640 + - uid: 29043 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-27.5 parent: 2 - - uid: 15641 + - uid: 29044 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-27.5 parent: 2 - - uid: 15642 + - uid: 29045 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-27.5 parent: 2 - - uid: 15643 + - uid: 29046 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-27.5 parent: 2 - - uid: 15843 + - uid: 29047 components: - type: Transform pos: -16.5,-29.5 parent: 2 - - uid: 15844 + - uid: 29048 components: - type: Transform pos: -15.5,-29.5 parent: 2 - - uid: 16734 + - uid: 29049 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-27.5 parent: 2 - - uid: 16735 + - uid: 29050 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-27.5 parent: 2 - - uid: 16736 + - uid: 29051 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-27.5 parent: 2 - - uid: 16737 + - uid: 29052 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-29.5 parent: 2 - - uid: 16738 + - uid: 29053 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-29.5 parent: 2 - - uid: 16754 + - uid: 29054 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-6.5 parent: 2 - - uid: 16831 + - uid: 29055 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-7.5 parent: 2 - - uid: 16832 + - uid: 29056 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-6.5 parent: 2 - - uid: 26319 + - uid: 29057 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-8.5 parent: 2 - - uid: 26320 + - uid: 29058 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,-8.5 parent: 2 - - uid: 26321 + - uid: 29059 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-8.5 parent: 2 - - uid: 26322 + - uid: 29060 components: - type: Transform pos: 58.5,-90.5 parent: 2 - - uid: 26323 + - uid: 29061 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-8.5 parent: 2 - - uid: 26324 + - uid: 29062 components: - type: Transform rot: -1.5707963267948966 rad pos: 88.5,-77.5 parent: 2 - - uid: 26325 + - uid: 29063 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-92.5 parent: 2 - - uid: 26326 + - uid: 29064 components: - type: Transform rot: -1.5707963267948966 rad pos: 88.5,-76.5 parent: 2 - - uid: 26327 + - uid: 29065 components: - type: Transform pos: 86.5,-75.5 parent: 2 - - uid: 26328 + - uid: 29066 components: - type: Transform pos: 87.5,-75.5 parent: 2 - - uid: 26329 + - uid: 29067 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,1.5 parent: 2 - - uid: 26330 + - uid: 29068 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-103.5 parent: 2 - - uid: 26331 + - uid: 29069 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-103.5 parent: 2 - - uid: 26332 + - uid: 29070 components: - type: Transform pos: -6.5,-102.5 parent: 2 - - uid: 26333 + - uid: 29071 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-102.5 parent: 2 - - uid: 26334 + - uid: 29072 components: - type: Transform pos: -7.5,-102.5 parent: 2 - - uid: 26335 + - uid: 29073 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-0.5 parent: 2 - - uid: 26336 + - uid: 29074 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-38.5 parent: 2 - - uid: 26337 + - uid: 29075 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-38.5 parent: 2 - - uid: 26338 + - uid: 29076 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-38.5 parent: 2 - - uid: 26339 + - uid: 29077 components: - type: Transform pos: -80.5,-38.5 parent: 2 - - uid: 26340 + - uid: 29078 components: - type: Transform pos: -79.5,-38.5 parent: 2 - - uid: 26346 + - uid: 29079 components: - type: Transform pos: -9.5,-102.5 parent: 2 - - uid: 26347 + - uid: 29080 components: - type: Transform pos: -8.5,-102.5 parent: 2 - - uid: 26348 + - uid: 29081 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-101.5 parent: 2 - - uid: 26349 + - uid: 29082 components: - type: Transform pos: -79.5,-38.5 parent: 2 - - uid: 26350 + - uid: 29083 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-84.5 parent: 2 - - uid: 26351 + - uid: 29084 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-85.5 parent: 2 - - uid: 26352 + - uid: 29085 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-87.5 parent: 2 - - uid: 26353 + - uid: 29086 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-86.5 parent: 2 - - uid: 26354 + - uid: 29087 components: - type: Transform pos: -20.5,-88.5 parent: 2 - - uid: 26355 + - uid: 29088 components: - type: Transform pos: -21.5,-88.5 parent: 2 - - uid: 26356 + - uid: 29089 components: - type: Transform pos: -22.5,-88.5 parent: 2 - - uid: 26357 + - uid: 29090 components: - type: Transform pos: -23.5,-88.5 parent: 2 - - uid: 26358 + - uid: 29091 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-83.5 parent: 2 - - uid: 26359 + - uid: 29092 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-83.5 parent: 2 - - uid: 26360 + - uid: 29093 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-87.5 parent: 2 - - uid: 26361 + - uid: 29094 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-86.5 parent: 2 - - uid: 26362 + - uid: 29095 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-85.5 parent: 2 - - uid: 26363 + - uid: 29096 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-84.5 parent: 2 - - uid: 26364 + - uid: 29097 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-54.5 parent: 2 - - uid: 26365 + - uid: 29098 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-54.5 parent: 2 - - uid: 26366 + - uid: 29099 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-54.5 parent: 2 - - uid: 26367 + - uid: 29100 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-51.5 parent: 2 - - uid: 26368 + - uid: 29101 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-53.5 parent: 2 - - uid: 26369 + - uid: 29102 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-54.5 parent: 2 - - uid: 26371 + - uid: 29103 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,20.5 parent: 2 - - uid: 26372 + - uid: 29104 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,20.5 parent: 2 - - uid: 26373 + - uid: 29105 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,20.5 parent: 2 - - uid: 26378 + - uid: 29106 components: - type: Transform pos: -78.5,-38.5 parent: 2 - - uid: 26388 + - uid: 29107 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,20.5 parent: 2 - - uid: 26392 + - uid: 29108 components: - type: Transform rot: -1.5707963267948966 rad pos: 88.5,-78.5 parent: 2 - - uid: 26393 + - uid: 29109 components: - type: Transform pos: 85.5,-75.5 parent: 2 - - uid: 26394 + - uid: 29110 components: - type: Transform pos: 84.5,-75.5 parent: 2 - - uid: 26395 + - uid: 29111 components: - type: Transform pos: 83.5,-75.5 parent: 2 - - uid: 26396 + - uid: 29112 components: - type: Transform pos: 37.5,-0.5 parent: 2 - - uid: 26397 + - uid: 29113 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-8.5 parent: 2 - - uid: 26399 + - uid: 29114 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,15.5 parent: 2 - - uid: 26400 + - uid: 29115 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,14.5 parent: 2 - - uid: 26402 + - uid: 29116 components: - type: Transform rot: -1.5707963267948966 rad pos: 88.5,-79.5 parent: 2 - - uid: 26403 + - uid: 29117 components: - type: Transform pos: 89.5,-80.5 parent: 2 - - uid: 26404 + - uid: 29118 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,-77.5 parent: 2 - - uid: 26405 + - uid: 29119 components: - type: Transform pos: 90.5,-80.5 parent: 2 - - uid: 26406 + - uid: 29120 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,-73.5 parent: 2 - - uid: 26407 + - uid: 29121 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,-76.5 parent: 2 - - uid: 26408 + - uid: 29122 components: - type: Transform rot: 1.5707963267948966 rad pos: 90.5,-75.5 parent: 2 - - uid: 26409 + - uid: 29123 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-73.5 parent: 2 - - uid: 26410 + - uid: 29124 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,-73.5 parent: 2 - - uid: 26418 + - uid: 29125 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-73.5 parent: 2 - - uid: 26419 + - uid: 29126 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,-73.5 parent: 2 - - uid: 26420 + - uid: 29127 components: - type: Transform pos: 60.5,-90.5 parent: 2 - - uid: 26421 + - uid: 29128 components: - type: Transform pos: 59.5,-90.5 parent: 2 - - uid: 26422 + - uid: 29129 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-91.5 parent: 2 - - uid: 26423 + - uid: 29130 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-73.5 parent: 2 - - uid: 26424 + - uid: 29131 components: - type: Transform rot: 3.141592653589793 rad pos: 83.5,-73.5 parent: 2 - - uid: 26456 + - uid: 29132 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,-74.5 parent: 2 - - uid: 26457 + - uid: 29133 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-105.5 parent: 2 - - uid: 26458 + - uid: 29134 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-105.5 parent: 2 - - uid: 26459 + - uid: 29135 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-103.5 parent: 2 - - uid: 26460 + - uid: 29136 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-102.5 parent: 2 - - uid: 26461 + - uid: 29137 components: - type: Transform pos: -33.5,-100.5 parent: 2 - - uid: 26462 + - uid: 29138 components: - type: Transform pos: -32.5,-100.5 parent: 2 - - uid: 26463 + - uid: 29139 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-102.5 parent: 2 - - uid: 26464 + - uid: 29140 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-103.5 parent: 2 - - uid: 26465 + - uid: 29141 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,-75.5 parent: 2 - - uid: 26466 + - uid: 29142 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,-76.5 parent: 2 - - uid: 26467 + - uid: 29143 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,-76.5 parent: 2 - - uid: 26468 + - uid: 29144 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,-75.5 parent: 2 - - uid: 26469 + - uid: 29145 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,-74.5 parent: 2 - - uid: 26470 + - uid: 29146 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-47.5 parent: 2 - - uid: 26471 + - uid: 29147 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-47.5 parent: 2 - - uid: 26472 + - uid: 29148 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-48.5 parent: 2 - - uid: 26473 + - uid: 29149 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-48.5 parent: 2 - - uid: 27133 + - uid: 29150 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-27.5 parent: 2 - - uid: 29012 + - uid: 29151 components: - type: Transform pos: 3.5,-25.5 parent: 2 - - uid: 29018 + - uid: 29152 components: - type: Transform pos: -0.5,-29.5 parent: 2 - - uid: 29019 + - uid: 29153 components: - type: Transform pos: -1.5,-29.5 parent: 2 - - uid: 29020 + - uid: 29154 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 29021 + - uid: 29155 components: - type: Transform pos: -3.5,-29.5 parent: 2 - - uid: 29022 + - uid: 29156 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-30.5 parent: 2 - - uid: 29024 + - uid: 29157 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-30.5 parent: 2 - - uid: 29027 + - uid: 29158 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-28.5 parent: 2 - - uid: 29028 + - uid: 29159 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-24.5 parent: 2 - - uid: 29029 + - uid: 29160 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-24.5 parent: 2 - - uid: 29030 + - uid: 29161 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-24.5 parent: 2 - - uid: 29031 + - uid: 29162 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-24.5 parent: 2 - - uid: 29033 + - uid: 29163 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-24.5 parent: 2 - - uid: 29037 + - uid: 29164 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-23.5 parent: 2 - - uid: 29038 + - uid: 29165 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-22.5 parent: 2 - - uid: 29039 + - uid: 29166 components: - type: Transform pos: -3.5,-25.5 parent: 2 - - uid: 29040 + - uid: 29167 components: - type: Transform pos: -2.5,-25.5 parent: 2 - - uid: 29041 + - uid: 29168 components: - type: Transform pos: -1.5,-25.5 parent: 2 - - uid: 29043 + - uid: 29169 components: - type: Transform pos: 0.5,-25.5 parent: 2 - - uid: 29119 + - uid: 29170 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-26.5 parent: 2 - - uid: 29173 + - uid: 29171 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-28.5 parent: 2 - - uid: 29178 + - uid: 29172 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-26.5 parent: 2 - - uid: 29196 + - uid: 29173 components: - type: Transform pos: 2.5,-25.5 parent: 2 - - uid: 29201 + - uid: 29174 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-21.5 parent: 2 - - uid: 29217 + - uid: 29175 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-23.5 parent: 2 - - uid: 29218 + - uid: 29176 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-25.5 parent: 2 - - uid: 29227 + - uid: 29177 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-27.5 parent: 2 - - uid: 31104 + - uid: 29178 components: - type: Transform pos: 79.5,-2.5 parent: 2 - - uid: 31105 + - uid: 29179 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-3.5 parent: 2 - - uid: 31106 + - uid: 29180 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-5.5 parent: 2 - - uid: 31138 + - uid: 29181 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-6.5 parent: 2 - - uid: 31139 + - uid: 29182 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,-4.5 parent: 2 - - uid: 31140 + - uid: 29183 components: - type: Transform pos: 80.5,-2.5 parent: 2 - - uid: 31144 + - uid: 29184 components: - type: Transform pos: -21.5,-45.5 parent: 2 - - uid: 31159 + - uid: 29185 components: - type: Transform pos: -20.5,-45.5 parent: 2 - - uid: 31161 + - uid: 29186 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-46.5 parent: 2 - - uid: 31196 + - uid: 29187 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,-3.5 parent: 2 - - uid: 31203 + - uid: 29188 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,-5.5 parent: 2 - - uid: 31209 + - uid: 29189 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,-6.5 parent: 2 - - uid: 31210 + - uid: 29190 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,-4.5 parent: 2 - - uid: 31214 + - uid: 29191 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-7.5 parent: 2 - - uid: 31216 + - uid: 29192 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-7.5 parent: 2 - - uid: 31220 + - uid: 29193 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-49.5 parent: 2 - - uid: 31221 + - uid: 29194 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-7.5 parent: 2 - - uid: 31223 + - uid: 29195 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-7.5 parent: 2 - - uid: 31250 + - uid: 29196 components: - type: Transform pos: 81.5,-2.5 parent: 2 - - uid: 31410 + - uid: 29197 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-48.5 parent: 2 - - uid: 31426 + - uid: 29198 components: - type: Transform pos: 82.5,-2.5 parent: 2 - - uid: 33214 + - uid: 29199 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-36.5 parent: 2 - - uid: 33507 + - uid: 29200 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-36.5 parent: 2 - - uid: 33513 + - uid: 29201 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-36.5 parent: 2 - - uid: 33519 + - uid: 29202 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-36.5 parent: 2 - - uid: 33525 + - uid: 29203 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-36.5 parent: 2 - - uid: 33531 + - uid: 29204 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-36.5 parent: 2 - - uid: 33541 + - uid: 29205 components: - type: Transform pos: 8.5,-43.5 parent: 2 - - uid: 33567 + - uid: 29206 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-36.5 parent: 2 - - uid: 33570 + - uid: 29207 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-36.5 parent: 2 - - uid: 33571 + - uid: 29208 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-36.5 parent: 2 - - uid: 33572 + - uid: 29209 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-36.5 parent: 2 - - uid: 33574 + - uid: 29210 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-36.5 parent: 2 - - uid: 33575 + - uid: 29211 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-36.5 parent: 2 - - uid: 33576 + - uid: 29212 components: - type: Transform pos: 7.5,-36.5 parent: 2 - - uid: 33577 + - uid: 29213 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-37.5 parent: 2 - - uid: 33578 + - uid: 29214 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-38.5 parent: 2 - - uid: 33579 + - uid: 29215 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-39.5 parent: 2 - - uid: 33580 + - uid: 29216 components: - type: Transform pos: 7.5,-40.5 parent: 2 - - uid: 33581 + - uid: 29217 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-42.5 parent: 2 - - uid: 33582 + - uid: 29218 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-43.5 parent: 2 - - uid: 33583 + - uid: 29219 components: - type: Transform pos: 9.5,-43.5 parent: 2 - - uid: 33584 + - uid: 29220 components: - type: Transform pos: 10.5,-43.5 parent: 2 - - uid: 33585 + - uid: 29221 components: - type: Transform pos: 11.5,-43.5 parent: 2 - - uid: 33586 + - uid: 29222 components: - type: Transform pos: 12.5,-43.5 parent: 2 - - uid: 33587 + - uid: 29223 components: - type: Transform pos: 13.5,-43.5 parent: 2 - - uid: 33588 + - uid: 29224 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-35.5 parent: 2 - - uid: 33589 + - uid: 29225 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-35.5 parent: 2 - - uid: 33590 + - uid: 29226 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-35.5 parent: 2 - - uid: 33591 + - uid: 29227 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-35.5 parent: 2 - - uid: 33592 + - uid: 29228 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-35.5 parent: 2 - - uid: 33593 + - uid: 29229 components: - type: Transform pos: 14.5,-35.5 parent: 2 - - uid: 33594 + - uid: 29230 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-35.5 parent: 2 - - uid: 33595 + - uid: 29231 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-35.5 parent: 2 - - uid: 33596 + - uid: 29232 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-35.5 parent: 2 - - uid: 33597 + - uid: 29233 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-35.5 parent: 2 - - uid: 33598 + - uid: 29234 components: - type: Transform pos: 12.5,-35.5 parent: 2 - - uid: 33599 + - uid: 29235 components: - type: Transform pos: 10.5,-35.5 parent: 2 - - uid: 33600 + - uid: 29236 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-35.5 parent: 2 - - uid: 33601 + - uid: 29237 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-35.5 parent: 2 - - uid: 33602 + - uid: 29238 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-35.5 parent: 2 - - uid: 33603 + - uid: 29239 components: - type: Transform pos: 16.5,-35.5 parent: 2 - - uid: 33604 + - uid: 29240 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-35.5 parent: 2 - - uid: 33605 + - uid: 29241 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-35.5 parent: 2 - - uid: 33606 + - uid: 29242 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-35.5 parent: 2 - - uid: 33607 + - uid: 29243 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-35.5 parent: 2 - - uid: 33608 + - uid: 29244 components: - type: Transform pos: 18.5,-35.5 parent: 2 - - uid: 33635 + - uid: 29245 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-44.5 parent: 2 - - uid: 33636 + - uid: 29246 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-44.5 parent: 2 - - uid: 33637 + - uid: 29247 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-44.5 parent: 2 - - uid: 33638 + - uid: 29248 components: - type: Transform pos: 12.5,-44.5 parent: 2 - - uid: 33639 + - uid: 29249 components: - type: Transform pos: 10.5,-44.5 parent: 2 - - uid: 33640 + - uid: 29250 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-44.5 parent: 2 - - uid: 33641 + - uid: 29251 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-44.5 parent: 2 - - uid: 33642 + - uid: 29252 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-44.5 parent: 2 - - uid: 33643 + - uid: 29253 components: - type: Transform pos: 8.5,-44.5 parent: 2 - - uid: 33644 + - uid: 29254 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-44.5 parent: 2 - - uid: 33645 + - uid: 29255 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-44.5 parent: 2 - - uid: 33646 + - uid: 29256 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-44.5 parent: 2 - - uid: 33771 + - uid: 29257 components: - type: Transform pos: 7.5,-43.5 parent: 2 - - uid: 33772 + - uid: 29258 components: - type: Transform pos: 14.5,-43.5 parent: 2 - - uid: 33773 + - uid: 29259 components: - type: Transform pos: 15.5,-43.5 parent: 2 - - uid: 33774 + - uid: 29260 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-44.5 parent: 2 - - uid: 34264 + - uid: 29261 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-44.5 parent: 2 - - uid: 34266 + - uid: 29262 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-44.5 parent: 2 - - uid: 34267 + - uid: 29263 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-44.5 parent: 2 - - uid: 34268 + - uid: 29264 components: - type: Transform pos: 14.5,-44.5 parent: 2 - - uid: 34402 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,3.5 - parent: 2 - - uid: 37548 + - uid: 29265 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-82.5 parent: 2 - - uid: 38419 + - uid: 41366 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-0.5 - parent: 37887 - - uid: 38420 + parent: 40828 + - uid: 41367 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-1.5 - parent: 37887 - - uid: 38421 + parent: 40828 + - uid: 41368 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-2.5 - parent: 37887 - - uid: 38422 + parent: 40828 + - uid: 41369 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-0.5 - parent: 37887 - - uid: 38423 + parent: 40828 + - uid: 41370 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-1.5 - parent: 37887 - - uid: 38424 + parent: 40828 + - uid: 41371 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-2.5 - parent: 37887 + parent: 40828 - proto: RailingCorner entities: - - uid: 14474 + - uid: 29266 components: - type: Transform pos: 9.5,-8.5 parent: 2 - - uid: 14950 + - uid: 29267 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-6.5 parent: 2 - - uid: 26474 + - uid: 29268 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-95.5 parent: 2 - - uid: 26477 + - uid: 29269 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,1.5 parent: 2 - - uid: 26478 + - uid: 29270 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-93.5 parent: 2 - - uid: 26479 + - uid: 29271 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-0.5 parent: 2 - - uid: 26480 + - uid: 29272 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-0.5 parent: 2 - - uid: 26481 + - uid: 29273 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-88.5 parent: 2 - - uid: 26482 + - uid: 29274 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-83.5 parent: 2 - - uid: 26483 + - uid: 29275 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-83.5 parent: 2 - - uid: 26484 + - uid: 29276 components: - type: Transform pos: -19.5,-88.5 parent: 2 - - uid: 26489 + - uid: 29277 components: - type: Transform pos: 61.5,-90.5 parent: 2 - - uid: 26496 + - uid: 29278 components: - type: Transform rot: -1.5707963267948966 rad pos: 88.5,-80.5 parent: 2 - - uid: 27130 + - uid: 29279 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 33573 + - uid: 29280 components: - type: Transform rot: 1.5707963267948966 rad @@ -202246,387 +206572,387 @@ entities: parent: 2 - proto: RailingCornerSmall entities: - - uid: 2683 + - uid: 29281 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,-2.5 parent: 2 - - uid: 13441 + - uid: 29282 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-41.5 parent: 2 - - uid: 13478 + - uid: 29283 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-41.5 parent: 2 - - uid: 13487 + - uid: 29284 components: - type: Transform pos: 29.5,-44.5 parent: 2 - - uid: 13490 + - uid: 29285 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-44.5 parent: 2 - - uid: 16833 + - uid: 29286 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-6.5 parent: 2 - - uid: 16834 + - uid: 29287 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-8.5 parent: 2 - - uid: 26266 + - uid: 29288 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-12.5 parent: 2 - - uid: 26291 + - uid: 29289 components: - type: Transform pos: 11.5,-14.5 parent: 2 - - uid: 26389 + - uid: 29290 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-12.5 parent: 2 - - uid: 26391 + - uid: 29291 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-14.5 parent: 2 - - uid: 26498 + - uid: 29292 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-102.5 parent: 2 - - uid: 26499 + - uid: 29293 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-1.5 parent: 2 - - uid: 26500 + - uid: 29294 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-54.5 parent: 2 - - uid: 26502 + - uid: 29295 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,13.5 parent: 2 - - uid: 26507 + - uid: 29296 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,-75.5 parent: 2 - - uid: 26508 + - uid: 29297 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-78.5 parent: 2 - - uid: 26510 + - uid: 29298 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-104.5 parent: 2 - - uid: 26511 + - uid: 29299 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-101.5 parent: 2 - - uid: 26512 + - uid: 29300 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,-100.5 parent: 2 - - uid: 26513 + - uid: 29301 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-100.5 parent: 2 - - uid: 26514 + - uid: 29302 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-101.5 parent: 2 - - uid: 26515 + - uid: 29303 components: - type: Transform pos: -30.5,-104.5 parent: 2 - - uid: 26516 + - uid: 29304 components: - type: Transform pos: -31.5,-105.5 parent: 2 - - uid: 26517 + - uid: 29305 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-105.5 parent: 2 - - uid: 27820 + - uid: 29306 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-76.5 parent: 2 - - uid: 29011 + - uid: 29307 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-25.5 parent: 2 - - uid: 29023 + - uid: 29308 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-29.5 parent: 2 - - uid: 29025 + - uid: 29309 components: - type: Transform pos: -1.5,-31.5 parent: 2 - - uid: 29026 + - uid: 29310 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-29.5 parent: 2 - - uid: 29036 + - uid: 29311 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-24.5 parent: 2 - - uid: 29117 + - uid: 29312 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-25.5 parent: 2 - - uid: 31411 + - uid: 29313 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-45.5 parent: 2 - - uid: 31427 + - uid: 29314 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-2.5 parent: 2 - - uid: 31428 + - uid: 29315 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,-2.5 parent: 2 - - uid: 31429 + - uid: 29316 components: - type: Transform pos: 83.5,-7.5 parent: 2 - - uid: 31430 + - uid: 29317 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-7.5 parent: 2 - - uid: 31872 + - uid: 29318 components: - type: Transform pos: -19.5,-49.5 parent: 2 - - uid: 37549 + - uid: 29319 components: - type: Transform rot: -1.5707963267948966 rad pos: 89.5,-82.5 parent: 2 - - uid: 37623 + - uid: 29320 components: - type: Transform pos: 91.5,-82.5 parent: 2 - proto: RailingRound entities: - - uid: 26518 + - uid: 29321 components: - type: Transform rot: 1.5707963267948966 rad pos: -74.5,-93.5 parent: 2 - - uid: 26519 + - uid: 29322 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-89.5 parent: 2 - - uid: 26520 + - uid: 29323 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-101.5 parent: 2 - - uid: 26521 + - uid: 29324 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-101.5 parent: 2 - - uid: 26522 + - uid: 29325 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,-97.5 parent: 2 - - uid: 26523 + - uid: 29326 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-93.5 parent: 2 - - uid: 26524 + - uid: 29327 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-97.5 parent: 2 - - uid: 26525 + - uid: 29328 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-87.5 parent: 2 - - uid: 26526 + - uid: 29329 components: - type: Transform pos: -82.5,31.5 parent: 2 - - uid: 26527 + - uid: 29330 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-91.5 parent: 2 - - uid: 26528 + - uid: 29331 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-89.5 parent: 2 - - uid: 26529 + - uid: 29332 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-108.5 parent: 2 - - uid: 26530 + - uid: 29333 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,17.5 parent: 2 - - uid: 26531 + - uid: 29334 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-108.5 parent: 2 - - uid: 26532 + - uid: 29335 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,13.5 parent: 2 - - uid: 26533 + - uid: 29336 components: - type: Transform rot: 1.5707963267948966 rad pos: -87.5,13.5 parent: 2 - - uid: 26534 + - uid: 29337 components: - type: Transform rot: 1.5707963267948966 rad pos: -88.5,17.5 parent: 2 - - uid: 26535 + - uid: 29338 components: - type: Transform pos: -85.5,25.5 parent: 2 - - uid: 26536 + - uid: 29339 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-105.5 parent: 2 - - uid: 26537 + - uid: 29340 components: - type: Transform pos: -79.5,25.5 parent: 2 - - uid: 26538 + - uid: 29341 components: - type: Transform pos: 98.5,-78.5 parent: 2 - - uid: 26539 + - uid: 29342 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-98.5 parent: 2 - - uid: 26540 + - uid: 29343 components: - type: Transform rot: -1.5707963267948966 rad pos: 82.5,-87.5 parent: 2 - - uid: 26541 + - uid: 29344 components: - type: Transform rot: -1.5707963267948966 rad pos: 82.5,-95.5 parent: 2 - - uid: 26542 + - uid: 29345 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-95.5 parent: 2 - - uid: 26543 + - uid: 29346 components: - type: Transform rot: -1.5707963267948966 rad @@ -202634,7 +206960,7 @@ entities: parent: 2 - proto: RandomAnomalyInjectorSpawner entities: - - uid: 33861 + - uid: 29347 components: - type: Transform rot: 1.5707963267948966 rad @@ -202642,13 +206968,13 @@ entities: parent: 2 - proto: RandomArcade entities: - - uid: 26544 + - uid: 29348 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-49.5 parent: 2 - - uid: 26545 + - uid: 29349 components: - type: Transform rot: 1.5707963267948966 rad @@ -202656,430 +206982,430 @@ entities: parent: 2 - proto: RandomArtifactSpawner entities: - - uid: 26547 + - uid: 29350 components: - type: Transform pos: -73.5,-77.5 parent: 2 - - uid: 32648 + - uid: 29351 components: - type: Transform pos: -15.5,-62.5 parent: 2 - proto: RandomDrinkBottle entities: - - uid: 26559 + - uid: 29352 components: - type: Transform pos: 51.5,-52.5 parent: 2 - - uid: 26560 + - uid: 29353 components: - type: Transform pos: 87.5,-38.5 parent: 2 - - uid: 26561 + - uid: 29354 components: - type: Transform pos: 6.5,-103.5 parent: 2 - - uid: 26563 + - uid: 29355 components: - type: Transform pos: 28.5,3.5 parent: 2 - proto: RandomDrinkGlass entities: - - uid: 26564 + - uid: 29356 components: - type: Transform pos: 33.5,-3.5 parent: 2 - - uid: 26565 + - uid: 29357 components: - type: Transform pos: 95.5,-20.5 parent: 2 - - uid: 26566 + - uid: 29358 components: - type: Transform pos: 29.5,-74.5 parent: 2 - - uid: 26567 + - uid: 29359 components: - type: Transform pos: -3.5,-73.5 parent: 2 - - uid: 26568 + - uid: 29360 components: - type: Transform pos: 5.5,-102.5 parent: 2 - - uid: 26570 + - uid: 29361 components: - type: Transform pos: -21.5,-69.5 parent: 2 - - uid: 26571 - components: - - type: Transform - pos: -10.5,13.5 - parent: 2 - - uid: 26572 + - uid: 29362 components: - type: Transform pos: 28.5,1.5 parent: 2 - - uid: 26573 + - uid: 29363 components: - type: Transform pos: -36.5,-25.5 parent: 2 - - uid: 26575 + - uid: 29364 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-100.5 parent: 2 - - uid: 26576 + - uid: 29365 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-103.5 parent: 2 - - uid: 26577 + - uid: 29366 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-99.5 parent: 2 - - uid: 26578 + - uid: 29367 components: - type: Transform pos: -43.5,-83.5 parent: 2 - - uid: 40038 + - uid: 29368 components: - type: Transform pos: 2.5,0.5 parent: 2 + - uid: 29369 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 - proto: RandomDrinkSoda entities: - - uid: 26579 + - uid: 29370 components: - type: Transform pos: -43.5,-33.5 parent: 2 - proto: RandomFoodMeal entities: - - uid: 26580 + - uid: 29371 components: - type: Transform pos: 36.5,-3.5 parent: 2 - - uid: 40035 + - uid: 29372 components: - type: Transform pos: 3.5,0.5 parent: 2 - proto: RandomFoodSingle entities: - - uid: 26581 + - uid: 29373 components: - type: Transform pos: 30.5,8.5 parent: 2 - - uid: 26582 + - uid: 29374 components: - type: Transform pos: 32.5,4.5 parent: 2 - - uid: 26584 + - uid: 29375 components: - type: Transform pos: 87.5,-24.5 parent: 2 - - uid: 26585 + - uid: 29376 components: - type: Transform pos: 95.5,-42.5 parent: 2 - - uid: 26587 + - uid: 29377 components: - type: Transform pos: -9.5,23.5 parent: 2 - - uid: 26588 + - uid: 29378 components: - type: Transform pos: -56.5,12.5 parent: 2 - - uid: 26589 + - uid: 29379 components: - type: Transform pos: -81.5,2.5 parent: 2 - - uid: 26590 + - uid: 29380 components: - type: Transform pos: 43.5,-75.5 parent: 2 - - uid: 26591 + - uid: 29381 components: - type: Transform pos: -43.5,-84.5 parent: 2 - - uid: 40036 + - uid: 29382 components: - type: Transform pos: -2.5,0.5 parent: 2 - proto: RandomInstruments entities: - - uid: 21665 + - uid: 29383 components: - type: Transform pos: 34.5,-26.5 parent: 2 - - uid: 26597 + - uid: 29384 components: - type: Transform pos: -47.5,-116.5 parent: 2 - - uid: 26598 + - uid: 29385 components: - type: Transform pos: -48.5,-116.5 parent: 2 - - uid: 26599 + - uid: 29386 components: - type: Transform pos: -51.5,-116.5 parent: 2 - proto: RandomPainting entities: - - uid: 26600 + - uid: 29387 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,5.5 parent: 2 - - uid: 26601 + - uid: 29388 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-74.5 parent: 2 - - uid: 26602 + - uid: 29389 components: - type: Transform pos: 54.5,-74.5 parent: 2 - - uid: 26603 + - uid: 29390 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-68.5 parent: 2 - - uid: 26604 + - uid: 29391 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,2.5 parent: 2 - - uid: 26605 + - uid: 29392 components: - type: Transform pos: -28.5,9.5 parent: 2 - - uid: 26606 + - uid: 29393 components: - type: Transform pos: -27.5,9.5 parent: 2 - - uid: 26607 + - uid: 29394 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-3.5 parent: 2 - - uid: 26608 + - uid: 29395 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-95.5 parent: 2 - - uid: 26609 + - uid: 29396 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-74.5 parent: 2 - - uid: 26610 + - uid: 29397 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-75.5 parent: 2 - - uid: 26611 + - uid: 29398 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-74.5 parent: 2 - - uid: 26612 + - uid: 29399 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-95.5 parent: 2 - - uid: 26613 + - uid: 29400 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-67.5 parent: 2 - - uid: 26614 + - uid: 29401 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-11.5 parent: 2 - - uid: 26615 + - uid: 29402 components: - type: Transform pos: -37.5,-9.5 parent: 2 - - uid: 26616 + - uid: 29403 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,6.5 parent: 2 - - uid: 26617 + - uid: 29404 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,7.5 parent: 2 - - uid: 26618 + - uid: 29405 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,14.5 parent: 2 - - uid: 26619 + - uid: 29406 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,15.5 parent: 2 - - uid: 26620 + - uid: 29407 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,16.5 parent: 2 - - uid: 26621 + - uid: 29408 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,13.5 parent: 2 - - uid: 26622 + - uid: 29409 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-66.5 parent: 2 - - uid: 26623 + - uid: 29410 components: - type: Transform pos: 5.5,12.5 parent: 2 - - uid: 26624 + - uid: 29411 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,18.5 parent: 2 - - uid: 26625 + - uid: 29412 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,18.5 parent: 2 - - uid: 26626 + - uid: 29413 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,6.5 parent: 2 - - uid: 26627 + - uid: 29414 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,8.5 parent: 2 - - uid: 26628 + - uid: 29415 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,5.5 parent: 2 - - uid: 26629 + - uid: 29416 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,12.5 parent: 2 - - uid: 26630 + - uid: 29417 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,12.5 parent: 2 - - uid: 26631 + - uid: 29418 components: - type: Transform pos: -25.5,2.5 parent: 2 - - uid: 26633 + - uid: 29419 components: - type: Transform pos: 10.5,12.5 parent: 2 - - uid: 26634 + - uid: 29420 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,3.5 parent: 2 - - uid: 26635 + - uid: 29421 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-10.5 parent: 2 - - uid: 26636 + - uid: 29422 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-49.5 parent: 2 - - uid: 26637 + - uid: 29423 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-48.5 parent: 2 - - uid: 26638 + - uid: 29424 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-48.5 parent: 2 - - uid: 26639 + - uid: 29425 components: - type: Transform rot: 1.5707963267948966 rad @@ -203087,1764 +207413,1743 @@ entities: parent: 2 - proto: RandomPosterAny entities: - - uid: 26645 + - uid: 29426 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,31.5 parent: 2 - - uid: 26646 + - uid: 29427 components: - type: Transform rot: 3.141592653589793 rad pos: 105.5,-54.5 parent: 2 - - uid: 26647 + - uid: 29428 components: - type: Transform rot: 3.141592653589793 rad pos: 83.5,-43.5 parent: 2 - - uid: 26648 + - uid: 29429 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-47.5 parent: 2 - - uid: 26649 + - uid: 29430 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-50.5 parent: 2 - - uid: 26650 + - uid: 29431 components: - type: Transform pos: -68.5,-41.5 parent: 2 - - uid: 26651 + - uid: 29432 components: - type: Transform pos: 34.5,-18.5 parent: 2 - - uid: 26653 + - uid: 29433 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.5,-36.5 parent: 2 - - uid: 26654 + - uid: 29434 components: - type: Transform pos: -75.5,-34.5 parent: 2 - - uid: 26655 + - uid: 29435 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-0.5 parent: 2 - - uid: 26656 + - uid: 29436 components: - type: Transform pos: -67.5,-26.5 parent: 2 - - uid: 26657 + - uid: 29437 components: - type: Transform pos: -69.5,-31.5 parent: 2 - - uid: 26658 + - uid: 29438 components: - type: Transform pos: -61.5,-34.5 parent: 2 - - uid: 26659 + - uid: 29439 components: - type: Transform pos: -63.5,-22.5 parent: 2 - - uid: 26660 + - uid: 29440 components: - type: Transform pos: -66.5,-30.5 parent: 2 - - uid: 26661 + - uid: 29441 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-11.5 parent: 2 - - uid: 26662 + - uid: 29442 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-5.5 parent: 2 - - uid: 26663 + - uid: 29443 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,4.5 parent: 2 - - uid: 26664 + - uid: 29444 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,10.5 parent: 2 - - uid: 26665 + - uid: 29445 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-11.5 parent: 2 - - uid: 26666 + - uid: 29446 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,10.5 parent: 2 - - uid: 26667 + - uid: 29447 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,15.5 parent: 2 - - uid: 26668 + - uid: 29448 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-1.5 parent: 2 - - uid: 26669 + - uid: 29449 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-11.5 parent: 2 - - uid: 26670 + - uid: 29450 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-25.5 parent: 2 - - uid: 26672 + - uid: 29451 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-66.5 parent: 2 - - uid: 26673 + - uid: 29452 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-74.5 parent: 2 - - uid: 26674 + - uid: 29453 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-75.5 parent: 2 - - uid: 26675 + - uid: 29454 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-73.5 parent: 2 - - uid: 26676 + - uid: 29455 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-62.5 parent: 2 - - uid: 26677 + - uid: 29456 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-76.5 parent: 2 - - uid: 26678 + - uid: 29457 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-91.5 parent: 2 - - uid: 26679 + - uid: 29458 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-93.5 parent: 2 - - uid: 26680 + - uid: 29459 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-100.5 parent: 2 - - uid: 26681 + - uid: 29460 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-95.5 parent: 2 - - uid: 26682 + - uid: 29461 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-92.5 parent: 2 - - uid: 26683 + - uid: 29462 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-80.5 parent: 2 - - uid: 26684 + - uid: 29463 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-74.5 parent: 2 - - uid: 26685 + - uid: 29464 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-61.5 parent: 2 - - uid: 26686 + - uid: 29465 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-45.5 parent: 2 - - uid: 26687 + - uid: 29466 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-48.5 parent: 2 - - uid: 26688 + - uid: 29467 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-51.5 parent: 2 - - uid: 26689 + - uid: 29468 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-34.5 parent: 2 - - uid: 26690 + - uid: 29469 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-40.5 parent: 2 - - uid: 26691 + - uid: 29470 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-34.5 parent: 2 - - uid: 26692 + - uid: 29471 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-39.5 parent: 2 - - uid: 26693 + - uid: 29472 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-30.5 parent: 2 - - uid: 26695 + - uid: 29473 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,18.5 parent: 2 - - uid: 26696 + - uid: 29474 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,5.5 parent: 2 - - uid: 26697 + - uid: 29475 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,1.5 parent: 2 - - uid: 26698 + - uid: 29476 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-11.5 parent: 2 - - uid: 26699 + - uid: 29477 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-50.5 parent: 2 - - uid: 26700 + - uid: 29478 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-47.5 parent: 2 - - uid: 26701 + - uid: 29479 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,1.5 parent: 2 - - uid: 26702 + - uid: 29480 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-4.5 parent: 2 - - uid: 26703 + - uid: 29481 components: - type: Transform pos: 42.5,16.5 parent: 2 - - uid: 26704 + - uid: 29482 components: - type: Transform pos: 32.5,20.5 parent: 2 - - uid: 26705 + - uid: 29483 components: - type: Transform pos: 38.5,26.5 parent: 2 - - uid: 26706 + - uid: 29484 components: - type: Transform pos: 43.5,22.5 parent: 2 - - uid: 26707 + - uid: 29485 components: - type: Transform rot: 3.141592653589793 rad pos: 100.5,-46.5 parent: 2 - - uid: 26708 + - uid: 29486 components: - type: Transform rot: 3.141592653589793 rad pos: 94.5,-47.5 parent: 2 - - uid: 26709 + - uid: 29487 components: - type: Transform rot: 3.141592653589793 rad pos: 110.5,-46.5 parent: 2 - - uid: 26710 + - uid: 29488 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-50.5 parent: 2 - - uid: 26711 + - uid: 29489 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,2.5 parent: 2 - - uid: 26715 + - uid: 29490 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-0.5 parent: 2 - - uid: 26716 + - uid: 29491 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,8.5 parent: 2 - - uid: 26717 + - uid: 29492 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,6.5 parent: 2 - - uid: 26718 + - uid: 29493 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,5.5 parent: 2 - - uid: 26719 + - uid: 29494 components: - type: Transform pos: -58.5,-3.5 parent: 2 - - uid: 26721 + - uid: 29495 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-74.5 parent: 2 - - uid: 26722 + - uid: 29496 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-44.5 parent: 2 - - uid: 26723 + - uid: 29497 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-108.5 parent: 2 - - uid: 26724 + - uid: 29498 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-110.5 parent: 2 - - uid: 26725 + - uid: 29499 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-104.5 parent: 2 - - uid: 26726 + - uid: 29500 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-104.5 parent: 2 - - uid: 26727 + - uid: 29501 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-104.5 parent: 2 - - uid: 26728 + - uid: 29502 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-95.5 parent: 2 - - uid: 26729 + - uid: 29503 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-109.5 parent: 2 - - uid: 26730 + - uid: 29504 components: - type: Transform pos: -47.5,-113.5 parent: 2 - - uid: 26731 + - uid: 29505 components: - type: Transform pos: -50.5,-117.5 parent: 2 - - uid: 26732 + - uid: 29506 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-18.5 parent: 2 - - uid: 26733 + - uid: 29507 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-10.5 parent: 2 - - uid: 26734 + - uid: 29508 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-2.5 parent: 2 - - uid: 26735 + - uid: 29509 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,-2.5 parent: 2 - - uid: 26736 + - uid: 29510 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,3.5 parent: 2 - - uid: 26737 + - uid: 29511 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,0.5 parent: 2 - - uid: 26738 + - uid: 29512 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-23.5 parent: 2 - - uid: 26739 + - uid: 29513 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-7.5 parent: 2 - - uid: 26740 + - uid: 29514 components: - type: Transform pos: -60.5,-21.5 parent: 2 - - uid: 40597 + - uid: 29515 components: - type: Transform pos: 86.5,2.5 parent: 2 - proto: RandomPosterContraband entities: - - uid: 26744 + - uid: 29516 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-22.5 parent: 2 - - uid: 26745 + - uid: 29517 components: - type: Transform pos: -48.5,7.5 parent: 2 - - uid: 26747 + - uid: 29518 components: - type: Transform pos: -18.5,11.5 parent: 2 - - uid: 26748 + - uid: 29519 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-97.5 parent: 2 - - uid: 40598 + - uid: 29520 components: - type: Transform pos: 77.5,-13.5 parent: 2 - proto: RandomPosterLegit entities: - - uid: 23984 + - uid: 29521 components: - type: Transform - pos: -9.5,17.5 + pos: -11.5,18.5 parent: 2 - - uid: 25692 + - uid: 29522 components: - type: Transform pos: 68.5,-4.5 parent: 2 - - uid: 26760 + - uid: 29523 components: - type: Transform pos: -52.5,-35.5 parent: 2 - - uid: 26762 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,22.5 - parent: 2 - - uid: 26763 + - uid: 29524 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-9.5 parent: 2 - - uid: 26764 + - uid: 29525 components: - type: Transform rot: 3.141592653589793 rad pos: 108.5,-39.5 parent: 2 - - uid: 26765 + - uid: 29526 components: - type: Transform rot: 3.141592653589793 rad pos: 107.5,-19.5 parent: 2 - - uid: 26766 + - uid: 29527 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-6.5 parent: 2 - - uid: 26767 + - uid: 29528 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-0.5 parent: 2 - - uid: 26768 + - uid: 29529 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-1.5 parent: 2 - - uid: 26769 + - uid: 29530 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-30.5 parent: 2 - - uid: 26770 + - uid: 29531 components: - type: Transform pos: 92.5,-42.5 parent: 2 - - uid: 26771 + - uid: 29532 components: - type: Transform rot: 3.141592653589793 rad pos: 99.5,-38.5 parent: 2 - - uid: 26772 + - uid: 29533 components: - type: Transform rot: 3.141592653589793 rad pos: 92.5,-24.5 parent: 2 - - uid: 26773 + - uid: 29534 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-23.5 parent: 2 - - uid: 26774 + - uid: 29535 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-34.5 parent: 2 - - uid: 26775 + - uid: 29536 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-40.5 parent: 2 - - uid: 26776 + - uid: 29537 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-45.5 parent: 2 - - uid: 26777 + - uid: 29538 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-44.5 parent: 2 - - uid: 26778 + - uid: 29539 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-80.5 parent: 2 - - uid: 26779 + - uid: 29540 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-69.5 parent: 2 - - uid: 26780 + - uid: 29541 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-75.5 parent: 2 - - uid: 26781 + - uid: 29542 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-80.5 parent: 2 - - uid: 26783 + - uid: 29543 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-84.5 parent: 2 - - uid: 26784 + - uid: 29544 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-70.5 parent: 2 - - uid: 26785 + - uid: 29545 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-70.5 parent: 2 - - uid: 26786 + - uid: 29546 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-67.5 parent: 2 - - uid: 26793 + - uid: 29547 components: - type: Transform pos: -75.5,-46.5 parent: 2 - - uid: 26796 + - uid: 29548 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-104.5 parent: 2 - - uid: 26797 + - uid: 29549 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-66.5 parent: 2 - - uid: 26798 + - uid: 29550 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-87.5 parent: 2 - - uid: 26799 + - uid: 29551 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-85.5 parent: 2 - - uid: 26800 + - uid: 29552 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-74.5 parent: 2 - - uid: 26801 + - uid: 29553 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-57.5 parent: 2 - - uid: 26804 + - uid: 29554 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-9.5 parent: 2 - - uid: 26807 + - uid: 29555 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,18.5 parent: 2 - - uid: 26808 + - uid: 29556 components: - type: Transform pos: -44.5,-41.5 parent: 2 - - uid: 26809 + - uid: 29557 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,10.5 parent: 2 - - uid: 26814 + - uid: 29558 components: - type: Transform pos: -66.5,-15.5 parent: 2 - - uid: 26815 + - uid: 29559 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-104.5 parent: 2 - - uid: 26816 + - uid: 29560 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-102.5 parent: 2 - - uid: 26817 + - uid: 29561 components: - type: Transform pos: 26.5,-80.5 parent: 2 - - uid: 26818 + - uid: 29562 components: - type: Transform pos: 31.5,-81.5 parent: 2 - - uid: 26819 + - uid: 29563 components: - type: Transform pos: -34.5,-24.5 parent: 2 - - uid: 26820 + - uid: 29564 components: - type: Transform pos: -30.5,-30.5 parent: 2 - - uid: 26825 + - uid: 29565 components: - type: Transform pos: -49.5,-14.5 parent: 2 - - uid: 26826 + - uid: 29566 components: - type: Transform pos: -44.5,-10.5 parent: 2 - - uid: 26827 + - uid: 29567 components: - type: Transform pos: -39.5,-14.5 parent: 2 - - uid: 26828 + - uid: 29568 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-34.5 parent: 2 - - uid: 26829 + - uid: 29569 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,-26.5 parent: 2 - - uid: 26830 + - uid: 29570 components: - type: Transform pos: -54.5,-30.5 parent: 2 - - uid: 26831 + - uid: 29571 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-79.5 parent: 2 - - uid: 26833 + - uid: 29572 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-37.5 parent: 2 - - uid: 26834 + - uid: 29573 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-30.5 parent: 2 - - uid: 26835 + - uid: 29574 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,15.5 parent: 2 - - uid: 26836 + - uid: 29575 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,0.5 parent: 2 - - uid: 26837 + - uid: 29576 components: - type: Transform pos: -69.5,-3.5 parent: 2 - - uid: 26838 + - uid: 29577 components: - type: Transform pos: 42.5,-76.5 parent: 2 - - uid: 26839 + - uid: 29578 components: - type: Transform pos: -69.5,8.5 parent: 2 - - uid: 26840 + - uid: 29579 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-41.5 parent: 2 - - uid: 26841 + - uid: 29580 components: - type: Transform pos: 98.5,-65.5 parent: 2 - - uid: 26842 + - uid: 29581 components: - type: Transform pos: 96.5,-69.5 parent: 2 - - uid: 26843 + - uid: 29582 components: - type: Transform pos: 100.5,-69.5 parent: 2 - - uid: 26844 + - uid: 29583 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,4.5 parent: 2 - - uid: 26845 + - uid: 29584 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-47.5 parent: 2 - - uid: 26846 + - uid: 29585 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-68.5 parent: 2 - - uid: 26847 + - uid: 29586 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-68.5 parent: 2 - - uid: 26848 + - uid: 29587 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,7.5 parent: 2 - - uid: 26849 + - uid: 29588 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-38.5 parent: 2 - - uid: 26850 + - uid: 29589 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-5.5 parent: 2 - - uid: 38425 + - uid: 29590 + components: + - type: Transform + pos: 78.5,2.5 + parent: 2 + - uid: 41372 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-7.5 - parent: 37887 - - uid: 38426 + parent: 40828 + - uid: 41373 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-9.5 - parent: 37887 - - uid: 38427 + parent: 40828 + - uid: 41374 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-13.5 - parent: 37887 - - uid: 38428 + parent: 40828 + - uid: 41375 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-9.5 - parent: 37887 - - uid: 38429 + parent: 40828 + - uid: 41376 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-4.5 - parent: 37887 - - uid: 38430 + parent: 40828 + - uid: 41377 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-3.5 - parent: 37887 - - uid: 38431 + parent: 40828 + - uid: 41378 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-10.5 - parent: 37887 - - uid: 38432 + parent: 40828 + - uid: 41379 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-12.5 - parent: 37887 - - uid: 40596 - components: - - type: Transform - pos: 78.5,2.5 - parent: 2 + parent: 40828 - proto: RandomSoap entities: - - uid: 26853 + - uid: 29591 components: - type: Transform pos: 15.5,-77.5 parent: 2 - - uid: 26854 + - uid: 29592 components: - type: Transform pos: 19.5,5.5 parent: 2 - - uid: 26855 + - uid: 29593 components: - type: Transform pos: 39.5,28.5 parent: 2 - proto: RandomSpawner entities: - - uid: 26856 + - uid: 29594 components: - type: Transform pos: -82.5,-26.5 parent: 2 - - uid: 26857 + - uid: 29595 components: - type: Transform pos: 35.5,-5.5 parent: 2 - - uid: 26858 + - uid: 29596 components: - type: Transform pos: 19.5,-77.5 parent: 2 - - uid: 26859 + - uid: 29597 components: - type: Transform pos: 30.5,-0.5 parent: 2 - - uid: 26860 + - uid: 29598 components: - type: Transform pos: 4.5,-79.5 parent: 2 - - uid: 26861 + - uid: 29599 components: - type: Transform pos: -55.5,-38.5 parent: 2 - - uid: 26862 + - uid: 29600 components: - type: Transform pos: 25.5,2.5 parent: 2 - - uid: 26863 + - uid: 29601 components: - type: Transform pos: 30.5,10.5 parent: 2 - - uid: 26864 + - uid: 29602 components: - type: Transform pos: -32.5,-60.5 parent: 2 - - uid: 26865 + - uid: 29603 components: - type: Transform pos: -55.5,-52.5 parent: 2 - - uid: 26866 + - uid: 29604 components: - type: Transform pos: -57.5,-60.5 parent: 2 - - uid: 26867 + - uid: 29605 components: - type: Transform pos: -62.5,-54.5 parent: 2 - - uid: 26868 + - uid: 29606 components: - type: Transform pos: -61.5,-61.5 parent: 2 - - uid: 26869 + - uid: 29607 components: - type: Transform pos: -50.5,-78.5 parent: 2 - - uid: 26870 + - uid: 29608 components: - type: Transform pos: 28.5,-78.5 parent: 2 - - uid: 26871 + - uid: 29609 components: - type: Transform pos: 40.5,-67.5 parent: 2 - - uid: 26872 + - uid: 29610 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-78.5 parent: 2 - - uid: 26873 + - uid: 29611 components: - type: Transform pos: 75.5,-31.5 parent: 2 - - uid: 26874 + - uid: 29612 components: - type: Transform pos: 55.5,-32.5 parent: 2 - - uid: 26875 + - uid: 29613 components: - type: Transform pos: -30.5,4.5 parent: 2 - - uid: 26876 + - uid: 29614 components: - type: Transform pos: -31.5,-37.5 parent: 2 - - uid: 26877 + - uid: 29615 components: - type: Transform pos: 29.5,-20.5 parent: 2 - - uid: 26878 + - uid: 29616 components: - type: Transform pos: -29.5,-12.5 parent: 2 - - uid: 26879 + - uid: 29617 components: - type: Transform pos: 0.5,16.5 parent: 2 - - uid: 26880 + - uid: 29618 components: - type: Transform pos: -12.5,0.5 parent: 2 - - uid: 26881 + - uid: 29619 components: - type: Transform pos: -39.5,-84.5 parent: 2 - - uid: 26882 + - uid: 29620 components: - type: Transform pos: 37.5,-55.5 parent: 2 - - uid: 26883 + - uid: 29621 components: - type: Transform pos: 31.5,-72.5 parent: 2 - - uid: 26884 + - uid: 29622 components: - type: Transform pos: 15.5,-84.5 parent: 2 - - uid: 26885 + - uid: 29623 components: - type: Transform pos: 14.5,-80.5 parent: 2 - - uid: 26886 + - uid: 29624 components: - type: Transform pos: -39.5,-93.5 parent: 2 - - uid: 26887 + - uid: 29625 components: - type: Transform pos: -49.5,-94.5 parent: 2 - - uid: 26888 + - uid: 29626 components: - type: Transform pos: 22.5,-82.5 parent: 2 - - uid: 26889 + - uid: 29627 components: - type: Transform pos: -21.5,-1.5 parent: 2 - - uid: 26890 + - uid: 29628 components: - type: Transform pos: 8.5,4.5 parent: 2 - - uid: 26891 + - uid: 29629 components: - type: Transform pos: -28.5,-23.5 parent: 2 - - uid: 26892 + - uid: 29630 components: - type: Transform pos: 32.5,-38.5 parent: 2 - - uid: 26893 + - uid: 29631 components: - type: Transform pos: 44.5,-30.5 parent: 2 - - uid: 26894 + - uid: 29632 components: - type: Transform pos: 64.5,-25.5 parent: 2 - - uid: 26897 + - uid: 29633 components: - type: Transform pos: 100.5,-39.5 parent: 2 - - uid: 26898 + - uid: 29634 components: - type: Transform pos: 101.5,-23.5 parent: 2 - - uid: 26899 + - uid: 29635 components: - type: Transform pos: 94.5,-21.5 parent: 2 - - uid: 26900 + - uid: 29636 components: - type: Transform pos: 83.5,-24.5 parent: 2 - - uid: 26901 + - uid: 29637 components: - type: Transform pos: 81.5,-32.5 parent: 2 - - uid: 26902 + - uid: 29638 components: - type: Transform pos: 31.5,19.5 parent: 2 - - uid: 26903 + - uid: 29639 components: - type: Transform pos: 39.5,-29.5 parent: 2 - - uid: 26904 + - uid: 29640 components: - type: Transform pos: 34.5,-27.5 parent: 2 - - uid: 26905 + - uid: 29641 components: - type: Transform pos: 39.5,-19.5 parent: 2 - - uid: 26906 + - uid: 29642 components: - type: Transform pos: 40.5,-8.5 parent: 2 - - uid: 26907 + - uid: 29643 components: - type: Transform pos: 38.5,25.5 parent: 2 - - uid: 26908 + - uid: 29644 components: - type: Transform pos: 20.5,5.5 parent: 2 - - uid: 26909 + - uid: 29645 components: - type: Transform pos: 58.5,-29.5 parent: 2 - - uid: 26910 + - uid: 29646 components: - type: Transform pos: 49.5,-28.5 parent: 2 - - uid: 26911 + - uid: 29647 components: - type: Transform pos: 41.5,16.5 parent: 2 - - uid: 26917 + - uid: 29648 components: - type: Transform pos: -12.5,-95.5 parent: 2 - - uid: 26918 + - uid: 29649 components: - type: Transform pos: -11.5,-92.5 parent: 2 - - uid: 26919 + - uid: 29650 components: - type: Transform pos: -15.5,-89.5 parent: 2 - - uid: 26920 + - uid: 29651 components: - type: Transform pos: -27.5,-97.5 parent: 2 - - uid: 26921 + - uid: 29652 components: - type: Transform pos: -11.5,-78.5 parent: 2 - - uid: 26922 + - uid: 29653 components: - type: Transform pos: -15.5,-83.5 parent: 2 - - uid: 26923 + - uid: 29654 components: - type: Transform pos: 27.5,16.5 parent: 2 - - uid: 26924 + - uid: 29655 components: - type: Transform pos: 63.5,-22.5 parent: 2 - - uid: 26925 + - uid: 29656 components: - type: Transform pos: 20.5,-80.5 parent: 2 - - uid: 26926 + - uid: 29657 components: - type: Transform pos: 17.5,-77.5 parent: 2 - - uid: 26927 + - uid: 29658 components: - type: Transform pos: 17.5,-81.5 parent: 2 - - uid: 26928 + - uid: 29659 components: - type: Transform pos: 19.5,-78.5 parent: 2 - - uid: 26929 + - uid: 29660 components: - type: Transform pos: 12.5,-90.5 parent: 2 - - uid: 26930 + - uid: 29661 components: - type: Transform pos: 3.5,-92.5 parent: 2 - - uid: 26931 + - uid: 29662 components: - type: Transform pos: -6.5,-87.5 parent: 2 - - uid: 26932 + - uid: 29663 components: - type: Transform pos: 6.5,-87.5 parent: 2 - - uid: 26933 + - uid: 29664 components: - type: Transform pos: -7.5,-98.5 parent: 2 - - uid: 26934 + - uid: 29665 components: - type: Transform pos: 44.5,-58.5 parent: 2 - - uid: 26935 + - uid: 29666 components: - type: Transform pos: -59.5,-46.5 parent: 2 - - uid: 26937 + - uid: 29667 components: - type: Transform pos: 74.5,-23.5 parent: 2 - - uid: 26938 + - uid: 29668 components: - type: Transform pos: 77.5,-18.5 parent: 2 - - uid: 26939 + - uid: 29669 components: - type: Transform pos: 78.5,-21.5 parent: 2 - - uid: 26940 + - uid: 29670 components: - type: Transform pos: -53.5,-88.5 parent: 2 - - uid: 26941 + - uid: 29671 components: - type: Transform pos: 10.5,-101.5 parent: 2 - - uid: 26942 + - uid: 29672 components: - type: Transform pos: 12.5,-96.5 parent: 2 - - uid: 26943 + - uid: 29673 components: - type: Transform pos: -32.5,-67.5 parent: 2 - - uid: 26944 + - uid: 29674 components: - type: Transform pos: -41.5,-36.5 parent: 2 - - uid: 26945 + - uid: 29675 components: - type: Transform pos: -43.5,-46.5 parent: 2 - - uid: 26946 + - uid: 29676 components: - type: Transform pos: -56.5,-42.5 parent: 2 - - uid: 26947 + - uid: 29677 components: - type: Transform pos: -67.5,-43.5 parent: 2 - - uid: 26948 + - uid: 29678 components: - type: Transform pos: -75.5,-39.5 parent: 2 - - uid: 26949 + - uid: 29679 components: - type: Transform pos: -75.5,-50.5 parent: 2 - - uid: 26950 + - uid: 29680 components: - type: Transform pos: -43.5,-56.5 parent: 2 - - uid: 26951 + - uid: 29681 components: - type: Transform pos: -43.5,-80.5 parent: 2 - - uid: 26952 + - uid: 29682 components: - type: Transform pos: -35.5,-62.5 parent: 2 - - uid: 26953 + - uid: 29683 components: - type: Transform pos: -30.5,-54.5 parent: 2 - - uid: 26954 + - uid: 29684 components: - type: Transform pos: -26.5,-70.5 parent: 2 - - uid: 26955 + - uid: 29685 components: - type: Transform pos: -25.5,-81.5 parent: 2 - - uid: 26956 + - uid: 29686 components: - type: Transform pos: 1.5,-81.5 parent: 2 - - uid: 26957 + - uid: 29687 components: - type: Transform pos: 11.5,-73.5 parent: 2 - - uid: 26958 + - uid: 29688 components: - type: Transform pos: 26.5,-69.5 parent: 2 - - uid: 26959 + - uid: 29689 components: - type: Transform pos: 32.5,-52.5 parent: 2 - - uid: 26960 + - uid: 29690 components: - type: Transform pos: 49.5,-77.5 parent: 2 - - uid: 26961 + - uid: 29691 components: - type: Transform pos: 65.5,-61.5 parent: 2 - - uid: 26962 + - uid: 29692 components: - type: Transform pos: 66.5,-44.5 parent: 2 - - uid: 26963 + - uid: 29693 components: - type: Transform pos: 63.5,-51.5 parent: 2 - - uid: 26964 + - uid: 29694 components: - type: Transform pos: 50.5,-44.5 parent: 2 - - uid: 26965 + - uid: 29695 components: - type: Transform pos: 38.5,-54.5 parent: 2 - - uid: 26966 + - uid: 29696 components: - type: Transform pos: -30.5,-93.5 parent: 2 - - uid: 26967 + - uid: 29697 components: - type: Transform pos: -60.5,-37.5 parent: 2 - - uid: 26968 + - uid: 29698 components: - type: Transform pos: -66.5,-28.5 parent: 2 - - uid: 26969 + - uid: 29699 components: - type: Transform pos: -71.5,-32.5 parent: 2 - - uid: 26970 + - uid: 29700 components: - type: Transform pos: -61.5,-23.5 parent: 2 - - uid: 26971 + - uid: 29701 components: - type: Transform pos: -65.5,-17.5 parent: 2 - - uid: 26972 + - uid: 29702 components: - type: Transform pos: -62.5,-10.5 parent: 2 - - uid: 26973 + - uid: 29703 components: - type: Transform pos: -65.5,-8.5 parent: 2 - - uid: 26974 + - uid: 29704 components: - type: Transform pos: -54.5,2.5 parent: 2 - - uid: 26975 + - uid: 29705 components: - type: Transform pos: -49.5,9.5 parent: 2 - - uid: 26976 + - uid: 29706 components: - type: Transform pos: -40.5,7.5 parent: 2 - - uid: 26977 + - uid: 29707 components: - type: Transform pos: -43.5,13.5 parent: 2 - - uid: 26978 + - uid: 29708 components: - type: Transform pos: -44.5,17.5 parent: 2 - - uid: 26979 + - uid: 29709 components: - type: Transform pos: -52.5,17.5 parent: 2 - - uid: 26980 + - uid: 29710 components: - type: Transform pos: -35.5,12.5 parent: 2 - - uid: 26981 + - uid: 29711 components: - type: Transform pos: -26.5,17.5 parent: 2 - - uid: 26982 + - uid: 29712 components: - type: Transform pos: -17.5,14.5 parent: 2 - - uid: 26983 - components: - - type: Transform - pos: -10.5,15.5 - parent: 2 - - uid: 26984 + - uid: 29713 components: - type: Transform pos: 23.5,-3.5 parent: 2 - - uid: 26985 + - uid: 29714 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,11.5 parent: 2 - - uid: 26986 + - uid: 29715 components: - type: Transform pos: 35.5,13.5 parent: 2 - - uid: 26987 + - uid: 29716 components: - type: Transform pos: 36.5,-11.5 parent: 2 - - uid: 26988 + - uid: 29717 components: - type: Transform pos: 35.5,2.5 parent: 2 - - uid: 26989 + - uid: 29718 components: - type: Transform pos: 109.5,-46.5 parent: 2 - - uid: 26990 + - uid: 29719 components: - type: Transform pos: 85.5,-52.5 parent: 2 - - uid: 26991 + - uid: 29720 components: - type: Transform pos: 83.5,-45.5 parent: 2 - - uid: 26992 + - uid: 29721 components: - type: Transform pos: 89.5,-45.5 parent: 2 - - uid: 26993 + - uid: 29722 components: - type: Transform pos: 99.5,-48.5 parent: 2 - - uid: 26995 + - uid: 29723 components: - type: Transform pos: 90.5,-54.5 parent: 2 - - uid: 26996 + - uid: 29724 components: - type: Transform pos: 19.5,8.5 parent: 2 - - uid: 26997 + - uid: 29725 components: - type: Transform pos: -60.5,-1.5 parent: 2 - - uid: 26998 + - uid: 29726 components: - type: Transform pos: -68.5,0.5 parent: 2 - - uid: 26999 + - uid: 29727 components: - type: Transform pos: -63.5,6.5 parent: 2 - - uid: 27000 + - uid: 29728 components: - type: Transform pos: -56.5,5.5 parent: 2 - - uid: 27002 + - uid: 29729 components: - type: Transform pos: -34.5,-104.5 parent: 2 - - uid: 27003 + - uid: 29730 components: - type: Transform pos: -30.5,-100.5 parent: 2 - - uid: 27004 + - uid: 29731 components: - type: Transform pos: -31.5,-107.5 parent: 2 - - uid: 27005 + - uid: 29732 components: - type: Transform pos: -37.5,-110.5 parent: 2 - - uid: 27006 + - uid: 29733 components: - type: Transform pos: -26.5,-106.5 parent: 2 - - uid: 27007 + - uid: 29734 components: - type: Transform pos: -44.5,-106.5 parent: 2 - - uid: 27008 + - uid: 29735 components: - type: Transform pos: -54.5,-105.5 parent: 2 - - uid: 27009 + - uid: 29736 components: - type: Transform pos: -55.5,-95.5 parent: 2 - - uid: 27044 - components: - - type: Transform - pos: 34.5,23.5 - parent: 2 - - uid: 27045 - components: - - type: Transform - pos: 38.5,21.5 - parent: 2 - - uid: 34406 + - uid: 29737 components: - type: Transform rot: 3.141592653589793 rad @@ -204852,408 +209157,413 @@ entities: parent: 2 - proto: RandomSpawner100 entities: - - uid: 27046 + - uid: 29738 components: - type: Transform pos: -16.5,-92.5 parent: 2 - - uid: 27047 + - uid: 29739 components: - type: Transform pos: -15.5,-98.5 parent: 2 - - uid: 27048 + - uid: 29740 components: - type: Transform pos: -19.5,-91.5 parent: 2 - - uid: 27050 + - uid: 29741 components: - type: Transform pos: 32.5,-17.5 parent: 2 - - uid: 34413 + - uid: 29742 components: - type: Transform pos: 51.5,6.5 parent: 2 - proto: RandomVending entities: - - uid: 27057 + - uid: 29743 components: - type: Transform pos: 27.5,-2.5 parent: 2 - - uid: 27058 + - uid: 29744 components: - type: Transform pos: -63.5,-36.5 parent: 2 - - uid: 27059 + - uid: 29745 components: - type: Transform pos: -30.5,-29.5 parent: 2 - - uid: 27060 + - uid: 29746 components: - type: Transform pos: -67.5,-45.5 parent: 2 - - uid: 27061 + - uid: 29747 components: - type: Transform pos: -13.5,3.5 parent: 2 - - uid: 27062 + - uid: 29748 components: - type: Transform pos: 17.5,-74.5 parent: 2 - - uid: 27063 + - uid: 29749 components: - type: Transform pos: -54.5,-45.5 parent: 2 - - uid: 27064 + - uid: 29750 components: - type: Transform pos: 10.5,-103.5 parent: 2 - - uid: 27065 + - uid: 29751 components: - type: Transform pos: -27.5,-53.5 parent: 2 - - uid: 27066 + - uid: 29752 components: - type: Transform pos: -30.5,-57.5 parent: 2 - - uid: 27067 + - uid: 29753 components: - type: Transform pos: -51.5,-29.5 parent: 2 - - uid: 27068 + - uid: 29754 components: - type: Transform pos: -84.5,3.5 parent: 2 - - uid: 27069 + - uid: 29755 components: - type: Transform pos: -87.5,-3.5 parent: 2 - - uid: 27070 + - uid: 29756 components: - type: Transform pos: -62.5,-50.5 parent: 2 - - uid: 40755 + - uid: 29757 components: - type: Transform pos: 70.5,-9.5 parent: 2 - proto: RandomVendingDrinks entities: - - uid: 11491 + - uid: 29758 components: - type: Transform pos: 56.5,-8.5 parent: 2 - - uid: 27071 + - uid: 29759 components: - type: Transform pos: 29.5,-1.5 parent: 2 - - uid: 27072 + - uid: 29760 components: - type: Transform pos: 46.5,-72.5 parent: 2 - - uid: 27073 + - uid: 29761 components: - type: Transform pos: -4.5,26.5 parent: 2 - - uid: 27074 + - uid: 29762 components: - type: Transform pos: 9.5,23.5 parent: 2 - - uid: 27075 + - uid: 29763 components: - type: Transform pos: 53.5,-30.5 parent: 2 - - uid: 27076 + - uid: 29764 components: - type: Transform pos: -19.5,-81.5 parent: 2 - - uid: 27077 + - uid: 29765 components: - type: Transform pos: -70.5,-35.5 parent: 2 - - uid: 27078 + - uid: 29766 components: - type: Transform pos: 95.5,-38.5 parent: 2 - - uid: 27079 + - uid: 29767 components: - type: Transform pos: 95.5,-24.5 parent: 2 - - uid: 27080 + - uid: 29768 components: - type: Transform pos: 64.5,-65.5 parent: 2 - - uid: 27081 + - uid: 29769 components: - type: Transform pos: -76.5,-44.5 parent: 2 - - uid: 27082 + - uid: 29770 components: - type: Transform pos: 5.5,-98.5 parent: 2 - - uid: 27083 + - uid: 29771 components: - type: Transform pos: -19.5,-2.5 parent: 2 - - uid: 27084 + - uid: 29772 components: - type: Transform pos: 82.5,-20.5 parent: 2 - - uid: 27085 + - uid: 29773 components: - type: Transform pos: 82.5,-42.5 parent: 2 - - uid: 27086 + - uid: 29774 components: - type: Transform pos: -42.5,-83.5 parent: 2 - - uid: 27904 + - uid: 29775 components: - type: Transform pos: 50.5,7.5 parent: 2 - - uid: 38433 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 37887 - - uid: 39483 + - uid: 29776 components: - type: Transform pos: -0.5,-2.5 parent: 2 + - uid: 41380 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 40828 - proto: RandomVendingSnacks entities: - - uid: 11081 + - uid: 29777 components: - type: Transform pos: 56.5,-9.5 parent: 2 - - uid: 27087 + - uid: 29778 components: - type: Transform pos: 44.5,-71.5 parent: 2 - - uid: 27088 + - uid: 29779 components: - type: Transform pos: 31.5,-6.5 parent: 2 - - uid: 27089 + - uid: 29780 components: - type: Transform pos: 5.5,26.5 parent: 2 - - uid: 27090 + - uid: 29781 components: - type: Transform pos: 3.5,10.5 parent: 2 - - uid: 27091 + - uid: 29782 components: - type: Transform pos: -38.5,-1.5 parent: 2 - - uid: 27092 + - uid: 29783 components: - type: Transform pos: 61.5,-36.5 parent: 2 - - uid: 27093 + - uid: 29784 components: - type: Transform pos: 79.5,-27.5 parent: 2 - - uid: 27094 + - uid: 29785 components: - type: Transform pos: 10.5,-78.5 parent: 2 - - uid: 27095 + - uid: 29786 components: - type: Transform pos: -9.5,-83.5 parent: 2 - - uid: 27096 + - uid: 29787 components: - type: Transform pos: -20.5,-81.5 parent: 2 - - uid: 27097 + - uid: 29788 components: - type: Transform pos: -35.5,-95.5 parent: 2 - - uid: 27098 + - uid: 29789 components: - type: Transform pos: -76.5,-43.5 parent: 2 - - uid: 27099 + - uid: 29790 components: - type: Transform pos: -45.5,-75.5 parent: 2 - - uid: 27101 + - uid: 29791 components: - type: Transform pos: 94.5,-38.5 parent: 2 - - uid: 27102 + - uid: 29792 components: - type: Transform pos: 94.5,-24.5 parent: 2 - - uid: 27103 + - uid: 29793 components: - type: Transform pos: 64.5,-64.5 parent: 2 - - uid: 27104 + - uid: 29794 components: - type: Transform pos: 31.5,-26.5 parent: 2 - - uid: 27105 + - uid: 29795 components: - type: Transform pos: 9.5,-103.5 parent: 2 - - uid: 27106 + - uid: 29796 components: - type: Transform pos: -43.5,11.5 parent: 2 - - uid: 27107 + - uid: 29797 components: - type: Transform pos: -26.5,-10.5 parent: 2 - - uid: 27108 + - uid: 29798 components: - type: Transform pos: -40.5,-57.5 parent: 2 - - uid: 27109 + - uid: 29799 components: - type: Transform pos: -23.5,-69.5 parent: 2 - - uid: 27110 + - uid: 29800 components: - type: Transform pos: 33.5,-55.5 parent: 2 - - uid: 27111 + - uid: 29801 components: - type: Transform pos: 83.5,-20.5 parent: 2 - - uid: 27112 + - uid: 29802 components: - type: Transform pos: 81.5,-42.5 parent: 2 - - uid: 27113 + - uid: 29803 components: - type: Transform pos: -39.5,14.5 parent: 2 - - uid: 27115 + - uid: 29804 components: - type: Transform pos: 5.5,-78.5 parent: 2 - - uid: 27116 + - uid: 29805 components: - type: Transform pos: -42.5,-84.5 parent: 2 - - uid: 27830 + - uid: 29806 components: - type: Transform pos: 53.5,2.5 parent: 2 - - uid: 38434 + - uid: 29807 components: - type: Transform - pos: 2.5,-4.5 - parent: 37887 - - uid: 39482 + pos: -0.5,-1.5 + parent: 2 + - uid: 29808 components: - type: Transform - pos: -0.5,-1.5 + pos: -10.5,18.5 parent: 2 + - uid: 41381 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 40828 - proto: RCD entities: - - uid: 27139 + - uid: 29809 components: - type: Transform pos: 57.5,-73.5 parent: 2 - proto: RCDAmmo entities: - - uid: 27140 + - uid: 29810 components: - type: Transform pos: 57.31465,-73.53084 parent: 2 - - uid: 27141 + - uid: 29811 components: - type: Transform pos: 57.62715,-73.53084 parent: 2 - - uid: 38755 + - uid: 41701 components: - type: Transform - parent: 38744 + parent: 41690 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38756 + - uid: 41702 components: - type: Transform - parent: 38744 + parent: 41690 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ReagentContainerCornmeal entities: - - uid: 27142 + - uid: 29812 components: - type: MetaData desc: Лучший корм для лучших крабиков! @@ -205263,7 +209573,7 @@ entities: parent: 2 - proto: ReagentContainerCornmealSmall entities: - - uid: 27143 + - uid: 29813 components: - type: MetaData desc: Лучший корм для лучших котиков! @@ -205273,7 +209583,7 @@ entities: parent: 2 - proto: ReagentContainerFlour entities: - - uid: 27144 + - uid: 29814 components: - type: MetaData desc: Лучший корм для лучших собак! @@ -205283,7 +209593,7 @@ entities: parent: 2 - proto: ReagentContainerFlourSmall entities: - - uid: 27145 + - uid: 29815 components: - type: MetaData desc: Лучший корм для лучших грызунов! @@ -205293,607 +209603,615 @@ entities: parent: 2 - proto: ReagentContainerMayo entities: - - uid: 10944 + - uid: 18815 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - proto: ReagentGrinderIndustrial entities: - - uid: 16835 + - uid: 29816 components: - type: Transform pos: -17.5,-25.5 parent: 2 - proto: ReagentSlimeSpawner entities: - - uid: 34245 + - uid: 29817 components: - type: Transform pos: -5.5,-35.5 parent: 2 - - uid: 40941 + - uid: 29818 components: - type: Transform pos: -4.5,-39.5 parent: 2 - proto: Recycler entities: - - uid: 28298 + - uid: 29819 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-81.5 parent: 2 - - uid: 36732 + - uid: 29820 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-98.5 parent: 2 +- proto: RegenerativeMesh + entities: + - uid: 27224 + components: + - type: Transform + parent: 27220 + - type: Physics + canCollide: False - proto: ReinforcedGirder entities: - - uid: 27147 + - uid: 29821 components: - type: Transform pos: 3.5,-96.5 parent: 2 - - uid: 27155 + - uid: 29822 components: - type: Transform pos: 2.5,-96.5 parent: 2 - - uid: 29104 + - uid: 29823 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-41.5 parent: 2 - - uid: 29161 + - uid: 29824 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-24.5 parent: 2 - - uid: 29162 + - uid: 29825 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-37.5 parent: 2 - - uid: 29163 + - uid: 29826 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-13.5 parent: 2 - - uid: 29169 + - uid: 29827 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-14.5 parent: 2 - - uid: 29507 + - uid: 29828 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-22.5 parent: 2 - - uid: 29787 + - uid: 29829 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-37.5 parent: 2 - - uid: 29815 + - uid: 29830 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-26.5 parent: 2 - - uid: 32957 + - uid: 29831 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-46.5 parent: 2 - - uid: 34232 + - uid: 29832 components: - type: Transform pos: 1.5,-42.5 parent: 2 - - uid: 34301 + - uid: 29833 components: - type: Transform pos: 2.5,-42.5 parent: 2 - proto: ReinforcedPlasmaWindow entities: - - uid: 23007 + - uid: 29834 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-50.5 parent: 2 - - uid: 25759 + - uid: 29835 components: - type: Transform pos: 90.5,-6.5 parent: 2 - - uid: 25768 + - uid: 29836 components: - type: Transform pos: 90.5,-4.5 parent: 2 - - uid: 25776 + - uid: 29837 components: - type: Transform pos: 90.5,-3.5 parent: 2 - - uid: 26759 + - uid: 29838 components: - type: Transform pos: 90.5,-5.5 parent: 2 - - uid: 27156 + - uid: 29839 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-106.5 parent: 2 - - uid: 27157 + - uid: 29840 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-60.5 parent: 2 - - uid: 27158 + - uid: 29841 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-59.5 parent: 2 - - uid: 27159 + - uid: 29842 components: - type: Transform pos: 54.5,-95.5 parent: 2 - - uid: 27160 + - uid: 29843 components: - type: Transform pos: 52.5,-95.5 parent: 2 - - uid: 27161 + - uid: 29844 components: - type: Transform pos: 53.5,-95.5 parent: 2 - - uid: 27162 + - uid: 29845 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-58.5 parent: 2 - - uid: 27163 + - uid: 29846 components: - type: Transform pos: 39.5,-43.5 parent: 2 - - uid: 27164 + - uid: 29847 components: - type: Transform pos: 38.5,-43.5 parent: 2 - - uid: 27165 + - uid: 29848 components: - type: Transform pos: 37.5,-43.5 parent: 2 - - uid: 27166 + - uid: 29849 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-106.5 parent: 2 - - uid: 27167 + - uid: 29850 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-106.5 parent: 2 - - uid: 27168 + - uid: 29851 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-106.5 parent: 2 - - uid: 27169 + - uid: 29852 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-106.5 parent: 2 - - uid: 27170 + - uid: 29853 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-106.5 parent: 2 - - uid: 27171 + - uid: 29854 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-87.5 parent: 2 - - uid: 27172 + - uid: 29855 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-86.5 parent: 2 - - uid: 27173 + - uid: 29856 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-98.5 parent: 2 - - uid: 27174 + - uid: 29857 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-102.5 parent: 2 - - uid: 27175 + - uid: 29858 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-106.5 parent: 2 - - uid: 27176 + - uid: 29859 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-86.5 parent: 2 - - uid: 27177 + - uid: 29860 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-85.5 parent: 2 - - uid: 27178 + - uid: 29861 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-106.5 parent: 2 - - uid: 27179 + - uid: 29862 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-101.5 parent: 2 - - uid: 27180 + - uid: 29863 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-90.5 parent: 2 - - uid: 27181 + - uid: 29864 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-93.5 parent: 2 - - uid: 27182 + - uid: 29865 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-96.5 parent: 2 - - uid: 27183 + - uid: 29866 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-89.5 parent: 2 - - uid: 27184 + - uid: 29867 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-99.5 parent: 2 - - uid: 27185 + - uid: 29868 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-87.5 parent: 2 - - uid: 27186 + - uid: 29869 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-92.5 parent: 2 - - uid: 27187 + - uid: 29870 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-95.5 parent: 2 - - uid: 27188 + - uid: 29871 components: - type: Transform pos: 38.5,-81.5 parent: 2 - - uid: 27189 + - uid: 29872 components: - type: Transform pos: 40.5,-81.5 parent: 2 - - uid: 27190 + - uid: 29873 components: - type: Transform pos: 44.5,-78.5 parent: 2 - - uid: 27191 + - uid: 29874 components: - type: Transform pos: 44.5,-79.5 parent: 2 - - uid: 27192 + - uid: 29875 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-73.5 parent: 2 - - uid: 27193 + - uid: 29876 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-74.5 parent: 2 - - uid: 27194 + - uid: 29877 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-75.5 parent: 2 - - uid: 27197 + - uid: 29878 components: - type: Transform pos: -71.5,-78.5 parent: 2 - - uid: 27198 + - uid: 29879 components: - type: Transform pos: -71.5,-76.5 parent: 2 - - uid: 27199 + - uid: 29880 components: - type: Transform pos: -63.5,-78.5 parent: 2 - - uid: 27200 + - uid: 29881 components: - type: Transform pos: -63.5,-77.5 parent: 2 - - uid: 27201 + - uid: 29882 components: - type: Transform pos: -69.5,-76.5 parent: 2 - - uid: 27202 + - uid: 29883 components: - type: Transform pos: -69.5,-78.5 parent: 2 - - uid: 27203 + - uid: 29884 components: - type: Transform pos: -41.5,-65.5 parent: 2 - - uid: 27204 + - uid: 29885 components: - type: Transform pos: -40.5,-60.5 parent: 2 - - uid: 27205 + - uid: 29886 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-52.5 parent: 2 - - uid: 27206 + - uid: 29887 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-53.5 parent: 2 - - uid: 27207 + - uid: 29888 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-54.5 parent: 2 - - uid: 27208 + - uid: 29889 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-56.5 parent: 2 - - uid: 27209 + - uid: 29890 components: - type: Transform pos: -41.5,-63.5 parent: 2 - - uid: 27210 + - uid: 29891 components: - type: Transform pos: -41.5,-46.5 parent: 2 - - uid: 27211 + - uid: 29892 components: - type: Transform pos: -38.5,-60.5 parent: 2 - - uid: 27212 + - uid: 29893 components: - type: Transform pos: -39.5,-60.5 parent: 2 - - uid: 27213 + - uid: 29894 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-56.5 parent: 2 - - uid: 27214 + - uid: 29895 components: - type: Transform pos: -36.5,-35.5 parent: 2 - - uid: 27216 + - uid: 29896 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-58.5 parent: 2 - - uid: 27220 + - uid: 29897 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-56.5 parent: 2 - - uid: 27221 + - uid: 29898 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-58.5 parent: 2 - - uid: 27222 + - uid: 29899 components: - type: Transform pos: -66.5,-64.5 parent: 2 - - uid: 27223 + - uid: 29900 components: - type: Transform pos: -35.5,-45.5 parent: 2 - - uid: 27224 + - uid: 29901 components: - type: Transform pos: -39.5,-45.5 parent: 2 - - uid: 27225 + - uid: 29902 components: - type: Transform pos: -33.5,-33.5 parent: 2 - - uid: 27226 + - uid: 29903 components: - type: Transform pos: -45.5,-65.5 parent: 2 - - uid: 27227 + - uid: 29904 components: - type: Transform pos: -47.5,-65.5 parent: 2 - - uid: 27228 + - uid: 29905 components: - type: Transform pos: -52.5,-63.5 parent: 2 - - uid: 27229 + - uid: 29906 components: - type: Transform pos: -53.5,-63.5 parent: 2 - - uid: 27230 + - uid: 29907 components: - type: Transform pos: -38.5,-50.5 parent: 2 - - uid: 27231 + - uid: 29908 components: - type: Transform pos: -39.5,-50.5 parent: 2 - - uid: 27232 + - uid: 29909 components: - type: Transform pos: -40.5,-50.5 parent: 2 - - uid: 27233 + - uid: 29910 components: - type: Transform pos: -38.5,-45.5 parent: 2 - - uid: 27234 + - uid: 29911 components: - type: Transform pos: -60.5,-76.5 parent: 2 - - uid: 27235 + - uid: 29912 components: - type: Transform pos: -62.5,-76.5 parent: 2 - - uid: 27236 + - uid: 29913 components: - type: Transform pos: -69.5,-74.5 parent: 2 - - uid: 27237 + - uid: 29914 components: - type: Transform pos: -69.5,-72.5 parent: 2 - - uid: 27238 + - uid: 29915 components: - type: Transform pos: -63.5,-67.5 parent: 2 - - uid: 27239 + - uid: 29916 components: - type: Transform pos: -33.5,-34.5 parent: 2 - - uid: 27240 + - uid: 29917 components: - type: Transform pos: -64.5,-67.5 parent: 2 - - uid: 27241 + - uid: 29918 components: - type: Transform pos: -65.5,-67.5 parent: 2 - - uid: 27242 + - uid: 29919 components: - type: Transform pos: -39.5,-28.5 parent: 2 - - uid: 27243 + - uid: 29920 components: - type: Transform pos: -37.5,-35.5 parent: 2 - - uid: 27244 + - uid: 29921 components: - type: Transform pos: -37.5,-45.5 parent: 2 - - uid: 29166 + - uid: 29922 components: - type: Transform pos: 90.5,-7.5 parent: 2 - - uid: 32665 + - uid: 29923 components: - type: Transform rot: 3.141592653589793 rad @@ -205901,390 +210219,390 @@ entities: parent: 2 - proto: ReinforcedUraniumWindow entities: - - uid: 23985 + - uid: 29924 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-80.5 parent: 2 - - uid: 27246 + - uid: 29925 components: - type: Transform pos: 78.5,-51.5 parent: 2 - - uid: 27247 + - uid: 29926 components: - type: Transform pos: 74.5,-51.5 parent: 2 - - uid: 27248 + - uid: 29927 components: - type: Transform pos: 75.5,-51.5 parent: 2 - - uid: 27249 + - uid: 29928 components: - type: Transform pos: 76.5,-51.5 parent: 2 - - uid: 27250 + - uid: 29929 components: - type: Transform pos: 77.5,-51.5 parent: 2 - - uid: 27251 + - uid: 29930 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-87.5 parent: 2 - - uid: 27252 + - uid: 29931 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-88.5 parent: 2 - - uid: 27253 + - uid: 29932 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-87.5 parent: 2 - - uid: 27254 + - uid: 29933 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-88.5 parent: 2 - - uid: 27255 + - uid: 29934 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-63.5 parent: 2 - - uid: 27256 + - uid: 29935 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-63.5 parent: 2 - - uid: 27257 + - uid: 29936 components: - type: Transform pos: 61.5,-63.5 parent: 2 - - uid: 27262 + - uid: 29937 components: - type: Transform pos: 66.5,-67.5 parent: 2 - - uid: 27263 + - uid: 29938 components: - type: Transform pos: 66.5,-69.5 parent: 2 - - uid: 27264 + - uid: 29939 components: - type: Transform pos: 35.5,-103.5 parent: 2 - - uid: 27265 + - uid: 29940 components: - type: Transform pos: 56.5,-88.5 parent: 2 - - uid: 27266 + - uid: 29941 components: - type: Transform pos: 56.5,-89.5 parent: 2 - - uid: 27267 + - uid: 29942 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-70.5 parent: 2 - - uid: 27268 + - uid: 29943 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-70.5 parent: 2 - - uid: 27269 + - uid: 29944 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-70.5 parent: 2 - - uid: 27270 + - uid: 29945 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-76.5 parent: 2 - - uid: 27271 + - uid: 29946 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-1.5 parent: 2 - - uid: 27272 + - uid: 29947 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-2.5 parent: 2 - - uid: 27273 + - uid: 29948 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-0.5 parent: 2 - - uid: 27274 + - uid: 29949 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-0.5 parent: 2 - - uid: 27275 + - uid: 29950 components: - type: Transform pos: 56.5,-90.5 parent: 2 - - uid: 27276 + - uid: 29951 components: - type: Transform pos: 56.5,-91.5 parent: 2 - - uid: 27277 + - uid: 29952 components: - type: Transform pos: 35.5,-87.5 parent: 2 - - uid: 27278 + - uid: 29953 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-4.5 parent: 2 - - uid: 27279 + - uid: 29954 components: - type: Transform pos: 35.5,-99.5 parent: 2 - - uid: 27280 + - uid: 29955 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-4.5 parent: 2 - - uid: 27281 + - uid: 29956 components: - type: Transform pos: 56.5,-97.5 parent: 2 - - uid: 27282 + - uid: 29957 components: - type: Transform pos: 56.5,-96.5 parent: 2 - - uid: 27283 + - uid: 29958 components: - type: Transform pos: 41.5,-104.5 parent: 2 - - uid: 27284 + - uid: 29959 components: - type: Transform pos: 37.5,-104.5 parent: 2 - - uid: 27285 + - uid: 29960 components: - type: Transform pos: 35.5,-86.5 parent: 2 - - uid: 27286 + - uid: 29961 components: - type: Transform pos: 35.5,-91.5 parent: 2 - - uid: 27287 + - uid: 29962 components: - type: Transform pos: 35.5,-98.5 parent: 2 - - uid: 27288 + - uid: 29963 components: - type: Transform pos: 35.5,-89.5 parent: 2 - - uid: 27289 + - uid: 29964 components: - type: Transform pos: 42.5,-104.5 parent: 2 - - uid: 27290 + - uid: 29965 components: - type: Transform pos: 44.5,-104.5 parent: 2 - - uid: 27291 + - uid: 29966 components: - type: Transform pos: 38.5,-104.5 parent: 2 - - uid: 27292 + - uid: 29967 components: - type: Transform pos: 35.5,-102.5 parent: 2 - - uid: 27293 + - uid: 29968 components: - type: Transform pos: 35.5,-97.5 parent: 2 - - uid: 27294 + - uid: 29969 components: - type: Transform pos: 35.5,-92.5 parent: 2 - - uid: 27295 + - uid: 29970 components: - type: Transform pos: 35.5,-95.5 parent: 2 - - uid: 27296 + - uid: 29971 components: - type: Transform pos: 35.5,-101.5 parent: 2 - - uid: 27297 + - uid: 29972 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-5.5 parent: 2 - - uid: 27298 + - uid: 29973 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,0.5 parent: 2 - - uid: 27299 + - uid: 29974 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-75.5 parent: 2 - - uid: 27300 + - uid: 29975 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-49.5 parent: 2 - - uid: 27301 + - uid: 29976 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-49.5 parent: 2 - - uid: 27302 + - uid: 29977 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-46.5 parent: 2 - - uid: 27303 + - uid: 29978 components: - type: Transform pos: 40.5,-104.5 parent: 2 - - uid: 27304 + - uid: 29979 components: - type: Transform pos: 43.5,-104.5 parent: 2 - - uid: 27305 + - uid: 29980 components: - type: Transform pos: 35.5,-96.5 parent: 2 - - uid: 27306 + - uid: 29981 components: - type: Transform pos: 35.5,-85.5 parent: 2 - - uid: 27309 + - uid: 29982 components: - type: Transform pos: 35.5,-93.5 parent: 2 - - uid: 27310 + - uid: 29983 components: - type: Transform pos: 35.5,-90.5 parent: 2 - - uid: 27311 + - uid: 29984 components: - type: Transform pos: 56.5,-98.5 parent: 2 - - uid: 27313 + - uid: 29985 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-48.5 parent: 2 - - uid: 27314 + - uid: 29986 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-47.5 parent: 2 - - uid: 27315 + - uid: 29987 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-49.5 parent: 2 - - uid: 27316 + - uid: 29988 components: - type: Transform pos: 56.5,-99.5 parent: 2 - - uid: 27317 + - uid: 29989 components: - type: Transform pos: 50.5,-104.5 parent: 2 - - uid: 27318 + - uid: 29990 components: - type: Transform pos: 51.5,-104.5 parent: 2 - - uid: 27319 + - uid: 29991 components: - type: Transform pos: 46.5,-46.5 parent: 2 - - uid: 27320 + - uid: 29992 components: - type: Transform pos: 41.5,-46.5 parent: 2 - - uid: 36980 + - uid: 29993 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-82.5 parent: 2 - - uid: 36997 + - uid: 29994 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-82.5 parent: 2 - - uid: 37032 + - uid: 29995 components: - type: Transform rot: 1.5707963267948966 rad @@ -206292,2699 +210610,2719 @@ entities: parent: 2 - proto: ReinforcedWindow entities: - - uid: 1662 + - uid: 29996 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-26.5 parent: 2 - - uid: 1897 + - uid: 29997 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-25.5 parent: 2 - - uid: 1899 + - uid: 29998 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-10.5 parent: 2 - - uid: 2122 + - uid: 29999 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-27.5 parent: 2 - - uid: 2661 + - uid: 30000 components: - type: Transform pos: 41.5,4.5 parent: 2 - - uid: 2674 + - uid: 30001 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-8.5 parent: 2 - - uid: 2716 + - uid: 30002 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-10.5 parent: 2 - - uid: 2773 + - uid: 30003 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-16.5 parent: 2 - - uid: 2819 + - uid: 30004 components: - type: Transform pos: 41.5,1.5 parent: 2 - - uid: 5525 + - uid: 30005 components: - type: Transform pos: 45.5,0.5 parent: 2 - - uid: 5749 + - uid: 30006 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,16.5 parent: 2 - - uid: 6181 + - uid: 30007 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-28.5 parent: 2 - - uid: 7139 + - uid: 30008 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-13.5 parent: 2 - - uid: 7140 + - uid: 30009 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-12.5 parent: 2 - - uid: 7141 + - uid: 30010 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-18.5 parent: 2 - - uid: 7151 + - uid: 30011 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-11.5 parent: 2 - - uid: 7518 + - uid: 30012 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-10.5 parent: 2 - - uid: 7526 + - uid: 30013 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-14.5 parent: 2 - - uid: 7527 + - uid: 30014 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-15.5 parent: 2 - - uid: 7528 + - uid: 30015 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-16.5 parent: 2 - - uid: 7529 + - uid: 30016 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-10.5 parent: 2 - - uid: 7530 + - uid: 30017 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-10.5 parent: 2 - - uid: 7942 + - uid: 30018 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-10.5 parent: 2 - - uid: 7943 + - uid: 30019 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-11.5 parent: 2 - - uid: 7944 + - uid: 30020 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-11.5 parent: 2 - - uid: 8660 + - uid: 30021 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-13.5 parent: 2 - - uid: 8661 + - uid: 30022 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-11.5 parent: 2 - - uid: 8846 + - uid: 30023 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-11.5 parent: 2 - - uid: 8847 + - uid: 30024 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-14.5 parent: 2 - - uid: 8848 + - uid: 30025 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-15.5 parent: 2 - - uid: 8857 + - uid: 30026 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-16.5 parent: 2 - - uid: 8862 + - uid: 30027 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-17.5 parent: 2 - - uid: 9362 + - uid: 30028 components: - type: Transform pos: 42.5,-27.5 parent: 2 - - uid: 9714 + - uid: 30029 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,9.5 parent: 2 - - uid: 11148 + - uid: 30030 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-5.5 parent: 2 - - uid: 11760 + - uid: 30031 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-16.5 parent: 2 - - uid: 11852 + - uid: 30032 components: - type: Transform pos: 56.5,-6.5 parent: 2 - - uid: 11853 + - uid: 30033 components: - type: Transform pos: 58.5,-6.5 parent: 2 - - uid: 13962 + - uid: 30034 components: - type: Transform pos: 45.5,7.5 parent: 2 - - uid: 14066 + - uid: 30035 components: - type: Transform pos: 56.5,2.5 parent: 2 - - uid: 14557 + - uid: 30036 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 30037 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,3.5 parent: 2 - - uid: 14682 + - uid: 30038 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-3.5 parent: 2 - - uid: 14817 + - uid: 30039 components: - type: Transform pos: 50.5,24.5 parent: 2 - - uid: 15175 + - uid: 30040 components: - type: Transform pos: 49.5,24.5 parent: 2 - - uid: 15405 + - uid: 30041 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-6.5 parent: 2 - - uid: 15463 + - uid: 30042 components: - type: Transform pos: 42.5,-26.5 parent: 2 - - uid: 16224 + - uid: 30043 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-6.5 parent: 2 - - uid: 17477 + - uid: 30044 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-19.5 parent: 2 - - uid: 17778 + - uid: 30045 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-22.5 parent: 2 - - uid: 17785 + - uid: 30046 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-18.5 parent: 2 - - uid: 18288 + - uid: 30047 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-17.5 parent: 2 - - uid: 19571 + - uid: 30048 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-24.5 parent: 2 - - uid: 19581 + - uid: 30049 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,16.5 parent: 2 - - uid: 23121 + - uid: 30050 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,9.5 parent: 2 - - uid: 24326 + - uid: 30051 components: - type: Transform pos: 46.5,-11.5 parent: 2 - - uid: 24443 + - uid: 30052 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,11.5 parent: 2 - - uid: 25247 + - uid: 30053 components: - type: Transform pos: 74.5,-6.5 parent: 2 - - uid: 25250 + - uid: 30054 components: - type: Transform pos: 74.5,-8.5 parent: 2 - - uid: 27321 + - uid: 30055 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,9.5 parent: 2 - - uid: 27322 + - uid: 30056 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-104.5 parent: 2 - - uid: 27323 + - uid: 30057 components: - type: Transform pos: -50.5,-70.5 parent: 2 - - uid: 27325 + - uid: 30058 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-63.5 parent: 2 - - uid: 27326 + - uid: 30059 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-56.5 parent: 2 - - uid: 27327 + - uid: 30060 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-55.5 parent: 2 - - uid: 27328 + - uid: 30061 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-62.5 parent: 2 - - uid: 27329 + - uid: 30062 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-102.5 parent: 2 - - uid: 27334 + - uid: 30063 components: - type: Transform pos: -49.5,-70.5 parent: 2 - - uid: 27335 + - uid: 30064 components: - type: Transform pos: -47.5,-70.5 parent: 2 - - uid: 27336 + - uid: 30065 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-39.5 parent: 2 - - uid: 27343 + - uid: 30066 components: - type: Transform pos: -62.5,13.5 parent: 2 - - uid: 27351 + - uid: 30067 components: - type: Transform pos: 2.5,6.5 parent: 2 - - uid: 27352 + - uid: 30068 components: - type: Transform pos: 2.5,7.5 parent: 2 - - uid: 27353 + - uid: 30069 components: - type: Transform pos: 2.5,10.5 parent: 2 - - uid: 27354 + - uid: 30070 components: - type: Transform pos: 2.5,11.5 parent: 2 - - uid: 27355 + - uid: 30071 components: - type: Transform pos: -5.5,7.5 parent: 2 - - uid: 27358 + - uid: 30072 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,18.5 parent: 2 - - uid: 27359 + - uid: 30073 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,20.5 parent: 2 - - uid: 27360 + - uid: 30074 components: - type: Transform pos: 6.5,26.5 parent: 2 - - uid: 27361 + - uid: 30075 components: - type: Transform pos: -8.5,26.5 parent: 2 - - uid: 27362 + - uid: 30076 components: - type: Transform pos: 11.5,25.5 parent: 2 - - uid: 27363 + - uid: 30077 components: - type: Transform pos: 15.5,-1.5 parent: 2 - - uid: 27364 + - uid: 30078 components: - type: Transform pos: 14.5,-1.5 parent: 2 - - uid: 27365 + - uid: 30079 components: - type: Transform pos: 13.5,-1.5 parent: 2 - - uid: 27366 + - uid: 30080 components: - type: Transform pos: 12.5,-1.5 parent: 2 - - uid: 27367 + - uid: 30081 components: - type: Transform pos: -20.5,-3.5 parent: 2 - - uid: 27368 + - uid: 30082 components: - type: Transform pos: -20.5,-4.5 parent: 2 - - uid: 27369 + - uid: 30083 components: - type: Transform pos: -21.5,-4.5 parent: 2 - - uid: 27370 + - uid: 30084 components: - type: Transform pos: -21.5,-5.5 parent: 2 - - uid: 27371 + - uid: 30085 components: - type: Transform pos: -22.5,-5.5 parent: 2 - - uid: 27372 + - uid: 30086 components: - type: Transform pos: -22.5,-6.5 parent: 2 - - uid: 27373 + - uid: 30087 components: - type: Transform pos: -23.5,-6.5 parent: 2 - - uid: 27374 + - uid: 30088 components: - type: Transform pos: -23.5,-7.5 parent: 2 - - uid: 27375 + - uid: 30089 components: - type: Transform pos: -24.5,-7.5 parent: 2 - - uid: 27376 + - uid: 30090 components: - type: Transform pos: -24.5,-8.5 parent: 2 - - uid: 27378 + - uid: 30091 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-95.5 parent: 2 - - uid: 27379 + - uid: 30092 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-94.5 parent: 2 - - uid: 27380 + - uid: 30093 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-93.5 parent: 2 - - uid: 27381 + - uid: 30094 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-92.5 parent: 2 - - uid: 27382 + - uid: 30095 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-91.5 parent: 2 - - uid: 27387 + - uid: 30096 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-30.5 parent: 2 - - uid: 27389 + - uid: 30097 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-30.5 parent: 2 - - uid: 27390 + - uid: 30098 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-30.5 parent: 2 - - uid: 27393 + - uid: 30099 components: - type: Transform rot: 3.141592653589793 rad pos: 93.5,-25.5 parent: 2 - - uid: 27394 + - uid: 30100 components: - type: Transform rot: 3.141592653589793 rad pos: 94.5,-25.5 parent: 2 - - uid: 27395 + - uid: 30101 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,-25.5 parent: 2 - - uid: 27396 + - uid: 30102 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,-25.5 parent: 2 - - uid: 27397 + - uid: 30103 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,-19.5 parent: 2 - - uid: 27398 + - uid: 30104 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,-19.5 parent: 2 - - uid: 27399 + - uid: 30105 components: - type: Transform rot: 3.141592653589793 rad pos: 94.5,-19.5 parent: 2 - - uid: 27400 + - uid: 30106 components: - type: Transform rot: 3.141592653589793 rad pos: 93.5,-19.5 parent: 2 - - uid: 27401 + - uid: 30107 components: - type: Transform pos: 88.5,-25.5 parent: 2 - - uid: 27402 + - uid: 30108 components: - type: Transform pos: 88.5,-19.5 parent: 2 - - uid: 27403 + - uid: 30109 components: - type: Transform pos: 86.5,-19.5 parent: 2 - - uid: 27404 + - uid: 30110 components: - type: Transform pos: 87.5,-19.5 parent: 2 - - uid: 27405 + - uid: 30111 components: - type: Transform pos: 87.5,-25.5 parent: 2 - - uid: 27406 + - uid: 30112 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-27.5 parent: 2 - - uid: 27407 + - uid: 30113 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-28.5 parent: 2 - - uid: 27408 + - uid: 30114 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-29.5 parent: 2 - - uid: 27409 + - uid: 30115 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-30.5 parent: 2 - - uid: 27410 + - uid: 30116 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-32.5 parent: 2 - - uid: 27411 + - uid: 30117 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-33.5 parent: 2 - - uid: 27412 + - uid: 30118 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-34.5 parent: 2 - - uid: 27413 + - uid: 30119 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-35.5 parent: 2 - - uid: 27414 + - uid: 30120 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,-37.5 parent: 2 - - uid: 27415 + - uid: 30121 components: - type: Transform rot: 3.141592653589793 rad pos: 95.5,-37.5 parent: 2 - - uid: 27416 + - uid: 30122 components: - type: Transform rot: 3.141592653589793 rad pos: 94.5,-37.5 parent: 2 - - uid: 27417 + - uid: 30123 components: - type: Transform rot: 3.141592653589793 rad pos: 93.5,-37.5 parent: 2 - - uid: 27418 + - uid: 30124 components: - type: Transform pos: 86.5,-25.5 parent: 2 - - uid: 27419 + - uid: 30125 components: - type: Transform pos: 102.5,-25.5 parent: 2 - - uid: 27420 + - uid: 30126 components: - type: Transform pos: 101.5,-25.5 parent: 2 - - uid: 27421 + - uid: 30127 components: - type: Transform pos: 100.5,-25.5 parent: 2 - - uid: 27422 + - uid: 30128 components: - type: Transform pos: 101.5,-19.5 parent: 2 - - uid: 27423 + - uid: 30129 components: - type: Transform pos: 102.5,-19.5 parent: 2 - - uid: 27424 + - uid: 30130 components: - type: Transform pos: 23.5,-6.5 parent: 2 - - uid: 27425 + - uid: 30131 components: - type: Transform pos: -14.5,-1.5 parent: 2 - - uid: 27426 + - uid: 30132 components: - type: Transform pos: -11.5,-1.5 parent: 2 - - uid: 27427 + - uid: 30133 components: - type: Transform pos: -12.5,-1.5 parent: 2 - - uid: 27428 + - uid: 30134 components: - type: Transform pos: -13.5,-1.5 parent: 2 - - uid: 27429 + - uid: 30135 components: - type: Transform pos: -19.5,-3.5 parent: 2 - - uid: 27431 + - uid: 30136 components: - type: Transform pos: -6.5,2.5 parent: 2 - - uid: 27434 + - uid: 30137 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-68.5 parent: 2 - - uid: 27435 + - uid: 30138 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-69.5 parent: 2 - - uid: 27436 + - uid: 30139 components: - type: Transform pos: -11.5,-102.5 parent: 2 - - uid: 27437 + - uid: 30140 components: - type: Transform pos: -2.5,-100.5 parent: 2 - - uid: 27438 + - uid: 30141 components: - type: Transform pos: -1.5,-100.5 parent: 2 - - uid: 27439 + - uid: 30142 components: - type: Transform pos: -0.5,-100.5 parent: 2 - - uid: 27440 + - uid: 30143 components: - type: Transform pos: 20.5,-3.5 parent: 2 - - uid: 27441 + - uid: 30144 components: - type: Transform pos: 22.5,-4.5 parent: 2 - - uid: 27442 + - uid: 30145 components: - type: Transform pos: 22.5,-5.5 parent: 2 - - uid: 27443 + - uid: 30146 components: - type: Transform pos: 23.5,-5.5 parent: 2 - - uid: 27444 + - uid: 30147 components: - type: Transform pos: 24.5,-6.5 parent: 2 - - uid: 27445 + - uid: 30148 components: - type: Transform pos: -0.5,-92.5 parent: 2 - - uid: 27446 + - uid: 30149 components: - type: Transform pos: 0.5,-92.5 parent: 2 - - uid: 27447 + - uid: 30150 components: - type: Transform pos: -3.5,-89.5 parent: 2 - - uid: 27448 + - uid: 30151 components: - type: Transform pos: -3.5,-90.5 parent: 2 - - uid: 27449 + - uid: 30152 components: - type: Transform pos: -3.5,-91.5 parent: 2 - - uid: 27450 + - uid: 30153 components: - type: Transform pos: 8.5,-81.5 parent: 2 - - uid: 27451 + - uid: 30154 components: - type: Transform pos: -1.5,-80.5 parent: 2 - - uid: 27452 + - uid: 30155 components: - type: Transform pos: -8.5,-99.5 parent: 2 - - uid: 27453 + - uid: 30156 components: - type: Transform pos: -14.5,-102.5 parent: 2 - - uid: 27454 + - uid: 30157 components: - type: Transform pos: -7.5,-82.5 parent: 2 - - uid: 27455 + - uid: 30158 components: - type: Transform pos: -45.5,-48.5 parent: 2 - - uid: 27456 + - uid: 30159 components: - type: Transform pos: -45.5,-47.5 parent: 2 - - uid: 27457 + - uid: 30160 components: - type: Transform pos: -45.5,-46.5 parent: 2 - - uid: 27458 + - uid: 30161 components: - type: Transform pos: -47.5,-45.5 parent: 2 - - uid: 27459 + - uid: 30162 components: - type: Transform pos: -48.5,-45.5 parent: 2 - - uid: 27460 + - uid: 30163 components: - type: Transform pos: -78.5,-46.5 parent: 2 - - uid: 27461 + - uid: 30164 components: - type: Transform pos: -79.5,-46.5 parent: 2 - - uid: 27462 + - uid: 30165 components: - type: Transform pos: -80.5,-46.5 parent: 2 - - uid: 27463 + - uid: 30166 components: - type: Transform pos: -43.5,-32.5 parent: 2 - - uid: 27467 + - uid: 30167 components: - type: Transform pos: -53.5,-22.5 parent: 2 - - uid: 27468 + - uid: 30168 components: - type: Transform pos: -54.5,-22.5 parent: 2 - - uid: 27469 + - uid: 30169 components: - type: Transform pos: -55.5,-22.5 parent: 2 - - uid: 27470 + - uid: 30170 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-72.5 parent: 2 - - uid: 27471 + - uid: 30171 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-74.5 parent: 2 - - uid: 27472 + - uid: 30172 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-67.5 parent: 2 - - uid: 27473 + - uid: 30173 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-2.5 parent: 2 - - uid: 27474 + - uid: 30174 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-7.5 parent: 2 - - uid: 27475 + - uid: 30175 components: - type: Transform pos: 24.5,-7.5 parent: 2 - - uid: 27476 + - uid: 30176 components: - type: Transform pos: -21.5,2.5 parent: 2 - - uid: 27477 + - uid: 30177 components: - type: Transform pos: 21.5,-4.5 parent: 2 - - uid: 27478 + - uid: 30178 components: - type: Transform pos: 21.5,-3.5 parent: 2 - - uid: 27479 + - uid: 30179 components: - type: Transform pos: -29.5,-36.5 parent: 2 - - uid: 27480 + - uid: 30180 components: - type: Transform pos: -29.5,-37.5 parent: 2 - - uid: 27481 + - uid: 30181 components: - type: Transform pos: -29.5,-39.5 parent: 2 - - uid: 27482 + - uid: 30182 components: - type: Transform pos: -29.5,-38.5 parent: 2 - - uid: 27483 + - uid: 30183 components: - type: Transform pos: -29.5,-40.5 parent: 2 - - uid: 27484 + - uid: 30184 components: - type: Transform pos: 27.5,-21.5 parent: 2 - - uid: 27485 + - uid: 30185 components: - type: Transform pos: -29.5,-47.5 parent: 2 - - uid: 27486 + - uid: 30186 components: - type: Transform pos: -29.5,-48.5 parent: 2 - - uid: 27487 + - uid: 30187 components: - type: Transform pos: -29.5,-46.5 parent: 2 - - uid: 27488 + - uid: 30188 components: - type: Transform pos: 25.5,-8.5 parent: 2 - - uid: 27489 + - uid: 30189 components: - type: Transform pos: 27.5,-13.5 parent: 2 - - uid: 27490 + - uid: 30190 components: - type: Transform pos: 27.5,-14.5 parent: 2 - - uid: 27491 + - uid: 30191 components: - type: Transform pos: 27.5,-15.5 parent: 2 - - uid: 27492 + - uid: 30192 components: - type: Transform pos: 27.5,-16.5 parent: 2 - - uid: 27493 + - uid: 30193 components: - type: Transform pos: 27.5,-22.5 parent: 2 - - uid: 27494 + - uid: 30194 components: - type: Transform pos: 27.5,-23.5 parent: 2 - - uid: 27495 + - uid: 30195 components: - type: Transform pos: 27.5,-24.5 parent: 2 - - uid: 27496 + - uid: 30196 components: - type: Transform pos: 27.5,-27.5 parent: 2 - - uid: 27497 + - uid: 30197 components: - type: Transform pos: 27.5,-28.5 parent: 2 - - uid: 27500 + - uid: 30198 components: - type: Transform pos: 27.5,-29.5 parent: 2 - - uid: 27501 + - uid: 30199 components: - type: Transform pos: 27.5,-17.5 parent: 2 - - uid: 27502 + - uid: 30200 components: - type: Transform pos: -26.5,-56.5 parent: 2 - - uid: 27503 + - uid: 30201 components: - type: Transform pos: -26.5,-57.5 parent: 2 - - uid: 27504 + - uid: 30202 components: - type: Transform pos: -26.5,-61.5 parent: 2 - - uid: 27505 + - uid: 30203 components: - type: Transform pos: -26.5,-63.5 parent: 2 - - uid: 27506 + - uid: 30204 components: - type: Transform pos: -26.5,-62.5 parent: 2 - - uid: 27507 + - uid: 30205 components: - type: Transform pos: -26.5,-55.5 parent: 2 - - uid: 27508 + - uid: 30206 components: - type: Transform pos: -26.5,-54.5 parent: 2 - - uid: 27509 + - uid: 30207 components: - type: Transform pos: -29.5,-50.5 parent: 2 - - uid: 27510 + - uid: 30208 components: - type: Transform pos: -23.5,-68.5 parent: 2 - - uid: 27511 + - uid: 30209 components: - type: Transform pos: -22.5,-68.5 parent: 2 - - uid: 27512 + - uid: 30210 components: - type: Transform pos: 24.5,-68.5 parent: 2 - - uid: 27513 + - uid: 30211 components: - type: Transform pos: -21.5,-68.5 parent: 2 - - uid: 27514 + - uid: 30212 components: - type: Transform pos: -17.5,-70.5 parent: 2 - - uid: 27515 + - uid: 30213 components: - type: Transform pos: -16.5,-70.5 parent: 2 - - uid: 27516 + - uid: 30214 components: - type: Transform pos: -11.5,-70.5 parent: 2 - - uid: 27517 + - uid: 30215 components: - type: Transform pos: -15.5,-70.5 parent: 2 - - uid: 27518 + - uid: 30216 components: - type: Transform pos: -12.5,-70.5 parent: 2 - - uid: 27519 + - uid: 30217 components: - type: Transform pos: -10.5,-70.5 parent: 2 - - uid: 27520 + - uid: 30218 components: - type: Transform pos: 11.5,-70.5 parent: 2 - - uid: 27521 + - uid: 30219 components: - type: Transform pos: 12.5,-70.5 parent: 2 - - uid: 27522 + - uid: 30220 components: - type: Transform pos: 17.5,-70.5 parent: 2 - - uid: 27523 + - uid: 30221 components: - type: Transform pos: 16.5,-70.5 parent: 2 - - uid: 27524 + - uid: 30222 components: - type: Transform pos: 13.5,-70.5 parent: 2 - - uid: 27525 + - uid: 30223 components: - type: Transform pos: 22.5,-68.5 parent: 2 - - uid: 27526 + - uid: 30224 components: - type: Transform pos: 18.5,-70.5 parent: 2 - - uid: 27527 + - uid: 30225 components: - type: Transform pos: 23.5,-68.5 parent: 2 - - uid: 27528 + - uid: 30226 components: - type: Transform pos: -26.5,-29.5 parent: 2 - - uid: 27529 + - uid: 30227 components: - type: Transform pos: -26.5,-30.5 parent: 2 - - uid: 27530 + - uid: 30228 components: - type: Transform pos: -26.5,-31.5 parent: 2 - - uid: 27531 + - uid: 30229 components: - type: Transform pos: -26.5,-32.5 parent: 2 - - uid: 27532 + - uid: 30230 components: - type: Transform pos: 30.5,-48.5 parent: 2 - - uid: 27534 + - uid: 30231 components: - type: Transform pos: 30.5,-49.5 parent: 2 - - uid: 27535 + - uid: 30232 components: - type: Transform pos: 30.5,-50.5 parent: 2 - - uid: 27536 + - uid: 30233 components: - type: Transform pos: -26.5,-64.5 parent: 2 - - uid: 27537 + - uid: 30234 components: - type: Transform pos: -29.5,-49.5 parent: 2 - - uid: 27538 + - uid: 30235 components: - type: Transform pos: -26.5,-23.5 parent: 2 - - uid: 27539 + - uid: 30236 components: - type: Transform pos: -26.5,-24.5 parent: 2 - - uid: 27541 + - uid: 30237 components: - type: Transform pos: -26.5,-28.5 parent: 2 - - uid: 27543 + - uid: 30238 components: - type: Transform pos: -26.5,-22.5 parent: 2 - - uid: 27544 + - uid: 30239 components: - type: Transform pos: -26.5,-21.5 parent: 2 - - uid: 27545 + - uid: 30240 components: - type: Transform pos: 27.5,-54.5 parent: 2 - - uid: 27546 + - uid: 30241 components: - type: Transform pos: 27.5,-55.5 parent: 2 - - uid: 27547 + - uid: 30242 components: - type: Transform pos: 27.5,-56.5 parent: 2 - - uid: 27548 + - uid: 30243 components: - type: Transform pos: 27.5,-57.5 parent: 2 - - uid: 27549 + - uid: 30244 components: - type: Transform pos: 27.5,-61.5 parent: 2 - - uid: 27550 + - uid: 30245 components: - type: Transform pos: 27.5,-62.5 parent: 2 - - uid: 27551 + - uid: 30246 components: - type: Transform pos: 27.5,-63.5 parent: 2 - - uid: 27552 + - uid: 30247 components: - type: Transform pos: 27.5,-64.5 parent: 2 - - uid: 27553 + - uid: 30248 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-40.5 parent: 2 - - uid: 27554 + - uid: 30249 components: - type: Transform pos: -67.5,-40.5 parent: 2 - - uid: 27555 + - uid: 30250 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-51.5 parent: 2 - - uid: 27556 + - uid: 30251 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-51.5 parent: 2 - - uid: 27557 + - uid: 30252 components: - type: Transform pos: -4.5,7.5 parent: 2 - - uid: 27558 + - uid: 30253 components: - type: Transform pos: -2.5,7.5 parent: 2 - - uid: 27559 + - uid: 30254 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-51.5 parent: 2 - - uid: 27560 + - uid: 30255 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-51.5 parent: 2 - - uid: 27561 + - uid: 30256 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-46.5 parent: 2 - - uid: 27562 + - uid: 30257 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-46.5 parent: 2 - - uid: 27563 + - uid: 30258 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-35.5 parent: 2 - - uid: 27564 + - uid: 30259 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-41.5 parent: 2 - - uid: 27565 + - uid: 30260 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-41.5 parent: 2 - - uid: 27566 + - uid: 30261 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-41.5 parent: 2 - - uid: 27567 + - uid: 30262 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-31.5 parent: 2 - - uid: 27568 + - uid: 30263 components: - type: Transform pos: 11.5,-85.5 parent: 2 - - uid: 27569 + - uid: 30264 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-44.5 parent: 2 - - uid: 27570 + - uid: 30265 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-44.5 parent: 2 - - uid: 27571 + - uid: 30266 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-36.5 parent: 2 - - uid: 27572 + - uid: 30267 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-36.5 parent: 2 - - uid: 27573 + - uid: 30268 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,-36.5 parent: 2 - - uid: 27574 + - uid: 30269 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-40.5 parent: 2 - - uid: 27575 + - uid: 30270 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-44.5 parent: 2 - - uid: 27576 + - uid: 30271 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-40.5 parent: 2 - - uid: 27577 + - uid: 30272 components: - type: Transform pos: 102.5,-37.5 parent: 2 - - uid: 27578 + - uid: 30273 components: - type: Transform pos: 101.5,-37.5 parent: 2 - - uid: 27579 + - uid: 30274 components: - type: Transform pos: 67.5,-30.5 parent: 2 - - uid: 27580 + - uid: 30275 components: - type: Transform pos: 66.5,-30.5 parent: 2 - - uid: 27581 + - uid: 30276 components: - type: Transform pos: 65.5,-30.5 parent: 2 - - uid: 27582 + - uid: 30277 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-104.5 parent: 2 - - uid: 27583 + - uid: 30278 components: - type: Transform pos: 59.5,-71.5 parent: 2 - - uid: 27584 + - uid: 30279 components: - type: Transform pos: 60.5,-71.5 parent: 2 - - uid: 27585 + - uid: 30280 components: - type: Transform pos: 61.5,-71.5 parent: 2 - - uid: 27586 + - uid: 30281 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-104.5 parent: 2 - - uid: 27587 + - uid: 30282 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-101.5 parent: 2 - - uid: 27588 + - uid: 30283 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-59.5 parent: 2 - - uid: 27589 + - uid: 30284 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-99.5 parent: 2 - - uid: 27594 + - uid: 30285 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-104.5 parent: 2 - - uid: 27595 + - uid: 30286 components: - type: Transform pos: 18.5,-101.5 parent: 2 - - uid: 27596 + - uid: 30287 components: - type: Transform pos: 17.5,-104.5 parent: 2 - - uid: 27597 + - uid: 30288 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-104.5 parent: 2 - - uid: 27598 + - uid: 30289 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-83.5 parent: 2 - - uid: 27601 + - uid: 30290 components: - type: Transform pos: 100.5,-37.5 parent: 2 - - uid: 27603 + - uid: 30291 components: - type: Transform pos: 88.5,-37.5 parent: 2 - - uid: 27604 + - uid: 30292 components: - type: Transform pos: 87.5,-37.5 parent: 2 - - uid: 27605 + - uid: 30293 components: - type: Transform pos: 86.5,-37.5 parent: 2 - - uid: 27606 + - uid: 30294 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-46.5 parent: 2 - - uid: 27609 + - uid: 30295 components: - type: Transform pos: -46.5,-45.5 parent: 2 - - uid: 27610 + - uid: 30296 components: - type: Transform pos: 46.5,-35.5 parent: 2 - - uid: 27611 + - uid: 30297 components: - type: Transform pos: 46.5,-36.5 parent: 2 - - uid: 27612 + - uid: 30298 components: - type: Transform pos: 46.5,-37.5 parent: 2 - - uid: 27613 + - uid: 30299 components: - type: Transform pos: 46.5,-42.5 parent: 2 - - uid: 27614 + - uid: 30300 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 2 - - uid: 27615 + - uid: 30301 components: - type: Transform pos: 46.5,-41.5 parent: 2 - - uid: 27616 + - uid: 30302 components: - type: Transform pos: 46.5,-40.5 parent: 2 - - uid: 27617 + - uid: 30303 components: - type: Transform pos: 3.5,27.5 parent: 2 - - uid: 27618 + - uid: 30304 components: - type: Transform pos: -0.5,28.5 parent: 2 - - uid: 27619 + - uid: 30305 components: - type: Transform pos: 12.5,24.5 parent: 2 - - uid: 27620 + - uid: 30306 components: - type: Transform pos: 49.5,-34.5 parent: 2 - - uid: 27621 + - uid: 30307 components: - type: Transform pos: 50.5,-34.5 parent: 2 - - uid: 27622 + - uid: 30308 components: - type: Transform pos: 51.5,-34.5 parent: 2 - - uid: 27623 + - uid: 30309 components: - type: Transform pos: 55.5,-34.5 parent: 2 - - uid: 27624 + - uid: 30310 components: - type: Transform pos: 56.5,-34.5 parent: 2 - - uid: 27625 + - uid: 30311 components: - type: Transform pos: 57.5,-34.5 parent: 2 - - uid: 27626 + - uid: 30312 components: - type: Transform pos: 25.5,-7.5 parent: 2 - - uid: 27627 + - uid: 30313 components: - type: Transform pos: 100.5,-19.5 parent: 2 - - uid: 27635 + - uid: 30314 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-15.5 parent: 2 - - uid: 27636 + - uid: 30315 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-14.5 parent: 2 - - uid: 27637 + - uid: 30316 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-17.5 parent: 2 - - uid: 27638 + - uid: 30317 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-16.5 parent: 2 - - uid: 27640 + - uid: 30318 components: - type: Transform pos: 5.5,27.5 parent: 2 - - uid: 27641 + - uid: 30319 components: - type: Transform pos: 7.5,26.5 parent: 2 - - uid: 27642 + - uid: 30320 components: - type: Transform pos: 9.5,26.5 parent: 2 - - uid: 27643 + - uid: 30321 components: - type: Transform pos: 10.5,26.5 parent: 2 - - uid: 27644 + - uid: 30322 components: - type: Transform pos: 11.5,24.5 parent: 2 - - uid: 27645 + - uid: 30323 components: - type: Transform pos: 8.5,26.5 parent: 2 - - uid: 27646 + - uid: 30324 components: - type: Transform pos: 10.5,25.5 parent: 2 - - uid: 27647 + - uid: 30325 components: - type: Transform pos: -11.5,24.5 parent: 2 - - uid: 27648 + - uid: 30326 components: - type: Transform pos: -10.5,25.5 parent: 2 - - uid: 27649 + - uid: 30327 components: - type: Transform pos: -10.5,24.5 parent: 2 - - uid: 27650 + - uid: 30328 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-13.5 parent: 2 - - uid: 27651 + - uid: 30329 components: - type: Transform pos: 105.5,-19.5 parent: 2 - - uid: 27652 + - uid: 30330 components: - type: Transform pos: 104.5,-19.5 parent: 2 - - uid: 27653 + - uid: 30331 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-40.5 parent: 2 - - uid: 27656 + - uid: 30332 components: - type: Transform pos: -9.5,25.5 parent: 2 - - uid: 27660 + - uid: 30333 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-104.5 parent: 2 - - uid: 27661 + - uid: 30334 components: - type: Transform pos: 3.5,28.5 parent: 2 - - uid: 27663 + - uid: 30335 components: - type: Transform pos: 69.5,-34.5 parent: 2 - - uid: 27664 + - uid: 30336 components: - type: Transform pos: 68.5,-34.5 parent: 2 - - uid: 27665 + - uid: 30337 components: - type: Transform pos: 67.5,-34.5 parent: 2 - - uid: 27666 + - uid: 30338 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-100.5 parent: 2 - - uid: 27667 + - uid: 30339 components: - type: Transform pos: -54.5,-46.5 parent: 2 - - uid: 27668 + - uid: 30340 components: - type: Transform pos: 2.5,28.5 parent: 2 - - uid: 27669 + - uid: 30341 components: - type: Transform pos: -53.5,-46.5 parent: 2 - - uid: 27670 + - uid: 30342 components: - type: Transform pos: -52.5,-46.5 parent: 2 - - uid: 27671 + - uid: 30343 components: - type: Transform pos: -51.5,-46.5 parent: 2 - - uid: 27673 + - uid: 30344 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-1.5 parent: 2 - - uid: 27674 + - uid: 30345 components: - type: Transform pos: 16.5,-101.5 parent: 2 - - uid: 27675 + - uid: 30346 components: - type: Transform pos: -54.5,16.5 parent: 2 - - uid: 27676 + - uid: 30347 components: - type: Transform pos: 1.5,28.5 parent: 2 - - uid: 27677 + - uid: 30348 components: - type: Transform pos: 0.5,28.5 parent: 2 - - uid: 27678 + - uid: 30349 components: - type: Transform pos: -7.5,26.5 parent: 2 - - uid: 27679 + - uid: 30350 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-0.5 parent: 2 - - uid: 27680 + - uid: 30351 components: - type: Transform pos: 17.5,-101.5 parent: 2 - - uid: 27681 + - uid: 30352 components: - type: Transform pos: 16.5,-95.5 parent: 2 - - uid: 27682 + - uid: 30353 components: - type: Transform pos: 17.5,-95.5 parent: 2 - - uid: 27683 + - uid: 30354 components: - type: Transform pos: -54.5,17.5 parent: 2 - - uid: 27684 + - uid: 30355 components: - type: Transform pos: -54.5,15.5 parent: 2 - - uid: 27685 + - uid: 30356 components: - type: Transform pos: -6.5,26.5 parent: 2 - - uid: 27686 + - uid: 30357 components: - type: Transform pos: -5.5,26.5 parent: 2 - - uid: 27687 + - uid: 30358 components: - type: Transform pos: -5.5,27.5 parent: 2 - - uid: 27688 + - uid: 30359 components: - type: Transform pos: -3.5,27.5 parent: 2 - - uid: 27689 + - uid: 30360 components: - type: Transform pos: -2.5,27.5 parent: 2 - - uid: 27690 + - uid: 30361 components: - type: Transform pos: -2.5,28.5 parent: 2 - - uid: 27691 + - uid: 30362 components: - type: Transform pos: -4.5,27.5 parent: 2 - - uid: 27692 + - uid: 30363 components: - type: Transform pos: 4.5,27.5 parent: 2 - - uid: 27693 + - uid: 30364 components: - type: Transform pos: -1.5,28.5 parent: 2 - - uid: 27694 + - uid: 30365 components: - type: Transform pos: 30.5,-80.5 parent: 2 - - uid: 27695 + - uid: 30366 components: - type: Transform pos: 24.5,-80.5 parent: 2 - - uid: 27696 + - uid: 30367 components: - type: Transform pos: -9.5,26.5 parent: 2 - - uid: 27697 + - uid: 30368 components: - type: Transform pos: 26.5,-80.5 parent: 2 - - uid: 27698 + - uid: 30369 components: - type: Transform pos: -11.5,23.5 parent: 2 - - uid: 27699 + - uid: 30370 components: - type: Transform pos: 28.5,-80.5 parent: 2 - - uid: 27700 + - uid: 30371 components: - type: Transform pos: 6.5,27.5 parent: 2 - - uid: 27701 + - uid: 30372 components: - type: Transform pos: -54.5,18.5 parent: 2 - - uid: 27702 + - uid: 30373 components: - type: Transform pos: -44.5,20.5 parent: 2 - - uid: 27703 + - uid: 30374 components: - type: Transform pos: -47.5,19.5 parent: 2 - - uid: 27704 + - uid: 30375 components: - type: Transform pos: -46.5,19.5 parent: 2 - - uid: 27705 + - uid: 30376 components: - type: Transform pos: -45.5,19.5 parent: 2 - - uid: 27706 + - uid: 30377 components: - type: Transform pos: -52.5,20.5 parent: 2 - - uid: 27707 + - uid: 30378 components: - type: Transform pos: -48.5,20.5 parent: 2 - - uid: 27708 + - uid: 30379 components: - type: Transform pos: -40.5,20.5 parent: 2 - - uid: 27709 + - uid: 30380 components: - type: Transform pos: -52.5,14.5 parent: 2 - - uid: 27710 + - uid: 30381 components: - type: Transform pos: -51.5,14.5 parent: 2 - - uid: 27711 + - uid: 30382 components: - type: Transform pos: -50.5,14.5 parent: 2 - - uid: 27712 + - uid: 30383 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-29.5 parent: 2 - - uid: 27713 + - uid: 30384 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-77.5 parent: 2 - - uid: 27714 + - uid: 30385 components: - type: Transform pos: -48.5,-70.5 parent: 2 - - uid: 27715 + - uid: 30386 components: - type: Transform pos: -63.5,13.5 parent: 2 - - uid: 27716 + - uid: 30387 components: - type: Transform pos: -64.5,13.5 parent: 2 - - uid: 27717 + - uid: 30388 components: - type: Transform pos: -19.5,-104.5 parent: 2 - - uid: 27720 + - uid: 30389 components: - type: Transform pos: 30.5,-38.5 parent: 2 - - uid: 27721 + - uid: 30390 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-62.5 parent: 2 - - uid: 27722 + - uid: 30391 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-65.5 parent: 2 - - uid: 27724 + - uid: 30392 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-71.5 parent: 2 - - uid: 27725 + - uid: 30393 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-77.5 parent: 2 - - uid: 27726 + - uid: 30394 components: - type: Transform pos: -69.5,-37.5 parent: 2 - - uid: 27727 + - uid: 30395 components: - type: Transform pos: -47.5,-37.5 parent: 2 - - uid: 27728 + - uid: 30396 components: - type: Transform pos: -16.5,-102.5 parent: 2 - - uid: 27729 + - uid: 30397 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-63.5 parent: 2 - - uid: 27730 + - uid: 30398 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-66.5 parent: 2 - - uid: 27731 + - uid: 30399 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-38.5 parent: 2 - - uid: 27732 + - uid: 30400 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-35.5 parent: 2 - - uid: 27733 + - uid: 30401 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-30.5 parent: 2 - - uid: 27738 + - uid: 30402 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,1.5 parent: 2 - - uid: 27741 + - uid: 30403 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-104.5 parent: 2 - - uid: 27745 + - uid: 30404 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,0.5 parent: 2 - - uid: 27746 + - uid: 30405 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-104.5 parent: 2 - - uid: 27747 + - uid: 30406 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-109.5 parent: 2 - - uid: 27748 + - uid: 30407 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-110.5 parent: 2 - - uid: 27749 + - uid: 30408 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-111.5 parent: 2 - - uid: 27750 + - uid: 30409 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-112.5 parent: 2 - - uid: 27751 + - uid: 30410 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-113.5 parent: 2 - - uid: 27752 + - uid: 30411 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-114.5 parent: 2 - - uid: 27753 + - uid: 30412 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-115.5 parent: 2 - - uid: 27754 + - uid: 30413 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-116.5 parent: 2 - - uid: 27755 + - uid: 30414 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-116.5 parent: 2 - - uid: 27756 + - uid: 30415 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-115.5 parent: 2 - - uid: 27757 + - uid: 30416 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-114.5 parent: 2 - - uid: 27758 + - uid: 30417 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-113.5 parent: 2 - - uid: 27759 + - uid: 30418 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-112.5 parent: 2 - - uid: 27760 + - uid: 30419 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-111.5 parent: 2 - - uid: 27761 + - uid: 30420 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-110.5 parent: 2 - - uid: 27762 + - uid: 30421 components: - type: Transform rot: -1.5707963267948966 rad pos: -56.5,-109.5 parent: 2 - - uid: 27763 + - uid: 30422 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,4.5 parent: 2 - - uid: 27764 + - uid: 30423 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,0.5 parent: 2 - - uid: 27765 + - uid: 30424 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,1.5 parent: 2 - - uid: 27766 + - uid: 30425 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,2.5 parent: 2 - - uid: 27767 + - uid: 30426 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,3.5 parent: 2 - - uid: 27768 + - uid: 30427 components: - type: Transform pos: -77.5,4.5 parent: 2 - - uid: 27769 + - uid: 30428 components: - type: Transform pos: -77.5,3.5 parent: 2 - - uid: 27770 + - uid: 30429 components: - type: Transform pos: -77.5,2.5 parent: 2 - - uid: 27771 + - uid: 30430 components: - type: Transform pos: -77.5,1.5 parent: 2 - - uid: 27772 + - uid: 30431 components: - type: Transform pos: -77.5,0.5 parent: 2 - - uid: 27773 + - uid: 30432 components: - type: Transform pos: -82.5,5.5 parent: 2 - - uid: 27774 + - uid: 30433 components: - type: Transform pos: -85.5,5.5 parent: 2 - - uid: 27775 + - uid: 30434 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,5.5 parent: 2 - - uid: 27776 + - uid: 30435 components: - type: Transform rot: 3.141592653589793 rad pos: -92.5,2.5 parent: 2 - - uid: 27777 + - uid: 30436 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,-0.5 parent: 2 - - uid: 27778 + - uid: 30437 components: - type: Transform pos: -92.5,-0.5 parent: 2 - - uid: 27779 + - uid: 30438 components: - type: Transform pos: -93.5,-0.5 parent: 2 - - uid: 27781 + - uid: 30439 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,5.5 parent: 2 - - uid: 27782 + - uid: 30440 components: - type: Transform pos: -48.5,-30.5 parent: 2 - - uid: 27783 + - uid: 30441 components: - type: Transform pos: -51.5,-30.5 parent: 2 - - uid: 27784 + - uid: 30442 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-26.5 parent: 2 - - uid: 27785 + - uid: 30443 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-17.5 parent: 2 - - uid: 27786 + - uid: 30444 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-17.5 parent: 2 - - uid: 27787 + - uid: 30445 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-17.5 parent: 2 - - uid: 27788 + - uid: 30446 components: - type: Transform pos: -46.5,-14.5 parent: 2 - - uid: 27789 + - uid: 30447 components: - type: Transform pos: -45.5,-14.5 parent: 2 - - uid: 27790 + - uid: 30448 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-3.5 parent: 2 - - uid: 27791 + - uid: 30449 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-5.5 parent: 2 - - uid: 27792 + - uid: 30450 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-34.5 parent: 2 - - uid: 27793 + - uid: 30451 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-27.5 parent: 2 - - uid: 27794 + - uid: 30452 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-28.5 parent: 2 - - uid: 27801 + - uid: 30453 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-80.5 parent: 2 - - uid: 27802 + - uid: 30454 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-81.5 parent: 2 - - uid: 27803 + - uid: 30455 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-82.5 parent: 2 - - uid: 27804 + - uid: 30456 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-80.5 parent: 2 - - uid: 27805 + - uid: 30457 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-80.5 parent: 2 - - uid: 34626 + - uid: 30458 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 30459 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,21.5 parent: 2 - - uid: 34629 + - uid: 30460 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,23.5 parent: 2 - - uid: 34869 + - uid: 30461 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,24.5 parent: 2 - - uid: 34876 + - uid: 30462 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,24.5 parent: 2 - - uid: 34883 + - uid: 30463 components: - type: Transform pos: 54.5,22.5 parent: 2 - - uid: 35808 + - uid: 30464 components: - type: Transform rot: -1.5707963267948966 rad pos: 117.5,-37.5 parent: 2 - - uid: 35810 + - uid: 30465 components: - type: Transform rot: -1.5707963267948966 rad pos: 126.5,-41.5 parent: 2 - - uid: 35814 + - uid: 30466 components: - type: Transform rot: -1.5707963267948966 rad pos: 120.5,-37.5 parent: 2 - - uid: 35884 + - uid: 30467 components: - type: Transform rot: -1.5707963267948966 rad pos: 127.5,-37.5 parent: 2 - - uid: 35885 + - uid: 30468 components: - type: Transform rot: -1.5707963267948966 rad pos: 126.5,-37.5 parent: 2 - - uid: 35902 + - uid: 30469 components: - type: Transform rot: -1.5707963267948966 rad pos: 125.5,-41.5 parent: 2 - - uid: 35903 + - uid: 30470 components: - type: Transform rot: -1.5707963267948966 rad pos: 127.5,-41.5 parent: 2 - - uid: 36753 + - uid: 30471 components: - type: Transform rot: -1.5707963267948966 rad pos: 118.5,-37.5 parent: 2 - - uid: 36885 + - uid: 30472 components: - type: Transform pos: 51.5,-6.5 parent: 2 - - uid: 37663 + - uid: 30473 components: - type: Transform rot: -1.5707963267948966 rad pos: 124.5,-41.5 parent: 2 - - uid: 37664 + - uid: 30474 components: - type: Transform rot: -1.5707963267948966 rad pos: 125.5,-37.5 parent: 2 - - uid: 37839 + - uid: 30475 components: - type: Transform pos: 52.5,-6.5 parent: 2 - - uid: 38435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 37887 - - uid: 38436 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 37887 - - uid: 39049 + - uid: 30476 components: - type: Transform rot: -1.5707963267948966 rad pos: 119.5,-37.5 parent: 2 - - uid: 39053 + - uid: 30477 components: - type: Transform rot: -1.5707963267948966 rad pos: 124.5,-37.5 parent: 2 - - uid: 39994 + - uid: 30478 components: - type: Transform rot: -1.5707963267948966 rad pos: 120.5,-41.5 parent: 2 - - uid: 39997 + - uid: 30479 components: - type: Transform rot: -1.5707963267948966 rad pos: 117.5,-41.5 parent: 2 - - uid: 40020 + - uid: 30480 components: - type: Transform rot: -1.5707963267948966 rad pos: 118.5,-41.5 parent: 2 - - uid: 40078 + - uid: 30481 components: - type: Transform rot: -1.5707963267948966 rad pos: 119.5,-41.5 parent: 2 + - uid: 30482 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - uid: 30483 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 41382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 40828 + - uid: 41383 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 40828 - proto: ReinforcedWindowDiagonal entities: - - uid: 27806 + - uid: 30484 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,27.5 parent: 2 - - uid: 27807 + - uid: 30485 components: - type: Transform pos: -11.5,25.5 parent: 2 - - uid: 27808 + - uid: 30486 components: - type: Transform pos: -6.5,27.5 parent: 2 - - uid: 27809 + - uid: 30487 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,25.5 parent: 2 - - uid: 27810 + - uid: 30488 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,26.5 parent: 2 - - uid: 27811 + - uid: 30489 components: - type: Transform pos: -3.5,28.5 parent: 2 - - uid: 27812 + - uid: 30490 components: - type: Transform pos: -10.5,26.5 parent: 2 - - uid: 27813 + - uid: 30491 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,28.5 parent: 2 - - uid: 27814 + - uid: 30492 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,-0.5 parent: 2 - - uid: 34650 + - uid: 30493 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,24.5 parent: 2 - - uid: 34867 + - uid: 30494 components: - type: Transform rot: -1.5707963267948966 rad @@ -208992,43 +213330,43 @@ entities: parent: 2 - proto: RemoteSignaller entities: - - uid: 27815 + - uid: 30495 components: - type: Transform pos: -1.3444109,24.974781 parent: 2 - - uid: 27816 + - uid: 30496 components: - type: Transform pos: -50.681755,-61.160763 parent: 2 - - uid: 27817 + - uid: 30497 components: - type: Transform pos: -69.510506,-62.73284 parent: 2 - - uid: 27818 + - uid: 30498 components: - type: Transform pos: 76.36499,-50.376144 parent: 2 - proto: ResearchAndDevelopmentServer entities: - - uid: 27819 + - uid: 30499 components: - type: Transform pos: -35.5,-74.5 parent: 2 - proto: ResearchAndDevelopmentServerMachineCircuitboard entities: - - uid: 30501 + - uid: 30500 components: - type: Transform pos: 18.489466,-19.488842 parent: 2 - proto: RevolverCapGun entities: - - uid: 26451 + - uid: 30501 components: - type: MetaData name: крутая пушка @@ -209037,33 +213375,33 @@ entities: parent: 2 - proto: RevolverCapGunFake entities: - - uid: 9348 + - uid: 30502 components: - type: Transform pos: 2.5,-22.5 parent: 2 - proto: RGBStaff entities: - - uid: 27821 + - uid: 30503 components: - type: Transform pos: -37.480183,-99.61549 parent: 2 - proto: RightArmBorgService entities: - - uid: 31042 + - uid: 30504 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.430656,-45.663193 parent: 2 - - uid: 31044 + - uid: 30505 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.727531,-45.194443 parent: 2 - - uid: 31046 + - uid: 30506 components: - type: Transform rot: -1.5707963267948966 rad @@ -209071,35 +213409,35 @@ entities: parent: 2 - proto: RightArmSkeleton entities: - - uid: 27824 + - uid: 30507 components: - type: Transform pos: 65.5,-50.5 parent: 2 - proto: RightFootSkeleton entities: - - uid: 27825 + - uid: 30508 components: - type: Transform pos: 65.5,-50.5 parent: 2 - proto: RightHandSkeleton entities: - - uid: 27826 + - uid: 30509 components: - type: Transform pos: 65.5,-50.5 parent: 2 - proto: RightLegBorg entities: - - uid: 27827 + - uid: 30510 components: - type: Transform pos: -85.12268,-9.882366 parent: 2 - proto: RightLegBorgEngineer entities: - - uid: 30945 + - uid: 30511 components: - type: Transform rot: -1.5707963267948966 rad @@ -209107,7 +213445,7 @@ entities: parent: 2 - proto: RightLegBorgMedical entities: - - uid: 30944 + - uid: 30512 components: - type: Transform rot: -1.5707963267948966 rad @@ -209115,7 +213453,7 @@ entities: parent: 2 - proto: RightLegBorgMining entities: - - uid: 30947 + - uid: 30513 components: - type: Transform rot: -1.5707963267948966 rad @@ -209123,7 +213461,7 @@ entities: parent: 2 - proto: RightLegReptilian entities: - - uid: 27828 + - uid: 30514 components: - type: Transform rot: -1.5707963267948966 rad @@ -209131,194 +213469,194 @@ entities: parent: 2 - proto: RightLegSkeleton entities: - - uid: 27829 + - uid: 30515 components: - type: Transform pos: 65.5,-50.5 parent: 2 - proto: RiotBulletShield entities: - - uid: 38437 + - uid: 41384 components: - type: Transform pos: 6.4677124,-10.531189 - parent: 37887 + parent: 40828 - proto: RiotLaserShield entities: - - uid: 38438 + - uid: 41385 components: - type: Transform pos: 6.314926,-10.406189 - parent: 37887 + parent: 40828 - proto: RiotShield entities: - - uid: 7691 + - uid: 30516 components: - type: Transform rot: 3.141592653589793 rad pos: 61.581383,-11.486053 parent: 2 - - uid: 15294 + - uid: 30517 components: - type: Transform rot: 3.141592653589793 rad pos: 61.784508,-11.454803 parent: 2 - - uid: 16225 + - uid: 30518 components: - type: Transform rot: 3.141592653589793 rad pos: 61.425133,-11.407928 parent: 2 - - uid: 38439 + - uid: 41386 components: - type: Transform pos: 6.731598,-10.350647 - parent: 37887 + parent: 40828 - proto: RitualDagger entities: - - uid: 27842 + - uid: 30519 components: - type: Transform pos: -83.467155,-26.226091 parent: 2 - proto: RobocopCircuitBoard entities: - - uid: 22687 + - uid: 26945 components: - type: Transform - parent: 31636 + parent: 26944 - type: Physics canCollide: False - type: InsideEntityStorage - proto: RockGuitarInstrument entities: - - uid: 27843 + - uid: 30520 components: - type: Transform pos: 32.43872,-21.435997 parent: 2 - proto: RollerBed entities: - - uid: 2060 + - uid: 30521 components: - type: Transform pos: 66.46689,-1.3338642 parent: 2 - - uid: 27845 + - uid: 30522 components: - type: Transform pos: -53.5,-15.5 parent: 2 - - uid: 38440 - components: - - type: Transform - pos: -4.511612,-10.278687 - parent: 37887 - - uid: 40805 + - uid: 30523 components: - type: Transform pos: 83.284225,-9.363339 parent: 2 + - uid: 41387 + components: + - type: Transform + pos: -4.511612,-10.278687 + parent: 40828 - proto: RollingPin entities: - - uid: 2034 + - uid: 18816 components: - type: Transform - parent: 1994 + parent: 18798 - type: Physics canCollide: False - proto: RubberStampApproved entities: - - uid: 22654 + - uid: 30524 components: - type: Transform pos: 51.354324,10.770037 parent: 2 - - uid: 27846 + - uid: 30525 components: - type: Transform pos: -2.6978712,9.008189 parent: 2 - - uid: 27847 + - uid: 30526 components: - type: Transform pos: 69.74885,-37.834255 parent: 2 - - uid: 27848 + - uid: 30527 components: - type: Transform pos: 0.4364481,-95.24705 parent: 2 - - uid: 27849 + - uid: 30528 components: - type: Transform pos: 27.224102,20.466248 parent: 2 - - uid: 27850 + - uid: 30529 components: - type: Transform pos: -24.112488,6.868767 parent: 2 - proto: RubberStampDenied entities: - - uid: 19613 + - uid: 30530 components: - type: Transform pos: 51.70155,10.765407 parent: 2 - - uid: 27851 + - uid: 30531 components: - type: Transform pos: -24.128113,6.509392 parent: 2 - - uid: 27852 + - uid: 30532 components: - type: Transform pos: -2.3228712,9.008189 parent: 2 - - uid: 27853 + - uid: 30533 components: - type: Transform pos: 69.4051,-37.834255 parent: 2 - - uid: 27854 + - uid: 30534 components: - type: Transform pos: 0.4520731,-95.5867 parent: 2 - - uid: 27855 + - uid: 30535 components: - type: Transform pos: -6.2313633,-81.53177 parent: 2 - proto: SalvageCanisterSpawner entities: - - uid: 39614 + - uid: 30536 components: - type: Transform pos: -5.5,-56.5 parent: 2 - - uid: 39615 + - uid: 30537 components: - type: Transform pos: -6.5,-51.5 parent: 2 - proto: SalvageLootSpawner entities: - - uid: 39612 + - uid: 30538 components: - type: Transform pos: 13.5,-46.5 parent: 2 - - uid: 39613 + - uid: 30539 components: - type: Transform pos: -11.5,-56.5 parent: 2 - proto: SalvageMagnet entities: - - uid: 27872 + - uid: 30540 components: - type: Transform pos: -4.5,-103.5 @@ -209327,623 +213665,618 @@ entities: needsPower: False - proto: SalvageMaterialCrateSpawner entities: - - uid: 27873 + - uid: 30541 components: - type: Transform pos: -13.5,-83.5 parent: 2 - - uid: 27874 + - uid: 30542 components: - type: Transform pos: 4.5,-87.5 parent: 2 - - uid: 33828 + - uid: 30543 components: - type: Transform pos: 10.5,-60.5 parent: 2 - - uid: 41118 + - uid: 30544 components: - type: Transform pos: 19.5,-49.5 parent: 2 - proto: SalvageMobSpawner entities: - - uid: 26742 + - uid: 30545 components: - type: Transform pos: 15.5,-25.5 parent: 2 - proto: SalvageMobSpawner75 entities: - - uid: 39805 + - uid: 30546 components: - type: Transform pos: -6.5,-44.5 parent: 2 - - uid: 39806 + - uid: 30547 components: - type: Transform pos: -16.5,-43.5 parent: 2 - - uid: 39807 + - uid: 30548 components: - type: Transform pos: 6.5,-14.5 parent: 2 - proto: SalvageSpawnerEquipment entities: - - uid: 39621 + - uid: 30549 components: - type: Transform pos: -8.5,-49.5 parent: 2 - - uid: 39627 + - uid: 30550 components: - type: Transform pos: 7.5,-44.5 parent: 2 - proto: SalvageSpawnerEquipmentValuable entities: - - uid: 39622 + - uid: 30551 components: - type: Transform pos: 0.5,-40.5 parent: 2 - - uid: 39624 + - uid: 30552 components: - type: Transform pos: 15.5,-44.5 parent: 2 - proto: SalvageSpawnerMobMiningAsteroid entities: - - uid: 39798 + - uid: 30553 components: - type: Transform pos: 9.5,-48.5 parent: 2 - proto: SalvageSpawnerScrapCommon entities: - - uid: 39634 + - uid: 30554 components: - type: Transform pos: -18.5,-43.5 parent: 2 - - uid: 39638 + - uid: 30555 components: - type: Transform pos: 3.5,-44.5 parent: 2 - - uid: 39648 + - uid: 30556 components: - type: Transform pos: 14.5,-18.5 parent: 2 - - uid: 39657 + - uid: 30557 components: - type: Transform pos: 19.5,-26.5 parent: 2 - - uid: 39660 + - uid: 30558 components: - type: Transform pos: 8.5,-31.5 parent: 2 - - uid: 39662 + - uid: 30559 components: - type: Transform pos: 5.5,-27.5 parent: 2 - - uid: 39665 + - uid: 30560 components: - type: Transform pos: 5.5,-14.5 parent: 2 - - uid: 39666 + - uid: 30561 components: - type: Transform pos: -0.5,-13.5 parent: 2 - - uid: 39671 + - uid: 30562 components: - type: Transform pos: -14.5,-14.5 parent: 2 - - uid: 39675 - components: - - type: Transform - pos: -18.5,-21.5 - parent: 2 - - uid: 39681 + - uid: 30563 components: - type: Transform pos: -3.5,-36.5 parent: 2 - - uid: 39684 + - uid: 30564 components: - type: Transform pos: -8.5,-38.5 parent: 2 - - uid: 39685 + - uid: 30565 components: - type: Transform pos: -8.5,-41.5 parent: 2 - - uid: 39686 + - uid: 30566 components: - type: Transform pos: -7.5,-40.5 parent: 2 - - uid: 39687 + - uid: 30567 components: - type: Transform pos: 0.5,-56.5 parent: 2 - - uid: 39688 + - uid: 30568 components: - type: Transform pos: 0.5,-58.5 parent: 2 - - uid: 39689 + - uid: 30569 components: - type: Transform pos: 0.5,-57.5 parent: 2 - - uid: 39690 + - uid: 30570 components: - type: Transform pos: -2.5,-56.5 parent: 2 - - uid: 39691 + - uid: 30571 components: - type: Transform pos: -1.5,-64.5 parent: 2 - - uid: 39692 + - uid: 30572 components: - type: Transform pos: -3.5,-64.5 parent: 2 - - uid: 39697 + - uid: 30573 components: - type: Transform pos: -15.5,-58.5 parent: 2 - - uid: 39698 + - uid: 30574 components: - type: Transform pos: -18.5,-59.5 parent: 2 - - uid: 39713 + - uid: 30575 components: - type: Transform pos: 2.5,-30.5 parent: 2 - proto: SalvageSpawnerScrapCommon75 entities: - - uid: 39633 + - uid: 30576 components: - type: Transform pos: -10.5,-43.5 parent: 2 - - uid: 39635 + - uid: 30577 components: - type: Transform pos: -7.5,-43.5 parent: 2 - - uid: 39636 + - uid: 30578 components: - type: Transform pos: -3.5,-43.5 parent: 2 - - uid: 39637 + - uid: 30579 components: - type: Transform pos: 0.5,-43.5 parent: 2 - - uid: 39642 + - uid: 30580 components: - type: Transform pos: -10.5,-23.5 parent: 2 - - uid: 39647 + - uid: 30581 components: - type: Transform pos: 19.5,-13.5 parent: 2 - - uid: 39649 + - uid: 30582 components: - type: Transform pos: 20.5,-18.5 parent: 2 - - uid: 39652 + - uid: 30583 components: - type: Transform pos: 20.5,-16.5 parent: 2 - - uid: 39653 + - uid: 30584 components: - type: Transform pos: 19.5,-22.5 parent: 2 - - uid: 39658 + - uid: 30585 components: - type: Transform pos: 14.5,-30.5 parent: 2 - - uid: 39659 + - uid: 30586 components: - type: Transform pos: 11.5,-33.5 parent: 2 - - uid: 39661 + - uid: 30587 components: - type: Transform pos: 15.5,-33.5 parent: 2 - - uid: 39663 + - uid: 30588 components: - type: Transform pos: 5.5,-22.5 parent: 2 - - uid: 39664 + - uid: 30589 components: - type: Transform pos: 6.5,-18.5 parent: 2 - - uid: 39668 + - uid: 30590 components: - type: Transform pos: 3.5,-20.5 parent: 2 - - uid: 39669 + - uid: 30591 components: - type: Transform pos: 3.5,-15.5 parent: 2 - - uid: 39670 + - uid: 30592 components: - type: Transform pos: -9.5,-15.5 parent: 2 - - uid: 39676 + - uid: 30593 components: - type: Transform pos: -14.5,-21.5 parent: 2 - - uid: 39677 + - uid: 30594 components: - type: Transform pos: -9.5,-38.5 parent: 2 - - uid: 39678 + - uid: 30595 components: - type: Transform pos: -9.5,-33.5 parent: 2 - - uid: 39679 + - uid: 30596 components: - type: Transform pos: -6.5,-32.5 parent: 2 - - uid: 39680 + - uid: 30597 components: - type: Transform pos: -4.5,-32.5 parent: 2 - - uid: 39693 + - uid: 30598 components: - type: Transform pos: -1.5,-62.5 parent: 2 - - uid: 39694 + - uid: 30599 components: - type: Transform pos: -6.5,-61.5 parent: 2 - - uid: 39695 + - uid: 30600 components: - type: Transform pos: -13.5,-61.5 parent: 2 - - uid: 39696 + - uid: 30601 components: - type: Transform pos: -14.5,-59.5 parent: 2 - - uid: 39699 + - uid: 30602 components: - type: Transform pos: -20.5,-60.5 parent: 2 - - uid: 39700 + - uid: 30603 components: - type: Transform pos: -20.5,-59.5 parent: 2 - - uid: 39701 + - uid: 30604 components: - type: Transform pos: 5.5,-53.5 parent: 2 - - uid: 39702 + - uid: 30605 components: - type: Transform pos: 12.5,-53.5 parent: 2 - - uid: 39703 + - uid: 30606 components: - type: Transform pos: 20.5,-56.5 parent: 2 - - uid: 39704 + - uid: 30607 components: - type: Transform pos: 18.5,-51.5 parent: 2 - - uid: 39705 + - uid: 30608 components: - type: Transform pos: 20.5,-57.5 parent: 2 - - uid: 39709 + - uid: 30609 components: - type: Transform pos: -5.5,-48.5 parent: 2 - - uid: 39710 + - uid: 30610 components: - type: Transform pos: -7.5,-47.5 parent: 2 - - uid: 39711 + - uid: 30611 components: - type: Transform pos: -6.5,-53.5 parent: 2 - - uid: 39712 + - uid: 30612 components: - type: Transform pos: -5.5,-28.5 parent: 2 - - uid: 40943 + - uid: 30613 components: - type: Transform pos: 5.5,-16.5 parent: 2 - - uid: 40946 + - uid: 30614 components: - type: Transform pos: 6.5,-25.5 parent: 2 - - uid: 40947 + - uid: 30615 components: - type: Transform pos: 11.5,-32.5 parent: 2 - proto: SalvageSpawnerScrapValuable entities: - - uid: 39641 + - uid: 30616 components: - type: Transform pos: -10.5,-24.5 parent: 2 - - uid: 39651 + - uid: 30617 components: - type: Transform pos: 16.5,-18.5 parent: 2 - - uid: 39656 + - uid: 30618 components: - type: Transform pos: 15.5,-27.5 parent: 2 - - uid: 39667 + - uid: 30619 components: - type: Transform pos: -2.5,-20.5 parent: 2 - proto: SalvageSpawnerScrapValuable75 entities: - - uid: 39632 + - uid: 30620 components: - type: Transform pos: 2.5,-40.5 parent: 2 - - uid: 39639 + - uid: 30621 components: - type: Transform pos: -6.5,-40.5 parent: 2 - - uid: 39640 + - uid: 30622 components: - type: Transform pos: -11.5,-30.5 parent: 2 - - uid: 39650 + - uid: 30623 components: - type: Transform pos: 16.5,-15.5 parent: 2 - - uid: 39655 + - uid: 30624 components: - type: Transform pos: 20.5,-29.5 parent: 2 - - uid: 39672 + - uid: 30625 components: - type: Transform pos: -17.5,-13.5 parent: 2 - - uid: 39673 + - uid: 30626 components: - type: Transform pos: -3.5,-12.5 parent: 2 - - uid: 39674 + - uid: 30627 components: - type: Transform pos: -17.5,-24.5 parent: 2 - - uid: 39682 + - uid: 30628 components: - type: Transform pos: -1.5,-36.5 parent: 2 - - uid: 39683 + - uid: 30629 components: - type: Transform pos: -6.5,-38.5 parent: 2 - - uid: 39706 + - uid: 30630 components: - type: Transform pos: 16.5,-59.5 parent: 2 - - uid: 39707 + - uid: 30631 components: - type: Transform pos: 9.5,-57.5 parent: 2 - - uid: 39708 + - uid: 30632 components: - type: Transform pos: -1.5,-48.5 parent: 2 - proto: SalvageSpawnerTreasure entities: - - uid: 27895 + - uid: 30633 components: - type: Transform pos: 30.5,-82.5 parent: 2 - - uid: 39460 + - uid: 30634 components: - type: Transform pos: 16.5,-29.5 parent: 2 - - uid: 39616 + - uid: 30635 components: - type: Transform pos: 13.5,-55.5 parent: 2 - - uid: 39618 + - uid: 30636 components: - type: Transform pos: 7.5,-63.5 parent: 2 - - uid: 39620 + - uid: 30637 components: - type: Transform pos: -9.5,-47.5 parent: 2 - - uid: 39630 + - uid: 30638 components: - type: Transform pos: 9.5,-44.5 parent: 2 - proto: SalvageSpawnerTreasureValuable entities: - - uid: 26126 + - uid: 30639 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-45.5 parent: 2 - - uid: 26240 + - uid: 30640 components: - type: Transform pos: -8.5,-21.5 parent: 2 - - uid: 29044 + - uid: 30641 components: - type: Transform pos: -8.5,-27.5 parent: 2 - - uid: 39458 + - uid: 30642 components: - type: Transform pos: 9.5,-29.5 parent: 2 - - uid: 39459 + - uid: 30643 components: - type: Transform pos: 12.5,-25.5 parent: 2 - - uid: 39617 + - uid: 30644 components: - type: Transform pos: 12.5,-58.5 parent: 2 - - uid: 39619 + - uid: 30645 components: - type: Transform pos: -13.5,-54.5 parent: 2 - - uid: 39629 + - uid: 30646 components: - type: Transform pos: 11.5,-44.5 parent: 2 - - uid: 39631 + - uid: 30647 components: - type: Transform pos: 19.5,-35.5 parent: 2 - - uid: 39643 + - uid: 30648 components: - type: Transform pos: -19.5,-28.5 parent: 2 - - uid: 39644 + - uid: 30649 components: - type: Transform pos: -20.5,-20.5 parent: 2 - - uid: 39645 + - uid: 30650 components: - type: Transform pos: -17.5,-17.5 parent: 2 - - uid: 39646 + - uid: 30651 components: - type: Transform pos: 14.5,-14.5 parent: 2 - proto: Saw entities: - - uid: 27900 + - uid: 30652 components: - type: Transform pos: -23.331028,12.404118 parent: 2 - proto: SawElectric entities: - - uid: 27901 + - uid: 30653 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.497505,-20.12178 parent: 2 - - uid: 27902 + - uid: 30654 components: - type: Transform pos: -54.5,-40.5 parent: 2 - - uid: 33794 + - uid: 30655 components: - type: Transform pos: 79.50348,3.6160433 parent: 2 - proto: Scalpel entities: - - uid: 27903 + - uid: 30656 components: - type: Transform rot: 3.141592653589793 rad pos: -54.562984,-74.67941 parent: 2 - - uid: 27905 + - uid: 30657 components: - type: Transform rot: 1.5707963267948966 rad @@ -209951,64 +214284,64 @@ entities: parent: 2 - proto: ScalpelAdvanced entities: - - uid: 27906 + - uid: 30658 components: - type: Transform pos: -65.34498,-24.184916 parent: 2 - proto: ScalpelShiv entities: - - uid: 25662 + - uid: 27932 components: - type: Transform - parent: 25655 + parent: 27931 - type: Physics canCollide: False - - type: InsideEntityStorage - - uid: 30526 + - uid: 30660 components: - type: Transform - parent: 30522 + parent: 30659 - type: Physics canCollide: False + - type: InsideEntityStorage - proto: ScrapBucket entities: - - uid: 27907 + - uid: 30661 components: - type: Transform pos: -70.56499,-33.52585 parent: 2 - - uid: 27909 + - uid: 30662 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.631767,-92.20018 parent: 2 - - uid: 36739 + - uid: 30663 components: - type: Transform pos: 17.437597,-77.982605 parent: 2 - proto: ScrapCamera entities: - - uid: 27910 + - uid: 30664 components: - type: Transform pos: -55.621323,-73.251 parent: 2 - - uid: 27911 + - uid: 30665 components: - type: Transform rot: 3.141592653589793 rad pos: -41.21511,2.7374673 parent: 2 - - uid: 28054 + - uid: 30666 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.333366,-20.596882 parent: 2 - - uid: 32299 + - uid: 30667 components: - type: Transform rot: 1.5707963267948966 rad @@ -210016,174 +214349,174 @@ entities: parent: 2 - proto: ScrapCanister1 entities: - - uid: 37376 + - uid: 15197 components: - type: Transform - parent: 37259 + parent: 15196 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ScrapCanister2 entities: - - uid: 27912 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.097935,-95.122055 - parent: 2 - - uid: 37377 + - uid: 15198 components: - type: Transform - parent: 37259 + parent: 15196 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 30668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.097935,-95.122055 + parent: 2 - proto: ScrapCloset entities: - - uid: 27913 + - uid: 30669 components: - type: Transform pos: -63.546875,-28.46983 parent: 2 - proto: ScrapFaxMachine entities: - - uid: 19948 + - uid: 30670 components: - type: Transform pos: 20.500097,-78.43573 parent: 2 - - uid: 27914 + - uid: 30671 components: - type: Transform pos: 28.434269,20.70553 parent: 2 - - uid: 32772 + - uid: 30672 components: - type: Transform pos: 11.426223,-48.525284 parent: 2 - - uid: 35858 + - uid: 30673 components: - type: Transform pos: 52.506237,23.588875 parent: 2 - proto: ScrapFireExtinguisher entities: - - uid: 36696 - components: - - type: Transform - pos: 19.421972,-81.31073 - parent: 2 - - uid: 36786 + - uid: 119 components: - type: Transform - parent: 36777 + parent: 115 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 30674 + components: + - type: Transform + pos: 19.421972,-81.31073 + parent: 2 - proto: ScrapFirelock2 entities: - - uid: 36692 + - uid: 30675 components: - type: Transform pos: 20.437597,-81.43573 parent: 2 - proto: ScrapFirelock3 entities: - - uid: 27919 + - uid: 30676 components: - type: Transform pos: 20.45942,-79.495346 parent: 2 - proto: ScrapGlass entities: - - uid: 26671 + - uid: 30677 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.4699,-27.528883 parent: 2 - - uid: 26712 + - uid: 30678 components: - type: Transform pos: 11.506023,-29.345423 parent: 2 - - uid: 26713 + - uid: 30679 components: - type: Transform rot: 3.141592653589793 rad pos: 9.673025,-28.591383 parent: 2 - - uid: 26714 + - uid: 30680 components: - type: Transform rot: 3.141592653589793 rad pos: 8.7824,-29.513258 parent: 2 - - uid: 26720 + - uid: 30681 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.548025,-27.419508 parent: 2 - - uid: 32286 + - uid: 30682 components: - type: Transform pos: -18.703934,-52.541805 parent: 2 - - uid: 32287 + - uid: 30683 components: - type: Transform pos: -18.516434,-52.073055 parent: 2 - - uid: 32288 + - uid: 30684 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.375809,-51.30743 parent: 2 - - uid: 32289 + - uid: 30685 components: - type: Transform pos: -18.830847,-49.699318 parent: 2 - - uid: 32290 + - uid: 30686 components: - type: Transform rot: 3.141592653589793 rad pos: -16.391434,-53.15118 parent: 2 - - uid: 32291 + - uid: 30687 components: - type: Transform pos: -18.846472,-46.168068 parent: 2 - - uid: 32292 + - uid: 30688 components: - type: Transform rot: 3.141592653589793 rad pos: -18.469559,-46.30743 parent: 2 - - uid: 32293 + - uid: 30689 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.844559,-46.760555 parent: 2 - - uid: 32294 + - uid: 30690 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.844559,-47.135555 parent: 2 - - uid: 36740 + - uid: 30691 components: - type: Transform pos: 20.468847,-77.40448 parent: 2 - proto: ScrapIntercom entities: - - uid: 32295 + - uid: 30692 components: - type: Transform rot: 1.5707963267948966 rad @@ -210191,44 +214524,44 @@ entities: parent: 2 - proto: ScrapJetpack entities: - - uid: 1610 + - uid: 15801 components: - type: Transform - parent: 15635 + parent: 15799 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ScrapMedkit entities: - - uid: 27923 + - uid: 30693 components: - type: Transform pos: -57.552494,-73.46975 parent: 2 - - uid: 27924 + - uid: 30694 components: - type: Transform pos: -46.733677,-2.5892725 parent: 2 - - uid: 29116 + - uid: 30695 components: - type: Transform pos: -7.1269045,-35.218124 parent: 2 - - uid: 30504 + - uid: 30696 components: - type: Transform pos: -59.41938,-23.751842 parent: 2 - proto: ScrapMopBucket entities: - - uid: 27926 + - uid: 30697 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.459892,-91.48143 parent: 2 - - uid: 36133 + - uid: 30698 components: - type: Transform rot: -1.5707963267948966 rad @@ -210236,25 +214569,25 @@ entities: parent: 2 - proto: ScrapPAI entities: - - uid: 27928 + - uid: 30699 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.327427,4.702978 parent: 2 - - uid: 32296 + - uid: 30700 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.516434,-50.58868 parent: 2 - - uid: 32297 + - uid: 30701 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.594559,-51.198055 parent: 2 - - uid: 36694 + - uid: 30702 components: - type: Transform rot: -1.5707963267948966 rad @@ -210262,7 +214595,7 @@ entities: parent: 2 - proto: ScrapPAIGold entities: - - uid: 32303 + - uid: 30703 components: - type: Transform rot: 1.5707963267948966 rad @@ -210270,57 +214603,57 @@ entities: parent: 2 - proto: ScrapSteel entities: - - uid: 27929 + - uid: 30704 components: - type: Transform pos: -65.578125,-28.516705 parent: 2 - proto: ScrapTube entities: - - uid: 27930 + - uid: 30705 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.57467,-3.163485 parent: 2 - - uid: 27932 + - uid: 30706 components: - type: Transform pos: -48.746544,2.28964 parent: 2 - - uid: 30741 + - uid: 30707 components: - type: Transform pos: -18.237505,-33.873817 parent: 2 - - uid: 30742 + - uid: 30708 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.686209,-38.370293 parent: 2 - - uid: 34256 + - uid: 30709 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.8413906,-35.05935 parent: 2 - - uid: 34257 + - uid: 30710 components: - type: Transform pos: -6.9507656,-35.4656 parent: 2 - - uid: 39112 + - uid: 30711 components: - type: Transform pos: -2.1367316,-38.515892 parent: 2 - - uid: 39113 + - uid: 30712 components: - type: Transform pos: -1.2321386,-38.81543 parent: 2 - - uid: 39444 + - uid: 30713 components: - type: Transform rot: -1.5707963267948966 rad @@ -210328,270 +214661,270 @@ entities: parent: 2 - proto: Screen entities: - - uid: 17796 + - uid: 30714 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-34.5 parent: 2 - - uid: 27935 + - uid: 30715 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-8.5 parent: 2 - - uid: 27936 + - uid: 30716 components: - type: Transform pos: 12.5,15.5 parent: 2 - - uid: 27937 + - uid: 30717 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-67.5 parent: 2 - - uid: 27938 + - uid: 30718 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-53.5 parent: 2 - - uid: 27939 + - uid: 30719 components: - type: Transform pos: 6.5,15.5 parent: 2 - - uid: 27940 + - uid: 30720 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-85.5 parent: 2 - - uid: 27941 + - uid: 30721 components: - type: Transform pos: -17.5,-2.5 parent: 2 - - uid: 27942 + - uid: 30722 components: - type: Transform pos: 47.5,-30.5 parent: 2 - - uid: 27944 + - uid: 30723 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,0.5 parent: 2 - - uid: 27945 + - uid: 30724 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-30.5 parent: 2 - - uid: 27946 + - uid: 30725 components: - type: Transform pos: -23.5,2.5 parent: 2 - - uid: 27947 + - uid: 30726 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-30.5 parent: 2 - - uid: 27948 + - uid: 30727 components: - type: Transform pos: -3.5,-85.5 parent: 2 - - uid: 27949 + - uid: 30728 components: - type: Transform pos: -20.5,-68.5 parent: 2 - - uid: 27950 + - uid: 30729 components: - type: Transform pos: -30.5,-79.5 parent: 2 - - uid: 27951 + - uid: 30730 components: - type: Transform pos: -21.5,-90.5 parent: 2 - - uid: 27952 + - uid: 30731 components: - type: Transform pos: -31.5,-99.5 parent: 2 - - uid: 27953 + - uid: 30732 components: - type: Transform pos: -33.5,-48.5 parent: 2 - - uid: 27954 + - uid: 30733 components: - type: Transform pos: -45.5,-71.5 parent: 2 - - uid: 27955 + - uid: 30734 components: - type: Transform pos: -53.5,1.5 parent: 2 - - uid: 27956 + - uid: 30735 components: - type: Transform pos: -44.5,-8.5 parent: 2 - - uid: 27957 + - uid: 30736 components: - type: Transform pos: -60.5,-41.5 parent: 2 - - uid: 27958 + - uid: 30737 components: - type: Transform pos: -74.5,-34.5 parent: 2 - - uid: 27959 + - uid: 30738 components: - type: Transform pos: -29.5,15.5 parent: 2 - - uid: 27960 + - uid: 30739 components: - type: Transform pos: -6.5,7.5 parent: 2 - - uid: 27961 + - uid: 30740 components: - type: Transform pos: 8.5,5.5 parent: 2 - - uid: 27962 + - uid: 30741 components: - type: Transform pos: 15.5,10.5 parent: 2 - - uid: 27963 + - uid: 30742 components: - type: Transform pos: 28.5,15.5 parent: 2 - - uid: 27965 + - uid: 30743 components: - type: Transform pos: 48.5,-26.5 parent: 2 - - uid: 27971 + - uid: 30744 components: - type: Transform pos: 84.5,-20.5 parent: 2 - - uid: 27972 + - uid: 30745 components: - type: Transform pos: 84.5,-38.5 parent: 2 - - uid: 27973 + - uid: 30746 components: - type: Transform pos: 34.5,-51.5 parent: 2 - - uid: 27975 + - uid: 30747 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-77.5 parent: 2 - - uid: 27976 + - uid: 30748 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,18.5 parent: 2 - - uid: 27978 + - uid: 30749 components: - type: Transform pos: 37.5,8.5 parent: 2 - - uid: 27979 + - uid: 30750 components: - type: Transform pos: -33.5,-31.5 parent: 2 - - uid: 27980 + - uid: 30751 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-0.5 parent: 2 - - uid: 27981 + - uid: 30752 components: - type: Transform pos: 24.5,-74.5 parent: 2 - - uid: 27982 + - uid: 30753 components: - type: Transform pos: -35.5,-56.5 parent: 2 - - uid: 27983 + - uid: 30754 components: - type: Transform pos: -41.5,-62.5 parent: 2 - - uid: 27984 + - uid: 30755 components: - type: Transform pos: -52.5,-53.5 parent: 2 - - uid: 27985 + - uid: 30756 components: - type: Transform pos: -67.5,-70.5 parent: 2 - - uid: 27986 + - uid: 30757 components: - type: Transform pos: -43.5,-22.5 parent: 2 - - uid: 27987 + - uid: 30758 components: - type: Transform pos: -36.5,-94.5 parent: 2 - - uid: 27988 + - uid: 30759 components: - type: Transform pos: -16.5,-87.5 parent: 2 - - uid: 27989 + - uid: 30760 components: - type: Transform pos: 8.5,-85.5 parent: 2 - - uid: 27990 + - uid: 30761 components: - type: Transform pos: 37.5,-84.5 parent: 2 - - uid: 27991 + - uid: 30762 components: - type: Transform pos: 56.5,-101.5 parent: 2 - - uid: 27992 + - uid: 30763 components: - type: Transform pos: 101.5,-77.5 parent: 2 - proto: ScreenTimer entities: - - uid: 34754 + - uid: 30764 components: - type: Transform rot: -1.5707963267948966 rad @@ -210599,9 +214932,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 30485: + 887: - Timer: Open - - uid: 35788 + - uid: 30765 components: - type: Transform rot: -1.5707963267948966 rad @@ -210609,9 +214942,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 30485: + 887: - Timer: Open - - uid: 35796 + - uid: 30766 components: - type: Transform rot: -1.5707963267948966 rad @@ -210619,116 +214952,116 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 30485: + 887: - Timer: Open - proto: Screwdriver entities: - - uid: 27993 + - uid: 30767 components: - type: Transform pos: -40.500458,-72.39901 parent: 2 - - uid: 27994 + - uid: 30768 components: - type: Transform pos: -40.477272,-53.389786 parent: 2 - - uid: 27995 + - uid: 30769 components: - type: Transform rot: 1.5707963267948966 rad pos: -69.54843,-68.0869 parent: 2 - - uid: 27996 + - uid: 30770 components: - type: Transform pos: -40.521667,-63.102806 parent: 2 - - uid: 27997 + - uid: 30771 components: - type: Transform pos: -39.334404,-49.287586 parent: 2 - - uid: 27999 + - uid: 30772 components: - type: Transform pos: 106.44322,-59.276863 parent: 2 - - uid: 28000 + - uid: 30773 components: - type: Transform pos: -77.45838,-3.5979495 parent: 2 - - uid: 28001 + - uid: 30774 components: - type: Transform pos: 63.246994,-24.541302 parent: 2 - - uid: 28002 + - uid: 30775 components: - type: Transform pos: -57.50823,-89.7867 parent: 2 - - uid: 34273 + - uid: 30776 components: - type: Transform pos: -18.532417,-54.15476 parent: 2 - proto: SecurityTechFab entities: - - uid: 6020 + - uid: 30777 components: - type: Transform pos: 55.5,-17.5 parent: 2 - proto: SeedExtractor entities: - - uid: 23331 + - uid: 30778 components: - type: Transform pos: -10.5,-12.5 parent: 2 - - uid: 27219 + - uid: 30779 components: - type: Transform pos: 88.5,-3.5 parent: 2 - - uid: 28004 + - uid: 30780 components: - type: Transform pos: 37.5,15.5 parent: 2 - - uid: 28005 + - uid: 30781 components: - type: Transform pos: 45.5,24.5 parent: 2 - proto: SeismicCharge entities: - - uid: 471 + - uid: 26957 components: - type: Transform - parent: 24314 + parent: 26956 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 562 + - uid: 26959 components: - type: Transform - parent: 24315 + parent: 26958 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 783 + - uid: 26961 components: - type: Transform - parent: 24316 + parent: 26960 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ShadowBasaltFive entities: - - uid: 28007 + - uid: 30782 components: - type: Transform rot: 1.5707963267948966 rad @@ -210736,7 +215069,7 @@ entities: parent: 2 - proto: ShadowTree01 entities: - - uid: 28015 + - uid: 30783 components: - type: Transform rot: 3.141592653589793 rad @@ -210744,20 +215077,20 @@ entities: parent: 2 - proto: ShadowTree02 entities: - - uid: 28016 + - uid: 30784 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.848076,-42.58823 parent: 2 - - uid: 40091 + - uid: 30785 components: - type: Transform pos: -78.92212,-43.429893 parent: 2 - proto: ShadowTree03 entities: - - uid: 28017 + - uid: 30786 components: - type: Transform rot: 3.141592653589793 rad @@ -210765,77 +215098,77 @@ entities: parent: 2 - proto: ShadowTree04 entities: - - uid: 40090 + - uid: 30787 components: - type: Transform pos: -78.29712,-42.63302 parent: 2 - proto: ShadowTree05 entities: - - uid: 28019 + - uid: 30788 components: - type: Transform rot: 3.141592653589793 rad pos: 54.436615,-38.563526 parent: 2 - - uid: 28020 + - uid: 30789 components: - type: Transform rot: 3.141592653589793 rad pos: 52.13986,-41.63381 parent: 2 - - uid: 28021 + - uid: 30790 components: - type: Transform rot: 3.141592653589793 rad pos: 57.323536,-36.344776 parent: 2 - - uid: 28022 + - uid: 30791 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.30508,-36.11948 parent: 2 - - uid: 28023 + - uid: 30792 components: - type: Transform pos: 51.046253,-39.34478 parent: 2 - proto: ShadowTree06 entities: - - uid: 28024 + - uid: 30793 components: - type: Transform rot: 3.141592653589793 rad pos: 47.92312,-36.813526 parent: 2 - - uid: 28025 + - uid: 30794 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.25537,-42.572605 parent: 2 - - uid: 40089 + - uid: 30795 components: - type: Transform pos: -79.812744,-42.25802 parent: 2 - proto: ShardCrystalBlue entities: - - uid: 30828 + - uid: 30796 components: - type: Transform pos: -19.476284,-32.55245 parent: 2 - proto: ShardCrystalCyan entities: - - uid: 30845 + - uid: 30797 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.491909,-33.55245 parent: 2 - - uid: 30848 + - uid: 30798 components: - type: Transform rot: -1.5707963267948966 rad @@ -210843,13 +215176,13 @@ entities: parent: 2 - proto: ShardCrystalGreen entities: - - uid: 30840 + - uid: 30799 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.491909,-34.380573 parent: 2 - - uid: 30847 + - uid: 30800 components: - type: Transform rot: -1.5707963267948966 rad @@ -210857,222 +215190,217 @@ entities: parent: 2 - proto: ShardGlass entities: - - uid: 7704 - components: - - type: Transform - pos: -16.083845,5.681999 - parent: 2 - - uid: 23152 + - uid: 30801 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.269863,-24.328241 parent: 2 - - uid: 24716 + - uid: 30802 components: - type: Transform pos: -59.519863,-24.468866 parent: 2 - - uid: 28026 + - uid: 30803 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.617794,-17.137949 parent: 2 - - uid: 28027 + - uid: 30804 components: - type: Transform rot: 3.141592653589793 rad pos: 32.805294,-17.294199 parent: 2 - - uid: 28028 + - uid: 30805 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.667639,-92.29241 parent: 2 - - uid: 28029 + - uid: 30806 components: - type: Transform pos: 82.788605,-47.626904 parent: 2 - - uid: 28030 + - uid: 30807 components: - type: Transform pos: -40.266464,-120.727844 parent: 2 - - uid: 28031 + - uid: 30808 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.610214,-120.43097 parent: 2 - - uid: 28032 + - uid: 30809 components: - type: Transform pos: -19.355139,-92.63616 parent: 2 - - uid: 28033 + - uid: 30810 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.504883,-74.22458 parent: 2 - - uid: 28034 + - uid: 30811 components: - type: Transform pos: -15.428448,-88.055504 parent: 2 - - uid: 28035 + - uid: 30812 components: - type: Transform rot: 3.141592653589793 rad pos: -18.522861,-92.66488 parent: 2 - - uid: 28036 + - uid: 30813 components: - type: Transform rot: 3.141592653589793 rad pos: -61.654205,-61.93288 parent: 2 - - uid: 28037 + - uid: 30814 components: - type: Transform pos: -50.87996,-93.75323 parent: 2 - - uid: 28038 + - uid: 30815 components: - type: Transform pos: -44.64952,14.121485 parent: 2 - - uid: 28039 + - uid: 30816 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.852646,14.371485 parent: 2 - - uid: 28040 + - uid: 30817 components: - type: Transform pos: -45.071396,15.35586 parent: 2 - - uid: 28041 + - uid: 30818 components: - type: Transform pos: -50.42549,12.25241 parent: 2 - - uid: 28042 + - uid: 30819 components: - type: Transform rot: 3.141592653589793 rad pos: -50.39424,12.518035 parent: 2 - - uid: 28043 + - uid: 30820 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.83548,-44.64253 parent: 2 - - uid: 28044 + - uid: 30821 components: - type: Transform rot: 3.141592653589793 rad pos: 83.132355,-47.189404 parent: 2 - - uid: 28045 + - uid: 30822 components: - type: Transform pos: -48.367764,-73.368095 parent: 2 - - uid: 28046 + - uid: 30823 components: - type: Transform rot: 3.141592653589793 rad pos: -51.64161,-69.74597 parent: 2 - - uid: 28047 + - uid: 30824 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.592781,-96.212814 parent: 2 - - uid: 28048 + - uid: 30825 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.067839,-102.822 parent: 2 - - uid: 28049 + - uid: 30826 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.567839,-100.322 parent: 2 - - uid: 28050 + - uid: 30827 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.505339,-94.38774 parent: 2 - - uid: 28051 + - uid: 30828 components: - type: Transform rot: 1.5707963267948966 rad pos: -83.229996,0.50308794 parent: 2 - - uid: 28052 + - uid: 30829 components: - type: Transform pos: -83.542496,0.20621294 parent: 2 - - uid: 34238 + - uid: 30830 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.4820156,-36.37185 parent: 2 - - uid: 34246 + - uid: 30831 components: - type: Transform pos: -6.5132656,-35.5281 parent: 2 - - uid: 34247 + - uid: 30832 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.4195156,-35.49685 parent: 2 - - uid: 34248 + - uid: 30833 components: - type: Transform rot: 3.141592653589793 rad pos: -2.6070156,-34.699974 parent: 2 - - uid: 34249 + - uid: 30834 components: - type: Transform rot: 3.141592653589793 rad pos: -2.4976406,-35.9656 parent: 2 - - uid: 34250 + - uid: 30835 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.4351406,-36.387474 parent: 2 - - uid: 34251 + - uid: 30836 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.2788906,-34.699974 parent: 2 - - uid: 34252 + - uid: 30837 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.9976406,-35.543724 parent: 2 - - uid: 34253 + - uid: 30838 components: - type: Transform rot: -1.5707963267948966 rad @@ -211080,497 +215408,497 @@ entities: parent: 2 - proto: ShardGlassClockwork entities: - - uid: 27127 + - uid: 30839 components: - type: Transform pos: -3.5394654,-24.44878 parent: 2 - - uid: 27128 + - uid: 30840 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.3519654,-23.745655 parent: 2 - - uid: 29034 + - uid: 30841 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.3832154,-24.495655 parent: 2 - - uid: 29035 + - uid: 30842 components: - type: Transform pos: -2.7582154,-24.07378 parent: 2 - proto: ShardGlassReinforced entities: - - uid: 28057 + - uid: 30843 components: - type: Transform pos: -47.393623,-3.4966693 parent: 2 - - uid: 28058 + - uid: 30844 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.22956,-4.0591693 parent: 2 - - uid: 28059 + - uid: 30845 components: - type: Transform rot: 3.141592653589793 rad pos: -51.120186,-0.8951067 parent: 2 - - uid: 28060 + - uid: 30846 components: - type: Transform rot: 3.141592653589793 rad pos: -41.956123,3.9095807 parent: 2 - - uid: 28061 + - uid: 30847 components: - type: Transform pos: -49.95662,-3.721847 parent: 2 - proto: SheetGlass entities: - - uid: 28062 + - uid: 30848 components: - type: Transform pos: 53.44892,-71.3276 parent: 2 - - uid: 28063 + - uid: 30849 components: - type: Transform pos: 55.44525,-83.67908 parent: 2 - - uid: 28064 + - uid: 30850 components: - type: Transform pos: -34.957054,-46.520668 parent: 2 - - uid: 28065 + - uid: 30851 components: - type: Transform pos: -40.497078,-65.463104 parent: 2 - - uid: 28066 + - uid: 30852 components: - type: Transform pos: 64.53812,-56.449234 parent: 2 - - uid: 28067 + - uid: 30853 components: - type: Transform pos: 59.58997,-62.50439 parent: 2 - proto: SheetGlass10 entities: - - uid: 14240 + - uid: 16235 components: - type: Transform - parent: 14238 + parent: 16234 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15240 + - uid: 16241 components: - type: Transform - parent: 15239 + parent: 16238 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 25357 + - uid: 30854 components: - type: Transform pos: 54.55451,-17.382858 parent: 2 - - uid: 28070 + - uid: 30855 components: - type: Transform pos: 65.56204,-29.423748 parent: 2 - - uid: 28071 + - uid: 30856 components: - type: Transform pos: 70.567665,-28.923752 parent: 2 - - uid: 28072 + - uid: 30857 components: - type: Transform pos: 62.508224,-28.783127 parent: 2 - - uid: 28073 + - uid: 30858 components: - type: Transform pos: 47.433495,-46.246605 parent: 2 - - uid: 28074 + - uid: 30859 components: - type: Transform pos: 67.446106,-26.844027 parent: 2 - proto: Sheetifier entities: - - uid: 16858 + - uid: 30860 components: - type: Transform pos: -16.5,-21.5 parent: 2 - proto: SheetPlasma entities: - - uid: 28075 + - uid: 30861 components: - type: Transform pos: -46.49739,-84.645035 parent: 2 - proto: SheetPlasma1 entities: - - uid: 28077 + - uid: 30862 components: - type: Transform pos: -38.38237,-34.389435 parent: 2 - - uid: 37922 + - uid: 40863 components: - type: Transform - parent: 37919 + parent: 40860 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 38441 + - uid: 41388 components: - type: Transform pos: -2.52359,-11.4122925 - parent: 37887 + parent: 40828 - proto: SheetPlasteel entities: - - uid: 28078 + - uid: 30863 components: - type: Transform pos: 41.53919,-35.42091 parent: 2 - - uid: 28079 + - uid: 30864 components: - type: Transform pos: 109.5,-20.5 parent: 2 - - uid: 28080 + - uid: 30865 components: - type: Transform pos: -69.63428,-18.463882 parent: 2 - - uid: 28081 + - uid: 30866 components: - type: Transform pos: 44.476467,-66.490685 parent: 2 - - uid: 38442 + - uid: 41389 components: - type: Transform pos: -1.3938599,-8.498901 - parent: 37887 + parent: 40828 - proto: SheetPlastic entities: - - uid: 28084 + - uid: 30867 components: - type: Transform pos: 55.57025,-83.65593 parent: 2 - - uid: 28085 + - uid: 30868 components: - type: Transform pos: -35.44143,-46.50042 parent: 2 - proto: SheetPlastic1 entities: - - uid: 36743 + - uid: 30869 components: - type: Transform pos: 17.468847,-79.388855 parent: 2 - - uid: 36744 + - uid: 30870 components: - type: Transform pos: 17.515722,-79.71698 parent: 2 - proto: SheetPlastic10 entities: - - uid: 14241 + - uid: 16236 components: - type: Transform - parent: 14238 + parent: 16234 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15241 + - uid: 16239 components: - type: Transform - parent: 15239 + parent: 16238 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24242 + - uid: 30871 components: - type: Transform pos: 54.570133,-17.398483 parent: 2 - - uid: 28086 + - uid: 30872 components: - type: Transform pos: 62.47599,-24.507683 parent: 2 - - uid: 28087 + - uid: 30873 components: - type: Transform pos: 70.48095,-28.648754 parent: 2 - - uid: 28088 + - uid: 30874 components: - type: Transform pos: 66.26648,-27.273754 parent: 2 - - uid: 28089 + - uid: 30875 components: - type: Transform pos: 47.370995,-46.215355 parent: 2 - proto: SheetRGlass entities: - - uid: 28090 + - uid: 30876 components: - type: Transform pos: 48.578438,-99.54292 parent: 2 - - uid: 28091 + - uid: 30877 components: - type: Transform pos: 41.273823,-35.403816 parent: 2 - - uid: 28092 + - uid: 30878 components: - type: Transform pos: 109.49066,-21.074211 parent: 2 - - uid: 28093 + - uid: 30879 components: - type: Transform pos: -70.41553,-18.448257 parent: 2 - - uid: 28094 + - uid: 30880 components: - type: Transform pos: 44.030502,-66.46955 parent: 2 - - uid: 28096 + - uid: 30881 components: - type: Transform pos: 96.5,-62.5 parent: 2 - - uid: 38443 + - uid: 41390 components: - type: Transform pos: -1.4216461,-8.443329 - parent: 37887 + parent: 40828 - proto: SheetSteel entities: - - uid: 2878 - components: - - type: Transform - pos: 54.538883,-17.367233 - parent: 2 - - uid: 14646 + - uid: 24 components: - type: Transform - parent: 14644 + parent: 20 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14649 + - uid: 29 components: - type: Transform - parent: 14647 + parent: 25 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14652 + - uid: 34 components: - type: Transform - parent: 14650 + parent: 30 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 28097 + - uid: 30882 + components: + - type: Transform + pos: 54.538883,-17.367233 + parent: 2 + - uid: 30883 components: - type: Transform pos: 43.271183,-94.06305 parent: 2 - - uid: 28098 + - uid: 30884 components: - type: Transform rot: 3.141592653589793 rad pos: 49.135277,-99.641846 parent: 2 - - uid: 28099 + - uid: 30885 components: - type: Transform pos: 53.48587,-71.414856 parent: 2 - - uid: 28100 + - uid: 30886 components: - type: Transform pos: 55.338768,-83.71651 parent: 2 - - uid: 28101 + - uid: 30887 components: - type: Transform pos: -34.50393,-46.520668 parent: 2 - - uid: 28102 + - uid: 30888 components: - type: Transform pos: -50.76387,-74.3849 parent: 2 - - uid: 28103 + - uid: 30889 components: - type: Transform pos: 96.5,-63.5 parent: 2 - - uid: 38444 + - uid: 41391 components: - type: Transform pos: -1.5466461,-8.3461 - parent: 37887 + parent: 40828 - proto: SheetSteel1 entities: - - uid: 10805 + - uid: 30890 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.491547,23.44179 parent: 2 - - uid: 28104 + - uid: 30891 components: - type: Transform pos: -44.665367,13.338547 parent: 2 - - uid: 28105 + - uid: 30892 components: - type: Transform rot: 3.141592653589793 rad pos: -64.109406,-34.152622 parent: 2 - - uid: 28106 + - uid: 30893 components: - type: Transform rot: 3.141592653589793 rad pos: -62.78128,-32.324497 parent: 2 - - uid: 28107 + - uid: 30894 components: - type: Transform rot: 3.141592653589793 rad pos: -65.62503,-32.574497 parent: 2 - - uid: 28108 + - uid: 30895 components: - type: Transform pos: -44.446617,13.276047 parent: 2 - - uid: 28109 + - uid: 30896 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.83551,-8.311489 parent: 2 - - uid: 28110 + - uid: 30897 components: - type: Transform rot: 3.141592653589793 rad pos: -85.41587,1.1535509 parent: 2 - - uid: 28111 + - uid: 30898 components: - type: Transform pos: -85.57212,0.95042586 parent: 2 - - uid: 34975 + - uid: 30899 components: - type: Transform pos: 52.472706,22.654556 parent: 2 - - uid: 36741 + - uid: 30900 components: - type: Transform pos: 17.421972,-80.52948 parent: 2 - - uid: 36742 + - uid: 30901 components: - type: Transform pos: 17.500097,-80.826355 parent: 2 - proto: SheetSteel10 entities: - - uid: 14242 + - uid: 16237 components: - type: Transform - parent: 14238 + parent: 16234 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15242 + - uid: 16240 components: - type: Transform - parent: 15239 + parent: 16238 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 28123 + - uid: 30902 components: - type: Transform pos: 62.51648,-29.074066 parent: 2 - - uid: 28124 + - uid: 30903 components: - type: Transform pos: 70.61983,-29.107708 parent: 2 - - uid: 28125 + - uid: 30904 components: - type: Transform pos: 62.540604,-29.245941 parent: 2 - - uid: 28126 + - uid: 30905 components: - type: Transform pos: -27.4678,-78.41147 parent: 2 - - uid: 28127 + - uid: 30906 components: - type: Transform pos: 67.37234,-26.750244 parent: 2 - - uid: 28128 + - uid: 30907 components: - type: Transform pos: 47.402245,-46.246605 parent: 2 - - uid: 28129 + - uid: 30908 components: - type: Transform pos: -69.051704,-67.88417 parent: 2 - - uid: 34381 + - uid: 30909 components: - type: Transform pos: -0.5737078,-71.20553 parent: 2 - proto: SheetUranium1 entities: - - uid: 15216 + - uid: 16201 components: - type: Transform - parent: 15215 + parent: 16200 - type: Stack count: 20 - type: Physics @@ -211578,41 +215906,41 @@ entities: - type: InsideEntityStorage - proto: ShelfBar entities: - - uid: 41152 + - uid: 18721 components: - type: Transform pos: 25.5,4.5 parent: 2 - type: Storage storedItems: - 17683: + 18730: position: 0,0 _rotation: South - 17675: + 18729: position: 1,0 _rotation: South - 41153: + 18731: position: 2,3 _rotation: South - 41154: + 18722: position: 1,3 _rotation: South - 41155: + 18724: position: 4,0 _rotation: South - 41156: + 18725: position: 5,0 _rotation: South - 41157: + 18726: position: 4,3 _rotation: South - 41158: + 18727: position: 2,0 _rotation: South - 41159: + 18728: position: 3,0 _rotation: South - 41160: + 18723: position: 0,3 _rotation: South - type: ContainerContainer @@ -211621,72 +215949,78 @@ entities: showEnts: False occludes: True ents: - - 17683 - - 17675 - - 41154 - - 41155 - - 41156 - - 41153 - - 41158 - - 41159 - - 41157 - - 41160 + - 18730 + - 18729 + - 18722 + - 18724 + - 18725 + - 18731 + - 18727 + - 18728 + - 18726 + - 18723 + - uid: 30910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,17.5 + parent: 2 - proto: ShelfChemistry entities: - - uid: 34244 + - uid: 30911 components: - type: Transform pos: -2.5,-33.5 parent: 2 - proto: ShelfChemistryChemistrySecure entities: - - uid: 37041 + - uid: 1980 components: - type: Transform pos: -38.5,-27.5 parent: 2 - type: Storage storedItems: - 37184: + 1988: position: 0,0 _rotation: South - 40779: + 1993: position: 1,0 _rotation: South - 41032: + 1986: position: 2,0 _rotation: South - 41024: + 1994: position: 1,1 _rotation: South - 41025: + 1989: position: 0,1 _rotation: South - 41026: + 1992: position: 0,3 _rotation: South - 41027: + 1981: position: 5,0 _rotation: South - 41028: + 1982: position: 2,3 _rotation: South - 41029: + 1990: position: 4,3 _rotation: South - 41030: + 1991: position: 3,0 _rotation: South - 41031: + 1987: position: 2,1 _rotation: South - 41033: + 1983: position: 2,4 _rotation: South - 41034: + 1984: position: 3,3 _rotation: South - 41035: + 1985: position: 3,4 _rotation: South - type: ContainerContainer @@ -211695,23 +216029,23 @@ entities: showEnts: False occludes: True ents: - - 37184 - - 41026 - - 41027 - - 41029 - - 41025 - - 41024 - - 41030 - - 41031 - - 40779 - - 41032 - - 41028 - - 41033 - - 41034 - - 41035 + - 1988 + - 1992 + - 1981 + - 1990 + - 1989 + - 1994 + - 1991 + - 1987 + - 1993 + - 1986 + - 1982 + - 1983 + - 1984 + - 1985 - proto: ShelfKitchen entities: - - uid: 1994 + - uid: 18798 components: - type: Transform rot: 1.5707963267948966 rad @@ -211719,58 +216053,58 @@ entities: parent: 2 - type: Storage storedItems: - 25363: + 18814: position: 0,0 _rotation: South - 2034: + 18816: position: 2,0 _rotation: South - 10944: + 18815: position: 0,3 _rotation: South - 17883: + 18800: position: 5,3 _rotation: South - 23773: + 18802: position: 3,0 _rotation: South - 24659: + 18809: position: 4,1 _rotation: South - 24651: + 18810: position: 3,1 _rotation: South - 24652: + 18799: position: 5,0 _rotation: South - 25075: + 18801: position: 2,3 _rotation: South - 33756: + 18804: position: 3,3 _rotation: South - 24650: + 18807: position: 4,0 _rotation: South - 25340: + 18813: position: 0,1 _rotation: North - 24639: + 18811: position: 1,3 _rotation: South - 25213: + 18812: position: 4,3 _rotation: South - 28068: + 18806: position: 2,4 _rotation: South - 30611: + 18808: position: 4,4 _rotation: South - 34324: + 18805: position: 1,4 _rotation: South - 34327: + 18803: position: 3,4 _rotation: South - type: ContainerContainer @@ -211779,27 +216113,27 @@ entities: showEnts: False occludes: True ents: - - 2034 - - 10944 - - 17883 - - 24652 - - 25340 - - 25363 - - 23773 - - 24650 - - 24651 - - 24659 - - 25075 - - 25213 - - 28068 - - 30611 - - 24639 - - 33756 - - 34324 - - 34327 + - 18816 + - 18815 + - 18800 + - 18799 + - 18813 + - 18814 + - 18802 + - 18807 + - 18810 + - 18809 + - 18801 + - 18812 + - 18806 + - 18808 + - 18811 + - 18804 + - 18805 + - 18803 - proto: ShelfRGlass entities: - - uid: 27043 + - uid: 35 components: - type: MetaData name: препараты психолога @@ -211809,62 +216143,70 @@ entities: parent: 2 - type: Storage storedItems: - 17813: + 41: position: 0,0 _rotation: South - 17816: + 45: position: 1,0 _rotation: South - 17817: + 46: position: 0,1 _rotation: South - 11469: + 39: position: 3,3 _rotation: South - 11468: + 38: position: 3,4 _rotation: South - 17815: + 44: position: 0,3 _rotation: South - 11467: + 40: position: 2,4 _rotation: South - 11464: + 42: position: 2,3 _rotation: South - 17814: + 43: position: 2,0 _rotation: East - 17822: + 51: position: 1,1 _rotation: South + 36: + position: 2,1 + _rotation: South + 52: + position: 3,1 + _rotation: South - type: ContainerContainer containers: storagebase: !type:Container showEnts: False occludes: True ents: - - 17813 - - 17816 - - 17815 - - 11464 - - 17817 - - 11467 - - 17814 - - 11469 - - 11468 - - 17822 + - 41 + - 45 + - 44 + - 42 + - 46 + - 40 + - 43 + - 39 + - 38 + - 51 + - 36 + - 52 - proto: ShelfRMetal entities: - - uid: 41150 + - uid: 2356 components: - type: Transform pos: -81.5,-6.5 parent: 2 - type: Storage storedItems: - 41151: + 2357: position: 0,0 _rotation: East - type: ContainerContainer @@ -211873,1154 +216215,1130 @@ entities: showEnts: False occludes: True ents: - - 41151 + - 2357 - proto: ShellShotgunBeanbag entities: - - uid: 2596 + - uid: 30913 components: - type: Transform - parent: 2595 + parent: 30912 - type: Physics canCollide: False - - uid: 2597 + - uid: 30914 components: - type: Transform - parent: 2595 + parent: 30912 - type: Physics canCollide: False - - uid: 2601 + - uid: 30915 components: - type: Transform - parent: 2595 + parent: 30912 - type: Physics canCollide: False - - uid: 2603 + - uid: 30916 components: - type: Transform - parent: 2595 + parent: 30912 - type: Physics canCollide: False - - uid: 2642 + - uid: 30918 components: - type: Transform - parent: 2616 + parent: 30917 - type: Physics canCollide: False - - uid: 2692 + - uid: 30919 components: - type: Transform - parent: 2616 + parent: 30917 - type: Physics canCollide: False - - uid: 2703 + - uid: 30920 components: - type: Transform - parent: 2616 + parent: 30917 - type: Physics canCollide: False - - uid: 2721 + - uid: 30921 components: - type: Transform - parent: 2616 + parent: 30917 - type: Physics canCollide: False - - uid: 2770 + - uid: 30923 components: - type: Transform - parent: 2722 + parent: 30922 - type: Physics canCollide: False - - uid: 2788 + - uid: 30924 components: - type: Transform - parent: 2722 + parent: 30922 - type: Physics canCollide: False - - uid: 2799 + - uid: 30925 components: - type: Transform - parent: 2722 + parent: 30922 - type: Physics canCollide: False - - uid: 2810 + - uid: 30926 components: - type: Transform - parent: 2722 + parent: 30922 - type: Physics canCollide: False - proto: ShellShotgunImprovised entities: - - uid: 28131 + - uid: 30927 components: - type: Transform pos: -72.30226,-1.8524003 parent: 2 - proto: ShippingContainerBlank entities: - - uid: 27916 + - uid: 30928 components: - type: Transform pos: -16.5,-56.5 parent: 2 - - uid: 27918 + - uid: 30929 components: - type: Transform pos: -13.5,-57.5 parent: 2 - - uid: 27920 + - uid: 30930 components: - type: Transform pos: 10.5,-61.5 parent: 2 - - uid: 27922 + - uid: 30931 components: - type: Transform pos: 18.5,-59.5 parent: 2 - - uid: 40952 + - uid: 30932 components: - type: Transform pos: 18.5,-60.5 parent: 2 - proto: ShippingContainerConarex entities: - - uid: 7144 + - uid: 30933 components: - type: Transform pos: 7.5,-56.5 parent: 2 - - uid: 14473 + - uid: 30934 components: - type: Transform pos: 7.5,-55.5 parent: 2 - - uid: 27931 + - uid: 30935 components: - type: Transform pos: 17.5,-56.5 parent: 2 - proto: ShippingContainerCybersun entities: - - uid: 25134 + - uid: 30936 components: - type: Transform pos: 2.5,-56.5 parent: 2 - - uid: 28132 + - uid: 30937 components: - type: Transform pos: 14.5,-92.5 parent: 2 - proto: ShippingContainerDonkCo entities: - - uid: 28133 + - uid: 30938 components: - type: Transform pos: 14.5,-90.5 parent: 2 - proto: ShippingContainerGorlex entities: - - uid: 7143 + - uid: 30939 components: - type: Transform pos: 8.5,-59.5 parent: 2 - - uid: 9016 + - uid: 30940 components: - type: Transform pos: 10.5,-55.5 parent: 2 - - uid: 11121 + - uid: 30941 components: - type: Transform pos: 2.5,-57.5 parent: 2 - - uid: 27974 + - uid: 30942 components: - type: Transform pos: 11.5,-56.5 parent: 2 - proto: ShippingContainerGorlexRed entities: - - uid: 7145 + - uid: 30943 components: - type: Transform pos: 4.5,-55.5 parent: 2 - proto: ShippingContainerInterdyne entities: - - uid: 9027 + - uid: 30944 components: - type: Transform pos: 3.5,-59.5 parent: 2 - - uid: 14801 + - uid: 30945 components: - type: Transform pos: 3.5,-58.5 parent: 2 - proto: ShippingContainerKosmologistika entities: - - uid: 13418 + - uid: 30946 components: - type: Transform pos: 1.5,-60.5 parent: 2 - proto: ShippingContainerNakamura entities: - - uid: 28134 + - uid: 30947 components: - type: Transform pos: 10.5,-92.5 parent: 2 - proto: ShippingContainerNanotrasen entities: - - uid: 4827 + - uid: 30948 components: - type: Transform pos: -9.5,-56.5 parent: 2 - - uid: 8765 + - uid: 30949 components: - type: Transform pos: 14.5,-53.5 parent: 2 - - uid: 9026 + - uid: 30950 components: - type: Transform pos: 14.5,-57.5 parent: 2 - - uid: 14803 + - uid: 30951 components: - type: Transform pos: 14.5,-58.5 parent: 2 - - uid: 14804 + - uid: 30952 components: - type: Transform pos: 14.5,-59.5 parent: 2 - - uid: 27137 + - uid: 30953 components: - type: Transform pos: 0.5,-62.5 parent: 2 - - uid: 27880 + - uid: 30954 components: - type: Transform pos: -8.5,-57.5 parent: 2 - - uid: 28135 + - uid: 30955 components: - type: Transform pos: 10.5,-89.5 parent: 2 - - uid: 28864 + - uid: 30956 components: - type: Transform pos: -17.5,-61.5 parent: 2 - - uid: 33827 + - uid: 30957 components: - type: Transform pos: 17.5,-49.5 parent: 2 - proto: ShippingContainerVitezstvi entities: - - uid: 11644 + - uid: 30958 components: - type: Transform pos: 1.5,-61.5 parent: 2 - proto: ShotGunCabinetFilled entities: - - uid: 15834 + - uid: 30959 components: - type: Transform pos: 52.5,-20.5 parent: 2 - - uid: 17795 + - uid: 30960 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,22.5 parent: 2 - - uid: 38445 + - uid: 41392 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-10.5 - parent: 37887 + parent: 40828 - proto: Shovel entities: - - uid: 28137 + - uid: 30961 components: - type: Transform pos: 34.49214,30.562294 parent: 2 - proto: ShowcaseRobot entities: - - uid: 5915 + - uid: 30962 components: - type: Transform pos: -13.5,-48.5 parent: 2 - proto: ShowcaseRobotAntique entities: - - uid: 30915 + - uid: 30963 components: - type: Transform pos: -15.5,-48.5 parent: 2 - proto: ShowcaseRobotMarauder entities: - - uid: 26036 + - uid: 30964 components: - type: Transform pos: -11.5,-48.5 parent: 2 - proto: ShowcaseRobotWhite entities: - - uid: 32263 + - uid: 30965 components: - type: Transform pos: -14.5,-48.5 parent: 2 - proto: ShuttersNormal entities: - - uid: 28139 + - uid: 30966 components: - type: Transform pos: -46.5,-75.5 parent: 2 - - uid: 28140 + - uid: 30967 components: - type: Transform pos: -46.5,-74.5 parent: 2 - - uid: 28141 + - uid: 30968 components: - type: Transform pos: -46.5,-73.5 parent: 2 - - uid: 28142 + - uid: 30969 components: - type: Transform pos: -51.5,-70.5 parent: 2 - - uid: 28143 + - uid: 30970 components: - type: Transform pos: -35.5,-71.5 parent: 2 - - uid: 28144 + - uid: 30971 components: - type: Transform pos: -49.5,-70.5 parent: 2 - - uid: 28145 + - uid: 30972 components: - type: Transform pos: -50.5,-70.5 parent: 2 - - uid: 28146 + - uid: 30973 components: - type: Transform pos: -48.5,-70.5 parent: 2 - - uid: 28147 + - uid: 30974 components: - type: Transform pos: 17.5,2.5 parent: 2 - - uid: 28148 + - uid: 30975 components: - type: Transform pos: 16.5,2.5 parent: 2 - - uid: 28149 + - uid: 30976 components: - type: Transform pos: 8.5,2.5 parent: 2 - - uid: 28150 + - uid: 30977 components: - type: Transform pos: 7.5,2.5 parent: 2 - - uid: 28154 + - uid: 30978 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-51.5 parent: 2 - - uid: 28155 + - uid: 30979 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-52.5 parent: 2 - - uid: 28156 + - uid: 30980 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-53.5 parent: 2 - - uid: 28157 + - uid: 30981 components: - type: Transform pos: -47.5,-70.5 parent: 2 - proto: ShuttersNormalOpen entities: - - uid: 484 + - uid: 30982 components: - type: Transform pos: 63.5,-34.5 parent: 2 - - uid: 22087 + - uid: 30983 components: - type: Transform pos: 52.5,-6.5 parent: 2 - - uid: 22088 + - uid: 30984 components: - type: Transform pos: 51.5,-6.5 parent: 2 - - uid: 26386 + - uid: 30985 components: - type: Transform pos: 45.5,-3.5 parent: 2 - - uid: 26501 + - uid: 30986 components: - type: Transform pos: 45.5,-5.5 parent: 2 - - uid: 28158 + - uid: 30987 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-13.5 parent: 2 - - uid: 28159 + - uid: 30988 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,2.5 parent: 2 - - uid: 28160 + - uid: 30989 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,3.5 parent: 2 - - uid: 28161 + - uid: 30990 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,0.5 parent: 2 - - uid: 28162 + - uid: 30991 components: - type: Transform pos: 31.5,8.5 parent: 2 - - uid: 28163 + - uid: 30992 components: - type: Transform pos: 30.5,8.5 parent: 2 - - uid: 28164 + - uid: 30993 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,7.5 parent: 2 - - uid: 28165 + - uid: 30994 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,10.5 parent: 2 - - uid: 28166 + - uid: 30995 components: - type: Transform pos: 74.5,-51.5 parent: 2 - - uid: 28167 + - uid: 30996 components: - type: Transform pos: 75.5,-51.5 parent: 2 - - uid: 28168 + - uid: 30997 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,12.5 parent: 2 - - uid: 28169 + - uid: 30998 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,13.5 parent: 2 - - uid: 28170 + - uid: 30999 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,14.5 parent: 2 - - uid: 28171 + - uid: 31000 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,5.5 parent: 2 - - uid: 28172 + - uid: 31001 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,5.5 parent: 2 - - uid: 28173 + - uid: 31002 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,6.5 parent: 2 - - uid: 28174 + - uid: 31003 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,8.5 parent: 2 - - uid: 28175 + - uid: 31004 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,11.5 parent: 2 - - uid: 28176 + - uid: 31005 components: - type: Transform pos: 29.5,8.5 parent: 2 - - uid: 28177 + - uid: 31006 components: - type: Transform pos: 76.5,-51.5 parent: 2 - - uid: 28178 + - uid: 31007 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,1.5 parent: 2 - - uid: 28179 + - uid: 31008 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,4.5 parent: 2 - - uid: 28182 + - uid: 31009 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,6.5 parent: 2 - - uid: 28183 + - uid: 31010 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,7.5 parent: 2 - - uid: 28184 + - uid: 31011 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,10.5 parent: 2 - - uid: 28188 + - uid: 31012 components: - type: Transform pos: -2.5,5.5 parent: 2 - - uid: 28189 + - uid: 31013 components: - type: Transform pos: -6.5,5.5 parent: 2 - - uid: 28190 + - uid: 31014 components: - type: Transform pos: -21.5,2.5 parent: 2 - - uid: 28194 + - uid: 31015 components: - type: Transform pos: 74.5,-30.5 parent: 2 - - uid: 28195 + - uid: 31016 components: - type: Transform pos: 75.5,-30.5 parent: 2 - - uid: 28196 + - uid: 31017 components: - type: Transform pos: 76.5,-30.5 parent: 2 - - uid: 28197 + - uid: 31018 components: - type: Transform pos: 77.5,-30.5 parent: 2 - - uid: 28198 + - uid: 31019 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-31.5 parent: 2 - - uid: 28199 + - uid: 31020 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-32.5 parent: 2 - - uid: 28200 + - uid: 31021 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-33.5 parent: 2 - - uid: 28201 + - uid: 31022 components: - type: Transform pos: 55.5,-70.5 parent: 2 - - uid: 28202 + - uid: 31023 components: - type: Transform pos: 56.5,-70.5 parent: 2 - - uid: 28203 + - uid: 31024 components: - type: Transform pos: 57.5,-70.5 parent: 2 - - uid: 28204 + - uid: 31025 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-75.5 parent: 2 - - uid: 28205 + - uid: 31026 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-76.5 parent: 2 - - uid: 28206 + - uid: 31027 components: - type: Transform pos: -0.5,-100.5 parent: 2 - - uid: 28207 + - uid: 31028 components: - type: Transform pos: -1.5,-100.5 parent: 2 - - uid: 28208 + - uid: 31029 components: - type: Transform pos: -2.5,-100.5 parent: 2 - - uid: 28209 + - uid: 31030 components: - type: Transform pos: -0.5,-92.5 parent: 2 - - uid: 28210 + - uid: 31031 components: - type: Transform pos: 0.5,-92.5 parent: 2 - - uid: 28211 + - uid: 31032 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-42.5 parent: 2 - - uid: 28212 + - uid: 31033 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-43.5 parent: 2 - - uid: 28217 + - uid: 31034 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-44.5 parent: 2 - - uid: 28218 + - uid: 31035 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-67.5 parent: 2 - - uid: 28219 + - uid: 31036 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-68.5 parent: 2 - - uid: 28220 + - uid: 31037 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-69.5 parent: 2 - - uid: 28221 + - uid: 31038 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,11.5 parent: 2 - - uid: 28222 + - uid: 31039 components: - type: Transform pos: 27.5,-72.5 parent: 2 - - uid: 28223 + - uid: 31040 components: - type: Transform pos: 26.5,-72.5 parent: 2 - - uid: 28224 + - uid: 31041 components: - type: Transform pos: 25.5,23.5 parent: 2 - - uid: 28225 + - uid: 31042 components: - type: Transform pos: 27.5,23.5 parent: 2 - - uid: 28226 + - uid: 31043 components: - type: Transform pos: -51.5,-46.5 parent: 2 - - uid: 28227 + - uid: 31044 components: - type: Transform pos: -52.5,-46.5 parent: 2 - - uid: 28228 + - uid: 31045 components: - type: Transform pos: -53.5,-46.5 parent: 2 - - uid: 28229 + - uid: 31046 components: - type: Transform pos: -54.5,-46.5 parent: 2 - - uid: 28230 + - uid: 31047 components: - type: Transform pos: 69.5,-34.5 parent: 2 - - uid: 28231 + - uid: 31048 components: - type: Transform pos: 68.5,-34.5 parent: 2 - - uid: 28232 + - uid: 31049 components: - type: Transform pos: 67.5,-34.5 parent: 2 - - uid: 28233 + - uid: 31050 components: - type: Transform pos: 65.5,-34.5 parent: 2 - - uid: 28235 + - uid: 31051 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,7.5 parent: 2 - - uid: 28236 + - uid: 31052 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,7.5 parent: 2 - - uid: 28237 + - uid: 31053 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,7.5 parent: 2 - - uid: 28238 + - uid: 31054 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,7.5 parent: 2 - - uid: 28239 + - uid: 31055 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-12.5 parent: 2 - - uid: 28246 + - uid: 31056 components: - type: Transform pos: 77.5,-51.5 parent: 2 - - uid: 28247 + - uid: 31057 components: - type: Transform pos: 78.5,-51.5 parent: 2 - - uid: 28248 + - uid: 31058 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-11.5 parent: 2 - - uid: 28250 + - uid: 31059 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-90.5 parent: 2 - - uid: 28251 + - uid: 31060 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-89.5 parent: 2 - - uid: 28252 + - uid: 31061 components: - type: Transform pos: -55.5,-22.5 parent: 2 - - uid: 28253 + - uid: 31062 components: - type: Transform pos: -54.5,-22.5 parent: 2 - - uid: 28254 + - uid: 31063 components: - type: Transform pos: -67.5,-46.5 parent: 2 - - uid: 28255 + - uid: 31064 components: - type: Transform pos: -66.5,-46.5 parent: 2 - - uid: 28256 + - uid: 31065 components: - type: Transform pos: -65.5,-46.5 parent: 2 - - uid: 28257 + - uid: 31066 components: - type: Transform pos: -64.5,-46.5 parent: 2 - - uid: 28258 + - uid: 31067 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-47.5 parent: 2 - - uid: 28259 + - uid: 31068 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-48.5 parent: 2 - - uid: 28260 + - uid: 31069 components: - type: Transform pos: -22.5,-90.5 parent: 2 - - uid: 28261 + - uid: 31070 components: - type: Transform pos: -23.5,-90.5 parent: 2 - - uid: 28262 + - uid: 31071 components: - type: Transform pos: -53.5,-22.5 parent: 2 - - uid: 28263 + - uid: 31072 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-91.5 parent: 2 - - uid: 28264 + - uid: 31073 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-27.5 parent: 2 - - uid: 28265 + - uid: 31074 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-28.5 parent: 2 - - uid: 28266 + - uid: 31075 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,9.5 parent: 2 - - uid: 28267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 2 - - uid: 28268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,4.5 - parent: 2 - - uid: 28269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,3.5 - parent: 2 - - uid: 28270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,4.5 - parent: 2 - - uid: 28271 + - uid: 31076 components: - type: Transform pos: -0.5,-77.5 parent: 2 - - uid: 28272 + - uid: 31077 components: - type: Transform pos: 0.5,-77.5 parent: 2 - - uid: 28273 + - uid: 31078 components: - type: Transform pos: 1.5,-77.5 parent: 2 - - uid: 28274 + - uid: 31079 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,20.5 parent: 2 - - uid: 28275 + - uid: 31080 components: - type: Transform pos: -35.5,-45.5 parent: 2 - - uid: 28276 + - uid: 31081 components: - type: Transform pos: -36.5,-45.5 parent: 2 - - uid: 28277 + - uid: 31082 components: - type: Transform pos: -37.5,-45.5 parent: 2 - - uid: 28278 + - uid: 31083 components: - type: Transform pos: -38.5,-45.5 parent: 2 - - uid: 28279 + - uid: 31084 components: - type: Transform pos: -39.5,-45.5 parent: 2 - - uid: 28280 + - uid: 31085 components: - type: Transform pos: -41.5,-46.5 parent: 2 - - uid: 28281 + - uid: 31086 components: - type: Transform pos: -41.5,-47.5 parent: 2 - - uid: 28282 + - uid: 31087 components: - type: Transform pos: 31.5,-64.5 parent: 2 - - uid: 28283 + - uid: 31088 components: - type: Transform pos: 31.5,-65.5 parent: 2 - - uid: 28284 + - uid: 31089 components: - type: Transform pos: 31.5,-61.5 parent: 2 - - uid: 28285 + - uid: 31090 components: - type: Transform pos: 31.5,-62.5 parent: 2 - - uid: 28286 + - uid: 31091 components: - type: Transform pos: 31.5,-57.5 parent: 2 - - uid: 28287 + - uid: 31092 components: - type: Transform pos: 31.5,-58.5 parent: 2 - - uid: 28288 + - uid: 31093 components: - type: Transform pos: -39.5,-28.5 parent: 2 - - uid: 28289 + - uid: 31094 components: - type: Transform pos: -36.5,-35.5 parent: 2 - - uid: 28290 + - uid: 31095 components: - type: Transform pos: -33.5,-33.5 parent: 2 - - uid: 28291 + - uid: 31096 components: - type: Transform pos: -33.5,-34.5 parent: 2 - - uid: 28292 + - uid: 31097 components: - type: Transform pos: -37.5,-35.5 parent: 2 - - uid: 28293 + - uid: 31098 components: - type: Transform pos: -35.5,-35.5 parent: 2 - - uid: 40634 + - uid: 31099 components: - type: Transform pos: 74.5,-6.5 parent: 2 - - uid: 40635 + - uid: 31100 components: - type: Transform pos: 74.5,-7.5 parent: 2 - - uid: 40636 + - uid: 31101 components: - type: Transform pos: 74.5,-8.5 parent: 2 - - uid: 40638 + - uid: 31102 components: - type: Transform pos: 90.5,-3.5 parent: 2 - - uid: 40639 + - uid: 31103 components: - type: Transform pos: 90.5,-4.5 parent: 2 - - uid: 40640 + - uid: 31104 components: - type: Transform pos: 90.5,-5.5 parent: 2 - - uid: 40641 + - uid: 31105 components: - type: Transform pos: 90.5,-6.5 parent: 2 - - uid: 40642 + - uid: 31106 components: - type: Transform pos: 90.5,-7.5 parent: 2 - - uid: 41102 + - uid: 31107 components: - type: Transform pos: 35.5,-46.5 parent: 2 - - uid: 41103 + - uid: 31108 components: - type: Transform pos: 35.5,-47.5 parent: 2 - - uid: 41104 + - uid: 31109 components: - type: Transform pos: 35.5,-48.5 parent: 2 - - uid: 41105 + - uid: 31110 components: - type: Transform pos: 35.5,-49.5 parent: 2 - - uid: 41106 + - uid: 31111 components: - type: Transform pos: 41.5,-46.5 parent: 2 - - uid: 41107 + - uid: 31112 components: - type: Transform pos: 41.5,-47.5 parent: 2 - - uid: 41108 + - uid: 31113 components: - type: Transform pos: 41.5,-48.5 parent: 2 - - uid: 41109 + - uid: 31114 components: - type: Transform pos: 46.5,-46.5 parent: 2 - - uid: 41110 + - uid: 31115 components: - type: Transform pos: 46.5,-47.5 parent: 2 - - uid: 41111 + - uid: 31116 components: - type: Transform pos: 46.5,-48.5 parent: 2 - proto: ShuttersRadiationOpen entities: - - uid: 28294 + - uid: 31117 components: - type: Transform rot: -1.5707963267948966 rad @@ -213028,19 +217346,19 @@ entities: parent: 2 - proto: ShuttleConsoleCircuitboard entities: - - uid: 28295 + - uid: 31118 components: - type: Transform pos: 36.51695,-37.411137 parent: 2 - proto: ShuttleGunPerforator entities: - - uid: 38908 + - uid: 41854 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,4.5 - parent: 38722 + parent: 41669 - type: ContainerContainer containers: machine_board: !type:Container @@ -213054,13 +217372,13 @@ entities: gun_magazine: !type:ContainerSlot showEnts: False occludes: True - ent: 38909 - - uid: 38910 + ent: 41855 + - uid: 41856 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 - parent: 38722 + parent: 41669 - type: ContainerContainer containers: machine_board: !type:Container @@ -213074,165 +217392,165 @@ entities: gun_magazine: !type:ContainerSlot showEnts: False occludes: True - ent: 38911 + ent: 41857 - proto: ShuttleGunSvalinnMachineGun entities: - - uid: 21312 + - uid: 40766 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,1.5 - parent: 21045 - - uid: 21313 + parent: 40666 + - uid: 40767 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,1.5 - parent: 21045 + parent: 40666 - proto: ShuttleWindow entities: - - uid: 21048 + - uid: 40768 components: - type: Transform pos: -0.5,4.5 - parent: 21045 - - uid: 21050 + parent: 40666 + - uid: 40769 components: - type: Transform pos: 0.5,5.5 - parent: 21045 - - uid: 21052 + parent: 40666 + - uid: 40770 components: - type: Transform pos: 1.5,4.5 - parent: 21045 - - uid: 21057 + parent: 40666 + - uid: 40771 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 - parent: 21045 - - uid: 21070 + parent: 40666 + - uid: 40772 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,3.5 - parent: 21045 - - uid: 38446 + parent: 40666 + - uid: 40773 + components: + - type: Transform + pos: -3.5,2.5 + parent: 40666 + - uid: 40774 + components: + - type: Transform + pos: 4.5,2.5 + parent: 40666 + - uid: 41393 components: - type: Transform pos: 5.5,-0.5 - parent: 37887 - - uid: 38447 + parent: 40828 + - uid: 41394 components: - type: Transform pos: 5.5,-1.5 - parent: 37887 - - uid: 38448 + parent: 40828 + - uid: 41395 components: - type: Transform pos: 5.5,-2.5 - parent: 37887 - - uid: 38449 + parent: 40828 + - uid: 41396 components: - type: Transform pos: -4.5,-0.5 - parent: 37887 - - uid: 38450 + parent: 40828 + - uid: 41397 components: - type: Transform pos: -4.5,-1.5 - parent: 37887 - - uid: 38451 + parent: 40828 + - uid: 41398 components: - type: Transform pos: -4.5,-2.5 - parent: 37887 - - uid: 38928 + parent: 40828 + - uid: 41874 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,4.5 - parent: 38722 - - uid: 38929 + parent: 41669 + - uid: 41875 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,5.5 - parent: 38722 - - uid: 38930 + parent: 41669 + - uid: 41876 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,5.5 - parent: 38722 - - uid: 38931 + parent: 41669 + - uid: 41877 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,5.5 - parent: 38722 - - uid: 38932 + parent: 41669 + - uid: 41878 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,4.5 - parent: 38722 - - uid: 38933 + parent: 41669 + - uid: 41879 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,3.5 - parent: 38722 - - uid: 38934 + parent: 41669 + - uid: 41880 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,3.5 - parent: 38722 - - uid: 40820 - components: - - type: Transform - pos: -3.5,2.5 - parent: 21045 - - uid: 40822 - components: - - type: Transform - pos: 4.5,2.5 - parent: 21045 + parent: 41669 - proto: ShuttleWindowDiagonal entities: - - uid: 21049 + - uid: 40775 components: - type: Transform pos: -0.5,5.5 - parent: 21045 - - uid: 21051 + parent: 40666 + - uid: 40776 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,5.5 - parent: 21045 - - uid: 38935 + parent: 40666 + - uid: 41881 components: - type: Transform pos: 2.5,5.5 - parent: 38722 - - uid: 38936 + parent: 41669 + - uid: 41882 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,5.5 - parent: 38722 + parent: 41669 - proto: SignAi entities: - - uid: 28296 + - uid: 31119 components: - type: Transform rot: 3.141592653589793 rad pos: 91.5,-78.5 parent: 2 - - uid: 28297 + - uid: 31120 components: - type: Transform rot: 3.141592653589793 rad @@ -213240,14 +217558,14 @@ entities: parent: 2 - proto: SignAiUpload entities: - - uid: 36716 + - uid: 31121 components: - type: Transform pos: 12.5,21.5 parent: 2 - proto: SignalButton entities: - - uid: 1655 + - uid: 31122 components: - type: MetaData name: гермозатворы техи @@ -213257,11 +217575,11 @@ entities: - type: DeviceLinkSource range: 300 linkedPorts: - 23013: + 2228: - Pressed: Toggle - 40612: + 2236: - Pressed: Toggle - - uid: 2064 + - uid: 31123 components: - type: MetaData name: ставни наблюдение @@ -213270,25 +217588,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 26386: + 30985: - Pressed: Toggle - 26501: + 30986: - Pressed: Toggle - - uid: 21868 - components: - - type: MetaData - desc: Эта кнопка активирует лазерные орудия. - name: кнопка орудий - - type: Transform - pos: 0.20425034,4.6056633 - parent: 21045 - - type: DeviceLinkSource - linkedPorts: - 21312: - - Pressed: Toggle - 21313: - - Pressed: Toggle - - uid: 22520 + - uid: 31124 components: - type: MetaData name: гермозатворы бриг-бар @@ -213297,13 +217601,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 40606: + 2233: - Pressed: Toggle - 19254: + 2227: - Pressed: Toggle - 17877: + 2226: - Pressed: Toggle - - uid: 28300 + - uid: 31125 components: - type: Transform rot: -1.5707963267948966 rad @@ -213311,28 +217615,28 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1856: + 2178: - Pressed: Toggle - 1818: + 2144: - Pressed: Toggle - 1857: + 2179: - Pressed: Toggle - 1861: + 2183: - Pressed: Toggle - - uid: 28301 + - uid: 31126 components: - type: Transform pos: -1.4880147,24.745262 parent: 2 - type: DeviceLinkSource linkedPorts: - 1873: + 2218: - Pressed: Toggle - 1872: + 2217: - Pressed: Toggle - 1871: + 2216: - Pressed: Toggle - - uid: 28302 + - uid: 31127 components: - type: Transform rot: 1.5707963267948966 rad @@ -213340,15 +217644,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28182: + 31009: - Pressed: Toggle - 28183: + 31010: - Pressed: Toggle - 28184: + 31011: - Pressed: Toggle - 28221: + 31038: - Pressed: Toggle - - uid: 28307 + - uid: 31128 components: - type: MetaData name: кнопка внешних ставней @@ -213358,11 +217662,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28188: + 31012: - Pressed: Toggle - 28189: + 31013: - Pressed: Toggle - - uid: 28308 + - uid: 31129 components: - type: MetaData name: кнопка ставней офиса @@ -213372,15 +217676,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28236: + 31052: - Pressed: Toggle - 28266: + 31075: - Pressed: Toggle - 28235: + 31051: - Pressed: Toggle - 28238: + 31054: - Pressed: Toggle - - uid: 28309 + - uid: 31130 components: - type: Transform rot: -1.5707963267948966 rad @@ -213388,11 +217692,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28222: + 31039: - Pressed: Toggle - 28223: + 31040: - Pressed: Toggle - - uid: 28310 + - uid: 31131 components: - type: Transform rot: 1.5707963267948966 rad @@ -213400,13 +217704,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1826: + 2152: - Pressed: Toggle - 1825: + 2151: - Pressed: Toggle - 1824: + 2150: - Pressed: Toggle - - uid: 28312 + - uid: 31132 components: - type: Transform rot: 3.141592653589793 rad @@ -213414,9 +217718,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28190: + 31014: - Pressed: Toggle - - uid: 28313 + - uid: 31133 components: - type: Transform rot: 1.5707963267948966 rad @@ -213424,17 +217728,17 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28230: + 31047: - Pressed: Toggle - 28231: + 31048: - Pressed: Toggle - 28232: + 31049: - Pressed: Toggle - 28233: + 31050: - Pressed: Toggle - 484: + 30982: - Pressed: Toggle - - uid: 28316 + - uid: 31134 components: - type: Transform rot: 1.5707963267948966 rad @@ -213442,45 +217746,19 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28254: + 31063: - Pressed: Toggle - 28255: + 31064: - Pressed: Toggle - 28256: + 31065: - Pressed: Toggle - 28257: + 31066: - Pressed: Toggle - 28258: + 31067: - Pressed: Toggle - 28259: + 31068: - Pressed: Toggle - - uid: 28319 - components: - - type: MetaData - name: изоляция мостика - правый - - type: Transform - pos: -7.3333516,1.682342 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 28269: - - Pressed: Toggle - 28270: - - Pressed: Toggle - - uid: 28320 - components: - - type: MetaData - name: изоляция мостика - левый - - type: Transform - pos: -7.6736298,1.682342 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 28267: - - Pressed: Toggle - 28268: - - Pressed: Toggle - - uid: 28870 + - uid: 31135 components: - type: MetaData name: путь к оружейной @@ -213489,9 +217767,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 6217: + 2185: - Pressed: Toggle - - uid: 28995 + - uid: 31136 components: - type: MetaData name: ставни @@ -213500,47 +217778,29 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28874: + 2197: - Pressed: Toggle - 28875: + 2198: - Pressed: Toggle - 28876: + 2199: - Pressed: Toggle - 28877: + 2200: - Pressed: Toggle - 28878: + 2201: - Pressed: Toggle - 28879: + 2202: - Pressed: Toggle - 28880: + 2203: - Pressed: Toggle - 28886: + 2204: - Pressed: Toggle - 28887: + 2205: - Pressed: Toggle - 28894: + 2206: - Pressed: Toggle - 28947: + 2207: - Pressed: Toggle - - uid: 38937 - components: - - type: Transform - pos: 4.81752,4.6099243 - parent: 38722 - - type: DeviceLinkSource - linkedPorts: - 38908: - - Pressed: Trigger - - uid: 38938 - components: - - type: Transform - pos: 4.19252,4.6099243 - parent: 38722 - - type: DeviceLinkSource - linkedPorts: - 38910: - - Pressed: Trigger - - uid: 40617 + - uid: 31137 components: - type: MetaData name: нижние гермозатворы @@ -213550,11 +217810,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 40616: + 2240: - Pressed: Toggle - 40615: + 2239: - Pressed: Toggle - - uid: 40618 + - uid: 31138 components: - type: MetaData name: верхние гермозатворы @@ -213564,11 +217824,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 40614: + 2238: - Pressed: Toggle - 40613: + 2237: - Pressed: Toggle - - uid: 40626 + - uid: 31139 components: - type: MetaData name: гермозатворы перма @@ -213577,19 +217837,19 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 40610: + 2235: - Pressed: Toggle - 40593: + 2230: - Pressed: Toggle - 40603: + 2231: - Pressed: Toggle - 40605: + 2232: - Pressed: Toggle - 24996: + 2229: - Pressed: Toggle - 40609: + 2234: - Pressed: Toggle - - uid: 40729 + - uid: 31140 components: - type: MetaData name: ставни допросная @@ -213598,11 +217858,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 22087: + 30983: - Pressed: Toggle - 22088: + 30984: - Pressed: Toggle - - uid: 41112 + - uid: 31141 components: - type: MetaData name: ставни @@ -213611,23 +217871,55 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 41107: + 31112: - Pressed: Toggle - 41106: + 31111: - Pressed: Toggle - 41108: + 31113: - Pressed: Toggle - 41102: + 31107: - Pressed: Toggle - 41103: + 31108: - Pressed: Toggle - 41104: + 31109: - Pressed: Toggle - 41105: + 31110: - Pressed: Toggle + - uid: 40777 + components: + - type: MetaData + desc: Эта кнопка активирует лазерные орудия. + name: кнопка орудий + - type: Transform + pos: 0.20425034,4.6056633 + parent: 40666 + - type: DeviceLinkSource + linkedPorts: + 40766: + - Pressed: Toggle + 40767: + - Pressed: Toggle + - uid: 41883 + components: + - type: Transform + pos: 4.81752,4.6099243 + parent: 41669 + - type: DeviceLinkSource + linkedPorts: + 41854: + - Pressed: Trigger + - uid: 41884 + components: + - type: Transform + pos: 4.19252,4.6099243 + parent: 41669 + - type: DeviceLinkSource + linkedPorts: + 41856: + - Pressed: Trigger - proto: SignalButtonDirectional entities: - - uid: 11902 + - uid: 31142 components: - type: MetaData name: старт тира @@ -213637,54 +217929,56 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 16244: + 16122: - Pressed: Forward - 9728: + 16073: - Pressed: Forward - 15176: + 16119: - Pressed: Forward - 2889: + 16072: - Pressed: Forward - 14078: + 16076: - Pressed: Forward - 17426: + 16138: - Pressed: Forward - 14063: + 16075: - Pressed: Forward - 14233: + 16077: - Pressed: Forward - 9937: + 16074: - Pressed: Forward - 17414: + 16137: - Pressed: Forward - - uid: 28322 + - uid: 31143 components: - type: Transform pos: -28.5,-85.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 217: + 340: - Pressed: DoorBolt - - uid: 28323 + - uid: 31144 components: + - type: MetaData + name: ставни - type: Transform rot: 1.5707963267948966 rad pos: 32.5,15.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 28170: + 30999: - Pressed: Toggle - 28169: + 30998: - Pressed: Toggle - 28168: + 30997: - Pressed: Toggle - 28175: + 31004: - Pressed: Toggle - 28165: + 30994: - Pressed: Toggle - - uid: 28325 + - uid: 31145 components: - type: Transform rot: 1.5707963267948966 rad @@ -213692,64 +217986,66 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28141: + 30968: - Pressed: Toggle - 28140: + 30967: - Pressed: Toggle - 28139: + 30966: - Pressed: Toggle - - uid: 28326 + - uid: 31146 components: - type: Transform pos: 75.5,-38.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 208: + 331: - Pressed: DoorBolt - - uid: 28327 + - uid: 31147 components: - type: Transform pos: 75.5,-36.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 207: + 330: - Pressed: DoorBolt - - uid: 28328 + - uid: 31148 components: - type: Transform pos: 75.5,-34.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 206: + 329: - Pressed: DoorBolt - - uid: 28329 + - uid: 31149 components: + - type: MetaData + name: ставни - type: Transform rot: 1.5707963267948966 rad pos: 26.5,10.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 28173: + 31002: - Pressed: Toggle - 28164: + 30993: - Pressed: Toggle - 28174: + 31003: - Pressed: Toggle - 28176: + 31005: - Pressed: Toggle - 28163: + 30992: - Pressed: Toggle - 28162: + 30991: - Pressed: Toggle - 28171: + 31000: - Pressed: Toggle - 28172: + 31001: - Pressed: Toggle - - uid: 28331 + - uid: 31150 components: - type: Transform rot: 3.141592653589793 rad @@ -213757,18 +218053,18 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1849: + 2172: - Pressed: Toggle - - uid: 28332 + - uid: 31151 components: - type: Transform pos: 58.5,-89.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1884: + 2224: - Pressed: Toggle - - uid: 28333 + - uid: 31152 components: - type: Transform rot: 3.141592653589793 rad @@ -213776,15 +218072,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1885: + 2225: - Pressed: Toggle - - uid: 28334 + - uid: 31153 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-50.5 parent: 2 - - uid: 28335 + - uid: 31154 components: - type: Transform rot: 3.141592653589793 rad @@ -213792,9 +218088,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1848: + 2171: - Pressed: Toggle - - uid: 28336 + - uid: 31155 components: - type: Transform rot: -1.5707963267948966 rad @@ -213802,13 +218098,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1852: + 2175: - Pressed: Toggle - 1851: + 2174: - Pressed: Toggle - 1850: + 2173: - Pressed: Toggle - - uid: 28337 + - uid: 31156 components: - type: Transform rot: 1.5707963267948966 rad @@ -213816,9 +218112,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1858: + 2180: - Pressed: Toggle - - uid: 28339 + - uid: 31157 components: - type: Transform rot: -1.5707963267948966 rad @@ -213826,13 +218122,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1821: + 2147: - Pressed: Toggle - 1822: + 2148: - Pressed: Toggle - 1823: + 2149: - Pressed: Toggle - - uid: 28341 + - uid: 31158 components: - type: MetaData name: кнопка гермозатворов западного РнД @@ -213842,13 +218138,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1876: + 2221: - Pressed: Toggle - 1875: + 2220: - Pressed: Toggle - 1874: + 2219: - Pressed: Toggle - - uid: 28342 + - uid: 31159 components: - type: Transform rot: 3.141592653589793 rad @@ -213856,11 +218152,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28209: + 31030: - Pressed: Toggle - 28210: + 31031: - Pressed: Toggle - - uid: 28343 + - uid: 31160 components: - type: Transform rot: 1.5707963267948966 rad @@ -213868,13 +218164,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28208: + 31029: - Pressed: Toggle - 28207: + 31028: - Pressed: Toggle - 28206: + 31027: - Pressed: Toggle - - uid: 28344 + - uid: 31161 components: - type: Transform rot: -1.5707963267948966 rad @@ -213882,13 +218178,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28211: + 31032: - Pressed: Toggle - 28212: + 31033: - Pressed: Toggle - 28217: + 31034: - Pressed: Toggle - - uid: 28345 + - uid: 31162 components: - type: Transform rot: 3.141592653589793 rad @@ -213896,11 +218192,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1820: + 2146: - Pressed: Toggle - 1819: + 2145: - Pressed: Toggle - - uid: 28346 + - uid: 31163 components: - type: Transform rot: 3.141592653589793 rad @@ -213908,13 +218204,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28201: + 31022: - Pressed: Toggle - 28202: + 31023: - Pressed: Toggle - 28203: + 31024: - Pressed: Toggle - - uid: 28347 + - uid: 31164 components: - type: Transform rot: 3.141592653589793 rad @@ -213922,11 +218218,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28205: + 31026: - Pressed: Toggle - 28204: + 31025: - Pressed: Toggle - - uid: 28348 + - uid: 31165 components: - type: Transform rot: -1.5707963267948966 rad @@ -213934,13 +218230,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28220: + 31037: - Pressed: Toggle - 28219: + 31036: - Pressed: Toggle - 28218: + 31035: - Pressed: Toggle - - uid: 28349 + - uid: 31166 components: - type: MetaData name: гермозатворы @@ -213950,13 +218246,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1880: + 2223: - Pressed: Toggle - 1877: + 2222: - Pressed: Toggle - 1870: + 2215: - Pressed: Toggle - - uid: 28350 + - uid: 31167 components: - type: Transform rot: 3.141592653589793 rad @@ -213964,43 +218260,43 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1838: + 2161: - Pressed: Toggle - 1837: + 2160: - Pressed: Toggle - 1836: + 2159: - Pressed: Toggle - 1835: + 2158: - Pressed: Toggle - 1834: + 2157: - Pressed: Toggle - 1833: + 2156: - Pressed: Toggle - 1832: + 2155: - Pressed: Toggle - 1831: + 2154: - Pressed: Toggle - 1830: + 2153: - Pressed: Toggle - 1847: + 2170: - Pressed: Toggle - 1846: + 2169: - Pressed: Toggle - 1845: + 2168: - Pressed: Toggle - 1844: + 2167: - Pressed: Toggle - 1843: + 2166: - Pressed: Toggle - 1842: + 2165: - Pressed: Toggle - 1841: + 2164: - Pressed: Toggle - 1840: + 2163: - Pressed: Toggle - 1839: + 2162: - Pressed: Toggle - - uid: 28351 + - uid: 31168 components: - type: Transform rot: -1.5707963267948966 rad @@ -214008,13 +218304,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1868: + 2213: - Pressed: Toggle - 1869: + 2214: - Pressed: Toggle - 1867: + 2212: - Pressed: Toggle - - uid: 28352 + - uid: 31169 components: - type: Transform rot: 1.5707963267948966 rad @@ -214022,11 +218318,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28148: + 30975: - Pressed: Toggle - 28147: + 30974: - Pressed: Toggle - - uid: 28353 + - uid: 31170 components: - type: Transform rot: 3.141592653589793 rad @@ -214034,13 +218330,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28156: + 30980: - Pressed: Toggle - 28155: + 30979: - Pressed: Toggle - 28154: + 30978: - Pressed: Toggle - - uid: 28354 + - uid: 31171 components: - type: Transform rot: -1.5707963267948966 rad @@ -214048,22 +218344,22 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28149: + 30976: - Pressed: Toggle - 28150: + 30977: - Pressed: Toggle - - uid: 28355 + - uid: 31172 components: - type: Transform pos: 28.5,23.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 28225: + 31042: - Pressed: Toggle - 28224: + 31041: - Pressed: Toggle - - uid: 28356 + - uid: 31173 components: - type: Transform rot: 1.5707963267948966 rad @@ -214071,9 +218367,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 232: + 353: - Pressed: DoorBolt - - uid: 28357 + - uid: 31174 components: - type: Transform rot: 3.141592653589793 rad @@ -214081,13 +218377,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28198: + 31019: - Pressed: Toggle - 28199: + 31020: - Pressed: Toggle - 28200: + 31021: - Pressed: Toggle - - uid: 28358 + - uid: 31175 components: - type: Transform rot: 1.5707963267948966 rad @@ -214095,9 +218391,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1853: + 2176: - Pressed: Toggle - - uid: 28359 + - uid: 31176 components: - type: Transform rot: 3.141592653589793 rad @@ -214105,9 +218401,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 210: + 333: - Pressed: DoorBolt - - uid: 28360 + - uid: 31177 components: - type: Transform rot: -1.5707963267948966 rad @@ -214115,11 +218411,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24135: + 26701: - Pressed: Toggle - 24146: + 26711: - Pressed: Toggle - - uid: 28363 + - uid: 31178 components: - type: Transform rot: 3.141592653589793 rad @@ -214127,17 +218423,17 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28142: + 30969: - Pressed: Toggle - 28145: + 30972: - Pressed: Toggle - 28144: + 30971: - Pressed: Toggle - 28146: + 30973: - Pressed: Toggle - 28157: + 30981: - Pressed: Toggle - - uid: 28364 + - uid: 31179 components: - type: Transform rot: 1.5707963267948966 rad @@ -214145,19 +218441,19 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28194: + 31015: - Pressed: Toggle - 28195: + 31016: - Pressed: Toggle - 28196: + 31017: - Pressed: Toggle - 28197: + 31018: - Pressed: Toggle - 28264: + 31073: - Pressed: Toggle - 28265: + 31074: - Pressed: Toggle - - uid: 28367 + - uid: 31180 components: - type: Transform rot: 1.5707963267948966 rad @@ -214165,13 +218461,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28248: + 31058: - Pressed: Toggle - 28239: + 31055: - Pressed: Toggle - 28158: + 30987: - Pressed: Toggle - - uid: 28368 + - uid: 31181 components: - type: Transform rot: 3.141592653589793 rad @@ -214179,13 +218475,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28251: + 31060: - Pressed: Toggle - 28250: + 31059: - Pressed: Toggle - 28263: + 31072: - Pressed: Toggle - - uid: 28369 + - uid: 31182 components: - type: Transform rot: -1.5707963267948966 rad @@ -214193,58 +218489,58 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 1859: + 2181: - Pressed: Toggle - 1860: + 2182: - Pressed: Toggle - 1854: + 2177: - Pressed: Toggle - - uid: 28370 + - uid: 31183 components: - type: Transform pos: -35.5,-88.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 219: + 342: - Pressed: DoorBolt - - uid: 28371 + - uid: 31184 components: - type: Transform pos: -35.5,-85.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 220: + 343: - Pressed: DoorBolt - - uid: 28372 + - uid: 31185 components: - type: Transform pos: -35.5,-82.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 221: + 344: - Pressed: DoorBolt - - uid: 28373 + - uid: 31186 components: - type: Transform pos: -28.5,-82.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 216: + 339: - Pressed: DoorBolt - - uid: 28376 + - uid: 31187 components: - type: Transform pos: -28.5,-88.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 218: + 341: - Pressed: DoorBolt - - uid: 28377 + - uid: 31188 components: - type: Transform rot: 3.141592653589793 rad @@ -214252,9 +218548,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 211: + 334: - Pressed: DoorBolt - - uid: 28378 + - uid: 31189 components: - type: Transform rot: 3.141592653589793 rad @@ -214262,9 +218558,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 212: + 335: - Pressed: DoorBolt - - uid: 28379 + - uid: 31190 components: - type: Transform rot: -1.5707963267948966 rad @@ -214272,31 +218568,33 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28262: + 31071: - Pressed: Toggle - 28253: + 31062: - Pressed: Toggle - 28252: + 31061: - Pressed: Toggle - - uid: 28380 + - uid: 31191 components: + - type: MetaData + name: ставни - type: Transform rot: 3.141592653589793 rad pos: 23.5,0.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 28161: + 30990: - Pressed: Toggle - 28178: + 31007: - Pressed: Toggle - 28159: + 30988: - Pressed: Toggle - 28160: + 30989: - Pressed: Toggle - 28179: + 31008: - Pressed: Toggle - - uid: 28381 + - uid: 31192 components: - type: Transform rot: 3.141592653589793 rad @@ -214304,15 +218602,15 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28229: + 31046: - Pressed: Toggle - 28228: + 31045: - Pressed: Toggle - 28227: + 31044: - Pressed: Toggle - 28226: + 31043: - Pressed: Toggle - - uid: 28382 + - uid: 31193 components: - type: Transform rot: -1.5707963267948966 rad @@ -214320,9 +218618,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24137: + 26702: - Pressed: Toggle - - uid: 28383 + - uid: 31194 components: - type: Transform rot: 1.5707963267948966 rad @@ -214330,18 +218628,18 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24138: + 26703: - Pressed: Toggle - - uid: 28384 + - uid: 31195 components: - type: Transform pos: -24.5,2.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 24139: + 26704: - Pressed: Toggle - - uid: 28385 + - uid: 31196 components: - type: Transform rot: -1.5707963267948966 rad @@ -214349,13 +218647,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24142: + 26707: - Pressed: Toggle - 24140: + 26705: - Pressed: Toggle - 24141: + 26706: - Pressed: Toggle - - uid: 28386 + - uid: 31197 components: - type: Transform rot: 1.5707963267948966 rad @@ -214363,11 +218661,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24143: + 26708: - Pressed: Toggle - 24144: + 26709: - Pressed: Toggle - - uid: 28387 + - uid: 31198 components: - type: Transform rot: 1.5707963267948966 rad @@ -214375,9 +218673,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 24145: + 26710: - Pressed: Toggle - - uid: 28388 + - uid: 31199 components: - type: Transform rot: 3.141592653589793 rad @@ -214385,13 +218683,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28271: + 31076: - Pressed: Toggle - 28272: + 31077: - Pressed: Toggle - 28273: + 31078: - Pressed: Toggle - - uid: 28389 + - uid: 31200 components: - type: Transform rot: 1.5707963267948966 rad @@ -214399,9 +218697,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28143: + 30970: - Pressed: Toggle - - uid: 28390 + - uid: 31201 components: - type: Transform rot: 3.141592653589793 rad @@ -214409,9 +218707,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28274: + 31079: - Pressed: Toggle - - uid: 28391 + - uid: 31202 components: - type: Transform rot: 3.141592653589793 rad @@ -214419,17 +218717,17 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28275: + 31080: - Pressed: Toggle - 28276: + 31081: - Pressed: Toggle - 28277: + 31082: - Pressed: Toggle - 28278: + 31083: - Pressed: Toggle - 28279: + 31084: - Pressed: Toggle - - uid: 28392 + - uid: 31203 components: - type: Transform rot: 3.141592653589793 rad @@ -214437,32 +218735,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 28280: + 31085: - Pressed: Toggle - 28281: + 31086: - Pressed: Toggle - - uid: 32585 - components: - - type: MetaData - desc: Эта кнопка включает полицейскую сирену. - name: кнопка сирены - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,3.5 - parent: 21045 - - type: DeviceLinkSource - linkedPorts: - 32589: - - Pressed: Toggle - 40816: - - Pressed: Toggle - 40819: - - Pressed: Toggle - 22001: - - Pressed: Toggle - 21242: - - Pressed: Toggle - - uid: 33867 + - uid: 31204 components: - type: Transform rot: -1.5707963267948966 rad @@ -214470,9 +218747,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 246: + 365: - Pressed: DoorBolt - - uid: 39802 + - uid: 31205 components: - type: Transform rot: -1.5707963267948966 rad @@ -214480,27 +218757,27 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 14078: + 16076: - Pressed: Off - 2889: + 16072: - Pressed: Off - 15176: + 16119: - Pressed: Off - 9728: + 16073: - Pressed: Off - 16244: + 16122: - Pressed: Off - 17414: + 16137: - Pressed: Off - 17426: + 16138: - Pressed: Off - 14063: + 16075: - Pressed: Off - 14233: + 16077: - Pressed: Off - 9937: + 16074: - Pressed: Off - - uid: 40637 + - uid: 31206 components: - type: MetaData name: ставни @@ -214509,13 +218786,13 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 40634: + 31099: - Pressed: Toggle - 40635: + 31100: - Pressed: Toggle - 40636: + 31101: - Pressed: Toggle - - uid: 41089 + - uid: 31207 components: - type: Transform rot: 1.5707963267948966 rad @@ -214523,9 +218800,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 204: + 327: - Pressed: DoorBolt - - uid: 41090 + - uid: 31208 components: - type: Transform rot: -1.5707963267948966 rad @@ -214533,9 +218810,9 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 203: + 326: - Pressed: DoorBolt - - uid: 41113 + - uid: 31209 components: - type: MetaData name: ставни @@ -214545,121 +218822,142 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 41109: + 31114: - Pressed: Toggle - 41110: + 31115: - Pressed: Toggle - 41111: + 31116: + - Pressed: Toggle + - uid: 40778 + components: + - type: MetaData + desc: Эта кнопка включает полицейскую сирену. + name: кнопка сирены + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 40666 + - type: DeviceLinkSource + linkedPorts: + 40757: + - Pressed: Toggle + 40761: + - Pressed: Toggle + 40762: + - Pressed: Toggle + 40764: + - Pressed: Toggle + 40763: - Pressed: Toggle - proto: SignalTimer entities: - - uid: 37709 + - uid: 31210 components: - type: Transform pos: -8.5,-51.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 34359: + 18974: - Timer: Trigger - 40955: + 18975: - Timer: Trigger - type: DeviceLinkSink invokeCounter: 1 missingComponents: - ApcPowerReceiver - - uid: 38452 + - uid: 31211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - type: SignalTimer + delay: 1 + - type: DeviceLinkSink + invokeCounter: 1 + missingComponents: + - ApcPowerReceiver + - uid: 41399 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-1.5 - parent: 37887 + parent: 40828 - type: SignalTimer delay: 2400 - type: DeviceLinkSource linkedPorts: - 37912: + 40853: - Timer: Close - 37913: + 40854: - Timer: Close - 37915: + 40856: - Timer: Close - 37914: + 40855: - Timer: Close - 38218: + 41164: - Timer: Trigger - 38220: + 41166: - Timer: Trigger - 38221: + 41167: - Timer: Trigger - 38222: + 41168: - Timer: Trigger - 38223: + 41169: - Timer: Trigger - 38219: + 41165: - Timer: Trigger - 37917: + 40858: - Timer: Close - 37916: + 40857: - Timer: Close - type: DeviceLinkSink invokeCounter: 1 missingComponents: - ApcPowerReceiver - - uid: 39736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 2 - - type: SignalTimer - delay: 1 - - type: DeviceLinkSink - invokeCounter: 1 - missingComponents: - - ApcPowerReceiver - proto: SignalTimerElectronics entities: - - uid: 28393 + - uid: 31212 components: - type: Transform pos: 40.535313,-38.02671 parent: 2 - proto: SignalTrigger entities: - - uid: 28394 + - uid: 31213 components: - type: Transform pos: -40.534904,-53.280308 parent: 2 - - uid: 28395 + - uid: 31214 components: - type: Transform pos: -40.347404,-53.280308 parent: 2 - - uid: 28396 + - uid: 31215 components: - type: Transform pos: -68.84515,-68.3506 parent: 2 - - uid: 28397 + - uid: 31216 components: - type: Transform pos: -68.73578,-68.17873 parent: 2 - - uid: 28398 + - uid: 31217 components: - type: Transform pos: -68.61078,-68.0381 parent: 2 - proto: SignAnomaly entities: - - uid: 28399 + - uid: 31218 components: - type: Transform pos: -47.5,-67.5 parent: 2 - - uid: 28400 + - uid: 31219 components: - type: Transform rot: 3.141592653589793 rad @@ -214667,62 +218965,71 @@ entities: parent: 2 - proto: SignAnomaly2 entities: - - uid: 28401 + - uid: 31220 components: - type: Transform pos: -45.5,-79.5 parent: 2 - proto: SignArmory entities: - - uid: 38453 - components: - - type: Transform - pos: 3.5,-8.5 - parent: 37887 - - uid: 40601 + - uid: 31221 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-13.5 parent: 2 + - uid: 41400 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 40828 - proto: SignBar entities: - - uid: 28404 + - uid: 31222 components: - type: Transform pos: 27.5,-1.5 parent: 2 - proto: SignBio entities: - - uid: 28405 + - uid: 31223 components: - type: Transform - pos: 37.5,22.5 + rot: 3.141592653589793 rad + pos: 34.5,20.5 + parent: 2 +- proto: SignBiohazardMed + entities: + - uid: 31224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,24.5 parent: 2 - proto: SignCanisters entities: - - uid: 28408 + - uid: 31225 components: - type: Transform pos: -47.5,-57.5 parent: 2 - proto: SignCansScience entities: - - uid: 28409 + - uid: 31226 components: - type: Transform pos: -49.5,-59.5 parent: 2 - proto: SignCargoDock entities: - - uid: 6320 + - uid: 31227 components: - type: Transform pos: 17.5,-98.5 parent: 2 - proto: SignChapel entities: - - uid: 28411 + - uid: 31228 components: - type: Transform rot: -1.5707963267948966 rad @@ -214730,50 +219037,50 @@ entities: parent: 2 - proto: SignChem entities: - - uid: 28412 + - uid: 31229 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-27.5 parent: 2 - - uid: 28413 + - uid: 31230 components: - type: Transform pos: -34.5,-35.5 parent: 2 - - uid: 38454 + - uid: 41401 components: - type: Transform pos: -2.5,-8.5 - parent: 37887 + parent: 40828 - proto: SignCloning entities: - - uid: 28415 + - uid: 31231 components: - type: Transform pos: -58.5,-27.5 parent: 2 - - uid: 30842 + - uid: 31232 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-34.5 parent: 2 - - uid: 40156 + - uid: 31233 components: - type: Transform pos: -57.5,-22.5 parent: 2 - proto: SignConference entities: - - uid: 28416 + - uid: 31234 components: - type: Transform pos: 3.5,5.5 parent: 2 - proto: SignCryogenics entities: - - uid: 30841 + - uid: 31235 components: - type: Transform rot: -1.5707963267948966 rad @@ -214781,17 +219088,17 @@ entities: parent: 2 - proto: SignCryogenicsMed entities: - - uid: 28417 + - uid: 31236 components: - type: Transform pos: -39.5,-23.5 parent: 2 - - uid: 28418 + - uid: 31237 components: - type: Transform pos: -39.5,-19.5 parent: 2 - - uid: 30700 + - uid: 31238 components: - type: Transform rot: -1.5707963267948966 rad @@ -214799,43 +219106,43 @@ entities: parent: 2 - proto: SignDirectionalBridge entities: - - uid: 28419 + - uid: 31239 components: - type: Transform rot: 3.141592653589793 rad pos: -33.474304,-40.680668 parent: 2 - - uid: 28420 + - uid: 31240 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.47135,-34.640896 parent: 2 - - uid: 28421 + - uid: 31241 components: - type: Transform rot: 3.141592653589793 rad pos: 27.524584,-30.20869 parent: 2 - - uid: 28422 + - uid: 31242 components: - type: Transform rot: 3.141592653589793 rad pos: 4.536149,2.7162185 parent: 2 - - uid: 28423 + - uid: 31243 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.622239,4.8928404 parent: 2 - - uid: 28424 + - uid: 31244 components: - type: Transform rot: 3.141592653589793 rad pos: -12.480022,-74.208374 parent: 2 - - uid: 28425 + - uid: 31245 components: - type: Transform rot: 3.141592653589793 rad @@ -214843,42 +219150,42 @@ entities: parent: 2 - proto: SignDirectionalBrig entities: - - uid: 28427 + - uid: 31246 components: - type: Transform rot: 3.141592653589793 rad pos: 46.562218,-34.358776 parent: 2 - - uid: 28428 + - uid: 31247 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.50675,-30.374157 parent: 2 - - uid: 28429 + - uid: 31248 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.612581,4.3635325 parent: 2 - - uid: 28430 + - uid: 31249 components: - type: Transform pos: -34.485443,-45.246933 parent: 2 - - uid: 28431 + - uid: 31250 components: - type: Transform rot: 3.141592653589793 rad pos: 30.57463,-70.270035 parent: 2 - - uid: 28432 + - uid: 31251 components: - type: Transform rot: 3.141592653589793 rad pos: 31.54783,-56.800526 parent: 2 - - uid: 39559 + - uid: 31252 components: - type: Transform rot: 3.141592653589793 rad @@ -214886,7 +219193,7 @@ entities: parent: 2 - proto: SignDirectionalChapel entities: - - uid: 28433 + - uid: 31253 components: - type: Transform rot: 3.141592653589793 rad @@ -214894,54 +219201,54 @@ entities: parent: 2 - proto: SignDirectionalDorms entities: - - uid: 28434 + - uid: 31254 components: - type: Transform pos: 30.499855,-34.393032 parent: 2 - - uid: 28435 + - uid: 31255 components: - type: Transform pos: -26.37681,-66.15905 parent: 2 - proto: SignDirectionalEng entities: - - uid: 28437 + - uid: 31256 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.383715,-66.43686 parent: 2 - - uid: 28438 + - uid: 31257 components: - type: Transform pos: 46.557587,-34.664333 parent: 2 - - uid: 28439 + - uid: 31258 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.50675,-30.663158 parent: 2 - - uid: 28440 + - uid: 31259 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.49572,-45.755165 parent: 2 - - uid: 28441 + - uid: 31260 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5545926,-77.779526 parent: 2 - - uid: 28442 + - uid: 31261 components: - type: Transform rot: 3.141592653589793 rad pos: 30.57463,-70.526985 parent: 2 - - uid: 39558 + - uid: 31262 components: - type: Transform rot: 3.141592653589793 rad @@ -214949,36 +219256,36 @@ entities: parent: 2 - proto: SignDirectionalEvac entities: - - uid: 28443 + - uid: 31263 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-34.5 parent: 2 - - uid: 28445 + - uid: 31264 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5451963,-77.24856 parent: 2 - - uid: 28446 + - uid: 31265 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.47988,-41.501305 parent: 2 - - uid: 28447 + - uid: 31266 components: - type: Transform rot: 3.141592653589793 rad pos: -30.481752,-67.68657 parent: 2 - - uid: 28448 + - uid: 31267 components: - type: Transform pos: -28.507202,-6.174101 parent: 2 - - uid: 28450 + - uid: 31268 components: - type: Transform rot: -1.5707963267948966 rad @@ -214986,37 +219293,37 @@ entities: parent: 2 - proto: SignDirectionalFood entities: - - uid: 28451 + - uid: 31269 components: - type: Transform rot: 3.141592653589793 rad pos: 31.517776,-56.256218 parent: 2 - - uid: 28452 + - uid: 31270 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.47135,-34.17562 parent: 2 - - uid: 28453 + - uid: 31271 components: - type: Transform rot: 3.141592653589793 rad pos: 27.524584,-30.467949 parent: 2 - - uid: 28454 + - uid: 31272 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-1.5 parent: 2 - - uid: 28455 + - uid: 31273 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.615208,4.6352835 parent: 2 - - uid: 28456 + - uid: 31274 components: - type: Transform rot: 3.141592653589793 rad @@ -215024,7 +219331,7 @@ entities: parent: 2 - proto: SignDirectionalGravity entities: - - uid: 8670 + - uid: 31275 components: - type: Transform rot: -1.5707963267948966 rad @@ -215032,7 +219339,7 @@ entities: parent: 2 - proto: SignDirectionalHop entities: - - uid: 28458 + - uid: 31276 components: - type: Transform rot: 3.141592653589793 rad @@ -215040,7 +219347,7 @@ entities: parent: 2 - proto: SignDirectionalHydro entities: - - uid: 28459 + - uid: 31277 components: - type: Transform rot: 3.141592653589793 rad @@ -215048,13 +219355,13 @@ entities: parent: 2 - proto: SignDirectionalLibrary entities: - - uid: 28460 + - uid: 31278 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.534568,2.2207742 parent: 2 - - uid: 28461 + - uid: 31279 components: - type: Transform rot: 3.141592653589793 rad @@ -215062,60 +219369,60 @@ entities: parent: 2 - proto: SignDirectionalMed entities: - - uid: 6179 + - uid: 31280 components: - type: Transform rot: 3.141592653589793 rad pos: 24.520876,-28.887794 parent: 2 - - uid: 28462 + - uid: 31281 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.534657,-1.2827568 parent: 2 - - uid: 28464 + - uid: 31282 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.536149,2.470848 parent: 2 - - uid: 28465 + - uid: 31283 components: - type: Transform rot: 3.141592653589793 rad pos: -34.47757,-41.251305 parent: 2 - - uid: 28466 + - uid: 31284 components: - type: Transform rot: 3.141592653589793 rad pos: -30.481707,-67.179375 parent: 2 - - uid: 28467 + - uid: 31285 components: - type: Transform pos: -28.507202,-6.424101 parent: 2 - - uid: 28468 + - uid: 31286 components: - type: Transform rot: 3.141592653589793 rad pos: 27.532627,-30.714941 parent: 2 - - uid: 28469 + - uid: 31287 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.472578,-74.461975 parent: 2 - - uid: 28470 + - uid: 31288 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.493607,-36.224606 parent: 2 - - uid: 28471 + - uid: 31289 components: - type: Transform rot: -1.5707963267948966 rad @@ -215123,13 +219430,13 @@ entities: parent: 2 - proto: SignDirectionalSalvage entities: - - uid: 28472 + - uid: 31290 components: - type: Transform rot: 3.141592653589793 rad pos: 26.548445,-67.72697 parent: 2 - - uid: 28473 + - uid: 31291 components: - type: Transform rot: -1.5707963267948966 rad @@ -215137,129 +219444,129 @@ entities: parent: 2 - proto: SignDirectionalSci entities: - - uid: 6165 + - uid: 31292 components: - type: Transform rot: 3.141592653589793 rad pos: 25.520876,-28.856544 parent: 2 - - uid: 28474 + - uid: 31293 components: - type: Transform pos: -28.491577,-6.674101 parent: 2 - - uid: 28475 + - uid: 31294 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.502129,-34.153027 parent: 2 - - uid: 28476 + - uid: 31295 components: - type: Transform rot: 3.141592653589793 rad pos: -30.481707,-67.434006 parent: 2 - - uid: 28477 + - uid: 31296 components: - type: Transform pos: -34.478325,-41.753128 parent: 2 - - uid: 28479 + - uid: 31297 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.475539,-74.715485 parent: 2 - - uid: 28480 + - uid: 31298 components: - type: Transform pos: -33.47158,-36.632576 parent: 2 - proto: SignDirectionalSolar entities: - - uid: 28481 + - uid: 31299 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-41.5 parent: 2 - - uid: 28482 + - uid: 31300 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-93.5 parent: 2 - - uid: 28483 + - uid: 31301 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,8.5 parent: 2 - - uid: 28484 + - uid: 31302 components: - type: Transform pos: -58.5,-45.5 parent: 2 - - uid: 28485 + - uid: 31303 components: - type: Transform pos: 62.5,-69.5 parent: 2 - - uid: 28486 + - uid: 31304 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-69.5 parent: 2 - - uid: 28487 + - uid: 31305 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-27.5 parent: 2 - - uid: 28488 + - uid: 31306 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,-85.5 parent: 2 - - uid: 28489 + - uid: 31307 components: - type: Transform pos: -57.5,-67.5 parent: 2 - - uid: 28490 + - uid: 31308 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-93.5 parent: 2 - - uid: 28491 + - uid: 31309 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,9.5 parent: 2 - - uid: 28492 + - uid: 31310 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-23.5 parent: 2 - - uid: 28493 + - uid: 31311 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-2.5 parent: 2 - - uid: 28494 + - uid: 31312 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-12.5 parent: 2 - - uid: 28495 + - uid: 31313 components: - type: Transform rot: -1.5707963267948966 rad @@ -215267,36 +219574,36 @@ entities: parent: 2 - proto: SignDirectionalSupply entities: - - uid: 28496 + - uid: 31314 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.372179,-66.70939 parent: 2 - - uid: 28497 + - uid: 31315 components: - type: Transform pos: -34.5,-45.5 parent: 2 - - uid: 28498 + - uid: 31316 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.47135,-34.404785 parent: 2 - - uid: 28499 + - uid: 31317 components: - type: Transform pos: 30.500727,-34.629543 parent: 2 - - uid: 28500 + - uid: 31318 components: - type: Transform pos: 2.5434494,-77.50745 parent: 2 - proto: SignDisposalSpace entities: - - uid: 28501 + - uid: 31319 components: - type: Transform rot: 3.141592653589793 rad @@ -215304,19 +219611,19 @@ entities: parent: 2 - proto: SignElectricalMed entities: - - uid: 28502 + - uid: 31320 components: - type: Transform pos: 43.5,-81.5 parent: 2 - - uid: 28503 + - uid: 31321 components: - type: Transform pos: 54.5,-55.5 parent: 2 - proto: SignEngine entities: - - uid: 28504 + - uid: 31322 components: - type: MetaData name: знак "РИТЭГ" @@ -215325,7 +219632,7 @@ entities: parent: 2 - proto: SignEngineering entities: - - uid: 28505 + - uid: 31323 components: - type: Transform rot: 3.141592653589793 rad @@ -215333,29 +219640,29 @@ entities: parent: 2 - proto: SignEVA entities: - - uid: 28506 + - uid: 31324 components: - type: Transform pos: 2.5,13.5 parent: 2 - - uid: 28507 + - uid: 31325 components: - type: Transform pos: -1.5,13.5 parent: 2 - - uid: 28508 + - uid: 31326 components: - type: Transform pos: -1.5,17.5 parent: 2 - - uid: 28509 + - uid: 31327 components: - type: Transform pos: 2.5,17.5 parent: 2 - proto: SignGravity entities: - - uid: 13450 + - uid: 31328 components: - type: Transform rot: -1.5707963267948966 rad @@ -215363,35 +219670,35 @@ entities: parent: 2 - proto: SignHead entities: - - uid: 28511 + - uid: 31329 components: - type: Transform pos: -9.5,8.5 parent: 2 - - uid: 28512 + - uid: 31330 components: - type: Transform pos: 9.5,18.5 parent: 2 - - uid: 28513 + - uid: 31331 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-70.5 parent: 2 - - uid: 31761 + - uid: 31332 components: - type: Transform pos: 55.5,9.5 parent: 2 - - uid: 38455 + - uid: 41402 components: - type: Transform pos: -2.5,-4.5 - parent: 37887 + parent: 40828 - proto: SignHydro1 entities: - - uid: 28514 + - uid: 31333 components: - type: Transform rot: 3.141592653589793 rad @@ -215399,40 +219706,40 @@ entities: parent: 2 - proto: SignInterrogation entities: - - uid: 40206 + - uid: 31334 components: - type: Transform pos: 51.5,-12.5 parent: 2 - proto: SignJanitor entities: - - uid: 28516 + - uid: 31335 components: - type: Transform pos: 6.5,2.5 parent: 2 - proto: SignLawyer entities: - - uid: 28517 + - uid: 31336 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,2.5 parent: 2 - - uid: 28518 + - uid: 31337 components: - type: Transform pos: 29.5,23.5 parent: 2 - proto: SignLibrary entities: - - uid: 28519 + - uid: 31338 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-3.5 parent: 2 - - uid: 28520 + - uid: 31339 components: - type: Transform rot: 1.5707963267948966 rad @@ -215440,7 +219747,7 @@ entities: parent: 2 - proto: SignMail entities: - - uid: 28521 + - uid: 31340 components: - type: Transform rot: 1.5707963267948966 rad @@ -215448,76 +219755,84 @@ entities: parent: 2 - proto: SignMaterials entities: - - uid: 28522 + - uid: 31341 components: - type: Transform pos: -66.5,-18.5 parent: 2 - proto: SignMorgue entities: - - uid: 735 + - uid: 31342 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-0.5 parent: 2 - - uid: 28523 + - uid: 31343 components: - type: Transform pos: -52.5,-40.5 parent: 2 - - uid: 28524 + - uid: 31344 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-40.5 parent: 2 - - uid: 28525 + - uid: 31345 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-85.5 parent: 2 - - uid: 28526 + - uid: 31346 components: - type: Transform pos: -55.5,-30.5 parent: 2 - proto: SignNews entities: - - uid: 28527 + - uid: 31347 components: - type: Transform pos: 29.5,-72.5 parent: 2 - proto: SignNosmoking entities: - - uid: 28528 + - uid: 31348 components: - type: Transform pos: 95.5,-77.5 parent: 2 - - uid: 28529 + - uid: 31349 components: - type: Transform pos: 100.5,-61.5 parent: 2 - - uid: 28530 + - uid: 31350 components: - type: Transform pos: 100.5,-85.5 parent: 2 - proto: SignPlaque entities: - - uid: 36071 + - uid: 31351 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,12.5 parent: 2 + - uid: 31352 + components: + - type: MetaData + desc: Важная шишка принимает посетителей каждый четверг февраля високосного года, если он выпадает на 13 число. + name: Важная Шишка + - type: Transform + pos: -14.5,2.5 + parent: 2 - proto: SignPrison entities: - - uid: 40604 + - uid: 31353 components: - type: Transform rot: -1.5707963267948966 rad @@ -215525,19 +219840,19 @@ entities: parent: 2 - proto: SignPsychology entities: - - uid: 28537 + - uid: 31354 components: - type: Transform pos: -57.5,-45.5 parent: 2 - proto: SignRadiationMed entities: - - uid: 28538 + - uid: 31355 components: - type: Transform pos: 37.5,-81.5 parent: 2 - - uid: 28539 + - uid: 31356 components: - type: Transform rot: 3.141592653589793 rad @@ -215545,52 +219860,52 @@ entities: parent: 2 - proto: SignRedFive entities: - - uid: 14736 + - uid: 31357 components: - type: Transform pos: 45.5,7.5 parent: 2 - proto: SignRedFour entities: - - uid: 14738 + - uid: 31358 components: - type: Transform pos: 45.5,3.5 parent: 2 - proto: SignRedOne entities: - - uid: 14083 + - uid: 31359 components: - type: Transform pos: 41.5,1.5 parent: 2 - proto: SignRedThree entities: - - uid: 2821 + - uid: 31360 components: - type: Transform pos: 45.5,0.5 parent: 2 - proto: SignRedTwo entities: - - uid: 11903 + - uid: 31361 components: - type: Transform pos: 41.5,4.5 parent: 2 - proto: SignRobo entities: - - uid: 28540 + - uid: 31362 components: - type: Transform pos: -33.5,-54.5 parent: 2 - - uid: 28541 + - uid: 31363 components: - type: Transform pos: -41.5,-55.5 parent: 2 - - uid: 31620 + - uid: 31364 components: - type: Transform rot: -1.5707963267948966 rad @@ -215598,149 +219913,149 @@ entities: parent: 2 - proto: SignScience entities: - - uid: 28542 + - uid: 31365 components: - type: Transform pos: -43.5,-49.5 parent: 2 - - uid: 28543 + - uid: 31366 components: - type: Transform pos: -40.5,-45.5 parent: 2 - proto: SignSecurearea entities: - - uid: 28544 + - uid: 31367 components: - type: Transform pos: 39.5,-2.5 parent: 2 - proto: SignSecureMedRed entities: - - uid: 25753 + - uid: 31368 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-16.5 parent: 2 - - uid: 28546 + - uid: 31369 components: - type: Transform pos: 14.5,2.5 parent: 2 - - uid: 28547 + - uid: 31370 components: - type: Transform pos: 93.5,-80.5 parent: 2 - - uid: 28548 + - uid: 31371 components: - type: Transform pos: 57.5,-57.5 parent: 2 - - uid: 28549 + - uid: 31372 components: - type: Transform pos: 13.5,7.5 parent: 2 - - uid: 28550 + - uid: 31373 components: - type: Transform pos: 43.5,-90.5 parent: 2 - - uid: 28551 + - uid: 31374 components: - type: Transform pos: -52.5,-63.5 parent: 2 - - uid: 38939 + - uid: 41885 components: - type: Transform pos: 4.5,-12.5 - parent: 38722 + parent: 41669 - proto: SignSecureSmall entities: - - uid: 40607 + - uid: 31375 components: - type: Transform pos: 56.5,-26.5 parent: 2 - proto: SignSecureSmallRed entities: - - uid: 38456 + - uid: 31376 + components: + - type: Transform + pos: 66.5,-18.5 + parent: 2 + - uid: 41403 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-8.5 - parent: 37887 - - uid: 38457 + parent: 40828 + - uid: 41404 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-8.5 - parent: 37887 - - uid: 38458 + parent: 40828 + - uid: 41405 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,0.5 - parent: 37887 - - uid: 38459 + parent: 40828 + - uid: 41406 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,0.5 - parent: 37887 - - uid: 38460 + parent: 40828 + - uid: 41407 components: - type: Transform pos: -6.5,-15.5 - parent: 37887 - - uid: 38461 + parent: 40828 + - uid: 41408 components: - type: Transform pos: -2.5,-15.5 - parent: 37887 - - uid: 38462 + parent: 40828 + - uid: 41409 components: - type: Transform pos: 3.5,-15.5 - parent: 37887 - - uid: 38463 + parent: 40828 + - uid: 41410 components: - type: Transform pos: 7.5,-15.5 - parent: 37887 - - uid: 38464 + parent: 40828 + - uid: 41411 components: - type: Transform pos: 8.5,-14.5 - parent: 37887 - - uid: 38465 + parent: 40828 + - uid: 41412 components: - type: Transform pos: -7.5,-14.5 - parent: 37887 - - uid: 38466 + parent: 40828 + - uid: 41413 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-1.5 - parent: 37887 - - uid: 38467 + parent: 40828 + - uid: 41414 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-1.5 - parent: 37887 - - uid: 40608 - components: - - type: Transform - pos: 66.5,-18.5 - parent: 2 + parent: 40828 - proto: SignSecurity entities: - - uid: 40602 + - uid: 31377 components: - type: Transform rot: -1.5707963267948966 rad @@ -215748,7 +220063,7 @@ entities: parent: 2 - proto: SignServer entities: - - uid: 28552 + - uid: 31378 components: - type: Transform rot: -1.5707963267948966 rad @@ -215756,82 +220071,82 @@ entities: parent: 2 - proto: SignShipDock entities: - - uid: 28553 + - uid: 31379 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-100.5 parent: 2 - - uid: 28556 + - uid: 31380 components: - type: Transform pos: 109.5,-56.5 parent: 2 - - uid: 38468 + - uid: 41415 components: - type: Transform pos: 0.5,-3.5 - parent: 37887 + parent: 40828 - proto: SignSomethingOld entities: - - uid: 33546 + - uid: 31381 components: - type: Transform pos: 6.5,-36.5 parent: 2 - proto: SignSomethingOld2 entities: - - uid: 33547 + - uid: 31382 components: - type: Transform pos: 9.5,-30.5 parent: 2 - proto: SignSpace entities: - - uid: 28560 + - uid: 31383 components: - type: Transform rot: -1.5707963267948966 rad pos: -88.5,-3.5 parent: 2 - - uid: 28561 + - uid: 31384 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,2.5 parent: 2 - - uid: 28562 + - uid: 31385 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,2.5 parent: 2 - - uid: 38469 + - uid: 41416 components: - type: Transform pos: 0.5,0.5 - parent: 37887 + parent: 40828 - proto: SignSurgery entities: - - uid: 28563 + - uid: 31386 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-22.5 parent: 2 - - uid: 28564 + - uid: 31387 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-26.5 parent: 2 - - uid: 28565 + - uid: 31388 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,13.5 parent: 2 - - uid: 28566 + - uid: 31389 components: - type: Transform rot: -1.5707963267948966 rad @@ -215839,43 +220154,43 @@ entities: parent: 2 - proto: SignTelecomms entities: - - uid: 28567 + - uid: 31390 components: - type: Transform pos: 98.5,-77.5 parent: 2 - proto: SignToolStorage entities: - - uid: 28568 + - uid: 31391 components: - type: Transform pos: 62.5,-30.5 parent: 2 - - uid: 28569 + - uid: 31392 components: - type: Transform pos: 70.5,-30.5 parent: 2 - - uid: 28571 + - uid: 31393 components: - type: Transform pos: -29.5,-72.5 parent: 2 - proto: SignToxins entities: - - uid: 28573 + - uid: 31394 components: - type: Transform pos: -50.5,-63.5 parent: 2 - proto: SignVirology entities: - - uid: 28574 + - uid: 31395 components: - type: Transform pos: -42.5,-0.5 parent: 2 - - uid: 28575 + - uid: 31396 components: - type: Transform rot: 3.141592653589793 rad @@ -215883,7 +220198,7 @@ entities: parent: 2 - proto: SignVox entities: - - uid: 28576 + - uid: 31397 components: - type: Transform rot: 1.5707963267948966 rad @@ -215891,13 +220206,13 @@ entities: parent: 2 - proto: SignXenobio entities: - - uid: 28577 + - uid: 31398 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-67.5 parent: 2 - - uid: 28578 + - uid: 31399 components: - type: Transform rot: 3.141592653589793 rad @@ -215905,7 +220220,7 @@ entities: parent: 2 - proto: SignZomlab entities: - - uid: 37667 + - uid: 31400 components: - type: Transform rot: 1.5707963267948966 rad @@ -215913,120 +220228,120 @@ entities: parent: 2 - proto: SilverOre1 entities: - - uid: 7522 + - uid: 31401 components: - type: Transform pos: -20.519638,-58.623688 parent: 2 - - uid: 7523 + - uid: 31402 components: - type: Transform pos: -20.613388,-58.795563 parent: 2 - - uid: 11142 + - uid: 31403 components: - type: Transform pos: -19.754013,-58.311188 parent: 2 - - uid: 13532 + - uid: 31404 components: - type: Transform pos: -21.785263,-59.358063 parent: 2 - - uid: 13817 + - uid: 31405 components: - type: Transform pos: -19.207138,-58.608063 parent: 2 - - uid: 13856 + - uid: 31406 components: - type: Transform pos: -18.394638,-57.295563 parent: 2 - - uid: 15060 + - uid: 31407 components: - type: Transform pos: -18.504013,-57.920563 parent: 2 - - uid: 27148 + - uid: 31408 components: - type: Transform pos: -20.472763,-58.295563 parent: 2 - proto: SilverRing entities: - - uid: 1503 + - uid: 31409 components: - type: Transform pos: 36.58903,-67.55695 parent: 2 - - uid: 6321 + - uid: 31410 components: - type: Transform pos: 36.698406,-67.54133 parent: 2 - proto: Sink entities: - - uid: 19544 + - uid: 31411 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,9.5 parent: 2 - - uid: 28579 + - uid: 31412 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-4.5 parent: 2 - - uid: 28580 + - uid: 31413 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-88.5 parent: 2 - - uid: 28581 + - uid: 31414 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-75.5 parent: 2 - - uid: 28582 + - uid: 31415 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-36.5 parent: 2 - - uid: 28583 + - uid: 31416 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-37.5 parent: 2 - - uid: 28584 + - uid: 31417 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-38.5 parent: 2 - - uid: 28587 + - uid: 31418 components: - type: Transform pos: 8.5,-71.5 parent: 2 - - uid: 28588 + - uid: 31419 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,27.5 parent: 2 - - uid: 29263 + - uid: 31420 components: - type: Transform rot: -1.5707963267948966 rad pos: 89.5,-4.5 parent: 2 - - uid: 40599 + - uid: 31421 components: - type: Transform rot: -1.5707963267948966 rad @@ -216034,7 +220349,7 @@ entities: parent: 2 - proto: SinkEmpty entities: - - uid: 33617 + - uid: 31422 components: - type: Transform rot: 3.141592653589793 rad @@ -216042,67 +220357,73 @@ entities: parent: 2 - proto: SinkStemlessWater entities: - - uid: 2089 + - uid: 31423 components: - type: Transform pos: 40.5,5.5 parent: 2 - - uid: 2101 + - uid: 31424 components: - type: Transform pos: 40.5,2.5 parent: 2 - - uid: 2112 + - uid: 31425 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 2729 + - uid: 31426 components: - type: Transform pos: 47.5,1.5 parent: 2 - - uid: 26257 + - uid: 31427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 2 + - uid: 31428 components: - type: Transform pos: 74.5,-10.5 parent: 2 - - uid: 26295 + - uid: 31429 components: - type: Transform pos: 75.5,-10.5 parent: 2 - - uid: 28589 + - uid: 31430 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.294437,-33.795685 parent: 2 - - uid: 28590 + - uid: 31431 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-71.5 parent: 2 - - uid: 28591 + - uid: 31432 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-94.5 parent: 2 - - uid: 28592 + - uid: 31433 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-93.5 parent: 2 - - uid: 28593 + - uid: 31434 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-92.5 parent: 2 - - uid: 40761 + - uid: 31435 components: - type: Transform rot: 3.141592653589793 rad @@ -216110,89 +220431,89 @@ entities: parent: 2 - proto: SinkWide entities: - - uid: 2817 + - uid: 31436 components: - type: Transform pos: 88.5,-8.5 parent: 2 - - uid: 28594 + - uid: 31437 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-10.5 parent: 2 - - uid: 28595 + - uid: 31438 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 2 - - uid: 28596 + - uid: 31439 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-8.5 parent: 2 - - uid: 28597 + - uid: 31440 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-9.5 parent: 2 - - uid: 28598 + - uid: 31441 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-75.5 parent: 2 - - uid: 28599 + - uid: 31442 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-75.5 parent: 2 - - uid: 28600 + - uid: 31443 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-75.5 parent: 2 - - uid: 28602 + - uid: 31444 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,11.5 parent: 2 - - uid: 28603 + - uid: 31445 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,10.5 parent: 2 - - uid: 28604 + - uid: 31446 components: - type: Transform pos: -23.5,-91.5 parent: 2 - - uid: 28605 + - uid: 31447 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-21.5 parent: 2 - - uid: 28606 + - uid: 31448 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,12.5 parent: 2 - - uid: 28607 + - uid: 31449 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,1.5 parent: 2 - - uid: 28608 + - uid: 31450 components: - type: Transform rot: -1.5707963267948966 rad @@ -216200,19 +220521,19 @@ entities: parent: 2 - proto: SmartFridge entities: - - uid: 28609 + - uid: 31451 components: - type: MetaData name: Глупи холодильник - type: Transform pos: -37.5,-27.5 parent: 2 - - uid: 28610 + - uid: 31452 components: - type: Transform pos: -55.5,-20.5 parent: 2 - - uid: 28611 + - uid: 31453 components: - type: MetaData name: Тупой холодильник @@ -216221,243 +220542,243 @@ entities: parent: 2 - proto: SMESBasic entities: - - uid: 1661 + - uid: 31454 components: - type: Transform pos: 59.5,-54.5 parent: 2 - - uid: 2197 + - uid: 31455 components: - type: Transform pos: 56.5,-53.5 parent: 2 - - uid: 2199 + - uid: 31456 components: - type: Transform pos: 56.5,-51.5 parent: 2 - - uid: 2289 + - uid: 31457 components: - type: Transform pos: 56.5,-52.5 parent: 2 - - uid: 2307 + - uid: 31458 components: - type: Transform pos: 59.5,-52.5 parent: 2 - - uid: 2308 + - uid: 31459 components: - type: Transform pos: 59.5,-51.5 parent: 2 - - uid: 4826 + - uid: 31460 components: - type: Transform pos: 59.5,-53.5 parent: 2 - - uid: 13480 + - uid: 31461 components: - type: Transform pos: 28.5,-35.5 parent: 2 - - uid: 13485 + - uid: 31462 components: - type: Transform pos: 56.5,-54.5 parent: 2 - - uid: 17798 + - uid: 31463 components: - type: Transform pos: -61.5,-17.5 parent: 2 - - uid: 18775 + - uid: 31464 components: - type: Transform pos: 67.5,-11.5 parent: 2 - - uid: 28612 + - uid: 31465 components: - type: MetaData name: Солнечные панели СЗ - type: Transform pos: -71.5,11.5 parent: 2 - - uid: 28614 + - uid: 31466 components: - type: MetaData name: Бриг - type: Transform pos: 33.5,-24.5 parent: 2 - - uid: 28615 + - uid: 31467 components: - type: Transform pos: -36.5,-116.5 parent: 2 - - uid: 28616 + - uid: 31468 components: - type: Transform pos: -36.5,-112.5 parent: 2 - - uid: 28617 + - uid: 31469 components: - type: MetaData name: мостик - type: Transform pos: 12.5,6.5 parent: 2 - - uid: 28620 + - uid: 31470 components: - type: MetaData name: Солнечные панели ЮЗ - type: Transform pos: -57.5,-85.5 parent: 2 - - uid: 28621 + - uid: 31471 components: - type: MetaData name: Снабжение - type: Transform pos: 20.5,-86.5 parent: 2 - - uid: 28622 + - uid: 31472 components: - type: MetaData name: Хранилище плат - type: Transform pos: 35.5,-40.5 parent: 2 - - uid: 28623 + - uid: 31473 components: - type: MetaData name: Солнечные панели ЮВ - type: Transform pos: 64.5,-67.5 parent: 2 - - uid: 28625 + - uid: 31474 components: - type: MetaData name: Утилизаторная - type: Transform pos: -11.5,-88.5 parent: 2 - - uid: 28627 + - uid: 31475 components: - type: MetaData name: ТЭГ - type: Transform pos: 55.5,-86.5 parent: 2 - - uid: 28631 + - uid: 31476 components: - type: MetaData name: Тесла 1 - type: Transform pos: 69.5,-62.5 parent: 2 - - uid: 28634 + - uid: 31477 components: - type: MetaData name: Инженерный Ю - type: Transform pos: 34.5,-80.5 parent: 2 - - uid: 28635 + - uid: 31478 components: - type: MetaData name: Тесла 2 - type: Transform pos: 69.5,-56.5 parent: 2 - - uid: 28636 + - uid: 31479 components: - type: MetaData name: Мед С и библиотека - type: Transform pos: -36.5,9.5 parent: 2 - - uid: 28637 + - uid: 31480 components: - type: MetaData name: Спутник ИИ - type: Transform pos: 100.5,-64.5 parent: 2 - - uid: 28638 + - uid: 31481 components: - type: Transform pos: 37.5,-77.5 parent: 2 - - uid: 28639 + - uid: 31482 components: - type: Transform pos: 37.5,-78.5 parent: 2 - - uid: 29264 + - uid: 31483 components: - type: Transform pos: -5.5,-4.5 parent: 2 - - uid: 33931 + - uid: 31484 components: - type: Transform pos: -3.5,-47.5 parent: 2 - - uid: 33935 + - uid: 31485 components: - type: Transform pos: -9.5,-48.5 parent: 2 - - uid: 38470 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 37887 - - uid: 40650 + - uid: 31486 components: - type: Transform pos: 44.5,14.5 parent: 2 + - uid: 41417 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 40828 - proto: SMESBasicEmpty entities: - - uid: 28641 + - uid: 31487 components: - type: Transform pos: 81.5,-56.5 parent: 2 - - uid: 28642 + - uid: 31488 components: - type: Transform pos: 81.5,-62.5 parent: 2 - proto: SMESMachineCircuitboard entities: - - uid: 28643 + - uid: 31489 components: - type: Transform pos: 38.488438,-38.479836 parent: 2 - proto: SmokeGrenade entities: - - uid: 26447 + - uid: 31490 components: - type: Transform pos: 8.628214,-16.242386 parent: 2 - - uid: 26490 + - uid: 31491 components: - type: Transform pos: 8.362589,-16.35176 parent: 2 - proto: SmokingPipeFilledTobacco entities: - - uid: 28646 + - uid: 31492 components: - type: Transform pos: -0.47344333,27.512299 parent: 2 - - uid: 28647 + - uid: 31493 components: - type: Transform rot: 1.5707963267948966 rad @@ -216465,45 +220786,45 @@ entities: parent: 2 - proto: Soap entities: - - uid: 2702 + - uid: 2555 components: - type: Transform - parent: 2698 + parent: 2552 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14932 + - uid: 31494 components: - type: Transform pos: 75.445145,-11.87538 parent: 2 - - uid: 16259 + - uid: 31495 components: - type: Transform pos: 78.5146,-12.610434 parent: 2 - - uid: 40757 + - uid: 31496 components: - type: Transform pos: 39.535465,4.5734296 parent: 2 - proto: SoapOmega entities: - - uid: 17538 + - uid: 31498 components: - type: Transform - parent: 17537 + parent: 31497 - type: Physics canCollide: False - proto: SodaDispenser entities: - - uid: 28648 + - uid: 31499 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-102.5 parent: 2 - - uid: 28649 + - uid: 31500 components: - type: Transform rot: 1.5707963267948966 rad @@ -216511,960 +220832,960 @@ entities: parent: 2 - proto: SolarPanel entities: - - uid: 24285 + - uid: 31501 components: - type: Transform pos: -79.5,18.5 parent: 2 - - uid: 28651 + - uid: 31502 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-94.5 parent: 2 - - uid: 28652 + - uid: 31503 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-96.5 parent: 2 - - uid: 28653 + - uid: 31504 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-98.5 parent: 2 - - uid: 28654 + - uid: 31505 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-98.5 parent: 2 - - uid: 28655 + - uid: 31506 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-96.5 parent: 2 - - uid: 28656 + - uid: 31507 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-94.5 parent: 2 - - uid: 28657 + - uid: 31508 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-94.5 parent: 2 - - uid: 28658 + - uid: 31509 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-94.5 parent: 2 - - uid: 28659 + - uid: 31510 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-96.5 parent: 2 - - uid: 28660 + - uid: 31511 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-96.5 parent: 2 - - uid: 28661 + - uid: 31512 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-90.5 parent: 2 - - uid: 28662 + - uid: 31513 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-96.5 parent: 2 - - uid: 28663 + - uid: 31514 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-92.5 parent: 2 - - uid: 28664 + - uid: 31515 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-92.5 parent: 2 - - uid: 28665 + - uid: 31516 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-96.5 parent: 2 - - uid: 28666 + - uid: 31517 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-90.5 parent: 2 - - uid: 28667 + - uid: 31518 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-92.5 parent: 2 - - uid: 28668 + - uid: 31519 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-92.5 parent: 2 - - uid: 28669 + - uid: 31520 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-90.5 parent: 2 - - uid: 28670 + - uid: 31521 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-90.5 parent: 2 - - uid: 28671 + - uid: 31522 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-90.5 parent: 2 - - uid: 28672 + - uid: 31523 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-90.5 parent: 2 - - uid: 28673 + - uid: 31524 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-96.5 parent: 2 - - uid: 28674 + - uid: 31525 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-88.5 parent: 2 - - uid: 28675 + - uid: 31526 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-92.5 parent: 2 - - uid: 28676 + - uid: 31527 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-94.5 parent: 2 - - uid: 28677 + - uid: 31528 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-92.5 parent: 2 - - uid: 28678 + - uid: 31529 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-90.5 parent: 2 - - uid: 28679 + - uid: 31530 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-92.5 parent: 2 - - uid: 28680 + - uid: 31531 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-90.5 parent: 2 - - uid: 28681 + - uid: 31532 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-92.5 parent: 2 - - uid: 28682 + - uid: 31533 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-96.5 parent: 2 - - uid: 28683 + - uid: 31534 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-98.5 parent: 2 - - uid: 28684 + - uid: 31535 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-92.5 parent: 2 - - uid: 28685 + - uid: 31536 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-96.5 parent: 2 - - uid: 28686 + - uid: 31537 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-94.5 parent: 2 - - uid: 28687 + - uid: 31538 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-90.5 parent: 2 - - uid: 28688 + - uid: 31539 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-90.5 parent: 2 - - uid: 28690 + - uid: 31540 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-88.5 parent: 2 - - uid: 28691 + - uid: 31541 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-92.5 parent: 2 - - uid: 28693 + - uid: 31542 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-94.5 parent: 2 - - uid: 28694 + - uid: 31543 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-94.5 parent: 2 - - uid: 28695 + - uid: 31544 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-90.5 parent: 2 - - uid: 28696 + - uid: 31545 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-90.5 parent: 2 - - uid: 28697 + - uid: 31546 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-94.5 parent: 2 - - uid: 28698 + - uid: 31547 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-94.5 parent: 2 - - uid: 28699 + - uid: 31548 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-88.5 parent: 2 - - uid: 28701 + - uid: 31549 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-96.5 parent: 2 - - uid: 28702 + - uid: 31550 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-98.5 parent: 2 - - uid: 28703 + - uid: 31551 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-88.5 parent: 2 - - uid: 28705 + - uid: 31552 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-96.5 parent: 2 - - uid: 28706 + - uid: 31553 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-92.5 parent: 2 - - uid: 28707 + - uid: 31554 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-92.5 parent: 2 - - uid: 28708 + - uid: 31555 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-92.5 parent: 2 - - uid: 28709 + - uid: 31556 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-98.5 parent: 2 - - uid: 28710 + - uid: 31557 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-96.5 parent: 2 - - uid: 28711 + - uid: 31558 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-94.5 parent: 2 - - uid: 28712 + - uid: 31559 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-92.5 parent: 2 - - uid: 28713 + - uid: 31560 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-88.5 parent: 2 - - uid: 28714 + - uid: 31561 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-88.5 parent: 2 - - uid: 28715 + - uid: 31562 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-94.5 parent: 2 - - uid: 28716 + - uid: 31563 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-96.5 parent: 2 - - uid: 28717 + - uid: 31564 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-92.5 parent: 2 - - uid: 28718 + - uid: 31565 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-94.5 parent: 2 - - uid: 28719 + - uid: 31566 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-102.5 parent: 2 - - uid: 28720 + - uid: 31567 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-96.5 parent: 2 - - uid: 28721 + - uid: 31568 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-96.5 parent: 2 - - uid: 28722 + - uid: 31569 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-94.5 parent: 2 - - uid: 28723 + - uid: 31570 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-92.5 parent: 2 - - uid: 28724 + - uid: 31571 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-98.5 parent: 2 - - uid: 28725 + - uid: 31572 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-98.5 parent: 2 - - uid: 28726 + - uid: 31573 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-98.5 parent: 2 - - uid: 28727 + - uid: 31574 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-100.5 parent: 2 - - uid: 28728 + - uid: 31575 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-102.5 parent: 2 - - uid: 28730 + - uid: 31576 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-100.5 parent: 2 - - uid: 28731 + - uid: 31577 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-102.5 parent: 2 - - uid: 28732 + - uid: 31578 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-92.5 parent: 2 - - uid: 28733 + - uid: 31579 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-90.5 parent: 2 - - uid: 28734 + - uid: 31580 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-98.5 parent: 2 - - uid: 28735 + - uid: 31581 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-96.5 parent: 2 - - uid: 28736 + - uid: 31582 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,12.5 parent: 2 - - uid: 28737 + - uid: 31583 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,16.5 parent: 2 - - uid: 28738 + - uid: 31584 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-90.5 parent: 2 - - uid: 28739 + - uid: 31585 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-94.5 parent: 2 - - uid: 28740 + - uid: 31586 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-86.5 parent: 2 - - uid: 28741 + - uid: 31587 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-86.5 parent: 2 - - uid: 28742 + - uid: 31588 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-86.5 parent: 2 - - uid: 28743 + - uid: 31589 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-88.5 parent: 2 - - uid: 28744 + - uid: 31590 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-86.5 parent: 2 - - uid: 28745 + - uid: 31591 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-102.5 parent: 2 - - uid: 28746 + - uid: 31592 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-100.5 parent: 2 - - uid: 28747 + - uid: 31593 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-102.5 parent: 2 - - uid: 28748 + - uid: 31594 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-102.5 parent: 2 - - uid: 28749 + - uid: 31595 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-107.5 parent: 2 - - uid: 28750 + - uid: 31596 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,22.5 parent: 2 - - uid: 28751 + - uid: 31597 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,28.5 parent: 2 - - uid: 28752 + - uid: 31598 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-96.5 parent: 2 - - uid: 28753 + - uid: 31599 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-100.5 parent: 2 - - uid: 28754 + - uid: 31600 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-100.5 parent: 2 - - uid: 28755 + - uid: 31601 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,18.5 parent: 2 - - uid: 28756 + - uid: 31602 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-105.5 parent: 2 - - uid: 28757 + - uid: 31603 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-88.5 parent: 2 - - uid: 28758 + - uid: 31604 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-106.5 parent: 2 - - uid: 28759 + - uid: 31605 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-107.5 parent: 2 - - uid: 28762 + - uid: 31606 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,18.5 parent: 2 - - uid: 28763 + - uid: 31607 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,18.5 parent: 2 - - uid: 28764 + - uid: 31608 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,16.5 parent: 2 - - uid: 28765 + - uid: 31609 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,16.5 parent: 2 - - uid: 28766 + - uid: 31610 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,16.5 parent: 2 - - uid: 28767 + - uid: 31611 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,16.5 parent: 2 - - uid: 28768 + - uid: 31612 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,14.5 parent: 2 - - uid: 28769 + - uid: 31613 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,14.5 parent: 2 - - uid: 28770 + - uid: 31614 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,14.5 parent: 2 - - uid: 28771 + - uid: 31615 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,12.5 parent: 2 - - uid: 28772 + - uid: 31616 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-90.5 parent: 2 - - uid: 28773 + - uid: 31617 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,12.5 parent: 2 - - uid: 28774 + - uid: 31618 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,12.5 parent: 2 - - uid: 28775 + - uid: 31619 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,12.5 parent: 2 - - uid: 28777 + - uid: 31620 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,14.5 parent: 2 - - uid: 28779 + - uid: 31621 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,14.5 parent: 2 - - uid: 28780 + - uid: 31622 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,16.5 parent: 2 - - uid: 28781 + - uid: 31623 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,16.5 parent: 2 - - uid: 28783 + - uid: 31624 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,18.5 parent: 2 - - uid: 28785 + - uid: 31625 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,18.5 parent: 2 - - uid: 28786 + - uid: 31626 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,18.5 parent: 2 - - uid: 28787 + - uid: 31627 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-105.5 parent: 2 - - uid: 28788 + - uid: 31628 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-107.5 parent: 2 - - uid: 28789 + - uid: 31629 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-105.5 parent: 2 - - uid: 28790 + - uid: 31630 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-105.5 parent: 2 - - uid: 28791 + - uid: 31631 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-106.5 parent: 2 - - uid: 28792 + - uid: 31632 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-107.5 parent: 2 - - uid: 28793 + - uid: 31633 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-106.5 parent: 2 - - uid: 28794 + - uid: 31634 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-88.5 parent: 2 - - uid: 28795 + - uid: 31635 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,22.5 parent: 2 - - uid: 28796 + - uid: 31636 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,23.5 parent: 2 - - uid: 28797 + - uid: 31637 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,24.5 parent: 2 - - uid: 28798 + - uid: 31638 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,24.5 parent: 2 - - uid: 28799 + - uid: 31639 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,23.5 parent: 2 - - uid: 28800 + - uid: 31640 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,24.5 parent: 2 - - uid: 28802 + - uid: 31641 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,22.5 parent: 2 - - uid: 28803 + - uid: 31642 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,24.5 parent: 2 - - uid: 28804 + - uid: 31643 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,23.5 parent: 2 - - uid: 28806 + - uid: 31644 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,26.5 parent: 2 - - uid: 28807 + - uid: 31645 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,27.5 parent: 2 - - uid: 28808 + - uid: 31646 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,29.5 parent: 2 - - uid: 28809 + - uid: 31647 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,29.5 parent: 2 - - uid: 28810 + - uid: 31648 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,28.5 parent: 2 - - uid: 28811 + - uid: 31649 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,27.5 parent: 2 - - uid: 28812 + - uid: 31650 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,26.5 parent: 2 - - uid: 28813 + - uid: 31651 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-86.5 parent: 2 - - uid: 28814 + - uid: 31652 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-88.5 parent: 2 - - uid: 28815 + - uid: 31653 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-88.5 parent: 2 - - uid: 28816 + - uid: 31654 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-88.5 parent: 2 - - uid: 28817 + - uid: 31655 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-86.5 parent: 2 - - uid: 28818 + - uid: 31656 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-88.5 parent: 2 - - uid: 28819 + - uid: 31657 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-86.5 parent: 2 - - uid: 28820 + - uid: 31658 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-88.5 parent: 2 - - uid: 28821 + - uid: 31659 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-86.5 parent: 2 - - uid: 28822 + - uid: 31660 components: - type: Transform rot: 3.141592653589793 rad @@ -217472,86 +221793,86 @@ entities: parent: 2 - proto: SolarPanelBroken entities: - - uid: 16238 + - uid: 31661 components: - type: Transform rot: 1.5707963267948966 rad pos: -86.5,22.5 parent: 2 - - uid: 24260 + - uid: 31662 components: - type: Transform rot: 1.5707963267948966 rad pos: -85.5,14.5 parent: 2 - - uid: 24265 + - uid: 31663 components: - type: Transform rot: 1.5707963267948966 rad pos: -87.5,16.5 parent: 2 - - uid: 24270 + - uid: 31664 components: - type: Transform rot: 1.5707963267948966 rad pos: -86.5,12.5 parent: 2 - - uid: 24287 + - uid: 31665 components: - type: Transform rot: 1.5707963267948966 rad pos: -86.5,18.5 parent: 2 - - uid: 27042 + - uid: 31666 components: - type: Transform pos: -72.5,-94.5 parent: 2 - - uid: 27049 + - uid: 31667 components: - type: Transform pos: -74.5,-98.5 parent: 2 - - uid: 27053 + - uid: 31668 components: - type: Transform pos: -71.5,-92.5 parent: 2 - - uid: 27307 + - uid: 31669 components: - type: Transform pos: -71.5,-96.5 parent: 2 - - uid: 27308 + - uid: 31670 components: - type: Transform pos: -72.5,-100.5 parent: 2 - - uid: 27312 + - uid: 31671 components: - type: Transform pos: -72.5,-106.5 parent: 2 - proto: SolarTracker entities: - - uid: 28823 + - uid: 31672 components: - type: Transform pos: 76.5,-97.5 parent: 2 - - uid: 28824 + - uid: 31673 components: - type: Transform pos: -68.5,-104.5 parent: 2 - - uid: 28825 + - uid: 31674 components: - type: Transform pos: -82.5,30.5 parent: 2 - proto: SolidSecretDoor entities: - - uid: 40103 + - uid: 31675 components: - type: MetaData name: самая обычная стена @@ -217559,184 +221880,193 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-117.5 parent: 2 +- proto: SpaceCash100 + entities: + - uid: 1791 + components: + - type: Transform + parent: 1785 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SpaceCash2500 entities: - - uid: 28830 + - uid: 31676 components: - type: Transform pos: -67.5161,-7.5546904 parent: 2 - - uid: 28831 + - uid: 31677 components: - type: Transform pos: -67.40672,-9.21094 parent: 2 - proto: SpaceHeaterAnchored entities: - - uid: 30824 + - uid: 31678 components: - type: Transform pos: -19.5,-40.5 parent: 2 - proto: SpacemenFigureSpawner entities: - - uid: 28832 + - uid: 31679 components: - type: Transform pos: -36.5,3.5 parent: 2 - proto: SpaceQuartz1 entities: - - uid: 27737 + - uid: 31680 components: - type: Transform pos: -5.6660423,-59.43951 parent: 2 - - uid: 27740 + - uid: 31681 components: - type: Transform pos: -5.3066673,-59.361385 parent: 2 - - uid: 27780 + - uid: 31682 components: - type: Transform pos: -5.2597923,-59.361385 parent: 2 - - uid: 27822 + - uid: 31683 components: - type: Transform pos: -6.4316673,-58.392635 parent: 2 - - uid: 27823 + - uid: 31684 components: - type: Transform pos: -6.4472923,-58.65826 parent: 2 - - uid: 27839 + - uid: 31685 components: - type: Transform pos: -6.4316673,-58.798885 parent: 2 - - uid: 27856 + - uid: 31686 components: - type: Transform pos: -6.4316673,-58.87701 parent: 2 - - uid: 27857 + - uid: 31687 components: - type: Transform pos: -6.2910423,-59.705135 parent: 2 - - uid: 27858 + - uid: 31688 components: - type: Transform pos: -6.0566673,-59.65826 parent: 2 - - uid: 27859 + - uid: 31689 components: - type: Transform pos: -3.5722923,-58.53326 parent: 2 - - uid: 27860 + - uid: 31690 components: - type: Transform pos: -3.1504173,-58.43951 parent: 2 - - uid: 27861 + - uid: 31691 components: - type: Transform pos: -2.9629173,-58.361385 parent: 2 - - uid: 27862 + - uid: 31692 components: - type: Transform pos: -3.2285423,-60.28326 parent: 2 - - uid: 27863 + - uid: 31693 components: - type: Transform pos: -3.2285423,-60.28326 parent: 2 - - uid: 27864 + - uid: 31694 components: - type: Transform pos: -4.1347923,-60.31451 parent: 2 - - uid: 27865 + - uid: 31695 components: - type: Transform pos: -4.9316673,-60.93951 parent: 2 - - uid: 27867 + - uid: 31696 components: - type: Transform pos: -2.5722923,-59.25201 parent: 2 - - uid: 27868 + - uid: 31697 components: - type: Transform pos: -7.1504173,-58.048885 parent: 2 - - uid: 27869 + - uid: 31698 components: - type: Transform pos: -7.4160423,-57.12701 parent: 2 - - uid: 27870 + - uid: 31699 components: - type: Transform pos: -6.6216874,-56.6744 parent: 2 - - uid: 27871 + - uid: 31700 components: - type: Transform pos: -6.2310624,-56.6119 parent: 2 - - uid: 27875 + - uid: 31701 components: - type: Transform pos: -5.7310624,-56.658775 parent: 2 - - uid: 27876 + - uid: 31702 components: - type: Transform pos: -4.8404374,-56.6119 parent: 2 - - uid: 27877 + - uid: 31703 components: - type: Transform pos: -4.4810624,-56.315025 parent: 2 - - uid: 27878 + - uid: 31704 components: - type: Transform pos: -3.9654374,-56.45565 parent: 2 - proto: SpaceVillainArcadeFilled entities: - - uid: 28838 + - uid: 31705 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,9.5 parent: 2 - - uid: 28839 + - uid: 31706 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,9.5 parent: 2 - - uid: 28840 + - uid: 31707 components: - type: Transform pos: -64.5,12.5 parent: 2 - - uid: 28841 + - uid: 31708 components: - type: Transform pos: -62.5,12.5 parent: 2 - - uid: 40825 + - uid: 31709 components: - type: Transform rot: 1.5707963267948966 rad @@ -217744,7 +222074,7 @@ entities: parent: 2 - proto: SpawnFloorTrapBear entities: - - uid: 39130 + - uid: 31710 components: - type: Transform rot: 1.5707963267948966 rad @@ -217752,7 +222082,7 @@ entities: parent: 2 - proto: SpawnFloorTrapCarp entities: - - uid: 39125 + - uid: 31711 components: - type: Transform rot: 1.5707963267948966 rad @@ -217760,7 +222090,7 @@ entities: parent: 2 - proto: SpawnFloorTrapKangaroo entities: - - uid: 30656 + - uid: 31712 components: - type: Transform rot: 1.5707963267948966 rad @@ -217768,213 +222098,207 @@ entities: parent: 2 - proto: SpawnMechRipley entities: - - uid: 27879 + - uid: 31713 components: - type: Transform pos: -19.5,-61.5 parent: 2 - proto: SpawnMobAlexander entities: - - uid: 28842 + - uid: 31714 components: - type: Transform pos: 29.5,10.5 parent: 2 - proto: SpawnMobBear entities: - - uid: 26228 + - uid: 31715 components: - type: Transform pos: -8.5,-26.5 parent: 2 - proto: SpawnMobBoxingKangaroo entities: - - uid: 28846 + - uid: 31716 components: - type: Transform pos: -21.5,-86.5 parent: 2 - proto: SpawnMobCarp entities: - - uid: 26238 + - uid: 31717 components: - type: Transform pos: -2.5,-27.5 parent: 2 - - uid: 39804 + - uid: 31718 components: - type: Transform pos: 12.5,-33.5 parent: 2 - - uid: 40115 + - uid: 31719 components: - type: Transform pos: 6.5,-26.5 parent: 2 - - uid: 40949 + - uid: 31720 components: - type: Transform pos: 17.5,-16.5 parent: 2 - proto: SpawnMobCarpHolo entities: - - uid: 40120 + - uid: 31721 components: - type: Transform pos: -14.5,-18.5 parent: 2 - proto: SpawnMobCarpMagic entities: - - uid: 29121 + - uid: 31722 components: - type: Transform pos: -22.5,-47.5 parent: 2 - proto: SpawnMobCatFloppa entities: - - uid: 28855 + - uid: 31723 components: - type: Transform pos: -35.5,-10.5 parent: 2 - proto: SpawnMobCatSpace entities: - - uid: 28856 + - uid: 31724 components: - type: Transform pos: 54.5,-72.5 parent: 2 - - uid: 28857 + - uid: 31725 components: - type: Transform pos: 0.5,30.5 parent: 2 - proto: SpawnMobCleanBot entities: - - uid: 39801 + - uid: 31726 components: - type: Transform pos: -16.5,-36.5 parent: 2 - proto: SpawnMobCobraSalvage entities: - - uid: 26237 + - uid: 31727 components: - type: Transform pos: 1.5,-22.5 parent: 2 - proto: SpawnMobCorgi entities: - - uid: 28859 + - uid: 31728 components: - type: Transform pos: -5.5,11.5 parent: 2 - proto: SpawnMobCrabAtmos entities: - - uid: 28860 + - uid: 31729 components: - type: Transform pos: 39.5,-49.5 parent: 2 - proto: SpawnMobFoxRenault entities: - - uid: 28861 + - uid: 31730 components: - type: Transform pos: 8.5,14.5 parent: 2 - proto: SpawnMobGorillaLargo entities: - - uid: 28862 + - uid: 31731 components: - type: Transform pos: 11.5,-81.5 parent: 2 - proto: SpawnMobKangaroo entities: - - uid: 30480 + - uid: 31732 components: - type: Transform pos: -15.5,-28.5 parent: 2 - proto: SpawnMobKangarooSalvage entities: - - uid: 26233 + - uid: 31733 components: - type: Transform pos: -8.5,-22.5 parent: 2 - proto: SpawnMobLuminousPerson entities: - - uid: 29047 + - uid: 31734 components: - type: Transform pos: -16.5,-19.5 parent: 2 - - uid: 39800 + - uid: 31735 components: - type: Transform pos: -3.5,-19.5 parent: 2 - - uid: 39808 + - uid: 31736 components: - type: Transform pos: 0.5,-15.5 parent: 2 - proto: SpawnMobMcGriff entities: - - uid: 11077 + - uid: 31737 components: - type: Transform pos: 49.5,-25.5 parent: 2 - proto: SpawnMobMonkeyPunpun entities: - - uid: 28866 + - uid: 31738 components: - type: Transform pos: 22.5,9.5 parent: 2 - proto: SpawnMobMouse entities: - - uid: 31088 + - uid: 31739 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-53.5 parent: 2 - - uid: 31520 + - uid: 31740 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,9.5 parent: 2 - - uid: 31521 + - uid: 31741 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-82.5 parent: 2 - - uid: 31522 + - uid: 31742 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-18.5 parent: 2 - - uid: 31523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,9.5 - parent: 2 - - uid: 31524 + - uid: 31743 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,18.5 parent: 2 - - uid: 31528 + - uid: 31744 components: - type: Transform rot: 1.5707963267948966 rad @@ -217982,944 +222306,960 @@ entities: parent: 2 - proto: SpawnMobOreCrab entities: - - uid: 28867 + - uid: 31745 components: - type: Transform pos: -50.5,-73.5 parent: 2 - proto: SpawnMobParrot entities: - - uid: 39799 + - uid: 31746 components: - type: Transform pos: 11.5,-27.5 parent: 2 - proto: SpawnMobPossumMorty entities: - - uid: 28868 + - uid: 31747 components: - type: Transform pos: 6.5,-0.5 parent: 2 +- proto: SpawnMobPurpleSnake + entities: + - uid: 31748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-46.5 + parent: 2 - proto: SpawnMobShark entities: - - uid: 39737 + - uid: 31749 components: - type: Transform pos: -10.5,-39.5 parent: 2 - proto: SpawnMobShiva entities: - - uid: 26569 + - uid: 31750 components: - type: Transform pos: 49.5,16.5 parent: 2 - proto: SpawnMobSlothPaperwork entities: - - uid: 28873 + - uid: 31751 components: - type: Transform pos: -29.5,6.5 parent: 2 +- proto: SpawnMobSmallPurpleSnake + entities: + - uid: 31752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-37.5 + parent: 2 - proto: SpawnMobSmile entities: - - uid: 40152 + - uid: 31753 components: - type: Transform pos: -40.5,-67.5 parent: 2 - proto: SpawnMobSpaceCobra entities: - - uid: 39575 + - uid: 31754 components: - type: Transform pos: 13.5,-39.5 parent: 2 - proto: SpawnMobSpaceSpider entities: - - uid: 26108 + - uid: 31755 components: - type: Transform pos: -2.5,-22.5 parent: 2 - proto: SpawnMobSpiderSalvage entities: - - uid: 27020 + - uid: 31756 components: - type: Transform pos: -16.5,-40.5 parent: 2 - proto: SpawnMobWalter entities: - - uid: 28881 + - uid: 31757 components: - type: Transform pos: -36.5,-34.5 parent: 2 - proto: SpawnPointAtmos entities: - - uid: 28882 + - uid: 31758 components: - type: Transform pos: 37.5,-51.5 parent: 2 - - uid: 28883 + - uid: 31759 components: - type: Transform pos: 36.5,-51.5 parent: 2 - - uid: 28884 + - uid: 31760 components: - type: Transform pos: 35.5,-51.5 parent: 2 - proto: SpawnPointBartender entities: - - uid: 28885 + - uid: 31761 components: - type: Transform pos: 23.5,8.5 parent: 2 - proto: SpawnPointBorg entities: - - uid: 33852 + - uid: 31762 components: - type: Transform pos: 16.5,4.5 parent: 2 - - uid: 33853 + - uid: 31763 components: - type: Transform pos: -35.5,-52.5 parent: 2 - proto: SpawnPointBotanist entities: - - uid: 28888 + - uid: 31764 components: - type: Transform pos: 38.5,10.5 parent: 2 - - uid: 28889 + - uid: 31765 components: - type: Transform pos: 37.5,10.5 parent: 2 - - uid: 28890 + - uid: 31766 components: - type: Transform pos: 36.5,10.5 parent: 2 - - uid: 28891 + - uid: 31767 components: - type: Transform pos: 35.5,14.5 parent: 2 - proto: SpawnPointBoxer entities: - - uid: 28892 + - uid: 31768 components: - type: Transform pos: -28.5,-84.5 parent: 2 - - uid: 28893 + - uid: 31769 components: - type: Transform pos: -22.5,-85.5 parent: 2 - proto: SpawnPointBrigmedic entities: - - uid: 41038 + - uid: 41969 components: - type: Transform - pos: 63.5,-3.5 + pos: 65.5,0.5 parent: 2 - proto: SpawnPointCaptain entities: - - uid: 2301 + - uid: 31770 components: - type: Transform pos: 19.5,14.5 parent: 2 - proto: SpawnPointCargoTechnician entities: - - uid: 28895 + - uid: 31771 components: - type: Transform pos: 8.5,-91.5 parent: 2 - - uid: 28896 + - uid: 31772 components: - type: Transform pos: -7.5,-79.5 parent: 2 - - uid: 28897 + - uid: 31773 components: - type: Transform pos: 9.5,-82.5 parent: 2 - - uid: 28898 + - uid: 31774 components: - type: Transform pos: 5.5,-88.5 parent: 2 - - uid: 28899 + - uid: 31775 components: - type: Transform pos: 11.5,-97.5 parent: 2 - proto: SpawnPointChaplain entities: - - uid: 28900 + - uid: 31776 components: - type: Transform pos: 35.5,-67.5 parent: 2 - proto: SpawnPointChef entities: - - uid: 28901 + - uid: 31777 components: - type: Transform pos: 28.5,10.5 parent: 2 - proto: SpawnPointChemist entities: - - uid: 28902 + - uid: 31778 components: - type: Transform pos: -35.5,-29.5 parent: 2 - - uid: 28903 + - uid: 31779 components: - type: Transform pos: -35.5,-33.5 parent: 2 - proto: SpawnPointChiefEngineer entities: - - uid: 28904 + - uid: 31780 components: - type: Transform pos: 56.5,-76.5 parent: 2 - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 28905 + - uid: 31781 components: - type: Transform pos: -39.5,-11.5 parent: 2 - proto: SpawnPointClown entities: - - uid: 28906 + - uid: 31782 components: - type: Transform pos: 37.5,-16.5 parent: 2 - proto: SpawnPointDetective entities: - - uid: 40935 + - uid: 31783 components: - type: Transform pos: 39.5,-24.5 parent: 2 - proto: SpawnPointHeadOfPersonnel entities: - - uid: 28908 + - uid: 31784 components: - type: Transform pos: -10.5,6.5 parent: 2 - proto: SpawnPointHeadOfSecurity entities: - - uid: 40789 + - uid: 31785 components: - type: Transform pos: 51.5,15.5 parent: 2 - proto: SpawnPointJanitor entities: - - uid: 28910 + - uid: 31786 components: - type: Transform pos: 6.5,0.5 parent: 2 - - uid: 28911 + - uid: 31787 components: - type: Transform pos: 7.5,0.5 parent: 2 - - uid: 28912 + - uid: 31788 components: - type: Transform pos: 8.5,0.5 parent: 2 - proto: SpawnPointLatejoin entities: - - uid: 28913 + - uid: 31789 components: - type: Transform pos: 88.5,-38.5 parent: 2 - - uid: 28914 + - uid: 31790 components: - type: Transform pos: 86.5,-38.5 parent: 2 - - uid: 28915 + - uid: 31791 components: - type: Transform pos: 86.5,-24.5 parent: 2 - - uid: 28916 + - uid: 31792 components: - type: Transform pos: 88.5,-24.5 parent: 2 - proto: SpawnPointLawyer entities: - - uid: 28917 + - uid: 31793 components: - type: Transform pos: -22.5,7.5 parent: 2 - proto: SpawnPointLibrarian entities: - - uid: 28918 + - uid: 31794 components: - type: Transform pos: -36.5,4.5 parent: 2 - proto: SpawnPointMedicalDoctor entities: - - uid: 28919 + - uid: 31795 components: - type: Transform pos: -35.5,-25.5 parent: 2 - - uid: 28920 + - uid: 31796 components: - type: Transform pos: -37.5,-25.5 parent: 2 - - uid: 28921 + - uid: 31797 components: - type: Transform pos: -38.5,-4.5 parent: 2 - - uid: 28922 + - uid: 31798 components: - type: Transform pos: -54.5,-23.5 parent: 2 - - uid: 28923 + - uid: 31799 components: - type: Transform pos: -46.5,-39.5 parent: 2 - proto: SpawnPointMedicalIntern entities: - - uid: 28924 + - uid: 31800 components: - type: Transform pos: -35.5,-5.5 parent: 2 - - uid: 28925 + - uid: 31801 components: - type: Transform pos: -53.5,-23.5 parent: 2 - - uid: 28926 + - uid: 31802 components: - type: Transform pos: -55.5,-23.5 parent: 2 - - uid: 28927 + - uid: 31803 components: - type: Transform pos: -48.5,-12.5 parent: 2 - - uid: 28928 + - uid: 31804 components: - type: Transform pos: -46.5,-0.5 parent: 2 - - uid: 28929 + - uid: 31805 components: - type: Transform pos: -37.5,-15.5 parent: 2 - - uid: 28930 + - uid: 31806 components: - type: Transform pos: -37.5,-21.5 parent: 2 - - uid: 28931 + - uid: 31807 components: - type: Transform pos: -46.5,-9.5 parent: 2 - - uid: 28932 + - uid: 31808 components: - type: Transform pos: -49.5,-10.5 parent: 2 - - uid: 28933 + - uid: 31809 components: - type: Transform pos: -49.5,-8.5 parent: 2 - proto: SpawnPointMime entities: - - uid: 28934 + - uid: 31810 components: - type: Transform pos: 33.5,-16.5 parent: 2 - proto: SpawnPointMusician entities: - - uid: 28935 + - uid: 31811 components: - type: Transform pos: 33.5,-20.5 parent: 2 - proto: SpawnPointObserver entities: - - uid: 28936 + - uid: 31812 components: - type: Transform pos: 0.5,2.5 parent: 2 - proto: SpawnPointParamedic entities: - - uid: 28937 + - uid: 31813 components: - type: Transform pos: -52.5,-12.5 parent: 2 - proto: SpawnPointPassenger entities: - - uid: 28938 + - uid: 31814 components: - type: Transform pos: -35.5,-87.5 parent: 2 - - uid: 28939 + - uid: 31815 components: - type: Transform pos: -28.5,-87.5 parent: 2 - - uid: 28940 + - uid: 31816 components: - type: Transform pos: -35.5,-90.5 parent: 2 - - uid: 28941 + - uid: 31817 components: - type: Transform pos: -28.5,-90.5 parent: 2 - - uid: 28942 + - uid: 31818 components: - type: Transform pos: -35.5,-84.5 parent: 2 - - uid: 28943 + - uid: 31819 components: - type: Transform pos: -34.5,-94.5 parent: 2 - - uid: 28944 + - uid: 31820 components: - type: Transform pos: -28.5,-76.5 parent: 2 - - uid: 28945 + - uid: 31821 components: - type: Transform pos: 67.5,-28.5 parent: 2 - - uid: 28946 + - uid: 31822 components: - type: Transform pos: 63.5,-26.5 parent: 2 - proto: SpawnPointPilot entities: - - uid: 2664 + - uid: 31823 components: - type: Transform pos: 58.5,14.5 parent: 2 - proto: SpawnPointPsychologist entities: - - uid: 28949 + - uid: 31824 components: - type: Transform pos: -52.5,-48.5 parent: 2 - proto: SpawnPointQuartermaster entities: - - uid: 28950 + - uid: 31825 components: - type: Transform pos: -1.5,-98.5 parent: 2 - proto: SpawnPointReporter entities: - - uid: 28951 + - uid: 31826 components: - type: Transform pos: 25.5,-75.5 parent: 2 - proto: SpawnPointResearchAssistant entities: - - uid: 28952 + - uid: 31827 components: - type: Transform pos: -39.5,-48.5 parent: 2 - - uid: 28953 + - uid: 31828 components: - type: Transform pos: -52.5,-58.5 parent: 2 - - uid: 28954 + - uid: 31829 components: - type: Transform pos: -44.5,-88.5 parent: 2 - proto: SpawnPointResearchDirector entities: - - uid: 28955 + - uid: 31830 components: - type: Transform pos: -35.5,-69.5 parent: 2 - proto: SpawnPointSalvageSpecialist entities: - - uid: 28956 + - uid: 31831 components: - type: Transform pos: -5.5,-89.5 parent: 2 - - uid: 28957 + - uid: 31832 components: - type: Transform pos: -5.5,-90.5 parent: 2 - - uid: 28958 + - uid: 31833 components: - type: Transform pos: -5.5,-91.5 parent: 2 - proto: SpawnPointScientist entities: - - uid: 28959 + - uid: 31834 components: - type: Transform pos: -49.5,-82.5 parent: 2 - - uid: 28960 + - uid: 31835 components: - type: Transform pos: -68.5,-65.5 parent: 2 - - uid: 28961 + - uid: 31836 components: - type: Transform pos: -38.5,-62.5 parent: 2 - - uid: 28962 + - uid: 31837 components: - type: Transform pos: -39.5,-53.5 parent: 2 - - uid: 28963 + - uid: 31838 components: - type: Transform pos: -40.5,-47.5 parent: 2 - - uid: 28964 + - uid: 31839 components: - type: Transform pos: -43.5,-85.5 parent: 2 - proto: SpawnPointSecurityCadet entities: - - uid: 28970 + - uid: 31840 components: - type: Transform pos: -4.5,-81.5 parent: 2 - - uid: 28971 + - uid: 31841 components: - type: Transform pos: -49.5,-49.5 parent: 2 - - uid: 28972 + - uid: 31842 components: - type: Transform pos: 73.5,-27.5 parent: 2 - - uid: 28973 + - uid: 31843 components: - type: Transform pos: 34.5,-4.5 parent: 2 - - uid: 40782 + - uid: 31844 components: - type: Transform pos: 47.5,9.5 parent: 2 - - uid: 40783 + - uid: 31845 components: - type: Transform pos: 79.5,6.5 parent: 2 - - uid: 40784 + - uid: 31846 components: - type: Transform pos: 71.5,-12.5 parent: 2 - proto: SpawnPointSecurityOfficer entities: - - uid: 28977 + - uid: 31847 components: - type: Transform pos: -5.5,1.5 parent: 2 - - uid: 28978 + - uid: 31848 components: - type: Transform pos: 77.5,-29.5 parent: 2 - - uid: 28979 + - uid: 31849 components: - type: Transform pos: -47.5,-47.5 parent: 2 - - uid: 28980 + - uid: 31850 components: - type: Transform pos: -66.5,-39.5 parent: 2 - - uid: 28981 + - uid: 31851 components: - type: Transform pos: -2.5,-79.5 parent: 2 - - uid: 40785 + - uid: 31852 components: - type: Transform pos: 62.5,4.5 parent: 2 - - uid: 40786 + - uid: 31853 components: - type: Transform pos: 63.5,4.5 parent: 2 - - uid: 40787 + - uid: 31854 components: - type: Transform pos: 64.5,4.5 parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 28984 + - uid: 31855 components: - type: Transform pos: 32.5,-0.5 parent: 2 - - uid: 28985 + - uid: 31856 components: - type: Transform pos: 29.5,13.5 parent: 2 - - uid: 28986 + - uid: 31857 components: - type: Transform pos: 35.5,-6.5 parent: 2 - - uid: 28987 + - uid: 31858 components: - type: Transform pos: 37.5,5.5 parent: 2 - proto: SpawnPointStationEngineer entities: - - uid: 28988 + - uid: 31859 components: - type: Transform pos: 50.5,-55.5 parent: 2 - - uid: 28989 + - uid: 31860 components: - type: Transform pos: 52.5,-51.5 parent: 2 - - uid: 28990 + - uid: 31861 components: - type: Transform pos: 51.5,-82.5 parent: 2 - - uid: 28991 + - uid: 31862 components: - type: Transform pos: 50.5,-82.5 parent: 2 - - uid: 28992 + - uid: 31863 components: - type: Transform pos: 49.5,-82.5 parent: 2 - - uid: 28993 + - uid: 31864 components: - type: Transform pos: 48.5,-82.5 parent: 2 - proto: SpawnPointTechnicalAssistant entities: - - uid: 28994 + - uid: 31865 components: - type: Transform pos: 40.5,-83.5 parent: 2 - - uid: 28996 + - uid: 31866 components: - type: Transform pos: 49.5,-54.5 parent: 2 - - uid: 28997 + - uid: 31867 components: - type: Transform pos: 49.5,-52.5 parent: 2 - - uid: 28998 + - uid: 31868 components: - type: Transform pos: 52.5,-53.5 parent: 2 - - uid: 28999 + - uid: 31869 components: - type: Transform pos: 51.5,-55.5 parent: 2 - proto: SpawnPointWarden entities: - - uid: 40788 + - uid: 31870 components: - type: Transform pos: 52.5,-23.5 parent: 2 - proto: SpawnPointZookeeper entities: - - uid: 29001 + - uid: 31871 components: - type: Transform pos: -66.5,-48.5 parent: 2 - proto: SpeedLoaderMagnum entities: - - uid: 37808 + - uid: 31872 components: - type: Transform pos: 48.552704,16.57993 parent: 2 - proto: SpeedLoaderMagnumPractice entities: - - uid: 2802 + - uid: 31873 components: - type: Transform pos: 59.489346,7.606823 parent: 2 - proto: SpiderWeb entities: - - uid: 25339 + - uid: 31874 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-22.5 parent: 2 - - uid: 26091 + - uid: 31875 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-22.5 parent: 2 - - uid: 26093 + - uid: 31876 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-23.5 parent: 2 - - uid: 26094 + - uid: 31877 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-23.5 parent: 2 - - uid: 26095 + - uid: 31878 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-23.5 parent: 2 - - uid: 26105 + - uid: 31879 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-22.5 parent: 2 - - uid: 29118 + - uid: 31880 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-25.5 parent: 2 - - uid: 29172 + - uid: 31881 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-26.5 parent: 2 - - uid: 32424 + - uid: 31882 components: - type: Transform pos: -11.5,-50.5 parent: 2 - - uid: 32425 + - uid: 31883 components: - type: Transform pos: -20.5,-50.5 parent: 2 - - uid: 32427 + - uid: 31884 components: - type: Transform pos: -17.5,-45.5 parent: 2 - - uid: 32428 + - uid: 31885 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-54.5 parent: 2 - - uid: 32429 + - uid: 31886 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-53.5 parent: 2 - - uid: 32431 + - uid: 31887 components: - type: Transform pos: -20.5,-52.5 parent: 2 - - uid: 33746 + - uid: 31888 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,20.5 parent: 2 - - uid: 33747 + - uid: 31889 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,19.5 parent: 2 - - uid: 33830 + - uid: 31890 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-27.5 parent: 2 - - uid: 37763 + - uid: 31891 components: - type: Transform pos: -4.5,-25.5 parent: 2 - - uid: 37764 + - uid: 31892 components: - type: Transform pos: -3.5,-24.5 parent: 2 - - uid: 37765 + - uid: 31893 components: - type: Transform pos: -1.5,-24.5 parent: 2 - - uid: 37766 + - uid: 31894 components: - type: Transform pos: -0.5,-25.5 parent: 2 - - uid: 37781 + - uid: 31895 components: - type: Transform pos: -1.5,-25.5 parent: 2 - - uid: 37785 + - uid: 31896 components: - type: Transform pos: -2.5,-24.5 parent: 2 - - uid: 37798 + - uid: 31897 components: - type: Transform pos: -3.5,-25.5 parent: 2 - - uid: 39070 + - uid: 31898 components: - type: Transform pos: -4.5,-24.5 parent: 2 - - uid: 39071 + - uid: 31899 components: - type: Transform pos: -4.5,-25.5 parent: 2 - - uid: 39072 + - uid: 31900 components: - type: Transform pos: -5.5,-26.5 parent: 2 - - uid: 39073 + - uid: 31901 components: - type: Transform pos: -4.5,-22.5 parent: 2 - - uid: 39074 + - uid: 31902 components: - type: Transform pos: -4.5,-22.5 parent: 2 - - uid: 39075 + - uid: 31903 components: - type: Transform pos: -5.5,-21.5 parent: 2 - - uid: 39076 + - uid: 31904 components: - type: Transform pos: -5.5,-22.5 parent: 2 - - uid: 39077 + - uid: 31905 components: - type: Transform pos: 0.5,-24.5 parent: 2 - - uid: 39080 + - uid: 31906 components: - type: Transform pos: 0.5,-25.5 parent: 2 - - uid: 39082 + - uid: 31907 components: - type: Transform pos: 2.5,-24.5 parent: 2 - proto: SpoonPlastic entities: - - uid: 29049 + - uid: 31908 components: - type: Transform rot: 1.5707963267948966 rad @@ -218927,142 +223267,142 @@ entities: parent: 2 - proto: SprayBottleSpaceCleaner entities: - - uid: 41284 + - uid: 31909 components: - type: Transform pos: -15.147467,-50.176872 parent: 2 - proto: SprayPainter entities: - - uid: 29052 + - uid: 31910 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.494995,-26.842003 parent: 2 - - uid: 29053 + - uid: 31911 components: - type: Transform pos: 21.5,19.5 parent: 2 - - uid: 29054 + - uid: 31912 components: - type: Transform pos: -66.54268,-52.468018 parent: 2 - proto: SS13Memorial entities: - - uid: 29055 + - uid: 31913 components: - type: Transform pos: 27.5,28.5 parent: 2 - - uid: 33545 + - uid: 31914 components: - type: Transform pos: 15.5,-35.5 parent: 2 - proto: StairStageDark entities: - - uid: 27882 + - uid: 31915 components: - type: Transform pos: 0.5,-47.5 parent: 2 - - uid: 27883 + - uid: 31916 components: - type: Transform pos: 0.5,-49.5 parent: 2 - - uid: 27885 + - uid: 31917 components: - type: Transform pos: 0.5,-51.5 parent: 2 - - uid: 27889 + - uid: 31918 components: - type: Transform pos: 0.5,-46.5 parent: 2 - - uid: 27890 + - uid: 31919 components: - type: Transform pos: 0.5,-48.5 parent: 2 - - uid: 27891 + - uid: 31920 components: - type: Transform pos: 0.5,-50.5 parent: 2 - proto: StairWood entities: - - uid: 41142 + - uid: 31921 components: - type: Transform pos: -29.5,2.5 parent: 2 - - uid: 41147 + - uid: 31922 components: - type: Transform pos: -30.5,2.5 parent: 2 - proto: StasisBed entities: - - uid: 1739 + - uid: 31923 components: - type: Transform pos: -44.5,-25.5 parent: 2 - - uid: 5691 + - uid: 31924 components: - type: Transform pos: 62.5,-4.5 parent: 2 - - uid: 29058 + - uid: 31925 components: - type: Transform pos: -44.5,-24.5 parent: 2 - - uid: 29059 + - uid: 31926 components: - type: Transform pos: -47.5,-5.5 parent: 2 - - uid: 29060 + - uid: 31927 components: - type: Transform pos: -45.5,-5.5 parent: 2 - - uid: 29061 + - uid: 31928 components: - type: Transform pos: -55.5,-18.5 parent: 2 - - uid: 29063 + - uid: 31929 components: - type: Transform pos: -48.5,-35.5 parent: 2 - - uid: 38471 + - uid: 41418 components: - type: Transform pos: -4.5,-8.5 - parent: 37887 - - uid: 38940 + parent: 40828 + - uid: 41886 components: - type: Transform pos: 6.5,-1.5 - parent: 38722 + parent: 41669 - proto: StationAiUploadCircuitboard entities: - - uid: 36717 + - uid: 31930 components: - type: Transform pos: 39.52277,-41.403046 parent: 2 - proto: StationAiUploadComputer entities: - - uid: 6948 + - uid: 31931 components: - type: Transform rot: -1.5707963267948966 rad @@ -219070,152 +223410,152 @@ entities: parent: 2 - proto: StationAnchorOff entities: - - uid: 14948 + - uid: 31932 components: - type: Transform pos: 8.5,-7.5 parent: 2 - proto: StationEfficiencyCircuitBoard entities: - - uid: 393 + - uid: 26912 components: - type: Transform - parent: 24268 + parent: 26911 - type: Physics canCollide: False - type: InsideEntityStorage - proto: StationMap entities: - - uid: 29065 + - uid: 31933 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-26.5 parent: 2 - - uid: 29066 + - uid: 31934 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-42.5 parent: 2 - - uid: 29067 + - uid: 31935 components: - type: Transform pos: 59.5,-30.5 parent: 2 - - uid: 29069 + - uid: 31936 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-43.5 parent: 2 - - uid: 29070 + - uid: 31937 components: - type: Transform pos: 33.5,-30.5 parent: 2 - - uid: 29071 + - uid: 31938 components: - type: Transform pos: 21.5,0.5 parent: 2 - - uid: 29072 + - uid: 31939 components: - type: Transform pos: 4.5,5.5 parent: 2 - - uid: 29073 + - uid: 31940 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-5.5 parent: 2 - - uid: 29074 + - uid: 31941 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-24.5 parent: 2 - - uid: 29075 + - uid: 31942 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-45.5 parent: 2 - - uid: 29076 + - uid: 31943 components: - type: Transform pos: -61.5,-41.5 parent: 2 - - uid: 29077 + - uid: 31944 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-57.5 parent: 2 - - uid: 29078 + - uid: 31945 components: - type: Transform pos: -29.5,-79.5 parent: 2 - - uid: 29079 + - uid: 31946 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-85.5 parent: 2 - - uid: 29080 + - uid: 31947 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-63.5 parent: 2 - - uid: 29081 + - uid: 31948 components: - type: Transform pos: -14.5,-70.5 parent: 2 - - uid: 29082 + - uid: 31949 components: - type: Transform pos: 2.5,-73.5 parent: 2 - - uid: 29083 + - uid: 31950 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-72.5 parent: 2 - - uid: 29084 + - uid: 31951 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,-51.5 parent: 2 - - uid: 29085 + - uid: 31952 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-57.5 parent: 2 - - uid: 29088 + - uid: 31953 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-16.5 parent: 2 - - uid: 40769 + - uid: 31954 components: - type: Transform pos: 61.5,-6.5 parent: 2 - - uid: 40770 + - uid: 31955 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-20.5 parent: 2 - - uid: 41013 + - uid: 31956 components: - type: Transform rot: -1.5707963267948966 rad @@ -219223,134 +223563,134 @@ entities: parent: 2 - proto: StationMapAssembly entities: - - uid: 32412 + - uid: 31957 components: - type: Transform pos: -11.5,-45.5 parent: 2 - proto: StatueBananiumClown entities: - - uid: 29089 + - uid: 31958 components: - type: Transform pos: -51.5,-108.5 parent: 2 - - uid: 33544 + - uid: 31959 components: - type: Transform pos: 8.5,-34.5 parent: 2 - proto: StatueVenusBlue entities: - - uid: 29091 + - uid: 31960 components: - type: Transform pos: 10.5,24.5 parent: 2 - - uid: 33543 + - uid: 31961 components: - type: Transform pos: 7.5,-41.5 parent: 2 - proto: StatueVenusRed entities: - - uid: 29092 + - uid: 31962 components: - type: Transform pos: -9.5,24.5 parent: 2 - - uid: 33542 + - uid: 31963 components: - type: Transform pos: 7.5,-38.5 parent: 2 - proto: SteelBench entities: - - uid: 29095 + - uid: 31964 components: - type: Transform pos: -70.5,-53.5 parent: 2 - - uid: 29096 + - uid: 31965 components: - type: Transform pos: -72.5,-53.5 parent: 2 - - uid: 29097 + - uid: 31966 components: - type: Transform pos: -74.5,-53.5 parent: 2 - - uid: 29098 + - uid: 31967 components: - type: Transform pos: -71.5,-53.5 parent: 2 - - uid: 29099 + - uid: 31968 components: - type: Transform pos: -75.5,-53.5 parent: 2 - - uid: 29100 + - uid: 31969 components: - type: Transform pos: -76.5,-53.5 parent: 2 - - uid: 29105 + - uid: 31970 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-82.5 parent: 2 - - uid: 29106 + - uid: 31971 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-82.5 parent: 2 - - uid: 30463 + - uid: 31972 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,-3.5 parent: 2 - - uid: 30468 + - uid: 31973 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-3.5 parent: 2 - - uid: 30469 + - uid: 31974 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,-1.5 parent: 2 - - uid: 30471 + - uid: 31975 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-10.5 parent: 2 - - uid: 30484 + - uid: 31976 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,-1.5 parent: 2 - - uid: 35099 + - uid: 31977 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-8.5 parent: 2 - - uid: 35973 + - uid: 31978 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-8.5 parent: 2 - - uid: 35974 + - uid: 31979 components: - type: Transform rot: -1.5707963267948966 rad @@ -219358,161 +223698,161 @@ entities: parent: 2 - proto: SteelOre1 entities: - - uid: 27350 + - uid: 31980 components: - type: Transform pos: -5.7129173,-62.59576 parent: 2 - - uid: 27356 + - uid: 31981 components: - type: Transform pos: -5.5410423,-62.28326 parent: 2 - - uid: 27357 + - uid: 31982 components: - type: Transform pos: -5.4785423,-62.59576 parent: 2 - - uid: 27498 + - uid: 31983 components: - type: Transform pos: -6.7597923,-62.486385 parent: 2 - - uid: 27499 + - uid: 31984 components: - type: Transform pos: -6.4316673,-62.830135 parent: 2 - - uid: 27533 + - uid: 31985 components: - type: Transform pos: -6.3691673,-62.580135 parent: 2 - - uid: 27540 + - uid: 31986 components: - type: Transform pos: -6.3066673,-62.361385 parent: 2 - - uid: 27542 + - uid: 31987 components: - type: Transform pos: -2.6191673,-62.423885 parent: 2 - - uid: 27599 + - uid: 31988 components: - type: Transform pos: -2.8222923,-62.78326 parent: 2 - - uid: 27600 + - uid: 31989 components: - type: Transform pos: -3.4941673,-63.58014 parent: 2 - - uid: 27634 + - uid: 31990 components: - type: Transform pos: -3.5566673,-63.298885 parent: 2 - - uid: 27657 + - uid: 31991 components: - type: Transform pos: -3.4004173,-63.34576 parent: 2 - - uid: 27658 + - uid: 31992 components: - type: Transform pos: -3.5254173,-61.548885 parent: 2 - - uid: 27659 + - uid: 31993 components: - type: Transform pos: -4.2441673,-61.75201 parent: 2 - - uid: 27718 + - uid: 31994 components: - type: Transform pos: -8.462917,-63.564514 parent: 2 - - uid: 27719 + - uid: 31995 components: - type: Transform pos: -8.462917,-63.31451 parent: 2 - - uid: 27734 + - uid: 31996 components: - type: Transform pos: -8.462917,-63.267635 parent: 2 - - uid: 27735 + - uid: 31997 components: - type: Transform pos: -7.7441673,-62.56451 parent: 2 - - uid: 27736 + - uid: 31998 components: - type: Transform pos: -7.5097923,-62.53326 parent: 2 - proto: StimkitFilled entities: - - uid: 32512 + - uid: 31999 components: - type: Transform pos: -11.519527,-40.407787 parent: 2 - proto: Stool entities: - - uid: 24419 + - uid: 32000 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.022156,-6.260051 parent: 2 - - uid: 29122 + - uid: 32001 components: - type: Transform pos: -63.5,10.5 parent: 2 - - uid: 29123 + - uid: 32002 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,11.5 parent: 2 - - uid: 29124 + - uid: 32003 components: - type: Transform pos: -62.5,10.5 parent: 2 - - uid: 29125 + - uid: 32004 components: - type: Transform pos: -64.5,10.5 parent: 2 - - uid: 29126 + - uid: 32005 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.709076,0.60289204 parent: 2 - - uid: 29127 + - uid: 32006 components: - type: Transform pos: 37.5,-16.5 parent: 2 - - uid: 29128 + - uid: 32007 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,11.5 parent: 2 - - uid: 29129 + - uid: 32008 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,11.5 parent: 2 - - uid: 31585 + - uid: 32009 components: - type: Transform rot: 1.5707963267948966 rad @@ -219520,95 +223860,105 @@ entities: parent: 2 - proto: StoolBar entities: - - uid: 25811 + - uid: 32010 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - uid: 32011 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 + - uid: 32012 components: - type: Transform pos: 51.5,3.5 parent: 2 - - uid: 25813 + - uid: 32013 components: - type: Transform pos: 52.5,3.5 parent: 2 - - uid: 29130 + - uid: 32014 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-74.5 parent: 2 - - uid: 29131 + - uid: 32015 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-75.5 parent: 2 - - uid: 29132 + - uid: 32016 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,4.5 parent: 2 - - uid: 29133 + - uid: 32017 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,2.5 parent: 2 - - uid: 29134 + - uid: 32018 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,3.5 parent: 2 - - uid: 29135 + - uid: 32019 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,1.5 parent: 2 - - uid: 29136 + - uid: 32020 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-102.5 parent: 2 - - uid: 29137 + - uid: 32021 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-100.5 parent: 2 - - uid: 29138 + - uid: 32022 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-103.5 parent: 2 - - uid: 29139 + - uid: 32023 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-94.5 parent: 2 - - uid: 29140 + - uid: 32024 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-93.5 parent: 2 - - uid: 29141 + - uid: 32025 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-92.5 parent: 2 - - uid: 29142 + - uid: 32026 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-83.5 parent: 2 - - uid: 29143 + - uid: 32027 components: - type: Transform rot: 1.5707963267948966 rad @@ -219616,106 +223966,106 @@ entities: parent: 2 - proto: StorageCanister entities: - - uid: 29144 + - uid: 32028 components: - type: Transform pos: -46.5,-58.5 parent: 2 - - uid: 29145 + - uid: 32029 components: - type: Transform pos: 41.5,-91.5 parent: 2 - - uid: 29146 + - uid: 32030 components: - type: Transform pos: 41.5,-90.5 parent: 2 - - uid: 29147 + - uid: 32031 components: - type: Transform pos: 41.5,-89.5 parent: 2 - - uid: 29148 + - uid: 32032 components: - type: Transform pos: 36.5,-50.5 parent: 2 - - uid: 29149 + - uid: 32033 components: - type: Transform pos: 37.5,-50.5 parent: 2 - - uid: 29150 + - uid: 32034 components: - type: Transform pos: 38.5,-50.5 parent: 2 - - uid: 29151 + - uid: 32035 components: - type: Transform pos: 34.5,-48.5 parent: 2 - - uid: 29152 + - uid: 32036 components: - type: Transform pos: -36.5,-23.5 parent: 2 - - uid: 29153 + - uid: 32037 components: - type: Transform pos: -69.5,-20.5 parent: 2 - - uid: 29154 + - uid: 32038 components: - type: Transform pos: 18.5,-76.5 parent: 2 - - uid: 29155 + - uid: 32039 components: - type: Transform pos: -62.5,-74.5 parent: 2 - - uid: 29156 + - uid: 32040 components: - type: Transform pos: -72.5,-27.5 parent: 2 - - uid: 29157 + - uid: 32041 components: - type: Transform pos: -71.5,-27.5 parent: 2 - - uid: 29158 + - uid: 32042 components: - type: Transform pos: 100.5,-84.5 parent: 2 - - uid: 29159 + - uid: 32043 components: - type: Transform pos: -49.5,-56.5 parent: 2 - - uid: 29160 + - uid: 32044 components: - type: Transform pos: -53.5,-60.5 parent: 2 - proto: StrangePill entities: - - uid: 10222 + - uid: 32045 components: - type: Transform rot: 3.141592653589793 rad pos: -18.301134,18.654554 parent: 2 - - uid: 17805 + - uid: 32046 components: - type: Transform rot: 3.141592653589793 rad pos: -18.09801,18.560804 parent: 2 - - uid: 17828 + - uid: 32047 components: - type: Transform rot: 3.141592653589793 rad @@ -219723,295 +224073,290 @@ entities: parent: 2 - proto: Stunbaton entities: - - uid: 370 + - uid: 32048 components: - type: Transform pos: 57.46068,-19.418554 parent: 2 - - uid: 7779 + - uid: 32049 components: - type: Transform pos: 52.419567,-17.399994 parent: 2 - - uid: 10968 + - uid: 32050 components: - type: Transform pos: 52.700817,-17.509369 parent: 2 - - uid: 15270 + - uid: 32051 components: - type: Transform pos: 52.544567,-17.493744 parent: 2 - - uid: 17983 + - uid: 32052 components: - type: Transform pos: 57.570053,-19.49668 parent: 2 - - uid: 19526 + - uid: 32053 components: - type: Transform pos: 57.351303,-19.37168 parent: 2 - proto: SubstationBasic entities: - - uid: 3470 + - uid: 32054 components: - type: Transform pos: -4.5,-4.5 parent: 2 - - uid: 7520 + - uid: 32055 components: - type: Transform pos: 67.5,-12.5 parent: 2 - - uid: 13366 + - uid: 32056 components: - type: Transform pos: 27.5,-35.5 parent: 2 - - uid: 13513 + - uid: 32057 components: - type: Transform pos: 60.5,-56.5 parent: 2 - - uid: 17799 + - uid: 32058 components: - type: Transform pos: -61.5,-16.5 parent: 2 - - uid: 29167 + - uid: 32059 components: - type: MetaData name: Солнечные панели СЗ - type: Transform pos: -70.5,11.5 parent: 2 - - uid: 29168 + - uid: 32060 components: - type: MetaData name: Инженерный Ю - type: Transform pos: 35.5,-80.5 parent: 2 - - uid: 29170 + - uid: 32061 components: - type: Transform pos: 69.5,-63.5 parent: 2 - - uid: 29171 + - uid: 32062 components: - type: Transform pos: 69.5,-55.5 parent: 2 - - uid: 29174 + - uid: 32063 components: - type: MetaData name: мостик - type: Transform pos: 11.5,6.5 parent: 2 - - uid: 29175 + - uid: 32064 components: - type: MetaData name: Солнечные панели ЮЗ - type: Transform pos: -56.5,-85.5 parent: 2 - - uid: 29176 + - uid: 32065 components: - type: MetaData name: РнД В - type: Transform pos: -41.5,-89.5 parent: 2 - - uid: 29177 + - uid: 32066 components: - type: MetaData name: Хранилище плат - type: Transform pos: 41.5,-40.5 parent: 2 - - uid: 29179 + - uid: 32067 components: - type: MetaData name: Утилизаторная - type: Transform pos: -11.5,-87.5 parent: 2 - - uid: 29180 + - uid: 32068 components: - type: MetaData name: РнД З и отбытие - type: Transform pos: -68.5,-53.5 parent: 2 - - uid: 29181 + - uid: 32069 components: - type: MetaData name: Инженерный С - type: Transform pos: 53.5,-46.5 parent: 2 - - uid: 29182 + - uid: 32070 components: - type: MetaData name: Бриг - type: Transform pos: 32.5,-24.5 parent: 2 - - uid: 29183 + - uid: 32071 components: - type: MetaData name: сервис - type: Transform pos: 21.5,18.5 parent: 2 - - uid: 29184 + - uid: 32072 components: - type: MetaData name: прибытие - type: Transform pos: 79.5,-24.5 parent: 2 - - uid: 29185 + - uid: 32073 components: - type: MetaData name: Снабжение - type: Transform pos: 19.5,-86.5 parent: 2 - - uid: 29187 + - uid: 32074 components: - type: MetaData name: Жилой отсек - type: Transform pos: -41.5,-91.5 parent: 2 - - uid: 29188 + - uid: 32075 components: - type: Transform pos: 54.5,-86.5 parent: 2 - - uid: 29189 + - uid: 32076 components: - type: MetaData name: Солнечные панели ЮВ - type: Transform pos: 63.5,-67.5 parent: 2 - - uid: 29191 + - uid: 32077 components: - type: MetaData name: Мед С и библиотека - type: Transform pos: -35.5,9.5 parent: 2 - - uid: 29192 + - uid: 32078 components: - type: MetaData name: Тех тоннели СЗ - type: Transform pos: -65.5,4.5 parent: 2 - - uid: 29193 + - uid: 32079 components: - type: MetaData name: тех тоннели ЮЗ - type: Transform pos: -42.5,-110.5 parent: 2 - - uid: 29194 + - uid: 32080 components: - type: MetaData name: Спутник ИИ - type: Transform pos: 96.5,-64.5 parent: 2 - - uid: 29231 + - uid: 32081 components: - type: Transform pos: 5.5,-6.5 parent: 2 - - uid: 33941 + - uid: 32082 components: - type: Transform pos: -9.5,-49.5 parent: 2 - - uid: 33942 + - uid: 32083 components: - type: Transform pos: -11.5,-21.5 parent: 2 - - uid: 33943 + - uid: 32084 components: - type: Transform pos: 6.5,-46.5 parent: 2 - - uid: 34075 + - uid: 32085 components: - type: Transform pos: 12.5,-29.5 parent: 2 - - uid: 38472 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 37887 - - uid: 40652 + - uid: 32086 components: - type: Transform pos: 44.5,15.5 parent: 2 -- proto: SubstationMachineCircuitboard - entities: - - uid: 9731 + - uid: 41419 components: - type: Transform - pos: -17.51757,7.6876183 - parent: 2 - - uid: 29195 + pos: -0.5,-11.5 + parent: 40828 +- proto: SubstationMachineCircuitboard + entities: + - uid: 32087 components: - type: Transform pos: 40.519688,-38.40171 parent: 2 - - uid: 29197 + - uid: 32088 components: - type: Transform pos: 95.5,-80.5 parent: 2 - proto: SubstationWallBasic entities: - - uid: 21283 + - uid: 40779 components: - type: Transform pos: 3.5,-0.5 - parent: 21045 - - uid: 38941 + parent: 40666 + - uid: 41887 components: - type: Transform pos: 6.5,-7.5 - parent: 38722 + parent: 41669 - proto: SuitStorageAtmos entities: - - uid: 29198 + - uid: 32089 components: - type: Transform pos: 47.5,-93.5 parent: 2 - - uid: 29199 + - uid: 32090 components: - type: Transform pos: 47.5,-94.5 parent: 2 - - uid: 29200 + - uid: 32091 components: - type: Transform pos: 47.5,-95.5 parent: 2 - proto: SuitStorageBase entities: - - uid: 14786 + - uid: 15695 components: - type: Transform pos: -5.5,13.5 @@ -220040,11 +224385,11 @@ entities: showEnts: False occludes: True ents: - - 14788 - - 14789 - - 14787 - - 14790 - - uid: 15635 + - 15697 + - 15698 + - 15696 + - 15699 + - uid: 15799 components: - type: Transform pos: -17.5,-29.5 @@ -220073,9 +224418,9 @@ entities: showEnts: False occludes: True ents: - - 1610 - - 4811 - - uid: 15644 + - 15801 + - 15800 + - uid: 15802 components: - type: Transform pos: -18.5,-29.5 @@ -220104,13 +224449,13 @@ entities: showEnts: False occludes: True ents: - - 15787 - - 1611 - - uid: 38162 + - 15803 + - 15804 + - uid: 41103 components: - type: Transform pos: 3.5,-11.5 - parent: 37887 + parent: 40828 - type: EntityStorage air: volume: 200 @@ -220135,17 +224480,17 @@ entities: showEnts: False occludes: True ents: - - 38164 - - 41595 - - 38167 - - 38165 - - 38163 - - 38166 - - uid: 38168 + - 41105 + - 41107 + - 41109 + - 41106 + - 41104 + - 41108 + - uid: 41110 components: - type: Transform pos: 4.5,-8.5 - parent: 37887 + parent: 40828 - type: EntityStorage air: volume: 200 @@ -220170,17 +224515,17 @@ entities: showEnts: False occludes: True ents: - - 41596 - - 38171 - - 38170 - - 38173 - - 38172 - - 38169 - - uid: 38174 + - 41114 + - 41113 + - 41112 + - 41116 + - 41115 + - 41111 + - uid: 41117 components: - type: Transform pos: 5.5,-8.5 - parent: 37887 + parent: 40828 - type: EntityStorage air: volume: 200 @@ -220205,17 +224550,17 @@ entities: showEnts: False occludes: True ents: - - 38176 - - 41597 - - 38177 - - 38175 - - 38178 - - 38179 - - uid: 38180 + - 41119 + - 41121 + - 41120 + - 41118 + - 41122 + - 41123 + - uid: 41124 components: - type: Transform pos: 6.5,-8.5 - parent: 37887 + parent: 40828 - type: EntityStorage air: volume: 200 @@ -220240,17 +224585,17 @@ entities: showEnts: False occludes: True ents: - - 41598 - - 38181 - - 38182 - - 38183 - - 38185 - - 38184 - - uid: 38186 + - 41128 + - 41125 + - 41126 + - 41127 + - 41130 + - 41129 + - uid: 41131 components: - type: Transform pos: 3.5,-12.5 - parent: 37887 + parent: 40828 - type: EntityStorage air: volume: 200 @@ -220275,17 +224620,17 @@ entities: showEnts: False occludes: True ents: - - 38189 - - 38188 - - 38190 - - 38187 - - 38191 - - 41599 - - uid: 38192 + - 41134 + - 41133 + - 41136 + - 41132 + - 41137 + - 41135 + - uid: 41138 components: - type: Transform pos: -3.5,-4.5 - parent: 37887 + parent: 40828 - type: EntityStorage air: volume: 200 @@ -220310,28 +224655,28 @@ entities: showEnts: False occludes: True ents: - - 38194 - - 38196 - - 38193 - - 38197 - - 38195 + - 41140 + - 41142 + - 41139 + - 41143 + - 41141 - proto: SuitStorageBasic entities: - - uid: 36727 + - uid: 32092 components: - type: Transform pos: -68.5,-71.5 parent: 2 - proto: SuitStorageCaptain entities: - - uid: 15849 + - uid: 32093 components: - type: Transform pos: 17.5,16.5 parent: 2 - proto: SuitStorageCE entities: - - uid: 29202 + - uid: 26440 components: - type: Transform pos: 53.5,-76.5 @@ -220342,8 +224687,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -220354,9 +224699,16 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26441 - proto: SuitStorageCMO entities: - - uid: 29203 + - uid: 15620 components: - type: Transform pos: -36.5,-12.5 @@ -220367,8 +224719,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -220385,112 +224737,130 @@ entities: showEnts: False occludes: True ents: - - 30512 - - 30513 + - 15621 + - 15622 - proto: SuitStorageEngi entities: - - uid: 29204 + - uid: 32094 components: - type: Transform pos: 53.5,-78.5 parent: 2 - - uid: 29205 + - uid: 32095 components: - type: Transform pos: 53.5,-79.5 parent: 2 - - uid: 29206 + - uid: 32096 components: - type: Transform pos: -5.5,17.5 parent: 2 - - uid: 29207 + - uid: 32097 components: - type: Transform pos: 53.5,-80.5 parent: 2 - - uid: 29208 + - uid: 32098 components: - type: Transform pos: 54.5,-78.5 parent: 2 - - uid: 29209 + - uid: 32099 components: - type: Transform pos: 53.5,-81.5 parent: 2 - - uid: 29210 + - uid: 32100 components: - type: Transform pos: 54.5,-80.5 parent: 2 - - uid: 29211 + - uid: 32101 components: - type: Transform pos: 54.5,-79.5 parent: 2 - - uid: 29212 + - uid: 32102 components: - type: Transform pos: 54.5,-81.5 parent: 2 - - uid: 29213 + - uid: 32103 components: - type: Transform pos: 42.5,-64.5 parent: 2 - - uid: 29214 + - uid: 32104 components: - type: Transform pos: 48.5,-63.5 parent: 2 - proto: SuitStorageEVA entities: - - uid: 29215 + - uid: 32105 components: - type: Transform pos: 4.5,13.5 parent: 2 - - uid: 29216 + - uid: 32106 components: - type: Transform pos: 4.5,17.5 parent: 2 - - uid: 29219 + - uid: 32107 components: - type: Transform pos: 42.5,31.5 parent: 2 - - uid: 29220 + - 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: 32108 components: - type: Transform pos: -89.5,-19.5 parent: 2 - - uid: 29221 + - uid: 32109 components: - type: Transform pos: 5.5,17.5 parent: 2 - - uid: 29222 + - uid: 32110 components: - type: Transform pos: 3.5,17.5 parent: 2 - - uid: 29223 + - uid: 32111 components: - type: Transform pos: 3.5,13.5 parent: 2 - - uid: 29224 + - uid: 32112 components: - type: Transform pos: 5.5,13.5 parent: 2 - - uid: 38473 + - uid: 41420 components: - type: Transform pos: 0.5,-2.5 - parent: 37887 + parent: 40828 - type: EntityStorage air: volume: 200 @@ -220511,121 +224881,153 @@ entities: - 0 - proto: SuitStorageEVAAlternate entities: - - uid: 5348 + - uid: 32113 components: - type: Transform pos: -12.5,18.5 parent: 2 - - uid: 13893 + - uid: 32114 components: - type: Transform pos: -12.5,17.5 parent: 2 - - uid: 29225 + - uid: 32115 components: - type: Transform pos: -2.5,15.5 parent: 2 - - uid: 29226 + - uid: 32116 components: - type: Transform pos: -3.5,15.5 parent: 2 - - uid: 37054 + - uid: 32117 components: - type: Transform pos: -5.5,15.5 parent: 2 - proto: SuitStorageEVAEmergency entities: - - uid: 29228 + - uid: 32118 components: - type: Transform pos: -57.5,3.5 parent: 2 - - uid: 29229 + - uid: 32119 components: - type: Transform pos: -58.5,-5.5 parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 29120 + - uid: 32120 components: - type: Transform pos: 73.5,5.5 parent: 2 - - uid: 34409 + - uid: 32121 components: - type: Transform pos: 73.5,7.5 parent: 2 - - uid: 34410 + - uid: 32122 components: - type: Transform pos: 73.5,6.5 parent: 2 - proto: SuitStorageHOS entities: - - uid: 32569 + - uid: 32123 components: - type: Transform pos: 51.5,13.5 parent: 2 - proto: SuitStorageNTSRA entities: - - uid: 29236 + - uid: 32124 components: - type: Transform pos: -6.5,15.5 parent: 2 - proto: SuitStorageRD entities: - - uid: 29237 + - uid: 32125 components: - type: Transform pos: -34.5,-67.5 parent: 2 - proto: SuitStorageSalv entities: - - uid: 29238 + - uid: 32126 components: - type: Transform pos: -3.5,17.5 parent: 2 - - uid: 29239 + - uid: 32127 components: - type: Transform pos: -5.5,-96.5 parent: 2 - - uid: 29240 + - uid: 32128 components: - type: Transform pos: -5.5,-95.5 parent: 2 - - uid: 29241 + - uid: 32129 components: - type: Transform pos: -5.5,-94.5 parent: 2 - proto: SuitStorageSec entities: - - uid: 1160 + - uid: 15822 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14676 + moles: + - 1.8968438 + - 7.1357455 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15823 + - type: Pullable + prevFixedRotation: True + - uid: 32130 components: - type: Transform pos: 55.5,-24.5 parent: 2 - - uid: 2000 + - uid: 32131 components: - type: Transform pos: 57.5,-25.5 parent: 2 - - uid: 2081 + - uid: 32132 components: - type: Transform pos: 57.5,-23.5 parent: 2 - - uid: 2604 + - uid: 32133 components: - type: Transform pos: 57.5,-24.5 @@ -220648,78 +225050,46 @@ entities: - 0 - 0 - 0 - - uid: 2719 + - uid: 32134 components: - type: Transform pos: 55.5,-23.5 parent: 2 - - uid: 14772 + - uid: 32135 components: - type: Transform pos: 55.5,-25.5 parent: 2 - - uid: 15041 - components: - - type: Transform - pos: 61.5,13.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14676 - moles: - - 1.8968438 - - 7.1357455 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 27628 - - type: Pullable - prevFixedRotation: True - - uid: 29245 + - uid: 32136 components: - type: Transform pos: -3.5,13.5 parent: 2 - - uid: 41091 + - uid: 32137 components: - type: Transform pos: 62.5,13.5 parent: 2 - - uid: 41097 + - uid: 32138 components: - type: Transform pos: 75.5,6.5 parent: 2 - - uid: 41098 + - uid: 32139 components: - type: Transform pos: 75.5,7.5 parent: 2 - proto: SuitStorageWarden entities: - - uid: 9736 + - uid: 32140 components: - type: Transform pos: 51.5,-23.5 parent: 2 - proto: SurveillanceCameraCommand entities: - - uid: 29249 + - uid: 32141 components: - type: Transform pos: 7.5,19.5 @@ -220729,7 +225099,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Мостик В - - uid: 29250 + - uid: 32142 components: - type: Transform rot: -1.5707963267948966 rad @@ -220740,7 +225110,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Мастерская - - uid: 29251 + - uid: 32143 components: - type: Transform rot: 3.141592653589793 rad @@ -220751,7 +225121,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Офис ГП - - uid: 29252 + - uid: 32144 components: - type: Transform rot: 3.141592653589793 rad @@ -220762,7 +225132,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Конференц-зал - - uid: 29253 + - uid: 32145 components: - type: Transform rot: -1.5707963267948966 rad @@ -220773,7 +225143,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Коридор мостика - - uid: 29254 + - uid: 32146 components: - type: Transform rot: -1.5707963267948966 rad @@ -220784,7 +225154,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Хранилище EVA - - uid: 29256 + - uid: 32147 components: - type: Transform pos: -6.5,19.5 @@ -220794,7 +225164,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Мостик З - - uid: 29257 + - uid: 32148 components: - type: Transform rot: 3.141592653589793 rad @@ -220805,7 +225175,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Мостик С - - uid: 29258 + - uid: 32149 components: - type: Transform rot: -1.5707963267948966 rad @@ -220816,7 +225186,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Кабинет АВД - - uid: 29259 + - uid: 32150 components: - type: Transform rot: 1.5707963267948966 rad @@ -220827,7 +225197,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Доп хранилище EVA - - uid: 29260 + - uid: 32151 components: - type: Transform rot: -1.5707963267948966 rad @@ -220835,7 +225205,7 @@ entities: parent: 2 - type: SurveillanceCamera id: Кабинет капитана - - uid: 29261 + - uid: 32152 components: - type: Transform rot: 3.141592653589793 rad @@ -220843,14 +225213,14 @@ entities: parent: 2 - type: SurveillanceCamera id: Ядро ИИ - - uid: 29262 + - uid: 32153 components: - type: Transform pos: -39.5,-70.5 parent: 2 - type: SurveillanceCamera id: НР - - uid: 29265 + - uid: 32154 components: - type: Transform rot: 1.5707963267948966 rad @@ -220861,7 +225231,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Кабинет СИ - - uid: 30312 + - uid: 32155 components: - type: Transform rot: 3.141592653589793 rad @@ -220872,18 +225242,18 @@ entities: - SurveillanceCameraCommand nameSet: True id: Загрузка ИИ - - uid: 34364 + - uid: 32156 components: - type: Transform pos: 19.5,18.5 parent: 2 - - uid: 36232 + - uid: 32157 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,18.5 parent: 2 - - uid: 37665 + - uid: 32158 components: - type: Transform rot: 1.5707963267948966 rad @@ -220894,7 +225264,7 @@ entities: - SurveillanceCameraCommand nameSet: True id: Вход спутник - - uid: 40013 + - uid: 32159 components: - type: Transform rot: 1.5707963267948966 rad @@ -220905,9 +225275,20 @@ entities: - SurveillanceCameraCommand nameSet: True id: хранилище + - uid: 32160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Офис представителя - proto: SurveillanceCameraEngineering entities: - - uid: 1577 + - uid: 32161 components: - type: Transform rot: -1.5707963267948966 rad @@ -220918,7 +225299,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: энергохранилище - - uid: 29266 + - uid: 32162 components: - type: Transform rot: 3.141592653589793 rad @@ -220926,7 +225307,7 @@ entities: parent: 2 - type: SurveillanceCamera id: Коридор спутника - - uid: 29267 + - uid: 32163 components: - type: Transform pos: 95.5,-84.5 @@ -220936,7 +225317,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Атмосферика ядра - - uid: 29268 + - uid: 32164 components: - type: Transform rot: 3.141592653589793 rad @@ -220944,7 +225325,7 @@ entities: parent: 2 - type: SurveillanceCamera id: Комната наблюдения теслы - - uid: 29269 + - uid: 32165 components: - type: Transform rot: -1.5707963267948966 rad @@ -220952,14 +225333,14 @@ entities: parent: 2 - type: SurveillanceCamera id: ТЭГ - - uid: 29270 + - uid: 32166 components: - type: Transform pos: 52.5,-84.5 parent: 2 - type: SurveillanceCamera id: Раздевалка инженеров - - uid: 29272 + - uid: 32167 components: - type: Transform pos: 49.5,-60.5 @@ -220969,7 +225350,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Основной зал - - uid: 29273 + - uid: 32168 components: - type: Transform rot: 3.141592653589793 rad @@ -220980,7 +225361,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Приёмная инженерии - - uid: 29274 + - uid: 32169 components: - type: Transform rot: 1.5707963267948966 rad @@ -220988,7 +225369,7 @@ entities: parent: 2 - type: SurveillanceCamera id: Южный коридор - - uid: 29276 + - uid: 32170 components: - type: Transform rot: 1.5707963267948966 rad @@ -220999,14 +225380,14 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Приёмная атмосии - - uid: 29277 + - uid: 32171 components: - type: Transform pos: 37.5,-39.5 parent: 2 - type: SurveillanceCamera id: Хранилище плат - - uid: 29278 + - uid: 32172 components: - type: Transform rot: 3.141592653589793 rad @@ -221014,7 +225395,7 @@ entities: parent: 2 - type: SurveillanceCamera id: ДАМ - - uid: 29279 + - uid: 32173 components: - type: Transform rot: 1.5707963267948966 rad @@ -221025,7 +225406,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Коридор к ядру - - uid: 29280 + - uid: 32174 components: - type: Transform rot: 3.141592653589793 rad @@ -221036,7 +225417,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Охлаждение ядра - - uid: 29281 + - uid: 32175 components: - type: Transform rot: -1.5707963267948966 rad @@ -221044,7 +225425,7 @@ entities: parent: 2 - type: SurveillanceCamera id: Телекоммуникация - - uid: 29282 + - uid: 32176 components: - type: Transform rot: 1.5707963267948966 rad @@ -221052,7 +225433,7 @@ entities: parent: 2 - type: SurveillanceCamera id: Коридор телекомов - - uid: 29283 + - uid: 32177 components: - type: Transform rot: 1.5707963267948966 rad @@ -221060,7 +225441,7 @@ entities: parent: 2 - type: SurveillanceCamera id: 'Маршрутизаторы ' - - uid: 29284 + - uid: 32178 components: - type: Transform rot: 1.5707963267948966 rad @@ -221068,7 +225449,7 @@ entities: parent: 2 - type: SurveillanceCamera id: Охранный коридор спутника - - uid: 29285 + - uid: 32179 components: - type: Transform rot: 3.141592653589793 rad @@ -221079,7 +225460,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Север атмосия - - uid: 29286 + - uid: 32180 components: - type: Transform pos: 48.5,-103.5 @@ -221089,7 +225470,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Юг атмосия - - uid: 29287 + - uid: 32181 components: - type: Transform pos: 36.5,-103.5 @@ -221099,7 +225480,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Воздух атмосия - - uid: 29288 + - uid: 32182 components: - type: Transform rot: 3.141592653589793 rad @@ -221110,7 +225491,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Центр атмосия - - uid: 29289 + - uid: 32183 components: - type: Transform pos: 77.5,-66.5 @@ -221120,7 +225501,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Тесла - - uid: 29290 + - uid: 32184 components: - type: Transform rot: 1.5707963267948966 rad @@ -221131,7 +225512,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Тесла - - uid: 29291 + - uid: 32185 components: - type: Transform pos: 98.5,-64.5 @@ -221141,7 +225522,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Питание Спутника - - uid: 29292 + - uid: 32186 components: - type: Transform rot: 3.141592653589793 rad @@ -221152,7 +225533,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Инженерный склад - - uid: 37666 + - uid: 32187 components: - type: Transform rot: 3.141592653589793 rad @@ -221163,7 +225544,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Путь к спутнику - - uid: 37734 + - uid: 32188 components: - type: Transform rot: 3.141592653589793 rad @@ -221174,7 +225555,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Путь к спутнику - - uid: 37791 + - uid: 32189 components: - type: Transform pos: 58.5,-82.5 @@ -221184,7 +225565,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Выход космос инж - - uid: 39079 + - uid: 32190 components: - type: Transform rot: -1.5707963267948966 rad @@ -221195,7 +225576,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Подход к спутнику справа - - uid: 40008 + - uid: 32191 components: - type: Transform pos: 25.5,-38.5 @@ -221205,7 +225586,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: гравиген - - uid: 40009 + - uid: 32192 components: - type: Transform rot: -1.5707963267948966 rad @@ -221216,7 +225597,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: гравиген - - uid: 40012 + - uid: 32193 components: - type: Transform rot: -1.5707963267948966 rad @@ -221227,7 +225608,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: якорь - - uid: 40019 + - uid: 32194 components: - type: Transform rot: -1.5707963267948966 rad @@ -221238,7 +225619,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Верфь - - uid: 40021 + - uid: 32195 components: - type: Transform rot: 1.5707963267948966 rad @@ -221249,7 +225630,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Шлюз атмосы - - uid: 40022 + - uid: 32196 components: - type: Transform rot: 3.141592653589793 rad @@ -221260,7 +225641,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Коридор к УЧ - - uid: 40023 + - uid: 32197 components: - type: Transform pos: 68.5,-60.5 @@ -221270,7 +225651,7 @@ entities: - SurveillanceCameraEngineering nameSet: True id: УЧ - - uid: 40024 + - uid: 32198 components: - type: Transform pos: 41.5,-83.5 @@ -221280,9 +225661,29 @@ entities: - SurveillanceCameraEngineering nameSet: True id: подход к ДАМ + - uid: 32199 + components: + - type: Transform + pos: 38.5,-44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Защищённое хранилище плат - proto: SurveillanceCameraGeneral entities: - - uid: 12294 + - uid: 32200 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Инкубатор + - uid: 32201 components: - type: Transform rot: 3.141592653589793 rad @@ -221293,7 +225694,28 @@ entities: - SurveillanceCameraGeneral nameSet: True id: очередная камера в коридоре - - uid: 29293 + - uid: 32202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-47.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Очередная камера + - uid: 32203 + components: + - type: Transform + pos: 12.5,-44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Музей Искусств + - uid: 32204 components: - type: Transform rot: 1.5707963267948966 rad @@ -221304,7 +225726,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Церковь - - uid: 29294 + - uid: 32205 components: - type: Transform pos: -31.5,-98.5 @@ -221314,7 +225736,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Раздевалка жилого отсека - - uid: 29295 + - uid: 32206 components: - type: MetaData name: камера @@ -221327,7 +225749,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Спортзал - - uid: 29296 + - uid: 32207 components: - type: Transform rot: 1.5707963267948966 rad @@ -221338,7 +225760,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор инженерии - - uid: 29297 + - uid: 32208 components: - type: Transform rot: 1.5707963267948966 rad @@ -221349,7 +225771,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Доп склад инструментов - - uid: 29299 + - uid: 32209 components: - type: Transform pos: 91.5,-41.5 @@ -221359,7 +225781,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Прибытие Ю - - uid: 29300 + - uid: 32210 components: - type: Transform pos: 92.5,-23.5 @@ -221369,7 +225791,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Прибытие С - - uid: 29302 + - uid: 32211 components: - type: Transform rot: -1.5707963267948966 rad @@ -221380,7 +225802,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Основной коридор З - - uid: 29303 + - uid: 32212 components: - type: Transform pos: 17.5,-0.5 @@ -221390,7 +225812,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Основной коридор СВ - - uid: 29305 + - uid: 32213 components: - type: Transform rot: -1.5707963267948966 rad @@ -221401,7 +225823,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Основной коридор СЗ - - uid: 29306 + - uid: 32214 components: - type: Transform rot: 1.5707963267948966 rad @@ -221412,7 +225834,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Отбытие - - uid: 29307 + - uid: 32215 components: - type: Transform rot: -1.5707963267948966 rad @@ -221423,7 +225845,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Основной коридор ЮЗ - - uid: 29308 + - uid: 32216 components: - type: Transform rot: -1.5707963267948966 rad @@ -221434,7 +225856,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Библиотека - - uid: 29309 + - uid: 32217 components: - type: Transform pos: -1.5,-76.5 @@ -221444,7 +225866,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Основной коридор Ю - - uid: 29312 + - uid: 32218 components: - type: Transform pos: 66.5,-33.5 @@ -221454,7 +225876,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор прибытия - - uid: 29313 + - uid: 32219 components: - type: Transform pos: 67.5,-42.5 @@ -221464,7 +225886,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Суд - - uid: 29314 + - uid: 32220 components: - type: Transform rot: 3.141592653589793 rad @@ -221472,7 +225894,7 @@ entities: parent: 2 - type: SurveillanceCamera id: Коридор Психолога - - uid: 29315 + - uid: 32221 components: - type: Transform pos: 54.5,-42.5 @@ -221482,7 +225904,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Парк - - uid: 29317 + - uid: 32222 components: - type: Transform rot: 1.5707963267948966 rad @@ -221493,7 +225915,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Дормы - - uid: 29318 + - uid: 32223 components: - type: Transform rot: 3.141592653589793 rad @@ -221504,7 +225926,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Криокапсулы - - uid: 29319 + - uid: 32224 components: - type: Transform rot: -1.5707963267948966 rad @@ -221515,7 +225937,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Северо-западный кольцевой - - uid: 29320 + - uid: 32225 components: - type: Transform rot: -1.5707963267948966 rad @@ -221526,7 +225948,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Перекрёсток мед-рнд - - uid: 29321 + - uid: 32226 components: - type: Transform rot: -1.5707963267948966 rad @@ -221537,7 +225959,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Перекрёсток мед-рнд - - uid: 29322 + - uid: 32227 components: - type: Transform rot: -1.5707963267948966 rad @@ -221548,7 +225970,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Северо-западный кольцевой - - uid: 29323 + - uid: 32228 components: - type: Transform rot: -1.5707963267948966 rad @@ -221559,7 +225981,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Стыковка эвак - - uid: 29324 + - uid: 32229 components: - type: Transform rot: 3.141592653589793 rad @@ -221570,7 +225992,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор уборщик - - uid: 29326 + - uid: 32230 components: - type: Transform rot: 1.5707963267948966 rad @@ -221581,7 +226003,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Вход в бар - - uid: 29328 + - uid: 32231 components: - type: Transform rot: 1.5707963267948966 rad @@ -221592,7 +226014,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Перекрёсток сб-инж - - uid: 29329 + - uid: 32232 components: - type: Transform rot: -1.5707963267948966 rad @@ -221603,7 +226025,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Прибытие - - uid: 29330 + - uid: 32233 components: - type: Transform rot: -1.5707963267948966 rad @@ -221614,7 +226036,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Прибытие - - uid: 29331 + - uid: 32234 components: - type: Transform rot: 1.5707963267948966 rad @@ -221625,7 +226047,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор дормы - - uid: 29332 + - uid: 32235 components: - type: Transform pos: -14.5,-73.5 @@ -221635,7 +226057,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор Карго - - uid: 29335 + - uid: 32236 components: - type: Transform rot: 1.5707963267948966 rad @@ -221646,7 +226068,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор Репортёр - - uid: 29336 + - uid: 32237 components: - type: Transform pos: 9.5,-76.5 @@ -221656,7 +226078,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Коридор над карго - - uid: 29337 + - uid: 32238 components: - type: Transform rot: 1.5707963267948966 rad @@ -221667,7 +226089,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Парикмахерская - - uid: 31591 + - uid: 32239 components: - type: Transform rot: 1.5707963267948966 rad @@ -221678,13 +226100,13 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Склад инструментов - - uid: 36752 + - uid: 32240 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-58.5 parent: 2 - - uid: 40010 + - uid: 32241 components: - type: Transform rot: 1.5707963267948966 rad @@ -221695,7 +226117,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: коридор хранилища - - uid: 40011 + - uid: 32242 components: - type: Transform rot: 1.5707963267948966 rad @@ -221706,7 +226128,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: вход гравиген - - uid: 40014 + - uid: 32243 components: - type: Transform rot: 1.5707963267948966 rad @@ -221717,7 +226139,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: правый лифт - - uid: 40016 + - uid: 32244 components: - type: Transform pos: -26.5,-44.5 @@ -221727,7 +226149,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: левый лифт - - uid: 40018 + - uid: 32245 components: - type: Transform rot: 1.5707963267948966 rad @@ -221738,7 +226160,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Верфь - - uid: 40026 + - uid: 32246 components: - type: Transform pos: -10.5,-0.5 @@ -221748,7 +226170,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Старое хранилище - - uid: 40566 + - uid: 32247 components: - type: Transform rot: -1.5707963267948966 rad @@ -221759,7 +226181,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Комната отдыха сб - - uid: 40570 + - uid: 32248 components: - type: Transform pos: 63.5,13.5 @@ -221769,7 +226191,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Доки сб - - uid: 40571 + - uid: 32249 components: - type: Transform pos: 56.5,13.5 @@ -221779,7 +226201,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Комната Пилота - - uid: 40815 + - uid: 32250 components: - type: Transform rot: 3.141592653589793 rad @@ -221790,7 +226212,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Какой-то коридор - - uid: 41020 + - uid: 32251 components: - type: Transform rot: 3.141592653589793 rad @@ -221801,7 +226223,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Стыковка ПРибытие - - uid: 41021 + - uid: 32252 components: - type: Transform pos: 128.5,-40.5 @@ -221811,7 +226233,7 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Стыковка прибытие 2 - - uid: 41022 + - uid: 32253 components: - type: Transform pos: 105.5,-42.5 @@ -221821,21 +226243,32 @@ entities: - SurveillanceCameraGeneral nameSet: True id: 'Коридор к стыковке ' + - uid: 32254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Зоопарк - proto: SurveillanceCameraMedical entities: - - uid: 13037 + - uid: 32255 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-24.5 parent: 2 - - uid: 29338 + - uid: 32256 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-27.5 parent: 2 - - uid: 29339 + - uid: 32257 components: - type: Transform pos: -39.5,-40.5 @@ -221845,7 +226278,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Приёмная меда - - uid: 29340 + - uid: 32258 components: - type: Transform rot: -1.5707963267948966 rad @@ -221856,7 +226289,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Палаты - - uid: 29341 + - uid: 32259 components: - type: Transform rot: -1.5707963267948966 rad @@ -221867,7 +226300,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Хирургия - - uid: 29342 + - uid: 32260 components: - type: Transform rot: -1.5707963267948966 rad @@ -221878,7 +226311,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Клонирование - - uid: 29343 + - uid: 32261 components: - type: Transform rot: 1.5707963267948966 rad @@ -221889,7 +226322,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Криогенетика - - uid: 29344 + - uid: 32262 components: - type: Transform rot: -1.5707963267948966 rad @@ -221900,7 +226333,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Кабинет ГВ - - uid: 29345 + - uid: 32263 components: - type: Transform rot: -1.5707963267948966 rad @@ -221911,7 +226344,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Вирусология - - uid: 29346 + - uid: 32264 components: - type: Transform rot: -1.5707963267948966 rad @@ -221922,7 +226355,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Медотсек С - - uid: 29347 + - uid: 32265 components: - type: Transform rot: -1.5707963267948966 rad @@ -221933,7 +226366,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Химия - - uid: 29348 + - uid: 32266 components: - type: Transform rot: 3.141592653589793 rad @@ -221944,7 +226377,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Склад медикаментов - - uid: 29349 + - uid: 32267 components: - type: Transform rot: -1.5707963267948966 rad @@ -221955,7 +226388,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Переход к вирусологии - - uid: 29350 + - uid: 32268 components: - type: Transform rot: 1.5707963267948966 rad @@ -221966,7 +226399,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Палаты - - uid: 40027 + - uid: 32269 components: - type: Transform rot: 1.5707963267948966 rad @@ -221977,7 +226410,7 @@ entities: - SurveillanceCameraMedical nameSet: True id: Коридор к аномалистике - - uid: 40747 + - uid: 32270 components: - type: Transform rot: 1.5707963267948966 rad @@ -221990,70 +226423,70 @@ entities: id: Бар - proto: SurveillanceCameraRouterCommand entities: - - uid: 29351 + - uid: 32271 components: - type: Transform pos: 104.5,-67.5 parent: 2 - proto: SurveillanceCameraRouterConstructed entities: - - uid: 11844 + - uid: 32272 components: - type: Transform pos: 19.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 29352 + - uid: 32273 components: - type: Transform pos: 104.5,-71.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 29353 + - uid: 32274 components: - type: Transform pos: 102.5,-68.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 29354 + - uid: 32275 components: - type: Transform pos: 102.5,-71.5 parent: 2 - proto: SurveillanceCameraRouterScience entities: - - uid: 29355 + - uid: 32276 components: - type: Transform pos: -38.5,-72.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 29356 + - uid: 32277 components: - type: Transform pos: 102.5,-70.5 parent: 2 - proto: SurveillanceCameraRouterService entities: - - uid: 29357 + - uid: 32278 components: - type: Transform pos: 102.5,-69.5 parent: 2 - proto: SurveillanceCameraRouterSupply entities: - - uid: 29358 + - uid: 32279 components: - type: Transform pos: 104.5,-70.5 parent: 2 - proto: SurveillanceCameraScience entities: - - uid: 29359 + - uid: 32280 components: - type: Transform rot: -1.5707963267948966 rad @@ -222064,7 +226497,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Аномалистика - - uid: 29360 + - uid: 32281 components: - type: Transform rot: 1.5707963267948966 rad @@ -222075,7 +226508,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Ксеноархеология - - uid: 29361 + - uid: 32282 components: - type: Transform pos: -36.5,-49.5 @@ -222085,7 +226518,7 @@ entities: - SurveillanceCameraScience nameSet: True id: РнД - - uid: 29362 + - uid: 32283 components: - type: Transform rot: -1.5707963267948966 rad @@ -222096,7 +226529,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Токсины - - uid: 29363 + - uid: 32284 components: - type: Transform rot: -1.5707963267948966 rad @@ -222107,7 +226540,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Робототехника - - uid: 29364 + - uid: 32285 components: - type: Transform rot: 3.141592653589793 rad @@ -222118,7 +226551,7 @@ entities: - SurveillanceCameraScience nameSet: True id: РнД коридор С - - uid: 29365 + - uid: 32286 components: - type: Transform rot: -1.5707963267948966 rad @@ -222129,7 +226562,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Комната отдыха - - uid: 29366 + - uid: 32287 components: - type: Transform rot: -1.5707963267948966 rad @@ -222140,7 +226573,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Камеры ксенобиологии - - uid: 29367 + - uid: 32288 components: - type: Transform rot: 3.141592653589793 rad @@ -222151,7 +226584,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Ксенобиология - - uid: 29368 + - uid: 32289 components: - type: Transform pos: -38.5,-65.5 @@ -222161,7 +226594,7 @@ entities: - SurveillanceCameraScience nameSet: True id: Комната механики - - uid: 29369 + - uid: 32290 components: - type: Transform rot: 3.141592653589793 rad @@ -222172,7 +226605,7 @@ entities: - SurveillanceCameraScience nameSet: True id: сервера РнД - - uid: 29370 + - uid: 32291 components: - type: Transform rot: -1.5707963267948966 rad @@ -222180,7 +226613,7 @@ entities: parent: 2 - type: SurveillanceCamera id: Ксеноархеология 2 - - uid: 29371 + - uid: 32292 components: - type: Transform rot: 1.5707963267948966 rad @@ -222188,16 +226621,26 @@ entities: parent: 2 - type: SurveillanceCamera id: Тестовая - - uid: 29372 + - uid: 32293 components: - type: Transform pos: -52.5,-66.5 parent: 2 - type: SurveillanceCamera id: Коридор токсины + - uid: 32294 + components: + - type: Transform + pos: -13.5,-54.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Робототехническая лаборатория - proto: SurveillanceCameraSecurity entities: - - uid: 755 + - uid: 32295 components: - type: Transform rot: -1.5707963267948966 rad @@ -222208,7 +226651,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Комната наблюдения - - uid: 2586 + - uid: 32296 components: - type: Transform rot: 1.5707963267948966 rad @@ -222219,7 +226662,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Оружейная СК - - uid: 5165 + - uid: 32297 components: - type: Transform rot: 1.5707963267948966 rad @@ -222230,7 +226673,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: КПП СБ Смотритель - - uid: 23710 + - uid: 32298 components: - type: Transform rot: 1.5707963267948966 rad @@ -222241,7 +226684,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Скафандры - - uid: 24830 + - uid: 32299 components: - type: Transform rot: -1.5707963267948966 rad @@ -222252,7 +226695,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Карцер тюрьмы - - uid: 24831 + - uid: 32300 components: - type: Transform rot: 1.5707963267948966 rad @@ -222263,7 +226706,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Камера 4 - - uid: 24832 + - uid: 32301 components: - type: Transform rot: 1.5707963267948966 rad @@ -222274,7 +226717,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Большая камера 5 - - uid: 24833 + - uid: 32302 components: - type: Transform rot: 1.5707963267948966 rad @@ -222285,7 +226728,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Камера 3 - - uid: 24877 + - uid: 32303 components: - type: Transform rot: -1.5707963267948966 rad @@ -222296,12 +226739,12 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Камера 2 - - uid: 26795 + - uid: 32304 components: - type: Transform pos: 40.5,-1.5 parent: 2 - - uid: 26802 + - uid: 32305 components: - type: Transform rot: 3.141592653589793 rad @@ -222312,7 +226755,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Коридор тюрьмы - - uid: 28782 + - uid: 32306 components: - type: Transform rot: 1.5707963267948966 rad @@ -222323,7 +226766,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Оружейная КК - - uid: 28784 + - uid: 32307 components: - type: Transform pos: 54.5,-19.5 @@ -222333,7 +226776,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Вспомогательный склад - - uid: 29165 + - uid: 32308 components: - type: Transform rot: -1.5707963267948966 rad @@ -222344,7 +226787,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Коридор допросная - - uid: 29373 + - uid: 32309 components: - type: Transform rot: -1.5707963267948966 rad @@ -222352,7 +226795,7 @@ entities: parent: 2 - type: SurveillanceCamera id: КПП Мед - - uid: 29374 + - uid: 32310 components: - type: Transform rot: 3.141592653589793 rad @@ -222363,7 +226806,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: КПП прибытия - - uid: 29384 + - uid: 32311 components: - type: Transform rot: -1.5707963267948966 rad @@ -222374,7 +226817,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: КПП РнД - - uid: 29385 + - uid: 32312 components: - type: Transform rot: -1.5707963267948966 rad @@ -222385,7 +226828,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: КПП карго - - uid: 29390 + - uid: 32313 components: - type: Transform rot: 1.5707963267948966 rad @@ -222393,7 +226836,7 @@ entities: parent: 2 - type: SurveillanceCamera id: КПП Эвакуация - - uid: 29391 + - uid: 32314 components: - type: Transform rot: 3.141592653589793 rad @@ -222401,7 +226844,7 @@ entities: parent: 2 - type: SurveillanceCamera id: Безопасная эвакуация - - uid: 31622 + - uid: 32315 components: - type: Transform rot: -1.5707963267948966 rad @@ -222412,7 +226855,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Камера 1 - - uid: 31625 + - uid: 32316 components: - type: Transform rot: 3.141592653589793 rad @@ -222423,7 +226866,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Склад улик - - uid: 40015 + - uid: 32317 components: - type: Transform rot: 1.5707963267948966 rad @@ -222434,7 +226877,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: КПП ГП - - uid: 40459 + - uid: 32318 components: - type: Transform rot: 1.5707963267948966 rad @@ -222445,7 +226888,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Допросная - - uid: 40560 + - uid: 32319 components: - type: Transform pos: 39.5,-27.5 @@ -222455,7 +226898,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Детектив - - uid: 40561 + - uid: 32320 components: - type: Transform rot: -1.5707963267948966 rad @@ -222466,7 +226909,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Бриг - - uid: 40562 + - uid: 32321 components: - type: Transform rot: 1.5707963267948966 rad @@ -222477,7 +226920,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Смотритель - - uid: 40563 + - uid: 32322 components: - type: Transform pos: 57.5,-15.5 @@ -222487,7 +226930,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Коридор оружейная - - uid: 40564 + - uid: 32323 components: - type: Transform pos: 63.5,-9.5 @@ -222497,7 +226940,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Коридор к перме - - uid: 40565 + - uid: 32324 components: - type: Transform rot: -1.5707963267948966 rad @@ -222508,7 +226951,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Брифрум - - uid: 40567 + - uid: 32325 components: - type: Transform rot: -1.5707963267948966 rad @@ -222519,7 +226962,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Коридор к пилоту - - uid: 40568 + - uid: 32326 components: - type: Transform pos: 52.5,9.5 @@ -222529,7 +226972,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Гсбшная - - uid: 40569 + - uid: 32327 components: - type: Transform pos: 63.5,7.5 @@ -222539,7 +226982,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Полигон - - uid: 40572 + - uid: 32328 components: - type: Transform rot: 1.5707963267948966 rad @@ -222550,7 +226993,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Бригмед - - uid: 40573 + - uid: 32329 components: - type: Transform pos: 85.5,-10.5 @@ -222560,7 +227003,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Столовая пермы - - uid: 40574 + - uid: 32330 components: - type: Transform rot: -1.5707963267948966 rad @@ -222571,7 +227014,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Раздевалка перма - - uid: 40575 + - uid: 32331 components: - type: Transform rot: 3.141592653589793 rad @@ -222582,7 +227025,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Комната свиданий - - uid: 40576 + - uid: 32332 components: - type: Transform rot: 1.5707963267948966 rad @@ -222593,7 +227036,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Перма верх - - uid: 40577 + - uid: 32333 components: - type: Transform rot: 1.5707963267948966 rad @@ -222604,7 +227047,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: СБ видит - - uid: 40578 + - uid: 32334 components: - type: Transform pos: 75.5,-12.5 @@ -222614,7 +227057,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: СБ видит - - uid: 40579 + - uid: 32335 components: - type: Transform rot: 3.141592653589793 rad @@ -222625,7 +227068,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Комната 1 Перма - - uid: 40580 + - uid: 32336 components: - type: Transform rot: 3.141592653589793 rad @@ -222636,7 +227079,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Комната 2 перма - - uid: 40581 + - uid: 32337 components: - type: Transform rot: 3.141592653589793 rad @@ -222647,7 +227090,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Крио перма - - uid: 40582 + - uid: 32338 components: - type: Transform pos: 78.5,3.5 @@ -222657,7 +227100,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Комната казни - - uid: 40583 + - uid: 32339 components: - type: Transform rot: -1.5707963267948966 rad @@ -222668,7 +227111,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Карцер смертников - - uid: 40584 + - uid: 32340 components: - type: Transform rot: -1.5707963267948966 rad @@ -222679,7 +227122,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Эвакуационный под Брига - - uid: 40585 + - uid: 32341 components: - type: Transform rot: 3.141592653589793 rad @@ -222690,7 +227133,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: 'Вспомогательный склад ' - - uid: 40586 + - uid: 32342 components: - type: Transform rot: -1.5707963267948966 rad @@ -222701,7 +227144,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Коридор перед раздевалкой пермы - - uid: 40587 + - uid: 32343 components: - type: Transform rot: -1.5707963267948966 rad @@ -222712,9 +227155,15 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Коридор перма + - uid: 32344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 2 - proto: SurveillanceCameraService entities: - - uid: 29398 + - uid: 32345 components: - type: Transform rot: -1.5707963267948966 rad @@ -222722,7 +227171,7 @@ entities: parent: 2 - type: SurveillanceCamera id: Кухня - - uid: 29399 + - uid: 32346 components: - type: Transform rot: -1.5707963267948966 rad @@ -222730,14 +227179,14 @@ entities: parent: 2 - type: SurveillanceCamera id: Бармен - - uid: 29401 + - uid: 32347 components: - type: Transform pos: 35.5,-13.5 parent: 2 - type: SurveillanceCamera id: Театр - - uid: 29403 + - uid: 32348 components: - type: Transform rot: 3.141592653589793 rad @@ -222748,7 +227197,7 @@ entities: - SurveillanceCameraService nameSet: True id: Игровая - - uid: 29404 + - uid: 32349 components: - type: Transform pos: 28.5,-76.5 @@ -222758,7 +227207,7 @@ entities: - SurveillanceCameraService nameSet: True id: Репортёр - - uid: 40017 + - uid: 32350 components: - type: Transform rot: -1.5707963267948966 rad @@ -222769,7 +227218,7 @@ entities: - SurveillanceCameraService nameSet: True id: Уборщик - - uid: 40746 + - uid: 32351 components: - type: Transform rot: 1.5707963267948966 rad @@ -222780,9 +227229,41 @@ entities: - SurveillanceCameraService nameSet: True id: Ботаника + - uid: 32352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Ботаническая лаборатория + - uid: 32353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-46.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Зоотехник + - uid: 32354 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Оранжерея - proto: SurveillanceCameraSupply entities: - - uid: 29405 + - uid: 32355 components: - type: Transform rot: 1.5707963267948966 rad @@ -222793,7 +227274,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Почта - - uid: 29406 + - uid: 32356 components: - type: Transform rot: -1.5707963267948966 rad @@ -222804,7 +227285,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Утилизаторная - - uid: 29407 + - uid: 32357 components: - type: Transform rot: 1.5707963267948966 rad @@ -222815,7 +227296,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Приёмная карго - - uid: 29408 + - uid: 32358 components: - type: Transform pos: 1.5,-91.5 @@ -222825,7 +227306,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Склад карго - - uid: 29409 + - uid: 32359 components: - type: Transform rot: 1.5707963267948966 rad @@ -222836,7 +227317,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Доки карго - - uid: 29415 + - uid: 32360 components: - type: Transform rot: 3.141592653589793 rad @@ -222847,7 +227328,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Порт утилизаторы - - uid: 29416 + - uid: 32361 components: - type: Transform rot: -1.5707963267948966 rad @@ -222858,7 +227339,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Зал астероида - - uid: 29417 + - uid: 32362 components: - type: Transform pos: -8.5,-96.5 @@ -222868,7 +227349,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Склад утилизаторы - - uid: 29418 + - uid: 32363 components: - type: Transform rot: 1.5707963267948966 rad @@ -222879,7 +227360,7 @@ entities: - SurveillanceCameraSupply nameSet: True id: Зал Карго - - uid: 40025 + - uid: 32364 components: - type: Transform rot: -1.5707963267948966 rad @@ -222890,23 +227371,33 @@ entities: - SurveillanceCameraSupply nameSet: True id: Аванпост утилей + - uid: 32365 + components: + - type: Transform + pos: -1.5,-64.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Трюм - proto: SurveillanceCameraWirelessRouterConstructed entities: - - uid: 33809 + - uid: 32366 components: - type: Transform pos: 9.5,-46.5 parent: 2 - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 29419 + - uid: 32367 components: - type: Transform pos: 102.5,-67.5 parent: 2 - proto: SurveillanceWirelessCameraAnchoredEntertainment entities: - - uid: 29420 + - uid: 32368 components: - type: Transform pos: 25.5,-73.5 @@ -222918,20 +227409,20 @@ entities: id: Новости - proto: SurveillanceWirelessCameraMovableConstructed entities: - - uid: 29422 + - uid: 32369 components: - type: Transform pos: 76.5,-49.5 parent: 2 - proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 29423 + - uid: 32370 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-73.5 parent: 2 - - uid: 29424 + - uid: 32371 components: - type: Transform pos: 37.5,-6.5 @@ -222941,7 +227432,7 @@ entities: - SurveillanceCameraEntertainment nameSet: True id: Театр - - uid: 29425 + - uid: 32372 components: - type: Transform rot: 3.141592653589793 rad @@ -222952,7 +227443,7 @@ entities: - SurveillanceCameraEntertainment nameSet: True id: Зал суда - - uid: 29426 + - uid: 32373 components: - type: Transform rot: 1.5707963267948966 rad @@ -222965,14 +227456,14 @@ entities: id: Ринг - proto: SyndicateMicrowave entities: - - uid: 30452 + - uid: 32374 components: - type: Transform pos: -17.5,-21.5 parent: 2 - proto: SyndieTrickyBomb entities: - - uid: 27136 + - uid: 32375 components: - type: MetaData name: нейтронная бомба @@ -222981,42 +227472,68 @@ entities: parent: 2 - proto: Syringe entities: - - uid: 29430 + - uid: 32376 components: - type: Transform pos: -55.485992,-68.42716 parent: 2 - - uid: 29431 + - uid: 32377 components: - type: Transform pos: 36.23887,15.6179285 parent: 2 - - uid: 29432 + - uid: 32378 components: - type: Transform pos: -76.57504,-7.32294 parent: 2 - - uid: 34241 + - uid: 32379 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.4784193,-35.13414 parent: 2 - - uid: 34242 + - uid: 32380 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.2909193,-34.94664 parent: 2 - - uid: 39128 + - uid: 32381 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.6540136,-38.94043 parent: 2 +- proto: SyringeBicaridine + entities: + - uid: 2526 + components: + - type: Transform + parent: 2520 + - type: Physics + canCollide: False + - uid: 2533 + components: + - type: Transform + parent: 2527 + - type: Physics + canCollide: False + - uid: 2540 + components: + - type: Transform + parent: 2534 + - type: Physics + canCollide: False - proto: SyringeEphedrine entities: - - uid: 29434 + - uid: 27225 + components: + - type: Transform + parent: 27220 + - type: Physics + canCollide: False + - uid: 32382 components: - type: Transform rot: 1.5707963267948966 rad @@ -223024,20 +227541,38 @@ entities: parent: 2 - proto: SyringeEthylredoxrazine entities: - - uid: 17822 + - uid: 51 components: - type: Transform - parent: 27043 + parent: 35 - type: Physics canCollide: False - proto: SyringeInaprovaline entities: - - uid: 29435 + - uid: 75 + components: + - type: Transform + parent: 68 + - type: Physics + canCollide: False + - uid: 84 + components: + - type: Transform + parent: 77 + - type: Physics + canCollide: False + - uid: 93 + components: + - type: Transform + parent: 86 + - type: Physics + canCollide: False + - uid: 32383 components: - type: Transform pos: -45.469284,-10.626675 parent: 2 - - uid: 29436 + - uid: 32384 components: - type: Transform rot: 3.141592653589793 rad @@ -223045,1886 +227580,1916 @@ entities: parent: 2 - proto: SyringePhalanximine entities: - - uid: 29437 + - uid: 32385 components: - type: Transform pos: 36.50634,22.61851 parent: 2 +- proto: SyringeSaline + entities: + - uid: 76 + components: + - type: Transform + parent: 68 + - type: Physics + canCollide: False + - uid: 85 + components: + - type: Transform + parent: 77 + - type: Physics + canCollide: False + - uid: 94 + components: + - type: Transform + parent: 86 + - type: Physics + canCollide: False + - uid: 27226 + components: + - type: Transform + parent: 27220 + - type: Physics + canCollide: False - proto: Table entities: - - uid: 402 + - uid: 32386 components: - type: Transform pos: 11.5,-48.5 parent: 2 - - uid: 822 + - uid: 32387 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-24.5 parent: 2 - - uid: 1082 + - uid: 32388 components: - type: Transform pos: 56.5,-0.5 parent: 2 - - uid: 2035 + - uid: 32389 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-17.5 parent: 2 - - uid: 2036 + - uid: 32390 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-25.5 parent: 2 - - uid: 2082 + - uid: 32391 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-22.5 parent: 2 - - uid: 2093 + - uid: 32392 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-15.5 parent: 2 - - uid: 2576 + - uid: 32393 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-5.5 parent: 2 - - uid: 2577 + - uid: 32394 components: - type: Transform pos: 46.5,-1.5 parent: 2 - - uid: 2578 + - uid: 32395 components: - type: Transform pos: 46.5,-2.5 parent: 2 - - uid: 2598 + - uid: 32396 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-10.5 parent: 2 - - uid: 2599 + - uid: 32397 components: - type: Transform pos: 47.5,-1.5 parent: 2 - - uid: 2600 + - uid: 32398 components: - type: Transform pos: 48.5,-1.5 parent: 2 - - uid: 2748 + - uid: 32399 components: - type: Transform pos: 56.5,-1.5 parent: 2 - - uid: 7089 + - uid: 32400 components: - type: Transform pos: -96.5,-10.5 parent: 2 - - uid: 7803 + - uid: 32401 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,3.5 parent: 2 - - uid: 9726 + - uid: 32402 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-17.5 parent: 2 - - uid: 9947 + - uid: 32403 components: - type: Transform pos: 50.5,5.5 parent: 2 - - uid: 12323 + - uid: 32404 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-29.5 parent: 2 - - uid: 14610 + - uid: 32405 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,8.5 parent: 2 - - uid: 14887 + - uid: 32406 components: - type: Transform pos: 53.5,21.5 parent: 2 - - uid: 14901 + - uid: 32407 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-29.5 parent: 2 - - uid: 15411 + - uid: 32408 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - uid: 32409 components: - type: Transform pos: 42.5,-11.5 parent: 2 - - uid: 15443 + - uid: 32410 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,0.5 parent: 2 - - uid: 15719 + - uid: 32411 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-2.5 parent: 2 - - uid: 15832 + - uid: 32412 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,-10.5 parent: 2 - - uid: 16236 + - uid: 32413 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,7.5 parent: 2 - - uid: 16899 + - uid: 32414 components: - type: Transform pos: 62.5,-1.5 parent: 2 - - uid: 16994 + - uid: 32415 components: - type: Transform pos: 55.5,-0.5 parent: 2 - - uid: 17348 + - uid: 32416 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-3.5 parent: 2 - - uid: 17827 + - uid: 32417 components: - type: Transform pos: 52.5,-1.5 parent: 2 - - uid: 19126 + - uid: 32418 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,4.5 parent: 2 - - uid: 19127 + - uid: 32419 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,1.5 parent: 2 - - uid: 19148 + - uid: 32420 components: - type: Transform pos: 62.5,-2.5 parent: 2 - - uid: 19568 + - uid: 32421 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,15.5 parent: 2 - - uid: 19584 + - uid: 32422 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,15.5 parent: 2 - - uid: 19588 + - uid: 32423 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,15.5 parent: 2 - - uid: 19589 + - uid: 32424 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,14.5 parent: 2 - - uid: 19637 + - uid: 32425 components: - type: Transform pos: 56.5,-2.5 parent: 2 - - uid: 21040 + - uid: 32426 components: - type: Transform pos: 62.5,-5.5 parent: 2 - - uid: 21042 + - uid: 32427 components: - type: Transform pos: 55.5,-2.5 parent: 2 - - uid: 21306 + - uid: 32428 components: - type: Transform pos: 50.5,6.5 parent: 2 - - uid: 22106 + - uid: 32429 components: - type: Transform pos: 55.5,-4.5 parent: 2 - - uid: 22107 + - uid: 32430 components: - type: Transform pos: 55.5,-5.5 parent: 2 - - uid: 22159 + - uid: 32431 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-22.5 parent: 2 - - uid: 22267 + - uid: 32432 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-26.5 parent: 2 - - uid: 22270 + - uid: 32433 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,-26.5 parent: 2 - - uid: 22359 + - uid: 32434 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-26.5 parent: 2 - - uid: 22423 + - uid: 32435 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,1.5 parent: 2 - - uid: 22775 + - uid: 32436 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-9.5 parent: 2 - - uid: 22778 + - uid: 32437 components: - type: Transform pos: -44.5,-19.5 parent: 2 - - uid: 23119 + - uid: 32438 components: - type: Transform pos: 37.5,-23.5 parent: 2 - - uid: 24192 + - uid: 32439 components: - type: Transform pos: 56.5,-7.5 parent: 2 - - uid: 24240 + - uid: 32440 components: - type: Transform pos: 50.5,3.5 parent: 2 - - uid: 24533 + - uid: 32441 components: - type: Transform pos: 52.5,2.5 parent: 2 - - uid: 24561 + - uid: 32442 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-20.5 parent: 2 - - uid: 24921 + - uid: 32443 + components: + - type: Transform + pos: -49.5,-23.5 + parent: 2 + - uid: 32444 components: - type: Transform pos: 50.5,2.5 parent: 2 - - uid: 25071 + - uid: 32445 components: - type: Transform pos: 51.5,2.5 parent: 2 - - uid: 25623 + - uid: 32446 components: - type: Transform pos: 77.5,0.5 parent: 2 - - uid: 25631 + - uid: 32447 components: - type: Transform pos: 81.5,0.5 parent: 2 - - uid: 25632 + - uid: 32448 components: - type: Transform pos: 85.5,0.5 parent: 2 - - uid: 27591 + - uid: 32449 components: - type: Transform rot: -1.5707963267948966 rad pos: 89.5,-10.5 parent: 2 - - uid: 27629 + - uid: 32450 components: - type: Transform pos: 85.5,-9.5 parent: 2 - - uid: 27630 + - uid: 32451 components: - type: Transform pos: 83.5,-10.5 parent: 2 - - uid: 27631 + - uid: 32452 components: - type: Transform rot: -1.5707963267948966 rad pos: 88.5,-10.5 parent: 2 - - uid: 27834 + - uid: 32453 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-3.5 parent: 2 - - uid: 27835 + - uid: 32454 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-2.5 parent: 2 - - uid: 27899 + - uid: 32455 components: - type: Transform rot: -1.5707963267948966 rad pos: 89.5,-9.5 parent: 2 - - uid: 29438 + - uid: 32456 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-34.5 parent: 2 - - uid: 29439 + - uid: 32457 components: - type: Transform pos: 46.5,20.5 parent: 2 - - uid: 29440 + - uid: 32458 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-34.5 parent: 2 - - uid: 29441 + - uid: 32459 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-30.5 parent: 2 - - uid: 29442 + - uid: 32460 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-31.5 parent: 2 - - uid: 29443 + - uid: 32461 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-32.5 parent: 2 - - uid: 29444 + - uid: 32462 components: - type: Transform pos: -66.5,-76.5 parent: 2 - - uid: 29445 + - uid: 32463 components: - type: Transform pos: -45.5,-10.5 parent: 2 - - uid: 29446 + - uid: 32464 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-34.5 parent: 2 - - uid: 29447 + - uid: 32465 components: - type: Transform rot: 1.5707963267948966 rad pos: 104.5,-58.5 parent: 2 - - uid: 29449 + - uid: 32466 components: - type: Transform pos: 32.5,11.5 parent: 2 - - uid: 29450 + - uid: 32467 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-33.5 parent: 2 - - uid: 29451 + - uid: 32468 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-1.5 parent: 2 - - uid: 29452 + - uid: 32469 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-27.5 parent: 2 - - uid: 29453 + - uid: 32470 components: - type: Transform pos: 26.5,5.5 parent: 2 - - uid: 29454 + - uid: 32471 components: - type: Transform pos: -66.5,-75.5 parent: 2 - - uid: 29455 + - uid: 32472 components: - type: Transform pos: -63.5,-72.5 parent: 2 - - uid: 29456 + - uid: 32473 components: - type: Transform pos: -45.5,-11.5 parent: 2 - - uid: 29457 + - uid: 32474 components: - type: Transform pos: 32.5,10.5 parent: 2 - - uid: 29458 + - uid: 32475 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-13.5 parent: 2 - - uid: 29459 + - uid: 32476 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,15.5 parent: 2 - - uid: 29460 + - uid: 32477 components: - type: Transform pos: -62.5,-71.5 parent: 2 - - uid: 29461 + - uid: 32478 components: - type: Transform pos: -62.5,-72.5 parent: 2 - - uid: 29462 + - uid: 32479 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-49.5 parent: 2 - - uid: 29463 + - uid: 32480 components: - type: Transform pos: 74.5,-50.5 parent: 2 - - uid: 29464 + - uid: 32481 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-27.5 parent: 2 - - uid: 29465 + - uid: 32482 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-47.5 parent: 2 - - uid: 29466 + - uid: 32483 components: - type: Transform pos: 92.5,-48.5 parent: 2 - - uid: 29467 + - uid: 32484 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-37.5 parent: 2 - - uid: 29468 + - uid: 32485 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-47.5 parent: 2 - - uid: 29469 + - uid: 32486 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-48.5 parent: 2 - - uid: 29470 + - uid: 32487 components: - type: Transform pos: -3.5,7.5 parent: 2 - - uid: 29471 + - uid: 32488 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,1.5 parent: 2 - - uid: 29474 + - uid: 32489 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-30.5 parent: 2 - - uid: 29478 + - uid: 32490 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-0.5 parent: 2 - - uid: 29480 + - uid: 32491 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,1.5 parent: 2 - - uid: 29481 + - uid: 32492 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-53.5 parent: 2 - - uid: 29482 + - uid: 32493 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-52.5 parent: 2 - - uid: 29483 + - uid: 32494 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-54.5 parent: 2 - - uid: 29484 + - uid: 32495 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-51.5 parent: 2 - - uid: 29485 + - uid: 32496 components: - type: Transform pos: -5.5,2.5 parent: 2 - - uid: 29486 + - uid: 32497 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-82.5 parent: 2 - - uid: 29487 + - uid: 32498 components: - type: Transform pos: 9.5,-83.5 parent: 2 - - uid: 29488 + - uid: 32499 components: - type: Transform pos: -1.5,-79.5 parent: 2 - - uid: 29489 + - uid: 32500 components: - type: Transform pos: -8.5,-77.5 parent: 2 - - uid: 29490 + - uid: 32501 components: - type: Transform pos: -41.5,-47.5 parent: 2 - - uid: 29491 + - uid: 32502 components: - type: Transform pos: -65.5,-39.5 parent: 2 - - uid: 29492 + - uid: 32503 components: - type: Transform pos: -65.5,-38.5 parent: 2 - - uid: 29493 + - uid: 32504 components: - type: Transform pos: -68.5,-39.5 parent: 2 - - uid: 29494 + - uid: 32505 components: - type: Transform pos: -46.5,4.5 parent: 2 - - uid: 29495 + - uid: 32506 components: - type: Transform pos: -7.5,6.5 parent: 2 - - uid: 29496 + - uid: 32507 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,19.5 parent: 2 - - uid: 29497 + - uid: 32508 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,19.5 parent: 2 - - uid: 29498 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,19.5 - parent: 2 - - uid: 29499 + - uid: 32509 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,19.5 parent: 2 - - uid: 29500 + - uid: 32510 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,19.5 parent: 2 - - uid: 29501 + - uid: 32511 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,19.5 parent: 2 - - uid: 29502 + - uid: 32512 components: - type: Transform pos: 17.5,5.5 parent: 2 - - uid: 29503 + - uid: 32513 components: - type: Transform pos: 16.5,5.5 parent: 2 - - uid: 29504 + - uid: 32514 components: - type: Transform pos: -66.5,-40.5 parent: 2 - - uid: 29506 + - uid: 32515 components: - type: Transform pos: -34.5,-40.5 parent: 2 - - uid: 29509 + - uid: 32516 components: - type: Transform pos: -48.5,-18.5 parent: 2 - - uid: 29510 + - uid: 32517 components: - type: Transform pos: -49.5,-18.5 parent: 2 - - uid: 29511 + - uid: 32518 components: - type: Transform pos: -49.5,-19.5 parent: 2 - - uid: 29512 + - uid: 32519 components: - type: Transform pos: -49.5,-20.5 parent: 2 - - uid: 29513 + - uid: 32520 components: - type: Transform pos: -49.5,-24.5 parent: 2 - - uid: 29514 - components: - - type: Transform - pos: -49.5,-23.5 - parent: 2 - - uid: 29515 + - uid: 32521 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-25.5 parent: 2 - - uid: 29516 + - uid: 32522 components: - type: Transform pos: -45.5,4.5 parent: 2 - - uid: 29517 + - uid: 32523 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-17.5 parent: 2 - - uid: 29518 + - uid: 32524 components: - type: Transform pos: -38.5,-5.5 parent: 2 - - uid: 29519 + - uid: 32525 components: - type: Transform pos: -37.5,-5.5 parent: 2 - - uid: 29520 + - uid: 32526 components: - type: Transform pos: -44.5,4.5 parent: 2 - - uid: 29521 + - uid: 32527 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-13.5 parent: 2 - - uid: 29522 + - uid: 32528 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-42.5 parent: 2 - - uid: 29523 + - uid: 32529 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-41.5 parent: 2 - - uid: 29524 + - uid: 32530 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-6.5 parent: 2 - - uid: 29525 + - uid: 32531 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-2.5 parent: 2 - - uid: 29526 + - uid: 32532 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,0.5 parent: 2 - - uid: 29527 + - uid: 32533 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-3.5 parent: 2 - - uid: 29528 + - uid: 32534 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-15.5 parent: 2 - - uid: 29529 + - uid: 32535 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-15.5 parent: 2 - - uid: 29530 + - uid: 32536 components: - type: Transform pos: 61.5,-38.5 parent: 2 - - uid: 29531 + - uid: 32537 components: - type: Transform pos: 61.5,-37.5 parent: 2 - - uid: 29532 + - uid: 32538 components: - type: Transform pos: 76.5,-29.5 parent: 2 - - uid: 29533 + - uid: 32539 components: - type: Transform pos: 73.5,-26.5 parent: 2 - - uid: 29534 + - uid: 32540 components: - type: Transform pos: 74.5,-26.5 parent: 2 - - uid: 29535 + - uid: 32541 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-29.5 parent: 2 - - uid: 29536 + - uid: 32542 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-26.5 parent: 2 - - uid: 29537 + - uid: 32543 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-27.5 parent: 2 - - uid: 29538 + - uid: 32544 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-28.5 parent: 2 - - uid: 29539 + - uid: 32545 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-29.5 parent: 2 - - uid: 29540 + - uid: 32546 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-24.5 parent: 2 - - uid: 29541 + - uid: 32547 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,-24.5 parent: 2 - - uid: 29542 + - uid: 32548 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-24.5 parent: 2 - - uid: 29543 + - uid: 32549 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-25.5 parent: 2 - - uid: 29544 + - uid: 32550 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-28.5 parent: 2 - - uid: 29545 + - uid: 32551 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-29.5 parent: 2 - - uid: 29546 + - uid: 32552 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-29.5 parent: 2 - - uid: 29547 + - uid: 32553 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-29.5 parent: 2 - - uid: 29548 + - uid: 32554 components: - type: Transform pos: 50.5,-52.5 parent: 2 - - uid: 29549 + - uid: 32555 components: - type: Transform pos: 51.5,-52.5 parent: 2 - - uid: 29550 + - uid: 32556 components: - type: Transform pos: 51.5,-53.5 parent: 2 - - uid: 29551 + - uid: 32557 components: - type: Transform pos: 51.5,-51.5 parent: 2 - - uid: 29552 + - uid: 32558 components: - type: Transform pos: 50.5,-53.5 parent: 2 - - uid: 29553 + - uid: 32559 components: - type: Transform pos: 50.5,-51.5 parent: 2 - - uid: 29554 + - uid: 32560 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-84.5 parent: 2 - - uid: 29555 + - uid: 32561 components: - type: Transform pos: 9.5,-84.5 parent: 2 - - uid: 29556 + - uid: 32562 components: - type: Transform pos: -2.5,-80.5 parent: 2 - - uid: 29557 + - uid: 32563 components: - type: Transform pos: 11.5,-78.5 parent: 2 - - uid: 29558 + - uid: 32564 components: - type: Transform pos: 12.5,-78.5 parent: 2 - - uid: 29559 + - uid: 32565 components: - type: Transform pos: 12.5,-79.5 parent: 2 - - uid: 29560 + - uid: 32566 components: - type: Transform pos: 12.5,-80.5 parent: 2 - - uid: 29561 + - uid: 32567 components: - type: Transform pos: -7.5,-96.5 parent: 2 - - uid: 29562 + - uid: 32568 components: - type: Transform pos: 7.5,-86.5 parent: 2 - - uid: 29563 + - uid: 32569 components: - type: Transform pos: 8.5,-86.5 parent: 2 - - uid: 29564 + - uid: 32570 components: - type: Transform pos: -8.5,-96.5 parent: 2 - - uid: 29565 + - uid: 32571 components: - type: Transform pos: -9.5,-96.5 parent: 2 - - uid: 29566 + - uid: 32572 components: - type: Transform pos: -9.5,-95.5 parent: 2 - - uid: 29567 + - uid: 32573 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-81.5 parent: 2 - - uid: 29568 + - uid: 32574 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-81.5 parent: 2 - - uid: 29569 + - uid: 32575 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-80.5 parent: 2 - - uid: 29570 + - uid: 32576 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-89.5 parent: 2 - - uid: 29571 + - uid: 32577 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-88.5 parent: 2 - - uid: 29572 + - uid: 32578 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-84.5 parent: 2 - - uid: 29573 + - uid: 32579 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-83.5 parent: 2 - - uid: 29574 + - uid: 32580 components: - type: Transform pos: -4.5,-80.5 parent: 2 - - uid: 29583 + - uid: 32581 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-84.5 parent: 2 - - uid: 29584 + - uid: 32582 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-81.5 parent: 2 - - uid: 29585 + - uid: 32583 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-81.5 parent: 2 - - uid: 29586 + - uid: 32584 components: - type: Transform pos: -66.5,-45.5 parent: 2 - - uid: 29587 + - uid: 32585 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-53.5 parent: 2 - - uid: 29588 + - uid: 32586 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-51.5 parent: 2 - - uid: 29592 + - uid: 32587 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-73.5 parent: 2 - - uid: 29593 + - uid: 32588 components: - type: Transform pos: 53.5,-84.5 parent: 2 - - uid: 29594 + - uid: 32589 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-54.5 parent: 2 - - uid: 29595 + - uid: 32590 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-87.5 parent: 2 - - uid: 29596 + - uid: 32591 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,19.5 parent: 2 - - uid: 29597 + - uid: 32592 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-83.5 parent: 2 - - uid: 29598 + - uid: 32593 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-84.5 parent: 2 - - uid: 29599 + - uid: 32594 components: - type: Transform pos: 87.5,-38.5 parent: 2 - - uid: 29600 + - uid: 32595 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,-42.5 parent: 2 - - uid: 29601 + - uid: 32596 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-42.5 parent: 2 - - uid: 29602 + - uid: 32597 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,-20.5 parent: 2 - - uid: 29603 + - uid: 32598 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-20.5 parent: 2 - - uid: 29604 + - uid: 32599 components: - type: Transform pos: 87.5,-24.5 parent: 2 - - uid: 29605 + - uid: 32600 components: - type: Transform pos: -28.5,-78.5 parent: 2 - - uid: 29606 + - uid: 32601 components: - type: Transform pos: -27.5,-78.5 parent: 2 - - uid: 29607 + - uid: 32602 components: - type: Transform pos: -27.5,-77.5 parent: 2 - - uid: 29608 + - uid: 32603 components: - type: Transform pos: -27.5,-76.5 parent: 2 - - uid: 29609 + - uid: 32604 components: - type: Transform pos: -36.5,-45.5 parent: 2 - - uid: 29610 + - uid: 32605 components: - type: Transform pos: -2.5,-90.5 parent: 2 - - uid: 29617 + - uid: 32606 components: - type: Transform pos: -47.5,-80.5 parent: 2 - - uid: 29618 + - uid: 32607 components: - type: Transform pos: -39.5,-61.5 parent: 2 - - uid: 29619 + - uid: 32608 components: - type: Transform pos: -40.5,-61.5 parent: 2 - - uid: 29620 + - uid: 32609 components: - type: Transform pos: -40.5,-62.5 parent: 2 - - uid: 29621 + - uid: 32610 components: - type: Transform pos: 50.5,-46.5 parent: 2 - - uid: 29622 + - uid: 32611 components: - type: Transform pos: 51.5,-46.5 parent: 2 - - uid: 29623 + - uid: 32612 components: - type: Transform pos: 51.5,-47.5 parent: 2 - - uid: 29624 + - uid: 32613 components: - type: Transform pos: 46.5,-48.5 parent: 2 - - uid: 29625 + - uid: 32614 components: - type: Transform pos: 39.5,-52.5 parent: 2 - - uid: 29626 + - uid: 32615 components: - type: Transform pos: 38.5,-52.5 parent: 2 - - uid: 29627 + - uid: 32616 components: - type: Transform pos: -66.5,-74.5 parent: 2 - - uid: 29628 + - uid: 32617 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-71.5 parent: 2 - - uid: 29629 + - uid: 32618 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-71.5 parent: 2 - type: Label - - uid: 29630 + - uid: 32619 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-71.5 parent: 2 - type: Label - - uid: 29631 + - uid: 32620 components: - type: Transform rot: 3.141592653589793 rad pos: 109.5,-20.5 parent: 2 - - uid: 29632 + - uid: 32621 components: - type: Transform rot: 3.141592653589793 rad pos: 109.5,-21.5 parent: 2 - - uid: 29633 + - uid: 32622 components: - type: Transform rot: 3.141592653589793 rad pos: 109.5,-22.5 parent: 2 - - uid: 29634 + - uid: 32623 components: - type: Transform rot: 3.141592653589793 rad pos: 108.5,-22.5 parent: 2 - - uid: 29635 + - uid: 32624 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-63.5 parent: 2 - - uid: 29636 + - uid: 32625 components: - type: Transform pos: -40.5,-65.5 parent: 2 - - uid: 29638 + - uid: 32626 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-42.5 parent: 2 - - uid: 29646 + - uid: 32627 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-50.5 parent: 2 - - uid: 29649 + - uid: 32628 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-64.5 parent: 2 - - uid: 29651 + - uid: 32629 components: - type: Transform pos: -37.5,-93.5 parent: 2 - - uid: 29652 + - uid: 32630 components: - type: Transform pos: -23.5,10.5 parent: 2 - - uid: 29653 + - uid: 32631 components: - type: Transform pos: -24.5,10.5 parent: 2 - - uid: 29654 + - uid: 32632 components: - type: Transform pos: -24.5,11.5 parent: 2 - - uid: 29655 + - uid: 32633 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-31.5 parent: 2 - - uid: 29656 + - uid: 32634 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-15.5 parent: 2 - - uid: 29657 + - uid: 32635 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-18.5 parent: 2 - - uid: 29658 + - uid: 32636 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-18.5 parent: 2 - - uid: 29660 + - uid: 32637 components: - type: Transform pos: 17.5,-103.5 parent: 2 - - uid: 29661 + - uid: 32638 components: - type: Transform pos: 16.5,-103.5 parent: 2 - - uid: 29662 + - uid: 32639 components: - type: Transform pos: 15.5,-103.5 parent: 2 - - uid: 29663 + - uid: 32640 components: - type: Transform pos: 5.5,-102.5 parent: 2 - - uid: 29664 + - uid: 32641 components: - type: Transform pos: 5.5,-103.5 parent: 2 - - uid: 29665 + - uid: 32642 components: - type: Transform pos: 6.5,-103.5 parent: 2 - - uid: 29667 + - uid: 32643 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,13.5 parent: 2 - - uid: 29668 + - uid: 32644 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,12.5 parent: 2 - - uid: 29669 + - uid: 32645 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,13.5 parent: 2 - - uid: 29670 + - uid: 32646 components: - type: Transform pos: 24.5,-81.5 parent: 2 - - uid: 29671 + - uid: 32647 components: - type: Transform pos: 28.5,-81.5 parent: 2 - - uid: 29672 + - uid: 32648 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-34.5 parent: 2 - - uid: 29673 + - uid: 32649 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-52.5 parent: 2 - - uid: 29681 + - uid: 32650 components: - type: Transform pos: -6.5,-88.5 parent: 2 - - uid: 29682 + - uid: 32651 components: - type: Transform pos: -53.5,-29.5 parent: 2 - - uid: 29683 + - uid: 32652 components: - type: Transform pos: -39.5,-57.5 parent: 2 - - uid: 29684 + - uid: 32653 components: - type: Transform pos: 81.5,-20.5 parent: 2 - - uid: 29685 + - uid: 32654 components: - type: Transform pos: 83.5,-42.5 parent: 2 - - uid: 29686 + - uid: 32655 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-10.5 parent: 2 - - uid: 29691 + - uid: 32656 components: - type: Transform pos: 74.5,-49.5 parent: 2 - - uid: 29692 + - uid: 32657 components: - type: Transform pos: 76.5,-50.5 parent: 2 - - uid: 29694 + - uid: 32658 components: - type: Transform pos: -63.5,-71.5 parent: 2 - - uid: 29695 + - uid: 32659 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-50.5 parent: 2 - - uid: 29696 + - uid: 32660 components: - type: Transform rot: 1.5707963267948966 rad pos: 106.5,-59.5 parent: 2 - - uid: 29697 + - uid: 32661 components: - type: Transform pos: 95.5,-48.5 parent: 2 - - uid: 29698 + - uid: 32662 components: - type: Transform pos: 96.5,-48.5 parent: 2 - - uid: 29699 + - uid: 32663 components: - type: Transform rot: 1.5707963267948966 rad pos: 104.5,-59.5 parent: 2 - - uid: 29701 + - uid: 32664 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,15.5 parent: 2 - - uid: 29703 + - uid: 32665 components: - type: Transform pos: 46.5,-47.5 parent: 2 - - uid: 29704 + - uid: 32666 components: - type: Transform pos: -34.5,-98.5 parent: 2 - - uid: 29707 + - uid: 32667 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-0.5 parent: 2 - - uid: 29708 + - uid: 32668 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-1.5 parent: 2 - - uid: 29709 + - uid: 32669 components: - type: Transform pos: -59.5,4.5 parent: 2 - - uid: 29711 + - uid: 32670 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-5.5 parent: 2 - - uid: 29712 + - uid: 32671 components: - type: Transform rot: 3.141592653589793 rad pos: -93.5,0.5 parent: 2 - - uid: 29713 + - uid: 32672 components: - type: Transform pos: -85.5,-1.5 parent: 2 - - uid: 29714 + - uid: 32673 components: - type: Transform pos: -81.5,3.5 parent: 2 - - uid: 29715 + - uid: 32674 components: - type: Transform pos: -81.5,2.5 parent: 2 - - uid: 29716 + - uid: 32675 components: - type: Transform pos: -86.5,-3.5 parent: 2 - - uid: 29717 + - uid: 32676 components: - type: Transform pos: -85.5,-3.5 parent: 2 - - uid: 29718 + - uid: 32677 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-49.5 parent: 2 - - uid: 29719 + - uid: 32678 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-50.5 parent: 2 - - uid: 29720 + - uid: 32679 components: - type: Transform pos: -26.5,-92.5 parent: 2 - - uid: 29721 + - uid: 32680 components: - type: Transform pos: -26.5,-93.5 parent: 2 - - uid: 29722 + - uid: 32681 components: - type: Transform pos: -26.5,-94.5 parent: 2 - - uid: 29723 + - uid: 32682 components: - type: Transform pos: 39.5,18.5 parent: 2 - - uid: 29724 + - uid: 32683 components: - type: Transform pos: 46.5,21.5 parent: 2 - - uid: 29725 + - uid: 32684 components: - type: Transform pos: -37.5,-4.5 parent: 2 - - uid: 29726 + - uid: 32685 components: - type: Transform pos: -61.5,-50.5 parent: 2 - - uid: 29727 + - uid: 32686 components: - type: Transform pos: -37.5,-3.5 parent: 2 - - uid: 29728 + - uid: 32687 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-33.5 parent: 2 - - uid: 29729 + - uid: 32688 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-32.5 parent: 2 - - uid: 31078 + - uid: 32689 components: - type: Transform pos: 45.5,-7.5 parent: 2 - - uid: 32156 + - uid: 32690 components: - type: Transform pos: -18.5,-54.5 parent: 2 - - uid: 32161 + - uid: 32691 components: - type: Transform pos: -17.5,-54.5 parent: 2 - - uid: 32162 + - uid: 32692 components: - type: Transform pos: -20.5,-50.5 parent: 2 - - uid: 32300 + - uid: 32693 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-52.5 parent: 2 - - uid: 32301 + - uid: 32694 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-51.5 parent: 2 - - uid: 32302 + - uid: 32695 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-50.5 parent: 2 - - uid: 33613 + - uid: 32696 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,3.5 parent: 2 - - uid: 33614 + - uid: 32697 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,3.5 parent: 2 - - uid: 33625 + - uid: 32698 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-26.5 parent: 2 - - uid: 33628 + - uid: 32699 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,3.5 parent: 2 - - uid: 33782 + - uid: 32700 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,4.5 parent: 2 - - uid: 33817 + - uid: 32701 components: - type: Transform pos: 13.5,-46.5 parent: 2 - - uid: 33819 + - uid: 32702 components: - type: Transform pos: 5.5,-46.5 parent: 2 - - uid: 33820 + - uid: 32703 components: - type: Transform pos: 5.5,-48.5 parent: 2 - - uid: 33821 + - uid: 32704 components: - type: Transform pos: 6.5,-48.5 parent: 2 - - uid: 33822 + - uid: 32705 components: - type: Transform pos: 4.5,-46.5 parent: 2 - - uid: 34260 + - uid: 32706 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-29.5 parent: 2 - - uid: 34370 + - uid: 32707 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-70.5 parent: 2 - - uid: 34372 + - uid: 32708 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-71.5 parent: 2 - - uid: 34373 + - uid: 32709 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-72.5 parent: 2 - - uid: 34374 + - uid: 32710 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-71.5 parent: 2 - - uid: 34385 + - uid: 32711 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-3.5 parent: 2 - - uid: 34909 + - uid: 32712 components: - type: Transform pos: 52.5,23.5 parent: 2 - - uid: 34912 + - uid: 32713 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,22.5 parent: 2 - - uid: 34913 + - uid: 32714 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,23.5 parent: 2 - - uid: 36054 + - uid: 32715 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-11.5 parent: 2 - - uid: 36057 + - uid: 32716 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-7.5 parent: 2 - - uid: 37517 + - uid: 32717 components: - type: Transform pos: 51.5,-9.5 parent: 2 - - uid: 37518 + - uid: 32718 components: - type: Transform pos: 51.5,-10.5 parent: 2 - - uid: 37520 + - uid: 32719 components: - type: Transform pos: 52.5,-9.5 parent: 2 - - uid: 37521 + - uid: 32720 components: - type: Transform pos: 53.5,-8.5 parent: 2 - - uid: 37522 + - uid: 32721 components: - type: Transform pos: 53.5,-9.5 parent: 2 - - uid: 38474 + - uid: 32722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-27.5 + parent: 2 + - uid: 32723 + components: + - type: Transform + pos: -9.5,13.5 + parent: 2 + - uid: 41421 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-13.5 - parent: 37887 - - uid: 38475 + parent: 40828 + - uid: 41422 components: - type: Transform pos: -5.5,-10.5 - parent: 37887 - - uid: 38942 + parent: 40828 + - uid: 41888 components: - type: Transform pos: 4.5,-4.5 - parent: 38722 - - uid: 41249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-27.5 - parent: 2 + parent: 41669 - proto: TableBrass entities: - - uid: 26595 + - uid: 32724 components: - type: Transform rot: 1.5707963267948966 rad @@ -224932,257 +229497,269 @@ entities: parent: 2 - proto: TableCarpet entities: - - uid: 29732 + - uid: 32725 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-74.5 parent: 2 - - uid: 29733 + - uid: 32726 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,-75.5 parent: 2 - - uid: 29734 + - uid: 32727 components: - type: Transform pos: 24.5,7.5 parent: 2 - - uid: 29735 + - uid: 32728 components: - type: Transform pos: 36.5,3.5 parent: 2 - - uid: 29736 + - uid: 32729 components: - type: Transform pos: 24.5,6.5 parent: 2 - - uid: 29737 + - uid: 32730 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-49.5 parent: 2 - - uid: 29740 + - uid: 32731 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,13.5 parent: 2 - - uid: 29741 + - uid: 32732 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,12.5 parent: 2 - - uid: 29742 + - uid: 32733 components: - type: Transform pos: -67.5,-9.5 parent: 2 - - uid: 29743 + - uid: 32734 components: - type: Transform pos: -66.5,-7.5 parent: 2 - - uid: 29744 + - uid: 32735 components: - type: Transform pos: -66.5,-8.5 parent: 2 - - uid: 29745 + - uid: 32736 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-49.5 parent: 2 - - uid: 29747 + - uid: 32737 components: - type: Transform pos: 36.5,5.5 parent: 2 - - uid: 29748 + - uid: 32738 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-47.5 parent: 2 - - uid: 39096 + - uid: 32739 components: - type: Transform pos: 0.5,-41.5 parent: 2 + - uid: 32740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,15.5 + parent: 2 + - uid: 32741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,15.5 + parent: 2 - proto: TableCounterMetal entities: - - uid: 24313 + - uid: 32742 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-11.5 parent: 2 - - uid: 24343 + - uid: 32743 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-11.5 parent: 2 - - uid: 24345 + - uid: 32744 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-11.5 parent: 2 - - uid: 24356 + - uid: 32745 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-11.5 parent: 2 - - uid: 24357 + - uid: 32746 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-11.5 parent: 2 - - uid: 24584 + - uid: 32747 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-19.5 parent: 2 - - uid: 24601 + - uid: 32748 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-19.5 parent: 2 - - uid: 24606 + - uid: 32749 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-19.5 parent: 2 - - uid: 24611 + - uid: 32750 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-19.5 parent: 2 - - uid: 25706 + - uid: 32751 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-32.5 parent: 2 - - uid: 26429 + - uid: 32752 components: - type: Transform pos: 12.5,-18.5 parent: 2 - - uid: 26430 + - uid: 32753 components: - type: Transform pos: 8.5,-18.5 parent: 2 - - uid: 26431 + - uid: 32754 components: - type: Transform pos: 8.5,-16.5 parent: 2 - - uid: 26432 + - uid: 32755 components: - type: Transform pos: 12.5,-16.5 parent: 2 - - uid: 26505 + - uid: 32756 components: - type: Transform pos: 12.5,-22.5 parent: 2 - - uid: 26506 + - uid: 32757 components: - type: Transform pos: 8.5,-22.5 parent: 2 - - uid: 26548 + - uid: 32758 components: - type: Transform pos: 8.5,-24.5 parent: 2 - - uid: 26549 + - uid: 32759 components: - type: Transform pos: 12.5,-24.5 parent: 2 - - uid: 28852 + - uid: 32760 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-22.5 parent: 2 - - uid: 28854 + - uid: 32761 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-18.5 parent: 2 - - uid: 28858 + - uid: 32762 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-24.5 parent: 2 - - uid: 28863 + - uid: 32763 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-16.5 parent: 2 - - uid: 29751 + - uid: 32764 components: - type: Transform pos: -54.5,-68.5 parent: 2 - - uid: 29752 + - uid: 32765 components: - type: Transform pos: -55.5,-68.5 parent: 2 - - uid: 29753 + - uid: 32766 components: - type: Transform pos: -67.5,-78.5 parent: 2 - - uid: 29754 + - uid: 32767 components: - type: Transform pos: -66.5,-78.5 parent: 2 - - uid: 29755 + - uid: 32768 components: - type: Transform pos: -65.5,-78.5 parent: 2 - - uid: 29756 + - uid: 32769 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-78.5 parent: 2 - - uid: 30710 + - uid: 32770 components: - type: Transform pos: -11.5,-36.5 parent: 2 - - uid: 34211 + - uid: 32771 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-34.5 parent: 2 - - uid: 34212 + - uid: 32772 components: - type: Transform rot: -1.5707963267948966 rad @@ -225190,3090 +229767,3099 @@ entities: parent: 2 - proto: TableCounterWood entities: - - uid: 27602 + - uid: 32773 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-2.5 parent: 2 - - uid: 29757 + - uid: 32774 components: - type: Transform pos: 28.5,1.5 parent: 2 - - uid: 29758 + - uid: 32775 components: - type: Transform pos: 28.5,2.5 parent: 2 - - uid: 29759 + - uid: 32776 components: - type: Transform pos: -23.5,-100.5 parent: 2 - - uid: 29760 + - uid: 32777 components: - type: Transform pos: 28.5,3.5 parent: 2 - - uid: 29761 + - uid: 32778 components: - type: Transform pos: 28.5,4.5 parent: 2 - - uid: 29762 + - uid: 32779 components: - type: Transform pos: -23.5,-99.5 parent: 2 - - uid: 29763 + - uid: 32780 components: - type: Transform pos: -24.5,-99.5 parent: 2 - - uid: 29764 + - uid: 32781 components: - type: Transform pos: -23.5,-103.5 parent: 2 - - uid: 29765 + - uid: 32782 components: - type: Transform pos: -23.5,-101.5 parent: 2 - - uid: 29766 + - uid: 32783 components: - type: Transform pos: -28.5,-102.5 parent: 2 - - uid: 29767 + - uid: 32784 components: - type: Transform pos: -25.5,-99.5 parent: 2 - - uid: 29768 + - uid: 32785 components: - type: Transform pos: -28.5,-103.5 parent: 2 - - uid: 29769 + - uid: 32786 components: - type: Transform pos: -26.5,-99.5 parent: 2 - - uid: 29770 + - uid: 32787 components: - type: Transform pos: -28.5,-101.5 parent: 2 - - uid: 29771 + - uid: 32788 components: - type: Transform pos: -23.5,-102.5 parent: 2 - proto: TableFancyBlack entities: - - uid: 23988 + - uid: 32789 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-118.5 parent: 2 - - uid: 36504 + - uid: 32790 components: - type: Transform pos: -31.5,-118.5 parent: 2 - proto: TableFancyGreen entities: - - uid: 39476 + - uid: 32791 components: - type: Transform pos: -2.5,0.5 parent: 2 - - uid: 39477 + - uid: 32792 components: - type: Transform pos: -1.5,0.5 parent: 2 +- proto: TableFancyOrange + entities: + - uid: 32793 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 - proto: TableFancyPink entities: - - uid: 39478 + - uid: 32794 components: - type: Transform pos: 3.5,0.5 parent: 2 - - uid: 39479 + - uid: 32795 components: - type: Transform pos: 2.5,0.5 parent: 2 - proto: TableFrame entities: - - uid: 29772 + - uid: 32796 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-48.5 parent: 2 - - uid: 29773 + - uid: 32797 components: - type: Transform pos: -53.5,0.5 parent: 2 - - uid: 29774 + - uid: 32798 components: - type: Transform pos: -22.5,10.5 parent: 2 - - uid: 29775 + - uid: 32799 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-31.5 parent: 2 - - uid: 29776 + - uid: 32800 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-31.5 parent: 2 - - uid: 29777 + - uid: 32801 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-32.5 parent: 2 - - uid: 29778 + - uid: 32802 components: - type: Transform pos: -66.5,-9.5 parent: 2 - - uid: 29779 + - uid: 32803 components: - type: Transform pos: -57.5,-9.5 parent: 2 - - uid: 29780 + - uid: 32804 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-47.5 parent: 2 - - uid: 29781 + - uid: 32805 components: - type: Transform pos: 94.5,-48.5 parent: 2 - - uid: 29782 + - uid: 32806 components: - type: Transform pos: 93.5,-48.5 parent: 2 - - uid: 29783 + - uid: 32807 components: - type: Transform rot: 1.5707963267948966 rad pos: 105.5,-59.5 parent: 2 - - uid: 29784 + - uid: 32808 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-107.5 parent: 2 - - uid: 29785 + - uid: 32809 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-106.5 parent: 2 - - uid: 29786 + - uid: 32810 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-109.5 parent: 2 - - uid: 29788 + - uid: 32811 components: - type: Transform pos: -86.5,-1.5 parent: 2 - - uid: 39097 + - uid: 32812 components: - type: Transform pos: 2.5,-41.5 parent: 2 - - uid: 39098 + - uid: 32813 components: - type: Transform pos: 1.5,-41.5 parent: 2 - proto: TableGlass entities: - - uid: 7106 + - uid: 32814 components: - type: Transform pos: -59.5,-23.5 parent: 2 - - uid: 9690 + - uid: 32815 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,6.5 parent: 2 - - uid: 13377 + - uid: 32816 components: - type: Transform pos: 54.5,-11.5 parent: 2 - - uid: 15121 + - uid: 32817 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-41.5 parent: 2 - - uid: 15551 + - uid: 32818 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,6.5 parent: 2 - - uid: 29789 + - uid: 32819 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,-21.5 parent: 2 - - uid: 29790 + - uid: 32820 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-69.5 parent: 2 - - uid: 29791 + - uid: 32821 components: - type: Transform pos: -20.5,-69.5 parent: 2 - - uid: 29792 + - uid: 32822 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,-69.5 parent: 2 - - uid: 29793 + - uid: 32823 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-69.5 parent: 2 - - uid: 29794 + - uid: 32824 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-1.5 parent: 2 - - uid: 29795 + - uid: 32825 components: - type: Transform pos: 30.5,-68.5 parent: 2 - - uid: 29797 + - uid: 32826 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-4.5 parent: 2 - - uid: 29798 + - uid: 32827 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-54.5 parent: 2 - - uid: 29799 + - uid: 32828 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-54.5 parent: 2 - - uid: 29800 + - uid: 32829 components: - type: Transform pos: -40.5,-49.5 parent: 2 - - uid: 29801 + - uid: 32830 components: - type: Transform pos: -39.5,-49.5 parent: 2 - - uid: 29802 + - uid: 32831 components: - type: Transform pos: -38.5,-49.5 parent: 2 - - uid: 29803 + - uid: 32832 components: - type: Transform pos: -38.5,-48.5 parent: 2 - - uid: 29804 + - uid: 32833 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-55.5 parent: 2 - - uid: 29805 + - uid: 32834 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-54.5 parent: 2 - - uid: 30717 + - uid: 32835 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-39.5 parent: 2 - - uid: 30718 + - uid: 32836 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-38.5 parent: 2 - - uid: 34214 + - uid: 32837 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-34.5 parent: 2 - - uid: 34215 + - uid: 32838 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-34.5 parent: 2 - - uid: 34218 + - uid: 32839 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-36.5 parent: 2 - - uid: 34234 + - uid: 32840 components: - type: Transform pos: -6.5,-36.5 parent: 2 - - uid: 35934 + - uid: 32841 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,5.5 parent: 2 - - uid: 37802 + - uid: 32842 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-7.5 parent: 2 - - uid: 38476 + - uid: 41423 components: - type: Transform pos: -2.5,-11.5 - parent: 37887 - - uid: 38477 + parent: 40828 + - uid: 41424 components: - type: Transform pos: -2.5,-12.5 - parent: 37887 - - uid: 38478 + parent: 40828 + - uid: 41425 components: - type: Transform pos: -4.5,-11.5 - parent: 37887 + parent: 40828 - proto: TablePlasmaGlass entities: - - uid: 29806 + - uid: 32843 components: - type: Transform pos: -46.5,-84.5 parent: 2 - - uid: 29807 + - uid: 32844 components: - type: Transform pos: -46.5,-85.5 parent: 2 - proto: TableReinforced entities: - - uid: 2723 + - uid: 32845 components: - type: Transform pos: 54.5,-19.5 parent: 2 - - uid: 2740 + - uid: 32846 components: - type: Transform pos: 59.5,7.5 parent: 2 - - uid: 2813 + - uid: 32847 components: - type: Transform pos: 47.5,-5.5 parent: 2 - - uid: 4828 + - uid: 32848 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-49.5 parent: 2 - - uid: 7088 + - uid: 32849 components: - type: Transform pos: 61.5,8.5 parent: 2 - - uid: 7630 + - uid: 32850 components: - type: Transform pos: 60.5,5.5 parent: 2 - - uid: 7787 + - uid: 32851 components: - type: Transform pos: 58.5,-19.5 parent: 2 - - uid: 7798 + - uid: 32852 components: - type: Transform pos: 61.5,11.5 parent: 2 - - uid: 8674 + - uid: 32853 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-49.5 parent: 2 - - uid: 9357 + - uid: 32854 components: - type: Transform pos: 49.5,13.5 parent: 2 - - uid: 9756 + - uid: 32855 components: - type: Transform pos: 51.5,-5.5 parent: 2 - - uid: 9932 + - uid: 32856 components: - type: Transform pos: 49.5,-16.5 parent: 2 - - uid: 11763 + - uid: 32857 components: - type: Transform pos: 61.5,10.5 parent: 2 - - uid: 11764 + - uid: 32858 components: - type: Transform pos: 61.5,9.5 parent: 2 - - uid: 14306 + - uid: 32859 components: - type: Transform pos: -20.5,-22.5 parent: 2 - - uid: 14528 + - uid: 32860 components: - type: Transform pos: -20.5,-21.5 parent: 2 - - uid: 14838 + - uid: 32861 components: - type: Transform pos: 59.5,5.5 parent: 2 - - uid: 14940 + - uid: 32862 components: - type: Transform pos: -17.5,-21.5 parent: 2 - - uid: 15093 + - uid: 32863 components: - type: Transform pos: 52.5,-5.5 parent: 2 - - uid: 15302 + - uid: 32864 components: - type: Transform pos: 46.5,-23.5 parent: 2 - - uid: 21303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,2.5 - parent: 21045 - - uid: 21304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,2.5 - parent: 21045 - - uid: 23712 + - uid: 32865 components: - type: Transform pos: 50.5,13.5 parent: 2 - - uid: 24156 + - uid: 32866 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,14.5 parent: 2 - - uid: 24828 + - uid: 32867 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,16.5 parent: 2 - - uid: 24876 + - uid: 32868 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,14.5 parent: 2 - - uid: 27121 + - uid: 32869 components: - type: Transform pos: -6.5,-8.5 parent: 2 - - uid: 28457 + - uid: 32870 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-15.5 parent: 2 - - uid: 28554 + - uid: 32871 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-17.5 parent: 2 - - uid: 28624 + - uid: 32872 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-17.5 parent: 2 - - uid: 28628 + - uid: 32873 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-15.5 parent: 2 - - uid: 28835 + - uid: 32874 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-19.5 parent: 2 - - uid: 28836 + - uid: 32875 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-19.5 parent: 2 - - uid: 29186 + - uid: 32876 components: - type: Transform pos: 51.5,10.5 parent: 2 - - uid: 29230 + - uid: 32877 components: - type: Transform pos: -7.5,-6.5 parent: 2 - - uid: 29232 + - uid: 32878 components: - type: Transform pos: 51.5,9.5 parent: 2 - - uid: 29255 + - uid: 32879 components: - type: Transform pos: -7.5,-5.5 parent: 2 - - uid: 29275 + - uid: 32880 components: - type: Transform pos: -7.5,-8.5 parent: 2 - - uid: 29810 + - uid: 32881 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,12.5 parent: 2 - - uid: 29811 + - uid: 32882 components: - type: Transform pos: 29.5,8.5 parent: 2 - - uid: 29812 + - uid: 32883 components: - type: Transform pos: -57.5,-34.5 parent: 2 - - uid: 29813 + - uid: 32884 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-54.5 parent: 2 - - uid: 29814 + - uid: 32885 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-74.5 parent: 2 - - uid: 29816 + - uid: 32886 components: - type: Transform pos: 30.5,11.5 parent: 2 - - uid: 29817 + - uid: 32887 components: - type: Transform pos: -48.5,-10.5 parent: 2 - - uid: 29818 + - uid: 32888 components: - type: Transform rot: -1.5707963267948966 rad pos: -49.5,-72.5 parent: 2 - - uid: 29819 + - uid: 32889 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-53.5 parent: 2 - - uid: 29820 + - uid: 32890 components: - type: Transform pos: 28.5,14.5 parent: 2 - - uid: 29821 + - uid: 32891 components: - type: Transform pos: -57.5,-40.5 parent: 2 - - uid: 29822 + - uid: 32892 components: - type: Transform pos: -57.5,-33.5 parent: 2 - - uid: 29823 + - uid: 32893 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,-112.5 parent: 2 - - uid: 29824 + - uid: 32894 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-112.5 parent: 2 - - uid: 29825 + - uid: 32895 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-113.5 parent: 2 - - uid: 29826 + - uid: 32896 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-112.5 parent: 2 - - uid: 29829 + - uid: 32897 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,9.5 parent: 2 - - uid: 29830 + - uid: 32898 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-73.5 parent: 2 - - uid: 29831 + - uid: 32899 components: - type: Transform pos: -48.5,-69.5 parent: 2 - - uid: 29832 + - uid: 32900 components: - type: Transform pos: 29.5,11.5 parent: 2 - - uid: 29833 + - uid: 32901 components: - type: Transform pos: 29.5,14.5 parent: 2 - - uid: 29834 + - uid: 32902 components: - type: Transform pos: 29.5,12.5 parent: 2 - - uid: 29835 + - uid: 32903 components: - type: Transform pos: 28.5,12.5 parent: 2 - - uid: 29836 + - uid: 32904 components: - type: Transform pos: -57.5,-32.5 parent: 2 - - uid: 29837 + - uid: 32905 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,12.5 parent: 2 - - uid: 29839 + - uid: 32906 components: - type: Transform pos: 28.5,11.5 parent: 2 - - uid: 29840 + - uid: 32907 components: - type: Transform pos: 30.5,12.5 parent: 2 - - uid: 29841 + - uid: 32908 components: - type: Transform pos: -57.5,-39.5 parent: 2 - - uid: 29842 + - uid: 32909 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-75.5 parent: 2 - - uid: 29843 + - uid: 32910 components: - type: Transform pos: -57.5,-38.5 parent: 2 - - uid: 29845 + - uid: 32911 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-9.5 parent: 2 - - uid: 29846 + - uid: 32912 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-10.5 parent: 2 - - uid: 29847 + - uid: 32913 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-33.5 parent: 2 - - uid: 29848 + - uid: 32914 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-31.5 parent: 2 - - uid: 29849 + - uid: 32915 components: - type: Transform pos: 28.5,7.5 parent: 2 - - uid: 29850 + - uid: 32916 components: - type: Transform pos: 30.5,8.5 parent: 2 - - uid: 29851 + - uid: 32917 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-75.5 parent: 2 - - uid: 29852 + - uid: 32918 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-73.5 parent: 2 - - uid: 29854 + - uid: 32919 components: - type: Transform pos: -49.5,-69.5 parent: 2 - - uid: 29856 + - uid: 32920 components: - type: Transform pos: -55.5,0.5 parent: 2 - - uid: 29859 + - uid: 32921 components: - type: Transform pos: -52.5,0.5 parent: 2 - - uid: 29860 + - uid: 32922 components: - type: Transform pos: -54.5,0.5 parent: 2 - - uid: 29861 + - uid: 32923 components: - type: Transform pos: -55.5,-0.5 parent: 2 - - uid: 29862 + - uid: 32924 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-18.5 parent: 2 - - uid: 29863 + - uid: 32925 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-20.5 parent: 2 - - uid: 29864 + - uid: 32926 components: - type: Transform pos: -51.5,-20.5 parent: 2 - - uid: 29865 + - uid: 32927 components: - type: Transform pos: -51.5,-19.5 parent: 2 - - uid: 29866 + - uid: 32928 components: - type: Transform pos: -55.5,-12.5 parent: 2 - - uid: 29867 + - uid: 32929 components: - type: Transform pos: -55.5,-13.5 parent: 2 - - uid: 29868 + - uid: 32930 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-27.5 parent: 2 - - uid: 29869 + - uid: 32931 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-26.5 parent: 2 - - uid: 29870 + - uid: 32932 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-26.5 parent: 2 - - uid: 29871 + - uid: 32933 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-27.5 parent: 2 - - uid: 29872 + - uid: 32934 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-27.5 parent: 2 - - uid: 29873 + - uid: 32935 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-26.5 parent: 2 - - uid: 29874 + - uid: 32936 components: - type: Transform pos: 41.5,-35.5 parent: 2 - - uid: 29875 + - uid: 32937 components: - type: Transform pos: 40.5,-35.5 parent: 2 - - uid: 29876 + - uid: 32938 components: - type: Transform pos: 36.5,-35.5 parent: 2 - - uid: 29877 + - uid: 32939 components: - type: Transform pos: 35.5,-35.5 parent: 2 - - uid: 29881 + - uid: 32940 components: - type: Transform pos: -32.5,-94.5 parent: 2 - - uid: 29882 + - uid: 32941 components: - type: Transform pos: -33.5,-95.5 parent: 2 - - uid: 29883 + - uid: 32942 components: - type: Transform pos: -31.5,-94.5 parent: 2 - - uid: 29884 + - uid: 32943 components: - type: Transform pos: -31.5,-96.5 parent: 2 - - uid: 29885 + - uid: 32944 components: - type: Transform pos: -33.5,-96.5 parent: 2 - - uid: 29886 + - uid: 32945 components: - type: Transform pos: -33.5,-94.5 parent: 2 - - uid: 29887 + - uid: 32946 components: - type: Transform pos: -32.5,-96.5 parent: 2 - - uid: 29888 + - uid: 32947 components: - type: Transform pos: -31.5,-95.5 parent: 2 - - uid: 29889 + - uid: 32948 components: - type: Transform pos: 47.5,-60.5 parent: 2 - - uid: 29890 + - uid: 32949 components: - type: Transform pos: 48.5,-60.5 parent: 2 - - uid: 29893 + - uid: 32950 components: - type: Transform pos: 49.5,-60.5 parent: 2 - - uid: 29899 + - uid: 32951 components: - type: Transform pos: -69.5,-69.5 parent: 2 - - uid: 29900 + - uid: 32952 components: - type: Transform pos: -69.5,-68.5 parent: 2 - - uid: 29901 + - uid: 32953 components: - type: Transform pos: -69.5,-67.5 parent: 2 - - uid: 29902 + - uid: 32954 components: - type: Transform pos: -68.5,-67.5 parent: 2 - - uid: 29903 + - uid: 32955 components: - type: Transform pos: -68.5,-68.5 parent: 2 - - uid: 29904 + - uid: 32956 components: - type: Transform pos: -68.5,-63.5 parent: 2 - - uid: 29905 + - uid: 32957 components: - type: Transform pos: -69.5,-63.5 parent: 2 - - uid: 29906 + - uid: 32958 components: - type: Transform pos: -69.5,-61.5 parent: 2 - - uid: 29907 + - uid: 32959 components: - type: Transform pos: -69.5,-62.5 parent: 2 - - uid: 29908 + - uid: 32960 components: - type: Transform pos: -68.5,-62.5 parent: 2 - - uid: 29912 + - uid: 32961 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-56.5 parent: 2 - - uid: 29913 + - uid: 32962 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-56.5 parent: 2 - - uid: 29914 + - uid: 32963 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-56.5 parent: 2 - - uid: 29923 + - uid: 32964 components: - type: Transform pos: 49.5,-79.5 parent: 2 - - uid: 29924 + - uid: 32965 components: - type: Transform pos: 41.5,-47.5 parent: 2 - - uid: 29925 + - uid: 32966 components: - type: Transform pos: 41.5,-48.5 parent: 2 - - uid: 29927 + - uid: 32967 components: - type: Transform pos: -34.5,-46.5 parent: 2 - - uid: 29928 + - uid: 32968 components: - type: Transform pos: -35.5,-46.5 parent: 2 - - uid: 29929 + - uid: 32969 components: - type: Transform pos: -34.5,-19.5 parent: 2 - - uid: 29930 + - uid: 32970 components: - type: Transform pos: -34.5,-23.5 parent: 2 - - uid: 29931 + - uid: 32971 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-22.5 parent: 2 - - uid: 29932 + - uid: 32972 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-21.5 parent: 2 - - uid: 29933 + - uid: 32973 components: - type: Transform pos: -38.5,-23.5 parent: 2 - - uid: 29936 + - uid: 32974 components: - type: Transform pos: -47.5,-46.5 parent: 2 - - uid: 29937 + - uid: 32975 components: - type: Transform pos: -46.5,-46.5 parent: 2 - - uid: 29938 + - uid: 32976 components: - type: Transform pos: -66.5,-23.5 parent: 2 - - uid: 29939 + - uid: 32977 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-99.5 parent: 2 - - uid: 29940 + - uid: 32978 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-100.5 parent: 2 - - uid: 29941 + - uid: 32979 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-99.5 parent: 2 - - uid: 29942 + - uid: 32980 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-100.5 parent: 2 - - uid: 29943 + - uid: 32981 components: - type: Transform pos: 41.5,-94.5 parent: 2 - - uid: 29944 + - uid: 32982 components: - type: Transform pos: 42.5,-94.5 parent: 2 - - uid: 29945 + - uid: 32983 components: - type: Transform pos: 41.5,-93.5 parent: 2 - - uid: 29946 + - uid: 32984 components: - type: Transform pos: 53.5,-96.5 parent: 2 - - uid: 29947 + - uid: 32985 components: - type: Transform pos: 42.5,-93.5 parent: 2 - - uid: 29948 + - uid: 32986 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-99.5 parent: 2 - - uid: 29949 + - uid: 32987 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,-100.5 parent: 2 - - uid: 29950 + - uid: 32988 components: - type: Transform pos: 43.5,-94.5 parent: 2 - - uid: 29951 + - uid: 32989 components: - type: Transform pos: 43.5,-93.5 parent: 2 - - uid: 29952 + - uid: 32990 components: - type: Transform pos: 42.5,-65.5 parent: 2 - - uid: 29953 + - uid: 32991 components: - type: Transform pos: 44.5,-66.5 parent: 2 - - uid: 29954 + - uid: 32992 components: - type: Transform pos: 43.5,-66.5 parent: 2 - - uid: 29959 + - uid: 32993 components: - type: Transform pos: -56.5,-40.5 parent: 2 - - uid: 29960 + - uid: 32994 components: - type: Transform pos: 28.5,8.5 parent: 2 - - uid: 29961 + - uid: 32995 components: - type: Transform pos: -48.5,-9.5 parent: 2 - - uid: 29964 + - uid: 32996 components: - type: Transform pos: -48.5,-8.5 parent: 2 - - uid: 29965 + - uid: 32997 components: - type: Transform pos: -47.5,-8.5 parent: 2 - - uid: 29966 + - uid: 32998 components: - type: Transform pos: 31.5,8.5 parent: 2 - - uid: 29967 + - uid: 32999 components: - type: Transform pos: 42.5,-66.5 parent: 2 - - uid: 29971 + - uid: 33000 components: - type: Transform pos: -56.5,12.5 parent: 2 - - uid: 29972 + - uid: 33001 components: - type: Transform pos: -55.5,12.5 parent: 2 - - uid: 29973 + - uid: 33002 components: - type: Transform pos: -55.5,11.5 parent: 2 - - uid: 29978 + - uid: 33003 components: - type: Transform pos: 96.5,-62.5 parent: 2 - - uid: 29979 + - uid: 33004 components: - type: Transform pos: -29.5,-107.5 parent: 2 - - uid: 29980 + - uid: 33005 components: - type: Transform pos: -29.5,-105.5 parent: 2 - - uid: 29981 + - uid: 33006 components: - type: Transform pos: -33.5,-107.5 parent: 2 - - uid: 29982 + - uid: 33007 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-107.5 parent: 2 - - uid: 29983 + - uid: 33008 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-109.5 parent: 2 - - uid: 29984 + - uid: 33009 components: - type: Transform pos: -76.5,-27.5 parent: 2 - - uid: 29985 + - uid: 33010 components: - type: Transform pos: -77.5,-27.5 parent: 2 - - uid: 29986 + - uid: 33011 components: - type: Transform pos: -78.5,-27.5 parent: 2 - - uid: 29987 + - uid: 33012 components: - type: Transform pos: -78.5,-26.5 parent: 2 - - uid: 29988 + - uid: 33013 components: - type: Transform pos: -87.5,-7.5 parent: 2 - - uid: 29989 + - uid: 33014 components: - type: Transform pos: -86.5,-7.5 parent: 2 - - uid: 29990 + - uid: 33015 components: - type: Transform pos: -87.5,-11.5 parent: 2 - - uid: 29991 + - uid: 33016 components: - type: Transform pos: -86.5,-11.5 parent: 2 - - uid: 29993 + - uid: 33017 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,-91.5 parent: 2 - - uid: 29994 + - uid: 33018 components: - type: Transform rot: 1.5707963267948966 rad pos: 102.5,-88.5 parent: 2 - - uid: 29995 + - uid: 33019 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,-88.5 parent: 2 - - uid: 29996 + - uid: 33020 components: - type: Transform pos: 96.5,-63.5 parent: 2 - - uid: 29998 + - uid: 33021 components: - type: Transform pos: 95.5,-80.5 parent: 2 - - uid: 29999 + - uid: 33022 components: - type: Transform pos: 96.5,-80.5 parent: 2 - - uid: 30001 + - uid: 33023 components: - type: Transform pos: 101.5,-80.5 parent: 2 - - uid: 30002 + - uid: 33024 components: - type: Transform pos: 100.5,-80.5 parent: 2 - - uid: 30005 + - uid: 33025 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,23.5 parent: 2 - - uid: 30006 + - uid: 33026 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,22.5 parent: 2 - - uid: 30007 + - uid: 33027 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-86.5 parent: 2 - - uid: 30008 + - uid: 33028 components: - type: Transform pos: -35.5,-35.5 parent: 2 - - uid: 30009 + - uid: 33029 components: - type: Transform pos: 36.5,-37.5 parent: 2 - - uid: 30010 + - uid: 33030 components: - type: Transform pos: 36.5,-38.5 parent: 2 - - uid: 30011 + - uid: 33031 components: - type: Transform pos: 38.5,-37.5 parent: 2 - - uid: 30012 + - uid: 33032 components: - type: Transform pos: 38.5,-38.5 parent: 2 - - uid: 30013 + - uid: 33033 components: - type: Transform pos: 40.5,-38.5 parent: 2 - - uid: 30014 + - uid: 33034 components: - type: Transform pos: 40.5,-37.5 parent: 2 - - uid: 30016 + - uid: 33035 components: - type: Transform pos: -43.5,-86.5 parent: 2 - - uid: 30610 + - uid: 33036 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,11.5 parent: 2 - - uid: 38479 + - uid: 33037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-8.5 + parent: 2 + - uid: 40780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 40666 + - uid: 40781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 40666 + - uid: 41426 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-13.5 - parent: 37887 - - uid: 38480 + parent: 40828 + - uid: 41427 components: - type: Transform pos: 5.5,-10.5 - parent: 37887 - - uid: 38481 + parent: 40828 + - uid: 41428 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-10.5 - parent: 37887 - - uid: 38482 + parent: 40828 + - uid: 41429 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-13.5 - parent: 37887 - - uid: 38483 + parent: 40828 + - uid: 41430 components: - type: Transform pos: -1.5,-6.5 - parent: 37887 - - uid: 38484 + parent: 40828 + - uid: 41431 components: - type: Transform pos: -1.5,-7.5 - parent: 37887 - - uid: 38943 + parent: 40828 + - uid: 41889 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,2.5 - parent: 38722 - - uid: 38944 + parent: 41669 + - uid: 41890 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,2.5 - parent: 38722 - - uid: 40645 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-8.5 - parent: 2 + parent: 41669 - proto: TableReinforcedGlass entities: - - uid: 15636 + - uid: 33038 components: - type: Transform pos: -15.5,-39.5 parent: 2 - - uid: 30017 + - uid: 33039 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-74.5 parent: 2 - - uid: 30018 + - uid: 33040 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-91.5 parent: 2 - - uid: 30019 + - uid: 33041 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-92.5 parent: 2 - - uid: 30020 + - uid: 33042 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-93.5 parent: 2 - - uid: 30021 + - uid: 33043 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-91.5 parent: 2 - - uid: 30023 + - uid: 33044 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-19.5 parent: 2 - - uid: 30024 + - uid: 33045 components: - type: Transform pos: -32.5,-95.5 parent: 2 - - uid: 30028 + - uid: 33046 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,22.5 parent: 2 - - uid: 30029 + - uid: 33047 components: - type: Transform pos: -29.5,-106.5 parent: 2 - - uid: 30030 + - uid: 33048 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,23.5 parent: 2 - - uid: 30031 + - uid: 33049 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-60.5 parent: 2 - - uid: 30032 + - uid: 33050 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,-61.5 parent: 2 - - uid: 30685 + - uid: 33051 components: - type: Transform pos: -15.5,-38.5 parent: 2 - - uid: 30686 + - uid: 33052 components: - type: Transform pos: -15.5,-37.5 parent: 2 - - uid: 30687 + - uid: 33053 components: - type: Transform pos: -15.5,-32.5 parent: 2 - - uid: 30688 + - uid: 33054 components: - type: Transform pos: -15.5,-33.5 parent: 2 - - uid: 30689 + - uid: 33055 components: - type: Transform pos: -15.5,-34.5 parent: 2 - - uid: 30690 + - uid: 33056 components: - type: Transform pos: -17.5,-32.5 parent: 2 - - uid: 30691 + - uid: 33057 components: - type: Transform pos: -17.5,-33.5 parent: 2 - - uid: 30692 + - uid: 33058 components: - type: Transform pos: -17.5,-34.5 parent: 2 - - uid: 30693 + - uid: 33059 components: - type: Transform pos: -17.5,-37.5 parent: 2 - - uid: 30694 + - uid: 33060 components: - type: Transform pos: -17.5,-38.5 parent: 2 - - uid: 30695 + - uid: 33061 components: - type: Transform pos: -17.5,-39.5 parent: 2 - - uid: 30696 + - uid: 33062 components: - type: Transform pos: -19.5,-36.5 parent: 2 - - uid: 30697 + - uid: 33063 components: - type: Transform pos: -19.5,-37.5 parent: 2 - - uid: 30698 + - uid: 33064 components: - type: Transform pos: -19.5,-38.5 parent: 2 - - uid: 30699 + - uid: 33065 components: - type: Transform pos: -19.5,-32.5 parent: 2 - - uid: 30825 + - uid: 33066 components: - type: Transform pos: -19.5,-33.5 parent: 2 - - uid: 30826 + - uid: 33067 components: - type: Transform pos: -19.5,-34.5 parent: 2 - - uid: 38945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-2.5 - parent: 38722 - - uid: 38946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 38722 - - uid: 39101 + - uid: 33068 components: - type: Transform pos: -1.5,-38.5 parent: 2 - - uid: 39104 + - uid: 33069 components: - type: Transform pos: -1.5,-39.5 parent: 2 + - uid: 41891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 41669 + - uid: 41892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 41669 - proto: TableStone entities: - - uid: 5167 + - uid: 33070 components: - type: Transform pos: 74.5,-7.5 parent: 2 - - uid: 14017 + - uid: 33071 components: - type: Transform pos: -19.5,-24.5 parent: 2 - - uid: 16755 + - uid: 33072 components: - type: Transform pos: -19.5,-25.5 parent: 2 - - uid: 26175 + - uid: 33073 components: - type: Transform pos: 74.5,-10.5 parent: 2 - - uid: 26213 + - uid: 33074 components: - type: Transform pos: 75.5,-10.5 parent: 2 - - uid: 28534 + - uid: 33075 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-12.5 parent: 2 - - uid: 28535 + - uid: 33076 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-12.5 parent: 2 - - uid: 30033 + - uid: 33077 components: - type: Transform pos: -41.5,-101.5 parent: 2 - - uid: 30034 + - uid: 33078 components: - type: Transform pos: -37.5,-101.5 parent: 2 - - uid: 30035 + - uid: 33079 components: - type: Transform pos: -37.5,-100.5 parent: 2 - - uid: 30036 + - uid: 33080 components: - type: Transform pos: -37.5,-99.5 parent: 2 - - uid: 30037 + - uid: 33081 components: - type: Transform pos: 65.5,-49.5 parent: 2 - - uid: 30038 + - uid: 33082 components: - type: Transform pos: 3.5,-95.5 parent: 2 - - uid: 30039 + - uid: 33083 components: - type: Transform pos: -41.5,-99.5 parent: 2 - - uid: 30040 + - uid: 33084 components: - type: Transform pos: 25.5,4.5 parent: 2 - - uid: 30041 + - uid: 33085 components: - type: Transform pos: 24.5,4.5 parent: 2 - - uid: 30042 + - uid: 33086 components: - type: Transform pos: 66.5,-29.5 parent: 2 - - uid: 30043 + - uid: 33087 components: - type: Transform pos: -6.5,17.5 parent: 2 - - uid: 30044 + - uid: 33088 components: - type: Transform pos: -2.5,17.5 parent: 2 - - uid: 30045 + - uid: 33089 components: - type: Transform pos: -2.5,13.5 parent: 2 - - uid: 30046 + - uid: 33090 components: - type: Transform pos: -6.5,13.5 parent: 2 - - uid: 30047 + - uid: 33091 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,9.5 parent: 2 - - uid: 30051 + - uid: 33092 components: - type: Transform pos: -38.5,-118.5 parent: 2 - - uid: 30052 + - uid: 33093 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,16.5 parent: 2 - - uid: 30054 + - uid: 33094 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,2.5 parent: 2 - - uid: 30055 + - uid: 33095 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,3.5 parent: 2 - - uid: 30056 + - uid: 33096 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,3.5 parent: 2 - - uid: 30057 + - uid: 33097 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,2.5 parent: 2 - - uid: 30058 + - uid: 33098 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,1.5 parent: 2 - - uid: 30059 + - uid: 33099 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,1.5 parent: 2 - - uid: 30060 + - uid: 33100 components: - type: Transform pos: -41.5,-100.5 parent: 2 - - uid: 33815 + - uid: 33101 components: - type: Transform pos: 14.5,-48.5 parent: 2 - - uid: 33816 + - uid: 33102 components: - type: Transform pos: 13.5,-48.5 parent: 2 - - uid: 38485 + - uid: 41432 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-4.5 - parent: 37887 + parent: 40828 - proto: TableWood entities: - - uid: 4600 + - uid: 33103 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,16.5 parent: 2 - - uid: 17802 + - uid: 33104 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,16.5 + pos: -15.5,5.5 parent: 2 - - uid: 29963 + - uid: 33105 components: - type: Transform - pos: -8.5,18.5 + pos: -11.5,15.5 parent: 2 - - uid: 29974 + - uid: 33106 components: - type: Transform - pos: -9.5,18.5 + rot: 3.141592653589793 rad + pos: -11.5,10.5 parent: 2 - - uid: 30062 + - uid: 33107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,5.5 + parent: 2 + - uid: 33108 components: - type: Transform pos: -29.5,-89.5 parent: 2 - - uid: 30063 + - uid: 33109 components: - type: Transform pos: -34.5,-86.5 parent: 2 - - uid: 30064 + - uid: 33110 components: - type: Transform pos: -34.5,-89.5 parent: 2 - - uid: 30065 + - uid: 33111 components: - type: Transform pos: -29.5,-83.5 parent: 2 - - uid: 30066 + - uid: 33112 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-91.5 parent: 2 - - uid: 30067 + - uid: 33113 components: - type: Transform pos: -55.5,-91.5 parent: 2 - - uid: 30068 + - uid: 33114 components: - type: Transform pos: -57.5,-89.5 parent: 2 - - uid: 30069 + - uid: 33115 components: - type: Transform pos: -55.5,-92.5 parent: 2 - - uid: 30070 + - uid: 33116 components: - type: Transform pos: -28.5,-113.5 parent: 2 - - uid: 30071 + - uid: 33117 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-89.5 parent: 2 - - uid: 30072 + - uid: 33118 components: - type: Transform pos: -30.5,-112.5 parent: 2 - - uid: 30073 + - uid: 33119 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-83.5 parent: 2 - - uid: 30074 + - uid: 33120 components: - type: Transform pos: -28.5,-112.5 parent: 2 - - uid: 30075 + - uid: 33121 components: - type: Transform pos: -30.5,-113.5 parent: 2 - - uid: 30076 + - uid: 33122 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-95.5 parent: 2 - - uid: 30077 + - uid: 33123 components: - type: Transform pos: 33.5,-0.5 parent: 2 - - uid: 30078 + - uid: 33124 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,12.5 parent: 2 - - uid: 30079 + - uid: 33125 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,9.5 parent: 2 - - uid: 30080 + - uid: 33126 components: - type: Transform pos: 86.5,-51.5 parent: 2 - - uid: 30081 + - uid: 33127 components: - type: Transform pos: 33.5,0.5 parent: 2 - - uid: 30082 + - uid: 33128 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,4.5 parent: 2 - - uid: 30083 + - uid: 33129 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-98.5 parent: 2 - - uid: 30084 + - uid: 33130 components: - type: Transform pos: 34.5,-3.5 parent: 2 - - uid: 30085 + - uid: 33131 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,-23.5 parent: 2 - - uid: 30086 + - uid: 33132 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,-24.5 parent: 2 - - uid: 30087 + - uid: 33133 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-98.5 parent: 2 - - uid: 30088 + - uid: 33134 components: - type: Transform pos: 87.5,-51.5 parent: 2 - - uid: 30089 + - uid: 33135 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-46.5 parent: 2 - - uid: 30090 + - uid: 33136 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-98.5 parent: 2 - - uid: 30092 + - uid: 33137 components: - type: Transform pos: -48.5,-116.5 parent: 2 - - uid: 30093 + - uid: 33138 components: - type: Transform pos: -51.5,-116.5 parent: 2 - - uid: 30094 + - uid: 33139 components: - type: Transform pos: 33.5,-4.5 parent: 2 - - uid: 30095 + - uid: 33140 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-3.5 parent: 2 - - uid: 30096 + - uid: 33141 components: - type: Transform pos: 33.5,-3.5 parent: 2 - - uid: 30097 + - uid: 33142 components: - type: Transform pos: -47.5,-116.5 parent: 2 - - uid: 30098 + - uid: 33143 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,4.5 parent: 2 - - uid: 30099 + - uid: 33144 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,5.5 parent: 2 - - uid: 30101 + - uid: 33145 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-39.5 parent: 2 - - uid: 30102 + - uid: 33146 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-40.5 parent: 2 - - uid: 30103 + - uid: 33147 components: - type: Transform pos: -2.5,-95.5 parent: 2 - - uid: 30105 + - uid: 33148 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,24.5 parent: 2 - - uid: 30106 + - uid: 33149 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,25.5 parent: 2 - - uid: 30107 + - uid: 33150 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,25.5 parent: 2 - - uid: 30108 + - uid: 33151 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,24.5 parent: 2 - - uid: 30109 + - uid: 33152 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,27.5 parent: 2 - - uid: 30110 + - uid: 33153 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,27.5 parent: 2 - - uid: 30111 + - uid: 33154 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,27.5 parent: 2 - - uid: 30112 + - uid: 33155 components: - type: Transform pos: -9.5,23.5 parent: 2 - - uid: 30113 + - uid: 33156 components: - type: Transform pos: -10.5,23.5 parent: 2 - - uid: 30114 + - uid: 33157 components: - type: Transform pos: -8.5,24.5 parent: 2 - - uid: 30115 + - uid: 33158 components: - type: Transform pos: -8.5,25.5 parent: 2 - - uid: 30116 + - uid: 33159 components: - type: Transform pos: 9.5,25.5 parent: 2 - - uid: 30117 + - uid: 33160 components: - type: Transform pos: 9.5,24.5 parent: 2 - - uid: 30118 + - uid: 33161 components: - type: Transform pos: 10.5,23.5 parent: 2 - - uid: 30119 + - uid: 33162 components: - type: Transform pos: 11.5,23.5 parent: 2 - - uid: 30121 + - uid: 33163 components: - type: Transform pos: 3.5,11.5 parent: 2 - - uid: 30122 + - uid: 33164 components: - type: Transform pos: 3.5,7.5 parent: 2 - - uid: 30123 + - uid: 33165 components: - type: Transform pos: 3.5,6.5 parent: 2 - - uid: 30124 + - uid: 33166 components: - type: Transform pos: 5.5,9.5 parent: 2 - - uid: 30125 + - uid: 33167 components: - type: Transform pos: 5.5,8.5 parent: 2 - - uid: 30126 + - uid: 33168 components: - type: Transform pos: 6.5,9.5 parent: 2 - - uid: 30127 + - uid: 33169 components: - type: Transform pos: 6.5,8.5 parent: 2 - - uid: 30128 + - uid: 33170 components: - type: Transform pos: 7.5,9.5 parent: 2 - - uid: 30129 + - uid: 33171 components: - type: Transform pos: 7.5,8.5 parent: 2 - - uid: 30130 + - uid: 33172 components: - type: Transform pos: 10.5,10.5 parent: 2 - - uid: 30131 + - uid: 33173 components: - type: Transform pos: 10.5,17.5 parent: 2 - - uid: 30132 + - uid: 33174 components: - type: Transform pos: 10.5,16.5 parent: 2 - - uid: 30133 + - uid: 33175 components: - type: Transform pos: 10.5,15.5 parent: 2 - - uid: 30134 + - uid: 33176 components: - type: Transform pos: 7.5,13.5 parent: 2 - - uid: 30135 + - uid: 33177 components: - type: Transform pos: 8.5,13.5 parent: 2 - - uid: 30136 + - uid: 33178 components: - type: Transform pos: 9.5,13.5 parent: 2 - - uid: 30137 + - uid: 33179 components: - type: Transform pos: 7.5,14.5 parent: 2 - - uid: 30138 + - uid: 33180 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,14.5 parent: 2 - - uid: 30139 + - uid: 33181 components: - type: Transform pos: 17.5,13.5 parent: 2 - - uid: 30140 + - uid: 33182 components: - type: Transform pos: 13.5,15.5 parent: 2 - - uid: 30141 + - uid: 33183 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,9.5 parent: 2 - - uid: 30142 + - uid: 33184 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 2 - - uid: 30143 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,11.5 - parent: 2 - - uid: 30144 + - uid: 33185 components: - type: Transform pos: -7.5,8.5 parent: 2 - - uid: 30145 + - uid: 33186 components: - type: Transform pos: -6.5,8.5 parent: 2 - - uid: 30146 + - uid: 33187 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,11.5 parent: 2 - - uid: 30147 + - uid: 33188 components: - type: Transform pos: -11.5,7.5 parent: 2 - - uid: 30148 + - uid: 33189 components: - type: Transform pos: -24.5,7.5 parent: 2 - - uid: 30149 + - uid: 33190 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,6.5 parent: 2 - - uid: 30150 + - uid: 33191 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,6.5 parent: 2 - - uid: 30151 + - uid: 33192 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,6.5 parent: 2 - - uid: 30152 + - uid: 33193 components: - type: Transform pos: -22.5,3.5 parent: 2 - - uid: 30153 + - uid: 33194 components: - type: Transform pos: -19.5,6.5 parent: 2 - - uid: 30154 + - uid: 33195 components: - type: Transform pos: 67.5,-40.5 parent: 2 - - uid: 30159 + - uid: 33196 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-5.5 parent: 2 - - uid: 30160 + - uid: 33197 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,8.5 parent: 2 - - uid: 30161 + - uid: 33198 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,7.5 parent: 2 - - uid: 30162 + - uid: 33199 components: - type: Transform pos: -31.5,4.5 parent: 2 - - uid: 30163 + - uid: 33200 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,5.5 parent: 2 - - uid: 30164 + - uid: 33201 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,6.5 parent: 2 - - uid: 30165 + - uid: 33202 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,8.5 parent: 2 - - uid: 30166 + - uid: 33203 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-1.5 parent: 2 - - uid: 30167 + - uid: 33204 components: - type: Transform pos: -36.5,3.5 parent: 2 - - uid: 30168 + - uid: 33205 components: - type: Transform pos: -37.5,3.5 parent: 2 - - uid: 30169 + - uid: 33206 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,13.5 parent: 2 - - uid: 30170 + - uid: 33207 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,12.5 parent: 2 - - uid: 30171 + - uid: 33208 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,13.5 parent: 2 - - uid: 30172 + - uid: 33209 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,12.5 parent: 2 - - uid: 30173 + - uid: 33210 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,10.5 parent: 2 - - uid: 30174 + - uid: 33211 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,11.5 parent: 2 - - uid: 30175 + - uid: 33212 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,14.5 parent: 2 - - uid: 30176 + - uid: 33213 components: - type: Transform pos: -39.5,-12.5 parent: 2 - - uid: 30177 + - uid: 33214 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-7.5 parent: 2 - - uid: 30178 + - uid: 33215 components: - type: Transform pos: -34.5,-7.5 parent: 2 - - uid: 30179 + - uid: 33216 components: - type: Transform pos: -34.5,-8.5 parent: 2 - - uid: 30180 + - uid: 33217 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-7.5 parent: 2 - - uid: 30181 + - uid: 33218 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-25.5 parent: 2 - - uid: 30182 + - uid: 33219 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-71.5 parent: 2 - - uid: 30183 + - uid: 33220 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-7.5 parent: 2 - - uid: 30184 + - uid: 33221 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-7.5 parent: 2 - - uid: 30185 + - uid: 33222 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-5.5 parent: 2 - - uid: 30186 + - uid: 33223 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-37.5 parent: 2 - - uid: 30187 + - uid: 33224 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,-37.5 parent: 2 - - uid: 30188 + - uid: 33225 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-39.5 parent: 2 - - uid: 30189 + - uid: 33226 components: - type: Transform pos: 66.5,-40.5 parent: 2 - - uid: 30190 + - uid: 33227 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-26.5 parent: 2 - - uid: 30191 + - uid: 33228 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-73.5 parent: 2 - - uid: 30192 + - uid: 33229 components: - type: Transform pos: 57.5,-72.5 parent: 2 - - uid: 30193 + - uid: 33230 components: - type: Transform pos: 57.5,-71.5 parent: 2 - - uid: 30194 + - uid: 33231 components: - type: Transform pos: 56.5,-71.5 parent: 2 - - uid: 30195 + - uid: 33232 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-71.5 parent: 2 - - uid: 30196 + - uid: 33233 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-71.5 parent: 2 - - uid: 30197 + - uid: 33234 components: - type: Transform pos: -1.5,-95.5 parent: 2 - - uid: 30198 + - uid: 33235 components: - type: Transform pos: 0.5,-95.5 parent: 2 - - uid: 30199 + - uid: 33236 components: - type: Transform pos: -0.5,-95.5 parent: 2 - - uid: 30200 + - uid: 33237 components: - type: Transform pos: -0.5,-93.5 parent: 2 - - uid: 30201 + - uid: 33238 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-63.5 parent: 2 - - uid: 30202 + - uid: 33239 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-64.5 parent: 2 - - uid: 30203 + - uid: 33240 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-63.5 parent: 2 - - uid: 30204 + - uid: 33241 components: - type: Transform pos: 33.5,-63.5 parent: 2 - - uid: 30205 + - uid: 33242 components: - type: Transform pos: 33.5,-64.5 parent: 2 - - uid: 30206 + - uid: 33243 components: - type: Transform pos: -70.5,-45.5 parent: 2 - - uid: 30207 + - uid: 33244 components: - type: Transform pos: -39.5,-67.5 parent: 2 - - uid: 30208 + - uid: 33245 components: - type: Transform pos: -39.5,-68.5 parent: 2 - - uid: 30209 + - uid: 33246 components: - type: Transform pos: -39.5,-69.5 parent: 2 - - uid: 30210 + - uid: 33247 components: - type: Transform pos: -38.5,-69.5 parent: 2 - - uid: 30211 + - uid: 33248 components: - type: Transform pos: -37.5,-67.5 parent: 2 - - uid: 30212 + - uid: 33249 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-36.5 parent: 2 - - uid: 30213 + - uid: 33250 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-37.5 parent: 2 - - uid: 30214 + - uid: 33251 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-37.5 parent: 2 - - uid: 30219 + - uid: 33252 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,17.5 parent: 2 - - uid: 30220 + - uid: 33253 components: - type: Transform rot: 3.141592653589793 rad pos: -34.5,19.5 parent: 2 - - uid: 30221 + - uid: 33254 components: - type: Transform pos: 96.5,-38.5 parent: 2 - - uid: 30222 + - uid: 33255 components: - type: Transform pos: 96.5,-24.5 parent: 2 - - uid: 30223 + - uid: 33256 components: - type: Transform pos: 93.5,-24.5 parent: 2 - - uid: 30224 + - uid: 33257 components: - type: Transform pos: 93.5,-38.5 parent: 2 - - uid: 30225 + - uid: 33258 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-38.5 parent: 2 - - uid: 30226 + - uid: 33259 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-64.5 parent: 2 - - uid: 30236 + - uid: 33260 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-101.5 parent: 2 - - uid: 30237 + - uid: 33261 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-101.5 parent: 2 - - uid: 30238 + - uid: 33262 components: - type: Transform pos: -57.5,-49.5 parent: 2 - - uid: 30239 + - uid: 33263 components: - type: Transform pos: 24.5,-75.5 parent: 2 - - uid: 30240 + - uid: 33264 components: - type: Transform pos: 24.5,-76.5 parent: 2 - - uid: 30241 + - uid: 33265 components: - type: Transform pos: 25.5,-76.5 parent: 2 - - uid: 30242 + - uid: 33266 components: - type: Transform pos: 29.5,-74.5 parent: 2 - - uid: 30243 + - uid: 33267 components: - type: Transform pos: -3.5,-73.5 parent: 2 - - uid: 30246 - components: - - type: Transform - pos: -10.5,13.5 - parent: 2 - - uid: 30248 + - uid: 33268 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,20.5 parent: 2 - - uid: 30249 + - uid: 33269 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,20.5 parent: 2 - - uid: 30250 + - uid: 33270 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,20.5 parent: 2 - - uid: 30251 + - uid: 33271 components: - type: Transform pos: 28.5,21.5 parent: 2 - - uid: 30252 + - uid: 33272 components: - type: Transform pos: -68.5,-12.5 parent: 2 - - uid: 30253 + - uid: 33273 components: - type: Transform pos: -58.5,-9.5 parent: 2 - - uid: 30254 + - uid: 33274 components: - type: Transform pos: -59.5,-9.5 parent: 2 - - uid: 30255 + - uid: 33275 components: - type: Transform pos: -59.5,-10.5 parent: 2 - - uid: 30256 + - uid: 33276 components: - type: Transform pos: -58.5,-10.5 parent: 2 - - uid: 30257 + - uid: 33277 components: - type: Transform pos: -57.5,-48.5 parent: 2 - - uid: 30258 + - uid: 33278 components: - type: Transform pos: -53.5,-48.5 parent: 2 - - uid: 30259 + - uid: 33279 components: - type: Transform pos: -53.5,-47.5 parent: 2 - - uid: 30260 + - uid: 33280 components: - type: Transform pos: -3.5,-71.5 parent: 2 - - uid: 30261 + - uid: 33281 components: - type: Transform pos: -2.5,-71.5 parent: 2 - - uid: 30262 + - uid: 33282 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-73.5 parent: 2 - - uid: 30263 + - uid: 33283 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-2.5 parent: 2 - - uid: 30264 + - uid: 33284 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,9.5 parent: 2 - - uid: 30265 + - uid: 33285 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,16.5 parent: 2 - - uid: 30266 + - uid: 33286 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-101.5 parent: 2 - - uid: 30272 + - uid: 33287 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,4.5 parent: 2 - - uid: 30273 + - uid: 33288 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,2.5 parent: 2 - - uid: 30274 + - uid: 33289 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,1.5 parent: 2 - - uid: 30275 + - uid: 33290 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,3.5 parent: 2 - - uid: 30276 + - uid: 33291 components: - type: Transform pos: 38.5,-17.5 parent: 2 - - uid: 30277 + - uid: 33292 components: - type: Transform pos: 37.5,-17.5 parent: 2 - - uid: 30280 + - uid: 33293 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-95.5 parent: 2 - - uid: 30281 + - uid: 33294 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-95.5 parent: 2 - - uid: 30284 + - uid: 33295 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-101.5 parent: 2 - - uid: 30285 + - uid: 33296 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-112.5 parent: 2 - - uid: 30286 + - uid: 33297 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-112.5 parent: 2 - - uid: 30287 + - uid: 33298 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-112.5 parent: 2 - - uid: 30288 + - uid: 33299 components: - type: Transform pos: -46.5,-117.5 parent: 2 - - uid: 30289 + - uid: 33300 components: - type: Transform rot: 1.5707963267948966 rad pos: -84.5,-13.5 parent: 2 - - uid: 30290 + - uid: 33301 components: - type: Transform pos: -84.5,-17.5 parent: 2 - - uid: 30291 + - uid: 33302 components: - type: Transform pos: -83.5,-17.5 parent: 2 - - uid: 30292 + - uid: 33303 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-7.5 parent: 2 - - uid: 30293 + - uid: 33304 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-8.5 parent: 2 - - uid: 30294 + - uid: 33305 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-9.5 parent: 2 - - uid: 30296 + - uid: 33306 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-67.5 parent: 2 - - uid: 30297 + - uid: 33307 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-115.5 parent: 2 - - uid: 30298 + - uid: 33308 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-84.5 parent: 2 - - uid: 30299 + - uid: 33309 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-90.5 parent: 2 - - uid: 33551 + - uid: 33310 components: - type: Transform pos: 19.5,-35.5 parent: 2 - - uid: 33552 + - uid: 33311 components: - type: Transform pos: 13.5,-35.5 parent: 2 - - uid: 33553 + - uid: 33312 components: - type: Transform pos: 17.5,-35.5 parent: 2 - - uid: 33554 + - uid: 33313 components: - type: Transform pos: 9.5,-44.5 parent: 2 - - uid: 33555 + - uid: 33314 components: - type: Transform pos: 11.5,-44.5 parent: 2 - - uid: 33556 + - uid: 33315 components: - type: Transform pos: 13.5,-44.5 parent: 2 - - uid: 33562 + - uid: 33316 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-45.5 parent: 2 - - uid: 39095 + - uid: 33317 components: - type: Transform pos: 0.5,-40.5 parent: 2 - - uid: 39625 + - uid: 33318 components: - type: Transform pos: 15.5,-44.5 parent: 2 - - uid: 39628 + - uid: 33319 components: - type: Transform pos: 7.5,-44.5 parent: 2 + - uid: 33320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,11.5 + parent: 2 - proto: TargetClown entities: - - uid: 2885 + - uid: 33321 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,10.5 parent: 2 - - uid: 30300 + - uid: 33322 components: - type: Transform pos: -71.5,-62.5 parent: 2 - proto: TargetDarts entities: - - uid: 30302 + - uid: 33323 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,-52.5 parent: 2 - - uid: 30303 + - uid: 33324 components: - type: Transform pos: 34.5,-13.5 parent: 2 - - uid: 30304 + - uid: 33325 components: - type: Transform rot: -1.5707963267948966 rad @@ -228281,59 +232867,59 @@ entities: parent: 2 - proto: TargetHuman entities: - - uid: 19114 + - uid: 33326 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,11.5 parent: 2 - type: Conveyed - - uid: 19620 + - uid: 33327 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,7.5 parent: 2 - - uid: 30305 + - uid: 33328 components: - type: Transform pos: -72.5,-68.5 parent: 2 - - uid: 30306 + - uid: 33329 components: - type: Transform pos: -72.5,-65.5 parent: 2 - proto: TargetSyndicate entities: - - uid: 922 + - uid: 33330 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,8.5 parent: 2 - - uid: 990 + - uid: 33331 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,9.5 parent: 2 - type: Conveyed - - uid: 30309 + - uid: 33332 components: - type: Transform pos: -74.5,-64.5 parent: 2 - proto: TechnologyDisk entities: - - uid: 30310 + - uid: 33333 components: - type: Transform pos: 98.6582,-91.43617 parent: 2 - proto: TegCenter entities: - - uid: 30859 + - uid: 33334 components: - type: Transform rot: -1.5707963267948966 rad @@ -228341,7 +232927,7 @@ entities: parent: 2 - proto: TegCirculator entities: - - uid: 12632 + - uid: 33335 components: - type: Transform rot: 3.141592653589793 rad @@ -228349,7 +232935,7 @@ entities: parent: 2 - type: PointLight color: '#FF3300FF' - - uid: 30856 + - uid: 33336 components: - type: Transform pos: 53.5,-89.5 @@ -228358,28 +232944,28 @@ entities: color: '#FF3300FF' - proto: TelecomServer entities: - - uid: 30497 + - uid: 33337 components: - type: Transform pos: 20.5,-19.5 parent: 2 - - uid: 33810 + - uid: 33338 components: - type: Transform pos: 10.5,-46.5 parent: 2 - - uid: 38835 + - uid: 41781 components: - type: Transform pos: 7.5,-8.5 - parent: 38722 + parent: 41669 - type: ContainerContainer containers: key_slots: !type:Container showEnts: False occludes: True ents: - - 38836 + - 41782 machine_board: !type:Container showEnts: False occludes: True @@ -228390,186 +232976,148 @@ entities: ents: [] - proto: TelecomServerCircuitboard entities: - - uid: 30314 + - uid: 33339 components: - type: Transform pos: 40.519688,-37.698586 parent: 2 - proto: TelecomServerFilledCargo entities: - - uid: 15222 + - uid: 33340 components: - type: Transform pos: 94.5,-68.5 parent: 2 - proto: TelecomServerFilledCommand entities: - - uid: 15244 + - uid: 33341 components: - type: Transform pos: 94.5,-67.5 parent: 2 - proto: TelecomServerFilledCommon entities: - - uid: 15245 + - uid: 33342 components: - type: Transform pos: 92.5,-67.5 parent: 2 - proto: TelecomServerFilledEngineering entities: - - uid: 15250 + - uid: 33343 components: - type: Transform pos: 94.5,-71.5 parent: 2 - proto: TelecomServerFilledMedical entities: - - uid: 17640 + - uid: 33344 components: - type: Transform pos: 92.5,-71.5 parent: 2 - proto: TelecomServerFilledScience entities: - - uid: 17597 + - uid: 33345 components: - type: Transform pos: -35.5,-72.5 parent: 2 - proto: TelecomServerFilledSecurity entities: - - uid: 15369 + - uid: 33346 components: - type: Transform pos: 92.5,-70.5 parent: 2 - proto: TelecomServerFilledService entities: - - uid: 17682 + - uid: 33347 components: - type: Transform pos: 92.5,-69.5 parent: 2 - proto: Telecrystal1 entities: - - uid: 30316 + - uid: 33348 components: - type: Transform pos: -88.61501,-0.98512447 parent: 2 - - uid: 30317 + - uid: 33349 components: - type: Transform pos: -88.52126,-1.1882495 parent: 2 - proto: TeslaCoil entities: - - uid: 30318 + - uid: 33350 components: - type: Transform pos: 86.5,-58.5 parent: 2 - - uid: 30319 + - uid: 33351 components: - type: Transform pos: 84.5,-58.5 parent: 2 - - uid: 30320 + - uid: 33352 components: - type: Transform pos: 86.5,-57.5 parent: 2 - - uid: 30321 + - uid: 33353 components: - type: Transform pos: 85.5,-57.5 parent: 2 - proto: TeslaGenerator entities: - - uid: 30322 + - uid: 33354 components: - type: Transform pos: 76.5,-59.5 parent: 2 - proto: TeslaGroundingRod entities: - - uid: 30323 + - uid: 33355 components: - type: Transform pos: 85.5,-61.5 parent: 2 - - uid: 30324 + - uid: 33356 components: - type: Transform pos: 84.5,-61.5 parent: 2 - - uid: 30325 + - uid: 33357 components: - type: Transform pos: 86.5,-60.5 parent: 2 - - uid: 30326 + - uid: 33358 components: - type: Transform pos: 85.5,-60.5 parent: 2 - proto: TeslaToy entities: - - uid: 30327 + - uid: 33359 components: - type: Transform pos: 106.47719,-57.460983 parent: 2 - proto: ThrowingKnife entities: - - uid: 9739 + - uid: 15821 components: - type: Transform - parent: 14908 + parent: 15820 - type: Physics canCollide: False - proto: Thruster entities: - - uid: 21063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 21045 - - uid: 21065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 21045 - - type: Thruster - thrust: 200 - - uid: 21066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-0.5 - parent: 21045 - - type: Thruster - thrust: 200 - - uid: 21072 - components: - - type: Transform - pos: 2.5,4.5 - parent: 21045 - - uid: 21073 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 21045 - - uid: 21175 - components: - - type: Transform - pos: -1.5,4.5 - parent: 21045 - - uid: 29032 + - uid: 33360 components: - type: Transform anchored: False @@ -228578,19 +233126,19 @@ entities: parent: 2 - type: Physics bodyType: Dynamic - - uid: 30328 + - uid: 33361 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-20.5 parent: 2 - - uid: 30329 + - uid: 33362 components: - type: Transform rot: 1.5707963267948966 rad pos: 105.5,-20.5 parent: 2 - - uid: 33195 + - uid: 33363 components: - type: Transform anchored: False @@ -228599,68 +233147,106 @@ entities: parent: 2 - type: Physics bodyType: Dynamic - - uid: 38947 + - uid: 40782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 40666 + - uid: 40783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 40666 + - type: Thruster + thrust: 200 + - uid: 40784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 40666 + - type: Thruster + thrust: 200 + - uid: 40785 + components: + - type: Transform + pos: 2.5,4.5 + parent: 40666 + - uid: 40786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 40666 + - uid: 40787 + components: + - type: Transform + pos: -1.5,4.5 + parent: 40666 + - uid: 41893 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-11.5 - parent: 38722 + parent: 41669 - type: Thruster thrust: 300 - - uid: 38948 + - uid: 41894 components: - type: Transform pos: 0.5,-2.5 - parent: 38722 + parent: 41669 - type: Thruster thrust: 300 - - uid: 38949 + - uid: 41895 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-11.5 - parent: 38722 + parent: 41669 - type: Thruster thrust: 300 - - uid: 38950 + - uid: 41896 components: - type: Transform pos: 8.5,-2.5 - parent: 38722 + parent: 41669 - type: Thruster thrust: 300 - - uid: 38951 + - uid: 41897 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-5.5 - parent: 38722 + parent: 41669 - type: Thruster thrust: 300 - - uid: 38952 + - uid: 41898 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-5.5 - parent: 38722 + parent: 41669 - type: Thruster thrust: 300 - proto: ThrusterMachineCircuitboard entities: - - uid: 30330 + - uid: 33364 components: - type: Transform pos: 38.472813,-37.761086 parent: 2 - proto: ThrusterUnanchored entities: - - uid: 819 + - uid: 33365 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,15.5 parent: 2 - - uid: 821 + - uid: 33366 components: - type: Transform rot: 3.141592653589793 rad @@ -228668,389 +233254,405 @@ entities: parent: 2 - proto: TimerTrigger entities: - - uid: 30331 + - uid: 33367 components: - type: Transform pos: -38.253895,-32.94832 parent: 2 - - uid: 30332 + - uid: 33368 components: - type: Transform pos: -38.253895,-32.94832 parent: 2 - - uid: 30333 + - uid: 33369 components: - type: Transform pos: -50.33722,-61.583164 parent: 2 - - uid: 30334 + - uid: 33370 components: - type: Transform pos: -50.33722,-61.395664 parent: 2 - - uid: 30335 + - uid: 33371 components: - type: Transform pos: -50.227844,-61.31754 parent: 2 - - uid: 30336 + - uid: 33372 components: - type: Transform pos: -69.29828,-63.4131 parent: 2 - - uid: 30337 + - uid: 33373 components: - type: Transform pos: -69.1889,-63.209976 parent: 2 - - uid: 30338 + - uid: 33374 components: - type: Transform pos: -69.04828,-63.334976 parent: 2 - - uid: 30339 + - uid: 33375 components: - type: Transform pos: -38.253895,-32.94832 parent: 2 - - uid: 30340 + - uid: 33376 components: - type: Transform pos: -38.253895,-32.932693 parent: 2 - proto: TintedWindow entities: - - uid: 4813 + - uid: 33377 components: - type: Transform pos: 32.5,-68.5 parent: 2 - - uid: 25460 + - uid: 33378 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,-0.5 parent: 2 - - uid: 25461 + - uid: 33379 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,-0.5 parent: 2 - - uid: 25462 + - uid: 33380 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,-0.5 parent: 2 - - uid: 25463 + - uid: 33381 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-0.5 parent: 2 - - uid: 25464 + - uid: 33382 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-0.5 parent: 2 - - uid: 25465 + - uid: 33383 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-0.5 parent: 2 - - uid: 30341 + - uid: 33384 components: - type: Transform pos: 44.5,26.5 parent: 2 - - uid: 30342 + - uid: 33385 components: - type: Transform pos: 11.5,18.5 parent: 2 - - uid: 30343 + - uid: 33386 components: - type: Transform pos: 9.5,18.5 parent: 2 - - uid: 30344 + - uid: 33387 components: - type: Transform pos: -18.5,-76.5 parent: 2 - - uid: 30345 + - uid: 33388 components: - type: Transform pos: 10.5,18.5 parent: 2 - - uid: 30346 + - uid: 33389 components: - type: Transform pos: 79.5,-36.5 parent: 2 - - uid: 30347 + - uid: 33390 components: - type: Transform pos: 79.5,-37.5 parent: 2 - - uid: 30348 + - uid: 33391 components: - type: Transform pos: 79.5,-38.5 parent: 2 - - uid: 30350 + - uid: 33392 components: - type: Transform pos: -20.5,-76.5 parent: 2 - - uid: 30351 + - uid: 33393 components: - type: Transform pos: -19.5,-76.5 parent: 2 - - uid: 30354 + - uid: 33394 components: - type: Transform pos: -48.5,-100.5 parent: 2 - - uid: 30355 + - uid: 33395 components: - type: Transform pos: -48.5,-99.5 parent: 2 - - uid: 30356 + - uid: 33396 components: - type: Transform pos: -50.5,-100.5 parent: 2 - - uid: 30357 + - uid: 33397 components: - type: Transform pos: -51.5,-98.5 parent: 2 - - uid: 30358 + - uid: 33398 components: - type: Transform pos: -50.5,-98.5 parent: 2 - - uid: 30359 + - uid: 33399 components: - type: Transform pos: -48.5,-98.5 parent: 2 - - uid: 30360 + - uid: 33400 components: - type: Transform pos: -49.5,-100.5 parent: 2 - - uid: 30361 + - uid: 33401 components: - type: Transform pos: -51.5,-100.5 parent: 2 - - uid: 30362 + - uid: 33402 components: - type: Transform pos: -51.5,-102.5 parent: 2 - - uid: 30363 + - uid: 33403 components: - type: Transform pos: -50.5,-102.5 parent: 2 - - uid: 30364 + - uid: 33404 components: - type: Transform pos: -50.5,-103.5 parent: 2 - - uid: 30365 + - uid: 33405 components: - type: Transform pos: -44.5,-103.5 parent: 2 - - uid: 30366 + - uid: 33406 components: - type: Transform pos: -48.5,-102.5 parent: 2 - - uid: 30367 + - uid: 33407 components: - type: Transform pos: -47.5,-99.5 parent: 2 - - uid: 30368 + - uid: 33408 components: - type: Transform pos: -46.5,-102.5 parent: 2 - - uid: 30369 + - uid: 33409 components: - type: Transform pos: -45.5,-98.5 parent: 2 - - uid: 30370 + - uid: 33410 components: - type: Transform pos: -45.5,-99.5 parent: 2 - - uid: 30371 + - uid: 33411 components: - type: Transform pos: -45.5,-101.5 parent: 2 - - uid: 30372 + - uid: 33412 components: - type: Transform pos: -46.5,-101.5 parent: 2 - - uid: 30373 + - uid: 33413 components: - type: Transform pos: -44.5,-98.5 parent: 2 - - uid: 30374 + - uid: 33414 components: - type: Transform pos: -47.5,-102.5 parent: 2 - - uid: 30375 + - uid: 33415 components: - type: Transform pos: -43.5,-100.5 parent: 2 - - uid: 30376 + - uid: 33416 components: - type: Transform pos: -43.5,-101.5 parent: 2 - - uid: 30377 + - uid: 33417 components: - type: Transform pos: -44.5,-101.5 parent: 2 - - uid: 30378 + - uid: 33418 components: - type: Transform pos: -27.5,-92.5 parent: 2 - - uid: 30379 + - uid: 33419 components: - type: Transform pos: -27.5,-93.5 parent: 2 - - uid: 30380 + - uid: 33420 components: - type: Transform pos: -27.5,-94.5 parent: 2 - proto: ToiletDirtyWater entities: - - uid: 9350 - components: - - type: Transform - pos: 47.5,10.5 - parent: 2 - - uid: 24705 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-25.5 - parent: 2 - - uid: 26098 + - uid: 18963 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,-13.5 + pos: 71.5,-11.5 parent: 2 - - type: DisposalUnit - recentlyEjected: - - 40792 - - uid: 26101 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 18964 + disposals: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 31497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-11.5 + pos: 44.5,31.5 parent: 2 - type: ContainerContainer containers: stash: !type:ContainerSlot showEnts: False occludes: True - ent: 26102 + ent: 31498 disposals: !type:Container showEnts: False occludes: True ents: [] - - uid: 30381 + - uid: 33421 components: - type: Transform - pos: 44.5,31.5 + pos: 47.5,10.5 parent: 2 - - uid: 33616 + - uid: 33422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-25.5 + parent: 2 + - uid: 33423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-13.5 + parent: 2 + - type: DisposalUnit + recentlyEjected: + - 12525 + - uid: 33424 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-25.5 parent: 2 - - uid: 40762 + - uid: 33425 components: - type: Transform pos: 47.5,-7.5 parent: 2 - proto: ToiletEmpty entities: - - uid: 30385 + - uid: 33426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,9.5 + parent: 2 + - uid: 33427 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-89.5 parent: 2 - - uid: 30386 + - uid: 33428 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-5.5 parent: 2 - - uid: 30387 + - uid: 33429 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-39.5 parent: 2 - - uid: 30388 + - uid: 33430 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-37.5 parent: 2 - - uid: 30389 + - uid: 33431 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-35.5 parent: 2 - - uid: 30390 + - uid: 33432 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-79.5 parent: 2 - - uid: 30391 + - uid: 33433 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-79.5 parent: 2 - - uid: 30392 + - uid: 33434 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-79.5 parent: 2 - - uid: 30393 + - uid: 33435 components: - type: Transform rot: -1.5707963267948966 rad @@ -229058,212 +233660,214 @@ entities: parent: 2 - proto: ToiletGoldenDirtyWater entities: - - uid: 30396 + - uid: 33436 components: + - type: MetaData + name: золотой шкебеди - type: Transform pos: 19.5,15.5 parent: 2 - proto: TomDrumsInstrument entities: - - uid: 30397 + - uid: 33437 components: - type: Transform pos: 34.5,-9.5 parent: 2 - proto: ToolboxArtisticFilled entities: - - uid: 33549 + - uid: 33438 components: - type: Transform pos: 20.50246,-43.476185 parent: 2 - proto: ToolboxElectricalFilled entities: - - uid: 15181 + - uid: 33439 components: - type: Transform pos: 57.497208,-17.264772 parent: 2 - - uid: 22416 + - uid: 33440 components: - type: Transform pos: -56.51593,-87.3545 parent: 2 - - uid: 30400 + - uid: 33441 components: - type: Transform pos: 55.47,-84.44745 parent: 2 - - uid: 30401 + - uid: 33442 components: - type: Transform pos: 16.863272,5.5387335 parent: 2 - - uid: 30402 + - uid: 33443 components: - type: Transform pos: 40.529057,-37.242287 parent: 2 - - uid: 30403 + - uid: 33444 components: - type: Transform pos: 8.058641,-86.410194 parent: 2 - - uid: 30405 + - uid: 33445 components: - type: Transform pos: -39.45987,-65.42333 parent: 2 - - uid: 30406 + - uid: 33446 components: - type: Transform pos: -69.498184,-15.4779215 parent: 2 - - uid: 30407 + - uid: 33447 components: - type: Transform pos: 50.419506,-100.35827 parent: 2 - - uid: 30408 + - uid: 33448 components: - type: Transform pos: 81.49744,-54.179535 parent: 2 - - uid: 30409 + - uid: 33449 components: - type: Transform pos: 65.6383,-26.463848 parent: 2 - proto: ToolboxElectricalTurretFilled entities: - - uid: 30410 + - uid: 33450 components: - type: Transform pos: -70.52513,9.511154 parent: 2 - proto: ToolboxEmergencyFilled entities: - - uid: 30412 + - uid: 33451 components: - type: Transform pos: 17.395674,-103.35127 parent: 2 - - uid: 30413 + - uid: 33452 components: - type: Transform pos: -5.5062737,19.497356 parent: 2 - - uid: 30414 + - uid: 33453 components: - type: Transform pos: 7.605516,-86.378944 parent: 2 - - uid: 30416 + - uid: 33454 components: - type: Transform pos: -30.516659,-78.303474 parent: 2 - - uid: 30417 + - uid: 33455 components: - type: Transform pos: -56.489666,-107.45906 parent: 2 - - uid: 30418 + - uid: 33456 components: - type: Transform pos: -77.5,-27.5 parent: 2 - proto: ToolboxGoldFilled entities: - - uid: 30419 + - uid: 33457 components: - type: Transform pos: 31.523361,32.437057 parent: 2 - proto: ToolboxMechanical entities: - - uid: 30420 + - uid: 33458 components: - type: Transform pos: -30.438534,-78.553474 parent: 2 - proto: ToolboxMechanicalFilled entities: - - uid: 14613 + - uid: 33459 components: - type: Transform pos: 57.497208,-17.483522 parent: 2 - - uid: 28414 + - uid: 33460 components: - type: Transform pos: 49.486805,-79.27126 parent: 2 - - uid: 30421 + - uid: 33461 components: - type: Transform pos: -41.55434,-112.38798 parent: 2 - - uid: 30423 + - uid: 33462 components: - type: Transform pos: 15.4390545,-103.40323 parent: 2 - - uid: 30424 + - uid: 33463 components: - type: Transform pos: 16.732325,5.6135054 parent: 2 - - uid: 30425 + - uid: 33464 components: - type: Transform pos: 70.501495,-27.746334 parent: 2 - - uid: 30426 + - uid: 33465 components: - type: Transform pos: 36.48632,-35.39625 parent: 2 - - uid: 30429 + - uid: 33466 components: - type: Transform pos: 109.4538,-22.449432 parent: 2 - - uid: 30430 + - uid: 33467 components: - type: Transform pos: -39.55362,-65.54833 parent: 2 - - uid: 30431 + - uid: 33468 components: - type: Transform pos: 43.392456,-94.381584 parent: 2 - - uid: 30432 + - uid: 33469 components: - type: Transform pos: -86.5,-11.5 parent: 2 - - uid: 40777 + - uid: 33470 components: - type: Transform pos: 65.48686,13.614252 parent: 2 - proto: Torch entities: - - uid: 30437 + - uid: 33471 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.433136,1.9110072 parent: 2 - - uid: 30438 + - uid: 33472 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.50622,3.892364 parent: 2 - - uid: 30439 + - uid: 33473 components: - type: Transform rot: 3.141592653589793 rad @@ -229271,21 +233875,21 @@ entities: parent: 2 - proto: TorsoBorg entities: - - uid: 30924 + - uid: 33474 components: - type: Transform pos: -20.461906,-54.491467 parent: 2 - proto: TorsoBorgMedical entities: - - uid: 30923 + - uid: 33475 components: - type: Transform pos: -15.665031,-46.449615 parent: 2 - proto: TorsoBorgMining entities: - - uid: 30928 + - uid: 33476 components: - type: Transform rot: -1.5707963267948966 rad @@ -229293,7 +233897,7 @@ entities: parent: 2 - proto: TorsoBorgService entities: - - uid: 30916 + - uid: 33477 components: - type: Transform rot: -1.5707963267948966 rad @@ -229301,28 +233905,37 @@ entities: parent: 2 - proto: TorsoSkeleton entities: - - uid: 4793 + - uid: 15727 components: - type: Transform - parent: 14820 + parent: 15725 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 30440 + - uid: 33478 components: - type: Transform pos: 65.5,-50.5 parent: 2 +- proto: TowelColorNT + entities: + - uid: 1792 + components: + - type: Transform + parent: 1785 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ToyAi entities: - - uid: 32164 + - uid: 33479 components: - type: Transform pos: -17.372196,-54.248486 parent: 2 - proto: ToyAmongPequeno entities: - - uid: 30441 + - uid: 33480 components: - type: MetaData desc: мне пох на лор UwU @@ -229332,157 +233945,157 @@ entities: parent: 2 - proto: ToyDeathRipley entities: - - uid: 30442 + - uid: 33481 components: - type: Transform pos: -60.558315,12.6743 parent: 2 - - uid: 32262 + - uid: 33482 components: - type: Transform pos: -14.497196,-52.51411 parent: 2 - proto: ToyDurand entities: - - uid: 32166 + - uid: 33483 components: - type: Transform pos: -11.528446,-51.45161 parent: 2 - proto: ToyFigurineAtmosTech entities: - - uid: 30443 + - uid: 33484 components: - type: Transform pos: 42.768444,-93.53998 parent: 2 - proto: ToyFigurineBartender entities: - - uid: 30444 + - uid: 33485 components: - type: Transform pos: -2.4459457,-71.24857 parent: 2 - - uid: 40100 + - uid: 33486 components: - type: Transform pos: 24.419611,4.656468 parent: 2 - proto: ToyFigurineBotanist entities: - - uid: 40132 + - uid: 33487 components: - type: Transform pos: 46.713566,21.843922 parent: 2 - proto: ToyFigurineBoxer entities: - - uid: 40092 + - uid: 33488 components: - type: Transform pos: -22.714005,-85.46079 parent: 2 - proto: ToyFigurineCaptain entities: - - uid: 3471 + - uid: 33489 components: - type: Transform pos: 13.357437,15.92197 parent: 2 - proto: ToyFigurineCargoTech entities: - - uid: 30445 + - uid: 33490 components: - type: Transform pos: 92.736534,-48.330746 parent: 2 - proto: ToyFigurineChaplain entities: - - uid: 40138 + - uid: 33491 components: - type: Transform pos: 36.211376,-63.908714 parent: 2 - proto: ToyFigurineChef entities: - - uid: 40131 + - uid: 33492 components: - type: Transform pos: 29.353031,12.1914425 parent: 2 - proto: ToyFigurineChemist entities: - - uid: 30446 + - uid: 33493 components: - type: Transform pos: -38.331707,-32.108185 parent: 2 - proto: ToyFigurineChiefEngineer entities: - - uid: 30048 + - uid: 33494 components: - type: Transform pos: 50.415848,-53.65631 parent: 2 - proto: ToyFigurineChiefMedicalOfficer entities: - - uid: 34349 + - uid: 33495 components: - type: Transform pos: -34.990788,-7.283823 parent: 2 - proto: ToyFigurineClown entities: - - uid: 30447 + - uid: 33496 components: - type: Transform pos: -49.445133,-112.21309 parent: 2 - proto: ToyFigurineEngineer entities: - - uid: 15649 + - uid: 33497 components: - type: Transform pos: 50.948788,-51.257023 parent: 2 - proto: ToyFigurineGreytider entities: - - uid: 2143 + - uid: 33498 components: - type: Transform pos: -38.481007,18.630001 parent: 2 - proto: ToyFigurineHamlet entities: - - uid: 40099 + - uid: 33499 components: - type: Transform pos: 7.001844,19.689367 parent: 2 - proto: ToyFigurineHeadOfPersonnel entities: - - uid: 30448 + - uid: 33500 components: - type: Transform pos: -7.6532,9.255847 parent: 2 - proto: ToyFigurineJanitor entities: - - uid: 15278 + - uid: 16284 components: - type: Transform - parent: 15277 + parent: 16283 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 40133 + - uid: 33501 components: - type: Transform pos: 9.525852,1.1365409 parent: 2 - proto: ToyFigurineLawyer entities: - - uid: 30449 + - uid: 33502 components: - type: MetaData desc: Лучше звоните Солу! @@ -229491,139 +234104,139 @@ entities: parent: 2 - proto: ToyFigurineLibrarian entities: - - uid: 40101 + - uid: 33503 components: - type: Transform pos: -31.617523,6.3560033 parent: 2 - proto: ToyFigurineMedicalDoctor entities: - - uid: 1558 + - uid: 33504 components: - type: Transform pos: -59.681423,-23.269218 parent: 2 - proto: ToyFigurineMime entities: - - uid: 30450 + - uid: 33505 components: - type: Transform pos: 33.83908,-17.67738 parent: 2 - proto: ToyFigurineMusician entities: - - uid: 30451 + - uid: 33506 components: - type: Transform pos: -44.434223,-113.224045 parent: 2 - - uid: 40145 + - uid: 33507 components: - type: Transform pos: 36.685593,0.8203099 parent: 2 - proto: ToyFigurineNukie entities: - - uid: 29311 + - uid: 33508 components: - type: Transform pos: -9.277338,-6.50102 parent: 2 - - uid: 29327 + - uid: 33509 components: - type: Transform pos: -9.667963,-6.829145 parent: 2 - proto: ToyFigurineNukieCommander entities: - - uid: 30453 + - uid: 33510 components: - type: Transform pos: -9.464838,-5.954145 parent: 2 - proto: ToyFigurineNukieElite entities: - - uid: 29304 + - uid: 33511 components: - type: Transform pos: -9.652338,-6.37602 parent: 2 - proto: ToyFigurineParamedic entities: - - uid: 29333 + - uid: 33512 components: - type: Transform pos: -54.273342,-15.349931 parent: 2 - proto: ToyFigurinePassenger entities: - - uid: 40139 + - uid: 33513 components: - type: Transform pos: -32.262848,-94.07056 parent: 2 - proto: ToyFigurineQuartermaster entities: - - uid: 29334 + - uid: 33514 components: - type: Transform pos: -1.9263535,-95.30775 parent: 2 - proto: ToyFigurineQueen entities: - - uid: 16909 + - uid: 33515 components: - type: Transform pos: -0.06578779,-27.391663 parent: 2 - proto: ToyFigurineRatKing entities: - - uid: 40141 + - uid: 33516 components: - type: Transform pos: 3.0101357,-28.995865 parent: 2 - proto: ToyFigurineRatServant entities: - - uid: 40142 + - uid: 33517 components: - type: Transform pos: 2.7132607,-28.214615 parent: 2 - - uid: 40143 + - uid: 33518 components: - type: Transform pos: 3.0413857,-27.808365 parent: 2 - - uid: 40144 + - uid: 33519 components: - type: Transform pos: 3.6038857,-28.10524 parent: 2 - proto: ToyFigurineResearchDirector entities: - - uid: 30454 + - uid: 33520 components: - type: Transform pos: -39.171104,-69.29449 parent: 2 - proto: ToyFigurineSalvage entities: - - uid: 15082 + - uid: 33521 components: - type: Transform pos: -9.551106,-95.263794 parent: 2 - proto: ToyFigurineScientist entities: - - uid: 40149 + - uid: 33522 components: - type: Transform pos: -40.695343,-49.031723 parent: 2 - proto: ToyFigurineSlime entities: - - uid: 15042 + - uid: 33523 components: - type: MetaData desc: Фигурка, изображающая хлюпающего смотрителя. @@ -229631,239 +234244,239 @@ entities: - type: Transform pos: 53.450718,-21.983469 parent: 2 - - uid: 40146 + - uid: 33524 components: - type: Transform pos: -3.0922155,-30.32818 parent: 2 - proto: ToyFigurineSpaceDragon entities: - - uid: 40140 + - uid: 33525 components: - type: Transform pos: -3.3001628,-26.766663 parent: 2 - proto: ToyFigurineThief entities: - - uid: 40134 + - uid: 33526 components: - type: Transform pos: -29.43541,-118.259514 parent: 2 - proto: ToyFigurineWarden entities: - - uid: 24323 + - uid: 33527 components: - type: Transform pos: 47.705772,-25.325428 parent: 2 - proto: ToyFigurineWizard entities: - - uid: 30455 + - uid: 33528 components: - type: Transform pos: -37.64504,-99.52388 parent: 2 - proto: ToyFigurineWizardFake entities: - - uid: 30456 + - uid: 33529 components: - type: Transform pos: -41.361916,-101.351456 parent: 2 - proto: ToyGriffin entities: - - uid: 40148 + - uid: 33530 components: - type: Transform pos: -7.5609655,-22.490564 parent: 2 - proto: ToyGygax entities: - - uid: 32165 + - uid: 33531 components: - type: Transform pos: -11.528446,-50.467236 parent: 2 - proto: ToyHammer entities: - - uid: 30457 + - uid: 33532 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.93756,-39.266895 parent: 2 - - uid: 30458 + - uid: 33533 components: - type: Transform pos: -38.44166,16.645557 parent: 2 - proto: ToyHonk entities: - - uid: 30865 + - uid: 33534 components: - type: Transform pos: -11.534567,-49.455715 parent: 2 - proto: ToyIan entities: - - uid: 30459 + - uid: 33535 components: - type: Transform pos: -30.621994,13.091847 parent: 2 - proto: ToyMarauder entities: - - uid: 32167 + - uid: 33536 components: - type: Transform pos: -11.528446,-52.435986 parent: 2 - proto: ToyMauler entities: - - uid: 32168 + - uid: 33537 components: - type: Transform pos: -11.528446,-53.435986 parent: 2 - proto: ToyNuke entities: - - uid: 30460 + - uid: 33538 components: - type: Transform pos: -57.31725,-82.58529 parent: 2 - - uid: 30461 + - uid: 33539 components: - type: Transform pos: -9.480463,-7.4228954 parent: 2 - proto: ToyOdysseus entities: - - uid: 32170 + - uid: 33540 components: - type: Transform pos: -14.512821,-53.529736 parent: 2 - proto: ToyOwlman entities: - - uid: 40147 + - uid: 33541 components: - type: Transform pos: -8.529716,-25.488533 parent: 2 - proto: ToyPhazon entities: - - uid: 30914 + - uid: 33542 components: - type: Transform pos: -14.5,-50.5 parent: 2 - proto: ToyReticence entities: - - uid: 32169 + - uid: 33543 components: - type: Transform pos: -11.590946,-54.467236 parent: 2 - proto: ToyRipley entities: - - uid: 5983 + - uid: 33544 components: - type: Transform pos: -14.5,-51.5 parent: 2 - proto: ToyRubberDuck entities: - - uid: 5418 + - uid: 33545 components: - type: Transform pos: 51.517838,-25.437391 parent: 2 - - uid: 26148 + - uid: 33546 components: - type: Transform pos: 78.20929,-11.594551 parent: 2 - - uid: 30464 + - uid: 33547 components: - type: Transform pos: 75.023865,-42.00662 parent: 2 - - uid: 30465 + - uid: 33548 components: - type: Transform pos: 76.28949,-41.44412 parent: 2 - - uid: 30466 + - uid: 33549 components: - type: Transform pos: -14.993159,-77.09618 parent: 2 - - uid: 30467 + - uid: 33550 components: - type: Transform pos: -13.961909,-76.64306 parent: 2 - proto: ToySeraph entities: - - uid: 32255 + - uid: 33551 components: - type: Transform pos: -14.497196,-54.498486 parent: 2 - proto: ToySkeleton entities: - - uid: 30470 + - uid: 33552 components: - type: Transform pos: 70.66162,-50.586216 parent: 2 - proto: ToySpawner entities: - - uid: 30472 + - uid: 33553 components: - type: Transform pos: -40.5,6.5 parent: 2 - - uid: 30473 + - uid: 33554 components: - type: Transform pos: -58.5,-9.5 parent: 2 - - uid: 30474 + - uid: 33555 components: - type: Transform pos: 56.5,-29.5 parent: 2 - - uid: 30476 + - uid: 33556 components: - type: Transform pos: -66.5,-12.5 parent: 2 - - uid: 30477 + - uid: 33557 components: - type: Transform pos: -48.5,-114.5 parent: 2 - - uid: 30478 + - uid: 33558 components: - type: Transform pos: -84.5,2.5 parent: 2 - - uid: 30481 + - uid: 33559 components: - type: Transform pos: 39.5,18.5 parent: 2 - - uid: 30482 + - uid: 33560 components: - type: Transform pos: -51.5,-49.5 parent: 2 - proto: ToySword entities: - - uid: 30483 + - uid: 33561 components: - type: MetaData name: энергетический меч @@ -229872,70 +234485,70 @@ entities: parent: 2 - proto: TrackingImplanter entities: - - uid: 16257 + - uid: 2490 components: - type: MetaData name: Трекер - type: Transform - parent: 16246 + parent: 2475 - type: Physics canCollide: False - type: InsideEntityStorage - proto: TrashBag entities: - - uid: 2745 + - uid: 2556 components: - type: Transform - parent: 2698 + parent: 2552 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 30487 + - uid: 33562 components: - type: Transform pos: 9.736515,-1.419064 parent: 2 - proto: TrashBananaPeel entities: - - uid: 31089 + - uid: 33563 components: - type: Transform pos: 89.44522,-9.333417 parent: 2 - proto: trayScanner entities: - - uid: 30488 + - uid: 33564 components: - type: Transform pos: -18.87151,-101.42065 parent: 2 - - uid: 30489 + - uid: 33565 components: - type: Transform pos: 62.718464,-56.355484 parent: 2 - - uid: 30490 + - uid: 33566 components: - type: Transform pos: 64.49327,-24.385387 parent: 2 - - uid: 30491 + - uid: 33567 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.38881,-15.3060465 parent: 2 - - uid: 30492 + - uid: 33568 components: - type: Transform pos: -40.514145,-62.120777 parent: 2 - - uid: 30493 + - uid: 33569 components: - type: Transform pos: 48.57563,-100.288826 parent: 2 - - uid: 30494 + - uid: 33570 components: - type: Transform rot: -1.5707963267948966 rad @@ -229943,106 +234556,106 @@ entities: parent: 2 - proto: TreasureCDDrive entities: - - uid: 30495 + - uid: 33571 components: - type: Transform pos: 102.39258,-88.48305 parent: 2 - - uid: 39448 + - uid: 33572 components: - type: Transform pos: -17.42481,-51.40888 parent: 2 - proto: TreasureCoinAdamantine entities: - - uid: 23910 + - uid: 26415 components: - type: Transform - parent: 23909 + parent: 26414 - type: Physics canCollide: False - type: InsideEntityStorage - proto: TreasureCoinDiamond entities: - - uid: 23911 + - uid: 26416 components: - type: Transform - parent: 23909 + parent: 26414 - type: Physics canCollide: False - type: InsideEntityStorage - proto: TreasureCoinGold entities: - - uid: 23912 + - uid: 26417 components: - type: Transform - parent: 23909 + parent: 26414 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 23913 + - uid: 26418 components: - type: Transform - parent: 23909 + parent: 26414 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39453 + - uid: 33573 components: - type: Transform pos: 9.9759245,-29.803133 parent: 2 - - uid: 39454 + - uid: 33574 components: - type: Transform pos: 10.1477995,-29.756258 parent: 2 - - uid: 39455 + - uid: 33575 components: - type: Transform pos: 10.4290495,-29.771883 parent: 2 - - uid: 39456 + - uid: 33576 components: - type: Transform pos: 10.1009245,-29.553133 parent: 2 - - uid: 39457 + - uid: 33577 components: - type: Transform pos: 10.2727995,-29.631258 parent: 2 - proto: TreasureCoinIron entities: - - uid: 23914 + - uid: 26419 components: - type: Transform - parent: 23909 + parent: 26414 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 23915 + - uid: 26420 components: - type: Transform - parent: 23909 + parent: 26414 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 23916 + - uid: 26421 components: - type: Transform - parent: 23909 + parent: 26414 - type: Physics canCollide: False - type: InsideEntityStorage - proto: TreasureCPUSupercharged entities: - - uid: 30496 + - uid: 33578 components: - type: Transform pos: 97.49889,-89.4353 parent: 2 - - uid: 39452 + - uid: 33579 components: - type: Transform pos: 20.550362,-13.380315 @@ -230051,25 +234664,25 @@ entities: price: 2000 - proto: TreasureDatadiskEncrypted entities: - - uid: 30498 + - uid: 33580 components: - type: Transform pos: 98.48633,-91.3893 parent: 2 - - uid: 39449 + - uid: 33581 components: - type: Transform pos: 18.550362,-17.474064 parent: 2 - proto: TreasureFlopDiskDrive entities: - - uid: 30499 + - uid: 33582 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.79883,-88.40492 parent: 2 - - uid: 39447 + - uid: 33583 components: - type: Transform rot: -1.5707963267948966 rad @@ -230077,479 +234690,479 @@ entities: parent: 2 - proto: TreasureHardDiskDrive entities: - - uid: 30500 + - uid: 33584 components: - type: Transform pos: 102.36133,-88.2643 parent: 2 - - uid: 39445 + - uid: 33585 components: - type: Transform - pos: -19.44928,-54.69013 + pos: -17.76244,-53.22019 parent: 2 - - uid: 39446 + - uid: 33586 components: - type: Transform - pos: -19.308655,-54.362003 + pos: -18.10619,-53.048313 parent: 2 - - uid: 39450 + - uid: 33587 components: - type: Transform pos: 18.675362,-15.364689 parent: 2 - - uid: 39451 + - uid: 33588 components: - type: Transform pos: 18.487862,-15.536564 parent: 2 - proto: TreasureSampleTube entities: - - uid: 30505 + - uid: 33589 components: - type: Transform pos: -45.41842,0.52401495 parent: 2 - - uid: 30506 + - uid: 33590 components: - type: Transform pos: -45.57467,0.64901495 parent: 2 - - uid: 30716 + - uid: 33591 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.497007,-32.51542 parent: 2 - - uid: 30719 + - uid: 33592 components: - type: Transform rot: 3.141592653589793 rad pos: -17.465757,-33.124794 parent: 2 - - uid: 30720 + - uid: 33593 components: - type: Transform pos: -17.473164,-34.44427 parent: 2 - - uid: 30721 + - uid: 33594 components: - type: Transform rot: 3.141592653589793 rad pos: -17.512632,-33.656044 parent: 2 - - uid: 30722 + - uid: 33595 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.512632,-32.54667 parent: 2 - - uid: 30723 + - uid: 33596 components: - type: Transform pos: -15.487051,-33.35913 parent: 2 - - uid: 30724 + - uid: 33597 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.512632,-33.57792 parent: 2 - - uid: 30725 + - uid: 33598 components: - type: Transform pos: -15.565756,-34.259087 parent: 2 - - uid: 30726 + - uid: 33599 components: - type: Transform pos: -15.497007,-34.45292 parent: 2 - - uid: 30727 + - uid: 33600 components: - type: Transform pos: -17.543882,-37.593544 parent: 2 - - uid: 30728 + - uid: 33601 components: - type: Transform pos: -17.596802,-38.305458 parent: 2 - - uid: 30729 + - uid: 33602 components: - type: Transform pos: -17.512632,-38.406044 parent: 2 - - uid: 30730 + - uid: 33603 components: - type: Transform pos: -17.380571,-39.387344 parent: 2 - - uid: 30731 + - uid: 33604 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.512632,-39.29667 parent: 2 - - uid: 30732 + - uid: 33605 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.450132,-37.57792 parent: 2 - - uid: 30733 + - uid: 33606 components: - type: Transform pos: -15.616682,-37.629425 parent: 2 - - uid: 30734 + - uid: 33607 components: - type: Transform pos: -15.505569,-38.646603 parent: 2 - - uid: 30735 + - uid: 33608 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.434507,-39.281044 parent: 2 - - uid: 30736 + - uid: 33609 components: - type: Transform pos: -19.400131,-36.46515 parent: 2 - - uid: 30737 + - uid: 33610 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.512632,-37.312294 parent: 2 - - uid: 30738 + - uid: 33611 components: - type: Transform pos: -19.53902,-37.553112 parent: 2 - - uid: 30739 + - uid: 33612 components: - type: Transform pos: -19.488094,-38.252186 parent: 2 - - uid: 30740 + - uid: 33613 components: - type: Transform pos: -19.455687,-38.48367 parent: 2 - - uid: 39114 + - uid: 33614 components: - type: Transform pos: -1.5739746,-38.478504 parent: 2 - - uid: 39115 + - uid: 33615 components: - type: Transform pos: -1.4958496,-38.759754 parent: 2 - - uid: 39443 + - uid: 33616 components: - type: Transform pos: -11.297859,-39.387405 parent: 2 - proto: Truncheon entities: - - uid: 733 + - uid: 33617 components: - type: Transform pos: 63.33208,-11.491384 parent: 2 - - uid: 15835 + - uid: 33618 components: - type: Transform pos: 63.534504,-11.470428 parent: 2 - - uid: 16641 + - uid: 33619 components: - type: Transform pos: 63.628254,-11.548553 parent: 2 - proto: TwoWayLever entities: - - uid: 28008 + - uid: 33620 components: - type: Transform pos: 19.5,-79.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15125: + 16087: - Left: Reverse - Right: Forward - Middle: Off - 15127: + 16089: - Left: Reverse - Right: Forward - Middle: Off - 15265: + 16120: - Left: Reverse - Right: Forward - Middle: Off - 15126: + 16088: - Left: Reverse - Right: Forward - Middle: Off - 36690: + 16144: - Left: Reverse - Right: Forward - Middle: Off - 15266: + 16121: - Left: Reverse - Right: Forward - Middle: Off - 15124: + 16086: - Left: Reverse - Right: Forward - Middle: Off - 33741: + 16142: - Left: Reverse - Right: Forward - Middle: Off - 15123: + 16085: - Left: Reverse - Right: Forward - Middle: Off - 36689: + 16143: - Left: Reverse - Right: Forward - Middle: Off - - uid: 30509 + - uid: 33621 components: - type: Transform pos: 14.5,-96.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15145: + 16107: - Left: Forward - Right: Reverse - Middle: Off - 15143: + 16105: - Left: Forward - Right: Reverse - Middle: Off - 15141: + 16103: - Left: Forward - Right: Reverse - Middle: Off - 15142: + 16104: - Left: Forward - Right: Reverse - Middle: Off - 15131: + 16093: - Left: Forward - Right: Reverse - Middle: Off - 15140: + 16102: - Left: Forward - Right: Reverse - Middle: Off - 15128: + 16090: - Left: Forward - Right: Reverse - Middle: Off - 15130: + 16092: - Left: Forward - Right: Reverse - Middle: Off - 15135: + 16097: - Left: Forward - Right: Reverse - Middle: Off - 15133: + 16095: - Left: Forward - Right: Reverse - Middle: Off - 15132: + 16094: - Left: Forward - Right: Reverse - Middle: Off - 15129: + 16091: - Left: Forward - Right: Reverse - Middle: Off - 15139: + 16101: - Left: Forward - Right: Reverse - Middle: Off - 15136: + 16098: - Left: Forward - Right: Reverse - Middle: Off - 15138: + 16100: - Left: Forward - Right: Reverse - Middle: Off - 15137: + 16099: - Left: Forward - Right: Reverse - Middle: Off - 15134: + 16096: - Left: Forward - Right: Reverse - Middle: Off - 15144: + 16106: - Left: Forward - Right: Reverse - Middle: Off - 15156: + 16118: - Left: Forward - Right: Reverse - Middle: Off - 15146: + 16108: - Left: Forward - Right: Reverse - Middle: Off - 15147: + 16109: - Left: Forward - Right: Reverse - Middle: Off - 15148: + 16110: - Left: Forward - Right: Reverse - Middle: Off - - uid: 30510 + - uid: 33622 components: - type: Transform pos: 10.5,-80.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15114: + 16079: - Left: Forward - Right: Reverse - Middle: Off - 15115: + 16080: - Left: Forward - Right: Reverse - Middle: Off - - uid: 30511 + - uid: 33623 components: - type: Transform pos: 43.5,-69.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15117: + 16082: - Left: Forward - Right: Reverse - Middle: Off - 15116: + 16081: - Left: Forward - Right: Reverse - Middle: Off - 15118: + 16083: - Left: Forward - Right: Reverse - Middle: Off - - uid: 30514 + - uid: 33624 components: - type: Transform pos: 12.5,-101.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 15154: + 16116: - Left: Forward - Right: Reverse - Middle: Off - 15155: + 16117: - Left: Forward - Right: Reverse - Middle: Off - 15153: + 16115: - Left: Forward - Right: Reverse - Middle: Off - 15149: + 16111: - Left: Forward - Right: Reverse - Middle: Off - 15150: + 16112: - Left: Forward - Right: Reverse - Middle: Off - 15152: + 16114: - Left: Forward - Right: Reverse - Middle: Off - 15151: + 16113: - Left: Forward - Right: Reverse - Middle: Off - - uid: 36693 + - uid: 33625 components: - type: Transform pos: 18.5,-80.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 28298: + 29819: - Left: Reverse - Right: Forward - Middle: Off - - uid: 36736 + - uid: 33626 components: - type: Transform pos: -12.5,-99.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 36732: + 29820: - Left: Reverse - Right: Forward - Middle: Off - 36733: + 16145: - Left: Reverse - Right: Forward - Middle: Off - 36734: + 16146: - Left: Reverse - Right: Forward - Middle: Off - 36735: + 16147: - Left: Reverse - Right: Forward - Middle: Off - proto: UnfinishedMachineFrame entities: - - uid: 30515 + - uid: 33627 components: - type: Transform rot: 1.5707963267948966 rad pos: 106.5,-56.5 parent: 2 - - uid: 30516 + - uid: 33628 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,-70.5 parent: 2 - - uid: 30517 + - uid: 33629 components: - type: Transform rot: 1.5707963267948966 rad pos: 92.5,-68.5 parent: 2 - - uid: 30518 + - uid: 33630 components: - type: Transform pos: 104.5,-69.5 parent: 2 - - uid: 32415 + - uid: 33631 components: - type: Transform pos: -18.5,-48.5 parent: 2 - proto: UniformPrinter entities: - - uid: 30519 + - uid: 33632 components: - type: Transform rot: 3.141592653589793 rad @@ -230557,70 +235170,70 @@ entities: parent: 2 - proto: UniformScrubsColorGreen entities: - - uid: 30520 + - uid: 33633 components: - type: Transform pos: -76.366,-7.92319 parent: 2 - - uid: 30521 + - uid: 33634 components: - type: Transform pos: -76.50662,-8.032565 parent: 2 - proto: UniformShortsRed entities: - - uid: 27464 + - uid: 33635 components: - type: Transform pos: 79.493,-3.7236357 parent: 2 - - uid: 27590 + - uid: 33636 components: - type: Transform pos: 82.64818,-6.5517607 parent: 2 - - uid: 30523 + - uid: 33637 components: - type: Transform pos: -34.060715,-101.76542 parent: 2 - proto: UniformShortsRedWithTop entities: - - uid: 27465 + - uid: 33638 components: - type: Transform pos: 79.71175,-3.4736357 parent: 2 - - uid: 27466 + - uid: 33639 components: - type: Transform pos: 82.4305,-6.3486357 parent: 2 - - uid: 30524 + - uid: 33640 components: - type: Transform pos: -24.186638,-84.49248 parent: 2 - - uid: 30525 + - uid: 33641 components: - type: Transform pos: -19.671013,-87.22685 parent: 2 - - uid: 30527 + - uid: 33642 components: - type: Transform pos: -31.54509,-104.33027 parent: 2 - proto: UnstableMutagenChemistryBottle entities: - - uid: 30528 + - uid: 33643 components: - type: Transform pos: 36.446823,22.992214 parent: 2 - proto: UprightPianoInstrument entities: - - uid: 30529 + - uid: 33644 components: - type: Transform rot: 3.141592653589793 rad @@ -230628,146 +235241,146 @@ entities: parent: 2 - proto: UraniumOre1 entities: - - uid: 28121 + - uid: 33645 components: - type: Transform pos: -15.589727,-60.822693 parent: 2 - - uid: 28122 + - uid: 33646 components: - type: Transform pos: -12.355352,-60.588318 parent: 2 - - uid: 28130 + - uid: 33647 components: - type: Transform pos: -12.495977,-60.150818 parent: 2 - - uid: 28138 + - uid: 33648 components: - type: Transform pos: -13.386602,-59.853943 parent: 2 - - uid: 28151 + - uid: 33649 components: - type: Transform pos: -15.636602,-59.197693 parent: 2 - - uid: 28152 + - uid: 33650 components: - type: Transform pos: -11.699102,-62.510193 parent: 2 - proto: UraniumReinforcedWindowDirectional entities: - - uid: 6954 + - uid: 33651 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,18.5 parent: 2 - - uid: 6955 + - uid: 33652 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,18.5 parent: 2 - - uid: 6956 + - uid: 33653 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,22.5 parent: 2 - - uid: 6957 + - uid: 33654 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,22.5 parent: 2 - - uid: 6959 + - uid: 33655 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,22.5 parent: 2 - - uid: 6969 + - uid: 33656 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,22.5 parent: 2 - - uid: 6970 + - uid: 33657 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,18.5 parent: 2 - - uid: 6971 + - uid: 33658 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,18.5 parent: 2 - - uid: 30531 + - uid: 33659 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,-88.5 parent: 2 - - uid: 30532 + - uid: 33660 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,-89.5 parent: 2 - - uid: 30533 + - uid: 33661 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-90.5 parent: 2 - - uid: 30534 + - uid: 33662 components: - type: Transform rot: 3.141592653589793 rad pos: 99.5,-90.5 parent: 2 - - uid: 30535 + - uid: 33663 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-88.5 parent: 2 - - uid: 30536 + - uid: 33664 components: - type: Transform pos: 99.5,-87.5 parent: 2 - - uid: 30537 + - uid: 33665 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-89.5 parent: 2 - - uid: 30538 + - uid: 33666 components: - type: Transform pos: 98.5,-87.5 parent: 2 - - uid: 30539 + - uid: 33667 components: - type: Transform pos: 97.5,-87.5 parent: 2 - proto: UraniumWindoorSecureEngineeringLocked entities: - - uid: 30540 + - uid: 33668 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-48.5 parent: 2 - - uid: 30541 + - uid: 33669 components: - type: Transform rot: 1.5707963267948966 rad @@ -230775,13 +235388,13 @@ entities: parent: 2 - proto: UraniumWindow entities: - - uid: 30542 + - uid: 33670 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,-70.5 parent: 2 - - uid: 30543 + - uid: 33671 components: - type: Transform rot: -1.5707963267948966 rad @@ -230789,14 +235402,14 @@ entities: parent: 2 - proto: Urn entities: - - uid: 26475 + - uid: 33672 components: - type: Transform pos: 8.471964,-14.445511 parent: 2 - type: Storage storedItems: - 30349: + 33673: position: 0,0 _rotation: South - type: ContainerContainer @@ -230805,909 +235418,1031 @@ entities: showEnts: False occludes: True ents: - - 30349 + - 33673 - proto: Vaccinator entities: - - uid: 30544 + - uid: 33674 components: - type: Transform pos: -55.5,-1.5 parent: 2 - - uid: 39105 + - uid: 33675 components: - type: Transform pos: -1.5,-40.5 parent: 2 - proto: VariantCubeBox entities: - - uid: 30545 + - uid: 33676 components: - type: Transform pos: -52.484634,0.68885875 parent: 2 - - uid: 30546 + - uid: 33677 components: - type: Transform pos: -46.802418,-6.2182565 parent: 2 - proto: VendingBarDrobe entities: - - uid: 30547 + - uid: 33678 components: - type: Transform pos: 22.5,6.5 parent: 2 - proto: VendingMachineAtmosDrobe entities: - - uid: 30548 + - uid: 33679 components: - type: Transform pos: 40.5,-46.5 parent: 2 - proto: VendingMachineBooze entities: - - uid: 13894 + - uid: 33680 components: - type: Transform - pos: -10.5,18.5 + pos: -11.5,13.5 parent: 2 - missingComponents: - - AccessReader - - uid: 30549 + - uid: 33681 components: - type: Transform pos: 24.5,0.5 parent: 2 - - uid: 30550 + - uid: 33682 components: - type: Transform pos: -28.5,-100.5 parent: 2 +- proto: VendingMachineBoozeSyndicate + entities: + - uid: 33683 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 - proto: VendingMachineCargoDrobe entities: - - uid: 30551 + - uid: 33684 components: - type: Transform pos: 5.5,-96.5 parent: 2 - - uid: 30552 + - uid: 33685 components: - type: Transform pos: 5.5,-97.5 parent: 2 - proto: VendingMachineCart entities: - - uid: 30553 + - uid: 33686 components: - type: Transform pos: -2.5,11.5 parent: 2 - proto: VendingMachineChapel entities: - - uid: 30554 + - uid: 33687 components: - type: Transform pos: 37.5,-69.5 parent: 2 - proto: VendingMachineChefDrobe entities: - - uid: 30555 + - uid: 33688 components: - type: Transform pos: 26.5,9.5 parent: 2 - - uid: 30556 + - uid: 33689 components: - type: Transform pos: -57.5,12.5 parent: 2 - proto: VendingMachineChefvend entities: - - uid: 27836 + - uid: 33690 components: - type: Transform pos: 89.5,-8.5 parent: 2 missingComponents: - AccessReader - - uid: 30557 + - uid: 33691 components: - type: Transform pos: 23.5,11.5 parent: 2 - proto: VendingMachineChemDrobe entities: - - uid: 30558 + - uid: 33692 components: - type: Transform pos: -38.5,-30.5 parent: 2 - proto: VendingMachineChemicals entities: - - uid: 30559 + - uid: 33693 components: - type: Transform pos: -34.5,-30.5 parent: 2 - - uid: 38486 + - uid: 41433 components: - type: Transform pos: -5.5,-11.5 - parent: 37887 + parent: 40828 - proto: VendingMachineChemicalsSyndicate entities: - - uid: 14239 + - uid: 33694 components: - type: Transform pos: -1.5,-41.5 parent: 2 - proto: VendingMachineCigs entities: - - uid: 18287 + - uid: 33695 components: - type: Transform pos: 60.5,1.5 parent: 2 - - uid: 27633 + - uid: 33696 components: - type: Transform pos: 76.5,-8.5 parent: 2 - - uid: 30562 + - uid: 33697 components: - type: Transform pos: -28.5,-1.5 parent: 2 - - uid: 30564 + - uid: 33698 components: - type: Transform pos: -70.5,-41.5 parent: 2 - - uid: 30566 + - uid: 33699 components: - type: Transform pos: 85.5,-38.5 parent: 2 - - uid: 30567 + - uid: 33700 components: - type: Transform pos: -34.5,-59.5 parent: 2 - - uid: 30568 + - uid: 33701 components: - type: Transform pos: 24.5,-1.5 parent: 2 - - uid: 30569 + - uid: 33702 components: - type: Transform pos: -28.5,-53.5 parent: 2 - - uid: 30570 + - uid: 33703 components: - type: Transform pos: 30.5,-69.5 parent: 2 - - uid: 30571 + - uid: 33704 components: - type: Transform pos: -35.5,-1.5 parent: 2 - proto: VendingMachineClothing entities: - - uid: 30572 + - uid: 33705 components: - type: Transform pos: 38.5,-13.5 parent: 2 - - uid: 30573 + - uid: 33706 components: - type: Transform pos: 89.5,-24.5 parent: 2 - - uid: 30574 + - uid: 33707 components: - type: Transform pos: -35.5,-93.5 parent: 2 - - uid: 30575 + - uid: 33708 components: - type: Transform pos: -62.5,4.5 parent: 2 - - uid: 30577 + - uid: 33709 components: - type: Transform pos: -83.5,3.5 parent: 2 - - uid: 30578 + - uid: 33710 components: - type: Transform pos: -25.5,-91.5 parent: 2 - proto: VendingMachineCoffee entities: - - uid: 19595 + - uid: 33711 components: - type: Transform pos: 42.5,-14.5 parent: 2 - - uid: 30580 + - uid: 33712 components: - type: Transform pos: 4.5,-78.5 parent: 2 - - uid: 30581 + - uid: 33713 components: - type: Transform pos: 53.5,-54.5 parent: 2 - - uid: 30582 + - uid: 33714 components: - type: Transform pos: -32.5,12.5 parent: 2 - - uid: 30583 - components: - - type: Transform - pos: -7.5,20.5 - parent: 2 - - uid: 30584 + - uid: 33715 components: - type: Transform pos: 10.5,11.5 parent: 2 - - uid: 30585 - components: - - type: Transform - pos: -9.5,10.5 - parent: 2 - - uid: 30586 + - uid: 33716 components: - type: Transform pos: -19.5,8.5 parent: 2 - - uid: 30588 + - uid: 33717 components: - type: Transform pos: -28.5,-2.5 parent: 2 - - uid: 30589 + - uid: 33718 components: - type: Transform pos: -44.5,-38.5 parent: 2 - - uid: 30590 + - uid: 33719 components: - type: Transform pos: -37.5,-1.5 parent: 2 - - uid: 30591 + - uid: 33720 components: - type: Transform pos: -39.5,-7.5 parent: 2 - - uid: 30592 + - uid: 33721 components: - type: Transform pos: -34.5,-25.5 parent: 2 - - uid: 30593 + - uid: 33722 components: - type: Transform pos: -52.5,-3.5 parent: 2 - - uid: 30594 + - uid: 33723 components: - type: Transform pos: 61.5,-35.5 parent: 2 - - uid: 30595 + - uid: 33724 components: - type: Transform pos: 79.5,-26.5 parent: 2 - - uid: 30596 + - uid: 33725 components: - type: Transform pos: 4.5,-86.5 parent: 2 - - uid: 30597 + - uid: 33726 components: - type: Transform pos: -35.5,-65.5 parent: 2 - - uid: 30598 + - uid: 33727 components: - type: Transform pos: -9.5,-84.5 parent: 2 - - uid: 30599 + - uid: 33728 components: - type: Transform pos: -4.5,-83.5 parent: 2 - - uid: 30600 + - uid: 33729 components: - type: Transform pos: -35.5,-94.5 parent: 2 - - uid: 30603 + - uid: 33730 components: - type: Transform pos: -55.5,-25.5 parent: 2 - - uid: 30604 + - uid: 33731 components: - type: Transform pos: -6.5,-0.5 parent: 2 - - uid: 30605 + - uid: 33732 components: - type: Transform pos: -47.5,-50.5 parent: 2 - - uid: 30606 + - uid: 33733 components: - type: Transform pos: -19.5,-70.5 parent: 2 - - uid: 30607 + - uid: 33734 components: - type: Transform pos: -42.5,11.5 parent: 2 - - uid: 30608 + - uid: 33735 components: - type: Transform pos: -57.5,-46.5 parent: 2 - - uid: 30609 + - uid: 33736 components: - type: Transform pos: -55.5,-64.5 parent: 2 + - uid: 33737 + components: + - type: Transform + pos: -10.5,20.5 + parent: 2 - proto: VendingMachineCondiments entities: - - uid: 11131 + - uid: 33738 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,-10.5 parent: 2 - - uid: 25114 + - uid: 33739 components: - type: Transform pos: 50.5,6.5 parent: 2 - - uid: 41594 + - uid: 33740 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 33741 components: - type: Transform pos: 31.5,5.5 parent: 2 - proto: VendingMachineCuraDrobe entities: - - uid: 30612 + - uid: 33742 components: - type: Transform pos: -35.5,5.5 parent: 2 - proto: VendingMachineDetDrobe entities: - - uid: 17736 + - uid: 33743 components: - type: Transform pos: 38.5,-23.5 parent: 2 - proto: VendingMachineDinnerware entities: - - uid: 30614 + - uid: 33744 components: - type: Transform pos: 27.5,14.5 parent: 2 - proto: VendingMachineDonut entities: - - uid: 22685 + - uid: 33745 components: - type: Transform pos: 42.5,-10.5 parent: 2 - - uid: 30615 + - uid: 33746 components: - type: Transform pos: -76.5,-35.5 parent: 2 - - uid: 30616 + - uid: 33747 components: - type: Transform pos: -70.5,-47.5 parent: 2 - - uid: 30617 + - uid: 33748 components: - type: Transform pos: 24.5,25.5 parent: 2 - proto: VendingMachineEngiDrobe entities: - - uid: 30618 + - uid: 33749 components: - type: Transform pos: 47.5,-51.5 parent: 2 - - uid: 30619 + - uid: 33750 components: - type: Transform pos: 48.5,-84.5 parent: 2 - - uid: 30620 + - uid: 33751 components: - type: Transform pos: 48.5,-62.5 parent: 2 - proto: VendingMachineEngivend entities: - - uid: 30621 + - uid: 33752 components: - type: Transform pos: 47.5,-50.5 parent: 2 - proto: VendingMachineGames entities: - - uid: 27608 + - uid: 33753 components: - type: Transform pos: 87.5,-2.5 parent: 2 - - uid: 30623 + - uid: 33754 components: - type: Transform pos: -32.5,11.5 parent: 2 - proto: VendingMachineGeneDrobe entities: - - uid: 7946 + - uid: 33755 components: - type: Transform pos: -10.5,-32.5 parent: 2 - - uid: 18639 + - uid: 33756 components: - type: Transform pos: -57.5,-25.5 parent: 2 - proto: VendingMachineHappyHonk entities: - - uid: 30625 + - uid: 33757 components: - type: Transform pos: -48.5,-110.5 parent: 2 - - uid: 30626 + - uid: 33758 components: - type: Transform pos: 31.5,-7.5 parent: 2 - proto: VendingMachineHydrobe entities: - - uid: 30627 + - uid: 33759 components: - type: Transform pos: 35.5,9.5 parent: 2 - proto: VendingMachineJaniDrobe entities: - - uid: 30628 + - uid: 33760 components: - type: Transform pos: 5.5,1.5 parent: 2 - proto: VendingMachineLawDrobe entities: - - uid: 30629 + - uid: 33761 components: - type: Transform pos: -24.5,3.5 parent: 2 - proto: VendingMachineMagivend entities: - - uid: 30630 + - uid: 33762 components: - type: Transform pos: -37.5,-103.5 parent: 2 - proto: VendingMachineMedical entities: - - uid: 19582 + - uid: 33763 components: - type: Transform pos: 66.5,-3.5 parent: 2 - - uid: 30631 + - uid: 33764 components: - type: Transform pos: -52.5,-29.5 parent: 2 - - uid: 30632 + - uid: 33765 components: - type: Transform pos: -46.5,-13.5 parent: 2 - - uid: 30634 + - uid: 33766 components: - type: Transform pos: -51.5,-14.5 parent: 2 - - uid: 38487 + - uid: 41434 components: - type: Transform pos: -3.5,-8.5 - parent: 37887 + parent: 40828 - proto: VendingMachineMediDrobe entities: - - uid: 30636 + - uid: 33767 components: - type: Transform pos: -46.5,-16.5 parent: 2 - proto: VendingMachineNutri entities: - - uid: 30637 + - uid: 33768 components: - type: Transform pos: 38.5,15.5 parent: 2 - proto: VendingMachinePwrGame entities: - - uid: 30638 + - uid: 33769 components: - type: Transform pos: -59.5,10.5 parent: 2 - proto: VendingMachineRoboDrobe entities: - - uid: 30639 + - uid: 33770 components: - type: Transform pos: -40.5,-55.5 parent: 2 - proto: VendingMachineRobotics entities: - - uid: 30640 + - uid: 33771 components: - type: Transform pos: -40.5,-51.5 parent: 2 - - uid: 31606 + - uid: 33772 components: - type: Transform pos: -20.5,-51.5 parent: 2 - proto: VendingMachineSalvage entities: - - uid: 30642 + - uid: 33773 components: - type: Transform pos: -4.5,-88.5 parent: 2 - proto: VendingMachineSciDrobe entities: - - uid: 30643 + - uid: 33774 components: - type: Transform pos: -45.5,-73.5 parent: 2 - - uid: 30644 + - uid: 33775 components: - type: Transform pos: -34.5,-65.5 parent: 2 - proto: VendingMachineSec entities: - - uid: 1866 + - uid: 33776 components: - type: Transform pos: 58.5,-17.5 parent: 2 - - uid: 7698 + - uid: 33777 components: - type: Transform pos: 59.5,3.5 parent: 2 - - uid: 38488 + - uid: 41435 components: - type: Transform pos: 2.5,-6.5 - parent: 37887 - - uid: 38953 + parent: 40828 + - uid: 41899 components: - type: Transform pos: 4.5,0.5 - parent: 38722 + parent: 41669 - proto: VendingMachineSecDrobe entities: - - uid: 17433 + - uid: 33778 components: - type: Transform pos: 61.5,5.5 parent: 2 - - uid: 30647 + - uid: 33779 components: - type: Transform pos: -64.5,-36.5 parent: 2 - - uid: 30648 + - uid: 33780 components: - type: Transform pos: -2.5,-82.5 parent: 2 - - uid: 30650 + - uid: 33781 components: - type: Transform pos: -46.5,-48.5 parent: 2 - - uid: 30651 + - uid: 33782 components: - type: Transform pos: -46.5,-31.5 parent: 2 - proto: VendingMachineSeeds entities: - - uid: 27114 + - uid: 33783 components: - type: Transform pos: 89.5,-3.5 parent: 2 missingComponents: - AccessReader - - uid: 30652 + - uid: 33784 components: - type: Transform pos: 34.5,15.5 parent: 2 - proto: VendingMachineSovietSoda entities: - - uid: 27844 + - uid: 33785 components: - type: Transform pos: 77.5,-4.5 parent: 2 - - uid: 30653 + - uid: 33786 components: - type: Transform pos: -12.5,-92.5 parent: 2 - - uid: 30908 + - uid: 33787 components: - type: Transform pos: 39.5,-0.5 parent: 2 - - uid: 34399 - components: - - type: Transform - pos: -17.5,6.5 - parent: 2 - proto: VendingMachineSustenance entities: - - uid: 2144 + - uid: 33788 components: - type: Transform pos: 42.5,8.5 parent: 2 - - uid: 27841 + - uid: 33789 components: - type: Transform pos: 77.5,-5.5 parent: 2 - proto: VendingMachineSyndieDrobe entities: - - uid: 30655 + - uid: 33790 components: - type: Transform pos: -35.5,19.5 parent: 2 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 30657 + - uid: 33791 components: - type: Transform pos: 56.5,-62.5 parent: 2 - - uid: 30658 + - uid: 33792 components: - type: Transform pos: 45.5,-66.5 parent: 2 - - uid: 30659 + - uid: 33793 components: - type: Transform pos: -50.5,-59.5 parent: 2 - proto: VendingMachineTankDispenserEVA entities: - - uid: 820 + - uid: 33794 components: - type: Transform pos: 61.5,15.5 parent: 2 - - uid: 2053 + - uid: 33795 components: - type: Transform pos: 55.5,-22.5 parent: 2 - - uid: 5350 + - uid: 33796 components: - type: Transform pos: -13.5,16.5 parent: 2 - - uid: 21867 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 21045 - - uid: 30662 + - uid: 33797 components: - type: Transform pos: 47.5,-92.5 parent: 2 - - uid: 30663 + - uid: 33798 components: - type: Transform pos: -5.5,-93.5 parent: 2 - - uid: 30664 + - uid: 33799 components: - type: Transform pos: 4.5,15.5 parent: 2 - - uid: 30665 + - uid: 33800 components: - type: Transform pos: -4.5,13.5 parent: 2 - - uid: 30666 + - uid: 33801 components: - type: Transform pos: 49.5,-84.5 parent: 2 - - uid: 30667 + - uid: 33802 components: - type: Transform pos: -70.5,-76.5 parent: 2 - - uid: 37073 + - uid: 33803 components: - type: Transform pos: 58.5,-80.5 parent: 2 - - uid: 38489 + - uid: 40788 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 40666 + - uid: 41436 components: - type: Transform pos: 2.5,-7.5 - parent: 37887 + parent: 40828 - proto: VendingMachineTheater entities: - - uid: 30668 + - uid: 33804 components: - type: Transform pos: 38.5,-11.5 parent: 2 - - uid: 30669 + - uid: 33805 components: - type: Transform pos: -51.5,-114.5 parent: 2 - proto: VendingMachineVendomat entities: - - uid: 15483 + - uid: 33806 components: - type: Transform pos: -85.5,-7.5 parent: 2 - - uid: 34193 + - uid: 33807 components: - type: Transform pos: 66.5,-24.5 parent: 2 - - uid: 39999 + - uid: 33808 components: - type: Transform pos: 50.5,-79.5 parent: 2 - proto: VendingMachineViroDrobe entities: - - uid: 30670 + - uid: 33809 components: - type: Transform pos: -55.5,-3.5 parent: 2 - proto: VendingMachineWallMedical entities: - - uid: 30671 + - uid: 33810 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-26.5 parent: 2 - - uid: 38954 + - uid: 33811 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 38722 - - uid: 41116 + pos: 81.5,-11.5 + parent: 2 + - uid: 41900 components: - type: Transform rot: 3.141592653589793 rad - pos: 81.5,-11.5 - parent: 2 + pos: 5.5,-3.5 + parent: 41669 - proto: VendingMachineWinter entities: - - uid: 30672 + - uid: 33812 components: - type: Transform pos: -33.5,-98.5 parent: 2 - proto: VendingMachineYouTool entities: - - uid: 30673 + - uid: 33813 components: - type: Transform pos: -4.5,17.5 parent: 2 - - uid: 30674 + - uid: 33814 components: - type: Transform pos: 65.5,-24.5 parent: 2 - - uid: 30675 + - uid: 33815 components: - type: Transform pos: -30.5,-73.5 parent: 2 - - uid: 30676 + - uid: 33816 components: - type: Transform pos: 47.5,-66.5 parent: 2 - proto: VestineChemistryVial entities: - - uid: 39442 + - uid: 33817 components: - type: Transform pos: -11.238715,-41.190403 parent: 2 +- proto: WallIce + entities: + - uid: 33818 + components: + - type: MetaData + name: обледеневший каркас + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 50 + triggersOnce: False + triggered: False + behaviors: + - !type:SpawnEntitiesBehavior + offset: 0.5 + spawnInContainer: False + transferForensics: False + spawn: + Girder: + max: 1 + min: 1 + - !type:DoActsBehavior + acts: Destruction + - uid: 33819 + components: + - type: MetaData + name: обледеневший каркас + - type: Transform + pos: -18.5,-36.5 + parent: 2 + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 50 + triggersOnce: False + triggered: False + behaviors: + - !type:SpawnEntitiesBehavior + offset: 0.5 + spawnInContainer: False + transferForensics: False + spawn: + Girder: + max: 1 + min: 1 + - !type:DoActsBehavior + acts: Destruction + - uid: 33820 + components: + - type: MetaData + name: обледеневший каркас + - type: Transform + pos: -15.5,-35.5 + parent: 2 + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 50 + triggersOnce: False + triggered: False + behaviors: + - !type:SpawnEntitiesBehavior + offset: 0.5 + spawnInContainer: False + transferForensics: False + spawn: + Girder: + max: 1 + min: 1 + - !type:DoActsBehavior + acts: Destruction + - uid: 33821 + components: + - type: MetaData + name: обледеневший каркас + - type: Transform + pos: -14.5,-35.5 + parent: 2 + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 50 + triggersOnce: False + triggered: False + behaviors: + - !type:SpawnEntitiesBehavior + offset: 0.5 + spawnInContainer: False + transferForensics: False + spawn: + Girder: + max: 1 + min: 1 + - !type:DoActsBehavior + acts: Destruction + - uid: 33822 + components: + - type: MetaData + name: обледеневший каркас + - type: Transform + pos: -16.5,-34.5 + parent: 2 + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 50 + triggersOnce: False + triggered: False + behaviors: + - !type:SpawnEntitiesBehavior + offset: 0.5 + spawnInContainer: False + transferForensics: False + spawn: + Girder: + max: 1 + min: 1 + - !type:DoActsBehavior + acts: Destruction - proto: WallInvisible entities: - - uid: 30857 + - uid: 33823 components: - type: Transform pos: 43.748642,18.290363 parent: 2 - proto: WallmountTelescreen entities: - - uid: 23116 + - uid: 33824 components: - type: Transform pos: 40.5,-26.5 parent: 2 - - uid: 30866 + - uid: 33825 components: - type: Transform pos: -22.5,3.5 parent: 2 - - uid: 30867 + - uid: 33826 components: - type: Transform pos: -0.5,-95.5 parent: 2 - - uid: 30869 + - uid: 33827 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,2.5 parent: 2 - - uid: 30870 + - uid: 33828 components: - type: Transform rot: 1.5707963267948966 rad @@ -231715,7 +236450,7 @@ entities: parent: 2 - proto: WallmountTelescreenFrame entities: - - uid: 32416 + - uid: 33829 components: - type: Transform rot: -1.5707963267948966 rad @@ -231723,110 +236458,110 @@ entities: parent: 2 - proto: WallmountTelevision entities: - - uid: 30871 + - uid: 33830 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-44.5 parent: 2 - - uid: 30872 + - uid: 33831 components: - type: Transform pos: 7.5,12.5 parent: 2 - - uid: 30873 + - uid: 33832 components: - type: Transform rot: -1.5707963267948966 rad pos: 73.5,-38.5 parent: 2 - - uid: 30874 + - uid: 33833 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,-84.5 parent: 2 - - uid: 30875 + - uid: 33834 components: - type: Transform pos: -27.5,-79.5 parent: 2 - - uid: 30876 + - uid: 33835 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-59.5 parent: 2 - - uid: 30877 + - uid: 33836 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-43.5 parent: 2 - - uid: 30878 + - uid: 33837 components: - type: Transform pos: 57.5,-30.5 parent: 2 - - uid: 30879 + - uid: 33838 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-35.5 parent: 2 - - uid: 30880 + - uid: 33839 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,13.5 parent: 2 - - uid: 30881 + - uid: 33840 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-3.5 parent: 2 - - uid: 30882 + - uid: 33841 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-40.5 parent: 2 - - uid: 30883 + - uid: 33842 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-22.5 parent: 2 - - uid: 30884 + - uid: 33843 components: - type: Transform pos: -43.5,-82.5 parent: 2 - - uid: 30885 + - uid: 33844 components: - type: Transform pos: -55.5,-41.5 parent: 2 - - uid: 30886 + - uid: 33845 components: - type: Transform pos: 36.5,-30.5 parent: 2 - - uid: 30887 + - uid: 33846 components: - type: Transform pos: -45.5,-17.5 parent: 2 - proto: WallmountTelevisionFrame entities: - - uid: 28618 + - uid: 33847 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-14.5 parent: 2 - - uid: 28619 + - uid: 33848 components: - type: Transform rot: 1.5707963267948966 rad @@ -231834,43 +236569,43 @@ entities: parent: 2 - proto: WallPlastitanium entities: - - uid: 6223 + - uid: 33849 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-31.5 parent: 2 - - uid: 6984 + - uid: 33850 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-32.5 parent: 2 - - uid: 9034 + - uid: 33851 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-33.5 parent: 2 - - uid: 11055 + - uid: 33852 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-33.5 parent: 2 - - uid: 11058 + - uid: 33853 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-33.5 parent: 2 - - uid: 11641 + - uid: 33854 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-33.5 parent: 2 - - uid: 11642 + - uid: 33855 components: - type: Transform rot: 3.141592653589793 rad @@ -231878,916 +236613,916 @@ entities: parent: 2 - proto: WallReinforced entities: - - uid: 56 + - uid: 33856 components: - type: Transform pos: 37.5,-28.5 parent: 2 - - uid: 59 + - uid: 33857 components: - type: Transform pos: 59.5,-15.5 parent: 2 - - uid: 62 + - uid: 33858 components: - type: Transform pos: 55.5,-6.5 parent: 2 - - uid: 63 + - uid: 33859 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-0.5 parent: 2 - - uid: 64 + - uid: 33860 components: - type: Transform pos: 53.5,12.5 parent: 2 - - uid: 125 + - uid: 33861 components: - type: Transform pos: 30.5,-37.5 parent: 2 - - uid: 157 + - uid: 33862 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-19.5 parent: 2 - - uid: 177 + - uid: 33863 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,14.5 parent: 2 - - uid: 198 + - uid: 33864 components: - type: Transform pos: -1.5,-4.5 parent: 2 - - uid: 199 + - uid: 33865 components: - type: Transform pos: -4.5,-9.5 parent: 2 - - uid: 238 + - uid: 33866 components: - type: Transform pos: -14.5,-41.5 parent: 2 - - uid: 251 + - uid: 33867 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-4.5 parent: 2 - - uid: 253 + - uid: 33868 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-73.5 parent: 2 - - uid: 275 + - uid: 33869 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-22.5 parent: 2 - - uid: 298 + - uid: 33870 components: - type: Transform pos: 8.5,-33.5 parent: 2 - - uid: 301 + - uid: 33871 components: - type: Transform pos: -3.5,-9.5 parent: 2 - - uid: 378 + - uid: 33872 components: - type: Transform pos: -4.5,-45.5 parent: 2 - - uid: 380 + - uid: 33873 components: - type: Transform pos: -8.5,-36.5 parent: 2 - - uid: 382 + - uid: 33874 components: - type: Transform pos: 26.5,-35.5 parent: 2 - - uid: 391 + - uid: 33875 components: - type: Transform pos: -1.5,-69.5 parent: 2 - - uid: 395 + - uid: 33876 components: - type: Transform pos: -0.5,-41.5 parent: 2 - - uid: 403 + - uid: 33877 components: - type: Transform pos: 3.5,-40.5 parent: 2 - - uid: 572 + - uid: 33878 components: - type: Transform rot: 1.5707963267948966 rad pos: 113.5,-43.5 parent: 2 - - uid: 650 + - uid: 33879 components: - type: Transform pos: 40.5,0.5 parent: 2 - - uid: 651 + - uid: 33880 components: - type: Transform pos: 48.5,17.5 parent: 2 - - uid: 734 + - uid: 33881 components: - type: Transform pos: 48.5,-0.5 parent: 2 - - uid: 739 + - uid: 33882 components: - type: Transform pos: 51.5,8.5 parent: 2 - - uid: 752 + - uid: 33883 components: - type: Transform pos: 55.5,-8.5 parent: 2 - - uid: 756 + - uid: 33884 components: - type: Transform pos: 63.5,-20.5 parent: 2 - - uid: 811 + - uid: 33885 components: - type: Transform pos: 36.5,-27.5 parent: 2 - - uid: 972 + - uid: 33886 components: - type: Transform pos: -1.5,-2.5 parent: 2 - - uid: 991 + - uid: 33887 components: - type: Transform pos: 45.5,-6.5 parent: 2 - - uid: 1058 + - uid: 33888 components: - type: Transform pos: 2.5,-1.5 parent: 2 - - uid: 1088 + - uid: 33889 components: - type: Transform pos: -10.5,-8.5 parent: 2 - - uid: 1529 + - uid: 33890 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-23.5 parent: 2 - - uid: 1553 + - uid: 33891 components: - type: Transform pos: 46.5,-6.5 parent: 2 - - uid: 1554 + - uid: 33892 components: - type: Transform pos: 46.5,-7.5 parent: 2 - - uid: 1578 + - uid: 33893 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-42.5 parent: 2 - - uid: 1580 + - uid: 33894 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-37.5 parent: 2 - - uid: 1581 + - uid: 33895 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-35.5 parent: 2 - - uid: 1582 + - uid: 33896 components: - type: Transform pos: -12.5,-41.5 parent: 2 - - uid: 1583 + - uid: 33897 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-36.5 parent: 2 - - uid: 1584 + - uid: 33898 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-34.5 parent: 2 - - uid: 1588 + - uid: 33899 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-44.5 parent: 2 - - uid: 1634 + - uid: 33900 components: - type: Transform pos: 25.5,-34.5 parent: 2 - - uid: 1650 + - uid: 33901 components: - type: Transform pos: 53.5,-2.5 parent: 2 - - uid: 1651 + - uid: 33902 components: - type: Transform pos: 38.5,-22.5 parent: 2 - - uid: 1659 + - uid: 33903 components: - type: Transform pos: -1.5,-37.5 parent: 2 - - uid: 1660 + - uid: 33904 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-21.5 parent: 2 - - uid: 1665 + - uid: 33905 components: - type: Transform pos: -1.5,-8.5 parent: 2 - - uid: 1667 + - uid: 33906 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-3.5 parent: 2 - - uid: 1668 + - uid: 33907 components: - type: Transform pos: -8.5,-7.5 parent: 2 - - uid: 1669 + - uid: 33908 components: - type: Transform pos: -8.5,-9.5 parent: 2 - - uid: 1670 + - uid: 33909 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-3.5 parent: 2 - - uid: 1688 + - uid: 33910 components: - type: Transform pos: 36.5,-25.5 parent: 2 - - uid: 1689 + - uid: 33911 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-13.5 parent: 2 - - uid: 1690 + - uid: 33912 components: - type: Transform pos: 64.5,6.5 parent: 2 - - uid: 1712 + - uid: 33913 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,9.5 parent: 2 - - uid: 1715 + - uid: 33914 components: - type: Transform pos: 58.5,5.5 parent: 2 - - uid: 1731 + - uid: 33915 components: - type: Transform pos: -10.5,-4.5 parent: 2 - - uid: 1855 + - uid: 33916 components: - type: Transform pos: -10.5,-3.5 parent: 2 - - uid: 1863 + - uid: 33917 components: - type: Transform pos: -7.5,-9.5 parent: 2 - - uid: 1864 + - uid: 33918 components: - type: Transform pos: -6.5,-9.5 parent: 2 - - uid: 1883 + - uid: 33919 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-5.5 parent: 2 - - uid: 1893 + - uid: 33920 components: - type: Transform pos: -8.5,-37.5 parent: 2 - - uid: 1898 + - uid: 33921 components: - type: Transform pos: -5.5,-9.5 parent: 2 - - uid: 1900 + - uid: 33922 components: - type: Transform pos: -8.5,-6.5 parent: 2 - - uid: 1924 + - uid: 33923 components: - type: Transform pos: -8.5,-4.5 parent: 2 - - uid: 1928 + - uid: 33924 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-23.5 parent: 2 - - uid: 1981 + - uid: 33925 components: - type: Transform pos: -8.5,-5.5 parent: 2 - - uid: 1986 + - uid: 33926 components: - type: Transform pos: 55.5,16.5 parent: 2 - - uid: 1988 + - uid: 33927 components: - type: Transform pos: -8.5,-8.5 parent: 2 - - uid: 1992 + - uid: 33928 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-29.5 parent: 2 - - uid: 1996 + - uid: 33929 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-41.5 parent: 2 - - uid: 2054 + - uid: 33930 components: - type: Transform pos: 56.5,16.5 parent: 2 - - uid: 2058 + - uid: 33931 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,13.5 parent: 2 - - uid: 2063 + - uid: 33932 components: - type: Transform pos: 66.5,16.5 parent: 2 - - uid: 2079 + - uid: 33933 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-5.5 parent: 2 - - uid: 2080 + - uid: 33934 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-6.5 parent: 2 - - uid: 2090 + - uid: 33935 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-40.5 parent: 2 - - uid: 2113 + - uid: 33936 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-5.5 parent: 2 - - uid: 2123 + - uid: 33937 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-53.5 parent: 2 - - uid: 2124 + - uid: 33938 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-50.5 parent: 2 - - uid: 2130 + - uid: 33939 components: - type: Transform pos: 61.5,12.5 parent: 2 - - uid: 2133 + - uid: 33940 components: - type: Transform pos: 58.5,12.5 parent: 2 - - uid: 2134 + - uid: 33941 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-42.5 parent: 2 - - uid: 2272 + - uid: 33942 components: - type: Transform pos: 65.5,12.5 parent: 2 - - uid: 2275 + - uid: 33943 components: - type: Transform pos: 3.5,-38.5 parent: 2 - - uid: 2584 + - uid: 33944 components: - type: Transform pos: 45.5,16.5 parent: 2 - - uid: 2588 + - uid: 33945 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-21.5 parent: 2 - - uid: 2589 + - uid: 33946 components: - type: Transform pos: 50.5,1.5 parent: 2 - - uid: 2611 + - uid: 33947 components: - type: Transform pos: 45.5,13.5 parent: 2 - - uid: 2637 + - uid: 33948 components: - type: Transform pos: 55.5,1.5 parent: 2 - - uid: 2638 + - uid: 33949 components: - type: Transform pos: 42.5,-22.5 parent: 2 - - uid: 2639 + - uid: 33950 components: - type: Transform pos: 42.5,-21.5 parent: 2 - - uid: 2640 + - uid: 33951 components: - type: Transform pos: 42.5,-20.5 parent: 2 - - uid: 2641 + - uid: 33952 components: - type: Transform pos: 63.5,6.5 parent: 2 - - uid: 2643 + - uid: 33953 components: - type: Transform pos: 53.5,0.5 parent: 2 - - uid: 2644 + - uid: 33954 components: - type: Transform pos: 53.5,14.5 parent: 2 - - uid: 2645 + - uid: 33955 components: - type: Transform pos: 49.5,-2.5 parent: 2 - - uid: 2647 + - uid: 33956 components: - type: Transform pos: 58.5,2.5 parent: 2 - - uid: 2648 + - uid: 33957 components: - type: Transform pos: 60.5,2.5 parent: 2 - - uid: 2649 + - uid: 33958 components: - type: Transform pos: 61.5,2.5 parent: 2 - - uid: 2650 + - uid: 33959 components: - type: Transform pos: 55.5,7.5 parent: 2 - - uid: 2651 + - uid: 33960 components: - type: Transform pos: 48.5,5.5 parent: 2 - - uid: 2652 + - uid: 33961 components: - type: Transform pos: 47.5,5.5 parent: 2 - - uid: 2655 + - uid: 33962 components: - type: Transform pos: 47.5,2.5 parent: 2 - - uid: 2656 + - uid: 33963 components: - type: Transform pos: 65.5,2.5 parent: 2 - - uid: 2657 + - uid: 33964 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,5.5 parent: 2 - - uid: 2658 + - uid: 33965 components: - type: Transform pos: 58.5,6.5 parent: 2 - - uid: 2665 + - uid: 33966 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-21.5 parent: 2 - - uid: 2666 + - uid: 33967 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-21.5 parent: 2 - - uid: 2706 + - uid: 33968 components: - type: Transform pos: 50.5,-23.5 parent: 2 - - uid: 2707 + - uid: 33969 components: - type: Transform pos: 36.5,-28.5 parent: 2 - - uid: 2731 + - uid: 33970 components: - type: Transform pos: 60.5,12.5 parent: 2 - - uid: 2732 + - uid: 33971 components: - type: Transform pos: 62.5,12.5 parent: 2 - - uid: 2733 + - uid: 33972 components: - type: Transform pos: 58.5,7.5 parent: 2 - - uid: 2734 + - uid: 33973 components: - type: Transform pos: 63.5,12.5 parent: 2 - - uid: 2761 + - uid: 33974 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,17.5 parent: 2 - - uid: 2766 + - uid: 33975 components: - type: Transform rot: 1.5707963267948966 rad pos: 52.5,-20.5 parent: 2 - - uid: 2769 + - uid: 33976 components: - type: Transform pos: 45.5,-2.5 parent: 2 - - uid: 2771 + - uid: 33977 components: - type: Transform pos: 42.5,-18.5 parent: 2 - - uid: 2772 + - uid: 33978 components: - type: Transform pos: 42.5,-17.5 parent: 2 - - uid: 2774 + - uid: 33979 components: - type: Transform pos: 42.5,-19.5 parent: 2 - - uid: 2777 + - uid: 33980 components: - type: Transform pos: 46.5,-12.5 parent: 2 - - uid: 2778 + - uid: 33981 components: - type: Transform pos: 47.5,-12.5 parent: 2 - - uid: 2789 + - uid: 33982 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-6.5 parent: 2 - - uid: 2790 + - uid: 33983 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-4.5 parent: 2 - - uid: 2791 + - uid: 33984 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-3.5 parent: 2 - - uid: 2792 + - uid: 33985 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-2.5 parent: 2 - - uid: 2793 + - uid: 33986 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-1.5 parent: 2 - - uid: 2794 + - uid: 33987 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-0.5 parent: 2 - - uid: 2795 + - uid: 33988 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,0.5 parent: 2 - - uid: 2796 + - uid: 33989 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,1.5 parent: 2 - - uid: 2797 + - uid: 33990 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,2.5 parent: 2 - - uid: 2800 + - uid: 33991 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,2.5 parent: 2 - - uid: 2804 + - uid: 33992 components: - type: Transform pos: 55.5,5.5 parent: 2 - - uid: 2806 + - uid: 33993 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,10.5 parent: 2 - - uid: 2807 + - uid: 33994 components: - type: Transform pos: 59.5,2.5 parent: 2 - - uid: 2808 + - uid: 33995 components: - type: Transform pos: 53.5,-12.5 parent: 2 - - uid: 2809 + - uid: 33996 components: - type: Transform pos: 49.5,10.5 parent: 2 - - uid: 2812 + - uid: 33997 components: - type: Transform pos: 57.5,-16.5 parent: 2 - - uid: 2814 + - uid: 33998 components: - type: Transform pos: 53.5,-16.5 parent: 2 - - uid: 2815 + - uid: 33999 components: - type: Transform pos: 55.5,-16.5 parent: 2 - - uid: 2818 + - uid: 34000 components: - type: Transform pos: 45.5,10.5 parent: 2 - - uid: 2822 + - uid: 34001 components: - type: Transform pos: 62.5,2.5 parent: 2 - - uid: 2823 + - uid: 34002 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,17.5 parent: 2 - - uid: 2832 + - uid: 34003 components: - type: Transform pos: 55.5,-7.5 parent: 2 - - uid: 2864 + - uid: 34004 components: - type: Transform pos: 54.5,1.5 parent: 2 - - uid: 2876 + - uid: 34005 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-17.5 parent: 2 - - uid: 2882 + - uid: 34006 components: - type: Transform pos: 53.5,-1.5 parent: 2 - - uid: 2883 + - uid: 34007 components: - type: Transform pos: 55.5,-12.5 parent: 2 - - uid: 2884 + - uid: 34008 components: - type: Transform pos: 54.5,-12.5 parent: 2 - - uid: 2887 + - uid: 34009 components: - type: Transform pos: 41.5,0.5 parent: 2 - - uid: 3102 + - uid: 34010 components: - type: Transform pos: 39.5,3.5 parent: 2 - - uid: 3476 + - uid: 34011 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-73.5 parent: 2 - - uid: 3853 + - uid: 34012 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,17.5 parent: 2 - - uid: 4592 + - uid: 34013 components: - type: Transform pos: 12.5,23.5 parent: 2 - - uid: 4594 + - uid: 34014 components: - type: Transform pos: -10.5,-9.5 parent: 2 - - uid: 4596 + - uid: 34015 components: - type: Transform pos: 2.5,-2.5 parent: 2 - - uid: 4597 + - uid: 34016 components: - type: Transform pos: -10.5,-7.5 parent: 2 - - uid: 4604 + - uid: 34017 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-20.5 parent: 2 - - uid: 4792 + - uid: 34018 components: - type: Transform pos: 18.5,17.5 parent: 2 - - uid: 4797 + - uid: 34019 components: - type: Transform pos: -15.5,-41.5 parent: 2 - - uid: 4798 + - uid: 34020 components: - type: Transform pos: -17.5,-41.5 parent: 2 - - uid: 4800 + - uid: 34021 components: - type: Transform pos: 3.5,-36.5 parent: 2 - - uid: 4801 + - uid: 34022 components: - type: Transform pos: 3.5,-37.5 parent: 2 - - uid: 4803 + - uid: 34023 components: - type: Transform pos: 15.5,17.5 parent: 2 - - uid: 4812 + - uid: 34024 components: - type: Transform pos: 13.5,17.5 parent: 2 - - uid: 4814 + - uid: 34025 components: - type: Transform pos: -1.5,-45.5 parent: 2 - - uid: 4819 + - uid: 34026 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-55.5 parent: 2 - - uid: 4822 + - uid: 34027 components: - type: Transform rot: 3.141592653589793 rad @@ -232795,30457 +237530,30447 @@ entities: parent: 2 - type: AntiAnomalyZone zoneRadius: 20 - - uid: 4823 + - uid: 34028 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-30.5 parent: 2 - - uid: 4824 + - uid: 34029 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-28.5 parent: 2 - - uid: 4825 + - uid: 34030 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-27.5 parent: 2 - - uid: 4829 + - uid: 34031 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-38.5 parent: 2 - - uid: 4830 + - uid: 34032 components: - type: Transform pos: 19.5,17.5 parent: 2 - - uid: 4831 + - uid: 34033 components: - type: Transform pos: 13.5,23.5 parent: 2 - - uid: 4832 + - uid: 34034 components: - type: Transform pos: 15.5,23.5 parent: 2 - - uid: 4833 + - uid: 34035 components: - type: Transform pos: 14.5,23.5 parent: 2 - - uid: 5169 + - uid: 34036 components: - type: Transform pos: 53.5,13.5 parent: 2 - - uid: 5176 + - uid: 34037 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-8.5 parent: 2 - - uid: 5465 + - uid: 34038 components: - type: Transform pos: 55.5,2.5 parent: 2 - - uid: 5570 + - uid: 34039 components: - type: Transform pos: 45.5,-0.5 parent: 2 - - uid: 5604 + - uid: 34040 components: - type: Transform pos: 59.5,-10.5 parent: 2 - - uid: 5759 + - uid: 34041 components: - type: Transform pos: 60.5,-20.5 parent: 2 - - uid: 5799 + - uid: 34042 components: - type: Transform pos: 61.5,-20.5 parent: 2 - - uid: 5960 + - uid: 34043 components: - type: Transform pos: 18.5,23.5 parent: 2 - - uid: 5961 + - uid: 34044 components: - type: Transform pos: 17.5,23.5 parent: 2 - - uid: 5962 + - uid: 34045 components: - type: Transform pos: 16.5,23.5 parent: 2 - - uid: 5964 + - uid: 34046 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-20.5 parent: 2 - - uid: 5965 + - uid: 34047 components: - type: Transform pos: 19.5,23.5 parent: 2 - - uid: 5967 + - uid: 34048 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-22.5 parent: 2 - - uid: 5974 + - uid: 34049 components: - type: Transform pos: 2.5,-3.5 parent: 2 - - uid: 5976 + - uid: 34050 components: - type: Transform pos: 6.5,-45.5 parent: 2 - - uid: 5977 + - uid: 34051 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-21.5 parent: 2 - - uid: 5980 + - uid: 34052 components: - type: Transform pos: 60.5,15.5 parent: 2 - - uid: 5981 + - uid: 34053 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-55.5 parent: 2 - - uid: 5982 + - uid: 34054 components: - type: Transform pos: -14.5,-45.5 parent: 2 - - uid: 5984 + - uid: 34055 components: - type: Transform pos: -13.5,-45.5 parent: 2 - - uid: 5985 + - uid: 34056 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-55.5 parent: 2 - - uid: 6021 + - uid: 34057 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-14.5 parent: 2 - - uid: 6024 + - uid: 34058 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-18.5 parent: 2 - - uid: 6025 + - uid: 34059 components: - type: Transform pos: 59.5,-27.5 parent: 2 - - uid: 6026 + - uid: 34060 components: - type: Transform pos: 59.5,-25.5 parent: 2 - - uid: 6031 + - uid: 34061 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-17.5 parent: 2 - - uid: 6042 + - uid: 34062 components: - type: Transform pos: 62.5,-20.5 parent: 2 - - uid: 6046 + - uid: 34063 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-24.5 parent: 2 - - uid: 6161 + - uid: 34064 components: - type: Transform pos: -11.5,-45.5 parent: 2 - - uid: 6164 + - uid: 34065 components: - type: Transform pos: -1.5,-7.5 parent: 2 - - uid: 6166 + - uid: 34066 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-42.5 parent: 2 - - uid: 6168 + - uid: 34067 components: - type: Transform pos: -8.5,-45.5 parent: 2 - - uid: 6169 + - uid: 34068 components: - type: Transform pos: -10.5,-45.5 parent: 2 - - uid: 6170 + - uid: 34069 components: - type: Transform pos: -9.5,-45.5 parent: 2 - - uid: 6171 + - uid: 34070 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-42.5 parent: 2 - - uid: 6172 + - uid: 34071 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-55.5 parent: 2 - - uid: 6174 + - uid: 34072 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-42.5 parent: 2 - - uid: 6176 + - uid: 34073 components: - type: Transform pos: 5.5,-45.5 parent: 2 - - uid: 6177 + - uid: 34074 components: - type: Transform pos: 14.5,17.5 parent: 2 - - uid: 6183 + - uid: 34075 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-42.5 parent: 2 - - uid: 6186 + - uid: 34076 components: - type: Transform pos: 16.5,17.5 parent: 2 - - uid: 6188 + - uid: 34077 components: - type: Transform pos: 17.5,17.5 parent: 2 - - uid: 6189 + - uid: 34078 components: - type: Transform pos: 2.5,-4.5 parent: 2 - - uid: 6190 + - uid: 34079 components: - type: Transform pos: 2.5,-5.5 parent: 2 - - uid: 6191 + - uid: 34080 components: - type: Transform rot: 1.5707963267948966 rad pos: 133.5,-39.5 parent: 2 - - uid: 6192 + - uid: 34081 components: - type: Transform pos: -1.5,-5.5 parent: 2 - - uid: 6201 + - uid: 34082 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-30.5 parent: 2 - - uid: 6203 + - uid: 34083 components: - type: Transform pos: 18.5,24.5 parent: 2 - - uid: 6204 + - uid: 34084 components: - type: Transform pos: 16.5,24.5 parent: 2 - - uid: 6209 + - uid: 34085 components: - type: Transform pos: -1.5,-1.5 parent: 2 - - uid: 6210 + - uid: 34086 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,-47.5 parent: 2 - - uid: 6211 + - uid: 34087 components: - type: Transform pos: -10.5,-6.5 parent: 2 - - uid: 6212 + - uid: 34088 components: - type: Transform pos: -10.5,-5.5 parent: 2 - - uid: 6213 + - uid: 34089 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-47.5 parent: 2 - - uid: 6214 + - uid: 34090 components: - type: Transform pos: 13.5,24.5 parent: 2 - - uid: 6215 + - uid: 34091 components: - type: Transform pos: -9.5,-37.5 parent: 2 - - uid: 6222 + - uid: 34092 components: - type: Transform pos: 4.5,-26.5 parent: 2 - - uid: 6224 + - uid: 34093 components: - type: Transform pos: 3.5,-30.5 parent: 2 - - uid: 6225 + - uid: 34094 components: - type: Transform pos: 3.5,-34.5 parent: 2 - - uid: 6226 + - uid: 34095 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-55.5 parent: 2 - - uid: 6229 + - uid: 34096 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-42.5 parent: 2 - - uid: 6230 + - uid: 34097 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-55.5 parent: 2 - - uid: 6300 + - uid: 34098 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-3.5 parent: 2 - - uid: 6308 + - uid: 34099 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-7.5 parent: 2 - - uid: 6309 + - uid: 34100 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-55.5 parent: 2 - - uid: 6317 + - uid: 34101 components: - type: Transform pos: 2.5,-69.5 parent: 2 - - uid: 6983 + - uid: 34102 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-3.5 parent: 2 - - uid: 6985 + - uid: 34103 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-3.5 parent: 2 - - uid: 7066 + - uid: 34104 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-3.5 parent: 2 - - uid: 7067 + - uid: 34105 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-3.5 parent: 2 - - uid: 7084 + - uid: 34106 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 2 - - uid: 7112 + - uid: 34107 components: - type: Transform pos: 14.5,-26.5 parent: 2 - - uid: 7113 + - uid: 34108 components: - type: Transform pos: 15.5,-26.5 parent: 2 - - uid: 7149 + - uid: 34109 components: - type: Transform pos: 7.5,-51.5 parent: 2 - - uid: 7150 + - uid: 34110 components: - type: Transform pos: 1.5,-47.5 parent: 2 - - uid: 7152 + - uid: 34111 components: - type: Transform pos: 1.5,-48.5 parent: 2 - - uid: 7253 + - uid: 34112 components: - type: Transform pos: 14.5,24.5 parent: 2 - - uid: 7254 + - uid: 34113 components: - type: Transform pos: 1.5,-49.5 parent: 2 - - uid: 7255 + - uid: 34114 components: - type: Transform pos: 1.5,-50.5 parent: 2 - - uid: 7256 + - uid: 34115 components: - type: Transform pos: 1.5,-51.5 parent: 2 - - uid: 7316 + - uid: 34116 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-45.5 parent: 2 - - uid: 7317 + - uid: 34117 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-43.5 parent: 2 - - uid: 7318 + - uid: 34118 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-44.5 parent: 2 - - uid: 7319 + - uid: 34119 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-45.5 parent: 2 - - uid: 7320 + - uid: 34120 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-39.5 parent: 2 - - uid: 7321 + - uid: 34121 components: - type: Transform pos: 30.5,-40.5 parent: 2 - - uid: 7322 + - uid: 34122 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-45.5 parent: 2 - - uid: 7332 + - uid: 34123 components: - type: Transform pos: 1.5,-52.5 parent: 2 - - uid: 7343 + - uid: 34124 components: - type: Transform pos: 7.5,-50.5 parent: 2 - - uid: 7524 + - uid: 34125 components: - type: Transform pos: -1.5,-52.5 parent: 2 - - uid: 7631 + - uid: 34126 components: - type: Transform pos: 59.5,-24.5 parent: 2 - - uid: 7632 + - uid: 34127 components: - type: Transform pos: 49.5,5.5 parent: 2 - - uid: 7693 + - uid: 34128 components: - type: Transform pos: 66.5,-11.5 parent: 2 - - uid: 7694 + - uid: 34129 components: - type: Transform pos: 66.5,-13.5 parent: 2 - - uid: 7695 + - uid: 34130 components: - type: Transform pos: 66.5,-14.5 parent: 2 - - uid: 7696 + - uid: 34131 components: - type: Transform pos: 66.5,-12.5 parent: 2 - - uid: 7708 + - uid: 34132 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.5,-4.5 parent: 2 - - uid: 7770 + - uid: 34133 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-20.5 parent: 2 - - uid: 7780 + - uid: 34134 components: - type: Transform pos: 63.5,16.5 parent: 2 - - uid: 7781 + - uid: 34135 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,17.5 parent: 2 - - uid: 7796 + - uid: 34136 components: - type: Transform pos: 64.5,2.5 parent: 2 - - uid: 7797 + - uid: 34137 components: - type: Transform pos: 55.5,8.5 parent: 2 - - uid: 7799 + - uid: 34138 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,7.5 parent: 2 - - uid: 7800 + - uid: 34139 components: - type: Transform pos: 59.5,6.5 parent: 2 - - uid: 7801 + - uid: 34140 components: - type: Transform pos: 45.5,8.5 parent: 2 - - uid: 7804 + - uid: 34141 components: - type: Transform pos: 41.5,3.5 parent: 2 - - uid: 7805 + - uid: 34142 components: - type: Transform pos: 58.5,11.5 parent: 2 - - uid: 8673 + - uid: 34143 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-45.5 parent: 2 - - uid: 8746 + - uid: 34144 components: - type: Transform pos: 4.5,-14.5 parent: 2 - - uid: 8748 + - uid: 34145 components: - type: Transform pos: 18.5,-34.5 parent: 2 - - uid: 8749 + - uid: 34146 components: - type: Transform pos: 1.5,-14.5 parent: 2 - - uid: 8750 + - uid: 34147 components: - type: Transform pos: 15.5,-34.5 parent: 2 - - uid: 8773 + - uid: 34148 components: - type: Transform pos: 48.5,-12.5 parent: 2 - - uid: 8821 + - uid: 34149 components: - type: Transform pos: 46.5,-16.5 parent: 2 - - uid: 8912 + - uid: 34150 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-46.5 parent: 2 - - uid: 8928 + - uid: 34151 components: - type: Transform pos: 17.5,-34.5 parent: 2 - - uid: 9017 + - uid: 34152 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-1.5 parent: 2 - - uid: 9018 + - uid: 34153 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-2.5 parent: 2 - - uid: 9019 + - uid: 34154 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 2 - - uid: 9020 + - uid: 34155 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-2.5 parent: 2 - - uid: 9021 + - uid: 34156 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-2.5 parent: 2 - - uid: 9022 + - uid: 34157 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-2.5 parent: 2 - - uid: 9023 + - uid: 34158 components: - type: Transform pos: 2.5,-68.5 parent: 2 - - uid: 9025 + - uid: 34159 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-8.5 parent: 2 - - uid: 9036 + - uid: 34160 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-7.5 parent: 2 - - uid: 9059 + - uid: 34161 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-7.5 parent: 2 - - uid: 9060 + - uid: 34162 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-5.5 parent: 2 - - uid: 9061 + - uid: 34163 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-5.5 parent: 2 - - uid: 9063 + - uid: 34164 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-4.5 parent: 2 - - uid: 9064 + - uid: 34165 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-8.5 parent: 2 - - uid: 9067 + - uid: 34166 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-20.5 parent: 2 - - uid: 9068 + - uid: 34167 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,-14.5 parent: 2 - - uid: 9069 + - uid: 34168 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-20.5 parent: 2 - - uid: 9070 + - uid: 34169 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-20.5 parent: 2 - - uid: 9080 + - uid: 34170 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-18.5 parent: 2 - - uid: 9084 + - uid: 34171 components: - type: Transform pos: -1.5,-68.5 parent: 2 - - uid: 9085 + - uid: 34172 components: - type: Transform pos: -1.5,-9.5 parent: 2 - - uid: 9275 + - uid: 34173 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-37.5 parent: 2 - - uid: 9284 + - uid: 34174 components: - type: Transform pos: 49.5,0.5 parent: 2 - - uid: 9349 + - uid: 34175 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-8.5 parent: 2 - - uid: 9356 + - uid: 34176 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,17.5 parent: 2 - - uid: 9365 + - uid: 34177 components: - type: Transform pos: 59.5,12.5 parent: 2 - - uid: 9369 + - uid: 34178 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 2 - - uid: 9394 + - uid: 34179 components: - type: Transform pos: 61.5,16.5 parent: 2 - - uid: 9425 + - uid: 34180 components: - type: Transform pos: 46.5,5.5 parent: 2 - - uid: 9681 + - uid: 34181 components: - type: Transform pos: 58.5,-25.5 parent: 2 - - uid: 9685 + - uid: 34182 components: - type: Transform pos: 58.5,-21.5 parent: 2 - - uid: 9693 + - uid: 34183 components: - type: Transform pos: 61.5,-6.5 parent: 2 - - uid: 9694 + - uid: 34184 components: - type: Transform pos: 65.5,-20.5 parent: 2 - - uid: 9698 + - uid: 34185 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,9.5 parent: 2 - - uid: 9700 + - uid: 34186 components: - type: Transform pos: 46.5,-0.5 parent: 2 - - uid: 9702 + - uid: 34187 components: - type: Transform pos: 50.5,-2.5 parent: 2 - - uid: 9705 + - uid: 34188 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-20.5 parent: 2 - - uid: 9711 + - uid: 34189 components: - type: Transform pos: 49.5,6.5 parent: 2 - - uid: 9712 + - uid: 34190 components: - type: Transform pos: 59.5,-14.5 parent: 2 - - uid: 9723 + - uid: 34191 components: - type: Transform pos: 58.5,3.5 parent: 2 - - uid: 9724 + - uid: 34192 components: - type: Transform pos: 46.5,2.5 parent: 2 - - uid: 9734 + - uid: 34193 components: - type: Transform pos: 61.5,-3.5 parent: 2 - - uid: 9735 + - uid: 34194 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,0.5 parent: 2 - - uid: 9743 + - uid: 34195 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-21.5 parent: 2 - - uid: 9744 + - uid: 34196 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-20.5 parent: 2 - - uid: 9745 + - uid: 34197 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,12.5 parent: 2 - - uid: 9746 + - uid: 34198 components: - type: Transform pos: 62.5,-14.5 parent: 2 - - uid: 9747 + - uid: 34199 components: - type: Transform pos: 49.5,7.5 parent: 2 - - uid: 9748 + - uid: 34200 components: - type: Transform pos: 60.5,6.5 parent: 2 - - uid: 9749 + - uid: 34201 components: - type: Transform pos: 45.5,9.5 parent: 2 - - uid: 9751 + - uid: 34202 components: - type: Transform pos: 45.5,5.5 parent: 2 - - uid: 9757 + - uid: 34203 components: - type: Transform pos: 60.5,13.5 parent: 2 - - uid: 9759 + - uid: 34204 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,13.5 parent: 2 - - uid: 9760 + - uid: 34205 components: - type: Transform pos: 49.5,-1.5 parent: 2 - - uid: 9761 + - uid: 34206 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,11.5 parent: 2 - - uid: 9927 + - uid: 34207 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,17.5 parent: 2 - - uid: 9938 + - uid: 34208 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,7.5 parent: 2 - - uid: 9939 + - uid: 34209 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,6.5 parent: 2 - - uid: 9940 + - uid: 34210 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,12.5 parent: 2 - - uid: 9941 + - uid: 34211 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,11.5 parent: 2 - - uid: 9942 + - uid: 34212 components: - type: Transform pos: 60.5,-14.5 parent: 2 - - uid: 9943 + - uid: 34213 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,8.5 parent: 2 - - uid: 10073 + - uid: 34214 components: - type: Transform pos: -59.5,-26.5 parent: 2 - - uid: 10801 + - uid: 34215 components: - type: Transform rot: 3.141592653589793 rad pos: 132.5,-37.5 parent: 2 - - uid: 10803 + - uid: 34216 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-37.5 parent: 2 - - uid: 10913 + - uid: 34217 components: - type: Transform pos: 18.5,-31.5 parent: 2 - - uid: 10918 + - uid: 34218 components: - type: Transform pos: 14.5,-34.5 parent: 2 - - uid: 10955 + - uid: 34219 components: - type: Transform pos: 69.5,15.5 parent: 2 - - uid: 10967 + - uid: 34220 components: - type: Transform pos: 69.5,13.5 parent: 2 - - uid: 11032 + - uid: 34221 components: - type: Transform pos: 50.5,8.5 parent: 2 - - uid: 11033 + - uid: 34222 components: - type: Transform pos: 60.5,16.5 parent: 2 - - uid: 11045 + - uid: 34223 components: - type: Transform pos: 79.5,-10.5 parent: 2 - - uid: 11051 + - uid: 34224 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-36.5 parent: 2 - - uid: 11052 + - uid: 34225 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-34.5 parent: 2 - - uid: 11059 + - uid: 34226 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-33.5 parent: 2 - - uid: 11060 + - uid: 34227 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-33.5 parent: 2 - - uid: 11061 + - uid: 34228 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-40.5 parent: 2 - - uid: 11062 + - uid: 34229 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-39.5 parent: 2 - - uid: 11063 + - uid: 34230 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-38.5 parent: 2 - - uid: 11064 + - uid: 34231 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-37.5 parent: 2 - - uid: 11065 + - uid: 34232 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-36.5 parent: 2 - - uid: 11066 + - uid: 34233 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-35.5 parent: 2 - - uid: 11067 + - uid: 34234 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-34.5 parent: 2 - - uid: 11069 + - uid: 34235 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-32.5 parent: 2 - - uid: 11070 + - uid: 34236 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-31.5 parent: 2 - - uid: 11071 + - uid: 34237 components: - type: Transform pos: 3.5,-49.5 parent: 2 - - uid: 11075 + - uid: 34238 components: - type: Transform pos: 67.5,16.5 parent: 2 - - uid: 11129 + - uid: 34239 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-30.5 parent: 2 - - uid: 11130 + - uid: 34240 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-30.5 parent: 2 - - uid: 11132 + - uid: 34241 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-30.5 parent: 2 - - uid: 11134 + - uid: 34242 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-30.5 parent: 2 - - uid: 11135 + - uid: 34243 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-30.5 parent: 2 - - uid: 11136 + - uid: 34244 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-30.5 parent: 2 - - uid: 11140 + - uid: 34245 components: - type: Transform pos: 2.5,-45.5 parent: 2 - - uid: 11143 + - uid: 34246 components: - type: Transform pos: 2.5,-9.5 parent: 2 - - uid: 11461 + - uid: 34247 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-55.5 parent: 2 - - uid: 11462 + - uid: 34248 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-55.5 parent: 2 - - uid: 11463 + - uid: 34249 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-45.5 parent: 2 - - uid: 11465 + - uid: 34250 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-55.5 parent: 2 - - uid: 11466 + - uid: 34251 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-55.5 parent: 2 - - uid: 11470 + - uid: 34252 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-46.5 parent: 2 - - uid: 11471 + - uid: 34253 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-47.5 parent: 2 - - uid: 11472 + - uid: 34254 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-48.5 parent: 2 - - uid: 11473 + - uid: 34255 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-49.5 parent: 2 - - uid: 11474 + - uid: 34256 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-50.5 parent: 2 - - uid: 11475 + - uid: 34257 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-51.5 parent: 2 - - uid: 11476 + - uid: 34258 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-52.5 parent: 2 - - uid: 11477 + - uid: 34259 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-53.5 parent: 2 - - uid: 11478 + - uid: 34260 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-54.5 parent: 2 - - uid: 11479 + - uid: 34261 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-55.5 parent: 2 - - uid: 11492 + - uid: 34262 components: - type: Transform pos: 51.5,1.5 parent: 2 - - uid: 11526 + - uid: 34263 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-48.5 parent: 2 - - uid: 11605 + - uid: 34264 components: - type: Transform pos: 7.5,-33.5 parent: 2 - - uid: 11606 + - uid: 34265 components: - type: Transform pos: -15.5,-44.5 parent: 2 - - uid: 11619 + - uid: 34266 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-45.5 parent: 2 - - uid: 11648 + - uid: 34267 components: - type: Transform pos: 49.5,2.5 parent: 2 - - uid: 11649 + - uid: 34268 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-31.5 parent: 2 - - uid: 11654 + - uid: 34269 components: - type: Transform pos: 49.5,4.5 parent: 2 - - uid: 11655 + - uid: 34270 components: - type: Transform pos: 49.5,1.5 parent: 2 - - uid: 11656 + - uid: 34271 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-46.5 parent: 2 - - uid: 11657 + - uid: 34272 components: - type: Transform pos: 49.5,3.5 parent: 2 - - uid: 11658 + - uid: 34273 components: - type: Transform pos: 49.5,9.5 parent: 2 - - uid: 11659 + - uid: 34274 components: - type: Transform pos: 48.5,11.5 parent: 2 - - uid: 11660 + - uid: 34275 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-47.5 parent: 2 - - uid: 11665 + - uid: 34276 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-50.5 parent: 2 - - uid: 11674 + - uid: 34277 components: - type: Transform pos: 49.5,11.5 parent: 2 - - uid: 11678 + - uid: 34278 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-51.5 parent: 2 - - uid: 11685 + - uid: 34279 components: - type: Transform pos: 52.5,-16.5 parent: 2 - - uid: 11761 + - uid: 34280 components: - type: Transform pos: 58.5,-16.5 parent: 2 - - uid: 11762 + - uid: 34281 components: - type: Transform pos: 54.5,-16.5 parent: 2 - - uid: 11767 + - uid: 34282 components: - type: Transform pos: 64.5,12.5 parent: 2 - - uid: 11769 + - uid: 34283 components: - type: Transform pos: 49.5,-12.5 parent: 2 - - uid: 11901 + - uid: 34284 components: - type: Transform pos: 66.5,6.5 parent: 2 - - uid: 11904 + - uid: 34285 components: - type: Transform pos: 55.5,6.5 parent: 2 - - uid: 11905 + - uid: 34286 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-52.5 parent: 2 - - uid: 11909 + - uid: 34287 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-53.5 parent: 2 - - uid: 11911 + - uid: 34288 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-26.5 parent: 2 - - uid: 12078 + - uid: 34289 components: - type: Transform pos: -15.5,-45.5 parent: 2 - - uid: 12079 + - uid: 34290 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-26.5 parent: 2 - - uid: 12086 + - uid: 34291 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,21.5 parent: 2 - - uid: 12096 + - uid: 34292 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-42.5 parent: 2 - - uid: 12127 + - uid: 34293 components: - type: Transform pos: 6.5,-33.5 parent: 2 - - uid: 12160 + - uid: 34294 components: - type: Transform pos: 2.5,-14.5 parent: 2 - - uid: 12183 + - uid: 34295 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-42.5 parent: 2 - - uid: 12242 + - uid: 34296 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-42.5 parent: 2 - - uid: 12244 + - uid: 34297 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-16.5 parent: 2 - - uid: 12245 + - uid: 34298 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-15.5 parent: 2 - - uid: 12246 + - uid: 34299 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,21.5 parent: 2 - - uid: 12247 + - uid: 34300 components: - type: Transform pos: 19.5,-31.5 parent: 2 - - uid: 12278 + - uid: 34301 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-45.5 parent: 2 - - uid: 12322 + - uid: 34302 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-45.5 parent: 2 - - uid: 12325 + - uid: 34303 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-45.5 parent: 2 - - uid: 12660 + - uid: 34304 components: - type: Transform pos: 4.5,-49.5 parent: 2 - - uid: 12669 + - uid: 34305 components: - type: Transform pos: 63.5,2.5 parent: 2 - - uid: 12950 + - uid: 34306 components: - type: Transform pos: 59.5,-17.5 parent: 2 - - uid: 12955 + - uid: 34307 components: - type: Transform rot: 1.5707963267948966 rad pos: 113.5,-42.5 parent: 2 - - uid: 12989 + - uid: 34308 components: - type: Transform pos: 49.5,12.5 parent: 2 - - uid: 12990 + - uid: 34309 components: - type: Transform pos: 68.5,12.5 parent: 2 - - uid: 12991 + - uid: 34310 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,15.5 parent: 2 - - uid: 12992 + - uid: 34311 components: - type: Transform pos: 40.5,3.5 parent: 2 - - uid: 12994 + - uid: 34312 components: - type: Transform pos: 62.5,6.5 parent: 2 - - uid: 12995 + - uid: 34313 components: - type: Transform pos: 48.5,2.5 parent: 2 - - uid: 12996 + - uid: 34314 components: - type: Transform pos: 55.5,3.5 parent: 2 - - uid: 12997 + - uid: 34315 components: - type: Transform pos: 52.5,1.5 parent: 2 - - uid: 12999 + - uid: 34316 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,9.5 parent: 2 - - uid: 13000 + - uid: 34317 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-21.5 parent: 2 - - uid: 13013 + - uid: 34318 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-39.5 parent: 2 - - uid: 13251 + - uid: 34319 components: - type: Transform pos: 24.5,-40.5 parent: 2 - - uid: 13253 + - uid: 34320 components: - type: Transform pos: 24.5,-39.5 parent: 2 - - uid: 13258 + - uid: 34321 components: - type: Transform pos: 24.5,-38.5 parent: 2 - - uid: 13262 + - uid: 34322 components: - type: Transform pos: 24.5,-37.5 parent: 2 - - uid: 13264 + - uid: 34323 components: - type: Transform pos: 24.5,-36.5 parent: 2 - - uid: 13272 + - uid: 34324 components: - type: Transform pos: 84.5,-67.5 parent: 2 - - uid: 13285 + - uid: 34325 components: - type: Transform pos: 24.5,-35.5 parent: 2 - - uid: 13286 + - uid: 34326 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-45.5 parent: 2 - - uid: 13349 + - uid: 34327 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-39.5 parent: 2 - - uid: 13360 + - uid: 34328 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-39.5 parent: 2 - - uid: 13361 + - uid: 34329 components: - type: Transform pos: 27.5,-34.5 parent: 2 - - uid: 13363 + - uid: 34330 components: - type: Transform pos: 28.5,-34.5 parent: 2 - - uid: 13364 + - uid: 34331 components: - type: Transform pos: 30.5,-34.5 parent: 2 - - uid: 13365 + - uid: 34332 components: - type: Transform pos: 30.5,-35.5 parent: 2 - - uid: 13367 + - uid: 34333 components: - type: Transform pos: 9.5,-33.5 parent: 2 - - uid: 13368 + - uid: 34334 components: - type: Transform pos: 10.5,-33.5 parent: 2 - - uid: 13369 + - uid: 34335 components: - type: Transform pos: 10.5,-34.5 parent: 2 - - uid: 13370 + - uid: 34336 components: - type: Transform pos: 11.5,-34.5 parent: 2 - - uid: 13372 + - uid: 34337 components: - type: Transform pos: 14.5,-31.5 parent: 2 - - uid: 13373 + - uid: 34338 components: - type: Transform pos: 13.5,-31.5 parent: 2 - - uid: 13375 + - uid: 34339 components: - type: Transform pos: 16.5,-34.5 parent: 2 - - uid: 13376 + - uid: 34340 components: - type: Transform pos: 19.5,-34.5 parent: 2 - - uid: 13380 + - uid: 34341 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-45.5 parent: 2 - - uid: 13438 + - uid: 34342 components: - type: Transform pos: 24.5,-44.5 parent: 2 - - uid: 13439 + - uid: 34343 components: - type: Transform pos: 24.5,-43.5 parent: 2 - - uid: 13440 + - uid: 34344 components: - type: Transform pos: 24.5,-42.5 parent: 2 - - uid: 13455 + - uid: 34345 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-39.5 parent: 2 - - uid: 13481 + - uid: 34346 components: - type: Transform pos: 26.5,-34.5 parent: 2 - - uid: 13491 + - uid: 34347 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-46.5 parent: 2 - - uid: 13493 + - uid: 34348 components: - type: Transform pos: 85.5,-67.5 parent: 2 - - uid: 13522 + - uid: 34349 components: - type: Transform pos: 4.5,-50.5 parent: 2 - - uid: 13524 + - uid: 34350 components: - type: Transform pos: 4.5,-52.5 parent: 2 - - uid: 13528 + - uid: 34351 components: - type: Transform pos: 2.5,-49.5 parent: 2 - - uid: 13863 + - uid: 34352 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-6.5 parent: 2 - - uid: 13868 + - uid: 34353 components: - type: Transform pos: 64.5,16.5 parent: 2 - - uid: 13912 + - uid: 34354 components: - type: Transform pos: 59.5,-16.5 parent: 2 - - uid: 13958 + - uid: 34355 components: - type: Transform pos: 42.5,-16.5 parent: 2 - - uid: 13959 + - uid: 34356 components: - type: Transform pos: 51.5,-12.5 parent: 2 - - uid: 13961 + - uid: 34357 components: - type: Transform pos: 66.5,12.5 parent: 2 - - uid: 13972 + - uid: 34358 components: - type: Transform pos: 49.5,8.5 parent: 2 - - uid: 13973 + - uid: 34359 components: - type: Transform pos: 69.5,16.5 parent: 2 - - uid: 13977 + - uid: 34360 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,3.5 parent: 2 - - uid: 13979 + - uid: 34361 components: - type: Transform pos: 50.5,-12.5 parent: 2 - - uid: 14023 + - uid: 34362 components: - type: Transform pos: 7.5,-52.5 parent: 2 - - uid: 14030 + - uid: 34363 components: - type: Transform pos: 8.5,-52.5 parent: 2 - - uid: 14031 + - uid: 34364 components: - type: Transform pos: 9.5,-52.5 parent: 2 - - uid: 14064 + - uid: 34365 components: - type: Transform pos: 69.5,14.5 parent: 2 - - uid: 14080 + - uid: 34366 components: - type: Transform pos: 10.5,-52.5 parent: 2 - - uid: 14166 + - uid: 34367 components: - type: Transform pos: 11.5,-52.5 parent: 2 - - uid: 14167 + - uid: 34368 components: - type: Transform pos: 12.5,-52.5 parent: 2 - - uid: 14188 + - uid: 34369 components: - type: Transform pos: 13.5,-52.5 parent: 2 - - uid: 14198 + - uid: 34370 components: - type: Transform pos: 14.5,-52.5 parent: 2 - - uid: 14236 + - uid: 34371 components: - type: Transform pos: 15.5,-52.5 parent: 2 - - uid: 14246 + - uid: 34372 components: - type: Transform pos: 16.5,-52.5 parent: 2 - - uid: 14250 + - uid: 34373 components: - type: Transform pos: 50.5,-24.5 parent: 2 - - uid: 14261 + - uid: 34374 components: - type: Transform pos: 19.5,-52.5 parent: 2 - - uid: 14302 + - uid: 34375 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-45.5 parent: 2 - - uid: 14309 + - uid: 34376 components: - type: Transform pos: 4.5,-9.5 parent: 2 - - uid: 14320 + - uid: 34377 components: - type: Transform pos: 15.5,-48.5 parent: 2 - - uid: 14332 + - uid: 34378 components: - type: Transform pos: 52.5,-26.5 parent: 2 - - uid: 14461 + - uid: 34379 components: - type: Transform rot: -1.5707963267948966 rad pos: 110.5,-37.5 parent: 2 - - uid: 14472 + - uid: 34380 components: - type: Transform pos: 15.5,-47.5 parent: 2 - - uid: 14513 + - uid: 34381 components: - type: Transform pos: 3.5,-8.5 parent: 2 - - uid: 14519 + - uid: 34382 components: - type: Transform pos: 4.5,-8.5 parent: 2 - - uid: 14520 + - uid: 34383 components: - type: Transform pos: 4.5,-5.5 parent: 2 - - uid: 14526 + - uid: 34384 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-5.5 parent: 2 - - uid: 14535 + - uid: 34385 components: - type: Transform pos: 5.5,-9.5 parent: 2 - - uid: 14536 + - uid: 34386 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 2 - - uid: 14537 + - uid: 34387 components: - type: Transform pos: -1.5,-12.5 parent: 2 - - uid: 14547 + - uid: 34388 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,15.5 parent: 2 - - uid: 14550 + - uid: 34389 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-9.5 parent: 2 - - uid: 14559 + - uid: 34390 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-11.5 parent: 2 - - uid: 14564 + - uid: 34391 components: - type: Transform pos: 45.5,-1.5 parent: 2 - - uid: 14588 + - uid: 34392 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,18.5 parent: 2 - - uid: 14614 + - uid: 34393 components: - type: Transform pos: 40.5,-2.5 parent: 2 - - uid: 14625 + - uid: 34394 components: - type: Transform pos: 56.5,-26.5 parent: 2 - - uid: 14630 - components: - - type: Transform - pos: -10.5,17.5 - parent: 2 - - uid: 14702 + - uid: 34395 components: - type: Transform pos: 5.5,-49.5 parent: 2 - - uid: 14703 + - uid: 34396 components: - type: Transform pos: 7.5,-45.5 parent: 2 - - uid: 14707 + - uid: 34397 components: - type: Transform pos: -11.5,-31.5 parent: 2 - - uid: 14714 + - uid: 34398 components: - type: Transform pos: 16.5,-47.5 parent: 2 - - uid: 14742 + - uid: 34399 components: - type: Transform pos: 68.5,6.5 parent: 2 - - uid: 14775 + - uid: 34400 components: - type: Transform pos: 41.5,-2.5 parent: 2 - - uid: 14806 + - uid: 34401 components: - type: Transform pos: 10.5,-45.5 parent: 2 - - uid: 14807 + - uid: 34402 components: - type: Transform pos: 11.5,-45.5 parent: 2 - - uid: 14808 + - uid: 34403 components: - type: Transform pos: 12.5,-45.5 parent: 2 - - uid: 14819 + - uid: 34404 components: - type: Transform pos: 15.5,-45.5 parent: 2 - - uid: 14839 + - uid: 34405 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-16.5 parent: 2 - - uid: 14850 + - uid: 34406 components: - type: Transform pos: 54.5,-26.5 parent: 2 - - uid: 14860 + - uid: 34407 components: - type: Transform pos: 54.5,-6.5 parent: 2 - - uid: 14861 + - uid: 34408 components: - type: Transform pos: 59.5,-6.5 parent: 2 - - uid: 14863 + - uid: 34409 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-14.5 parent: 2 - - uid: 14866 + - uid: 34410 components: - type: Transform pos: 36.5,-23.5 parent: 2 - - uid: 14884 + - uid: 34411 components: - type: Transform pos: 42.5,-24.5 parent: 2 - - uid: 14886 + - uid: 34412 components: - type: Transform pos: 19.5,-47.5 parent: 2 - - uid: 14903 + - uid: 34413 components: - type: Transform pos: -9.5,-31.5 parent: 2 - - uid: 14904 + - uid: 34414 components: - type: Transform pos: -8.5,-31.5 parent: 2 - - uid: 14934 + - uid: 34415 components: - type: Transform pos: -6.5,-31.5 parent: 2 - - uid: 14935 + - uid: 34416 components: - type: Transform pos: -5.5,-31.5 parent: 2 - - uid: 14937 + - uid: 34417 components: - type: Transform pos: -3.5,-31.5 parent: 2 - - uid: 14938 + - uid: 34418 components: - type: Transform pos: -2.5,-31.5 parent: 2 - - uid: 14939 + - uid: 34419 components: - type: Transform pos: -2.5,-32.5 parent: 2 - - uid: 14945 + - uid: 34420 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-5.5 parent: 2 - - uid: 14951 + - uid: 34421 components: - type: Transform pos: -9.5,-19.5 parent: 2 - - uid: 14969 + - uid: 34422 components: - type: Transform pos: -3.5,-20.5 parent: 2 - - uid: 14970 + - uid: 34423 components: - type: Transform pos: -3.5,-21.5 parent: 2 - - uid: 14971 + - uid: 34424 components: - type: Transform pos: -2.5,-21.5 parent: 2 - - uid: 14972 + - uid: 34425 components: - type: Transform pos: -1.5,-21.5 parent: 2 - - uid: 15020 + - uid: 34426 components: - type: Transform pos: 2.5,-21.5 parent: 2 - - uid: 15045 + - uid: 34427 components: - type: Transform - pos: -9.5,17.5 + pos: -16.5,9.5 parent: 2 - - uid: 15056 + - uid: 34428 components: - type: Transform pos: 3.5,-21.5 parent: 2 - - uid: 15158 + - uid: 34429 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-19.5 parent: 2 - - uid: 15188 + - uid: 34430 components: - type: Transform pos: -12.5,-21.5 parent: 2 - - uid: 15202 + - uid: 34431 components: - type: Transform pos: -12.5,-23.5 parent: 2 - - uid: 15203 + - uid: 34432 components: - type: Transform pos: -10.5,-20.5 parent: 2 - - uid: 15252 + - uid: 34433 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-25.5 parent: 2 - - uid: 15253 + - uid: 34434 components: - type: Transform pos: 59.5,-19.5 parent: 2 - - uid: 15285 + - uid: 34435 components: - type: Transform pos: 49.5,-0.5 parent: 2 - - uid: 15286 + - uid: 34436 components: - type: Transform pos: 53.5,-4.5 parent: 2 - - uid: 15289 + - uid: 34437 components: - type: Transform pos: 64.5,-20.5 parent: 2 - - uid: 15296 + - uid: 34438 components: - type: Transform pos: 52.5,-2.5 parent: 2 - - uid: 15298 + - uid: 34439 components: - type: Transform pos: 37.5,-22.5 parent: 2 - - uid: 15324 + - uid: 34440 components: - type: Transform pos: -9.5,-20.5 parent: 2 - - uid: 15326 + - uid: 34441 components: - type: Transform pos: -9.5,-21.5 parent: 2 - - uid: 15353 + - uid: 34442 components: - type: Transform pos: -9.5,-22.5 parent: 2 - - uid: 15354 + - uid: 34443 components: - type: Transform pos: -9.5,-23.5 parent: 2 - - uid: 15355 + - uid: 34444 components: - type: Transform pos: -9.5,-24.5 parent: 2 - - uid: 15356 + - uid: 34445 components: - type: Transform pos: -9.5,-25.5 parent: 2 - - uid: 15359 + - uid: 34446 components: - type: Transform pos: -9.5,-28.5 parent: 2 - - uid: 15360 + - uid: 34447 components: - type: Transform pos: -8.5,-28.5 parent: 2 - - uid: 15361 + - uid: 34448 components: - type: Transform pos: -7.5,-28.5 parent: 2 - - uid: 15394 + - uid: 34449 components: - type: Transform pos: 65.5,16.5 parent: 2 - - uid: 15403 + - uid: 34450 components: - type: Transform pos: -12.5,-25.5 parent: 2 - - uid: 15412 + - uid: 34451 components: - type: Transform pos: -6.5,-28.5 parent: 2 - - uid: 15418 + - uid: 34452 components: - type: Transform pos: 60.5,-6.5 parent: 2 - - uid: 15438 + - uid: 34453 components: - type: Transform pos: 59.5,-26.5 parent: 2 - - uid: 15441 + - uid: 34454 components: - type: Transform pos: 42.5,-25.5 parent: 2 - - uid: 15442 + - uid: 34455 components: - type: Transform pos: 39.5,0.5 parent: 2 - - uid: 15448 + - uid: 34456 components: - type: Transform pos: 38.5,-28.5 parent: 2 - - uid: 15460 + - uid: 34457 components: - type: Transform pos: -6.5,-29.5 parent: 2 - - uid: 15467 + - uid: 34458 components: - type: Transform pos: 53.5,-6.5 parent: 2 - - uid: 15475 + - uid: 34459 components: - type: Transform pos: 36.5,-26.5 parent: 2 - - uid: 15479 + - uid: 34460 components: - type: Transform pos: -6.5,-30.5 parent: 2 - - uid: 15591 + - uid: 34461 components: - type: Transform pos: 39.5,-28.5 parent: 2 - - uid: 15723 + - uid: 34462 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,1.5 parent: 2 - - uid: 15830 + - uid: 34463 components: - type: Transform pos: 40.5,-28.5 parent: 2 - - uid: 16226 + - uid: 34464 components: - type: Transform pos: 53.5,-5.5 parent: 2 - - uid: 16231 + - uid: 34465 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-20.5 parent: 2 - - uid: 16233 + - uid: 34466 components: - type: Transform pos: 47.5,-0.5 parent: 2 - - uid: 16243 + - uid: 34467 components: - type: Transform pos: 47.5,-16.5 parent: 2 - - uid: 16624 + - uid: 34468 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,16.5 parent: 2 - - uid: 16627 + - uid: 34469 components: - type: Transform pos: 59.5,-20.5 parent: 2 - - uid: 16660 + - uid: 34470 components: - type: Transform pos: 41.5,-28.5 parent: 2 - - uid: 16663 + - uid: 34471 components: - type: Transform pos: 65.5,6.5 parent: 2 - - uid: 16664 + - uid: 34472 components: - type: Transform pos: 61.5,6.5 parent: 2 - - uid: 16665 + - uid: 34473 components: - type: Transform pos: 51.5,-24.5 parent: 2 - - uid: 16668 + - uid: 34474 components: - type: Transform pos: 53.5,1.5 parent: 2 - - uid: 16744 + - uid: 34475 components: - type: Transform pos: 6.5,-9.5 parent: 2 - - uid: 16745 + - uid: 34476 components: - type: Transform pos: 7.5,-9.5 parent: 2 - - uid: 16746 + - uid: 34477 components: - type: Transform pos: 8.5,-9.5 parent: 2 - - uid: 16747 + - uid: 34478 components: - type: Transform pos: 9.5,-9.5 parent: 2 - - uid: 16748 + - uid: 34479 components: - type: Transform pos: 10.5,-9.5 parent: 2 - - uid: 16750 + - uid: 34480 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 2 - - uid: 16751 + - uid: 34481 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-6.5 parent: 2 - - uid: 16752 + - uid: 34482 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-6.5 parent: 2 - - uid: 16753 + - uid: 34483 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-5.5 parent: 2 - - uid: 16824 + - uid: 34484 components: - type: Transform pos: -18.5,-19.5 parent: 2 - - uid: 16827 + - uid: 34485 components: - type: Transform pos: -18.5,-20.5 parent: 2 - - uid: 16828 + - uid: 34486 components: - type: Transform pos: -17.5,-20.5 parent: 2 - - uid: 16829 + - uid: 34487 components: - type: Transform pos: -16.5,-20.5 parent: 2 - - uid: 16830 + - uid: 34488 components: - type: Transform pos: -14.5,-20.5 parent: 2 - - uid: 16888 + - uid: 34489 components: - type: Transform pos: 67.5,6.5 parent: 2 - - uid: 16889 + - uid: 34490 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-6.5 parent: 2 - - uid: 16891 + - uid: 34491 components: - type: Transform rot: 3.141592653589793 rad pos: 67.5,-21.5 parent: 2 - - uid: 16897 + - uid: 34492 components: - type: Transform pos: 42.5,-28.5 parent: 2 - - uid: 16990 + - uid: 34493 components: - type: Transform pos: 47.5,-6.5 parent: 2 - - uid: 16995 + - uid: 34494 components: - type: Transform pos: 61.5,1.5 parent: 2 - - uid: 17353 + - uid: 34495 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-0.5 parent: 2 - - uid: 17354 + - uid: 34496 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-0.5 parent: 2 - - uid: 17355 + - uid: 34497 components: - type: Transform pos: 61.5,0.5 parent: 2 - - uid: 17373 + - uid: 34498 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-23.5 parent: 2 - - uid: 17399 + - uid: 34499 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-25.5 parent: 2 - - uid: 17432 + - uid: 34500 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-22.5 parent: 2 - - uid: 17458 + - uid: 34501 components: - type: Transform pos: 55.5,19.5 parent: 2 - - uid: 17473 + - uid: 34502 components: - type: Transform pos: 55.5,18.5 parent: 2 - - uid: 17482 + - uid: 34503 components: - type: Transform pos: 44.5,-21.5 parent: 2 - - uid: 17503 + - uid: 34504 components: - type: Transform pos: 55.5,-26.5 parent: 2 - - uid: 17504 + - uid: 34505 components: - type: Transform pos: 53.5,-26.5 parent: 2 - - uid: 17539 + - uid: 34506 components: - type: Transform pos: 57.5,-26.5 parent: 2 - - uid: 17589 + - uid: 34507 components: - type: Transform pos: 51.5,-26.5 parent: 2 - - uid: 17592 + - uid: 34508 components: - type: Transform pos: 58.5,-20.5 parent: 2 - - uid: 17606 + - uid: 34509 components: - type: Transform pos: 65.5,-10.5 parent: 2 - - uid: 17612 + - uid: 34510 components: - type: Transform pos: 61.5,-2.5 parent: 2 - - uid: 17670 + - uid: 34511 components: - type: Transform pos: 61.5,-0.5 parent: 2 - - uid: 17684 + - uid: 34512 components: - type: Transform pos: 61.5,-1.5 parent: 2 - - uid: 17794 + - uid: 34513 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-16.5 parent: 2 - - uid: 17800 + - uid: 34514 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-17.5 parent: 2 - - uid: 17804 + - uid: 34515 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,20.5 parent: 2 - - uid: 17889 + - uid: 34516 components: - type: Transform pos: -4.5,-20.5 parent: 2 - - uid: 17899 + - uid: 34517 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-6.5 parent: 2 - - uid: 17945 + - uid: 34518 components: - type: Transform pos: 67.5,12.5 parent: 2 - - uid: 17986 + - uid: 34519 components: - type: Transform pos: 58.5,-79.5 parent: 2 - - uid: 17989 + - uid: 34520 components: - type: Transform pos: -8.5,-20.5 parent: 2 - - uid: 17991 + - uid: 34521 components: - type: Transform pos: -6.5,-20.5 parent: 2 - - uid: 18051 + - uid: 34522 components: - type: Transform pos: -5.5,-20.5 parent: 2 - - uid: 18258 + - uid: 34523 components: - type: Transform pos: 59.5,-83.5 parent: 2 - - uid: 18274 + - uid: 34524 components: - type: Transform pos: 46.5,-21.5 parent: 2 - - uid: 18275 + - uid: 34525 components: - type: Transform pos: 46.5,-20.5 parent: 2 - - uid: 18276 + - uid: 34526 components: - type: Transform pos: 55.5,-10.5 parent: 2 - - uid: 18278 + - uid: 34527 components: - type: Transform pos: 55.5,-11.5 parent: 2 - - uid: 18279 + - uid: 34528 components: - type: Transform pos: 53.5,-0.5 parent: 2 - - uid: 18284 + - uid: 34529 components: - type: Transform pos: 62.5,-10.5 parent: 2 - - uid: 18285 + - uid: 34530 components: - type: Transform pos: 46.5,-25.5 parent: 2 - - uid: 18286 + - uid: 34531 components: - type: Transform pos: 61.5,-10.5 parent: 2 - - uid: 18289 + - uid: 34532 components: - type: Transform pos: 60.5,-10.5 parent: 2 - - uid: 18290 + - uid: 34533 components: - type: Transform pos: 66.5,-10.5 parent: 2 - - uid: 18293 + - uid: 34534 components: - type: Transform pos: 64.5,-10.5 parent: 2 - - uid: 18294 + - uid: 34535 components: - type: Transform pos: 59.5,-22.5 parent: 2 - - uid: 18295 + - uid: 34536 components: - type: Transform pos: 59.5,-23.5 parent: 2 - - uid: 18302 + - uid: 34537 components: - type: Transform pos: 44.5,-25.5 parent: 2 - - uid: 18528 + - uid: 34538 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,21.5 parent: 2 - - uid: 18541 + - uid: 34539 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 + - uid: 34540 components: - type: Transform pos: 17.5,24.5 parent: 2 - - uid: 18550 + - uid: 34541 components: - type: Transform pos: 15.5,24.5 parent: 2 - - uid: 18674 + - uid: 34542 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,16.5 parent: 2 - - uid: 18679 + - uid: 34543 components: - type: Transform pos: 70.5,-10.5 parent: 2 - - uid: 18680 + - uid: 34544 components: - type: Transform pos: 70.5,-14.5 parent: 2 - - uid: 18682 + - uid: 34545 components: - type: Transform pos: 67.5,-10.5 parent: 2 - - uid: 18715 + - uid: 34546 components: - type: Transform pos: 70.5,-13.5 parent: 2 - - uid: 18739 + - uid: 34547 components: - type: Transform pos: 68.5,-10.5 parent: 2 - - uid: 18944 + - uid: 34548 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,1.5 parent: 2 - - uid: 19517 + - uid: 34549 components: - type: Transform pos: 50.5,12.5 parent: 2 - - uid: 19530 + - uid: 34550 components: - type: Transform pos: 55.5,12.5 parent: 2 - - uid: 19532 + - uid: 34551 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-9.5 parent: 2 - - uid: 19542 + - uid: 34552 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-2.5 parent: 2 - - uid: 19545 + - uid: 34553 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-7.5 parent: 2 - - uid: 19554 + - uid: 34554 components: - type: Transform pos: 63.5,-10.5 parent: 2 - - uid: 19557 + - uid: 34555 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-10.5 parent: 2 - - uid: 19570 + - uid: 34556 components: - type: Transform pos: 54.5,12.5 parent: 2 - - uid: 19596 - components: - - type: Transform - pos: -17.5,4.5 - parent: 2 - - uid: 19597 - components: - - type: Transform - pos: -16.5,4.5 - parent: 2 - - uid: 19602 + - uid: 34557 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,15.5 parent: 2 - - uid: 19609 + - uid: 34558 components: - type: Transform pos: 54.5,8.5 parent: 2 - - uid: 19623 + - uid: 34559 components: - type: Transform pos: 61.5,-4.5 parent: 2 - - uid: 19625 + - uid: 34560 components: - type: Transform pos: 61.5,-5.5 parent: 2 - - uid: 19630 + - uid: 34561 components: - type: Transform pos: -12.5,10.5 parent: 2 - - uid: 19631 + - uid: 34562 components: - type: Transform pos: 52.5,8.5 parent: 2 - - uid: 19634 + - uid: 34563 components: - type: Transform pos: 53.5,8.5 parent: 2 - - uid: 19635 + - uid: 34564 components: - type: Transform pos: 53.5,16.5 parent: 2 - - uid: 19636 + - uid: 34565 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,-11.5 parent: 2 - - uid: 19644 + - uid: 34566 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,-27.5 parent: 2 - - uid: 22158 + - uid: 34567 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 34568 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 + - uid: 34569 components: - type: Transform pos: 39.5,-21.5 parent: 2 - - uid: 22160 + - uid: 34570 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-21.5 parent: 2 - - uid: 22252 + - uid: 34571 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-8.5 parent: 2 - - uid: 22254 + - uid: 34572 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,2.5 parent: 2 - - uid: 22264 + - uid: 34573 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-22.5 parent: 2 - - uid: 22377 + - uid: 34574 components: - type: Transform pos: 87.5,-65.5 parent: 2 - - uid: 22389 + - uid: 34575 components: - type: Transform pos: 70.5,-12.5 parent: 2 - - uid: 22418 + - uid: 34576 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-10.5 parent: 2 - - uid: 22427 + - uid: 34577 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-9.5 parent: 2 - - uid: 22466 + - uid: 34578 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-4.5 parent: 2 - - uid: 23015 + - uid: 34579 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-3.5 parent: 2 - - uid: 23016 + - uid: 34580 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-9.5 parent: 2 - - uid: 23026 + - uid: 34581 components: - type: Transform pos: 87.5,-67.5 parent: 2 - - uid: 23112 + - uid: 34582 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-6.5 parent: 2 - - uid: 23122 + - uid: 34583 components: - type: Transform pos: 39.5,-22.5 parent: 2 - - uid: 23123 + - uid: 34584 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,0.5 parent: 2 - - uid: 23126 + - uid: 34585 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-9.5 parent: 2 - - uid: 23128 + - uid: 34586 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-1.5 parent: 2 - - uid: 23129 + - uid: 34587 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-0.5 parent: 2 - - uid: 23216 + - uid: 34588 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,0.5 parent: 2 - - uid: 23218 + - uid: 34589 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,3.5 parent: 2 - - uid: 23231 + - uid: 34590 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,1.5 parent: 2 - - uid: 23239 + - uid: 34591 components: - type: Transform pos: 87.5,-66.5 parent: 2 - - uid: 23249 + - uid: 34592 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,5.5 parent: 2 - - uid: 23260 + - uid: 34593 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,6.5 parent: 2 - - uid: 23269 + - uid: 34594 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-9.5 parent: 2 - - uid: 23290 + - uid: 34595 components: - type: Transform pos: 86.5,-67.5 parent: 2 - - uid: 23298 + - uid: 34596 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 parent: 2 - - uid: 23307 + - uid: 34597 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,2.5 parent: 2 - - uid: 23308 + - uid: 34598 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,2.5 parent: 2 - - uid: 23309 + - uid: 34599 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,2.5 parent: 2 - - uid: 23327 + - uid: 34600 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-5.5 parent: 2 - - uid: 23335 + - uid: 34601 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-5.5 parent: 2 - - uid: 23342 + - uid: 34602 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-5.5 parent: 2 - - uid: 23345 + - uid: 34603 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-5.5 parent: 2 - - uid: 23346 + - uid: 34604 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,8.5 parent: 2 - - uid: 23533 + - uid: 34605 components: - type: Transform rot: 1.5707963267948966 rad pos: 132.5,-39.5 parent: 2 - - uid: 23534 + - uid: 34606 components: - type: Transform rot: -1.5707963267948966 rad pos: 114.5,-37.5 parent: 2 - - uid: 23535 + - uid: 34607 components: - type: Transform rot: -1.5707963267948966 rad pos: 111.5,-37.5 parent: 2 - - uid: 23536 + - uid: 34608 components: - type: Transform rot: -1.5707963267948966 rad pos: 113.5,-37.5 parent: 2 - - uid: 23538 + - uid: 34609 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,8.5 parent: 2 - - uid: 23631 + - uid: 34610 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,3.5 parent: 2 - - uid: 23632 + - uid: 34611 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,7.5 parent: 2 - - uid: 23633 + - uid: 34612 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,5.5 parent: 2 - - uid: 23634 + - uid: 34613 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,6.5 parent: 2 - - uid: 23635 + - uid: 34614 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,7.5 parent: 2 - - uid: 23636 + - uid: 34615 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,8.5 parent: 2 - - uid: 23637 + - uid: 34616 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,8.5 parent: 2 - - uid: 23638 + - uid: 34617 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,7.5 parent: 2 - - uid: 23639 + - uid: 34618 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,7.5 parent: 2 - - uid: 23640 + - uid: 34619 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-5.5 parent: 2 - - uid: 23641 + - uid: 34620 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,7.5 parent: 2 - - uid: 23711 + - uid: 34621 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-16.5 parent: 2 - - uid: 23720 + - uid: 34622 components: - type: Transform pos: 87.5,-64.5 parent: 2 - - uid: 23772 + - uid: 34623 components: - type: Transform rot: -1.5707963267948966 rad pos: 112.5,-37.5 parent: 2 - - uid: 23852 + - uid: 34624 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,7.5 parent: 2 - - uid: 23853 + - uid: 34625 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,7.5 parent: 2 - - uid: 23854 + - uid: 34626 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-9.5 parent: 2 - - uid: 23922 + - uid: 34627 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-1.5 parent: 2 - - uid: 23924 + - uid: 34628 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-4.5 parent: 2 - - uid: 23926 + - uid: 34629 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-3.5 parent: 2 - - uid: 23933 + - uid: 34630 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-0.5 parent: 2 - - uid: 23934 + - uid: 34631 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,1.5 parent: 2 - - uid: 23937 + - uid: 34632 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,2.5 parent: 2 - - uid: 23943 + - uid: 34633 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,2.5 parent: 2 - - uid: 23948 + - uid: 34634 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,2.5 parent: 2 - - uid: 23956 + - uid: 34635 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,2.5 parent: 2 - - uid: 23963 + - uid: 34636 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,2.5 parent: 2 - - uid: 23987 + - uid: 34637 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,2.5 parent: 2 - - uid: 24007 + - uid: 34638 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,3.5 parent: 2 - - uid: 24008 + - uid: 34639 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,4.5 parent: 2 - - uid: 24009 + - uid: 34640 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,5.5 parent: 2 - - uid: 24026 + - uid: 34641 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,6.5 parent: 2 - - uid: 24027 + - uid: 34642 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,0.5 parent: 2 - - uid: 24028 + - uid: 34643 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,0.5 parent: 2 - - uid: 24029 + - uid: 34644 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,0.5 parent: 2 - - uid: 24030 + - uid: 34645 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,0.5 parent: 2 - - uid: 24123 + - uid: 34646 components: - type: Transform pos: 51.5,17.5 parent: 2 - - uid: 24186 + - uid: 34647 components: - type: Transform pos: 50.5,17.5 parent: 2 - - uid: 24202 + - uid: 34648 components: - type: Transform pos: 53.5,17.5 parent: 2 - - uid: 24290 + - uid: 34649 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-4.5 parent: 2 - - uid: 24338 + - uid: 34650 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-21.5 parent: 2 - - uid: 24418 + - uid: 34651 components: - type: Transform pos: 49.5,17.5 parent: 2 - - uid: 24556 + - uid: 34652 components: - type: Transform pos: 70.5,-11.5 parent: 2 - - uid: 24619 + - uid: 34653 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,19.5 parent: 2 - - uid: 24654 + - uid: 34654 components: - type: Transform pos: 53.5,-24.5 parent: 2 - - uid: 24799 + - uid: 34655 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-16.5 parent: 2 - - uid: 24812 + - uid: 34656 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,-16.5 parent: 2 - - uid: 24826 + - uid: 34657 components: - type: Transform pos: 45.5,15.5 parent: 2 - - uid: 24829 + - uid: 34658 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,14.5 parent: 2 - - uid: 24868 + - uid: 34659 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-16.5 parent: 2 - - uid: 24870 + - uid: 34660 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-16.5 parent: 2 - - uid: 24872 + - uid: 34661 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-14.5 parent: 2 - - uid: 24997 + - uid: 34662 components: - type: Transform pos: 68.5,0.5 parent: 2 - - uid: 24998 + - uid: 34663 components: - type: Transform pos: 70.5,0.5 parent: 2 - - uid: 25067 + - uid: 34664 components: - type: Transform pos: -8.5,-24.5 parent: 2 - - uid: 25068 + - uid: 34665 components: - type: Transform pos: -7.5,-24.5 parent: 2 - - uid: 25069 + - uid: 34666 components: - type: Transform pos: -6.5,-24.5 parent: 2 - - uid: 25116 + - uid: 34667 components: - type: Transform pos: 1.5,-46.5 parent: 2 - - uid: 25270 + - uid: 34668 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,0.5 parent: 2 - - uid: 25285 + - uid: 34669 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-41.5 parent: 2 - - uid: 25305 + - uid: 34670 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-0.5 parent: 2 - - uid: 25312 + - uid: 34671 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,1.5 parent: 2 - - uid: 25313 + - uid: 34672 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,0.5 parent: 2 - - uid: 25337 + - uid: 34673 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-0.5 parent: 2 - - uid: 25379 + - uid: 34674 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,1.5 parent: 2 - - uid: 25394 + - uid: 34675 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,0.5 parent: 2 - - uid: 25400 + - uid: 34676 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,-0.5 parent: 2 - - uid: 25454 + - uid: 34677 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,2.5 parent: 2 - - uid: 25455 + - uid: 34678 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,2.5 parent: 2 - - uid: 25456 + - uid: 34679 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,2.5 parent: 2 - - uid: 25457 + - uid: 34680 components: - type: Transform rot: 1.5707963267948966 rad pos: 86.5,2.5 parent: 2 - - uid: 25458 + - uid: 34681 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,2.5 parent: 2 - - uid: 25459 + - uid: 34682 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,2.5 parent: 2 - - uid: 25688 + - uid: 34683 components: - type: Transform pos: 89.5,0.5 parent: 2 - - uid: 25689 + - uid: 34684 components: - type: Transform pos: 90.5,0.5 parent: 2 - - uid: 25690 + - uid: 34685 components: - type: Transform pos: 90.5,-0.5 parent: 2 - - uid: 25691 + - uid: 34686 components: - type: Transform pos: 90.5,-2.5 parent: 2 - - uid: 25783 + - uid: 34687 components: - type: Transform pos: 90.5,-8.5 parent: 2 - - uid: 25807 + - uid: 34688 components: - type: Transform pos: 90.5,-1.5 parent: 2 - - uid: 25808 + - uid: 34689 components: - type: Transform pos: 90.5,-11.5 parent: 2 - - uid: 25809 + - uid: 34690 components: - type: Transform pos: 90.5,-9.5 parent: 2 - - uid: 25810 + - uid: 34691 components: - type: Transform pos: 90.5,-10.5 parent: 2 - - uid: 25814 + - uid: 34692 components: - type: Transform pos: 79.5,-12.5 parent: 2 - - uid: 25815 + - uid: 34693 components: - type: Transform pos: 79.5,-13.5 parent: 2 - - uid: 25816 + - uid: 34694 components: - type: Transform pos: 79.5,-11.5 parent: 2 - - uid: 25846 + - uid: 34695 components: - type: Transform pos: -0.5,-37.5 parent: 2 - - uid: 25847 + - uid: 34696 components: - type: Transform pos: 79.5,-9.5 parent: 2 - - uid: 25909 + - uid: 34697 components: - type: Transform pos: 78.5,-9.5 parent: 2 - - uid: 25962 + - uid: 34698 components: - type: Transform pos: 78.5,-13.5 parent: 2 - - uid: 25996 + - uid: 34699 components: - type: Transform pos: 76.5,-13.5 parent: 2 - - uid: 25997 + - uid: 34700 components: - type: Transform pos: 75.5,-13.5 parent: 2 - - uid: 26000 + - uid: 34701 components: - type: Transform pos: 74.5,-13.5 parent: 2 - - uid: 26001 + - uid: 34702 components: - type: Transform pos: 73.5,-13.5 parent: 2 - - uid: 26003 + - uid: 34703 components: - type: Transform pos: 77.5,-13.5 parent: 2 - - uid: 26004 + - uid: 34704 components: - type: Transform pos: 73.5,-14.5 parent: 2 - - uid: 26110 + - uid: 34705 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-10.5 parent: 2 - - uid: 26111 + - uid: 34706 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-12.5 parent: 2 - - uid: 26176 + - uid: 34707 components: - type: Transform pos: 57.5,-79.5 parent: 2 - - uid: 26206 + - uid: 34708 components: - type: Transform pos: 58.5,-83.5 parent: 2 - - uid: 26207 + - uid: 34709 components: - type: Transform pos: 59.5,-79.5 parent: 2 - - uid: 26380 + - uid: 34710 components: - type: Transform pos: 89.5,-11.5 parent: 2 - - uid: 26381 + - uid: 34711 components: - type: Transform pos: 88.5,-11.5 parent: 2 - - uid: 26382 + - uid: 34712 components: - type: Transform pos: 86.5,-11.5 parent: 2 - - uid: 26383 + - uid: 34713 components: - type: Transform pos: 85.5,-11.5 parent: 2 - - uid: 26384 + - uid: 34714 components: - type: Transform pos: 84.5,-11.5 parent: 2 - - uid: 26385 + - uid: 34715 components: - type: Transform pos: 83.5,-11.5 parent: 2 - - uid: 26387 + - uid: 34716 components: - type: Transform pos: 81.5,-11.5 parent: 2 - - uid: 26417 + - uid: 34717 components: - type: Transform pos: -12.5,9.5 parent: 2 - - uid: 26437 + - uid: 34718 components: - type: Transform pos: -12.5,-55.5 parent: 2 - - uid: 26485 + - uid: 34719 components: - type: Transform pos: 87.5,-11.5 parent: 2 - - uid: 26486 + - uid: 34720 components: - type: Transform pos: 80.5,-11.5 parent: 2 - - uid: 26791 + - uid: 34721 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,2.5 parent: 2 - - uid: 27038 + - uid: 34722 components: - type: Transform pos: -11.5,-34.5 parent: 2 - - uid: 27039 + - uid: 34723 components: - type: Transform pos: -7.5,-37.5 parent: 2 - - uid: 27041 + - uid: 34724 components: - type: Transform pos: -6.5,-37.5 parent: 2 - - uid: 27051 + - uid: 34725 components: - type: Transform pos: -5.5,-38.5 parent: 2 - - uid: 27052 + - uid: 34726 components: - type: Transform pos: -5.5,-39.5 parent: 2 - - uid: 27054 + - uid: 34727 components: - type: Transform pos: -11.5,-37.5 parent: 2 - - uid: 27055 + - uid: 34728 components: - type: Transform pos: -5.5,-40.5 parent: 2 - - uid: 27056 + - uid: 34729 components: - type: Transform pos: -5.5,-41.5 parent: 2 - - uid: 27117 + - uid: 34730 components: - type: Transform pos: -9.5,-34.5 parent: 2 - - uid: 27330 + - uid: 34731 components: - type: Transform rot: 1.5707963267948966 rad pos: 131.5,-39.5 parent: 2 - - uid: 27933 + - uid: 34732 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,20.5 parent: 2 - - uid: 28700 - components: - - type: Transform - pos: -8.5,17.5 - parent: 2 - - uid: 28801 + - uid: 34733 components: - type: Transform pos: 45.5,14.5 parent: 2 - - uid: 30120 + - uid: 34734 components: - type: Transform pos: 57.5,-83.5 parent: 2 - - uid: 30247 + - uid: 34735 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,20.5 parent: 2 - - uid: 30428 + - uid: 34736 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,18.5 parent: 2 - - uid: 30435 + - uid: 34737 components: - type: Transform pos: 17.5,-32.5 parent: 2 - - uid: 30679 + - uid: 34738 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-24.5 parent: 2 - - uid: 30681 + - uid: 34739 components: - type: Transform pos: -13.5,-31.5 parent: 2 - - uid: 30682 + - uid: 34740 components: - type: Transform pos: -19.5,-31.5 parent: 2 - - uid: 30684 + - uid: 34741 components: - type: Transform pos: -13.5,-40.5 parent: 2 - - uid: 30701 + - uid: 34742 components: - type: Transform pos: -3.5,-42.5 parent: 2 - - uid: 30854 + - uid: 34743 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-44.5 parent: 2 - - uid: 30864 + - uid: 34744 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-41.5 parent: 2 - - uid: 30888 + - uid: 34745 components: - type: Transform pos: 33.5,-105.5 parent: 2 - - uid: 30889 + - uid: 34746 components: - type: Transform pos: 33.5,-84.5 parent: 2 - - uid: 30891 + - uid: 34747 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-27.5 parent: 2 - - uid: 30892 + - uid: 34748 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-53.5 parent: 2 - - uid: 30896 + - uid: 34749 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,15.5 parent: 2 - - uid: 30897 + - uid: 34750 components: - type: Transform pos: -33.5,-32.5 parent: 2 - - uid: 30900 + - uid: 34751 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,15.5 parent: 2 - - uid: 30903 + - uid: 34752 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,7.5 parent: 2 - - uid: 30904 + - uid: 34753 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-33.5 parent: 2 - - uid: 30906 + - uid: 34754 components: - type: Transform pos: -71.5,-79.5 parent: 2 - - uid: 30907 + - uid: 34755 components: - type: Transform pos: 41.5,8.5 parent: 2 - - uid: 30909 + - uid: 34756 components: - type: Transform pos: 36.5,-80.5 parent: 2 - - uid: 30910 + - uid: 34757 components: - type: Transform pos: 102.5,-54.5 parent: 2 - - uid: 30911 + - uid: 34758 components: - type: Transform pos: 103.5,-54.5 parent: 2 - - uid: 30912 + - uid: 34759 components: - type: Transform pos: 93.5,-56.5 parent: 2 - - uid: 30913 + - uid: 34760 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,-45.5 parent: 2 - - uid: 30917 + - uid: 34761 components: - type: Transform pos: -59.5,-77.5 parent: 2 - - uid: 30918 + - uid: 34762 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-6.5 parent: 2 - - uid: 30919 + - uid: 34763 components: - type: Transform pos: 41.5,7.5 parent: 2 - - uid: 30921 + - uid: 34764 components: - type: Transform pos: 98.5,-56.5 parent: 2 - - uid: 30922 + - uid: 34765 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,9.5 parent: 2 - - uid: 30925 + - uid: 34766 components: - type: Transform pos: 110.5,-55.5 parent: 2 - - uid: 30929 + - uid: 34767 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,9.5 parent: 2 - - uid: 30930 + - uid: 34768 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,8.5 parent: 2 - - uid: 30931 + - uid: 34769 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,13.5 parent: 2 - - uid: 30932 + - uid: 34770 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,13.5 parent: 2 - - uid: 30933 + - uid: 34771 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,9.5 parent: 2 - - uid: 30934 + - uid: 34772 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,8.5 parent: 2 - - uid: 30935 + - uid: 34773 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,8.5 parent: 2 - - uid: 30936 + - uid: 34774 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,8.5 parent: 2 - - uid: 30937 + - uid: 34775 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,8.5 parent: 2 - - uid: 30938 + - uid: 34776 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,11.5 parent: 2 - - uid: 30939 + - uid: 34777 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,11.5 parent: 2 - - uid: 30940 + - uid: 34778 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,9.5 parent: 2 - - uid: 30941 + - uid: 34779 components: - type: Transform pos: 110.5,-50.5 parent: 2 - - uid: 30942 + - uid: 34780 components: - type: Transform pos: 110.5,-48.5 parent: 2 - - uid: 30943 + - uid: 34781 components: - type: Transform pos: 41.5,-81.5 parent: 2 - - uid: 30946 + - uid: 34782 components: - type: Transform pos: -73.5,-79.5 parent: 2 - - uid: 30948 + - uid: 34783 components: - type: Transform pos: -73.5,-72.5 parent: 2 - - uid: 30949 + - uid: 34784 components: - type: Transform pos: -73.5,-74.5 parent: 2 - - uid: 30950 + - uid: 34785 components: - type: Transform pos: -45.5,-70.5 parent: 2 - - uid: 30951 + - uid: 34786 components: - type: Transform pos: -45.5,-68.5 parent: 2 - - uid: 30952 + - uid: 34787 components: - type: Transform pos: -59.5,-75.5 parent: 2 - - uid: 30953 + - uid: 34788 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-124.5 parent: 2 - - uid: 30955 + - uid: 34789 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-57.5 parent: 2 - - uid: 30956 + - uid: 34790 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-61.5 parent: 2 - - uid: 30957 + - uid: 34791 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-124.5 parent: 2 - - uid: 30958 + - uid: 34792 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,13.5 parent: 2 - - uid: 30959 + - uid: 34793 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,13.5 parent: 2 - - uid: 30960 + - uid: 34794 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-124.5 parent: 2 - - uid: 30961 + - uid: 34795 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,12.5 parent: 2 - - uid: 30962 + - uid: 34796 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-51.5 parent: 2 - - uid: 30963 + - uid: 34797 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-51.5 parent: 2 - - uid: 30964 + - uid: 34798 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-51.5 parent: 2 - - uid: 30965 + - uid: 34799 components: - type: Transform pos: 43.5,-81.5 parent: 2 - - uid: 30966 + - uid: 34800 components: - type: Transform pos: 110.5,-51.5 parent: 2 - - uid: 30969 + - uid: 34801 components: - type: Transform pos: -52.5,-73.5 parent: 2 - - uid: 30970 + - uid: 34802 components: - type: Transform pos: -53.5,-72.5 parent: 2 - - uid: 30971 + - uid: 34803 components: - type: Transform pos: -59.5,-74.5 parent: 2 - - uid: 30972 + - uid: 34804 components: - type: Transform pos: -72.5,-75.5 parent: 2 - - uid: 30973 + - uid: 34805 components: - type: Transform pos: -71.5,-75.5 parent: 2 - - uid: 30974 + - uid: 34806 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-71.5 parent: 2 - - uid: 30975 + - uid: 34807 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-72.5 parent: 2 - - uid: 30976 + - uid: 34808 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-73.5 parent: 2 - - uid: 30977 + - uid: 34809 components: - type: Transform pos: -34.5,-27.5 parent: 2 - - uid: 30978 + - uid: 34810 components: - type: Transform pos: -70.5,-75.5 parent: 2 - - uid: 30979 + - uid: 34811 components: - type: Transform pos: -59.5,-70.5 parent: 2 - - uid: 30980 + - uid: 34812 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-123.5 parent: 2 - - uid: 30981 + - uid: 34813 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-66.5 parent: 2 - - uid: 30982 + - uid: 34814 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-56.5 parent: 2 - - uid: 30983 + - uid: 34815 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-52.5 parent: 2 - - uid: 30985 + - uid: 34816 components: - type: Transform pos: 87.5,-57.5 parent: 2 - - uid: 30986 + - uid: 34817 components: - type: Transform pos: 71.5,-67.5 parent: 2 - - uid: 30987 + - uid: 34818 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-57.5 parent: 2 - - uid: 30988 + - uid: 34819 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-51.5 parent: 2 - - uid: 30989 + - uid: 34820 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-51.5 parent: 2 - - uid: 30990 + - uid: 34821 components: - type: Transform pos: 70.5,-67.5 parent: 2 - - uid: 30991 + - uid: 34822 components: - type: Transform rot: 3.141592653589793 rad pos: 71.5,-51.5 parent: 2 - - uid: 30992 + - uid: 34823 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-51.5 parent: 2 - - uid: 30993 + - uid: 34824 components: - type: Transform pos: 87.5,-58.5 parent: 2 - - uid: 30994 + - uid: 34825 components: - type: Transform pos: 83.5,-56.5 parent: 2 - - uid: 30995 + - uid: 34826 components: - type: Transform pos: 87.5,-59.5 parent: 2 - - uid: 30996 + - uid: 34827 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-55.5 parent: 2 - - uid: 30997 + - uid: 34828 components: - type: Transform pos: 87.5,-56.5 parent: 2 - - uid: 30998 + - uid: 34829 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-51.5 parent: 2 - - uid: 30999 + - uid: 34830 components: - type: Transform pos: 69.5,-67.5 parent: 2 - - uid: 31000 + - uid: 34831 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-54.5 parent: 2 - - uid: 31001 + - uid: 34832 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-53.5 parent: 2 - - uid: 31002 + - uid: 34833 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,13.5 parent: 2 - - uid: 31003 + - uid: 34834 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,13.5 parent: 2 - - uid: 31004 + - uid: 34835 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,13.5 parent: 2 - - uid: 31005 + - uid: 34836 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,13.5 parent: 2 - - uid: 31006 + - uid: 34837 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-51.5 parent: 2 - - uid: 31007 + - uid: 34838 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,13.5 parent: 2 - - uid: 31008 + - uid: 34839 components: - type: Transform pos: 37.5,-81.5 parent: 2 - - uid: 31009 + - uid: 34840 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,13.5 parent: 2 - - uid: 31010 + - uid: 34841 components: - type: Transform pos: 87.5,-60.5 parent: 2 - - uid: 31011 + - uid: 34842 components: - type: Transform pos: 87.5,-61.5 parent: 2 - - uid: 31012 + - uid: 34843 components: - type: Transform pos: 86.5,-62.5 parent: 2 - - uid: 31013 + - uid: 34844 components: - type: Transform pos: 85.5,-56.5 parent: 2 - - uid: 31014 + - uid: 34845 components: - type: Transform pos: 84.5,-56.5 parent: 2 - - uid: 31015 + - uid: 34846 components: - type: Transform pos: 84.5,-62.5 parent: 2 - - uid: 31016 + - uid: 34847 components: - type: Transform pos: 68.5,-67.5 parent: 2 - - uid: 31017 + - uid: 34848 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-27.5 parent: 2 - - uid: 31018 + - uid: 34849 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-64.5 parent: 2 - - uid: 31019 + - uid: 34850 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-63.5 parent: 2 - - uid: 31020 + - uid: 34851 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-66.5 parent: 2 - - uid: 31021 + - uid: 34852 components: - type: Transform pos: 85.5,-62.5 parent: 2 - - uid: 31022 + - uid: 34853 components: - type: Transform pos: 83.5,-62.5 parent: 2 - - uid: 31023 + - uid: 34854 components: - type: Transform pos: 87.5,-62.5 parent: 2 - - uid: 31024 + - uid: 34855 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-51.5 parent: 2 - - uid: 31025 + - uid: 34856 components: - type: Transform pos: 72.5,-67.5 parent: 2 - - uid: 31026 + - uid: 34857 components: - type: Transform pos: 73.5,-67.5 parent: 2 - - uid: 31027 + - uid: 34858 components: - type: Transform pos: 74.5,-67.5 parent: 2 - - uid: 31028 + - uid: 34859 components: - type: Transform pos: 75.5,-67.5 parent: 2 - - uid: 31029 + - uid: 34860 components: - type: Transform pos: 79.5,-67.5 parent: 2 - - uid: 31030 + - uid: 34861 components: - type: Transform pos: 80.5,-67.5 parent: 2 - - uid: 31031 + - uid: 34862 components: - type: Transform pos: 81.5,-67.5 parent: 2 - - uid: 31032 + - uid: 34863 components: - type: Transform pos: 82.5,-67.5 parent: 2 - - uid: 31033 + - uid: 34864 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-62.5 parent: 2 - - uid: 31034 + - uid: 34865 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-61.5 parent: 2 - - uid: 31035 + - uid: 34866 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-57.5 parent: 2 - - uid: 31036 + - uid: 34867 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-61.5 parent: 2 - - uid: 31038 + - uid: 34868 components: - type: Transform pos: -56.5,-68.5 parent: 2 - - uid: 31039 + - uid: 34869 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,11.5 parent: 2 - - uid: 31040 + - uid: 34870 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,13.5 parent: 2 - - uid: 31043 + - uid: 34871 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,19.5 parent: 2 - - uid: 31045 + - uid: 34872 components: - type: Transform pos: 20.5,22.5 parent: 2 - - uid: 31047 + - uid: 34873 components: - type: Transform pos: 21.5,22.5 parent: 2 - - uid: 31049 + - uid: 34874 components: - type: Transform pos: 20.5,21.5 parent: 2 - - uid: 31050 + - uid: 34875 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,12.5 parent: 2 - - uid: 31051 + - uid: 34876 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,12.5 parent: 2 - - uid: 31052 + - uid: 34877 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,11.5 parent: 2 - - uid: 31053 + - uid: 34878 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,12.5 parent: 2 - - uid: 31054 + - uid: 34879 components: - type: Transform pos: -80.5,8.5 parent: 2 - - uid: 31055 + - uid: 34880 components: - type: Transform pos: -75.5,8.5 parent: 2 - - uid: 31056 + - uid: 34881 components: - type: Transform pos: -79.5,8.5 parent: 2 - - uid: 31057 + - uid: 34882 components: - type: Transform pos: -80.5,-53.5 parent: 2 - - uid: 31058 + - uid: 34883 components: - type: Transform pos: -79.5,-53.5 parent: 2 - - uid: 31059 + - uid: 34884 components: - type: Transform pos: 76.5,-67.5 parent: 2 - - uid: 31060 + - uid: 34885 components: - type: Transform pos: 77.5,-67.5 parent: 2 - - uid: 31061 + - uid: 34886 components: - type: Transform pos: 78.5,-67.5 parent: 2 - - uid: 31062 + - uid: 34887 components: - type: Transform pos: -78.5,-53.5 parent: 2 - - uid: 31063 + - uid: 34888 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-76.5 parent: 2 - - uid: 31065 + - uid: 34889 components: - type: Transform pos: -59.5,-71.5 parent: 2 - - uid: 31066 + - uid: 34890 components: - type: Transform pos: -73.5,-75.5 parent: 2 - - uid: 31067 + - uid: 34891 components: - type: Transform pos: -70.5,-79.5 parent: 2 - - uid: 31068 + - uid: 34892 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-77.5 parent: 2 - - uid: 31070 + - uid: 34893 components: - type: Transform pos: 45.5,11.5 parent: 2 - - uid: 31071 + - uid: 34894 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-75.5 parent: 2 - - uid: 31072 + - uid: 34895 components: - type: Transform pos: 27.5,31.5 parent: 2 - - uid: 31074 + - uid: 34896 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-18.5 parent: 2 - - uid: 31075 + - uid: 34897 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,-18.5 parent: 2 - - uid: 31076 + - uid: 34898 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-22.5 parent: 2 - - uid: 31077 + - uid: 34899 components: - type: Transform pos: -56.5,-70.5 parent: 2 - - uid: 31079 + - uid: 34900 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,-22.5 parent: 2 - - uid: 31080 + - uid: 34901 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,-22.5 parent: 2 - - uid: 31081 + - uid: 34902 components: - type: Transform pos: -69.5,-75.5 parent: 2 - - uid: 31082 + - uid: 34903 components: - type: Transform pos: 43.5,11.5 parent: 2 - - uid: 31084 + - uid: 34904 components: - type: Transform pos: -59.5,-72.5 parent: 2 - - uid: 31085 + - uid: 34905 components: - type: Transform pos: -69.5,-48.5 parent: 2 - - uid: 31086 + - uid: 34906 components: - type: Transform pos: -69.5,-49.5 parent: 2 - - uid: 31087 + - uid: 34907 components: - type: Transform pos: -77.5,8.5 parent: 2 - - uid: 31090 + - uid: 34908 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,6.5 parent: 2 - - uid: 31093 + - uid: 34909 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-44.5 parent: 2 - - uid: 31094 + - uid: 34910 components: - type: Transform rot: 1.5707963267948966 rad pos: -80.5,-48.5 parent: 2 - - uid: 31096 + - uid: 34911 components: - type: Transform pos: 108.5,-60.5 parent: 2 - - uid: 31098 + - uid: 34912 components: - type: Transform pos: 30.5,-103.5 parent: 2 - - uid: 31099 + - uid: 34913 components: - type: Transform pos: 33.5,-103.5 parent: 2 - - uid: 31100 + - uid: 34914 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-86.5 parent: 2 - - uid: 31102 + - uid: 34915 components: - type: Transform pos: 32.5,-103.5 parent: 2 - - uid: 31103 + - uid: 34916 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-89.5 parent: 2 - - uid: 31107 + - uid: 34917 components: - type: Transform pos: 31.5,-103.5 parent: 2 - - uid: 31108 + - uid: 34918 components: - type: Transform pos: 102.5,-75.5 parent: 2 - - uid: 31109 + - uid: 34919 components: - type: Transform pos: 77.5,-68.5 parent: 2 - - uid: 31110 + - uid: 34920 components: - type: Transform pos: 68.5,-68.5 parent: 2 - - uid: 31111 + - uid: 34921 components: - type: Transform pos: -45.5,-67.5 parent: 2 - - uid: 31112 + - uid: 34922 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-101.5 parent: 2 - - uid: 31113 + - uid: 34923 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-101.5 parent: 2 - - uid: 31114 + - uid: 34924 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-4.5 parent: 2 - - uid: 31115 + - uid: 34925 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-100.5 parent: 2 - - uid: 31116 + - uid: 34926 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-99.5 parent: 2 - - uid: 31117 + - uid: 34927 components: - type: Transform pos: 42.5,-81.5 parent: 2 - - uid: 31118 + - uid: 34928 components: - type: Transform pos: 35.5,-94.5 parent: 2 - - uid: 31119 + - uid: 34929 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-69.5 parent: 2 - - uid: 31120 + - uid: 34930 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-87.5 parent: 2 - - uid: 31121 + - uid: 34931 components: - type: Transform pos: 35.5,-100.5 parent: 2 - - uid: 31123 + - uid: 34932 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,-48.5 parent: 2 - - uid: 31124 + - uid: 34933 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-36.5 parent: 2 - - uid: 31125 + - uid: 34934 components: - type: Transform pos: 27.5,30.5 parent: 2 - - uid: 31126 + - uid: 34935 components: - type: Transform pos: -45.5,-71.5 parent: 2 - - uid: 31127 + - uid: 34936 components: - type: Transform pos: 51.5,-95.5 parent: 2 - - uid: 31128 + - uid: 34937 components: - type: Transform pos: 99.5,-93.5 parent: 2 - - uid: 31129 + - uid: 34938 components: - type: Transform pos: 93.5,-86.5 parent: 2 - - uid: 31130 + - uid: 34939 components: - type: Transform pos: 103.5,-87.5 parent: 2 - - uid: 31131 + - uid: 34940 components: - type: Transform pos: 102.5,-91.5 parent: 2 - - uid: 31132 + - uid: 34941 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,-104.5 parent: 2 - - uid: 31133 + - uid: 34942 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-104.5 parent: 2 - - uid: 31134 + - uid: 34943 components: - type: Transform pos: 35.5,-88.5 parent: 2 - - uid: 31135 + - uid: 34944 components: - type: Transform pos: 93.5,-87.5 parent: 2 - - uid: 31136 + - uid: 34945 components: - type: Transform pos: 96.5,-91.5 parent: 2 - - uid: 31137 + - uid: 34946 components: - type: Transform pos: 97.5,-92.5 parent: 2 - - uid: 31141 + - uid: 34947 components: - type: Transform pos: 26.5,27.5 parent: 2 - - uid: 31142 + - uid: 34948 components: - type: Transform pos: 29.5,35.5 parent: 2 - - uid: 31143 + - uid: 34949 components: - type: Transform pos: -81.5,-52.5 parent: 2 - - uid: 31145 + - uid: 34950 components: - type: Transform pos: -59.5,-120.5 parent: 2 - - uid: 31146 + - uid: 34951 components: - type: Transform pos: -59.5,-121.5 parent: 2 - - uid: 31147 + - uid: 34952 components: - type: Transform pos: -58.5,-121.5 parent: 2 - - uid: 31148 + - uid: 34953 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-95.5 parent: 2 - - uid: 31149 + - uid: 34954 components: - type: Transform pos: -78.5,8.5 parent: 2 - - uid: 31150 + - uid: 34955 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-6.5 parent: 2 - - uid: 31151 + - uid: 34956 components: - type: Transform pos: -81.5,-51.5 parent: 2 - - uid: 31152 + - uid: 34957 components: - type: Transform pos: -81.5,-49.5 parent: 2 - - uid: 31153 + - uid: 34958 components: - type: Transform pos: -81.5,-50.5 parent: 2 - - uid: 31154 + - uid: 34959 components: - type: Transform pos: -58.5,-89.5 parent: 2 - - uid: 31155 + - uid: 34960 components: - type: Transform pos: -58.5,-90.5 parent: 2 - - uid: 31156 + - uid: 34961 components: - type: Transform pos: 103.5,-89.5 parent: 2 - - uid: 31157 + - uid: 34962 components: - type: Transform pos: -15.5,-102.5 parent: 2 - - uid: 31158 + - uid: 34963 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-86.5 parent: 2 - - uid: 31160 + - uid: 34964 components: - type: Transform pos: 99.5,-82.5 parent: 2 - - uid: 31162 + - uid: 34965 components: - type: Transform rot: -1.5707963267948966 rad pos: 92.5,-65.5 parent: 2 - - uid: 31163 + - uid: 34966 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-119.5 parent: 2 - - uid: 31164 + - uid: 34967 components: - type: Transform pos: -81.5,-53.5 parent: 2 - - uid: 31165 + - uid: 34968 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-120.5 parent: 2 - - uid: 31166 + - uid: 34969 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-121.5 parent: 2 - - uid: 31167 + - uid: 34970 components: - type: Transform pos: 28.5,32.5 parent: 2 - - uid: 31168 + - uid: 34971 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,13.5 parent: 2 - - uid: 31169 + - uid: 34972 components: - type: Transform pos: -46.5,-70.5 parent: 2 - - uid: 31170 + - uid: 34973 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-76.5 parent: 2 - - uid: 31171 + - uid: 34974 components: - type: Transform pos: 26.5,29.5 parent: 2 - - uid: 31172 + - uid: 34975 components: - type: Transform pos: 27.5,29.5 parent: 2 - - uid: 31173 + - uid: 34976 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-122.5 parent: 2 - - uid: 31174 + - uid: 34977 components: - type: Transform pos: -76.5,8.5 parent: 2 - - uid: 31175 + - uid: 34978 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-122.5 parent: 2 - - uid: 31176 + - uid: 34979 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,-122.5 parent: 2 - - uid: 31177 + - uid: 34980 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-123.5 parent: 2 - - uid: 31178 + - uid: 34981 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-124.5 parent: 2 - - uid: 31179 + - uid: 34982 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-124.5 parent: 2 - - uid: 31180 + - uid: 34983 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,-89.5 parent: 2 - - uid: 31181 + - uid: 34984 components: - type: Transform pos: 28.5,33.5 parent: 2 - - uid: 31182 + - uid: 34985 components: - type: Transform pos: 97.5,-81.5 parent: 2 - - uid: 31183 + - uid: 34986 components: - type: Transform pos: 101.5,-81.5 parent: 2 - - uid: 31184 + - uid: 34987 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-75.5 parent: 2 - - uid: 31185 + - uid: 34988 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,-81.5 parent: 2 - - uid: 31186 + - uid: 34989 components: - type: Transform pos: -52.5,-70.5 parent: 2 - - uid: 31187 + - uid: 34990 components: - type: Transform pos: -52.5,-69.5 parent: 2 - - uid: 31188 + - uid: 34991 components: - type: Transform pos: 28.5,35.5 parent: 2 - - uid: 31189 + - uid: 34992 components: - type: Transform pos: 37.5,36.5 parent: 2 - - uid: 31190 + - uid: 34993 components: - type: Transform pos: 38.5,36.5 parent: 2 - - uid: 31191 + - uid: 34994 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-124.5 parent: 2 - - uid: 31192 + - uid: 34995 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-124.5 parent: 2 - - uid: 31193 + - uid: 34996 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-124.5 parent: 2 - - uid: 31194 + - uid: 34997 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-124.5 parent: 2 - - uid: 31195 + - uid: 34998 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-65.5 parent: 2 - - uid: 31197 + - uid: 34999 components: - type: Transform pos: -52.5,-67.5 parent: 2 - - uid: 31198 + - uid: 35000 components: - type: Transform pos: -50.5,-67.5 parent: 2 - - uid: 31199 + - uid: 35001 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,-77.5 parent: 2 - - uid: 31200 + - uid: 35002 components: - type: Transform rot: -1.5707963267948966 rad pos: 92.5,-81.5 parent: 2 - - uid: 31201 + - uid: 35003 components: - type: Transform pos: 93.5,-85.5 parent: 2 - - uid: 31202 + - uid: 35004 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-81.5 parent: 2 - - uid: 31204 + - uid: 35005 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-61.5 parent: 2 - - uid: 31205 + - uid: 35006 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,-78.5 parent: 2 - - uid: 31206 + - uid: 35007 components: - type: Transform pos: 94.5,-75.5 parent: 2 - - uid: 31207 + - uid: 35008 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-73.5 parent: 2 - - uid: 31208 + - uid: 35009 components: - type: Transform pos: 28.5,31.5 parent: 2 - - uid: 31211 + - uid: 35010 components: - type: Transform pos: -56.5,-71.5 parent: 2 - - uid: 31212 + - uid: 35011 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,12.5 parent: 2 - - uid: 31213 + - uid: 35012 components: - type: Transform pos: -52.5,-72.5 parent: 2 - - uid: 31215 + - uid: 35013 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,-104.5 parent: 2 - - uid: 31217 + - uid: 35014 components: - type: Transform pos: -25.5,-104.5 parent: 2 - - uid: 31218 + - uid: 35015 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-104.5 parent: 2 - - uid: 31219 + - uid: 35016 components: - type: Transform rot: 1.5707963267948966 rad pos: -78.5,-48.5 parent: 2 - - uid: 31222 + - uid: 35017 components: - type: Transform pos: 19.5,11.5 parent: 2 - - uid: 31224 + - uid: 35018 components: - type: Transform pos: -56.5,-72.5 parent: 2 - - uid: 31225 + - uid: 35019 components: - type: Transform pos: 83.5,-67.5 parent: 2 - - uid: 31226 + - uid: 35020 components: - type: Transform pos: 87.5,-63.5 parent: 2 - - uid: 31227 + - uid: 35021 components: - type: Transform pos: 46.5,11.5 parent: 2 - - uid: 31228 + - uid: 35022 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-21.5 parent: 2 - - uid: 31229 + - uid: 35023 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,0.5 parent: 2 - - uid: 31230 + - uid: 35024 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,-22.5 parent: 2 - - uid: 31231 + - uid: 35025 components: - type: Transform pos: 102.5,-76.5 parent: 2 - - uid: 31232 + - uid: 35026 components: - type: Transform pos: 105.5,-60.5 parent: 2 - - uid: 31233 + - uid: 35027 components: - type: Transform pos: -52.5,-75.5 parent: 2 - - uid: 31234 + - uid: 35028 components: - type: Transform pos: 82.5,-68.5 parent: 2 - - uid: 31235 + - uid: 35029 components: - type: Transform pos: -51.5,-67.5 parent: 2 - - uid: 31236 + - uid: 35030 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-100.5 parent: 2 - - uid: 31237 + - uid: 35031 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-99.5 parent: 2 - - uid: 31238 + - uid: 35032 components: - type: Transform pos: -58.5,-91.5 parent: 2 - - uid: 31239 + - uid: 35033 components: - type: Transform pos: -58.5,-92.5 parent: 2 - - uid: 31240 + - uid: 35034 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-18.5 parent: 2 - - uid: 31241 + - uid: 35035 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-19.5 parent: 2 - - uid: 31242 + - uid: 35036 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-22.5 parent: 2 - - uid: 31243 + - uid: 35037 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-21.5 parent: 2 - - uid: 31244 + - uid: 35038 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,-18.5 parent: 2 - - uid: 31245 + - uid: 35039 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,-22.5 parent: 2 - - uid: 31246 + - uid: 35040 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-65.5 parent: 2 - - uid: 31247 + - uid: 35041 components: - type: Transform pos: 103.5,-85.5 parent: 2 - - uid: 31248 + - uid: 35042 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-61.5 parent: 2 - - uid: 31249 + - uid: 35043 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-78.5 parent: 2 - - uid: 31251 + - uid: 35044 components: - type: Transform pos: 39.5,32.5 parent: 2 - - uid: 31252 + - uid: 35045 components: - type: Transform pos: -72.5,-79.5 parent: 2 - - uid: 31253 + - uid: 35046 components: - type: Transform pos: 44.5,11.5 parent: 2 - - uid: 31254 + - uid: 35047 components: - type: Transform pos: 26.5,28.5 parent: 2 - - uid: 31255 + - uid: 35048 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-104.5 parent: 2 - - uid: 31256 + - uid: 35049 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-3.5 parent: 2 - - uid: 31257 + - uid: 35050 components: - type: Transform rot: 1.5707963267948966 rad pos: -63.5,-76.5 parent: 2 - - uid: 31258 + - uid: 35051 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-75.5 parent: 2 - - uid: 31259 + - uid: 35052 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-75.5 parent: 2 - - uid: 31260 + - uid: 35053 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-76.5 parent: 2 - - uid: 31261 + - uid: 35054 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-78.5 parent: 2 - - uid: 31262 + - uid: 35055 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-79.5 parent: 2 - - uid: 31263 + - uid: 35056 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-79.5 parent: 2 - - uid: 31264 + - uid: 35057 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,-60.5 parent: 2 - - uid: 31265 + - uid: 35058 components: - type: Transform rot: -1.5707963267948966 rad pos: 106.5,-70.5 parent: 2 - - uid: 31266 + - uid: 35059 components: - type: Transform rot: -1.5707963267948966 rad pos: 106.5,-71.5 parent: 2 - - uid: 31267 + - uid: 35060 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-61.5 parent: 2 - - uid: 31268 + - uid: 35061 components: - type: Transform pos: 95.5,-81.5 parent: 2 - - uid: 31269 + - uid: 35062 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,-65.5 parent: 2 - - uid: 31270 + - uid: 35063 components: - type: Transform pos: 106.5,-64.5 parent: 2 - - uid: 31271 + - uid: 35064 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-103.5 parent: 2 - - uid: 31272 + - uid: 35065 components: - type: Transform pos: 102.5,-90.5 parent: 2 - - uid: 31273 + - uid: 35066 components: - type: Transform pos: 100.5,-59.5 parent: 2 - - uid: 31274 + - uid: 35067 components: - type: Transform pos: 100.5,-91.5 parent: 2 - - uid: 31275 + - uid: 35068 components: - type: Transform pos: 102.5,-89.5 parent: 2 - - uid: 31276 + - uid: 35069 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,-73.5 parent: 2 - - uid: 31277 + - uid: 35070 components: - type: Transform rot: -1.5707963267948966 rad pos: 92.5,-77.5 parent: 2 - - uid: 31278 + - uid: 35071 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,-73.5 parent: 2 - - uid: 31279 + - uid: 35072 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-65.5 parent: 2 - - uid: 31280 + - uid: 35073 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-65.5 parent: 2 - - uid: 31281 + - uid: 35074 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-80.5 parent: 2 - - uid: 31282 + - uid: 35075 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,12.5 parent: 2 - - uid: 31283 + - uid: 35076 components: - type: Transform pos: -3.5,-1.5 parent: 2 - - uid: 31284 + - uid: 35077 components: - type: Transform pos: -2.5,-1.5 parent: 2 - - uid: 31285 + - uid: 35078 components: - type: Transform pos: 3.5,-1.5 parent: 2 - - uid: 31286 + - uid: 35079 components: - type: Transform pos: -4.5,-1.5 parent: 2 - - uid: 31287 + - uid: 35080 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,9.5 parent: 2 - - uid: 31288 + - uid: 35081 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,16.5 parent: 2 - - uid: 31289 + - uid: 35082 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,15.5 parent: 2 - - uid: 31290 + - uid: 35083 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,12.5 parent: 2 - - uid: 31291 + - uid: 35084 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,13.5 parent: 2 - - uid: 31292 + - uid: 35085 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,2.5 parent: 2 - - uid: 31293 + - uid: 35086 components: - type: Transform pos: -5.5,-1.5 parent: 2 - - uid: 31294 + - uid: 35087 components: - type: Transform pos: -6.5,-1.5 parent: 2 - - uid: 31295 + - uid: 35088 components: - type: Transform pos: -7.5,-1.5 parent: 2 - - uid: 31296 + - uid: 35089 components: - type: Transform pos: -8.5,-1.5 parent: 2 - - uid: 31297 + - uid: 35090 components: - type: Transform pos: -9.5,-1.5 parent: 2 - - uid: 31298 + - uid: 35091 components: - type: Transform pos: -10.5,-1.5 parent: 2 - - uid: 31299 + - uid: 35092 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,10.5 parent: 2 - - uid: 31300 + - uid: 35093 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,11.5 parent: 2 - - uid: 31301 + - uid: 35094 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,10.5 parent: 2 - - uid: 31302 + - uid: 35095 components: - type: Transform pos: 12.5,5.5 parent: 2 - - uid: 31303 + - uid: 35096 components: - type: Transform pos: 11.5,5.5 parent: 2 - - uid: 31304 + - uid: 35097 components: - type: Transform pos: 10.5,5.5 parent: 2 - - uid: 31305 + - uid: 35098 components: - type: Transform pos: 9.5,5.5 parent: 2 - - uid: 31306 + - uid: 35099 components: - type: Transform pos: 8.5,5.5 parent: 2 - - uid: 31307 + - uid: 35100 components: - type: Transform pos: 7.5,5.5 parent: 2 - - uid: 31308 + - uid: 35101 components: - type: Transform pos: 6.5,5.5 parent: 2 - - uid: 31309 + - uid: 35102 components: - type: Transform pos: 5.5,5.5 parent: 2 - - uid: 31310 + - uid: 35103 components: - type: Transform pos: 4.5,5.5 parent: 2 - - uid: 31311 + - uid: 35104 components: - type: Transform pos: 3.5,5.5 parent: 2 - - uid: 31312 + - uid: 35105 components: - type: Transform pos: 2.5,5.5 parent: 2 - - uid: 31313 + - uid: 35106 components: - type: Transform pos: -1.5,7.5 parent: 2 - - uid: 31314 + - uid: 35107 components: - type: Transform pos: -1.5,8.5 parent: 2 - - uid: 31315 + - uid: 35108 components: - type: Transform pos: -1.5,11.5 parent: 2 - - uid: 31316 + - uid: 35109 components: - type: Transform pos: -1.5,12.5 parent: 2 - - uid: 31317 + - uid: 35110 components: - type: Transform pos: -2.5,12.5 parent: 2 - - uid: 31318 + - uid: 35111 components: - type: Transform pos: -3.5,12.5 parent: 2 - - uid: 31319 + - uid: 35112 components: - type: Transform pos: -4.5,12.5 parent: 2 - - uid: 31320 + - uid: 35113 components: - type: Transform pos: -5.5,12.5 parent: 2 - - uid: 31321 + - uid: 35114 components: - type: Transform pos: -6.5,12.5 parent: 2 - - uid: 31322 + - uid: 35115 components: - type: Transform pos: -7.5,12.5 parent: 2 - - uid: 31323 + - uid: 35116 components: - type: Transform pos: -9.5,12.5 parent: 2 - - uid: 31324 + - uid: 35117 components: - type: Transform pos: -10.5,12.5 parent: 2 - - uid: 31325 + - uid: 35118 components: - type: Transform pos: -6.5,7.5 parent: 2 - - uid: 31326 + - uid: 35119 components: - type: Transform pos: -7.5,7.5 parent: 2 - - uid: 31327 + - uid: 35120 components: - type: Transform pos: -8.5,7.5 parent: 2 - - uid: 31328 + - uid: 35121 components: - type: Transform pos: -8.5,6.5 parent: 2 - - uid: 31329 + - uid: 35122 components: - type: Transform pos: -8.5,5.5 parent: 2 - - uid: 31330 + - uid: 35123 components: - type: Transform pos: -9.5,5.5 parent: 2 - - uid: 31331 + - uid: 35124 components: - type: Transform pos: -10.5,5.5 parent: 2 - - uid: 31332 + - uid: 35125 components: - type: Transform pos: -11.5,5.5 parent: 2 - - uid: 31333 + - uid: 35126 components: - type: Transform pos: -12.5,5.5 parent: 2 - - uid: 31334 + - uid: 35127 components: - type: Transform pos: -12.5,6.5 parent: 2 - - uid: 31335 + - uid: 35128 components: - type: Transform pos: -12.5,7.5 parent: 2 - - uid: 31336 + - uid: 35129 components: - type: Transform pos: -12.5,8.5 parent: 2 - - uid: 31337 + - uid: 35130 components: - type: Transform pos: -8.5,8.5 parent: 2 - - uid: 31338 + - uid: 35131 components: - type: Transform pos: -11.5,8.5 parent: 2 - - uid: 31339 + - uid: 35132 components: - type: Transform pos: -9.5,8.5 parent: 2 - - uid: 31341 + - uid: 35133 components: - type: Transform pos: -12.5,11.5 parent: 2 - - uid: 31342 + - uid: 35134 components: - type: Transform pos: -12.5,12.5 parent: 2 - - uid: 31343 + - uid: 35135 components: - type: Transform pos: -11.5,12.5 parent: 2 - - uid: 31344 + - uid: 35136 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,16.5 parent: 2 - - uid: 31345 + - uid: 35137 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,16.5 parent: 2 - - uid: 31346 + - uid: 35138 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,17.5 parent: 2 - - uid: 31347 + - uid: 35139 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,17.5 parent: 2 - - uid: 31348 + - uid: 35140 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,15.5 parent: 2 - - uid: 31349 + - uid: 35141 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,16.5 parent: 2 - - uid: 31350 + - uid: 35142 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,13.5 parent: 2 - - uid: 31351 + - uid: 35143 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,14.5 parent: 2 - - uid: 31352 + - uid: 35144 components: - type: Transform pos: -7.5,18.5 parent: 2 - - uid: 31356 + - uid: 35145 components: - type: Transform pos: -11.5,18.5 parent: 2 - - uid: 31357 + - uid: 35146 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,18.5 parent: 2 - - uid: 31358 + - uid: 35147 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,18.5 parent: 2 - - uid: 31359 + - uid: 35148 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,18.5 parent: 2 - - uid: 31360 + - uid: 35149 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,18.5 parent: 2 - - uid: 31361 + - uid: 35150 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,18.5 parent: 2 - - uid: 31362 + - uid: 35151 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,18.5 parent: 2 - - uid: 31363 + - uid: 35152 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,17.5 parent: 2 - - uid: 31364 + - uid: 35153 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,13.5 parent: 2 - - uid: 31365 + - uid: 35154 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,19.5 parent: 2 - - uid: 31366 + - uid: 35155 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,20.5 parent: 2 - - uid: 31367 + - uid: 35156 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,20.5 parent: 2 - - uid: 31368 + - uid: 35157 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,19.5 parent: 2 - - uid: 31369 + - uid: 35158 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,18.5 parent: 2 - - uid: 31370 + - uid: 35159 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,12.5 parent: 2 - - uid: 31371 + - uid: 35160 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,6.5 parent: 2 - - uid: 31372 + - uid: 35161 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,8.5 parent: 2 - - uid: 31373 + - uid: 35162 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,7.5 parent: 2 - - uid: 31374 + - uid: 35163 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,8.5 parent: 2 - - uid: 31375 + - uid: 35164 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,10.5 parent: 2 - - uid: 31376 + - uid: 35165 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,10.5 parent: 2 - - uid: 31377 + - uid: 35166 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,10.5 parent: 2 - - uid: 31378 + - uid: 35167 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,6.5 parent: 2 - - uid: 31379 + - uid: 35168 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,7.5 parent: 2 - - uid: 31380 + - uid: 35169 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,5.5 parent: 2 - - uid: 31381 + - uid: 35170 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,12.5 parent: 2 - - uid: 31382 + - uid: 35171 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,12.5 parent: 2 - - uid: 31383 + - uid: 35172 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,12.5 parent: 2 - - uid: 31384 + - uid: 35173 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,12.5 parent: 2 - - uid: 31385 + - uid: 35174 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,12.5 parent: 2 - - uid: 31386 + - uid: 35175 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,12.5 parent: 2 - - uid: 31387 + - uid: 35176 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,12.5 parent: 2 - - uid: 31388 + - uid: 35177 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,12.5 parent: 2 - - uid: 31389 + - uid: 35178 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,13.5 parent: 2 - - uid: 31390 + - uid: 35179 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,17.5 parent: 2 - - uid: 31391 + - uid: 35180 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,18.5 parent: 2 - - uid: 31392 + - uid: 35181 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,18.5 parent: 2 - - uid: 31393 + - uid: 35182 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 - - uid: 31394 + - uid: 35183 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,18.5 parent: 2 - - uid: 31395 + - uid: 35184 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,17.5 parent: 2 - - uid: 31396 + - uid: 35185 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,16.5 parent: 2 - - uid: 31397 + - uid: 35186 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,15.5 parent: 2 - - uid: 31398 + - uid: 35187 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,14.5 parent: 2 - - uid: 31399 + - uid: 35188 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,13.5 parent: 2 - - uid: 31400 + - uid: 35189 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,18.5 parent: 2 - - uid: 31401 + - uid: 35190 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,9.5 parent: 2 - - uid: 31402 + - uid: 35191 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,8.5 parent: 2 - - uid: 31403 + - uid: 35192 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 - - uid: 31404 + - uid: 35193 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,10.5 parent: 2 - - uid: 31405 + - uid: 35194 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,16.5 parent: 2 - - uid: 31406 + - uid: 35195 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,12.5 parent: 2 - - uid: 31407 + - uid: 35196 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,12.5 parent: 2 - - uid: 31408 + - uid: 35197 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,10.5 parent: 2 - - uid: 31409 + - uid: 35198 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,15.5 parent: 2 - - uid: 31412 + - uid: 35199 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,17.5 parent: 2 - - uid: 31413 + - uid: 35200 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,18.5 parent: 2 - - uid: 31414 + - uid: 35201 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 - - uid: 31415 + - uid: 35202 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,7.5 parent: 2 - - uid: 31416 + - uid: 35203 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,5.5 parent: 2 - - uid: 31417 + - uid: 35204 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,4.5 parent: 2 - - uid: 31418 + - uid: 35205 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,3.5 parent: 2 - - uid: 31419 + - uid: 35206 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,2.5 parent: 2 - - uid: 31420 + - uid: 35207 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,21.5 parent: 2 - - uid: 31421 + - uid: 35208 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,20.5 parent: 2 - - uid: 31422 + - uid: 35209 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,21.5 parent: 2 - - uid: 31423 + - uid: 35210 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,22.5 parent: 2 - - uid: 31424 + - uid: 35211 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,21.5 parent: 2 - - uid: 31425 + - uid: 35212 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,22.5 parent: 2 - - uid: 31434 + - uid: 35213 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,15.5 parent: 2 - - uid: 31435 + - uid: 35214 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-1.5 parent: 2 - - uid: 31436 + - uid: 35215 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-1.5 parent: 2 - - uid: 31437 + - uid: 35216 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-1.5 parent: 2 - - uid: 31438 + - uid: 35217 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-2.5 parent: 2 - - uid: 31439 + - uid: 35218 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-2.5 parent: 2 - - uid: 31440 + - uid: 35219 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-2.5 parent: 2 - - uid: 31441 + - uid: 35220 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-3.5 parent: 2 - - uid: 31442 + - uid: 35221 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-9.5 parent: 2 - - uid: 31443 + - uid: 35222 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-9.5 parent: 2 - - uid: 31444 + - uid: 35223 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-10.5 parent: 2 - - uid: 31445 + - uid: 35224 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-11.5 parent: 2 - - uid: 31446 + - uid: 35225 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-11.5 parent: 2 - - uid: 31447 + - uid: 35226 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-12.5 parent: 2 - - uid: 31448 + - uid: 35227 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-84.5 parent: 2 - - uid: 31449 + - uid: 35228 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,17.5 parent: 2 - - uid: 31450 + - uid: 35229 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,17.5 parent: 2 - - uid: 31451 + - uid: 35230 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,17.5 parent: 2 - - uid: 31452 + - uid: 35231 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,6.5 parent: 2 - - uid: 31453 + - uid: 35232 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-110.5 parent: 2 - - uid: 31454 + - uid: 35233 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-94.5 parent: 2 - - uid: 31455 + - uid: 35234 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-11.5 parent: 2 - - uid: 31457 + - uid: 35235 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-6.5 parent: 2 - - uid: 31458 + - uid: 35236 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-6.5 parent: 2 - - uid: 31460 + - uid: 35237 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-1.5 parent: 2 - - uid: 31461 + - uid: 35238 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-0.5 parent: 2 - - uid: 31462 + - uid: 35239 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,0.5 parent: 2 - - uid: 31463 + - uid: 35240 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,1.5 parent: 2 - - uid: 31464 + - uid: 35241 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,2.5 parent: 2 - - uid: 31465 + - uid: 35242 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,3.5 parent: 2 - - uid: 31466 + - uid: 35243 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,4.5 parent: 2 - - uid: 31467 + - uid: 35244 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,5.5 parent: 2 - - uid: 31468 + - uid: 35245 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,6.5 parent: 2 - - uid: 31469 + - uid: 35246 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,6.5 parent: 2 - - uid: 31470 + - uid: 35247 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,6.5 parent: 2 - - uid: 31472 + - uid: 35248 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-1.5 parent: 2 - - uid: 31518 + - uid: 35249 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-78.5 parent: 2 - - uid: 31519 + - uid: 35250 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,11.5 parent: 2 - - uid: 31525 + - uid: 35251 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-90.5 parent: 2 - - uid: 31526 + - uid: 35252 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-104.5 parent: 2 - - uid: 31532 + - uid: 35253 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,-48.5 parent: 2 - - uid: 31539 + - uid: 35254 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,8.5 parent: 2 - - uid: 31540 + - uid: 35255 components: - type: Transform pos: -70.5,-46.5 parent: 2 - - uid: 31542 + - uid: 35256 components: - type: Transform pos: 59.5,-67.5 parent: 2 - - uid: 31543 + - uid: 35257 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-36.5 parent: 2 - - uid: 31576 + - uid: 35258 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-110.5 parent: 2 - - uid: 31577 + - uid: 35259 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-104.5 parent: 2 - - uid: 31580 + - uid: 35260 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,7.5 parent: 2 - - uid: 31581 + - uid: 35261 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-91.5 parent: 2 - - uid: 31582 + - uid: 35262 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-85.5 parent: 2 - - uid: 31583 + - uid: 35263 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-85.5 parent: 2 - - uid: 31584 + - uid: 35264 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-85.5 parent: 2 - - uid: 31596 + - uid: 35265 components: - type: Transform rot: 3.141592653589793 rad pos: 81.5,-19.5 parent: 2 - - uid: 31599 + - uid: 35266 components: - type: Transform pos: 35.5,-84.5 parent: 2 - - uid: 31600 + - uid: 35267 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,-19.5 parent: 2 - - uid: 31601 + - uid: 35268 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-19.5 parent: 2 - - uid: 31603 + - uid: 35269 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,-25.5 parent: 2 - - uid: 31605 + - uid: 35270 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,-15.5 parent: 2 - - uid: 31607 + - uid: 35271 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-15.5 parent: 2 - - uid: 31608 + - uid: 35272 components: - type: Transform pos: 53.5,15.5 parent: 2 - - uid: 31609 + - uid: 35273 components: - type: Transform pos: 52.5,17.5 parent: 2 - - uid: 31614 + - uid: 35274 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-26.5 parent: 2 - - uid: 31615 + - uid: 35275 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,-48.5 parent: 2 - - uid: 31616 + - uid: 35276 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-24.5 parent: 2 - - uid: 31617 + - uid: 35277 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,-15.5 parent: 2 - - uid: 31619 + - uid: 35278 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-48.5 parent: 2 - - uid: 31621 + - uid: 35279 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-15.5 parent: 2 - - uid: 31623 + - uid: 35280 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-12.5 parent: 2 - - uid: 31624 + - uid: 35281 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-14.5 parent: 2 - - uid: 31626 + - uid: 35282 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-16.5 parent: 2 - - uid: 31627 + - uid: 35283 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-15.5 parent: 2 - - uid: 31628 + - uid: 35284 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-22.5 parent: 2 - - uid: 31629 + - uid: 35285 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-15.5 parent: 2 - - uid: 31630 + - uid: 35286 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-13.5 parent: 2 - - uid: 31631 + - uid: 35287 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-23.5 parent: 2 - - uid: 31632 + - uid: 35288 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-15.5 parent: 2 - - uid: 31633 + - uid: 35289 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-79.5 parent: 2 - - uid: 31634 + - uid: 35290 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-26.5 parent: 2 - - uid: 31639 + - uid: 35291 components: - type: Transform pos: 41.5,-76.5 parent: 2 - - uid: 31640 + - uid: 35292 components: - type: Transform pos: 64.5,-63.5 parent: 2 - - uid: 31641 + - uid: 35293 components: - type: Transform pos: 67.5,-64.5 parent: 2 - - uid: 31642 + - uid: 35294 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-16.5 parent: 2 - - uid: 31643 + - uid: 35295 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-52.5 parent: 2 - - uid: 31644 + - uid: 35296 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-20.5 parent: 2 - - uid: 31645 + - uid: 35297 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-19.5 parent: 2 - - uid: 31646 + - uid: 35298 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-18.5 parent: 2 - - uid: 31647 + - uid: 35299 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,-17.5 parent: 2 - - uid: 31648 + - uid: 35300 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,-19.5 parent: 2 - - uid: 31649 + - uid: 35301 components: - type: Transform rot: 3.141592653589793 rad pos: 83.5,-19.5 parent: 2 - - uid: 31650 + - uid: 35302 components: - type: Transform rot: 3.141592653589793 rad pos: 82.5,-19.5 parent: 2 - - uid: 31651 + - uid: 35303 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-19.5 parent: 2 - - uid: 31652 + - uid: 35304 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-18.5 parent: 2 - - uid: 31653 + - uid: 35305 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-26.5 parent: 2 - - uid: 31654 + - uid: 35306 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-25.5 parent: 2 - - uid: 31655 + - uid: 35307 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-24.5 parent: 2 - - uid: 31657 + - uid: 35308 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-26.5 parent: 2 - - uid: 31658 + - uid: 35309 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-26.5 parent: 2 - - uid: 31659 + - uid: 35310 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-26.5 parent: 2 - - uid: 31660 + - uid: 35311 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-26.5 parent: 2 - - uid: 31662 + - uid: 35312 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,-25.5 parent: 2 - - uid: 31663 + - uid: 35313 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-24.5 parent: 2 - - uid: 31664 + - uid: 35314 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-25.5 parent: 2 - - uid: 31665 + - uid: 35315 components: - type: Transform rot: 3.141592653589793 rad pos: 92.5,-24.5 parent: 2 - - uid: 31666 + - uid: 35316 components: - type: Transform rot: 3.141592653589793 rad pos: 92.5,-19.5 parent: 2 - - uid: 31667 + - uid: 35317 components: - type: Transform pos: 108.5,-23.5 parent: 2 - - uid: 31668 + - uid: 35318 components: - type: Transform pos: 97.5,-20.5 parent: 2 - - uid: 31669 + - uid: 35319 components: - type: Transform rot: 3.141592653589793 rad pos: 92.5,-26.5 parent: 2 - - uid: 31670 + - uid: 35320 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-26.5 parent: 2 - - uid: 31671 + - uid: 35321 components: - type: Transform rot: 3.141592653589793 rad pos: 99.5,-24.5 parent: 2 - - uid: 31672 + - uid: 35322 components: - type: Transform rot: 3.141592653589793 rad pos: 99.5,-25.5 parent: 2 - - uid: 31673 + - uid: 35323 components: - type: Transform rot: 3.141592653589793 rad pos: 99.5,-19.5 parent: 2 - - uid: 31674 + - uid: 35324 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-19.5 parent: 2 - - uid: 31675 + - uid: 35325 components: - type: Transform rot: 3.141592653589793 rad pos: 99.5,-26.5 parent: 2 - - uid: 31676 + - uid: 35326 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-26.5 parent: 2 - - uid: 31677 + - uid: 35327 components: - type: Transform pos: 92.5,-20.5 parent: 2 - - uid: 31678 + - uid: 35328 components: - type: Transform rot: 3.141592653589793 rad pos: 103.5,-19.5 parent: 2 - - uid: 31679 + - uid: 35329 components: - type: Transform rot: 3.141592653589793 rad pos: 103.5,-20.5 parent: 2 - - uid: 31680 + - uid: 35330 components: - type: Transform rot: 3.141592653589793 rad pos: 103.5,-21.5 parent: 2 - - uid: 31681 + - uid: 35331 components: - type: Transform rot: 3.141592653589793 rad pos: 103.5,-25.5 parent: 2 - - uid: 31682 + - uid: 35332 components: - type: Transform rot: 3.141592653589793 rad pos: 103.5,-24.5 parent: 2 - - uid: 31683 + - uid: 35333 components: - type: Transform rot: 3.141592653589793 rad pos: 103.5,-23.5 parent: 2 - - uid: 31684 + - uid: 35334 components: - type: Transform pos: 90.5,-20.5 parent: 2 - - uid: 31685 + - uid: 35335 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-84.5 parent: 2 - - uid: 31686 + - uid: 35336 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-84.5 parent: 2 - - uid: 31687 + - uid: 35337 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-84.5 parent: 2 - - uid: 31688 + - uid: 35338 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-84.5 parent: 2 - - uid: 31689 + - uid: 35339 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-31.5 parent: 2 - - uid: 31690 + - uid: 35340 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-36.5 parent: 2 - - uid: 31691 + - uid: 35341 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,-37.5 parent: 2 - - uid: 31692 + - uid: 35342 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-36.5 parent: 2 - - uid: 31693 + - uid: 35343 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-38.5 parent: 2 - - uid: 31694 + - uid: 35344 components: - type: Transform rot: 3.141592653589793 rad pos: 99.5,-36.5 parent: 2 - - uid: 31695 + - uid: 35345 components: - type: Transform rot: 3.141592653589793 rad pos: 99.5,-37.5 parent: 2 - - uid: 31696 + - uid: 35346 components: - type: Transform rot: 3.141592653589793 rad pos: 99.5,-38.5 parent: 2 - - uid: 31697 + - uid: 35347 components: - type: Transform rot: 3.141592653589793 rad pos: 92.5,-36.5 parent: 2 - - uid: 31698 + - uid: 35348 components: - type: Transform rot: 3.141592653589793 rad pos: 92.5,-38.5 parent: 2 - - uid: 31699 + - uid: 35349 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-38.5 parent: 2 - - uid: 31700 + - uid: 35350 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-37.5 parent: 2 - - uid: 31701 + - uid: 35351 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-36.5 parent: 2 - - uid: 31702 + - uid: 35352 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,-37.5 parent: 2 - - uid: 31703 + - uid: 35353 components: - type: Transform rot: 3.141592653589793 rad pos: 85.5,-37.5 parent: 2 - - uid: 31704 + - uid: 35354 components: - type: Transform rot: 3.141592653589793 rad pos: 103.5,-37.5 parent: 2 - - uid: 31705 + - uid: 35355 components: - type: Transform pos: 106.5,-60.5 parent: 2 - - uid: 31706 + - uid: 35356 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-98.5 parent: 2 - - uid: 31707 + - uid: 35357 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-102.5 parent: 2 - - uid: 31708 + - uid: 35358 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-96.5 parent: 2 - - uid: 31709 + - uid: 35359 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-84.5 parent: 2 - - uid: 31710 + - uid: 35360 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-84.5 parent: 2 - - uid: 31711 + - uid: 35361 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-39.5 parent: 2 - - uid: 31712 + - uid: 35362 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-40.5 parent: 2 - - uid: 31713 + - uid: 35363 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-34.5 parent: 2 - - uid: 31714 + - uid: 35364 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-35.5 parent: 2 - - uid: 31715 + - uid: 35365 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-36.5 parent: 2 - - uid: 31716 + - uid: 35366 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-41.5 parent: 2 - - uid: 31717 + - uid: 35367 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-41.5 parent: 2 - - uid: 31718 + - uid: 35368 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-41.5 parent: 2 - - uid: 31719 + - uid: 35369 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-40.5 parent: 2 - - uid: 31720 + - uid: 35370 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-40.5 parent: 2 - - uid: 31721 + - uid: 35371 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-40.5 parent: 2 - - uid: 31722 + - uid: 35372 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-40.5 parent: 2 - - uid: 31723 + - uid: 35373 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-41.5 parent: 2 - - uid: 31724 + - uid: 35374 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-42.5 parent: 2 - - uid: 31725 + - uid: 35375 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-43.5 parent: 2 - - uid: 31726 + - uid: 35376 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-41.5 parent: 2 - - uid: 31727 + - uid: 35377 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-41.5 parent: 2 - - uid: 31728 + - uid: 35378 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-43.5 parent: 2 - - uid: 31729 + - uid: 35379 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-42.5 parent: 2 - - uid: 31730 + - uid: 35380 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-40.5 parent: 2 - - uid: 31731 + - uid: 35381 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-39.5 parent: 2 - - uid: 31732 + - uid: 35382 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-38.5 parent: 2 - - uid: 31733 + - uid: 35383 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-37.5 parent: 2 - - uid: 31734 + - uid: 35384 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-36.5 parent: 2 - - uid: 31735 + - uid: 35385 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-35.5 parent: 2 - - uid: 31736 + - uid: 35386 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-34.5 parent: 2 - - uid: 31737 + - uid: 35387 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-34.5 parent: 2 - - uid: 31738 + - uid: 35388 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-34.5 parent: 2 - - uid: 31739 + - uid: 35389 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-34.5 parent: 2 - - uid: 31740 + - uid: 35390 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-34.5 parent: 2 - - uid: 31741 + - uid: 35391 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-34.5 parent: 2 - - uid: 31742 + - uid: 35392 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-34.5 parent: 2 - - uid: 31743 + - uid: 35393 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-34.5 parent: 2 - - uid: 31744 + - uid: 35394 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-42.5 parent: 2 - - uid: 31745 + - uid: 35395 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-43.5 parent: 2 - - uid: 31746 + - uid: 35396 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-44.5 parent: 2 - - uid: 31747 + - uid: 35397 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-45.5 parent: 2 - - uid: 31748 + - uid: 35398 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-45.5 parent: 2 - - uid: 31749 + - uid: 35399 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-45.5 parent: 2 - - uid: 31750 + - uid: 35400 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-45.5 parent: 2 - - uid: 31751 + - uid: 35401 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-45.5 parent: 2 - - uid: 31752 + - uid: 35402 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-45.5 parent: 2 - - uid: 31753 + - uid: 35403 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,-45.5 parent: 2 - - uid: 31754 + - uid: 35404 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-45.5 parent: 2 - - uid: 31755 + - uid: 35405 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-44.5 parent: 2 - - uid: 31756 + - uid: 35406 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-43.5 parent: 2 - - uid: 31757 + - uid: 35407 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-42.5 parent: 2 - - uid: 31758 + - uid: 35408 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-19.5 parent: 2 - - uid: 31759 + - uid: 35409 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-18.5 parent: 2 - - uid: 31760 + - uid: 35410 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-27.5 parent: 2 - - uid: 31762 + - uid: 35411 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-27.5 parent: 2 - - uid: 31765 + - uid: 35412 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-20.5 parent: 2 - - uid: 31766 + - uid: 35413 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-21.5 parent: 2 - - uid: 31767 + - uid: 35414 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-49.5 parent: 2 - - uid: 31768 + - uid: 35415 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-53.5 parent: 2 - - uid: 31769 + - uid: 35416 components: - type: Transform pos: 60.5,-65.5 parent: 2 - - uid: 31770 + - uid: 35417 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-49.5 parent: 2 - - uid: 31772 + - uid: 35418 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-51.5 parent: 2 - - uid: 31773 + - uid: 35419 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-52.5 parent: 2 - - uid: 31774 + - uid: 35420 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-50.5 parent: 2 - - uid: 31775 + - uid: 35421 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-51.5 parent: 2 - - uid: 31776 + - uid: 35422 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-52.5 parent: 2 - - uid: 31777 + - uid: 35423 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-54.5 parent: 2 - - uid: 31778 + - uid: 35424 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-55.5 parent: 2 - - uid: 31779 + - uid: 35425 components: - type: Transform pos: 61.5,-55.5 parent: 2 - - uid: 31780 + - uid: 35426 components: - type: Transform pos: 56.5,-57.5 parent: 2 - - uid: 31781 + - uid: 35427 components: - type: Transform pos: 55.5,-57.5 parent: 2 - - uid: 31782 + - uid: 35428 components: - type: Transform pos: 54.5,-57.5 parent: 2 - - uid: 31783 + - uid: 35429 components: - type: Transform pos: 54.5,-59.5 parent: 2 - - uid: 31784 + - uid: 35430 components: - type: Transform pos: 54.5,-61.5 parent: 2 - - uid: 31785 + - uid: 35431 components: - type: Transform pos: 55.5,-61.5 parent: 2 - - uid: 31786 + - uid: 35432 components: - type: Transform pos: 59.5,-61.5 parent: 2 - - uid: 31787 + - uid: 35433 components: - type: Transform pos: 60.5,-61.5 parent: 2 - - uid: 31788 + - uid: 35434 components: - type: Transform pos: 53.5,-61.5 parent: 2 - - uid: 31789 + - uid: 35435 components: - type: Transform pos: 52.5,-61.5 parent: 2 - - uid: 31790 + - uid: 35436 components: - type: Transform pos: 52.5,-62.5 parent: 2 - - uid: 31791 + - uid: 35437 components: - type: Transform pos: 52.5,-66.5 parent: 2 - - uid: 31792 + - uid: 35438 components: - type: Transform pos: 52.5,-67.5 parent: 2 - - uid: 31793 + - uid: 35439 components: - type: Transform pos: 53.5,-67.5 parent: 2 - - uid: 31794 + - uid: 35440 components: - type: Transform pos: 54.5,-67.5 parent: 2 - - uid: 31795 + - uid: 35441 components: - type: Transform pos: 55.5,-67.5 parent: 2 - - uid: 31796 + - uid: 35442 components: - type: Transform pos: 56.5,-67.5 parent: 2 - - uid: 31797 + - uid: 35443 components: - type: Transform pos: 57.5,-67.5 parent: 2 - - uid: 31798 + - uid: 35444 components: - type: Transform pos: 58.5,-67.5 parent: 2 - - uid: 31799 + - uid: 35445 components: - type: Transform pos: 65.5,-63.5 parent: 2 - - uid: 31800 + - uid: 35446 components: - type: Transform pos: 65.5,-64.5 parent: 2 - - uid: 31801 + - uid: 35447 components: - type: Transform pos: 65.5,-65.5 parent: 2 - - uid: 31802 + - uid: 35448 components: - type: Transform pos: 65.5,-66.5 parent: 2 - - uid: 31803 + - uid: 35449 components: - type: Transform pos: 64.5,-66.5 parent: 2 - - uid: 31804 + - uid: 35450 components: - type: Transform pos: 63.5,-66.5 parent: 2 - - uid: 31805 + - uid: 35451 components: - type: Transform pos: 62.5,-66.5 parent: 2 - - uid: 31806 + - uid: 35452 components: - type: Transform pos: 62.5,-67.5 parent: 2 - - uid: 31807 + - uid: 35453 components: - type: Transform pos: 62.5,-70.5 parent: 2 - - uid: 31808 + - uid: 35454 components: - type: Transform pos: 63.5,-70.5 parent: 2 - - uid: 31809 + - uid: 35455 components: - type: Transform pos: 62.5,-71.5 parent: 2 - - uid: 31810 + - uid: 35456 components: - type: Transform pos: 65.5,-70.5 parent: 2 - - uid: 31811 + - uid: 35457 components: - type: Transform pos: 66.5,-70.5 parent: 2 - - uid: 31812 + - uid: 35458 components: - type: Transform pos: 66.5,-71.5 parent: 2 - - uid: 31813 + - uid: 35459 components: - type: Transform pos: 66.5,-72.5 parent: 2 - - uid: 31814 + - uid: 35460 components: - type: Transform pos: 65.5,-72.5 parent: 2 - - uid: 31815 + - uid: 35461 components: - type: Transform pos: 63.5,-72.5 parent: 2 - - uid: 31816 + - uid: 35462 components: - type: Transform pos: 62.5,-72.5 parent: 2 - - uid: 31817 + - uid: 35463 components: - type: Transform pos: 66.5,-68.5 parent: 2 - - uid: 31818 + - uid: 35464 components: - type: Transform pos: 66.5,-66.5 parent: 2 - - uid: 31819 + - uid: 35465 components: - type: Transform pos: 67.5,-66.5 parent: 2 - - uid: 31820 + - uid: 35466 components: - type: Transform pos: 64.5,-52.5 parent: 2 - - uid: 31821 + - uid: 35467 components: - type: Transform pos: 64.5,-51.5 parent: 2 - - uid: 31822 + - uid: 35468 components: - type: Transform pos: 67.5,-51.5 parent: 2 - - uid: 31823 + - uid: 35469 components: - type: Transform pos: 64.5,-55.5 parent: 2 - - uid: 31824 + - uid: 35470 components: - type: Transform pos: 63.5,-55.5 parent: 2 - - uid: 31825 + - uid: 35471 components: - type: Transform pos: 62.5,-55.5 parent: 2 - - uid: 31827 + - uid: 35472 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-15.5 parent: 2 - - uid: 31828 + - uid: 35473 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-16.5 parent: 2 - - uid: 31829 + - uid: 35474 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-17.5 parent: 2 - - uid: 31830 + - uid: 35475 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-53.5 parent: 2 - - uid: 31831 + - uid: 35476 components: - type: Transform pos: 51.5,-77.5 parent: 2 - - uid: 31832 + - uid: 35477 components: - type: Transform pos: 51.5,-76.5 parent: 2 - - uid: 31833 + - uid: 35478 components: - type: Transform pos: 51.5,-75.5 parent: 2 - - uid: 31834 + - uid: 35479 components: - type: Transform pos: 51.5,-74.5 parent: 2 - - uid: 31835 + - uid: 35480 components: - type: Transform pos: 51.5,-73.5 parent: 2 - - uid: 31836 + - uid: 35481 components: - type: Transform pos: 51.5,-72.5 parent: 2 - - uid: 31837 + - uid: 35482 components: - type: Transform pos: 51.5,-71.5 parent: 2 - - uid: 31838 + - uid: 35483 components: - type: Transform pos: 51.5,-70.5 parent: 2 - - uid: 31839 + - uid: 35484 components: - type: Transform pos: 52.5,-70.5 parent: 2 - - uid: 31840 + - uid: 35485 components: - type: Transform pos: 53.5,-70.5 parent: 2 - - uid: 31841 + - uid: 35486 components: - type: Transform pos: 58.5,-70.5 parent: 2 - - uid: 31842 + - uid: 35487 components: - type: Transform pos: 58.5,-71.5 parent: 2 - - uid: 31843 + - uid: 35488 components: - type: Transform pos: 58.5,-72.5 parent: 2 - - uid: 31844 + - uid: 35489 components: - type: Transform pos: 58.5,-73.5 parent: 2 - - uid: 31845 + - uid: 35490 components: - type: Transform pos: 58.5,-74.5 parent: 2 - - uid: 31846 + - uid: 35491 components: - type: Transform pos: 58.5,-77.5 parent: 2 - - uid: 31847 + - uid: 35492 components: - type: Transform pos: 57.5,-77.5 parent: 2 - - uid: 31848 + - uid: 35493 components: - type: Transform pos: 56.5,-77.5 parent: 2 - - uid: 31849 + - uid: 35494 components: - type: Transform pos: 55.5,-77.5 parent: 2 - - uid: 31850 + - uid: 35495 components: - type: Transform pos: 54.5,-77.5 parent: 2 - - uid: 31851 + - uid: 35496 components: - type: Transform pos: 53.5,-77.5 parent: 2 - - uid: 31852 + - uid: 35497 components: - type: Transform pos: 52.5,-77.5 parent: 2 - - uid: 31853 + - uid: 35498 components: - type: Transform pos: 67.5,-54.5 parent: 2 - - uid: 31854 + - uid: 35499 components: - type: Transform pos: 20.5,-68.5 parent: 2 - - uid: 31855 + - uid: 35500 components: - type: Transform pos: 20.5,-69.5 parent: 2 - - uid: 31856 + - uid: 35501 components: - type: Transform pos: 99.5,-92.5 parent: 2 - - uid: 31857 + - uid: 35502 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-85.5 parent: 2 - - uid: 31858 + - uid: 35503 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-83.5 parent: 2 - - uid: 31859 + - uid: 35504 components: - type: Transform pos: 43.5,-76.5 parent: 2 - - uid: 31860 + - uid: 35505 components: - type: Transform pos: 44.5,-76.5 parent: 2 - - uid: 31861 + - uid: 35506 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-84.5 parent: 2 - - uid: 31862 + - uid: 35507 components: - type: Transform pos: -9.5,-100.5 parent: 2 - - uid: 31863 + - uid: 35508 components: - type: Transform pos: 88.5,-56.5 parent: 2 - - uid: 31864 + - uid: 35509 components: - type: Transform pos: 4.5,-94.5 parent: 2 - - uid: 31865 + - uid: 35510 components: - type: Transform pos: 3.5,-94.5 parent: 2 - - uid: 31866 + - uid: 35511 components: - type: Transform pos: 2.5,-94.5 parent: 2 - - uid: 31867 + - uid: 35512 components: - type: Transform pos: 1.5,-94.5 parent: 2 - - uid: 31868 + - uid: 35513 components: - type: Transform pos: 1.5,-93.5 parent: 2 - - uid: 31869 + - uid: 35514 components: - type: Transform pos: 1.5,-92.5 parent: 2 - - uid: 31870 + - uid: 35515 components: - type: Transform pos: -2.5,-92.5 parent: 2 - - uid: 31871 + - uid: 35516 components: - type: Transform pos: -3.5,-92.5 parent: 2 - - uid: 31873 + - uid: 35517 components: - type: Transform pos: 1.5,-95.5 parent: 2 - - uid: 31874 + - uid: 35518 components: - type: Transform pos: 1.5,-96.5 parent: 2 - - uid: 31875 + - uid: 35519 components: - type: Transform pos: 1.5,-97.5 parent: 2 - - uid: 31876 + - uid: 35520 components: - type: Transform pos: 0.5,-97.5 parent: 2 - - uid: 31877 + - uid: 35521 components: - type: Transform pos: -0.5,-97.5 parent: 2 - - uid: 31878 + - uid: 35522 components: - type: Transform pos: -2.5,-97.5 parent: 2 - - uid: 31879 + - uid: 35523 components: - type: Transform pos: -3.5,-97.5 parent: 2 - - uid: 31880 + - uid: 35524 components: - type: Transform pos: -4.5,-97.5 parent: 2 - - uid: 31881 + - uid: 35525 components: - type: Transform pos: -4.5,-96.5 parent: 2 - - uid: 31882 + - uid: 35526 components: - type: Transform pos: -4.5,-95.5 parent: 2 - - uid: 31883 + - uid: 35527 components: - type: Transform pos: -4.5,-94.5 parent: 2 - - uid: 31884 + - uid: 35528 components: - type: Transform pos: -4.5,-93.5 parent: 2 - - uid: 31885 + - uid: 35529 components: - type: Transform pos: -4.5,-92.5 parent: 2 - - uid: 31886 + - uid: 35530 components: - type: Transform pos: -10.5,-97.5 parent: 2 - - uid: 31887 + - uid: 35531 components: - type: Transform pos: -9.5,-97.5 parent: 2 - - uid: 31888 + - uid: 35532 components: - type: Transform pos: -8.5,-97.5 parent: 2 - - uid: 31889 + - uid: 35533 components: - type: Transform pos: -7.5,-97.5 parent: 2 - - uid: 31890 + - uid: 35534 components: - type: Transform pos: -5.5,-97.5 parent: 2 - - uid: 31891 + - uid: 35535 components: - type: Transform pos: -3.5,-98.5 parent: 2 - - uid: 31892 + - uid: 35536 components: - type: Transform pos: -3.5,-99.5 parent: 2 - - uid: 31893 + - uid: 35537 components: - type: Transform pos: -3.5,-100.5 parent: 2 - - uid: 31894 + - uid: 35538 components: - type: Transform pos: -4.5,-100.5 parent: 2 - - uid: 31895 + - uid: 35539 components: - type: Transform pos: -6.5,-100.5 parent: 2 - - uid: 31896 + - uid: 35540 components: - type: Transform pos: -7.5,-100.5 parent: 2 - - uid: 31897 + - uid: 35541 components: - type: Transform pos: -8.5,-100.5 parent: 2 - - uid: 31898 + - uid: 35542 components: - type: Transform pos: -10.5,-100.5 parent: 2 - - uid: 31899 + - uid: 35543 components: - type: Transform pos: -10.5,-101.5 parent: 2 - - uid: 31900 + - uid: 35544 components: - type: Transform pos: -10.5,-102.5 parent: 2 - - uid: 31901 + - uid: 35545 components: - type: Transform pos: -14.5,-99.5 parent: 2 - - uid: 31902 + - uid: 35546 components: - type: Transform pos: -14.5,-98.5 parent: 2 - - uid: 31903 + - uid: 35547 components: - type: Transform pos: -14.5,-97.5 parent: 2 - - uid: 31904 + - uid: 35548 components: - type: Transform pos: -13.5,-97.5 parent: 2 - - uid: 31905 + - uid: 35549 components: - type: Transform pos: -12.5,-97.5 parent: 2 - - uid: 31906 + - uid: 35550 components: - type: Transform pos: -11.5,-97.5 parent: 2 - - uid: 31907 + - uid: 35551 components: - type: Transform pos: 0.5,-98.5 parent: 2 - - uid: 31908 + - uid: 35552 components: - type: Transform pos: 0.5,-99.5 parent: 2 - - uid: 31909 + - uid: 35553 components: - type: Transform pos: 0.5,-100.5 parent: 2 - - uid: 31910 + - uid: 35554 components: - type: Transform pos: -1.5,-82.5 parent: 2 - - uid: 31911 + - uid: 35555 components: - type: Transform pos: -10.5,-86.5 parent: 2 - - uid: 31912 + - uid: 35556 components: - type: Transform pos: -10.5,-87.5 parent: 2 - - uid: 31913 + - uid: 35557 components: - type: Transform pos: -10.5,-88.5 parent: 2 - - uid: 31914 + - uid: 35558 components: - type: Transform pos: -10.5,-89.5 parent: 2 - - uid: 31915 + - uid: 35559 components: - type: Transform pos: -61.5,-55.5 parent: 2 - - uid: 31916 + - uid: 35560 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-117.5 parent: 2 - - uid: 31917 + - uid: 35561 components: - type: Transform pos: -37.5,-75.5 parent: 2 - - uid: 31918 + - uid: 35562 components: - type: Transform pos: -36.5,-75.5 parent: 2 - - uid: 31919 + - uid: 35563 components: - type: Transform pos: -35.5,-75.5 parent: 2 - - uid: 31920 + - uid: 35564 components: - type: Transform pos: -34.5,-75.5 parent: 2 - - uid: 31921 + - uid: 35565 components: - type: Transform pos: -33.5,-75.5 parent: 2 - - uid: 31922 + - uid: 35566 components: - type: Transform pos: -33.5,-74.5 parent: 2 - - uid: 31923 + - uid: 35567 components: - type: Transform pos: -33.5,-73.5 parent: 2 - - uid: 31924 + - uid: 35568 components: - type: Transform pos: -33.5,-72.5 parent: 2 - - uid: 31925 + - uid: 35569 components: - type: Transform pos: -33.5,-71.5 parent: 2 - - uid: 31926 + - uid: 35570 components: - type: Transform pos: -34.5,-71.5 parent: 2 - - uid: 31927 + - uid: 35571 components: - type: Transform pos: -36.5,-71.5 parent: 2 - - uid: 31928 + - uid: 35572 components: - type: Transform pos: -37.5,-71.5 parent: 2 - - uid: 31929 + - uid: 35573 components: - type: Transform pos: -37.5,-72.5 parent: 2 - - uid: 31930 + - uid: 35574 components: - type: Transform pos: -62.5,-55.5 parent: 2 - - uid: 31931 + - uid: 35575 components: - type: Transform pos: -40.5,-75.5 parent: 2 - - uid: 31932 + - uid: 35576 components: - type: Transform pos: -39.5,-75.5 parent: 2 - - uid: 31933 + - uid: 35577 components: - type: Transform pos: -38.5,-75.5 parent: 2 - - uid: 31934 + - uid: 35578 components: - type: Transform pos: -38.5,-71.5 parent: 2 - - uid: 31935 + - uid: 35579 components: - type: Transform pos: -39.5,-71.5 parent: 2 - - uid: 31936 + - uid: 35580 components: - type: Transform pos: -40.5,-71.5 parent: 2 - - uid: 31937 + - uid: 35581 components: - type: Transform pos: -41.5,-71.5 parent: 2 - - uid: 31938 + - uid: 35582 components: - type: Transform pos: -41.5,-75.5 parent: 2 - - uid: 31939 + - uid: 35583 components: - type: Transform pos: -41.5,-66.5 parent: 2 - - uid: 31940 + - uid: 35584 components: - type: Transform pos: -40.5,-66.5 parent: 2 - - uid: 31941 + - uid: 35585 components: - type: Transform pos: -39.5,-66.5 parent: 2 - - uid: 31942 + - uid: 35586 components: - type: Transform pos: -38.5,-66.5 parent: 2 - - uid: 31943 + - uid: 35587 components: - type: Transform pos: -37.5,-66.5 parent: 2 - - uid: 31944 + - uid: 35588 components: - type: Transform pos: -36.5,-66.5 parent: 2 - - uid: 31945 + - uid: 35589 components: - type: Transform pos: -35.5,-66.5 parent: 2 - - uid: 31946 + - uid: 35590 components: - type: Transform pos: -34.5,-66.5 parent: 2 - - uid: 31947 + - uid: 35591 components: - type: Transform pos: -33.5,-66.5 parent: 2 - - uid: 31948 + - uid: 35592 components: - type: Transform pos: -33.5,-67.5 parent: 2 - - uid: 31949 + - uid: 35593 components: - type: Transform pos: -33.5,-68.5 parent: 2 - - uid: 31950 + - uid: 35594 components: - type: Transform pos: -33.5,-69.5 parent: 2 - - uid: 31951 + - uid: 35595 components: - type: Transform pos: -33.5,-70.5 parent: 2 - - uid: 31952 + - uid: 35596 components: - type: Transform pos: -46.5,-72.5 parent: 2 - - uid: 31954 + - uid: 35597 components: - type: Transform pos: -46.5,-76.5 parent: 2 - - uid: 31955 + - uid: 35598 components: - type: Transform pos: -47.5,-76.5 parent: 2 - - uid: 31956 + - uid: 35599 components: - type: Transform pos: -48.5,-76.5 parent: 2 - - uid: 31957 + - uid: 35600 components: - type: Transform pos: -49.5,-76.5 parent: 2 - - uid: 31958 + - uid: 35601 components: - type: Transform pos: -50.5,-76.5 parent: 2 - - uid: 31959 + - uid: 35602 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-89.5 parent: 2 - - uid: 31960 + - uid: 35603 components: - type: Transform pos: -54.5,-76.5 parent: 2 - - uid: 31961 + - uid: 35604 components: - type: Transform pos: -53.5,-76.5 parent: 2 - - uid: 31962 + - uid: 35605 components: - type: Transform pos: -52.5,-76.5 parent: 2 - - uid: 31963 + - uid: 35606 components: - type: Transform pos: -51.5,-76.5 parent: 2 - - uid: 31964 + - uid: 35607 components: - type: Transform pos: -54.5,-55.5 parent: 2 - - uid: 31965 + - uid: 35608 components: - type: Transform pos: -55.5,-55.5 parent: 2 - - uid: 31966 + - uid: 35609 components: - type: Transform pos: -56.5,-55.5 parent: 2 - - uid: 31967 + - uid: 35610 components: - type: Transform pos: -54.5,-59.5 parent: 2 - - uid: 31968 + - uid: 35611 components: - type: Transform pos: -55.5,-59.5 parent: 2 - - uid: 31969 + - uid: 35612 components: - type: Transform pos: -56.5,-59.5 parent: 2 - - uid: 31970 + - uid: 35613 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-48.5 parent: 2 - - uid: 31971 + - uid: 35614 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-48.5 parent: 2 - - uid: 31972 + - uid: 35615 components: - type: Transform pos: -59.5,-67.5 parent: 2 - - uid: 31973 + - uid: 35616 components: - type: Transform pos: -60.5,-59.5 parent: 2 - - uid: 31974 + - uid: 35617 components: - type: Transform pos: -60.5,-55.5 parent: 2 - - uid: 31975 + - uid: 35618 components: - type: Transform pos: -59.5,-55.5 parent: 2 - - uid: 31976 + - uid: 35619 components: - type: Transform pos: -58.5,-55.5 parent: 2 - - uid: 31977 + - uid: 35620 components: - type: Transform pos: -57.5,-55.5 parent: 2 - - uid: 31978 + - uid: 35621 components: - type: Transform pos: -57.5,-59.5 parent: 2 - - uid: 31979 + - uid: 35622 components: - type: Transform pos: -58.5,-59.5 parent: 2 - - uid: 31980 + - uid: 35623 components: - type: Transform pos: -59.5,-59.5 parent: 2 - - uid: 31981 + - uid: 35624 components: - type: Transform pos: -65.5,-63.5 parent: 2 - - uid: 31982 + - uid: 35625 components: - type: Transform pos: -66.5,-63.5 parent: 2 - - uid: 31983 + - uid: 35626 components: - type: Transform pos: -66.5,-62.5 parent: 2 - - uid: 31984 + - uid: 35627 components: - type: Transform pos: -67.5,-62.5 parent: 2 - - uid: 31985 + - uid: 35628 components: - type: Transform pos: -67.5,-61.5 parent: 2 - - uid: 31986 + - uid: 35629 components: - type: Transform pos: -68.5,-61.5 parent: 2 - - uid: 31987 + - uid: 35630 components: - type: Transform pos: -68.5,-60.5 parent: 2 - - uid: 31988 + - uid: 35631 components: - type: Transform pos: -69.5,-60.5 parent: 2 - - uid: 31989 + - uid: 35632 components: - type: Transform pos: -69.5,-59.5 parent: 2 - - uid: 31990 + - uid: 35633 components: - type: Transform pos: -70.5,-59.5 parent: 2 - - uid: 31991 + - uid: 35634 components: - type: Transform pos: -66.5,-67.5 parent: 2 - - uid: 31992 + - uid: 35635 components: - type: Transform pos: -61.5,-67.5 parent: 2 - - uid: 31993 + - uid: 35636 components: - type: Transform pos: -60.5,-67.5 parent: 2 - - uid: 31994 + - uid: 35637 components: - type: Transform pos: -67.5,-68.5 parent: 2 - - uid: 31995 + - uid: 35638 components: - type: Transform pos: -68.5,-69.5 parent: 2 - - uid: 31996 + - uid: 35639 components: - type: Transform pos: -69.5,-70.5 parent: 2 - - uid: 31997 + - uid: 35640 components: - type: Transform pos: -71.5,-59.5 parent: 2 - - uid: 31998 + - uid: 35641 components: - type: Transform pos: -72.5,-59.5 parent: 2 - - uid: 31999 + - uid: 35642 components: - type: Transform pos: -73.5,-59.5 parent: 2 - - uid: 32000 + - uid: 35643 components: - type: Transform pos: -74.5,-59.5 parent: 2 - - uid: 32001 + - uid: 35644 components: - type: Transform pos: -75.5,-59.5 parent: 2 - - uid: 32002 + - uid: 35645 components: - type: Transform pos: -75.5,-60.5 parent: 2 - - uid: 32003 + - uid: 35646 components: - type: Transform pos: -75.5,-70.5 parent: 2 - - uid: 32004 + - uid: 35647 components: - type: Transform pos: -76.5,-60.5 parent: 2 - - uid: 32005 + - uid: 35648 components: - type: Transform pos: -76.5,-61.5 parent: 2 - - uid: 32006 + - uid: 35649 components: - type: Transform pos: -77.5,-61.5 parent: 2 - - uid: 32007 + - uid: 35650 components: - type: Transform pos: -77.5,-62.5 parent: 2 - - uid: 32008 + - uid: 35651 components: - type: Transform pos: -78.5,-62.5 parent: 2 - - uid: 32009 + - uid: 35652 components: - type: Transform pos: -78.5,-63.5 parent: 2 - - uid: 32010 + - uid: 35653 components: - type: Transform pos: -78.5,-64.5 parent: 2 - - uid: 32011 + - uid: 35654 components: - type: Transform pos: -78.5,-65.5 parent: 2 - - uid: 32012 + - uid: 35655 components: - type: Transform pos: -78.5,-66.5 parent: 2 - - uid: 32013 + - uid: 35656 components: - type: Transform pos: -78.5,-67.5 parent: 2 - - uid: 32014 + - uid: 35657 components: - type: Transform pos: -59.5,-68.5 parent: 2 - - uid: 32015 + - uid: 35658 components: - type: Transform pos: -77.5,-68.5 parent: 2 - - uid: 32016 + - uid: 35659 components: - type: Transform pos: -59.5,-69.5 parent: 2 - - uid: 32017 + - uid: 35660 components: - type: Transform pos: -76.5,-69.5 parent: 2 - - uid: 32018 + - uid: 35661 components: - type: Transform pos: -78.5,-68.5 parent: 2 - - uid: 32019 + - uid: 35662 components: - type: Transform pos: -77.5,-69.5 parent: 2 - - uid: 32020 + - uid: 35663 components: - type: Transform pos: -76.5,-70.5 parent: 2 - - uid: 32021 + - uid: 35664 components: - type: Transform pos: -75.5,-71.5 parent: 2 - - uid: 32022 + - uid: 35665 components: - type: Transform pos: -74.5,-71.5 parent: 2 - - uid: 32023 + - uid: 35666 components: - type: Transform pos: -73.5,-71.5 parent: 2 - - uid: 32024 + - uid: 35667 components: - type: Transform pos: -72.5,-71.5 parent: 2 - - uid: 32025 + - uid: 35668 components: - type: Transform pos: -71.5,-71.5 parent: 2 - - uid: 32026 + - uid: 35669 components: - type: Transform pos: -70.5,-71.5 parent: 2 - - uid: 32027 + - uid: 35670 components: - type: Transform pos: -69.5,-71.5 parent: 2 - - uid: 32028 + - uid: 35671 components: - type: Transform pos: -68.5,-70.5 parent: 2 - - uid: 32029 + - uid: 35672 components: - type: Transform pos: -67.5,-69.5 parent: 2 - - uid: 32030 + - uid: 35673 components: - type: Transform pos: -66.5,-68.5 parent: 2 - - uid: 32031 + - uid: 35674 components: - type: Transform pos: -57.5,-78.5 parent: 2 - - uid: 32032 + - uid: 35675 components: - type: Transform pos: -57.5,-79.5 parent: 2 - - uid: 32033 + - uid: 35676 components: - type: Transform pos: -56.5,-79.5 parent: 2 - - uid: 32034 + - uid: 35677 components: - type: Transform pos: -55.5,-79.5 parent: 2 - - uid: 32035 + - uid: 35678 components: - type: Transform pos: -54.5,-79.5 parent: 2 - - uid: 32036 + - uid: 35679 components: - type: Transform pos: -54.5,-80.5 parent: 2 - - uid: 32037 + - uid: 35680 components: - type: Transform pos: -54.5,-81.5 parent: 2 - - uid: 32038 + - uid: 35681 components: - type: Transform pos: -54.5,-82.5 parent: 2 - - uid: 32039 + - uid: 35682 components: - type: Transform pos: -54.5,-83.5 parent: 2 - - uid: 32040 + - uid: 35683 components: - type: Transform pos: -54.5,-84.5 parent: 2 - - uid: 32041 + - uid: 35684 components: - type: Transform pos: -54.5,-85.5 parent: 2 - - uid: 32042 + - uid: 35685 components: - type: Transform pos: -55.5,-84.5 parent: 2 - - uid: 32043 + - uid: 35686 components: - type: Transform pos: -56.5,-84.5 parent: 2 - - uid: 32044 + - uid: 35687 components: - type: Transform pos: -57.5,-84.5 parent: 2 - - uid: 32045 + - uid: 35688 components: - type: Transform pos: -58.5,-84.5 parent: 2 - - uid: 32046 + - uid: 35689 components: - type: Transform pos: -58.5,-85.5 parent: 2 - - uid: 32047 + - uid: 35690 components: - type: Transform pos: -58.5,-87.5 parent: 2 - - uid: 32048 + - uid: 35691 components: - type: Transform pos: -58.5,-88.5 parent: 2 - - uid: 32049 + - uid: 35692 components: - type: Transform pos: -57.5,-88.5 parent: 2 - - uid: 32050 + - uid: 35693 components: - type: Transform pos: -56.5,-88.5 parent: 2 - - uid: 32051 + - uid: 35694 components: - type: Transform pos: -55.5,-88.5 parent: 2 - - uid: 32052 + - uid: 35695 components: - type: Transform pos: -54.5,-88.5 parent: 2 - - uid: 32053 + - uid: 35696 components: - type: Transform pos: -54.5,-87.5 parent: 2 - - uid: 32054 + - uid: 35697 components: - type: Transform pos: 33.5,-80.5 parent: 2 - - uid: 32055 + - uid: 35698 components: - type: Transform pos: -59.5,-87.5 parent: 2 - - uid: 32056 + - uid: 35699 components: - type: Transform pos: -60.5,-87.5 parent: 2 - - uid: 32057 + - uid: 35700 components: - type: Transform pos: -59.5,-85.5 parent: 2 - - uid: 32058 + - uid: 35701 components: - type: Transform pos: -60.5,-85.5 parent: 2 - - uid: 32059 + - uid: 35702 components: - type: Transform pos: -65.5,-51.5 parent: 2 - - uid: 32060 + - uid: 35703 components: - type: Transform pos: -66.5,-51.5 parent: 2 - - uid: 32061 + - uid: 35704 components: - type: Transform pos: -67.5,-51.5 parent: 2 - - uid: 32062 + - uid: 35705 components: - type: Transform pos: -68.5,-51.5 parent: 2 - - uid: 32063 + - uid: 35706 components: - type: Transform pos: -69.5,-51.5 parent: 2 - - uid: 32064 + - uid: 35707 components: - type: Transform pos: -73.5,-51.5 parent: 2 - - uid: 32065 + - uid: 35708 components: - type: Transform pos: -77.5,-51.5 parent: 2 - - uid: 32066 + - uid: 35709 components: - type: Transform pos: -77.5,-50.5 parent: 2 - - uid: 32067 + - uid: 35710 components: - type: Transform pos: -77.5,-48.5 parent: 2 - - uid: 32068 + - uid: 35711 components: - type: Transform pos: -77.5,-46.5 parent: 2 - - uid: 32069 + - uid: 35712 components: - type: Transform pos: -77.5,-40.5 parent: 2 - - uid: 32070 + - uid: 35713 components: - type: Transform pos: -77.5,-38.5 parent: 2 - - uid: 32071 + - uid: 35714 components: - type: Transform pos: -77.5,-34.5 parent: 2 - - uid: 32072 + - uid: 35715 components: - type: Transform pos: -76.5,-34.5 parent: 2 - - uid: 32073 + - uid: 35716 components: - type: Transform pos: -75.5,-34.5 parent: 2 - - uid: 32074 + - uid: 35717 components: - type: Transform pos: -74.5,-34.5 parent: 2 - - uid: 32075 + - uid: 35718 components: - type: Transform pos: -73.5,-34.5 parent: 2 - - uid: 32076 + - uid: 35719 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-4.5 parent: 2 - - uid: 32077 + - uid: 35720 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-3.5 parent: 2 - - uid: 32078 + - uid: 35721 components: - type: Transform pos: -61.5,-59.5 parent: 2 - - uid: 32079 + - uid: 35722 components: - type: Transform pos: -62.5,-57.5 parent: 2 - - uid: 32080 + - uid: 35723 components: - type: Transform pos: -62.5,-58.5 parent: 2 - - uid: 32081 + - uid: 35724 components: - type: Transform pos: -62.5,-59.5 parent: 2 - - uid: 32082 + - uid: 35725 components: - type: Transform pos: -81.5,-46.5 parent: 2 - - uid: 32083 + - uid: 35726 components: - type: Transform pos: -81.5,-48.5 parent: 2 - - uid: 32084 + - uid: 35727 components: - type: Transform pos: -81.5,-40.5 parent: 2 - - uid: 32085 + - uid: 35728 components: - type: Transform pos: -81.5,-38.5 parent: 2 - - uid: 32086 + - uid: 35729 components: - type: Transform pos: -62.5,-56.5 parent: 2 - - uid: 32087 + - uid: 35730 components: - type: Transform pos: -56.5,-5.5 parent: 2 - - uid: 32088 + - uid: 35731 components: - type: Transform pos: -56.5,-4.5 parent: 2 - - uid: 32089 + - uid: 35732 components: - type: Transform pos: -56.5,1.5 parent: 2 - - uid: 32090 + - uid: 35733 components: - type: Transform pos: -55.5,1.5 parent: 2 - - uid: 32091 + - uid: 35734 components: - type: Transform pos: -54.5,1.5 parent: 2 - - uid: 32092 + - uid: 35735 components: - type: Transform pos: -53.5,1.5 parent: 2 - - uid: 32093 + - uid: 35736 components: - type: Transform pos: -52.5,1.5 parent: 2 - - uid: 32094 + - uid: 35737 components: - type: Transform pos: -51.5,1.5 parent: 2 - - uid: 32095 + - uid: 35738 components: - type: Transform pos: -56.5,-3.5 parent: 2 - - uid: 32096 + - uid: 35739 components: - type: Transform pos: -40.5,-6.5 parent: 2 - - uid: 32097 + - uid: 35740 components: - type: Transform pos: -36.5,-13.5 parent: 2 - - uid: 32098 + - uid: 35741 components: - type: Transform pos: -33.5,-6.5 parent: 2 - - uid: 32099 + - uid: 35742 components: - type: Transform pos: -33.5,-7.5 parent: 2 - - uid: 32100 + - uid: 35743 components: - type: Transform pos: -33.5,-8.5 parent: 2 - - uid: 32101 + - uid: 35744 components: - type: Transform pos: -33.5,-9.5 parent: 2 - - uid: 32102 + - uid: 35745 components: - type: Transform pos: -33.5,-10.5 parent: 2 - - uid: 32103 + - uid: 35746 components: - type: Transform pos: -40.5,-9.5 parent: 2 - - uid: 32104 + - uid: 35747 components: - type: Transform pos: -34.5,-6.5 parent: 2 - - uid: 32105 + - uid: 35748 components: - type: Transform pos: -35.5,-6.5 parent: 2 - - uid: 32106 + - uid: 35749 components: - type: Transform pos: -36.5,-6.5 parent: 2 - - uid: 32107 + - uid: 35750 components: - type: Transform pos: -37.5,-6.5 parent: 2 - - uid: 32108 + - uid: 35751 components: - type: Transform pos: -38.5,-6.5 parent: 2 - - uid: 32109 + - uid: 35752 components: - type: Transform pos: -39.5,-6.5 parent: 2 - - uid: 32110 + - uid: 35753 components: - type: Transform pos: -40.5,-10.5 parent: 2 - - uid: 32111 + - uid: 35754 components: - type: Transform pos: -40.5,-11.5 parent: 2 - - uid: 32112 + - uid: 35755 components: - type: Transform pos: -40.5,-12.5 parent: 2 - - uid: 32113 + - uid: 35756 components: - type: Transform pos: -40.5,-13.5 parent: 2 - - uid: 32114 + - uid: 35757 components: - type: Transform pos: -37.5,-13.5 parent: 2 - - uid: 32115 + - uid: 35758 components: - type: Transform pos: -38.5,-13.5 parent: 2 - - uid: 32116 + - uid: 35759 components: - type: Transform pos: -39.5,-13.5 parent: 2 - - uid: 32117 + - uid: 35760 components: - type: Transform pos: -35.5,-13.5 parent: 2 - - uid: 32118 + - uid: 35761 components: - type: Transform pos: -34.5,-13.5 parent: 2 - - uid: 32119 + - uid: 35762 components: - type: Transform pos: -33.5,-13.5 parent: 2 - - uid: 32120 + - uid: 35763 components: - type: Transform pos: -33.5,-12.5 parent: 2 - - uid: 32121 + - uid: 35764 components: - type: Transform pos: -33.5,-11.5 parent: 2 - - uid: 32122 + - uid: 35765 components: - type: Transform pos: -33.5,-28.5 parent: 2 - - uid: 32123 + - uid: 35766 components: - type: Transform pos: -39.5,-30.5 parent: 2 - - uid: 32124 + - uid: 35767 components: - type: Transform pos: -39.5,-31.5 parent: 2 - - uid: 32125 + - uid: 35768 components: - type: Transform pos: -39.5,-32.5 parent: 2 - - uid: 32126 + - uid: 35769 components: - type: Transform pos: -39.5,-33.5 parent: 2 - - uid: 32127 + - uid: 35770 components: - type: Transform pos: -39.5,-34.5 parent: 2 - - uid: 32128 + - uid: 35771 components: - type: Transform pos: -39.5,-35.5 parent: 2 - - uid: 32129 + - uid: 35772 components: - type: Transform pos: -38.5,-35.5 parent: 2 - - uid: 32130 + - uid: 35773 components: - type: Transform pos: -34.5,-35.5 parent: 2 - - uid: 32131 + - uid: 35774 components: - type: Transform pos: -33.5,-35.5 parent: 2 - - uid: 32132 + - uid: 35775 components: - type: Transform pos: -33.5,-31.5 parent: 2 - - uid: 32133 + - uid: 35776 components: - type: Transform rot: 3.141592653589793 rad pos: 92.5,-37.5 parent: 2 - - uid: 32134 + - uid: 35777 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-37.5 parent: 2 - - uid: 32135 + - uid: 35778 components: - type: Transform pos: -69.5,-19.5 parent: 2 - - uid: 32136 + - uid: 35779 components: - type: Transform pos: -69.5,-14.5 parent: 2 - - uid: 32137 + - uid: 35780 components: - type: Transform pos: -69.5,-13.5 parent: 2 - - uid: 32138 + - uid: 35781 components: - type: Transform pos: -69.5,-12.5 parent: 2 - - uid: 32139 + - uid: 35782 components: - type: Transform pos: -69.5,-11.5 parent: 2 - - uid: 32140 + - uid: 35783 components: - type: Transform pos: -69.5,-10.5 parent: 2 - - uid: 32141 + - uid: 35784 components: - type: Transform pos: -69.5,-9.5 parent: 2 - - uid: 32142 + - uid: 35785 components: - type: Transform pos: -69.5,-8.5 parent: 2 - - uid: 32143 + - uid: 35786 components: - type: Transform pos: -69.5,-7.5 parent: 2 - - uid: 32144 + - uid: 35787 components: - type: Transform pos: -69.5,-6.5 parent: 2 - - uid: 32145 + - uid: 35788 components: - type: Transform pos: -69.5,-5.5 parent: 2 - - uid: 32146 + - uid: 35789 components: - type: Transform pos: -33.5,-30.5 parent: 2 - - uid: 32147 + - uid: 35790 components: - type: Transform pos: -51.5,5.5 parent: 2 - - uid: 32148 + - uid: 35791 components: - type: Transform pos: -51.5,4.5 parent: 2 - - uid: 32149 + - uid: 35792 components: - type: Transform pos: -51.5,3.5 parent: 2 - - uid: 32150 + - uid: 35793 components: - type: Transform pos: -51.5,2.5 parent: 2 - - uid: 32152 + - uid: 35794 components: - type: Transform pos: -18.5,9.5 parent: 2 - - uid: 32153 - components: - - type: Transform - pos: -16.5,2.5 - parent: 2 - - uid: 32157 + - uid: 35795 components: - type: Transform pos: -14.5,2.5 parent: 2 - - uid: 32158 - components: - - type: Transform - pos: -14.5,3.5 - parent: 2 - - uid: 32159 + - uid: 35796 components: - type: Transform pos: -14.5,4.5 parent: 2 - - uid: 32160 - components: - - type: Transform - pos: -13.5,4.5 - parent: 2 - - uid: 32171 + - uid: 35797 components: - type: Transform pos: -18.5,10.5 parent: 2 - - uid: 32172 + - uid: 35798 components: - type: Transform pos: -18.5,11.5 parent: 2 - - uid: 32173 + - uid: 35799 components: - type: Transform pos: -17.5,11.5 parent: 2 - - uid: 32174 + - uid: 35800 components: - type: Transform pos: -13.5,11.5 parent: 2 - - uid: 32176 + - uid: 35801 components: - type: Transform pos: -24.5,18.5 parent: 2 - - uid: 32177 + - uid: 35802 components: - type: Transform pos: -21.5,17.5 parent: 2 - - uid: 32178 + - uid: 35803 components: - type: Transform pos: -34.5,21.5 parent: 2 - - uid: 32179 + - uid: 35804 components: - type: Transform pos: -33.5,21.5 parent: 2 - - uid: 32180 + - uid: 35805 components: - type: Transform pos: -25.5,18.5 parent: 2 - - uid: 32181 + - uid: 35806 components: - type: Transform pos: -26.5,18.5 parent: 2 - - uid: 32182 + - uid: 35807 components: - type: Transform pos: -40.5,19.5 parent: 2 - - uid: 32183 + - uid: 35808 components: - type: Transform pos: -39.5,19.5 parent: 2 - - uid: 32184 + - uid: 35809 components: - type: Transform pos: -38.5,19.5 parent: 2 - - uid: 32185 + - uid: 35810 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-16.5 parent: 2 - - uid: 32186 + - uid: 35811 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-15.5 parent: 2 - - uid: 32187 + - uid: 35812 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-14.5 parent: 2 - - uid: 32188 + - uid: 35813 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-14.5 parent: 2 - - uid: 32189 + - uid: 35814 components: - type: Transform pos: -51.5,7.5 parent: 2 - - uid: 32190 + - uid: 35815 components: - type: Transform pos: -51.5,6.5 parent: 2 - - uid: 32191 + - uid: 35816 components: - type: Transform pos: -15.5,-1.5 parent: 2 - - uid: 32192 + - uid: 35817 components: - type: Transform pos: -16.5,-1.5 parent: 2 - - uid: 32193 + - uid: 35818 components: - type: Transform pos: -16.5,-2.5 parent: 2 - - uid: 32194 + - uid: 35819 components: - type: Transform pos: -17.5,-2.5 parent: 2 - - uid: 32195 + - uid: 35820 components: - type: Transform pos: -18.5,-2.5 parent: 2 - - uid: 32196 + - uid: 35821 components: - type: Transform pos: -18.5,-3.5 parent: 2 - - uid: 32197 + - uid: 35822 components: - type: Transform pos: -26.5,-27.5 parent: 2 - - uid: 32198 + - uid: 35823 components: - type: Transform pos: -26.5,-18.5 parent: 2 - - uid: 32199 + - uid: 35824 components: - type: Transform pos: -24.5,-9.5 parent: 2 - - uid: 32200 + - uid: 35825 components: - type: Transform pos: -25.5,-9.5 parent: 2 - - uid: 32201 + - uid: 35826 components: - type: Transform pos: -25.5,-10.5 parent: 2 - - uid: 32202 + - uid: 35827 components: - type: Transform pos: -25.5,-11.5 parent: 2 - - uid: 32203 + - uid: 35828 components: - type: Transform pos: -26.5,-11.5 parent: 2 - - uid: 32204 + - uid: 35829 components: - type: Transform pos: -26.5,-12.5 parent: 2 - - uid: 32205 + - uid: 35830 components: - type: Transform pos: -26.5,-19.5 parent: 2 - - uid: 32206 + - uid: 35831 components: - type: Transform pos: -26.5,-20.5 parent: 2 - - uid: 32207 + - uid: 35832 components: - type: Transform pos: -26.5,-25.5 parent: 2 - - uid: 32208 + - uid: 35833 components: - type: Transform pos: -26.5,-26.5 parent: 2 - - uid: 32209 + - uid: 35834 components: - type: Transform pos: -26.5,-33.5 parent: 2 - - uid: 32210 + - uid: 35835 components: - type: Transform pos: -26.5,-34.5 parent: 2 - - uid: 32211 + - uid: 35836 components: - type: Transform pos: -27.5,-34.5 parent: 2 - - uid: 32212 + - uid: 35837 components: - type: Transform pos: -28.5,-34.5 parent: 2 - - uid: 32213 + - uid: 35838 components: - type: Transform pos: -29.5,-35.5 parent: 2 - - uid: 32214 + - uid: 35839 components: - type: Transform pos: -29.5,-41.5 parent: 2 - - uid: 32215 + - uid: 35840 components: - type: Transform pos: -29.5,-45.5 parent: 2 - - uid: 32216 + - uid: 35841 components: - type: Transform pos: -29.5,-51.5 parent: 2 - - uid: 32217 + - uid: 35842 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-69.5 parent: 2 - - uid: 32218 + - uid: 35843 components: - type: Transform pos: -28.5,-52.5 parent: 2 - - uid: 32219 + - uid: 35844 components: - type: Transform pos: -27.5,-52.5 parent: 2 - - uid: 32220 + - uid: 35845 components: - type: Transform pos: -26.5,-52.5 parent: 2 - - uid: 32221 + - uid: 35846 components: - type: Transform pos: -26.5,-53.5 parent: 2 - - uid: 32222 + - uid: 35847 components: - type: Transform pos: -26.5,-58.5 parent: 2 - - uid: 32223 + - uid: 35848 components: - type: Transform pos: -26.5,-59.5 parent: 2 - - uid: 32224 + - uid: 35849 components: - type: Transform pos: -26.5,-60.5 parent: 2 - - uid: 32225 + - uid: 35850 components: - type: Transform pos: -26.5,-65.5 parent: 2 - - uid: 32226 + - uid: 35851 components: - type: Transform pos: -26.5,-66.5 parent: 2 - - uid: 32227 + - uid: 35852 components: - type: Transform pos: -25.5,-66.5 parent: 2 - - uid: 32228 + - uid: 35853 components: - type: Transform pos: -25.5,-67.5 parent: 2 - - uid: 32229 + - uid: 35854 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-70.5 parent: 2 - - uid: 32230 + - uid: 35855 components: - type: Transform pos: -24.5,-68.5 parent: 2 - - uid: 32231 + - uid: 35856 components: - type: Transform pos: -20.5,-68.5 parent: 2 - - uid: 32232 + - uid: 35857 components: - type: Transform pos: -19.5,-68.5 parent: 2 - - uid: 32233 + - uid: 35858 components: - type: Transform pos: -19.5,-69.5 parent: 2 - - uid: 32234 + - uid: 35859 components: - type: Transform pos: -18.5,-70.5 parent: 2 - - uid: 32235 + - uid: 35860 components: - type: Transform pos: -14.5,-70.5 parent: 2 - - uid: 32236 + - uid: 35861 components: - type: Transform pos: -13.5,-70.5 parent: 2 - - uid: 32237 + - uid: 35862 components: - type: Transform pos: -8.5,-70.5 parent: 2 - - uid: 32238 + - uid: 35863 components: - type: Transform pos: -9.5,-70.5 parent: 2 - - uid: 32239 + - uid: 35864 components: - type: Transform pos: 9.5,-70.5 parent: 2 - - uid: 32240 + - uid: 35865 components: - type: Transform pos: 10.5,-70.5 parent: 2 - - uid: 32241 + - uid: 35866 components: - type: Transform pos: 27.5,-25.5 parent: 2 - - uid: 32242 + - uid: 35867 components: - type: Transform pos: 14.5,-70.5 parent: 2 - - uid: 32243 + - uid: 35868 components: - type: Transform pos: 15.5,-70.5 parent: 2 - - uid: 32244 + - uid: 35869 components: - type: Transform pos: 27.5,-26.5 parent: 2 - - uid: 32245 + - uid: 35870 components: - type: Transform pos: 30.5,-46.5 parent: 2 - - uid: 32246 + - uid: 35871 components: - type: Transform pos: 30.5,-47.5 parent: 2 - - uid: 32247 + - uid: 35872 components: - type: Transform pos: 19.5,-70.5 parent: 2 - - uid: 32248 + - uid: 35873 components: - type: Transform pos: 21.5,-68.5 parent: 2 - - uid: 32249 + - uid: 35874 components: - type: Transform pos: 25.5,-68.5 parent: 2 - - uid: 32250 + - uid: 35875 components: - type: Transform pos: 27.5,-66.5 parent: 2 - - uid: 32251 + - uid: 35876 components: - type: Transform pos: 27.5,-30.5 parent: 2 - - uid: 32252 + - uid: 35877 components: - type: Transform pos: 27.5,-20.5 parent: 2 - - uid: 32253 + - uid: 35878 components: - type: Transform pos: 27.5,-19.5 parent: 2 - - uid: 32254 + - uid: 35879 components: - type: Transform pos: 27.5,-18.5 parent: 2 - - uid: 32256 + - uid: 35880 components: - type: Transform pos: 24.5,-34.5 parent: 2 - - uid: 32257 + - uid: 35881 components: - type: Transform pos: 30.5,-41.5 parent: 2 - - uid: 32258 + - uid: 35882 components: - type: Transform pos: 30.5,-42.5 parent: 2 - - uid: 32259 + - uid: 35883 components: - type: Transform pos: 30.5,-51.5 parent: 2 - - uid: 32260 + - uid: 35884 components: - type: Transform pos: 30.5,-52.5 parent: 2 - - uid: 32261 + - uid: 35885 components: - type: Transform pos: 23.5,-34.5 parent: 2 - - uid: 32269 + - uid: 35886 components: - type: Transform pos: 24.5,-41.5 parent: 2 - - uid: 32272 + - uid: 35887 components: - type: Transform pos: 29.5,-52.5 parent: 2 - - uid: 32273 + - uid: 35888 components: - type: Transform pos: 28.5,-52.5 parent: 2 - - uid: 32274 + - uid: 35889 components: - type: Transform pos: 27.5,-52.5 parent: 2 - - uid: 32275 + - uid: 35890 components: - type: Transform pos: 27.5,-53.5 parent: 2 - - uid: 32276 + - uid: 35891 components: - type: Transform pos: 27.5,-58.5 parent: 2 - - uid: 32277 + - uid: 35892 components: - type: Transform pos: 27.5,-59.5 parent: 2 - - uid: 32278 + - uid: 35893 components: - type: Transform pos: 27.5,-60.5 parent: 2 - - uid: 32279 + - uid: 35894 components: - type: Transform pos: 27.5,-65.5 parent: 2 - - uid: 32280 + - uid: 35895 components: - type: Transform pos: 26.5,-66.5 parent: 2 - - uid: 32281 + - uid: 35896 components: - type: Transform pos: 26.5,-67.5 parent: 2 - - uid: 32320 + - uid: 35897 components: - type: Transform pos: 12.5,14.5 parent: 2 - - uid: 32321 + - uid: 35898 components: - type: Transform pos: 36.5,-79.5 parent: 2 - - uid: 32322 + - uid: 35899 components: - type: Transform pos: 35.5,-79.5 parent: 2 - - uid: 32323 + - uid: 35900 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,18.5 parent: 2 - - uid: 32324 + - uid: 35901 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-83.5 parent: 2 - - uid: 32325 + - uid: 35902 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-83.5 parent: 2 - - uid: 32326 + - uid: 35903 components: - type: Transform pos: 34.5,-79.5 parent: 2 - - uid: 32327 + - uid: 35904 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-83.5 parent: 2 - - uid: 32328 + - uid: 35905 components: - type: Transform rot: -1.5707963267948966 rad pos: -32.5,18.5 parent: 2 - - uid: 32330 + - uid: 35906 components: - type: Transform pos: 33.5,-81.5 parent: 2 - - uid: 32331 + - uid: 35907 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-44.5 parent: 2 - - uid: 32332 + - uid: 35908 components: - type: Transform pos: -29.5,18.5 parent: 2 - - uid: 32336 + - uid: 35909 components: - type: Transform pos: 60.5,-64.5 parent: 2 - - uid: 32337 + - uid: 35910 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-103.5 parent: 2 - - uid: 32338 + - uid: 35911 components: - type: Transform pos: 60.5,-63.5 parent: 2 - - uid: 32339 + - uid: 35912 components: - type: Transform pos: 60.5,-62.5 parent: 2 - - uid: 32340 + - uid: 35913 components: - type: Transform rot: 1.5707963267948966 rad pos: 15.5,-104.5 parent: 2 - - uid: 32341 + - uid: 35914 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-104.5 parent: 2 - - uid: 32344 + - uid: 35915 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-27.5 parent: 2 - - uid: 32345 + - uid: 35916 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-88.5 parent: 2 - - uid: 32346 + - uid: 35917 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-88.5 parent: 2 - - uid: 32347 + - uid: 35918 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-86.5 parent: 2 - - uid: 32348 + - uid: 35919 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-104.5 parent: 2 - - uid: 32349 + - uid: 35920 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-109.5 parent: 2 - - uid: 32350 + - uid: 35921 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,-110.5 parent: 2 - - uid: 32351 + - uid: 35922 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-83.5 parent: 2 - - uid: 32352 + - uid: 35923 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,-29.5 parent: 2 - - uid: 32353 + - uid: 35924 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-107.5 parent: 2 - - uid: 32354 + - uid: 35925 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-106.5 parent: 2 - - uid: 32355 + - uid: 35926 components: - type: Transform pos: 65.5,-51.5 parent: 2 - - uid: 32356 + - uid: 35927 components: - type: Transform pos: 69.5,-54.5 parent: 2 - - uid: 32357 + - uid: 35928 components: - type: Transform pos: 68.5,-54.5 parent: 2 - - uid: 32358 + - uid: 35929 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,-110.5 parent: 2 - - uid: 32359 + - uid: 35930 components: - type: Transform pos: 68.5,-64.5 parent: 2 - - uid: 32360 + - uid: 35931 components: - type: Transform pos: 66.5,-51.5 parent: 2 - - uid: 32361 + - uid: 35932 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-110.5 parent: 2 - - uid: 32362 + - uid: 35933 components: - type: Transform pos: 56.5,-92.5 parent: 2 - - uid: 32363 + - uid: 35934 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-102.5 parent: 2 - - uid: 32364 + - uid: 35935 components: - type: Transform pos: 26.5,-84.5 parent: 2 - - uid: 32365 + - uid: 35936 components: - type: Transform pos: 60.5,-67.5 parent: 2 - - uid: 32366 + - uid: 35937 components: - type: Transform pos: 42.5,-76.5 parent: 2 - - uid: 32367 + - uid: 35938 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-69.5 parent: 2 - - uid: 32368 + - uid: 35939 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-85.5 parent: 2 - - uid: 32369 + - uid: 35940 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-88.5 parent: 2 - - uid: 32370 + - uid: 35941 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-85.5 parent: 2 - - uid: 32371 + - uid: 35942 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-95.5 parent: 2 - - uid: 32372 + - uid: 35943 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-83.5 parent: 2 - - uid: 32373 + - uid: 35944 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-83.5 parent: 2 - - uid: 32374 + - uid: 35945 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-83.5 parent: 2 - - uid: 32375 + - uid: 35946 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-83.5 parent: 2 - - uid: 32376 + - uid: 35947 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-106.5 parent: 2 - - uid: 32377 + - uid: 35948 components: - type: Transform pos: 56.5,-86.5 parent: 2 - - uid: 32378 + - uid: 35949 components: - type: Transform pos: 56.5,-94.5 parent: 2 - - uid: 32379 + - uid: 35950 components: - type: Transform pos: 48.5,-94.5 parent: 2 - - uid: 32380 + - uid: 35951 components: - type: Transform pos: 44.5,-82.5 parent: 2 - - uid: 32381 + - uid: 35952 components: - type: Transform pos: 48.5,-95.5 parent: 2 - - uid: 32382 + - uid: 35953 components: - type: Transform pos: 44.5,-80.5 parent: 2 - - uid: 32383 + - uid: 35954 components: - type: Transform pos: 44.5,-81.5 parent: 2 - - uid: 32384 + - uid: 35955 components: - type: Transform pos: 36.5,-81.5 parent: 2 - - uid: 32385 + - uid: 35956 components: - type: Transform pos: 38.5,-76.5 parent: 2 - - uid: 32386 + - uid: 35957 components: - type: Transform pos: 37.5,-76.5 parent: 2 - - uid: 32387 + - uid: 35958 components: - type: Transform pos: 37.5,-84.5 parent: 2 - - uid: 32388 + - uid: 35959 components: - type: Transform pos: 56.5,-100.5 parent: 2 - - uid: 32389 + - uid: 35960 components: - type: Transform pos: 56.5,-95.5 parent: 2 - - uid: 32390 + - uid: 35961 components: - type: Transform pos: 40.5,-76.5 parent: 2 - - uid: 32391 + - uid: 35962 components: - type: Transform pos: 21.5,-67.5 parent: 2 - - uid: 32392 + - uid: 35963 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-106.5 parent: 2 - - uid: 32393 + - uid: 35964 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-78.5 parent: 2 - - uid: 32394 + - uid: 35965 components: - type: Transform pos: 39.5,-76.5 parent: 2 - - uid: 32395 + - uid: 35966 components: - type: Transform pos: 56.5,-101.5 parent: 2 - - uid: 32396 + - uid: 35967 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-98.5 parent: 2 - - uid: 32397 + - uid: 35968 components: - type: Transform pos: 69.5,-64.5 parent: 2 - - uid: 32398 + - uid: 35969 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-83.5 parent: 2 - - uid: 32399 + - uid: 35970 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-110.5 parent: 2 - - uid: 32400 + - uid: 35971 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-104.5 parent: 2 - - uid: 32401 + - uid: 35972 components: - type: Transform pos: 26.5,-88.5 parent: 2 - - uid: 32402 + - uid: 35973 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-97.5 parent: 2 - - uid: 32403 + - uid: 35974 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-104.5 parent: 2 - - uid: 32404 + - uid: 35975 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-104.5 parent: 2 - - uid: 32407 + - uid: 35976 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-89.5 parent: 2 - - uid: 32408 + - uid: 35977 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-89.5 parent: 2 - - uid: 32409 + - uid: 35978 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-88.5 parent: 2 - - uid: 32410 + - uid: 35979 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-87.5 parent: 2 - - uid: 32411 + - uid: 35980 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-86.5 parent: 2 - - uid: 32432 + - uid: 35981 components: - type: Transform pos: 48.5,-93.5 parent: 2 - - uid: 32433 + - uid: 35982 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-54.5 parent: 2 - - uid: 32434 + - uid: 35983 components: - type: Transform rot: -1.5707963267948966 rad pos: -70.5,-54.5 parent: 2 - - uid: 32435 + - uid: 35984 components: - type: Transform rot: -1.5707963267948966 rad pos: -71.5,-54.5 parent: 2 - - uid: 32436 + - uid: 35985 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,-54.5 parent: 2 - - uid: 32437 + - uid: 35986 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-54.5 parent: 2 - - uid: 32438 + - uid: 35987 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-53.5 parent: 2 - - uid: 32439 + - uid: 35988 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-52.5 parent: 2 - - uid: 32440 + - uid: 35989 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-54.5 parent: 2 - - uid: 32441 + - uid: 35990 components: - type: Transform rot: -1.5707963267948966 rad pos: -75.5,-54.5 parent: 2 - - uid: 32442 + - uid: 35991 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-54.5 parent: 2 - - uid: 32443 + - uid: 35992 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-54.5 parent: 2 - - uid: 32444 + - uid: 35993 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-53.5 parent: 2 - - uid: 32445 + - uid: 35994 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-52.5 parent: 2 - - uid: 32446 + - uid: 35995 components: - type: Transform pos: 33.5,-79.5 parent: 2 - - uid: 32447 + - uid: 35996 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,18.5 parent: 2 - - uid: 32449 + - uid: 35997 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,3.5 parent: 2 - - uid: 32450 + - uid: 35998 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,4.5 parent: 2 - - uid: 32451 + - uid: 35999 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,5.5 parent: 2 - - uid: 32458 + - uid: 36000 components: - type: Transform pos: -6.5,-70.5 parent: 2 - - uid: 32459 + - uid: 36001 components: - type: Transform pos: -3.5,-70.5 parent: 2 - - uid: 32462 + - uid: 36002 components: - type: Transform pos: 44.5,-77.5 parent: 2 - - uid: 32463 + - uid: 36003 components: - type: Transform pos: -4.5,-70.5 parent: 2 - - uid: 32464 + - uid: 36004 components: - type: Transform pos: -5.5,-70.5 parent: 2 - - uid: 32465 + - uid: 36005 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-104.5 parent: 2 - - uid: 32466 + - uid: 36006 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-79.5 parent: 2 - - uid: 32467 + - uid: 36007 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-79.5 parent: 2 - - uid: 32468 + - uid: 36008 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-79.5 parent: 2 - - uid: 32469 + - uid: 36009 components: - type: Transform pos: 26.5,-86.5 parent: 2 - - uid: 32470 + - uid: 36010 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-103.5 parent: 2 - - uid: 32471 + - uid: 36011 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-102.5 parent: 2 - - uid: 32477 + - uid: 36012 components: - type: Transform pos: 26.5,-87.5 parent: 2 - - uid: 32478 + - uid: 36013 components: - type: Transform pos: 26.5,-85.5 parent: 2 - - uid: 32480 + - uid: 36014 components: - type: Transform pos: 56.5,-103.5 parent: 2 - - uid: 32482 + - uid: 36015 components: - type: Transform pos: 24.5,-88.5 parent: 2 - - uid: 32483 + - uid: 36016 components: - type: Transform pos: 55.5,-95.5 parent: 2 - - uid: 32485 + - uid: 36017 components: - type: Transform pos: 48.5,-92.5 parent: 2 - - uid: 32486 + - uid: 36018 components: - type: Transform pos: 56.5,-102.5 parent: 2 - - uid: 32488 + - uid: 36019 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-45.5 parent: 2 - - uid: 32489 + - uid: 36020 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-105.5 parent: 2 - - uid: 32490 + - uid: 36021 components: - type: Transform pos: 56.5,-104.5 parent: 2 - - uid: 32491 + - uid: 36022 components: - type: Transform pos: -38.5,21.5 parent: 2 - - uid: 32492 + - uid: 36023 components: - type: Transform pos: -38.5,20.5 parent: 2 - - uid: 32493 + - uid: 36024 components: - type: Transform pos: -22.5,17.5 parent: 2 - - uid: 32494 + - uid: 36025 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-91.5 parent: 2 - - uid: 32495 + - uid: 36026 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-100.5 parent: 2 - - uid: 32497 + - uid: 36027 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-94.5 parent: 2 - - uid: 32498 + - uid: 36028 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-107.5 parent: 2 - - uid: 32499 + - uid: 36029 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-108.5 parent: 2 - - uid: 32500 + - uid: 36030 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-100.5 parent: 2 - - uid: 32501 + - uid: 36031 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-100.5 parent: 2 - - uid: 32502 + - uid: 36032 components: - type: Transform pos: 23.5,-30.5 parent: 2 - - uid: 32503 + - uid: 36033 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-62.5 parent: 2 - - uid: 32504 + - uid: 36034 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-45.5 parent: 2 - - uid: 32505 + - uid: 36035 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,-45.5 parent: 2 - - uid: 32506 + - uid: 36036 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-45.5 parent: 2 - - uid: 32508 + - uid: 36037 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,-48.5 parent: 2 - - uid: 32509 + - uid: 36038 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-48.5 parent: 2 - - uid: 32510 + - uid: 36039 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-103.5 parent: 2 - - uid: 32511 + - uid: 36040 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-48.5 parent: 2 - - uid: 32515 + - uid: 36041 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-104.5 parent: 2 - - uid: 32516 + - uid: 36042 components: - type: Transform pos: 43.5,-89.5 parent: 2 - - uid: 32517 + - uid: 36043 components: - type: Transform pos: 43.5,-90.5 parent: 2 - - uid: 32518 + - uid: 36044 components: - type: Transform pos: 43.5,-88.5 parent: 2 - - uid: 32519 + - uid: 36045 components: - type: Transform pos: 44.5,-88.5 parent: 2 - - uid: 32520 + - uid: 36046 components: - type: Transform pos: 43.5,-91.5 parent: 2 - - uid: 32521 + - uid: 36047 components: - type: Transform pos: 48.5,-90.5 parent: 2 - - uid: 32522 + - uid: 36048 components: - type: Transform pos: 48.5,-88.5 parent: 2 - - uid: 32523 + - uid: 36049 components: - type: Transform pos: 47.5,-88.5 parent: 2 - - uid: 32524 + - uid: 36050 components: - type: Transform pos: 44.5,-91.5 parent: 2 - - uid: 32525 + - uid: 36051 components: - type: Transform pos: 48.5,-89.5 parent: 2 - - uid: 32526 + - uid: 36052 components: - type: Transform pos: 47.5,-91.5 parent: 2 - - uid: 32527 + - uid: 36053 components: - type: Transform pos: 48.5,-91.5 parent: 2 - - uid: 32528 + - uid: 36054 components: - type: Transform pos: 60.5,-66.5 parent: 2 - - uid: 32529 + - uid: 36055 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-64.5 parent: 2 - - uid: 32530 + - uid: 36056 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-63.5 parent: 2 - - uid: 32531 + - uid: 36057 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-62.5 parent: 2 - - uid: 32532 + - uid: 36058 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-61.5 parent: 2 - - uid: 32533 + - uid: 36059 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-90.5 parent: 2 - - uid: 32534 + - uid: 36060 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-104.5 parent: 2 - - uid: 32535 + - uid: 36061 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-104.5 parent: 2 - - uid: 32536 + - uid: 36062 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-92.5 parent: 2 - - uid: 32537 + - uid: 36063 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-108.5 parent: 2 - - uid: 32538 + - uid: 36064 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-65.5 parent: 2 - - uid: 32539 + - uid: 36065 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-66.5 parent: 2 - - uid: 32540 + - uid: 36066 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-88.5 parent: 2 - - uid: 32541 + - uid: 36067 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-94.5 parent: 2 - - uid: 32542 + - uid: 36068 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-109.5 parent: 2 - - uid: 32543 + - uid: 36069 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-88.5 parent: 2 - - uid: 32544 + - uid: 36070 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-93.5 parent: 2 - - uid: 32545 + - uid: 36071 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-91.5 parent: 2 - - uid: 32546 + - uid: 36072 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-89.5 parent: 2 - - uid: 32547 + - uid: 36073 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-91.5 parent: 2 - - uid: 32548 + - uid: 36074 components: - type: Transform pos: 64.5,-54.5 parent: 2 - - uid: 32549 + - uid: 36075 components: - type: Transform pos: 64.5,-53.5 parent: 2 - - uid: 32550 + - uid: 36076 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-95.5 parent: 2 - - uid: 32554 + - uid: 36077 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-61.5 parent: 2 - - uid: 32573 + - uid: 36078 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-27.5 parent: 2 - - uid: 32574 + - uid: 36079 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-27.5 parent: 2 - - uid: 32576 + - uid: 36080 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,-21.5 parent: 2 - - uid: 32577 + - uid: 36081 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,-21.5 parent: 2 - - uid: 32578 + - uid: 36082 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-21.5 parent: 2 - - uid: 32579 + - uid: 36083 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-21.5 parent: 2 - - uid: 32581 + - uid: 36084 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-21.5 parent: 2 - - uid: 32582 + - uid: 36085 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-21.5 parent: 2 - - uid: 32584 + - uid: 36086 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-8.5 parent: 2 - - uid: 32587 + - uid: 36087 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,-15.5 parent: 2 - - uid: 32590 + - uid: 36088 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-15.5 parent: 2 - - uid: 32591 + - uid: 36089 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-9.5 parent: 2 - - uid: 32592 + - uid: 36090 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-7.5 parent: 2 - - uid: 32593 + - uid: 36091 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-10.5 parent: 2 - - uid: 32594 + - uid: 36092 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-52.5 parent: 2 - - uid: 32595 + - uid: 36093 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-110.5 parent: 2 - - uid: 32596 + - uid: 36094 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-110.5 parent: 2 - - uid: 32597 + - uid: 36095 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-110.5 parent: 2 - - uid: 32598 + - uid: 36096 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-110.5 parent: 2 - - uid: 32600 + - uid: 36097 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-104.5 parent: 2 - - uid: 32601 + - uid: 36098 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-83.5 parent: 2 - - uid: 32602 + - uid: 36099 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-104.5 parent: 2 - - uid: 32603 + - uid: 36100 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-106.5 parent: 2 - - uid: 32604 + - uid: 36101 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-104.5 parent: 2 - - uid: 32605 + - uid: 36102 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-104.5 parent: 2 - - uid: 32606 + - uid: 36103 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-99.5 parent: 2 - - uid: 32607 + - uid: 36104 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-97.5 parent: 2 - - uid: 32608 + - uid: 36105 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-101.5 parent: 2 - - uid: 32609 + - uid: 36106 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-94.5 parent: 2 - - uid: 32610 + - uid: 36107 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-97.5 parent: 2 - - uid: 32611 + - uid: 36108 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-94.5 parent: 2 - - uid: 32612 + - uid: 36109 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-102.5 parent: 2 - - uid: 32613 + - uid: 36110 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-96.5 parent: 2 - - uid: 32614 + - uid: 36111 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-97.5 parent: 2 - - uid: 32615 + - uid: 36112 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-98.5 parent: 2 - - uid: 32616 + - uid: 36113 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-100.5 parent: 2 - - uid: 32617 + - uid: 36114 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-91.5 parent: 2 - - uid: 32618 + - uid: 36115 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-87.5 parent: 2 - - uid: 32619 + - uid: 36116 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-97.5 parent: 2 - - uid: 32620 + - uid: 36117 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-97.5 parent: 2 - - uid: 32621 + - uid: 36118 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-100.5 parent: 2 - - uid: 32622 + - uid: 36119 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-110.5 parent: 2 - - uid: 32623 + - uid: 36120 components: - type: Transform pos: 88.5,-62.5 parent: 2 - - uid: 32624 + - uid: 36121 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-25.5 parent: 2 - - uid: 32625 + - uid: 36122 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-25.5 parent: 2 - - uid: 32626 + - uid: 36123 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,-25.5 parent: 2 - - uid: 32627 + - uid: 36124 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-25.5 parent: 2 - - uid: 32628 + - uid: 36125 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-24.5 parent: 2 - - uid: 32629 + - uid: 36126 components: - type: Transform pos: 109.5,-23.5 parent: 2 - - uid: 32630 + - uid: 36127 components: - type: Transform pos: 109.5,-17.5 parent: 2 - - uid: 32631 + - uid: 36128 components: - type: Transform pos: 99.5,-20.5 parent: 2 - - uid: 32632 + - uid: 36129 components: - type: Transform pos: 108.5,-39.5 parent: 2 - - uid: 32633 + - uid: 36130 components: - type: Transform pos: 105.5,-39.5 parent: 2 - - uid: 32634 + - uid: 36131 components: - type: Transform rot: -1.5707963267948966 rad pos: 105.5,-73.5 parent: 2 - - uid: 32635 + - uid: 36132 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-74.5 parent: 2 - - uid: 32636 + - uid: 36133 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-85.5 parent: 2 - - uid: 32637 + - uid: 36134 components: - type: Transform pos: 19.5,13.5 parent: 2 - - uid: 32638 + - uid: 36135 components: - type: Transform pos: 20.5,13.5 parent: 2 - - uid: 32639 + - uid: 36136 components: - type: Transform pos: 20.5,14.5 parent: 2 - - uid: 32640 + - uid: 36137 components: - type: Transform pos: 20.5,15.5 parent: 2 - - uid: 32641 + - uid: 36138 components: - type: Transform pos: 20.5,16.5 parent: 2 - - uid: 32642 + - uid: 36139 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-69.5 parent: 2 - - uid: 32643 + - uid: 36140 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-53.5 parent: 2 - - uid: 32644 + - uid: 36141 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-58.5 parent: 2 - - uid: 32645 + - uid: 36142 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-60.5 parent: 2 - - uid: 32646 + - uid: 36143 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-67.5 parent: 2 - - uid: 32647 + - uid: 36144 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-69.5 parent: 2 - - uid: 32649 + - uid: 36145 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-69.5 parent: 2 - - uid: 32650 + - uid: 36146 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-67.5 parent: 2 - - uid: 32651 + - uid: 36147 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-65.5 parent: 2 - - uid: 32652 + - uid: 36148 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-51.5 parent: 2 - - uid: 32653 + - uid: 36149 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-35.5 parent: 2 - - uid: 32654 + - uid: 36150 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-33.5 parent: 2 - - uid: 32655 + - uid: 36151 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-27.5 parent: 2 - - uid: 32656 + - uid: 36152 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-25.5 parent: 2 - - uid: 32657 + - uid: 36153 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-20.5 parent: 2 - - uid: 32658 + - uid: 36154 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-18.5 parent: 2 - - uid: 32659 + - uid: 36155 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-12.5 parent: 2 - - uid: 32660 + - uid: 36156 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-9.5 parent: 2 - - uid: 32661 + - uid: 36157 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-4.5 parent: 2 - - uid: 32662 + - uid: 36158 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-2.5 parent: 2 - - uid: 32663 + - uid: 36159 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-2.5 parent: 2 - - uid: 32664 + - uid: 36160 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-49.5 parent: 2 - - uid: 32666 + - uid: 36161 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-2.5 parent: 2 - - uid: 32667 + - uid: 36162 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-9.5 parent: 2 - - uid: 32668 + - uid: 36163 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-4.5 parent: 2 - - uid: 32669 + - uid: 36164 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-12.5 parent: 2 - - uid: 32670 + - uid: 36165 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-18.5 parent: 2 - - uid: 32671 + - uid: 36166 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-20.5 parent: 2 - - uid: 32672 + - uid: 36167 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-25.5 parent: 2 - - uid: 32673 + - uid: 36168 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-26.5 parent: 2 - - uid: 32674 + - uid: 36169 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-53.5 parent: 2 - - uid: 32675 + - uid: 36170 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-58.5 parent: 2 - - uid: 32676 + - uid: 36171 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-60.5 parent: 2 - - uid: 32677 + - uid: 36172 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-65.5 parent: 2 - - uid: 32678 + - uid: 36173 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-67.5 parent: 2 - - uid: 32679 + - uid: 36174 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-69.5 parent: 2 - - uid: 32680 + - uid: 36175 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-69.5 parent: 2 - - uid: 32681 + - uid: 36176 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-69.5 parent: 2 - - uid: 32682 + - uid: 36177 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-69.5 parent: 2 - - uid: 32683 + - uid: 36178 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-70.5 parent: 2 - - uid: 32684 + - uid: 36179 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-70.5 parent: 2 - - uid: 32685 + - uid: 36180 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-70.5 parent: 2 - - uid: 32686 + - uid: 36181 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-70.5 parent: 2 - - uid: 32687 + - uid: 36182 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-69.5 parent: 2 - - uid: 32688 + - uid: 36183 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-96.5 parent: 2 - - uid: 32689 + - uid: 36184 components: - type: Transform pos: 25.5,-88.5 parent: 2 - - uid: 32690 + - uid: 36185 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-104.5 parent: 2 - - uid: 32691 + - uid: 36186 components: - type: Transform pos: 36.5,-84.5 parent: 2 - - uid: 32692 + - uid: 36187 components: - type: Transform pos: -27.5,18.5 parent: 2 - - uid: 32693 + - uid: 36188 components: - type: Transform pos: 104.5,-37.5 parent: 2 - - uid: 32694 + - uid: 36189 components: - type: Transform pos: 105.5,-37.5 parent: 2 - - uid: 32695 + - uid: 36190 components: - type: Transform pos: 105.5,-36.5 parent: 2 - - uid: 32696 + - uid: 36191 components: - type: Transform pos: 108.5,-36.5 parent: 2 - - uid: 32697 + - uid: 36192 components: - type: Transform pos: 108.5,-26.5 parent: 2 - - uid: 32698 + - uid: 36193 components: - type: Transform pos: 105.5,-26.5 parent: 2 - - uid: 32699 + - uid: 36194 components: - type: Transform pos: 105.5,-25.5 parent: 2 - - uid: 32700 + - uid: 36195 components: - type: Transform pos: 104.5,-25.5 parent: 2 - - uid: 32701 + - uid: 36196 components: - type: Transform rot: 3.141592653589793 rad pos: 99.5,-18.5 parent: 2 - - uid: 32702 + - uid: 36197 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-18.5 parent: 2 - - uid: 32703 + - uid: 36198 components: - type: Transform pos: 105.5,-38.5 parent: 2 - - uid: 32704 + - uid: 36199 components: - type: Transform pos: 105.5,-24.5 parent: 2 - - uid: 32705 + - uid: 36200 components: - type: Transform pos: 109.5,-24.5 parent: 2 - - uid: 32706 + - uid: 36201 components: - type: Transform pos: 109.5,-25.5 parent: 2 - - uid: 32707 + - uid: 36202 components: - type: Transform pos: 109.5,-26.5 parent: 2 - - uid: 32708 + - uid: 36203 components: - type: Transform pos: 105.5,-23.5 parent: 2 - - uid: 32709 + - uid: 36204 components: - type: Transform pos: 104.5,-23.5 parent: 2 - - uid: 32710 + - uid: 36205 components: - type: Transform pos: 109.5,-39.5 parent: 2 - - uid: 32711 + - uid: 36206 components: - type: Transform pos: 109.5,-38.5 parent: 2 - - uid: 32712 + - uid: 36207 components: - type: Transform pos: 109.5,-37.5 parent: 2 - - uid: 32713 + - uid: 36208 components: - type: Transform pos: 109.5,-36.5 parent: 2 - - uid: 32714 + - uid: 36209 components: - type: Transform pos: 107.5,-19.5 parent: 2 - - uid: 32715 + - uid: 36210 components: - type: Transform pos: 107.5,-17.5 parent: 2 - - uid: 32716 + - uid: 36211 components: - type: Transform pos: 110.5,-18.5 parent: 2 - - uid: 32717 + - uid: 36212 components: - type: Transform pos: 106.5,-19.5 parent: 2 - - uid: 32718 + - uid: 36213 components: - type: Transform pos: 106.5,-17.5 parent: 2 - - uid: 32719 + - uid: 36214 components: - type: Transform pos: 109.5,-19.5 parent: 2 - - uid: 32720 + - uid: 36215 components: - type: Transform pos: 110.5,-19.5 parent: 2 - - uid: 32721 + - uid: 36216 components: - type: Transform pos: 106.5,-18.5 parent: 2 - - uid: 32722 + - uid: 36217 components: - type: Transform pos: 110.5,-20.5 parent: 2 - - uid: 32723 + - uid: 36218 components: - type: Transform pos: 110.5,-21.5 parent: 2 - - uid: 32724 + - uid: 36219 components: - type: Transform pos: 110.5,-22.5 parent: 2 - - uid: 32725 + - uid: 36220 components: - type: Transform pos: 110.5,-23.5 parent: 2 - - uid: 32726 + - uid: 36221 components: - type: Transform pos: 110.5,-17.5 parent: 2 - - uid: 32727 + - uid: 36222 components: - type: Transform rot: 3.141592653589793 rad pos: 92.5,-18.5 parent: 2 - - uid: 32728 + - uid: 36223 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-18.5 parent: 2 - - uid: 32733 + - uid: 36224 components: - type: Transform rot: 3.141592653589793 rad pos: 110.5,-43.5 parent: 2 - - uid: 32734 + - uid: 36225 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-76.5 parent: 2 - - uid: 32735 + - uid: 36226 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-23.5 parent: 2 - - uid: 32777 + - uid: 36227 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-66.5 parent: 2 - - uid: 32778 + - uid: 36228 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-22.5 parent: 2 - - uid: 32779 + - uid: 36229 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-49.5 parent: 2 - - uid: 32780 + - uid: 36230 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-49.5 parent: 2 - - uid: 32781 + - uid: 36231 components: - type: Transform pos: 22.5,-88.5 parent: 2 - - uid: 32782 + - uid: 36232 components: - type: Transform pos: -40.5,-87.5 parent: 2 - - uid: 32783 + - uid: 36233 components: - type: Transform pos: -42.5,-87.5 parent: 2 - - uid: 32784 + - uid: 36234 components: - type: Transform pos: -43.5,-87.5 parent: 2 - - uid: 32785 + - uid: 36235 components: - type: Transform pos: -43.5,-88.5 parent: 2 - - uid: 32786 + - uid: 36236 components: - type: Transform pos: -43.5,-89.5 parent: 2 - - uid: 32787 + - uid: 36237 components: - type: Transform pos: -41.5,-87.5 parent: 2 - - uid: 32788 + - uid: 36238 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-26.5 parent: 2 - - uid: 32789 + - uid: 36239 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-26.5 parent: 2 - - uid: 32790 + - uid: 36240 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-26.5 parent: 2 - - uid: 32791 + - uid: 36241 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-23.5 parent: 2 - - uid: 32792 + - uid: 36242 components: - type: Transform pos: 26.5,-83.5 parent: 2 - - uid: 32793 + - uid: 36243 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,22.5 parent: 2 - - uid: 32794 + - uid: 36244 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-25.5 parent: 2 - - uid: 32795 + - uid: 36245 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,6.5 parent: 2 - - uid: 32796 + - uid: 36246 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,6.5 parent: 2 - - uid: 32797 + - uid: 36247 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,6.5 parent: 2 - - uid: 32798 + - uid: 36248 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,6.5 parent: 2 - - uid: 32799 + - uid: 36249 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-60.5 parent: 2 - - uid: 32800 + - uid: 36250 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-59.5 parent: 2 - - uid: 32801 + - uid: 36251 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-58.5 parent: 2 - - uid: 32802 + - uid: 36252 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-57.5 parent: 2 - - uid: 32803 + - uid: 36253 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-56.5 parent: 2 - - uid: 32804 + - uid: 36254 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-55.5 parent: 2 - - uid: 32805 + - uid: 36255 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-54.5 parent: 2 - - uid: 32806 + - uid: 36256 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,9.5 parent: 2 - - uid: 32807 + - uid: 36257 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,7.5 parent: 2 - - uid: 32808 + - uid: 36258 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,8.5 parent: 2 - - uid: 32809 + - uid: 36259 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,6.5 parent: 2 - - uid: 32810 + - uid: 36260 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-46.5 parent: 2 - - uid: 32811 + - uid: 36261 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-45.5 parent: 2 - - uid: 32812 + - uid: 36262 components: - type: Transform pos: -43.5,-90.5 parent: 2 - - uid: 32813 + - uid: 36263 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-47.5 parent: 2 - - uid: 32814 + - uid: 36264 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,-48.5 parent: 2 - - uid: 32815 + - uid: 36265 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-86.5 parent: 2 - - uid: 32816 + - uid: 36266 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-87.5 parent: 2 - - uid: 32817 + - uid: 36267 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-85.5 parent: 2 - - uid: 32818 + - uid: 36268 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-88.5 parent: 2 - - uid: 32819 + - uid: 36269 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,-45.5 parent: 2 - - uid: 32821 + - uid: 36270 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-45.5 parent: 2 - - uid: 32822 + - uid: 36271 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-46.5 parent: 2 - - uid: 32823 + - uid: 36272 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-70.5 parent: 2 - - uid: 32824 + - uid: 36273 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-70.5 parent: 2 - - uid: 32825 + - uid: 36274 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-24.5 parent: 2 - - uid: 32826 + - uid: 36275 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-22.5 parent: 2 - - uid: 32827 + - uid: 36276 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-22.5 parent: 2 - - uid: 32828 + - uid: 36277 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,-22.5 parent: 2 - - uid: 32829 + - uid: 36278 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-54.5 parent: 2 - - uid: 32830 + - uid: 36279 components: - type: Transform pos: 2.5,-97.5 parent: 2 - - uid: 32831 + - uid: 36280 components: - type: Transform pos: 23.5,-88.5 parent: 2 - - uid: 32832 + - uid: 36281 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,19.5 parent: 2 - - uid: 32833 + - uid: 36282 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,20.5 parent: 2 - - uid: 32834 + - uid: 36283 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,20.5 parent: 2 - - uid: 32835 + - uid: 36284 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,20.5 parent: 2 - - uid: 32836 + - uid: 36285 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,19.5 parent: 2 - - uid: 32837 + - uid: 36286 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,18.5 parent: 2 - - uid: 32838 + - uid: 36287 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-26.5 parent: 2 - - uid: 32839 + - uid: 36288 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-25.5 parent: 2 - - uid: 32840 + - uid: 36289 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-24.5 parent: 2 - - uid: 32841 + - uid: 36290 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,19.5 parent: 2 - - uid: 32842 + - uid: 36291 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,20.5 parent: 2 - - uid: 32843 + - uid: 36292 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,21.5 parent: 2 - - uid: 32844 + - uid: 36293 components: - type: Transform rot: 1.5707963267948966 rad pos: -60.5,-23.5 parent: 2 - - uid: 32845 + - uid: 36294 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,10.5 parent: 2 - - uid: 32846 + - uid: 36295 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,10.5 parent: 2 - - uid: 32847 + - uid: 36296 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,10.5 parent: 2 - - uid: 32848 + - uid: 36297 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,10.5 parent: 2 - - uid: 32849 + - uid: 36298 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,10.5 parent: 2 - - uid: 32850 + - uid: 36299 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,9.5 parent: 2 - - uid: 32851 + - uid: 36300 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,7.5 parent: 2 - - uid: 32852 + - uid: 36301 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-54.5 parent: 2 - - uid: 32853 + - uid: 36302 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-54.5 parent: 2 - - uid: 32854 + - uid: 36303 components: - type: Transform pos: -42.5,-90.5 parent: 2 - - uid: 32855 + - uid: 36304 components: - type: Transform pos: -41.5,-90.5 parent: 2 - - uid: 32856 + - uid: 36305 components: - type: Transform pos: -40.5,-90.5 parent: 2 - - uid: 32857 + - uid: 36306 components: - type: Transform pos: -40.5,-89.5 parent: 2 - - uid: 32858 + - uid: 36307 components: - type: Transform pos: -40.5,-91.5 parent: 2 - - uid: 32859 + - uid: 36308 components: - type: Transform pos: -40.5,-93.5 parent: 2 - - uid: 32860 + - uid: 36309 components: - type: Transform pos: -41.5,-93.5 parent: 2 - - uid: 32861 + - uid: 36310 components: - type: Transform pos: -42.5,-93.5 parent: 2 - - uid: 32862 + - uid: 36311 components: - type: Transform pos: -43.5,-93.5 parent: 2 - - uid: 32863 + - uid: 36312 components: - type: Transform pos: -43.5,-92.5 parent: 2 - - uid: 32864 + - uid: 36313 components: - type: Transform pos: -43.5,-91.5 parent: 2 - - uid: 32865 + - uid: 36314 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-85.5 parent: 2 - - uid: 32866 + - uid: 36315 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-85.5 parent: 2 - - uid: 32867 + - uid: 36316 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-85.5 parent: 2 - - uid: 32868 + - uid: 36317 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-86.5 parent: 2 - - uid: 32869 + - uid: 36318 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-88.5 parent: 2 - - uid: 32870 + - uid: 36319 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-88.5 parent: 2 - - uid: 32871 + - uid: 36320 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-88.5 parent: 2 - - uid: 32872 + - uid: 36321 components: - type: Transform rot: 3.141592653589793 rad pos: 92.5,-25.5 parent: 2 - - uid: 32873 + - uid: 36322 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-25.5 parent: 2 - - uid: 32874 + - uid: 36323 components: - type: Transform pos: -30.5,18.5 parent: 2 - - uid: 32875 + - uid: 36324 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,14.5 parent: 2 - - uid: 32876 + - uid: 36325 components: - type: Transform rot: -1.5707963267948966 rad pos: -54.5,13.5 parent: 2 - - uid: 32877 + - uid: 36326 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,1.5 parent: 2 - - uid: 32878 + - uid: 36327 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-19.5 parent: 2 - - uid: 32879 + - uid: 36328 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-56.5 parent: 2 - - uid: 32880 + - uid: 36329 components: - type: Transform pos: -66.5,-15.5 parent: 2 - - uid: 32881 + - uid: 36330 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-32.5 parent: 2 - - uid: 32882 + - uid: 36331 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-33.5 parent: 2 - - uid: 32883 + - uid: 36332 components: - type: Transform pos: -66.5,-19.5 parent: 2 - - uid: 32884 + - uid: 36333 components: - type: Transform pos: -66.5,-18.5 parent: 2 - - uid: 32885 + - uid: 36334 components: - type: Transform pos: -66.5,-16.5 parent: 2 - - uid: 32886 + - uid: 36335 components: - type: Transform pos: -66.5,-14.5 parent: 2 - - uid: 32887 + - uid: 36336 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-17.5 parent: 2 - - uid: 32888 + - uid: 36337 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-18.5 parent: 2 - - uid: 32889 + - uid: 36338 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-19.5 parent: 2 - - uid: 32890 + - uid: 36339 components: - type: Transform pos: -68.5,-14.5 parent: 2 - - uid: 32891 + - uid: 36340 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-57.5 parent: 2 - - uid: 32892 + - uid: 36341 components: - type: Transform pos: -67.5,-19.5 parent: 2 - - uid: 32893 + - uid: 36342 components: - type: Transform pos: -68.5,-19.5 parent: 2 - - uid: 32894 + - uid: 36343 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-57.5 parent: 2 - - uid: 32895 + - uid: 36344 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-57.5 parent: 2 - - uid: 32896 + - uid: 36345 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-70.5 parent: 2 - - uid: 32897 + - uid: 36346 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-70.5 parent: 2 - - uid: 32898 + - uid: 36347 components: - type: Transform pos: 43.5,25.5 parent: 2 - - uid: 32900 + - uid: 36348 components: - type: Transform pos: -76.5,-46.5 parent: 2 - - uid: 32901 + - uid: 36349 components: - type: Transform pos: -75.5,-46.5 parent: 2 - - uid: 32902 + - uid: 36350 components: - type: Transform pos: -69.5,-50.5 parent: 2 - - uid: 32903 + - uid: 36351 components: - type: Transform pos: -69.5,-47.5 parent: 2 - - uid: 32904 + - uid: 36352 components: - type: Transform pos: -69.5,-46.5 parent: 2 - - uid: 32905 + - uid: 36353 components: - type: Transform pos: 26.5,26.5 parent: 2 - - uid: 32906 + - uid: 36354 components: - type: Transform pos: 25.5,26.5 parent: 2 - - uid: 32907 + - uid: 36355 components: - type: Transform pos: 24.5,26.5 parent: 2 - - uid: 32908 + - uid: 36356 components: - type: Transform pos: 23.5,26.5 parent: 2 - - uid: 32909 + - uid: 36357 components: - type: Transform pos: 23.5,25.5 parent: 2 - - uid: 32910 + - uid: 36358 components: - type: Transform pos: 23.5,24.5 parent: 2 - - uid: 32911 + - uid: 36359 components: - type: Transform pos: 23.5,21.5 parent: 2 - - uid: 32912 + - uid: 36360 components: - type: Transform pos: 23.5,22.5 parent: 2 - - uid: 32913 + - uid: 36361 components: - type: Transform pos: 23.5,23.5 parent: 2 - - uid: 32914 + - uid: 36362 components: - type: Transform pos: -45.5,-69.5 parent: 2 - - uid: 32915 + - uid: 36363 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-79.5 parent: 2 - - uid: 32916 + - uid: 36364 components: - type: Transform pos: -59.5,-76.5 parent: 2 - - uid: 32917 + - uid: 36365 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-78.5 parent: 2 - - uid: 32918 + - uid: 36366 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-78.5 parent: 2 - - uid: 32919 + - uid: 36367 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-70.5 parent: 2 - - uid: 32920 + - uid: 36368 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-79.5 parent: 2 - - uid: 32921 + - uid: 36369 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-79.5 parent: 2 - - uid: 32922 + - uid: 36370 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-79.5 parent: 2 - - uid: 32923 + - uid: 36371 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-79.5 parent: 2 - - uid: 32924 + - uid: 36372 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-89.5 parent: 2 - - uid: 32925 + - uid: 36373 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-102.5 parent: 2 - - uid: 32926 + - uid: 36374 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,11.5 parent: 2 - - uid: 32927 + - uid: 36375 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,11.5 parent: 2 - - uid: 32928 + - uid: 36376 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,11.5 parent: 2 - - uid: 32929 + - uid: 36377 components: - type: Transform pos: 3.5,-97.5 parent: 2 - - uid: 32930 + - uid: 36378 components: - type: Transform pos: -40.5,21.5 parent: 2 - - uid: 32931 + - uid: 36379 components: - type: Transform pos: -44.5,21.5 parent: 2 - - uid: 32932 + - uid: 36380 components: - type: Transform pos: -44.5,19.5 parent: 2 - - uid: 32933 + - uid: 36381 components: - type: Transform pos: -48.5,21.5 parent: 2 - - uid: 32934 + - uid: 36382 components: - type: Transform pos: -48.5,19.5 parent: 2 - - uid: 32935 + - uid: 36383 components: - type: Transform pos: -52.5,21.5 parent: 2 - - uid: 32936 + - uid: 36384 components: - type: Transform pos: -52.5,19.5 parent: 2 - - uid: 32937 + - uid: 36385 components: - type: Transform pos: -67.5,-14.5 parent: 2 - - uid: 32938 + - uid: 36386 components: - type: Transform pos: -54.5,19.5 parent: 2 - - uid: 32939 + - uid: 36387 components: - type: Transform pos: -53.5,19.5 parent: 2 - - uid: 32940 + - uid: 36388 components: - type: Transform pos: -77.5,-28.5 parent: 2 - - uid: 32941 + - uid: 36389 components: - type: Transform pos: -77.5,-32.5 parent: 2 - - uid: 32942 + - uid: 36390 components: - type: Transform pos: -76.5,-32.5 parent: 2 - - uid: 32943 + - uid: 36391 components: - type: Transform pos: -75.5,-32.5 parent: 2 - - uid: 32944 + - uid: 36392 components: - type: Transform pos: -74.5,-32.5 parent: 2 - - uid: 32945 + - uid: 36393 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,-28.5 parent: 2 - - uid: 32946 + - uid: 36394 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-28.5 parent: 2 - - uid: 32947 + - uid: 36395 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-28.5 parent: 2 - - uid: 32948 + - uid: 36396 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-28.5 parent: 2 - - uid: 32949 + - uid: 36397 components: - type: Transform rot: -1.5707963267948966 rad pos: -81.5,-32.5 parent: 2 - - uid: 32950 + - uid: 36398 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-32.5 parent: 2 - - uid: 32951 + - uid: 36399 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-32.5 parent: 2 - - uid: 32952 + - uid: 36400 components: - type: Transform rot: -1.5707963267948966 rad pos: -78.5,-32.5 parent: 2 - - uid: 32953 + - uid: 36401 components: - type: Transform pos: -77.5,-31.5 parent: 2 - - uid: 32956 + - uid: 36402 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,21.5 parent: 2 - - uid: 32959 + - uid: 36403 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,15.5 parent: 2 - - uid: 32960 + - uid: 36404 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,16.5 parent: 2 - - uid: 32961 + - uid: 36405 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,16.5 parent: 2 - - uid: 32962 + - uid: 36406 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,16.5 parent: 2 - - uid: 32963 + - uid: 36407 components: - type: Transform pos: -22.5,18.5 parent: 2 - - uid: 32964 + - uid: 36408 components: - type: Transform pos: -35.5,18.5 parent: 2 - - uid: 32965 + - uid: 36409 components: - type: Transform pos: -34.5,18.5 parent: 2 - - uid: 32966 + - uid: 36410 components: - type: Transform pos: -23.5,18.5 parent: 2 - - uid: 32967 + - uid: 36411 components: - type: Transform pos: -28.5,18.5 parent: 2 - - uid: 32972 + - uid: 36412 components: - type: Transform pos: 47.5,24.5 parent: 2 - - uid: 32973 + - uid: 36413 components: - type: Transform pos: 47.5,25.5 parent: 2 - - uid: 32974 + - uid: 36414 components: - type: Transform pos: 46.5,25.5 parent: 2 - - uid: 32975 + - uid: 36415 components: - type: Transform pos: 45.5,25.5 parent: 2 - - uid: 32976 + - uid: 36416 components: - type: Transform pos: 44.5,25.5 parent: 2 - - uid: 32978 + - uid: 36417 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-57.5 parent: 2 - - uid: 32979 + - uid: 36418 components: - type: Transform pos: -20.5,17.5 parent: 2 - - uid: 32980 + - uid: 36419 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,-57.5 parent: 2 - - uid: 32981 + - uid: 36420 components: - type: Transform pos: -35.5,21.5 parent: 2 - - uid: 32982 + - uid: 36421 components: - type: Transform pos: -36.5,21.5 parent: 2 - - uid: 32983 + - uid: 36422 components: - type: Transform pos: -37.5,21.5 parent: 2 - - uid: 32984 + - uid: 36423 components: - type: Transform pos: -33.5,20.5 parent: 2 - - uid: 32985 + - uid: 36424 components: - type: Transform pos: -33.5,19.5 parent: 2 - - uid: 32986 + - uid: 36425 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,17.5 parent: 2 - - uid: 32987 + - uid: 36426 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-85.5 parent: 2 - - uid: 32995 + - uid: 36427 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-77.5 parent: 2 - - uid: 32996 + - uid: 36428 components: - type: Transform pos: 86.5,-56.5 parent: 2 - - uid: 32997 + - uid: 36429 components: - type: Transform pos: 72.5,-68.5 parent: 2 - - uid: 32998 + - uid: 36430 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-60.5 parent: 2 - - uid: 32999 + - uid: 36431 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-60.5 parent: 2 - - uid: 33000 + - uid: 36432 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-77.5 parent: 2 - - uid: 33001 + - uid: 36433 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-73.5 parent: 2 - - uid: 33002 + - uid: 36434 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-85.5 parent: 2 - - uid: 33003 + - uid: 36435 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-71.5 parent: 2 - - uid: 33004 + - uid: 36436 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-83.5 parent: 2 - - uid: 33005 + - uid: 36437 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-77.5 parent: 2 - - uid: 33006 + - uid: 36438 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-2.5 parent: 2 - - uid: 33007 + - uid: 36439 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-80.5 parent: 2 - - uid: 33008 + - uid: 36440 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-85.5 parent: 2 - - uid: 33009 + - uid: 36441 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-67.5 parent: 2 - - uid: 33010 + - uid: 36442 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-65.5 parent: 2 - - uid: 33011 + - uid: 36443 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-68.5 parent: 2 - - uid: 33012 + - uid: 36444 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-65.5 parent: 2 - - uid: 33013 + - uid: 36445 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-63.5 parent: 2 - - uid: 33014 + - uid: 36446 components: - type: Transform rot: -1.5707963267948966 rad pos: 97.5,-60.5 parent: 2 - - uid: 33015 + - uid: 36447 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-60.5 parent: 2 - - uid: 33016 + - uid: 36448 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-70.5 parent: 2 - - uid: 33017 + - uid: 36449 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-65.5 parent: 2 - - uid: 33018 + - uid: 36450 components: - type: Transform pos: 106.5,-74.5 parent: 2 - - uid: 33019 + - uid: 36451 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-68.5 parent: 2 - - uid: 33020 + - uid: 36452 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-66.5 parent: 2 - - uid: 33021 + - uid: 36453 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-62.5 parent: 2 - - uid: 33022 + - uid: 36454 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-62.5 parent: 2 - - uid: 33023 + - uid: 36455 components: - type: Transform rot: -1.5707963267948966 rad pos: 92.5,-73.5 parent: 2 - - uid: 33024 + - uid: 36456 components: - type: Transform rot: -1.5707963267948966 rad pos: 106.5,-65.5 parent: 2 - - uid: 33025 + - uid: 36457 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,-60.5 parent: 2 - - uid: 33026 + - uid: 36458 components: - type: Transform pos: 110.5,-60.5 parent: 2 - - uid: 33027 + - uid: 36459 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-70.5 parent: 2 - - uid: 33028 + - uid: 36460 components: - type: Transform pos: 96.5,-59.5 parent: 2 - - uid: 33029 + - uid: 36461 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,-82.5 parent: 2 - - uid: 33030 + - uid: 36462 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,-80.5 parent: 2 - - uid: 33031 + - uid: 36463 components: - type: Transform pos: 111.5,-56.5 parent: 2 - - uid: 33032 + - uid: 36464 components: - type: Transform pos: 94.5,-90.5 parent: 2 - - uid: 33033 + - uid: 36465 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-64.5 parent: 2 - - uid: 33034 + - uid: 36466 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-77.5 parent: 2 - - uid: 33035 + - uid: 36467 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,-77.5 parent: 2 - - uid: 33036 + - uid: 36468 components: - type: Transform pos: 100.5,-77.5 parent: 2 - - uid: 33037 + - uid: 36469 components: - type: Transform pos: 93.5,-89.5 parent: 2 - - uid: 33038 + - uid: 36470 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-64.5 parent: 2 - - uid: 33039 + - uid: 36471 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-65.5 parent: 2 - - uid: 33040 + - uid: 36472 components: - type: Transform pos: 109.5,-60.5 parent: 2 - - uid: 33041 + - uid: 36473 components: - type: Transform pos: 97.5,-93.5 parent: 2 - - uid: 33042 + - uid: 36474 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,-81.5 parent: 2 - - uid: 33043 + - uid: 36475 components: - type: Transform pos: 103.5,-88.5 parent: 2 - - uid: 33044 + - uid: 36476 components: - type: Transform pos: 98.5,-92.5 parent: 2 - - uid: 33045 + - uid: 36477 components: - type: Transform pos: 97.5,-84.5 parent: 2 - - uid: 33046 + - uid: 36478 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-73.5 parent: 2 - - uid: 33047 + - uid: 36479 components: - type: Transform pos: 94.5,-91.5 parent: 2 - - uid: 33048 + - uid: 36480 components: - type: Transform pos: 94.5,-76.5 parent: 2 - - uid: 33049 + - uid: 36481 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-82.5 parent: 2 - - uid: 33050 + - uid: 36482 components: - type: Transform rot: -1.5707963267948966 rad pos: 99.5,-85.5 parent: 2 - - uid: 33051 + - uid: 36483 components: - type: Transform pos: 96.5,-92.5 parent: 2 - - uid: 33052 + - uid: 36484 components: - type: Transform pos: 101.5,-91.5 parent: 2 - - uid: 33053 + - uid: 36485 components: - type: Transform pos: 100.5,-81.5 parent: 2 - - uid: 33054 + - uid: 36486 components: - type: Transform rot: -1.5707963267948966 rad pos: 106.5,-67.5 parent: 2 - - uid: 33055 + - uid: 36487 components: - type: Transform pos: 100.5,-92.5 parent: 2 - - uid: 33056 + - uid: 36488 components: - type: Transform pos: 110.5,-56.5 parent: 2 - - uid: 33057 + - uid: 36489 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-81.5 parent: 2 - - uid: 33058 + - uid: 36490 components: - type: Transform pos: 109.5,-56.5 parent: 2 - - uid: 33059 + - uid: 36491 components: - type: Transform rot: -1.5707963267948966 rad pos: 106.5,-72.5 parent: 2 - - uid: 33060 + - uid: 36492 components: - type: Transform pos: 93.5,-88.5 parent: 2 - - uid: 33061 + - uid: 36493 components: - type: Transform pos: 110.5,-52.5 parent: 2 - - uid: 33062 + - uid: 36494 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-75.5 parent: 2 - - uid: 33063 + - uid: 36495 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-73.5 parent: 2 - - uid: 33064 + - uid: 36496 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-74.5 parent: 2 - - uid: 33065 + - uid: 36497 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-84.5 parent: 2 - - uid: 33066 + - uid: 36498 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,-73.5 parent: 2 - - uid: 33067 + - uid: 36499 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-79.5 parent: 2 - - uid: 33068 + - uid: 36500 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-73.5 parent: 2 - - uid: 33069 + - uid: 36501 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-85.5 parent: 2 - - uid: 33070 + - uid: 36502 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-65.5 parent: 2 - - uid: 33071 + - uid: 36503 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-73.5 parent: 2 - - uid: 33072 + - uid: 36504 components: - type: Transform pos: 110.5,-49.5 parent: 2 - - uid: 33073 + - uid: 36505 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-68.5 parent: 2 - - uid: 33074 + - uid: 36506 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,-77.5 parent: 2 - - uid: 33075 + - uid: 36507 components: - type: Transform pos: 99.5,-84.5 parent: 2 - - uid: 33076 + - uid: 36508 components: - type: Transform pos: 95.5,-91.5 parent: 2 - - uid: 33077 + - uid: 36509 components: - type: Transform pos: 96.5,-77.5 parent: 2 - - uid: 33078 + - uid: 36510 components: - type: Transform pos: 110.5,-46.5 parent: 2 - - uid: 33079 + - uid: 36511 components: - type: Transform pos: 110.5,-53.5 parent: 2 - - uid: 33080 + - uid: 36512 components: - type: Transform rot: -1.5707963267948966 rad pos: 106.5,-73.5 parent: 2 - - uid: 33081 + - uid: 36513 components: - type: Transform pos: 90.5,-74.5 parent: 2 - - uid: 33082 + - uid: 36514 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,-65.5 parent: 2 - - uid: 33083 + - uid: 36515 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-73.5 parent: 2 - - uid: 33084 + - uid: 36516 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-66.5 parent: 2 - - uid: 33085 + - uid: 36517 components: - type: Transform rot: -1.5707963267948966 rad pos: 106.5,-68.5 parent: 2 - - uid: 33086 + - uid: 36518 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-73.5 parent: 2 - - uid: 33087 + - uid: 36519 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-77.5 parent: 2 - - uid: 33088 + - uid: 36520 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-66.5 parent: 2 - - uid: 33089 + - uid: 36521 components: - type: Transform pos: 94.5,-89.5 parent: 2 - - uid: 33090 + - uid: 36522 components: - type: Transform pos: 107.5,-60.5 parent: 2 - - uid: 33091 + - uid: 36523 components: - type: Transform pos: 97.5,-82.5 parent: 2 - - uid: 33092 + - uid: 36524 components: - type: Transform pos: 103.5,-60.5 parent: 2 - - uid: 33093 + - uid: 36525 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-69.5 parent: 2 - - uid: 33094 + - uid: 36526 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-72.5 parent: 2 - - uid: 33095 + - uid: 36527 components: - type: Transform rot: -1.5707963267948966 rad pos: 106.5,-69.5 parent: 2 - - uid: 33096 + - uid: 36528 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-60.5 parent: 2 - - uid: 33097 + - uid: 36529 components: - type: Transform rot: -1.5707963267948966 rad pos: 106.5,-66.5 parent: 2 - - uid: 33098 + - uid: 36530 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-72.5 parent: 2 - - uid: 33099 + - uid: 36531 components: - type: Transform rot: -1.5707963267948966 rad pos: 105.5,-65.5 parent: 2 - - uid: 33100 + - uid: 36532 components: - type: Transform pos: 90.5,-64.5 parent: 2 - - uid: 33101 + - uid: 36533 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-70.5 parent: 2 - - uid: 33102 + - uid: 36534 components: - type: Transform pos: 99.5,-81.5 parent: 2 - - uid: 33103 + - uid: 36535 components: - type: Transform pos: 96.5,-81.5 parent: 2 - - uid: 33104 + - uid: 36536 components: - type: Transform pos: -52.5,-74.5 parent: 2 - - uid: 33105 + - uid: 36537 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-72.5 parent: 2 - - uid: 33106 + - uid: 36538 components: - type: Transform pos: 103.5,-86.5 parent: 2 - - uid: 33107 + - uid: 36539 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-63.5 parent: 2 - - uid: 33108 + - uid: 36540 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-78.5 parent: 2 - - uid: 33109 + - uid: 36541 components: - type: Transform pos: 110.5,-54.5 parent: 2 - - uid: 33110 + - uid: 36542 components: - type: Transform pos: 111.5,-60.5 parent: 2 - - uid: 33111 + - uid: 36543 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,-84.5 parent: 2 - - uid: 33112 + - uid: 36544 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,-83.5 parent: 2 - - uid: 33113 + - uid: 36545 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-81.5 parent: 2 - - uid: 33114 + - uid: 36546 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-73.5 parent: 2 - - uid: 33115 + - uid: 36547 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,-85.5 parent: 2 - - uid: 33116 + - uid: 36548 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-61.5 parent: 2 - - uid: 33117 + - uid: 36549 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,-65.5 parent: 2 - - uid: 33118 + - uid: 36550 components: - type: Transform pos: 89.5,-55.5 parent: 2 - - uid: 33119 + - uid: 36551 components: - type: Transform pos: 90.5,-55.5 parent: 2 - - uid: 33120 + - uid: 36552 components: - type: Transform pos: 112.5,-47.5 parent: 2 - - uid: 33121 + - uid: 36553 components: - type: Transform pos: 111.5,-47.5 parent: 2 - - uid: 33122 + - uid: 36554 components: - type: Transform pos: 110.5,-47.5 parent: 2 - - uid: 33123 + - uid: 36555 components: - type: Transform pos: 112.5,-46.5 parent: 2 - - uid: 33124 + - uid: 36556 components: - type: Transform pos: 93.5,-55.5 parent: 2 - - uid: 33125 + - uid: 36557 components: - type: Transform pos: 103.5,-56.5 parent: 2 - - uid: 33126 + - uid: 36558 components: - type: Transform pos: 111.5,-43.5 parent: 2 - - uid: 33127 + - uid: 36559 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-69.5 parent: 2 - - uid: 33128 + - uid: 36560 components: - type: Transform pos: 103.5,-57.5 parent: 2 - - uid: 33129 + - uid: 36561 components: - type: Transform pos: 112.5,-44.5 parent: 2 - - uid: 33130 + - uid: 36562 components: - type: Transform pos: 104.5,-60.5 parent: 2 - - uid: 33131 + - uid: 36563 components: - type: Transform pos: 103.5,-58.5 parent: 2 - - uid: 33132 + - uid: 36564 components: - type: Transform pos: 110.5,-44.5 parent: 2 - - uid: 33133 + - uid: 36565 components: - type: Transform pos: 103.5,-55.5 parent: 2 - - uid: 33134 + - uid: 36566 components: - type: Transform pos: 103.5,-59.5 parent: 2 - - uid: 33135 + - uid: 36567 components: - type: Transform pos: 112.5,-43.5 parent: 2 - - uid: 33136 + - uid: 36568 components: - type: Transform pos: 92.5,-55.5 parent: 2 - - uid: 33137 + - uid: 36569 components: - type: Transform pos: 91.5,-55.5 parent: 2 - - uid: 33138 + - uid: 36570 components: - type: Transform pos: 97.5,-56.5 parent: 2 - - uid: 33139 + - uid: 36571 components: - type: Transform pos: 99.5,-56.5 parent: 2 - - uid: 33140 + - uid: 36572 components: - type: Transform pos: 95.5,-56.5 parent: 2 - - uid: 33141 + - uid: 36573 components: - type: Transform pos: 96.5,-56.5 parent: 2 - - uid: 33142 + - uid: 36574 components: - type: Transform pos: 94.5,-56.5 parent: 2 - - uid: 33143 + - uid: 36575 components: - type: Transform pos: 88.5,-55.5 parent: 2 - - uid: 33144 + - uid: 36576 components: - type: Transform pos: -45.5,-72.5 parent: 2 - - uid: 33145 + - uid: 36577 components: - type: Transform pos: -46.5,-67.5 parent: 2 - - uid: 33146 + - uid: 36578 components: - type: Transform pos: -47.5,-67.5 parent: 2 - - uid: 33147 + - uid: 36579 components: - type: Transform pos: -48.5,-67.5 parent: 2 - - uid: 33148 + - uid: 36580 components: - type: Transform pos: -55.5,-76.5 parent: 2 - - uid: 33149 + - uid: 36581 components: - type: Transform pos: -56.5,-76.5 parent: 2 - - uid: 33150 + - uid: 36582 components: - type: Transform pos: -56.5,-74.5 parent: 2 - - uid: 33151 + - uid: 36583 components: - type: Transform pos: -56.5,-69.5 parent: 2 - - uid: 33152 + - uid: 36584 components: - type: Transform pos: -56.5,-73.5 parent: 2 - - uid: 33153 + - uid: 36585 components: - type: Transform pos: -54.5,-67.5 parent: 2 - - uid: 33154 + - uid: 36586 components: - type: Transform pos: -53.5,-67.5 parent: 2 - - uid: 33155 + - uid: 36587 components: - type: Transform pos: -56.5,-67.5 parent: 2 - - uid: 33158 + - uid: 36588 components: - type: Transform pos: -33.5,18.5 parent: 2 - - uid: 33159 + - uid: 36589 components: - type: Transform pos: -55.5,-67.5 parent: 2 - - uid: 33160 + - uid: 36590 components: - type: Transform pos: -55.5,-72.5 parent: 2 - - uid: 33161 + - uid: 36591 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-30.5 parent: 2 - - uid: 33162 + - uid: 36592 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-35.5 parent: 2 - - uid: 33163 + - uid: 36593 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-31.5 parent: 2 - - uid: 33164 + - uid: 36594 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-30.5 parent: 2 - - uid: 33165 + - uid: 36595 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-35.5 parent: 2 - - uid: 33166 + - uid: 36596 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-35.5 parent: 2 - - uid: 33167 + - uid: 36597 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-35.5 parent: 2 - - uid: 33168 + - uid: 36598 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-34.5 parent: 2 - - uid: 33169 + - uid: 36599 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-32.5 parent: 2 - - uid: 33170 + - uid: 36600 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-31.5 parent: 2 - - uid: 33171 + - uid: 36601 components: - type: Transform pos: 19.5,12.5 parent: 2 - - uid: 33172 + - uid: 36602 components: - type: Transform pos: 42.5,11.5 parent: 2 - - uid: 33173 + - uid: 36603 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-73.5 parent: 2 - - uid: 33174 + - uid: 36604 components: - type: Transform pos: 41.5,11.5 parent: 2 - - uid: 33175 + - uid: 36605 components: - type: Transform pos: 41.5,9.5 parent: 2 - - uid: 33176 + - uid: 36606 components: - type: Transform pos: 41.5,10.5 parent: 2 - - uid: 33177 + - uid: 36607 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-70.5 parent: 2 - - uid: 33178 + - uid: 36608 components: - type: Transform pos: 100.5,-54.5 parent: 2 - - uid: 33179 + - uid: 36609 components: - type: Transform pos: 101.5,-54.5 parent: 2 - - uid: 33180 + - uid: 36610 components: - type: Transform pos: 99.5,-54.5 parent: 2 - - uid: 33181 + - uid: 36611 components: - type: Transform pos: 99.5,-55.5 parent: 2 - - uid: 33182 + - uid: 36612 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-70.5 parent: 2 - - uid: 33183 + - uid: 36613 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-71.5 parent: 2 - - uid: 33184 + - uid: 36614 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-72.5 parent: 2 - - uid: 33186 + - uid: 36615 components: - type: Transform pos: -59.5,-117.5 parent: 2 - - uid: 33187 + - uid: 36616 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-104.5 parent: 2 - - uid: 33188 + - uid: 36617 components: - type: Transform pos: -58.5,-117.5 parent: 2 - - uid: 33189 + - uid: 36618 components: - type: Transform pos: -59.5,-118.5 parent: 2 - - uid: 33190 + - uid: 36619 components: - type: Transform pos: 19.5,10.5 parent: 2 - - uid: 33191 + - uid: 36620 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-30.5 parent: 2 - - uid: 33192 + - uid: 36621 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-103.5 parent: 2 - - uid: 33194 + - uid: 36622 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,8.5 parent: 2 - - uid: 33210 + - uid: 36623 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 2 - - uid: 33213 + - uid: 36624 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-2.5 parent: 2 - - uid: 33215 + - uid: 36625 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-102.5 parent: 2 - - uid: 33216 + - uid: 36626 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-117.5 parent: 2 - - uid: 33217 + - uid: 36627 components: - type: Transform pos: -58.5,-93.5 parent: 2 - - uid: 33218 + - uid: 36628 components: - type: Transform pos: -57.5,-93.5 parent: 2 - - uid: 33219 + - uid: 36629 components: - type: Transform pos: -25.5,-112.5 parent: 2 - - uid: 33221 + - uid: 36630 components: - type: Transform pos: -33.5,-27.5 parent: 2 - - uid: 33222 + - uid: 36631 components: - type: Transform pos: -37.5,-74.5 parent: 2 - - uid: 33223 + - uid: 36632 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-104.5 parent: 2 - - uid: 33224 + - uid: 36633 components: - type: Transform pos: 36.5,36.5 parent: 2 - - uid: 33225 + - uid: 36634 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-94.5 parent: 2 - - uid: 33226 + - uid: 36635 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-97.5 parent: 2 - - uid: 33227 + - uid: 36636 components: - type: Transform pos: -40.5,-108.5 parent: 2 - - uid: 33228 + - uid: 36637 components: - type: Transform pos: -41.5,-108.5 parent: 2 - - uid: 33229 + - uid: 36638 components: - type: Transform pos: -42.5,-108.5 parent: 2 - - uid: 33230 + - uid: 36639 components: - type: Transform pos: -43.5,-108.5 parent: 2 - - uid: 33231 + - uid: 36640 components: - type: Transform pos: -74.5,-0.5 parent: 2 - - uid: 33232 + - uid: 36641 components: - type: Transform pos: -53.5,-108.5 parent: 2 - - uid: 33233 + - uid: 36642 components: - type: Transform pos: -54.5,-108.5 parent: 2 - - uid: 33234 + - uid: 36643 components: - type: Transform pos: -56.5,-108.5 parent: 2 - - uid: 33235 + - uid: 36644 components: - type: Transform pos: -57.5,-108.5 parent: 2 - - uid: 33236 + - uid: 36645 components: - type: Transform pos: -57.5,-107.5 parent: 2 - - uid: 33237 + - uid: 36646 components: - type: Transform pos: -57.5,-106.5 parent: 2 - - uid: 33238 + - uid: 36647 components: - type: Transform pos: -57.5,-105.5 parent: 2 - - uid: 33239 + - uid: 36648 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-111.5 parent: 2 - - uid: 33240 + - uid: 36649 components: - type: Transform pos: -40.5,-110.5 parent: 2 - - uid: 33241 + - uid: 36650 components: - type: Transform pos: -40.5,-111.5 parent: 2 - - uid: 33242 + - uid: 36651 components: - type: Transform pos: -25.5,-105.5 parent: 2 - - uid: 33243 + - uid: 36652 components: - type: Transform pos: -25.5,-106.5 parent: 2 - - uid: 33244 + - uid: 36653 components: - type: Transform pos: -25.5,-107.5 parent: 2 - - uid: 33245 + - uid: 36654 components: - type: Transform pos: -25.5,-108.5 parent: 2 - - uid: 33246 + - uid: 36655 components: - type: Transform pos: -25.5,-109.5 parent: 2 - - uid: 33247 + - uid: 36656 components: - type: Transform pos: -25.5,-110.5 parent: 2 - - uid: 33248 + - uid: 36657 components: - type: Transform pos: -25.5,-111.5 parent: 2 - - uid: 33249 + - uid: 36658 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,-111.5 parent: 2 - - uid: 33250 + - uid: 36659 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-111.5 parent: 2 - - uid: 33251 + - uid: 36660 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-110.5 parent: 2 - - uid: 33252 + - uid: 36661 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-109.5 parent: 2 - - uid: 33254 + - uid: 36662 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-121.5 parent: 2 - - uid: 33255 + - uid: 36663 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-121.5 parent: 2 - - uid: 33256 + - uid: 36664 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-121.5 parent: 2 - - uid: 33257 + - uid: 36665 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-121.5 parent: 2 - - uid: 33258 + - uid: 36666 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-121.5 parent: 2 - - uid: 33259 + - uid: 36667 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-120.5 parent: 2 - - uid: 33260 + - uid: 36668 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-117.5 parent: 2 - - uid: 33261 + - uid: 36669 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-117.5 parent: 2 - - uid: 33262 + - uid: 36670 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-113.5 parent: 2 - - uid: 33263 + - uid: 36671 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-112.5 parent: 2 - - uid: 33264 + - uid: 36672 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-111.5 parent: 2 - - uid: 33265 + - uid: 36673 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-110.5 parent: 2 - - uid: 33266 + - uid: 36674 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-109.5 parent: 2 - - uid: 33267 + - uid: 36675 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-108.5 parent: 2 - - uid: 33268 + - uid: 36676 components: - type: Transform pos: -52.5,-120.5 parent: 2 - - uid: 33269 + - uid: 36677 components: - type: Transform pos: -51.5,-120.5 parent: 2 - - uid: 33270 + - uid: 36678 components: - type: Transform pos: -52.5,-117.5 parent: 2 - - uid: 33271 + - uid: 36679 components: - type: Transform pos: -52.5,-116.5 parent: 2 - - uid: 33272 + - uid: 36680 components: - type: Transform pos: -52.5,-115.5 parent: 2 - - uid: 33273 + - uid: 36681 components: - type: Transform pos: -52.5,-114.5 parent: 2 - - uid: 33274 + - uid: 36682 components: - type: Transform pos: -50.5,-120.5 parent: 2 - - uid: 33275 + - uid: 36683 components: - type: Transform pos: -49.5,-120.5 parent: 2 - - uid: 33276 + - uid: 36684 components: - type: Transform pos: -49.5,-121.5 parent: 2 - - uid: 33277 + - uid: 36685 components: - type: Transform pos: -49.5,-122.5 parent: 2 - - uid: 33278 + - uid: 36686 components: - type: Transform pos: -48.5,-122.5 parent: 2 - - uid: 33279 + - uid: 36687 components: - type: Transform pos: -47.5,-122.5 parent: 2 - - uid: 33280 + - uid: 36688 components: - type: Transform pos: -46.5,-122.5 parent: 2 - - uid: 33281 + - uid: 36689 components: - type: Transform pos: -45.5,-122.5 parent: 2 - - uid: 33282 + - uid: 36690 components: - type: Transform pos: -44.5,-122.5 parent: 2 - - uid: 33283 + - uid: 36691 components: - type: Transform pos: -43.5,-122.5 parent: 2 - - uid: 33284 + - uid: 36692 components: - type: Transform pos: -42.5,-122.5 parent: 2 - - uid: 33285 + - uid: 36693 components: - type: Transform pos: -74.5,-1.5 parent: 2 - - uid: 33286 + - uid: 36694 components: - type: Transform pos: -74.5,-2.5 parent: 2 - - uid: 33287 + - uid: 36695 components: - type: Transform rot: 1.5707963267948966 rad pos: -75.5,5.5 parent: 2 - - uid: 33288 + - uid: 36696 components: - type: Transform rot: 3.141592653589793 rad pos: -97.5,2.5 parent: 2 - - uid: 33289 + - uid: 36697 components: - type: Transform pos: -77.5,-0.5 parent: 2 - - uid: 33290 + - uid: 36698 components: - type: Transform pos: -77.5,-1.5 parent: 2 - - uid: 33291 + - uid: 36699 components: - type: Transform pos: -77.5,-2.5 parent: 2 - - uid: 33292 + - uid: 36700 components: - type: Transform pos: -76.5,-2.5 parent: 2 - - uid: 33293 + - uid: 36701 components: - type: Transform pos: -75.5,-2.5 parent: 2 - - uid: 33294 + - uid: 36702 components: - type: Transform pos: -77.5,5.5 parent: 2 - - uid: 33295 + - uid: 36703 components: - type: Transform pos: -76.5,5.5 parent: 2 - - uid: 33296 + - uid: 36704 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,7.5 parent: 2 - - uid: 33297 + - uid: 36705 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,6.5 parent: 2 - - uid: 33298 + - uid: 36706 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,5.5 parent: 2 - - uid: 33299 + - uid: 36707 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,5.5 parent: 2 - - uid: 33300 + - uid: 36708 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,-18.5 parent: 2 - - uid: 33301 + - uid: 36709 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,-18.5 parent: 2 - - uid: 33302 + - uid: 36710 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,-17.5 parent: 2 - - uid: 33303 + - uid: 36711 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,-16.5 parent: 2 - - uid: 33304 + - uid: 36712 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,-15.5 parent: 2 - - uid: 33305 + - uid: 36713 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,-14.5 parent: 2 - - uid: 33306 + - uid: 36714 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,-13.5 parent: 2 - - uid: 33307 + - uid: 36715 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,-12.5 parent: 2 - - uid: 33308 + - uid: 36716 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,5.5 parent: 2 - - uid: 33309 + - uid: 36717 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,5.5 parent: 2 - - uid: 33310 + - uid: 36718 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,4.5 parent: 2 - - uid: 33311 + - uid: 36719 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,2.5 parent: 2 - - uid: 33312 + - uid: 36720 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,2.5 parent: 2 - - uid: 33313 + - uid: 36721 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,-0.5 parent: 2 - - uid: 33314 + - uid: 36722 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,0.5 parent: 2 - - uid: 33315 + - uid: 36723 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,3.5 parent: 2 - - uid: 33316 + - uid: 36724 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,-1.5 parent: 2 - - uid: 33317 + - uid: 36725 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,-2.5 parent: 2 - - uid: 33318 + - uid: 36726 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-2.5 parent: 2 - - uid: 33319 + - uid: 36727 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,-6.5 parent: 2 - - uid: 33320 + - uid: 36728 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-5.5 parent: 2 - - uid: 33321 + - uid: 36729 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,2.5 parent: 2 - - uid: 33322 + - uid: 36730 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,-2.5 parent: 2 - - uid: 33323 + - uid: 36731 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-3.5 parent: 2 - - uid: 33324 + - uid: 36732 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-2.5 parent: 2 - - uid: 33325 + - uid: 36733 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,3.5 parent: 2 - - uid: 33326 + - uid: 36734 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,-12.5 parent: 2 - - uid: 33327 + - uid: 36735 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,-12.5 parent: 2 - - uid: 33328 + - uid: 36736 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-12.5 parent: 2 - - uid: 33329 + - uid: 36737 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-11.5 parent: 2 - - uid: 33330 + - uid: 36738 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-10.5 parent: 2 - - uid: 33331 + - uid: 36739 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-9.5 parent: 2 - - uid: 33332 + - uid: 36740 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-8.5 parent: 2 - - uid: 33333 + - uid: 36741 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-7.5 parent: 2 - - uid: 33334 + - uid: 36742 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-6.5 parent: 2 - - uid: 33335 + - uid: 36743 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,3.5 parent: 2 - - uid: 33336 + - uid: 36744 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,2.5 parent: 2 - - uid: 33337 + - uid: 36745 components: - type: Transform rot: 3.141592653589793 rad pos: -93.5,3.5 parent: 2 - - uid: 33338 + - uid: 36746 components: - type: Transform rot: 3.141592653589793 rad pos: -93.5,2.5 parent: 2 - - uid: 33339 + - uid: 36747 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,0.5 parent: 2 - - uid: 33340 + - uid: 36748 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,-0.5 parent: 2 - - uid: 33341 + - uid: 36749 components: - type: Transform rot: 3.141592653589793 rad pos: -94.5,0.5 parent: 2 - - uid: 33342 + - uid: 36750 components: - type: Transform rot: 3.141592653589793 rad pos: -94.5,-0.5 parent: 2 - - uid: 33343 + - uid: 36751 components: - type: Transform rot: 3.141592653589793 rad pos: -95.5,0.5 parent: 2 - - uid: 33344 + - uid: 36752 components: - type: Transform rot: 3.141592653589793 rad pos: -96.5,0.5 parent: 2 - - uid: 33345 + - uid: 36753 components: - type: Transform rot: 3.141592653589793 rad pos: -96.5,2.5 parent: 2 - - uid: 33346 + - uid: 36754 components: - type: Transform rot: 3.141592653589793 rad pos: -95.5,2.5 parent: 2 - - uid: 33347 + - uid: 36755 components: - type: Transform rot: 3.141592653589793 rad pos: -95.5,3.5 parent: 2 - - uid: 33348 + - uid: 36756 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,0.5 parent: 2 - - uid: 33349 + - uid: 36757 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,0.5 parent: 2 - - uid: 33350 + - uid: 36758 components: - type: Transform rot: 3.141592653589793 rad pos: -97.5,0.5 parent: 2 - - uid: 33351 + - uid: 36759 components: - type: Transform pos: 35.5,36.5 parent: 2 - - uid: 33352 + - uid: 36760 components: - type: Transform pos: 28.5,34.5 parent: 2 - - uid: 33353 + - uid: 36761 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,-19.5 parent: 2 - - uid: 33354 + - uid: 36762 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,-21.5 parent: 2 - - uid: 33355 + - uid: 36763 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,-22.5 parent: 2 - - uid: 33356 + - uid: 36764 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,-22.5 parent: 2 - - uid: 33357 + - uid: 36765 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-19.5 parent: 2 - - uid: 33358 + - uid: 36766 components: - type: Transform pos: -25.5,-113.5 parent: 2 - - uid: 33359 + - uid: 36767 components: - type: Transform pos: -25.5,-114.5 parent: 2 - - uid: 33360 + - uid: 36768 components: - type: Transform pos: -25.5,-115.5 parent: 2 - - uid: 33361 + - uid: 36769 components: - type: Transform pos: -25.5,-116.5 parent: 2 - - uid: 33362 + - uid: 36770 components: - type: Transform pos: -26.5,-116.5 parent: 2 - - uid: 33363 + - uid: 36771 components: - type: Transform pos: -27.5,-116.5 parent: 2 - - uid: 33364 + - uid: 36772 components: - type: Transform pos: -28.5,-116.5 parent: 2 - - uid: 33365 + - uid: 36773 components: - type: Transform pos: -28.5,-117.5 parent: 2 - - uid: 33366 + - uid: 36774 components: - type: Transform pos: -28.5,-118.5 parent: 2 - - uid: 33367 + - uid: 36775 components: - type: Transform pos: -28.5,-119.5 parent: 2 - - uid: 33368 + - uid: 36776 components: - type: Transform pos: -29.5,-119.5 parent: 2 - - uid: 33369 + - uid: 36777 components: - type: Transform pos: -30.5,-119.5 parent: 2 - - uid: 33370 + - uid: 36778 components: - type: Transform pos: -31.5,-119.5 parent: 2 - - uid: 33371 + - uid: 36779 components: - type: Transform rot: 3.141592653589793 rad pos: 97.5,-85.5 parent: 2 - - uid: 33372 + - uid: 36780 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-117.5 parent: 2 - - uid: 33373 + - uid: 36781 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-117.5 parent: 2 - - uid: 33374 + - uid: 36782 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-117.5 parent: 2 - - uid: 33375 + - uid: 36783 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-117.5 parent: 2 - - uid: 33376 + - uid: 36784 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-121.5 parent: 2 - - uid: 33377 + - uid: 36785 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-121.5 parent: 2 - - uid: 33378 + - uid: 36786 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-121.5 parent: 2 - - uid: 33379 + - uid: 36787 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-121.5 parent: 2 - - uid: 33380 + - uid: 36788 components: - type: Transform pos: 45.5,29.5 parent: 2 - - uid: 33381 + - uid: 36789 components: - type: Transform pos: 40.5,32.5 parent: 2 - - uid: 33382 + - uid: 36790 components: - type: Transform pos: 42.5,32.5 parent: 2 - - uid: 33383 + - uid: 36791 components: - type: Transform pos: 43.5,32.5 parent: 2 - - uid: 33384 + - uid: 36792 components: - type: Transform pos: 45.5,28.5 parent: 2 - - uid: 33385 + - uid: 36793 components: - type: Transform pos: 45.5,27.5 parent: 2 - - uid: 33386 + - uid: 36794 components: - type: Transform pos: 45.5,26.5 parent: 2 - - uid: 33387 + - uid: 36795 components: - type: Transform pos: 45.5,30.5 parent: 2 - - uid: 33388 + - uid: 36796 components: - type: Transform pos: 45.5,31.5 parent: 2 - - uid: 33389 + - uid: 36797 components: - type: Transform pos: 45.5,32.5 parent: 2 - - uid: 33390 + - uid: 36798 components: - type: Transform pos: 44.5,32.5 parent: 2 - - uid: 33391 + - uid: 36799 components: - type: Transform pos: 30.5,35.5 parent: 2 - - uid: 33392 + - uid: 36800 components: - type: Transform pos: 31.5,35.5 parent: 2 - - uid: 33393 + - uid: 36801 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,33.5 parent: 2 - - uid: 33394 + - uid: 36802 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,34.5 parent: 2 - - uid: 33395 + - uid: 36803 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,35.5 parent: 2 - - uid: 33396 + - uid: 36804 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,36.5 parent: 2 - - uid: 33397 + - uid: 36805 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,33.5 parent: 2 - - uid: 33398 + - uid: 36806 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,34.5 parent: 2 - - uid: 33399 + - uid: 36807 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,35.5 parent: 2 - - uid: 33400 + - uid: 36808 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,36.5 parent: 2 - - uid: 33401 + - uid: 36809 components: - type: Transform pos: 32.5,35.5 parent: 2 - - uid: 33402 + - uid: 36810 components: - type: Transform pos: 20.5,27.5 parent: 2 - - uid: 33403 + - uid: 36811 components: - type: Transform pos: 20.5,26.5 parent: 2 - - uid: 33404 + - uid: 36812 components: - type: Transform pos: 20.5,25.5 parent: 2 - - uid: 33405 + - uid: 36813 components: - type: Transform pos: 20.5,24.5 parent: 2 - - uid: 33406 + - uid: 36814 components: - type: Transform pos: 20.5,23.5 parent: 2 - - uid: 33408 + - uid: 36815 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,-28.5 parent: 2 - - uid: 33409 + - uid: 36816 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,-28.5 parent: 2 - - uid: 33410 + - uid: 36817 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,-28.5 parent: 2 - - uid: 33411 + - uid: 36818 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,-28.5 parent: 2 - - uid: 33412 + - uid: 36819 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,-28.5 parent: 2 - - uid: 33413 + - uid: 36820 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,-28.5 parent: 2 - - uid: 33414 + - uid: 36821 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,-27.5 parent: 2 - - uid: 33415 + - uid: 36822 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,-26.5 parent: 2 - - uid: 33416 + - uid: 36823 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,-25.5 parent: 2 - - uid: 33417 + - uid: 36824 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,-24.5 parent: 2 - - uid: 33418 + - uid: 36825 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,-24.5 parent: 2 - - uid: 33419 + - uid: 36826 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,-24.5 parent: 2 - - uid: 33420 + - uid: 36827 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,-24.5 parent: 2 - - uid: 33421 + - uid: 36828 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,-24.5 parent: 2 - - uid: 33422 + - uid: 36829 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,-23.5 parent: 2 - - uid: 33423 + - uid: 36830 components: - type: Transform rot: 3.141592653589793 rad pos: -89.5,-18.5 parent: 2 - - uid: 33424 + - uid: 36831 components: - type: Transform pos: 32.5,36.5 parent: 2 - - uid: 33425 + - uid: 36832 components: - type: Transform pos: 33.5,36.5 parent: 2 - - uid: 33426 + - uid: 36833 components: - type: Transform pos: 34.5,36.5 parent: 2 - - uid: 33428 + - uid: 36834 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-53.5 parent: 2 - - uid: 33429 + - uid: 36835 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-54.5 parent: 2 - - uid: 33430 + - uid: 36836 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-55.5 parent: 2 - - uid: 33431 + - uid: 36837 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-56.5 parent: 2 - - uid: 33432 + - uid: 36838 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-57.5 parent: 2 - - uid: 33433 + - uid: 36839 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-58.5 parent: 2 - - uid: 33434 + - uid: 36840 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-59.5 parent: 2 - - uid: 33435 + - uid: 36841 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-60.5 parent: 2 - - uid: 33436 + - uid: 36842 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-61.5 parent: 2 - - uid: 33437 + - uid: 36843 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-62.5 parent: 2 - - uid: 33438 + - uid: 36844 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-63.5 parent: 2 - - uid: 33439 + - uid: 36845 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-63.5 parent: 2 - - uid: 33440 + - uid: 36846 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-63.5 parent: 2 - - uid: 33441 + - uid: 36847 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-63.5 parent: 2 - - uid: 33442 + - uid: 36848 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-63.5 parent: 2 - - uid: 33443 + - uid: 36849 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-62.5 parent: 2 - - uid: 33444 + - uid: 36850 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-61.5 parent: 2 - - uid: 33445 + - uid: 36851 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-60.5 parent: 2 - - uid: 33446 + - uid: 36852 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-59.5 parent: 2 - - uid: 33447 + - uid: 36853 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-57.5 parent: 2 - - uid: 33448 + - uid: 36854 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-57.5 parent: 2 - - uid: 33449 + - uid: 36855 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-57.5 parent: 2 - - uid: 33450 + - uid: 36856 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-57.5 parent: 2 - - uid: 33451 + - uid: 36857 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-53.5 parent: 2 - - uid: 33452 + - uid: 36858 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-53.5 parent: 2 - - uid: 33453 + - uid: 36859 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-53.5 parent: 2 - - uid: 33454 + - uid: 36860 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-53.5 parent: 2 - - uid: 33455 + - uid: 36861 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-53.5 parent: 2 - - uid: 33456 + - uid: 36862 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-53.5 parent: 2 - - uid: 33457 + - uid: 36863 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-53.5 parent: 2 - - uid: 33458 + - uid: 36864 components: - type: Transform pos: 33.5,-106.5 parent: 2 - - uid: 33459 + - uid: 36865 components: - type: Transform pos: 34.5,-106.5 parent: 2 - - uid: 33460 + - uid: 36866 components: - type: Transform pos: 33.5,-104.5 parent: 2 - - uid: 33461 + - uid: 36867 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-54.5 parent: 2 - - uid: 33462 + - uid: 36868 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,-63.5 parent: 2 - - uid: 33463 + - uid: 36869 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-63.5 parent: 2 - - uid: 33464 + - uid: 36870 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-62.5 parent: 2 - - uid: 33465 + - uid: 36871 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-61.5 parent: 2 - - uid: 33466 + - uid: 36872 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-60.5 parent: 2 - - uid: 33467 + - uid: 36873 components: - type: Transform pos: 94.5,-92.5 parent: 2 - - uid: 33468 + - uid: 36874 components: - type: Transform pos: 95.5,-92.5 parent: 2 - - uid: 33469 + - uid: 36875 components: - type: Transform pos: 95.5,-93.5 parent: 2 - - uid: 33470 + - uid: 36876 components: - type: Transform pos: 96.5,-93.5 parent: 2 - - uid: 33471 + - uid: 36877 components: - type: Transform pos: 93.5,-92.5 parent: 2 - - uid: 33472 + - uid: 36878 components: - type: Transform pos: 93.5,-91.5 parent: 2 - - uid: 33473 + - uid: 36879 components: - type: Transform pos: 93.5,-90.5 parent: 2 - - uid: 33474 + - uid: 36880 components: - type: Transform pos: 92.5,-90.5 parent: 2 - - uid: 33475 + - uid: 36881 components: - type: Transform pos: 92.5,-89.5 parent: 2 - - uid: 33476 + - uid: 36882 components: - type: Transform pos: 92.5,-88.5 parent: 2 - - uid: 33477 + - uid: 36883 components: - type: Transform pos: 92.5,-87.5 parent: 2 - - uid: 33478 + - uid: 36884 components: - type: Transform pos: 92.5,-86.5 parent: 2 - - uid: 33479 + - uid: 36885 components: - type: Transform pos: 92.5,-85.5 parent: 2 - - uid: 33480 + - uid: 36886 components: - type: Transform pos: 92.5,-84.5 parent: 2 - - uid: 33481 + - uid: 36887 components: - type: Transform pos: 93.5,-84.5 parent: 2 - - uid: 33482 + - uid: 36888 components: - type: Transform pos: 103.5,-84.5 parent: 2 - - uid: 33483 + - uid: 36889 components: - type: Transform pos: 104.5,-84.5 parent: 2 - - uid: 33484 + - uid: 36890 components: - type: Transform pos: 104.5,-85.5 parent: 2 - - uid: 33485 + - uid: 36891 components: - type: Transform pos: 104.5,-86.5 parent: 2 - - uid: 33486 + - uid: 36892 components: - type: Transform pos: 104.5,-87.5 parent: 2 - - uid: 33487 + - uid: 36893 components: - type: Transform pos: 104.5,-88.5 parent: 2 - - uid: 33488 + - uid: 36894 components: - type: Transform pos: 104.5,-89.5 parent: 2 - - uid: 33489 + - uid: 36895 components: - type: Transform pos: 104.5,-90.5 parent: 2 - - uid: 33490 + - uid: 36896 components: - type: Transform pos: 103.5,-90.5 parent: 2 - - uid: 33491 + - uid: 36897 components: - type: Transform pos: 103.5,-91.5 parent: 2 - - uid: 33492 + - uid: 36898 components: - type: Transform pos: 103.5,-92.5 parent: 2 - - uid: 33493 + - uid: 36899 components: - type: Transform pos: 102.5,-92.5 parent: 2 - - uid: 33494 + - uid: 36900 components: - type: Transform pos: 101.5,-92.5 parent: 2 - - uid: 33495 + - uid: 36901 components: - type: Transform pos: 101.5,-93.5 parent: 2 - - uid: 33496 + - uid: 36902 components: - type: Transform pos: 100.5,-93.5 parent: 2 - - uid: 33497 + - uid: 36903 components: - type: Transform pos: 100.5,-94.5 parent: 2 - - uid: 33498 + - uid: 36904 components: - type: Transform pos: 99.5,-94.5 parent: 2 - - uid: 33499 + - uid: 36905 components: - type: Transform pos: 98.5,-93.5 parent: 2 - - uid: 33500 + - uid: 36906 components: - type: Transform pos: 97.5,-94.5 parent: 2 - - uid: 33501 + - uid: 36907 components: - type: Transform pos: 96.5,-94.5 parent: 2 - - uid: 33502 + - uid: 36908 components: - type: Transform pos: 19.5,16.5 parent: 2 - - uid: 33610 + - uid: 36909 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-23.5 parent: 2 - - uid: 33611 + - uid: 36910 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-21.5 parent: 2 - - uid: 33612 + - uid: 36911 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-24.5 parent: 2 - - uid: 33615 + - uid: 36912 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-24.5 parent: 2 - - uid: 33627 + - uid: 36913 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-29.5 parent: 2 - - uid: 33748 + - uid: 36914 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-27.5 parent: 2 - - uid: 33763 + - uid: 36915 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-37.5 parent: 2 - - uid: 33779 + - uid: 36916 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-52.5 parent: 2 - - uid: 33780 + - uid: 36917 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-52.5 parent: 2 - - uid: 33781 + - uid: 36918 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-52.5 parent: 2 - - uid: 33783 + - uid: 36919 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-50.5 parent: 2 - - uid: 33787 + - uid: 36920 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-49.5 parent: 2 - - uid: 33788 + - uid: 36921 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-19.5 parent: 2 - - uid: 33790 + - uid: 36922 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-49.5 parent: 2 - - uid: 33791 + - uid: 36923 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-49.5 parent: 2 - - uid: 33792 + - uid: 36924 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-49.5 parent: 2 - - uid: 33793 + - uid: 36925 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-51.5 parent: 2 - - uid: 33795 + - uid: 36926 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-46.5 parent: 2 - - uid: 33802 + - uid: 36927 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-51.5 parent: 2 - - uid: 33803 + - uid: 36928 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-51.5 parent: 2 - - uid: 33818 + - uid: 36929 components: - type: Transform pos: 3.5,-47.5 parent: 2 - - uid: 33823 + - uid: 36930 components: - type: Transform pos: 3.5,-46.5 parent: 2 - - uid: 33851 + - uid: 36931 components: - type: Transform pos: 19.5,24.5 parent: 2 - - uid: 33855 + - uid: 36932 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-19.5 parent: 2 - - uid: 33856 + - uid: 36933 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-19.5 parent: 2 - - uid: 33858 + - uid: 36934 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-18.5 parent: 2 - - uid: 33864 + - uid: 36935 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-17.5 parent: 2 - - uid: 33865 + - uid: 36936 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-16.5 parent: 2 - - uid: 33866 + - uid: 36937 components: - type: Transform rot: -1.5707963267948966 rad pos: -63.5,-15.5 parent: 2 - - uid: 33868 + - uid: 36938 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,-15.5 parent: 2 - - uid: 33869 + - uid: 36939 components: - type: Transform rot: -1.5707963267948966 rad pos: -61.5,-15.5 parent: 2 - - uid: 33870 + - uid: 36940 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-15.5 parent: 2 - - uid: 33871 + - uid: 36941 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,15.5 parent: 2 - - uid: 33872 + - uid: 36942 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,16.5 parent: 2 - - uid: 33873 + - uid: 36943 components: - type: Transform pos: -60.5,-18.5 parent: 2 - - uid: 33892 + - uid: 36944 components: - type: Transform pos: -7.5,-51.5 parent: 2 - - uid: 33893 + - uid: 36945 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-50.5 parent: 2 - - uid: 33895 + - uid: 36946 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-47.5 parent: 2 - - uid: 33896 + - uid: 36947 components: - type: Transform pos: -18.5,4.5 parent: 2 - - uid: 33903 + - uid: 36948 components: - type: Transform pos: -18.5,3.5 parent: 2 - - uid: 33904 + - uid: 36949 components: - type: Transform pos: -18.5,5.5 parent: 2 - - uid: 33905 + - uid: 36950 components: - type: Transform pos: -18.5,2.5 parent: 2 - - uid: 33911 + - uid: 36951 components: - type: Transform pos: -18.5,6.5 parent: 2 - - uid: 33912 + - uid: 36952 components: - type: Transform pos: -18.5,7.5 parent: 2 - - uid: 33913 + - uid: 36953 components: - type: Transform pos: -18.5,8.5 parent: 2 - - uid: 33920 - components: - - type: Transform - pos: -17.5,2.5 - parent: 2 - - uid: 33932 + - uid: 36954 components: - type: Transform pos: -3.5,-45.5 parent: 2 - - uid: 34199 + - uid: 36955 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-33.5 parent: 2 - - uid: 34200 + - uid: 36956 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-33.5 parent: 2 - - uid: 34201 + - uid: 36957 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-33.5 parent: 2 - - uid: 34202 + - uid: 36958 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-33.5 parent: 2 - - uid: 34203 + - uid: 36959 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-33.5 parent: 2 - - uid: 34208 + - uid: 36960 components: - type: Transform pos: 3.5,-42.5 parent: 2 - - uid: 34284 + - uid: 36961 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-52.5 parent: 2 - - uid: 34285 + - uid: 36962 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-52.5 parent: 2 - - uid: 34628 + - uid: 36963 components: - type: Transform pos: 48.5,24.5 parent: 2 - - uid: 34871 + - uid: 36964 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,19.5 parent: 2 - - uid: 34899 + - uid: 36965 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,20.5 parent: 2 - - uid: 35065 + - uid: 36966 components: - type: Transform pos: 48.5,-6.5 parent: 2 - - uid: 35805 + - uid: 36967 components: - type: Transform rot: -1.5707963267948966 rad pos: 116.5,-37.5 parent: 2 - - uid: 35881 + - uid: 36968 components: - type: Transform rot: -1.5707963267948966 rad pos: 121.5,-37.5 parent: 2 - - uid: 35883 + - uid: 36969 components: - type: Transform rot: -1.5707963267948966 rad pos: 123.5,-37.5 parent: 2 - - uid: 35909 + - uid: 36970 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,-13.5 parent: 2 - - uid: 35919 + - uid: 36971 components: - type: Transform rot: -1.5707963267948966 rad pos: 128.5,-37.5 parent: 2 - - uid: 35997 + - uid: 36972 components: - type: Transform pos: 68.5,-13.5 parent: 2 - - uid: 36039 + - uid: 36973 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,16.5 parent: 2 - - uid: 36040 + - uid: 36974 components: - type: Transform rot: 3.141592653589793 rad pos: 43.5,16.5 parent: 2 - - uid: 36041 + - uid: 36975 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,16.5 parent: 2 - - uid: 36048 + - uid: 36976 components: - type: Transform pos: 67.5,-14.5 parent: 2 - - uid: 36076 + - uid: 36977 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-6.5 parent: 2 - - uid: 36100 + - uid: 36978 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,13.5 parent: 2 - - uid: 36746 + - uid: 36979 components: - type: Transform rot: -1.5707963267948966 rad pos: 130.5,-37.5 parent: 2 - - uid: 36747 + - uid: 36980 components: - type: Transform rot: -1.5707963267948966 rad pos: 131.5,-37.5 parent: 2 - - uid: 36757 + - uid: 36981 components: - type: Transform rot: -1.5707963267948966 rad pos: 133.5,-37.5 parent: 2 - - uid: 36878 + - uid: 36982 components: - type: Transform rot: -1.5707963267948966 rad pos: 133.5,-41.5 parent: 2 - - uid: 36901 + - uid: 36983 components: - type: Transform rot: -1.5707963267948966 rad pos: 132.5,-41.5 parent: 2 - - uid: 36956 + - uid: 36984 components: - type: Transform rot: -1.5707963267948966 rad pos: 131.5,-41.5 parent: 2 - - uid: 37351 + - uid: 36985 components: - type: Transform rot: -1.5707963267948966 rad pos: 130.5,-41.5 parent: 2 - - uid: 37657 + - uid: 36986 components: - type: Transform rot: -1.5707963267948966 rad pos: 128.5,-41.5 parent: 2 - - uid: 37704 + - uid: 36987 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-50.5 parent: 2 - - uid: 39052 + - uid: 36988 components: - type: Transform rot: -1.5707963267948966 rad pos: 123.5,-41.5 parent: 2 - - uid: 39078 + - uid: 36989 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,-45.5 parent: 2 - - uid: 39086 + - uid: 36990 components: - type: Transform pos: -9.5,-43.5 parent: 2 - - uid: 39087 + - uid: 36991 components: - type: Transform pos: -1.5,-44.5 parent: 2 - - uid: 39088 + - uid: 36992 components: - type: Transform pos: 5.5,-21.5 parent: 2 - - uid: 39623 + - uid: 36993 components: - type: Transform pos: -2.5,-3.5 parent: 2 - - uid: 39626 + - uid: 36994 components: - type: Transform pos: -2.5,-9.5 parent: 2 - - uid: 39993 + - uid: 36995 components: - type: Transform rot: -1.5707963267948966 rad pos: 121.5,-41.5 parent: 2 - - uid: 40084 + - uid: 36996 components: - type: Transform rot: -1.5707963267948966 rad pos: 116.5,-41.5 parent: 2 - - uid: 40665 + - uid: 36997 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,12.5 parent: 2 - - uid: 40791 + - uid: 36998 components: - type: Transform rot: -1.5707963267948966 rad pos: 115.5,-41.5 parent: 2 - - uid: 40807 + - uid: 36999 components: - type: Transform pos: 82.5,-11.5 parent: 2 - - uid: 40823 + - uid: 37000 components: - type: Transform rot: -1.5707963267948966 rad pos: 114.5,-41.5 parent: 2 - - uid: 40836 + - uid: 37001 components: - type: Transform rot: -1.5707963267948966 rad pos: 113.5,-41.5 parent: 2 - - uid: 40837 + - uid: 37002 components: - type: Transform rot: 1.5707963267948966 rad pos: 113.5,-39.5 parent: 2 + - uid: 37003 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 37004 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 37005 + components: + - type: Transform + pos: -12.5,15.5 + parent: 2 - proto: WallReinforcedRust entities: - - uid: 23114 + - uid: 37006 components: - type: Transform pos: -14.5,-47.5 parent: 2 - - uid: 23130 + - uid: 37007 components: - type: Transform pos: 3.5,-41.5 parent: 2 - - uid: 23850 + - uid: 37008 components: - type: Transform pos: -6.5,-42.5 parent: 2 - - uid: 23851 + - uid: 37009 components: - type: Transform pos: 6.5,-42.5 parent: 2 - - uid: 24292 + - uid: 37010 components: - type: Transform pos: 6.5,-43.5 parent: 2 - - uid: 24562 + - uid: 37011 components: - type: Transform pos: -0.5,-35.5 parent: 2 - - uid: 24579 + - uid: 37012 components: - type: Transform pos: -1.5,-55.5 parent: 2 - - uid: 24679 + - uid: 37013 components: - type: Transform pos: -0.5,-38.5 parent: 2 - - uid: 25011 + - uid: 37014 components: - type: Transform pos: -7.5,-55.5 parent: 2 - - uid: 25038 + - uid: 37015 components: - type: Transform pos: 4.5,-45.5 parent: 2 - - uid: 25072 + - uid: 37016 components: - type: Transform pos: -18.5,-41.5 parent: 2 - - uid: 25073 + - uid: 37017 components: - type: Transform pos: -7.5,-42.5 parent: 2 - - uid: 25255 + - uid: 37018 components: - type: Transform pos: -0.5,-39.5 parent: 2 - - uid: 25665 + - uid: 37019 components: - type: Transform pos: 7.5,-49.5 parent: 2 - - uid: 25686 + - uid: 37020 components: - type: Transform pos: 8.5,-45.5 parent: 2 - - uid: 25687 + - uid: 37021 components: - type: Transform pos: -17.5,-44.5 parent: 2 - - uid: 25914 + - uid: 37022 components: - type: Transform pos: 16.5,-20.5 parent: 2 - - uid: 25950 + - uid: 37023 components: - type: Transform pos: 15.5,-20.5 parent: 2 - - uid: 25955 + - uid: 37024 components: - type: Transform pos: 1.5,-37.5 parent: 2 - - uid: 26097 + - uid: 37025 components: - type: Transform pos: -17.5,-30.5 parent: 2 - - uid: 26112 + - uid: 37026 components: - type: Transform pos: -15.5,-30.5 parent: 2 - - uid: 26398 + - uid: 37027 components: - type: Transform pos: -17.5,-55.5 parent: 2 - - uid: 26401 + - uid: 37028 components: - type: Transform pos: -14.5,-55.5 parent: 2 - - uid: 26487 + - uid: 37029 components: - type: Transform pos: -13.5,-55.5 parent: 2 - - uid: 26642 + - uid: 37030 components: - type: Transform pos: -11.5,-55.5 parent: 2 - - uid: 26643 + - uid: 37031 components: - type: Transform pos: 7.5,-48.5 parent: 2 - - uid: 26644 + - uid: 37032 components: - type: Transform pos: 17.5,-31.5 parent: 2 - - uid: 26652 + - uid: 37033 components: - type: Transform pos: -0.5,-48.5 parent: 2 - - uid: 26694 + - uid: 37034 components: - type: Transform pos: -0.5,-49.5 parent: 2 - - uid: 26746 + - uid: 37035 components: - type: Transform pos: -18.5,-55.5 parent: 2 - - uid: 26789 + - uid: 37036 components: - type: Transform pos: -1.5,-54.5 parent: 2 - - uid: 26790 + - uid: 37037 components: - type: Transform pos: -16.5,-44.5 parent: 2 - - uid: 26792 + - uid: 37038 components: - type: Transform pos: 12.5,-34.5 parent: 2 - - uid: 26803 + - uid: 37039 components: - type: Transform pos: 13.5,-34.5 parent: 2 - - uid: 26810 + - uid: 37040 components: - type: Transform pos: -0.5,-14.5 parent: 2 - - uid: 26812 + - uid: 37041 components: - type: Transform pos: 4.5,-51.5 parent: 2 - - uid: 26813 + - uid: 37042 components: - type: Transform pos: -11.5,-20.5 parent: 2 - - uid: 26821 + - uid: 37043 components: - type: Transform pos: 6.5,-49.5 parent: 2 - - uid: 26916 + - uid: 37044 components: - type: Transform pos: 9.5,-45.5 parent: 2 - - uid: 26936 + - uid: 37045 components: - type: Transform pos: 13.5,-45.5 parent: 2 - - uid: 27040 + - uid: 37046 components: - type: Transform pos: 14.5,-45.5 parent: 2 - - uid: 27100 + - uid: 37047 components: - type: Transform pos: 17.5,-47.5 parent: 2 - - uid: 27118 + - uid: 37048 components: - type: Transform pos: 18.5,-47.5 parent: 2 - - uid: 27218 + - uid: 37049 components: - type: Transform pos: -10.5,-31.5 parent: 2 - - uid: 27332 + - uid: 37050 components: - type: Transform pos: -7.5,-31.5 parent: 2 - - uid: 27338 + - uid: 37051 components: - type: Transform pos: -0.5,-21.5 parent: 2 - - uid: 27342 + - uid: 37052 components: - type: Transform pos: 0.5,-21.5 parent: 2 - - uid: 27385 + - uid: 37053 components: - type: Transform pos: 1.5,-21.5 parent: 2 - - uid: 28240 + - uid: 37054 components: - type: Transform pos: -12.5,-20.5 parent: 2 - - uid: 28242 + - uid: 37055 components: - type: Transform pos: -9.5,-26.5 parent: 2 - - uid: 28244 + - uid: 37056 components: - type: Transform pos: -9.5,-27.5 parent: 2 - - uid: 30898 + - uid: 37057 components: - type: Transform pos: -7.5,-20.5 parent: 2 - - uid: 31638 + - uid: 37058 components: - type: Transform pos: -8.5,-35.5 parent: 2 - - uid: 31953 + - uid: 37059 components: - type: Transform pos: -8.5,-34.5 parent: 2 - - uid: 32745 + - uid: 37060 components: - type: Transform pos: 16.5,-25.5 parent: 2 - - uid: 32746 + - uid: 37061 components: - type: Transform pos: 19.5,-24.5 parent: 2 - - uid: 32747 + - uid: 37062 components: - type: Transform pos: 0.5,-14.5 parent: 2 - - uid: 32748 + - uid: 37063 components: - type: Transform pos: 18.5,-30.5 parent: 2 - - uid: 32749 + - uid: 37064 components: - type: Transform pos: -4.5,-51.5 parent: 2 - - uid: 32750 + - uid: 37065 components: - type: Transform pos: 12.5,-50.5 parent: 2 - - uid: 32751 + - uid: 37066 components: - type: Transform pos: -7.5,-52.5 parent: 2 - - uid: 32752 + - uid: 37067 components: - type: Transform pos: -6.5,-50.5 parent: 2 - - uid: 32753 + - uid: 37068 components: - type: Transform pos: 3.5,-45.5 parent: 2 - - uid: 32754 + - uid: 37069 components: - type: Transform pos: -9.5,-50.5 parent: 2 - proto: WallRiveted entities: - - uid: 81 + - uid: 37070 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-44.5 parent: 2 - - uid: 255 + - uid: 37071 components: - type: Transform pos: 7.5,-64.5 parent: 2 - - uid: 363 + - uid: 37072 components: - type: Transform pos: -0.5,-11.5 parent: 2 - - uid: 379 + - uid: 37073 components: - type: Transform pos: 22.5,-24.5 parent: 2 - - uid: 4791 + - uid: 37074 components: - type: Transform pos: 23.5,-24.5 parent: 2 - - uid: 4816 + - uid: 37075 components: - type: Transform pos: 1.5,-11.5 parent: 2 - - uid: 6178 + - uid: 37076 components: - type: Transform pos: 24.5,-24.5 parent: 2 - - uid: 9024 + - uid: 37077 components: - type: Transform pos: 7.5,-11.5 parent: 2 - - uid: 9031 + - uid: 37078 components: - type: Transform pos: -10.5,-10.5 parent: 2 - - uid: 9032 + - uid: 37079 components: - type: Transform pos: -8.5,-11.5 parent: 2 - - uid: 9033 + - uid: 37080 components: - type: Transform pos: -6.5,-11.5 parent: 2 - - uid: 9065 + - uid: 37081 components: - type: Transform pos: -2.5,-11.5 parent: 2 - - uid: 9081 + - uid: 37082 components: - type: Transform pos: 8.5,-11.5 parent: 2 - - uid: 10071 + - uid: 37083 components: - type: Transform pos: 2.5,-65.5 parent: 2 - - uid: 10072 + - uid: 37084 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-34.5 parent: 2 - - uid: 10752 + - uid: 37085 components: - type: Transform pos: -3.5,-11.5 parent: 2 - - uid: 10753 + - uid: 37086 components: - type: Transform pos: -9.5,-11.5 parent: 2 - - uid: 10912 + - uid: 37087 components: - type: Transform pos: -7.5,-11.5 parent: 2 - - uid: 10914 + - uid: 37088 components: - type: Transform pos: -21.5,-41.5 parent: 2 - - uid: 10916 + - uid: 37089 components: - type: Transform pos: 2.5,-64.5 parent: 2 - - uid: 10917 + - uid: 37090 components: - type: Transform pos: 2.5,-66.5 parent: 2 - - uid: 11068 + - uid: 37091 components: - type: Transform pos: -6.5,-66.5 parent: 2 - - uid: 11120 + - uid: 37092 components: - type: Transform pos: -4.5,-66.5 parent: 2 - - uid: 11122 + - uid: 37093 components: - type: Transform pos: 9.5,-64.5 parent: 2 - - uid: 11123 + - uid: 37094 components: - type: Transform pos: -1.5,-66.5 parent: 2 - - uid: 11125 + - uid: 37095 components: - type: Transform pos: 21.5,-34.5 parent: 2 - - uid: 11126 + - uid: 37096 components: - type: Transform pos: 21.5,-30.5 parent: 2 - - uid: 11128 + - uid: 37097 components: - type: Transform pos: 21.5,-29.5 parent: 2 - - uid: 11137 + - uid: 37098 components: - type: Transform pos: 2.5,-63.5 parent: 2 - - uid: 11141 + - uid: 37099 components: - type: Transform pos: 6.5,-64.5 parent: 2 - - uid: 11144 + - uid: 37100 components: - type: Transform pos: -23.5,-41.5 parent: 2 - - uid: 11145 + - uid: 37101 components: - type: Transform pos: -22.5,-41.5 parent: 2 - - uid: 11149 + - uid: 37102 components: - type: Transform pos: 5.5,-11.5 parent: 2 - - uid: 11450 + - uid: 37103 components: - type: Transform pos: -10.5,-11.5 parent: 2 - - uid: 11451 + - uid: 37104 components: - type: Transform pos: -5.5,-11.5 parent: 2 - - uid: 11452 + - uid: 37105 components: - type: Transform pos: -4.5,-11.5 parent: 2 - - uid: 11453 + - uid: 37106 components: - type: Transform pos: -1.5,-11.5 parent: 2 - - uid: 11454 + - uid: 37107 components: - type: Transform pos: 2.5,-11.5 parent: 2 - - uid: 11455 + - uid: 37108 components: - type: Transform pos: 3.5,-11.5 parent: 2 - - uid: 11456 + - uid: 37109 components: - type: Transform pos: 4.5,-11.5 parent: 2 - - uid: 11457 + - uid: 37110 components: - type: Transform pos: 6.5,-11.5 parent: 2 - - uid: 11458 + - uid: 37111 components: - type: Transform pos: -1.5,-65.5 parent: 2 - - uid: 11460 + - uid: 37112 components: - type: Transform pos: -18.5,-17.5 parent: 2 - - uid: 11527 + - uid: 37113 components: - type: Transform pos: 20.5,-11.5 parent: 2 - - uid: 11528 + - uid: 37114 components: - type: Transform pos: 21.5,-12.5 parent: 2 - - uid: 11529 + - uid: 37115 components: - type: Transform pos: -18.5,-18.5 parent: 2 - - uid: 11530 + - uid: 37116 components: - type: Transform pos: -21.5,-19.5 parent: 2 - - uid: 11531 + - uid: 37117 components: - type: Transform pos: -21.5,-20.5 parent: 2 - - uid: 11532 + - uid: 37118 components: - type: Transform pos: 21.5,-19.5 parent: 2 - - uid: 11582 + - uid: 37119 components: - type: Transform pos: 21.5,-20.5 parent: 2 - - uid: 11593 + - uid: 37120 components: - type: Transform pos: -11.5,-10.5 parent: 2 - - uid: 11594 + - uid: 37121 components: - type: Transform pos: -19.5,-18.5 parent: 2 - - uid: 11595 + - uid: 37122 components: - type: Transform pos: -20.5,-18.5 parent: 2 - - uid: 11596 + - uid: 37123 components: - type: Transform pos: 14.5,-11.5 parent: 2 - - uid: 11608 + - uid: 37124 components: - type: Transform pos: 11.5,-11.5 parent: 2 - - uid: 11610 + - uid: 37125 components: - type: Transform pos: 13.5,-11.5 parent: 2 - - uid: 11612 + - uid: 37126 components: - type: Transform pos: -17.5,-10.5 parent: 2 - - uid: 11614 + - uid: 37127 components: - type: Transform pos: -21.5,-18.5 parent: 2 - - uid: 11620 + - uid: 37128 components: - type: Transform pos: 20.5,-12.5 parent: 2 - - uid: 11625 + - uid: 37129 components: - type: Transform pos: -18.5,-11.5 parent: 2 - - uid: 11630 + - uid: 37130 components: - type: Transform pos: -21.5,-40.5 parent: 2 - - uid: 11631 + - uid: 37131 components: - type: Transform pos: -21.5,-39.5 parent: 2 - - uid: 11632 + - uid: 37132 components: - type: Transform pos: -17.5,-11.5 parent: 2 - - uid: 11633 + - uid: 37133 components: - type: Transform pos: 9.5,-11.5 parent: 2 - - uid: 11637 + - uid: 37134 components: - type: Transform pos: 10.5,-11.5 parent: 2 - - uid: 11638 + - uid: 37135 components: - type: Transform pos: 12.5,-11.5 parent: 2 - - uid: 11643 + - uid: 37136 components: - type: Transform pos: 13.5,-63.5 parent: 2 - - uid: 11645 + - uid: 37137 components: - type: Transform pos: 14.5,-63.5 parent: 2 - - uid: 11646 + - uid: 37138 components: - type: Transform pos: 15.5,-63.5 parent: 2 - - uid: 11650 + - uid: 37139 components: - type: Transform pos: 21.5,-31.5 parent: 2 - - uid: 11652 + - uid: 37140 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,-24.5 parent: 2 - - uid: 11866 + - uid: 37141 components: - type: Transform pos: -21.5,-38.5 parent: 2 - - uid: 11906 + - uid: 37142 components: - type: Transform pos: -21.5,-37.5 parent: 2 - - uid: 12125 + - uid: 37143 components: - type: Transform pos: -21.5,-36.5 parent: 2 - - uid: 12126 + - uid: 37144 components: - type: Transform pos: -21.5,-35.5 parent: 2 - - uid: 12243 + - uid: 37145 components: - type: Transform pos: -21.5,-34.5 parent: 2 - - uid: 12248 + - uid: 37146 components: - type: Transform pos: -20.5,-34.5 parent: 2 - - uid: 12252 + - uid: 37147 components: - type: Transform pos: -20.5,-33.5 parent: 2 - - uid: 12253 + - uid: 37148 components: - type: Transform pos: -20.5,-32.5 parent: 2 - - uid: 12255 + - uid: 37149 components: - type: Transform pos: -20.5,-31.5 parent: 2 - - uid: 12256 + - uid: 37150 components: - type: Transform pos: -20.5,-30.5 parent: 2 - - uid: 13381 + - uid: 37151 components: - type: Transform pos: -23.5,-49.5 parent: 2 - - uid: 13382 + - uid: 37152 components: - type: Transform pos: -22.5,-49.5 parent: 2 - - uid: 13383 + - uid: 37153 components: - type: Transform pos: -21.5,-49.5 parent: 2 - - uid: 13384 + - uid: 37154 components: - type: Transform pos: -21.5,-50.5 parent: 2 - - uid: 13385 + - uid: 37155 components: - type: Transform pos: -21.5,-51.5 parent: 2 - - uid: 13386 + - uid: 37156 components: - type: Transform pos: -21.5,-52.5 parent: 2 - - uid: 13387 + - uid: 37157 components: - type: Transform pos: -21.5,-53.5 parent: 2 - - uid: 13388 + - uid: 37158 components: - type: Transform pos: -21.5,-54.5 parent: 2 - - uid: 13389 + - uid: 37159 components: - type: Transform pos: -21.5,-55.5 parent: 2 - - uid: 13390 + - uid: 37160 components: - type: Transform pos: -22.5,-55.5 parent: 2 - - uid: 13391 + - uid: 37161 components: - type: Transform pos: -22.5,-56.5 parent: 2 - - uid: 13392 + - uid: 37162 components: - type: Transform pos: -22.5,-57.5 parent: 2 - - uid: 13393 + - uid: 37163 components: - type: Transform pos: -23.5,-61.5 parent: 2 - - uid: 13395 + - uid: 37164 components: - type: Transform pos: -23.5,-57.5 parent: 2 - - uid: 13396 + - uid: 37165 components: - type: Transform pos: -22.5,-61.5 parent: 2 - - uid: 13397 + - uid: 37166 components: - type: Transform pos: -22.5,-62.5 parent: 2 - - uid: 13398 + - uid: 37167 components: - type: Transform pos: -22.5,-63.5 parent: 2 - - uid: 13399 + - uid: 37168 components: - type: Transform pos: -5.5,-66.5 parent: 2 - - uid: 13417 + - uid: 37169 components: - type: Transform pos: 22.5,-20.5 parent: 2 - - uid: 13419 + - uid: 37170 components: - type: Transform pos: -15.5,-63.5 parent: 2 - - uid: 13420 + - uid: 37171 components: - type: Transform pos: -17.5,-63.5 parent: 2 - - uid: 13421 + - uid: 37172 components: - type: Transform pos: -21.5,-63.5 parent: 2 - - uid: 13422 + - uid: 37173 components: - type: Transform pos: -20.5,-63.5 parent: 2 - - uid: 13423 + - uid: 37174 components: - type: Transform pos: -19.5,-63.5 parent: 2 - - uid: 13424 + - uid: 37175 components: - type: Transform pos: -18.5,-63.5 parent: 2 - - uid: 13425 + - uid: 37176 components: - type: Transform pos: -16.5,-63.5 parent: 2 - - uid: 13427 + - uid: 37177 components: - type: Transform pos: -14.5,-63.5 parent: 2 - - uid: 13428 + - uid: 37178 components: - type: Transform pos: -13.5,-63.5 parent: 2 - - uid: 13434 + - uid: 37179 components: - type: Transform pos: -12.5,-63.5 parent: 2 - - uid: 13435 + - uid: 37180 components: - type: Transform pos: -11.5,-63.5 parent: 2 - - uid: 13525 + - uid: 37181 components: - type: Transform pos: -21.5,-44.5 parent: 2 - - uid: 13526 + - uid: 37182 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-33.5 parent: 2 - - uid: 14301 + - uid: 37183 components: - type: Transform pos: -2.5,-65.5 parent: 2 - - uid: 14782 + - uid: 37184 components: - type: Transform pos: -3.5,-65.5 parent: 2 - - uid: 14800 + - uid: 37185 components: - type: Transform pos: -3.5,-66.5 parent: 2 - - uid: 14802 + - uid: 37186 components: - type: Transform pos: -7.5,-65.5 parent: 2 - - uid: 14822 + - uid: 37187 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-41.5 parent: 2 - - uid: 14823 + - uid: 37188 components: - type: Transform pos: -8.5,-65.5 parent: 2 - - uid: 14902 + - uid: 37189 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-41.5 parent: 2 - - uid: 14936 + - uid: 37190 components: - type: Transform pos: -9.5,-65.5 parent: 2 - - uid: 14942 + - uid: 37191 components: - type: Transform pos: -10.5,-65.5 parent: 2 - - uid: 14966 + - uid: 37192 components: - type: Transform pos: -11.5,-65.5 parent: 2 - - uid: 15029 + - uid: 37193 components: - type: Transform pos: -11.5,-64.5 parent: 2 - - uid: 15073 + - uid: 37194 components: - type: Transform pos: 3.5,-63.5 parent: 2 - - uid: 15074 + - uid: 37195 components: - type: Transform pos: 4.5,-63.5 parent: 2 - - uid: 15075 + - uid: 37196 components: - type: Transform pos: -20.5,-29.5 parent: 2 - - uid: 15167 + - uid: 37197 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-31.5 parent: 2 - - uid: 15172 + - uid: 37198 components: - type: Transform pos: 12.5,-63.5 parent: 2 - - uid: 15433 + - uid: 37199 components: - type: Transform pos: 9.5,-63.5 parent: 2 - - uid: 15599 + - uid: 37200 components: - type: Transform pos: 10.5,-63.5 parent: 2 - - uid: 15600 + - uid: 37201 components: - type: Transform pos: 11.5,-63.5 parent: 2 - - uid: 15626 + - uid: 37202 components: - type: Transform pos: 5.5,-63.5 parent: 2 - - uid: 16699 + - uid: 37203 components: - type: Transform pos: 16.5,-63.5 parent: 2 - - uid: 16700 + - uid: 37204 components: - type: Transform pos: 17.5,-63.5 parent: 2 - - uid: 16701 + - uid: 37205 components: - type: Transform pos: 18.5,-63.5 parent: 2 - - uid: 16702 + - uid: 37206 components: - type: Transform pos: 19.5,-63.5 parent: 2 - - uid: 16703 + - uid: 37207 components: - type: Transform pos: 20.5,-63.5 parent: 2 - - uid: 16704 + - uid: 37208 components: - type: Transform pos: 20.5,-62.5 parent: 2 - - uid: 16705 + - uid: 37209 components: - type: Transform pos: 20.5,-61.5 parent: 2 - - uid: 16743 + - uid: 37210 components: - type: Transform pos: 20.5,-60.5 parent: 2 - - uid: 16782 + - uid: 37211 components: - type: Transform pos: 20.5,-59.5 parent: 2 - - uid: 16784 + - uid: 37212 components: - type: Transform pos: 20.5,-58.5 parent: 2 - - uid: 16785 + - uid: 37213 components: - type: Transform pos: 21.5,-54.5 parent: 2 - - uid: 17441 + - uid: 37214 components: - type: Transform pos: 21.5,-58.5 parent: 2 - - uid: 17442 + - uid: 37215 components: - type: Transform pos: 5.5,-64.5 parent: 2 - - uid: 17526 + - uid: 37216 components: - type: Transform pos: 20.5,-54.5 parent: 2 - - uid: 17528 + - uid: 37217 components: - type: Transform pos: 20.5,-53.5 parent: 2 - - uid: 17529 + - uid: 37218 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-44.5 parent: 2 - - uid: 17532 + - uid: 37219 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-44.5 parent: 2 - - uid: 17613 + - uid: 37220 components: - type: Transform pos: 20.5,-52.5 parent: 2 - - uid: 18324 + - uid: 37221 components: - type: Transform pos: 23.5,-20.5 parent: 2 - - uid: 19163 + - uid: 37222 components: - type: Transform pos: 20.5,-51.5 parent: 2 - - uid: 19175 + - uid: 37223 components: - type: Transform pos: 20.5,-50.5 parent: 2 - - uid: 19176 + - uid: 37224 components: - type: Transform pos: 20.5,-49.5 parent: 2 - - uid: 22703 + - uid: 37225 components: - type: Transform pos: 20.5,-48.5 parent: 2 - - uid: 22704 + - uid: 37226 components: - type: Transform pos: 20.5,-47.5 parent: 2 - - uid: 22706 + - uid: 37227 components: - type: Transform pos: 20.5,-46.5 parent: 2 - - uid: 22948 + - uid: 37228 components: - type: Transform pos: 20.5,-45.5 parent: 2 - - uid: 22949 + - uid: 37229 components: - type: Transform pos: 20.5,-44.5 parent: 2 - - uid: 23075 + - uid: 37230 components: - type: Transform pos: 21.5,-44.5 parent: 2 - - uid: 23219 + - uid: 37231 components: - type: Transform pos: 21.5,-43.5 parent: 2 - - uid: 23220 + - uid: 37232 components: - type: Transform pos: 21.5,-42.5 parent: 2 - - uid: 23221 + - uid: 37233 components: - type: Transform pos: 21.5,-41.5 parent: 2 - - uid: 23970 + - uid: 37234 components: - type: Transform pos: 21.5,-40.5 parent: 2 - - uid: 24093 + - uid: 37235 components: - type: Transform pos: 21.5,-39.5 parent: 2 - - uid: 24094 + - uid: 37236 components: - type: Transform pos: 21.5,-38.5 parent: 2 - - uid: 24095 + - uid: 37237 components: - type: Transform pos: 21.5,-37.5 parent: 2 - - uid: 24766 + - uid: 37238 components: - type: Transform pos: 21.5,-36.5 parent: 2 - - uid: 24907 + - uid: 37239 components: - type: Transform pos: 21.5,-35.5 parent: 2 - - uid: 25108 + - uid: 37240 components: - type: Transform pos: 24.5,-20.5 parent: 2 - - uid: 25121 + - uid: 37241 components: - type: Transform pos: 24.5,-22.5 parent: 2 - - uid: 25122 + - uid: 37242 components: - type: Transform pos: 8.5,-64.5 parent: 2 - - uid: 25125 + - uid: 37243 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-13.5 parent: 2 - - uid: 25146 + - uid: 37244 components: - type: Transform pos: -7.5,-66.5 parent: 2 - - uid: 25158 + - uid: 37245 components: - type: Transform pos: -20.5,-28.5 parent: 2 - - uid: 25196 + - uid: 37246 components: - type: Transform pos: -20.5,-27.5 parent: 2 - - uid: 25197 + - uid: 37247 components: - type: Transform pos: -20.5,-26.5 parent: 2 - - uid: 25240 + - uid: 37248 components: - type: Transform pos: -20.5,-25.5 parent: 2 - - uid: 25268 + - uid: 37249 components: - type: Transform pos: -20.5,-24.5 parent: 2 - - uid: 25336 + - uid: 37250 components: - type: Transform pos: -21.5,-24.5 parent: 2 - - uid: 25642 + - uid: 37251 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-26.5 parent: 2 - - uid: 25702 + - uid: 37252 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-24.5 parent: 2 - - uid: 25719 + - uid: 37253 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-25.5 parent: 2 - - uid: 25720 + - uid: 37254 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-15.5 parent: 2 - - uid: 25721 + - uid: 37255 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-25.5 parent: 2 - - uid: 25722 + - uid: 37256 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-16.5 parent: 2 - - uid: 25723 + - uid: 37257 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-21.5 parent: 2 - - uid: 25735 + - uid: 37258 components: - type: Transform pos: -21.5,-23.5 parent: 2 - - uid: 25786 + - uid: 37259 components: - type: Transform pos: -21.5,-22.5 parent: 2 - - uid: 25999 + - uid: 37260 components: - type: Transform pos: -21.5,-21.5 parent: 2 - - uid: 26041 + - uid: 37261 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-23.5 parent: 2 - - uid: 26042 + - uid: 37262 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-26.5 parent: 2 - - uid: 26250 + - uid: 37263 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-19.5 parent: 2 - - uid: 26255 + - uid: 37264 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-26.5 parent: 2 - - uid: 26268 + - uid: 37265 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-17.5 parent: 2 - - uid: 26390 + - uid: 37266 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-21.5 parent: 2 - - uid: 26412 + - uid: 37267 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-22.5 parent: 2 - - uid: 26413 + - uid: 37268 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-20.5 parent: 2 - - uid: 26414 + - uid: 37269 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-20.5 parent: 2 - - uid: 26415 + - uid: 37270 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-18.5 parent: 2 - - uid: 26433 + - uid: 37271 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-23.5 parent: 2 - - uid: 26434 + - uid: 37272 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-22.5 parent: 2 - - uid: 26435 + - uid: 37273 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-24.5 parent: 2 - - uid: 26436 + - uid: 37274 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-26.5 parent: 2 - - uid: 26454 + - uid: 37275 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-16.5 parent: 2 - - uid: 26743 + - uid: 37276 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 2 - - uid: 28613 + - uid: 37277 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-12.5 parent: 2 - - uid: 29310 + - uid: 37278 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-18.5 parent: 2 - - uid: 30462 + - uid: 37279 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-19.5 parent: 2 - - uid: 30503 + - uid: 37280 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-43.5 parent: 2 - - uid: 30561 + - uid: 37281 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-46.5 parent: 2 - - uid: 30576 + - uid: 37282 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-47.5 parent: 2 - - uid: 30622 + - uid: 37283 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-48.5 parent: 2 - - uid: 30641 + - uid: 37284 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-42.5 parent: 2 - - uid: 30683 + - uid: 37285 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-40.5 parent: 2 - - uid: 30702 + - uid: 37286 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-26.5 parent: 2 - - uid: 30852 + - uid: 37287 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-45.5 parent: 2 - - uid: 30853 + - uid: 37288 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-45.5 parent: 2 - - uid: 31340 + - uid: 37289 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-26.5 parent: 2 - - uid: 32151 + - uid: 37290 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-12.5 parent: 2 - - uid: 33765 + - uid: 37291 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-14.5 parent: 2 - - uid: 33766 + - uid: 37292 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-15.5 parent: 2 - - uid: 33775 + - uid: 37293 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-14.5 parent: 2 - - uid: 33776 + - uid: 37294 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-13.5 parent: 2 - - uid: 33777 + - uid: 37295 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-12.5 parent: 2 - - uid: 33778 + - uid: 37296 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-12.5 parent: 2 - - uid: 33784 + - uid: 37297 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-13.5 parent: 2 - - uid: 33785 + - uid: 37298 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-12.5 parent: 2 - - uid: 33786 + - uid: 37299 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-13.5 parent: 2 - - uid: 33804 + - uid: 37300 components: - type: Transform pos: 13.5,-27.5 parent: 2 - - uid: 34361 + - uid: 37301 components: - type: Transform pos: 24.5,-23.5 parent: 2 - - uid: 34362 + - uid: 37302 components: - type: Transform pos: 24.5,-21.5 parent: 2 - - uid: 37885 + - uid: 37303 components: - type: Transform pos: 13.5,-30.5 parent: 2 - - uid: 39106 + - uid: 37304 components: - type: Transform pos: 7.5,-28.5 parent: 2 - - uid: 39566 + - uid: 37305 components: - type: Transform pos: 7.5,-29.5 parent: 2 - - uid: 39567 + - uid: 37306 components: - type: Transform pos: 12.5,-30.5 parent: 2 - - uid: 39568 + - uid: 37307 components: - type: Transform pos: 7.5,-30.5 parent: 2 - - uid: 39569 + - uid: 37308 components: - type: Transform pos: 9.5,-30.5 parent: 2 - - uid: 39570 + - uid: 37309 components: - type: Transform pos: 8.5,-30.5 parent: 2 - - uid: 39571 + - uid: 37310 components: - type: Transform pos: 11.5,-30.5 parent: 2 - - uid: 39572 + - uid: 37311 components: - type: Transform pos: 10.5,-30.5 parent: 2 - - uid: 39573 + - uid: 37312 components: - type: Transform pos: 7.5,-27.5 parent: 2 - - uid: 39574 + - uid: 37313 components: - type: Transform pos: 13.5,-29.5 parent: 2 - proto: WallRockBasaltCoal entities: - - uid: 15049 + - uid: 37314 components: - type: Transform pos: -12.5,-59.5 parent: 2 - - uid: 27884 + - uid: 37315 components: - type: Transform pos: -9.5,-59.5 parent: 2 - - uid: 27893 + - uid: 37316 components: - type: Transform pos: -10.5,-59.5 parent: 2 - - uid: 27897 + - uid: 37317 components: - type: Transform pos: -11.5,-58.5 parent: 2 - - uid: 27898 + - uid: 37318 components: - type: Transform pos: -11.5,-60.5 parent: 2 - - uid: 27917 + - uid: 37319 components: - type: Transform pos: -9.5,-62.5 parent: 2 - - uid: 28118 + - uid: 37320 components: - type: Transform pos: -9.5,-61.5 parent: 2 - - uid: 28120 + - uid: 37321 components: - type: Transform pos: -11.5,-59.5 parent: 2 - - uid: 28153 + - uid: 37322 components: - type: Transform pos: -9.5,-60.5 parent: 2 - proto: WallRockBasaltDiamond entities: - - uid: 27881 + - uid: 37323 components: - type: Transform pos: -10.5,-60.5 parent: 2 - proto: WallRockCoal entities: - - uid: 27894 + - uid: 37324 components: - type: Transform pos: -10.5,-61.5 parent: 2 - - uid: 28119 + - uid: 37325 components: - type: Transform pos: -11.5,-61.5 parent: 2 - proto: WallRockSilver entities: - - uid: 11072 + - uid: 37326 components: - type: Transform pos: -21.5,-57.5 parent: 2 - - uid: 13492 + - uid: 37327 components: - type: Transform pos: -20.5,-56.5 parent: 2 - - uid: 27149 + - uid: 37328 components: - type: Transform pos: -21.5,-58.5 parent: 2 - - uid: 27260 + - uid: 37329 components: - type: Transform pos: -21.5,-56.5 parent: 2 +- proto: WallRockSnow + entities: + - uid: 37330 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - uid: 37331 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 37332 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 2 + - uid: 37333 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 - proto: WallRockUranium entities: - - uid: 15061 + - uid: 37334 components: - type: Transform pos: -14.5,-62.5 parent: 2 - proto: WallShuttle entities: - - uid: 21046 + - uid: 40789 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-0.5 - parent: 21045 - - uid: 21056 + parent: 40666 + - uid: 40790 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,3.5 - parent: 21045 - - uid: 21059 + parent: 40666 + - uid: 40791 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-0.5 - parent: 21045 - - uid: 21061 + parent: 40666 + - uid: 40792 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,1.5 - parent: 21045 - - uid: 21062 + parent: 40666 + - uid: 40793 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-2.5 - parent: 21045 - - uid: 21064 + parent: 40666 + - uid: 40794 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-2.5 - parent: 21045 - - uid: 21074 + parent: 40666 + - uid: 40795 components: - type: Transform pos: -3.5,0.5 - parent: 21045 - - uid: 21075 + parent: 40666 + - uid: 40796 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-1.5 - parent: 21045 - - uid: 21172 + parent: 40666 + - uid: 40797 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,0.5 - parent: 21045 - - uid: 21178 + parent: 40666 + - uid: 40798 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-1.5 - parent: 21045 - - uid: 21224 + parent: 40666 + - uid: 40799 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,2.5 - parent: 21045 - - uid: 21236 + parent: 40666 + - uid: 40800 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,1.5 - parent: 21045 - - uid: 21237 + parent: 40666 + - uid: 40801 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,2.5 - parent: 21045 - - uid: 21238 + parent: 40666 + - uid: 40802 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,2.5 - parent: 21045 - - uid: 21240 + parent: 40666 + - uid: 40803 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-1.5 - parent: 21045 - - uid: 21245 + parent: 40666 + - uid: 40804 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,3.5 - parent: 21045 - - uid: 21251 + parent: 40666 + - uid: 40805 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,0.5 - parent: 21045 - - uid: 21252 + parent: 40666 + - uid: 40806 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,2.5 - parent: 21045 - - uid: 21253 + parent: 40666 + - uid: 40807 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-1.5 - parent: 21045 - - uid: 21276 + parent: 40666 + - uid: 40808 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,0.5 - parent: 21045 - - uid: 21278 + parent: 40666 + - uid: 40809 components: - type: Transform pos: 4.5,0.5 - parent: 21045 - - uid: 21300 + parent: 40666 + - uid: 40810 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,0.5 - parent: 21045 - - uid: 38490 + parent: 40666 + - uid: 41437 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-15.5 - parent: 37887 - - uid: 38491 + parent: 40828 + - uid: 41438 components: - type: Transform pos: 0.5,0.5 - parent: 37887 - - uid: 38492 + parent: 40828 + - uid: 41439 components: - type: Transform pos: 0.5,-3.5 - parent: 37887 - - uid: 38493 + parent: 40828 + - uid: 41440 components: - type: Transform pos: 2.5,0.5 - parent: 37887 - - uid: 38494 + parent: 40828 + - uid: 41441 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,0.5 - parent: 37887 - - uid: 38495 + parent: 40828 + - uid: 41442 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-2.5 - parent: 37887 - - uid: 38496 + parent: 40828 + - uid: 41443 components: - type: Transform pos: 2.5,-3.5 - parent: 37887 - - uid: 38497 + parent: 40828 + - uid: 41444 components: - type: Transform pos: -1.5,0.5 - parent: 37887 - - uid: 38498 + parent: 40828 + - uid: 41445 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,0.5 - parent: 37887 - - uid: 38499 + parent: 40828 + - uid: 41446 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-3.5 - parent: 37887 - - uid: 38500 + parent: 40828 + - uid: 41447 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-3.5 - parent: 37887 - - uid: 38501 + parent: 40828 + - uid: 41448 components: - type: Transform pos: -1.5,-3.5 - parent: 37887 - - uid: 38502 + parent: 40828 + - uid: 41449 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-1.5 - parent: 37887 - - uid: 38503 + parent: 40828 + - uid: 41450 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 - parent: 37887 - - uid: 38504 + parent: 40828 + - uid: 41451 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-0.5 - parent: 37887 - - uid: 38505 + parent: 40828 + - uid: 41452 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-1.5 - parent: 37887 - - uid: 38506 + parent: 40828 + - uid: 41453 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-0.5 - parent: 37887 - - uid: 38507 + parent: 40828 + - uid: 41454 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,0.5 - parent: 37887 - - uid: 38508 + parent: 40828 + - uid: 41455 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-7.5 - parent: 37887 - - uid: 38509 + parent: 40828 + - uid: 41456 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-4.5 - parent: 37887 - - uid: 38510 + parent: 40828 + - uid: 41457 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-3.5 - parent: 37887 - - uid: 38511 + parent: 40828 + - uid: 41458 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-7.5 - parent: 37887 - - uid: 38512 + parent: 40828 + - uid: 41459 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-7.5 - parent: 37887 - - uid: 38513 + parent: 40828 + - uid: 41460 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-3.5 - parent: 37887 - - uid: 38514 + parent: 40828 + - uid: 41461 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 - parent: 37887 - - uid: 38515 + parent: 40828 + - uid: 41462 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-3.5 - parent: 37887 - - uid: 38516 + parent: 40828 + - uid: 41463 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-7.5 - parent: 37887 - - uid: 38517 + parent: 40828 + - uid: 41464 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-4.5 - parent: 37887 - - uid: 38518 + parent: 40828 + - uid: 41465 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-4.5 - parent: 37887 - - uid: 38519 + parent: 40828 + - uid: 41466 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-3.5 - parent: 37887 - - uid: 38520 + parent: 40828 + - uid: 41467 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-3.5 - parent: 37887 - - uid: 38521 + parent: 40828 + - uid: 41468 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-6.5 - parent: 37887 - - uid: 38522 + parent: 40828 + - uid: 41469 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-7.5 - parent: 37887 - - uid: 38523 + parent: 40828 + - uid: 41470 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-5.5 - parent: 37887 - - uid: 38524 + parent: 40828 + - uid: 41471 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-7.5 - parent: 37887 - - uid: 38525 + parent: 40828 + - uid: 41472 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-3.5 - parent: 37887 - - uid: 38526 + parent: 40828 + - uid: 41473 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-3.5 - parent: 37887 - - uid: 38527 + parent: 40828 + - uid: 41474 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-3.5 - parent: 37887 - - uid: 38528 + parent: 40828 + - uid: 41475 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-4.5 - parent: 37887 - - uid: 38529 + parent: 40828 + - uid: 41476 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-5.5 - parent: 37887 - - uid: 38530 + parent: 40828 + - uid: 41477 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-6.5 - parent: 37887 - - uid: 38531 + parent: 40828 + - uid: 41478 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-7.5 - parent: 37887 - - uid: 38532 + parent: 40828 + - uid: 41479 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-7.5 - parent: 37887 - - uid: 38533 + parent: 40828 + - uid: 41480 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-7.5 - parent: 37887 - - uid: 38534 + parent: 40828 + - uid: 41481 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-7.5 - parent: 37887 - - uid: 38535 + parent: 40828 + - uid: 41482 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-6.5 - parent: 37887 - - uid: 38536 + parent: 40828 + - uid: 41483 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-6.5 - parent: 37887 - - uid: 38537 + parent: 40828 + - uid: 41484 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-10.5 - parent: 37887 - - uid: 38538 + parent: 40828 + - uid: 41485 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 - parent: 37887 - - uid: 38539 + parent: 40828 + - uid: 41486 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-10.5 - parent: 37887 - - uid: 38540 + parent: 40828 + - uid: 41487 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-10.5 - parent: 37887 - - uid: 38541 + parent: 40828 + - uid: 41488 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-11.5 - parent: 37887 - - uid: 38542 + parent: 40828 + - uid: 41489 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-12.5 - parent: 37887 - - uid: 38543 + parent: 40828 + - uid: 41490 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-13.5 - parent: 37887 - - uid: 38544 + parent: 40828 + - uid: 41491 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-13.5 - parent: 37887 - - uid: 38545 + parent: 40828 + - uid: 41492 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-13.5 - parent: 37887 - - uid: 38546 + parent: 40828 + - uid: 41493 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-13.5 - parent: 37887 - - uid: 38547 + parent: 40828 + - uid: 41494 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-13.5 - parent: 37887 - - uid: 38548 + parent: 40828 + - uid: 41495 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-12.5 - parent: 37887 - - uid: 38549 + parent: 40828 + - uid: 41496 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-11.5 - parent: 37887 - - uid: 38550 + parent: 40828 + - uid: 41497 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-10.5 - parent: 37887 - - uid: 38551 + parent: 40828 + - uid: 41498 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-8.5 - parent: 37887 - - uid: 38552 + parent: 40828 + - uid: 41499 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-13.5 - parent: 37887 - - uid: 38553 + parent: 40828 + - uid: 41500 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-14.5 - parent: 37887 - - uid: 38554 + parent: 40828 + - uid: 41501 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-14.5 - parent: 37887 - - uid: 38555 + parent: 40828 + - uid: 41502 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-14.5 - parent: 37887 - - uid: 38556 + parent: 40828 + - uid: 41503 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-14.5 - parent: 37887 - - uid: 38557 + parent: 40828 + - uid: 41504 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-14.5 - parent: 37887 - - uid: 38558 + parent: 40828 + - uid: 41505 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-13.5 - parent: 37887 - - uid: 38559 + parent: 40828 + - uid: 41506 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-12.5 - parent: 37887 - - uid: 38560 + parent: 40828 + - uid: 41507 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-11.5 - parent: 37887 - - uid: 38561 + parent: 40828 + - uid: 41508 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-10.5 - parent: 37887 - - uid: 38562 + parent: 40828 + - uid: 41509 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-9.5 - parent: 37887 - - uid: 38563 + parent: 40828 + - uid: 41510 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-8.5 - parent: 37887 - - uid: 38564 + parent: 40828 + - uid: 41511 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-10.5 - parent: 37887 - - uid: 38565 + parent: 40828 + - uid: 41512 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-8.5 - parent: 37887 - - uid: 38566 + parent: 40828 + - uid: 41513 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,0.5 - parent: 37887 - - uid: 38567 + parent: 40828 + - uid: 41514 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-14.5 - parent: 37887 - - uid: 38568 + parent: 40828 + - uid: 41515 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-14.5 - parent: 37887 - - uid: 38569 + parent: 40828 + - uid: 41516 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-14.5 - parent: 37887 - - uid: 38570 + parent: 40828 + - uid: 41517 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-14.5 - parent: 37887 - - uid: 38571 + parent: 40828 + - uid: 41518 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-14.5 - parent: 37887 - - uid: 38572 + parent: 40828 + - uid: 41519 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-13.5 - parent: 37887 - - uid: 38573 + parent: 40828 + - uid: 41520 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-12.5 - parent: 37887 - - uid: 38574 + parent: 40828 + - uid: 41521 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-11.5 - parent: 37887 - - uid: 38575 + parent: 40828 + - uid: 41522 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-10.5 - parent: 37887 - - uid: 38576 + parent: 40828 + - uid: 41523 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-9.5 - parent: 37887 - - uid: 38577 + parent: 40828 + - uid: 41524 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-8.5 - parent: 37887 - - uid: 38578 + parent: 40828 + - uid: 41525 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-13.5 - parent: 37887 - - uid: 38579 + parent: 40828 + - uid: 41526 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-3.5 - parent: 37887 - - uid: 38580 + parent: 40828 + - uid: 41527 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-8.5 - parent: 37887 - - uid: 38581 + parent: 40828 + - uid: 41528 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-9.5 - parent: 37887 - - uid: 38582 + parent: 40828 + - uid: 41529 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-14.5 - parent: 37887 - - uid: 38583 + parent: 40828 + - uid: 41530 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-15.5 - parent: 37887 - - uid: 38584 + parent: 40828 + - uid: 41531 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-14.5 - parent: 37887 - - uid: 38585 + parent: 40828 + - uid: 41532 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-15.5 - parent: 37887 - - uid: 38586 + parent: 40828 + - uid: 41533 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-14.5 - parent: 37887 - - uid: 38587 + parent: 40828 + - uid: 41534 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-15.5 - parent: 37887 - - uid: 38588 + parent: 40828 + - uid: 41535 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-14.5 - parent: 37887 - - uid: 38589 + parent: 40828 + - uid: 41536 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-9.5 - parent: 37887 - - uid: 38590 + parent: 40828 + - uid: 41537 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-8.5 - parent: 37887 - - uid: 38591 + parent: 40828 + - uid: 41538 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-3.5 - parent: 37887 - - uid: 38592 + parent: 40828 + - uid: 41539 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,0.5 - parent: 37887 - - uid: 38593 + parent: 40828 + - uid: 41540 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,0.5 - parent: 37887 - - uid: 38594 + parent: 40828 + - uid: 41541 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,0.5 - parent: 37887 - - uid: 38595 + parent: 40828 + - uid: 41542 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-0.5 - parent: 37887 - - uid: 38596 + parent: 40828 + - uid: 41543 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-1.5 - parent: 37887 - - uid: 38597 + parent: 40828 + - uid: 41544 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-2.5 - parent: 37887 - - uid: 38598 + parent: 40828 + - uid: 41545 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,1.5 - parent: 37887 - - uid: 38599 + parent: 40828 + - uid: 41546 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,0.5 - parent: 37887 - - uid: 38600 + parent: 40828 + - uid: 41547 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,2.5 - parent: 37887 - - uid: 38601 + parent: 40828 + - uid: 41548 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,3.5 - parent: 37887 - - uid: 38602 + parent: 40828 + - uid: 41549 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,4.5 - parent: 37887 - - uid: 38603 + parent: 40828 + - uid: 41550 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,5.5 - parent: 37887 - - uid: 38604 + parent: 40828 + - uid: 41551 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,6.5 - parent: 37887 - - uid: 38605 + parent: 40828 + - uid: 41552 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,7.5 - parent: 37887 - - uid: 38606 + parent: 40828 + - uid: 41553 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,8.5 - parent: 37887 - - uid: 38607 + parent: 40828 + - uid: 41554 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,9.5 - parent: 37887 - - uid: 38608 + parent: 40828 + - uid: 41555 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,10.5 - parent: 37887 - - uid: 38609 + parent: 40828 + - uid: 41556 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,11.5 - parent: 37887 - - uid: 38610 + parent: 40828 + - uid: 41557 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,12.5 - parent: 37887 - - uid: 38611 + parent: 40828 + - uid: 41558 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,13.5 - parent: 37887 - - uid: 38612 + parent: 40828 + - uid: 41559 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,14.5 - parent: 37887 - - uid: 38613 + parent: 40828 + - uid: 41560 components: - type: Transform pos: 7.5,15.5 - parent: 37887 - - uid: 38614 + parent: 40828 + - uid: 41561 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,1.5 - parent: 37887 - - uid: 38615 + parent: 40828 + - uid: 41562 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,2.5 - parent: 37887 - - uid: 38616 + parent: 40828 + - uid: 41563 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,3.5 - parent: 37887 - - uid: 38617 + parent: 40828 + - uid: 41564 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,4.5 - parent: 37887 - - uid: 38618 + parent: 40828 + - uid: 41565 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,5.5 - parent: 37887 - - uid: 38619 + parent: 40828 + - uid: 41566 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,6.5 - parent: 37887 - - uid: 38620 + parent: 40828 + - uid: 41567 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,7.5 - parent: 37887 - - uid: 38621 + parent: 40828 + - uid: 41568 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,8.5 - parent: 37887 - - uid: 38622 + parent: 40828 + - uid: 41569 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,9.5 - parent: 37887 - - uid: 38623 + parent: 40828 + - uid: 41570 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,10.5 - parent: 37887 - - uid: 38624 + parent: 40828 + - uid: 41571 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,11.5 - parent: 37887 - - uid: 38625 + parent: 40828 + - uid: 41572 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,12.5 - parent: 37887 - - uid: 38626 + parent: 40828 + - uid: 41573 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,13.5 - parent: 37887 - - uid: 38627 + parent: 40828 + - uid: 41574 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,14.5 - parent: 37887 - - uid: 38628 + parent: 40828 + - uid: 41575 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,0.5 - parent: 37887 - - uid: 38629 + parent: 40828 + - uid: 41576 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,0.5 - parent: 37887 - - uid: 38630 + parent: 40828 + - uid: 41577 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,0.5 - parent: 37887 - - uid: 38631 + parent: 40828 + - uid: 41578 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-0.5 - parent: 37887 - - uid: 38632 + parent: 40828 + - uid: 41579 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-1.5 - parent: 37887 - - uid: 38633 + parent: 40828 + - uid: 41580 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-2.5 - parent: 37887 - - uid: 38634 + parent: 40828 + - uid: 41581 components: - type: Transform pos: -6.5,15.5 - parent: 37887 - - uid: 38635 + parent: 40828 + - uid: 41582 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,14.5 - parent: 37887 - - uid: 38636 + parent: 40828 + - uid: 41583 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,13.5 - parent: 37887 - - uid: 38637 + parent: 40828 + - uid: 41584 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,14.5 - parent: 37887 - - uid: 38638 + parent: 40828 + - uid: 41585 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,13.5 - parent: 37887 - - uid: 38955 + parent: 40828 + - uid: 41901 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-0.5 - parent: 38722 - - uid: 38956 + parent: 41669 + - uid: 41902 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-0.5 - parent: 38722 - - uid: 38957 + parent: 41669 + - uid: 41903 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-3.5 - parent: 38722 - - uid: 38958 + parent: 41669 + - uid: 41904 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-6.5 - parent: 38722 - - uid: 38959 + parent: 41669 + - uid: 41905 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-2.5 - parent: 38722 - - uid: 38960 + parent: 41669 + - uid: 41906 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-1.5 - parent: 38722 - - uid: 38961 + parent: 41669 + - uid: 41907 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-5.5 - parent: 38722 - - uid: 38962 + parent: 41669 + - uid: 41908 components: - type: Transform pos: 8.5,0.5 - parent: 38722 - - uid: 38963 + parent: 41669 + - uid: 41909 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,0.5 - parent: 38722 - - uid: 38964 + parent: 41669 + - uid: 41910 components: - type: Transform pos: 0.5,1.5 - parent: 38722 - - uid: 38965 + parent: 41669 + - uid: 41911 components: - type: Transform pos: 8.5,1.5 - parent: 38722 - - uid: 38966 + parent: 41669 + - uid: 41912 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-0.5 - parent: 38722 - - uid: 38967 + parent: 41669 + - uid: 41913 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-4.5 - parent: 38722 - - uid: 38968 + parent: 41669 + - uid: 41914 components: - type: Transform pos: 7.5,-1.5 - parent: 38722 - - uid: 38969 + parent: 41669 + - uid: 41915 components: - type: Transform pos: 7.5,-2.5 - parent: 38722 - - uid: 38970 + parent: 41669 + - uid: 41916 components: - type: Transform pos: 7.5,-3.5 - parent: 38722 - - uid: 38971 + parent: 41669 + - uid: 41917 components: - type: Transform pos: 7.5,-4.5 - parent: 38722 - - uid: 38972 + parent: 41669 + - uid: 41918 components: - type: Transform pos: 7.5,-5.5 - parent: 38722 - - uid: 38973 + parent: 41669 + - uid: 41919 components: - type: Transform pos: 7.5,-6.5 - parent: 38722 - - uid: 38974 + parent: 41669 + - uid: 41920 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-10.5 - parent: 38722 - - uid: 38975 + parent: 41669 + - uid: 41921 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-10.5 - parent: 38722 - - uid: 38976 + parent: 41669 + - uid: 41922 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-10.5 - parent: 38722 - - uid: 38977 + parent: 41669 + - uid: 41923 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-10.5 - parent: 38722 - - uid: 38978 + parent: 41669 + - uid: 41924 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-11.5 - parent: 38722 - - uid: 38979 + parent: 41669 + - uid: 41925 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-11.5 - parent: 38722 - - uid: 38980 + parent: 41669 + - uid: 41926 components: - type: Transform pos: 7.5,-7.5 - parent: 38722 - - uid: 38981 + parent: 41669 + - uid: 41927 components: - type: Transform pos: 1.5,-7.5 - parent: 38722 - - uid: 38982 + parent: 41669 + - uid: 41928 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-8.5 - parent: 38722 - - uid: 38983 + parent: 41669 + - uid: 41929 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-9.5 - parent: 38722 - - uid: 38984 + parent: 41669 + - uid: 41930 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-8.5 - parent: 38722 - - uid: 38985 + parent: 41669 + - uid: 41931 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-9.5 - parent: 38722 - - uid: 38986 + parent: 41669 + - uid: 41932 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-12.5 - parent: 38722 - - uid: 38987 + parent: 41669 + - uid: 41933 components: - type: Transform pos: 2.5,-0.5 - parent: 38722 - - uid: 38988 + parent: 41669 + - uid: 41934 components: - type: Transform pos: 3.5,-9.5 - parent: 38722 - - uid: 38989 + parent: 41669 + - uid: 41935 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-3.5 - parent: 38722 - - uid: 38990 + parent: 41669 + - uid: 41936 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-7.5 - parent: 38722 - - uid: 38991 + parent: 41669 + - uid: 41937 components: - type: Transform pos: 5.5,-9.5 - parent: 38722 - - uid: 38992 + parent: 41669 + - uid: 41938 components: - type: Transform pos: 1.5,2.5 - parent: 38722 - - uid: 38993 + parent: 41669 + - uid: 41939 components: - type: Transform pos: 7.5,2.5 - parent: 38722 - - uid: 38994 + parent: 41669 + - uid: 41940 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 - parent: 38722 - - uid: 38995 + parent: 41669 + - uid: 41941 components: - type: Transform pos: 4.5,-3.5 - parent: 38722 - - uid: 38996 + parent: 41669 + - uid: 41942 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-3.5 - parent: 38722 - - uid: 38997 + parent: 41669 + - uid: 41943 components: - type: Transform pos: 2.5,-3.5 - parent: 38722 - - uid: 38998 + parent: 41669 + - uid: 41944 components: - type: Transform pos: 4.5,-0.5 - parent: 38722 - - uid: 38999 + parent: 41669 + - uid: 41945 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-7.5 - parent: 38722 + parent: 41669 - proto: WallShuttleDiagonal entities: - - uid: 21053 + - uid: 40811 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,3.5 - parent: 21045 - - uid: 21060 + parent: 40666 + - uid: 40812 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,3.5 - parent: 21045 - - uid: 21068 + parent: 40666 + - uid: 40813 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-1.5 - parent: 21045 - - uid: 21161 + parent: 40666 + - uid: 40814 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-0.5 - parent: 21045 - - uid: 21162 + parent: 40666 + - uid: 40815 components: - type: Transform pos: -2.5,3.5 - parent: 21045 - - uid: 21176 + parent: 40666 + - uid: 40816 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-1.5 - parent: 21045 - - uid: 21205 + parent: 40666 + - uid: 40817 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-0.5 - parent: 21045 - - uid: 21246 + parent: 40666 + - uid: 40818 components: - type: Transform pos: -4.5,3.5 - parent: 21045 - - uid: 38639 + parent: 40666 + - uid: 41586 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-15.5 - parent: 37887 - - uid: 38640 + parent: 40828 + - uid: 41587 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-15.5 - parent: 37887 - - uid: 38641 + parent: 40828 + - uid: 41588 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-15.5 - parent: 37887 - - uid: 38642 + parent: 40828 + - uid: 41589 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-15.5 - parent: 37887 - - uid: 38643 + parent: 40828 + - uid: 41590 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,12.5 - parent: 37887 - - uid: 38644 + parent: 40828 + - uid: 41591 components: - type: Transform pos: 5.5,1.5 - parent: 37887 - - uid: 38645 + parent: 40828 + - uid: 41592 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,1.5 - parent: 37887 - - uid: 38646 + parent: 40828 + - uid: 41593 components: - type: Transform pos: -6.5,16.5 - parent: 37887 - - uid: 38647 + parent: 40828 + - uid: 41594 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,12.5 - parent: 37887 - - uid: 38648 + parent: 40828 + - uid: 41595 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,16.5 - parent: 37887 - - uid: 39000 + parent: 40828 + - uid: 41946 components: - type: Transform pos: 0.5,-4.5 - parent: 38722 - - uid: 39001 + parent: 41669 + - uid: 41947 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-3.5 - parent: 38722 - - uid: 39002 + parent: 41669 + - uid: 41948 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-4.5 - parent: 38722 - - uid: 39003 + parent: 41669 + - uid: 41949 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-3.5 - parent: 38722 - - uid: 39004 + parent: 41669 + - uid: 41950 components: - type: Transform pos: 0.5,2.5 - parent: 38722 - - uid: 39005 + parent: 41669 + - uid: 41951 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,2.5 - parent: 38722 - - uid: 39006 + parent: 41669 + - uid: 41952 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-0.5 - parent: 38722 - - uid: 39007 + parent: 41669 + - uid: 41953 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-0.5 - parent: 38722 - - uid: 39008 + parent: 41669 + - uid: 41954 components: - type: Transform pos: 0.5,-7.5 - parent: 38722 - - uid: 39009 + parent: 41669 + - uid: 41955 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-12.5 - parent: 38722 - - uid: 39010 + parent: 41669 + - uid: 41956 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-12.5 - parent: 38722 - - uid: 39011 + parent: 41669 + - uid: 41957 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-7.5 - parent: 38722 - - uid: 39012 + parent: 41669 + - uid: 41958 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-10.5 - parent: 38722 - - uid: 39013 + parent: 41669 + - uid: 41959 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-10.5 - parent: 38722 - - uid: 39014 + parent: 41669 + - uid: 41960 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,3.5 - parent: 38722 - - uid: 39015 + parent: 41669 + - uid: 41961 components: - type: Transform pos: 1.5,3.5 - parent: 38722 - - uid: 39016 + parent: 41669 + - uid: 41962 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-10.5 - parent: 38722 - - uid: 39017 + parent: 41669 + - uid: 41963 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-10.5 - parent: 38722 - - uid: 39018 + parent: 41669 + - uid: 41964 components: - type: Transform pos: 5.5,-7.5 - parent: 38722 - - uid: 39019 + parent: 41669 + - uid: 41965 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-7.5 - parent: 38722 + parent: 41669 - proto: WallSolid entities: - - uid: 575 + - uid: 37335 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-17.5 parent: 2 - - uid: 7342 + - uid: 37336 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-22.5 parent: 2 - - uid: 17797 + - uid: 37337 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-22.5 parent: 2 - - uid: 18411 + - uid: 37338 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-80.5 parent: 2 - - uid: 27915 + - uid: 37339 components: - type: Transform pos: 21.5,-77.5 parent: 2 - - uid: 32559 + - uid: 37340 components: - type: Transform pos: 42.5,-12.5 parent: 2 - - uid: 32583 + - uid: 37341 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,19.5 parent: 2 - - uid: 32739 + - uid: 37342 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,19.5 parent: 2 - - uid: 32740 + - uid: 37343 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,20.5 parent: 2 - - uid: 32741 + - uid: 37344 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,21.5 parent: 2 - - uid: 32742 + - uid: 37345 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,22.5 parent: 2 - - uid: 32743 + - uid: 37346 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,23.5 parent: 2 - - uid: 32958 + - uid: 37347 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-34.5 parent: 2 - - uid: 33890 + - uid: 37348 components: - type: Transform pos: -19.5,2.5 parent: 2 - - uid: 33897 + - uid: 37349 components: - type: Transform pos: -22.5,2.5 parent: 2 - - uid: 33898 + - uid: 37350 components: - type: Transform pos: -23.5,2.5 parent: 2 - - uid: 33899 + - uid: 37351 components: - type: Transform pos: -24.5,2.5 parent: 2 - - uid: 33900 + - uid: 37352 components: - type: Transform pos: -25.5,8.5 parent: 2 - - uid: 33901 + - uid: 37353 components: - type: Transform pos: -25.5,7.5 parent: 2 - - uid: 33902 + - uid: 37354 components: - type: Transform pos: -25.5,9.5 parent: 2 - - uid: 33906 + - uid: 37355 components: - type: Transform pos: -25.5,6.5 parent: 2 - - uid: 33907 + - uid: 37356 components: - type: Transform pos: -25.5,5.5 parent: 2 - - uid: 33908 + - uid: 37357 components: - type: Transform pos: -25.5,4.5 parent: 2 - - uid: 33909 + - uid: 37358 components: - type: Transform pos: -25.5,3.5 parent: 2 - - uid: 33910 + - uid: 37359 components: - type: Transform pos: -25.5,2.5 parent: 2 - - uid: 33914 + - uid: 37360 components: - type: Transform pos: -19.5,9.5 parent: 2 - - uid: 33915 + - uid: 37361 components: - type: Transform pos: -20.5,9.5 parent: 2 - - uid: 33916 + - uid: 37362 components: - type: Transform pos: -21.5,9.5 parent: 2 - - uid: 33917 + - uid: 37363 components: - type: Transform pos: -22.5,9.5 parent: 2 - - uid: 33918 + - uid: 37364 components: - type: Transform pos: -23.5,9.5 parent: 2 - - uid: 33919 + - uid: 37365 components: - type: Transform pos: -24.5,9.5 parent: 2 - - uid: 34422 + - uid: 37366 components: - type: Transform pos: -49.5,-107.5 parent: 2 - - uid: 34423 + - uid: 37367 components: - type: Transform pos: 38.5,-14.5 parent: 2 - - uid: 34424 + - uid: 37368 components: - type: Transform pos: 27.5,-1.5 parent: 2 - - uid: 34425 + - uid: 37369 components: - type: Transform pos: 31.5,-17.5 parent: 2 - - uid: 34426 + - uid: 37370 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-37.5 parent: 2 - - uid: 34427 + - uid: 37371 components: - type: Transform pos: 35.5,-14.5 parent: 2 - - uid: 34428 + - uid: 37372 components: - type: Transform pos: 97.5,-47.5 parent: 2 - - uid: 34429 + - uid: 37373 components: - type: Transform pos: 106.5,-50.5 parent: 2 - - uid: 34430 + - uid: 37374 components: - type: Transform pos: 107.5,-46.5 parent: 2 - - uid: 34431 + - uid: 37375 components: - type: Transform pos: 106.5,-49.5 parent: 2 - - uid: 34432 + - uid: 37376 components: - type: Transform pos: 88.5,-51.5 parent: 2 - - uid: 34434 + - uid: 37377 components: - type: Transform pos: -36.5,-77.5 parent: 2 - - uid: 34435 + - uid: 37378 components: - type: Transform pos: -35.5,-77.5 parent: 2 - - uid: 34436 + - uid: 37379 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-93.5 parent: 2 - - uid: 34437 + - uid: 37380 components: - type: Transform pos: 31.5,-16.5 parent: 2 - - uid: 34438 + - uid: 37381 components: - type: Transform pos: 24.5,5.5 parent: 2 - - uid: 34439 + - uid: 37382 components: - type: Transform pos: 25.5,10.5 parent: 2 - - uid: 34440 + - uid: 37383 components: - type: Transform pos: 24.5,10.5 parent: 2 - - uid: 34441 + - uid: 37384 components: - type: Transform pos: 25.5,5.5 parent: 2 - - uid: 34442 + - uid: 37385 components: - type: Transform pos: 22.5,5.5 parent: 2 - - uid: 34443 + - uid: 37386 components: - type: Transform pos: 25.5,7.5 parent: 2 - - uid: 34444 + - uid: 37387 components: - type: Transform pos: 32.5,16.5 parent: 2 - - uid: 34445 + - uid: 37388 components: - type: Transform pos: 25.5,6.5 parent: 2 - - uid: 34446 + - uid: 37389 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,11.5 parent: 2 - - uid: 34447 + - uid: 37390 components: - type: Transform pos: 35.5,8.5 parent: 2 - - uid: 34448 + - uid: 37391 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,0.5 parent: 2 - - uid: 34449 + - uid: 37392 components: - type: Transform pos: -45.5,-7.5 parent: 2 - - uid: 34450 + - uid: 37393 components: - type: Transform pos: -46.5,-7.5 parent: 2 - - uid: 34451 + - uid: 37394 components: - type: Transform pos: -47.5,-7.5 parent: 2 - - uid: 34452 + - uid: 37395 components: - type: Transform pos: -49.5,-7.5 parent: 2 - - uid: 34453 + - uid: 37396 components: - type: Transform pos: -50.5,-7.5 parent: 2 - - uid: 34454 + - uid: 37397 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-37.5 parent: 2 - - uid: 34455 + - uid: 37398 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-30.5 parent: 2 - - uid: 34456 + - uid: 37399 components: - type: Transform pos: -58.5,-39.5 parent: 2 - - uid: 34457 + - uid: 37400 components: - type: Transform pos: -25.5,-95.5 parent: 2 - - uid: 34458 + - uid: 37401 components: - type: Transform pos: -29.5,-101.5 parent: 2 - - uid: 34459 + - uid: 37402 components: - type: Transform pos: -29.5,-102.5 parent: 2 - - uid: 34460 + - uid: 37403 components: - type: Transform pos: -29.5,-104.5 parent: 2 - - uid: 34461 + - uid: 37404 components: - type: Transform pos: -28.5,-104.5 parent: 2 - - uid: 34462 + - uid: 37405 components: - type: Transform pos: 80.5,-48.5 parent: 2 - - uid: 34463 + - uid: 37406 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-117.5 parent: 2 - - uid: 34464 + - uid: 37407 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-50.5 parent: 2 - - uid: 34465 + - uid: 37408 components: - type: Transform pos: -27.5,-95.5 parent: 2 - - uid: 34466 + - uid: 37409 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-95.5 parent: 2 - - uid: 34467 + - uid: 37410 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-117.5 parent: 2 - - uid: 34468 + - uid: 37411 components: - type: Transform pos: 92.5,-53.5 parent: 2 - - uid: 34469 + - uid: 37412 components: - type: Transform pos: -58.5,-38.5 parent: 2 - - uid: 34470 + - uid: 37413 components: - type: Transform pos: -58.5,-40.5 parent: 2 - - uid: 34471 + - uid: 37414 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-115.5 parent: 2 - - uid: 34472 + - uid: 37415 components: - type: Transform pos: -57.5,-41.5 parent: 2 - - uid: 34473 + - uid: 37416 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-37.5 parent: 2 - - uid: 34474 + - uid: 37417 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,8.5 parent: 2 - - uid: 34475 + - uid: 37418 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,1.5 parent: 2 - - uid: 34476 + - uid: 37419 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-117.5 parent: 2 - - uid: 34477 + - uid: 37420 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,3.5 parent: 2 - - uid: 34478 + - uid: 37421 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,1.5 parent: 2 - - uid: 34479 + - uid: 37422 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,5.5 parent: 2 - - uid: 34480 + - uid: 37423 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,10.5 parent: 2 - - uid: 34481 + - uid: 37424 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,5.5 parent: 2 - - uid: 34482 + - uid: 37425 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,5.5 parent: 2 - - uid: 34483 + - uid: 37426 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,5.5 parent: 2 - - uid: 34484 + - uid: 37427 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,1.5 parent: 2 - - uid: 34485 + - uid: 37428 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,0.5 parent: 2 - - uid: 34486 + - uid: 37429 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-4.5 parent: 2 - - uid: 34487 + - uid: 37430 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-1.5 parent: 2 - - uid: 34488 + - uid: 37431 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-1.5 parent: 2 - - uid: 34489 + - uid: 37432 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-3.5 parent: 2 - - uid: 34490 + - uid: 37433 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-0.5 parent: 2 - - uid: 34491 + - uid: 37434 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,0.5 parent: 2 - - uid: 34492 + - uid: 37435 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-4.5 parent: 2 - - uid: 34493 + - uid: 37436 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-1.5 parent: 2 - - uid: 34494 + - uid: 37437 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-2.5 parent: 2 - - uid: 34495 + - uid: 37438 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,8.5 parent: 2 - - uid: 34496 + - uid: 37439 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,5.5 parent: 2 - - uid: 34497 + - uid: 37440 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,1.5 parent: 2 - - uid: 34498 + - uid: 37441 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,4.5 parent: 2 - - uid: 34499 + - uid: 37442 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-1.5 parent: 2 - - uid: 34500 + - uid: 37443 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-2.5 parent: 2 - - uid: 34501 + - uid: 37444 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,8.5 parent: 2 - - uid: 34502 + - uid: 37445 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,8.5 parent: 2 - - uid: 34503 + - uid: 37446 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,8.5 parent: 2 - - uid: 34504 + - uid: 37447 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,8.5 parent: 2 - - uid: 34505 + - uid: 37448 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,2.5 parent: 2 - - uid: 34506 + - uid: 37449 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,5.5 parent: 2 - - uid: 34507 + - uid: 37450 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,5.5 parent: 2 - - uid: 34508 + - uid: 37451 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,5.5 parent: 2 - - uid: 34509 + - uid: 37452 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,-117.5 parent: 2 - - uid: 34510 + - uid: 37453 components: - type: Transform pos: 32.5,-14.5 parent: 2 - - uid: 34511 + - uid: 37454 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,11.5 parent: 2 - - uid: 34512 + - uid: 37455 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,12.5 parent: 2 - - uid: 34513 + - uid: 37456 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,8.5 parent: 2 - - uid: 34514 + - uid: 37457 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,8.5 parent: 2 - - uid: 34515 + - uid: 37458 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,11.5 parent: 2 - - uid: 34516 + - uid: 37459 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,10.5 parent: 2 - - uid: 34517 + - uid: 37460 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,12.5 parent: 2 - - uid: 34518 + - uid: 37461 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-117.5 parent: 2 - - uid: 34519 + - uid: 37462 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-117.5 parent: 2 - - uid: 34520 + - uid: 37463 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,8.5 parent: 2 - - uid: 34521 + - uid: 37464 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-0.5 parent: 2 - - uid: 34522 + - uid: 37465 components: - type: Transform pos: 42.5,29.5 parent: 2 - - uid: 34524 + - uid: 37466 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,11.5 parent: 2 - - uid: 34526 + - uid: 37467 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-95.5 parent: 2 - - uid: 34527 + - uid: 37468 components: - type: Transform pos: 96.5,-47.5 parent: 2 - - uid: 34528 + - uid: 37469 components: - type: Transform pos: 106.5,-47.5 parent: 2 - - uid: 34529 + - uid: 37470 components: - type: Transform pos: 97.5,-45.5 parent: 2 - - uid: 34530 + - uid: 37471 components: - type: Transform pos: 40.5,29.5 parent: 2 - - uid: 34531 + - uid: 37472 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,24.5 parent: 2 - - uid: 34532 + - uid: 37473 components: - type: Transform pos: 39.5,29.5 parent: 2 - - uid: 34533 + - uid: 37474 components: - type: Transform pos: 91.5,-46.5 parent: 2 - - uid: 34534 + - uid: 37475 components: - type: Transform pos: 102.5,-46.5 parent: 2 - - uid: 34535 + - uid: 37476 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-41.5 parent: 2 - - uid: 34536 + - uid: 37477 components: - type: Transform pos: 36.5,-14.5 parent: 2 - - uid: 34537 + - uid: 37478 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-41.5 parent: 2 - - uid: 34538 + - uid: 37479 components: - type: Transform pos: 35.5,-17.5 parent: 2 - - uid: 34539 + - uid: 37480 components: - type: Transform pos: 28.5,5.5 parent: 2 - - uid: 34540 + - uid: 37481 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,13.5 parent: 2 - - uid: 34541 + - uid: 37482 components: - type: Transform pos: 32.5,8.5 parent: 2 - - uid: 34542 + - uid: 37483 components: - type: Transform pos: 34.5,-21.5 parent: 2 - - uid: 34543 + - uid: 37484 components: - type: Transform pos: 28.5,-1.5 parent: 2 - - uid: 34544 + - uid: 37485 components: - type: Transform pos: 37.5,29.5 parent: 2 - - uid: 34545 + - uid: 37486 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-41.5 parent: 2 - - uid: 34548 + - uid: 37487 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,26.5 parent: 2 - - uid: 34549 + - uid: 37488 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,30.5 parent: 2 - - uid: 34550 + - uid: 37489 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,6.5 parent: 2 - - uid: 34551 + - uid: 37490 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,8.5 parent: 2 - - uid: 34552 + - uid: 37491 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,7.5 parent: 2 - - uid: 34553 + - uid: 37492 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-118.5 parent: 2 - - uid: 34554 + - uid: 37493 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,-118.5 parent: 2 - - uid: 34555 + - uid: 37494 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-118.5 parent: 2 - - uid: 34556 + - uid: 37495 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-117.5 parent: 2 - - uid: 34557 + - uid: 37496 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-116.5 parent: 2 - - uid: 34558 + - uid: 37497 components: - type: Transform pos: -67.5,5.5 parent: 2 - - uid: 34559 + - uid: 37498 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,0.5 parent: 2 - - uid: 34560 + - uid: 37499 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,8.5 parent: 2 - - uid: 34561 + - uid: 37500 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,29.5 parent: 2 - - uid: 34562 + - uid: 37501 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,0.5 parent: 2 - - uid: 34563 + - uid: 37502 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,8.5 parent: 2 - - uid: 34564 + - uid: 37503 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,9.5 parent: 2 - - uid: 34565 + - uid: 37504 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-113.5 parent: 2 - - uid: 34566 + - uid: 37505 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-112.5 parent: 2 - - uid: 34568 + - uid: 37506 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-91.5 parent: 2 - - uid: 34569 + - uid: 37507 components: - type: Transform pos: 91.5,-48.5 parent: 2 - - uid: 34570 + - uid: 37508 components: - type: Transform pos: 97.5,-50.5 parent: 2 - - uid: 34571 + - uid: 37509 components: - type: Transform pos: -73.5,-0.5 parent: 2 - - uid: 34572 + - uid: 37510 components: - type: Transform pos: -72.5,-0.5 parent: 2 - - uid: 34573 + - uid: 37511 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,27.5 parent: 2 - - uid: 34574 + - uid: 37512 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,22.5 parent: 2 - - uid: 34575 + - uid: 37513 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,12.5 parent: 2 - - uid: 34576 + - uid: 37514 components: - type: Transform pos: 90.5,-51.5 parent: 2 - - uid: 34577 + - uid: 37515 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,14.5 parent: 2 - - uid: 34578 + - uid: 37516 components: - type: Transform pos: 43.5,29.5 parent: 2 - - uid: 34579 + - uid: 37517 components: - type: Transform pos: -28.5,-106.5 parent: 2 - - uid: 34580 + - uid: 37518 components: - type: Transform pos: -26.5,-95.5 parent: 2 - - uid: 34582 + - uid: 37519 components: - type: Transform pos: -28.5,-108.5 parent: 2 - - uid: 34583 + - uid: 37520 components: - type: Transform pos: -56.5,-104.5 parent: 2 - - uid: 34584 + - uid: 37521 components: - type: Transform pos: -11.5,-86.5 parent: 2 - - uid: 34585 + - uid: 37522 components: - type: Transform pos: -12.5,-86.5 parent: 2 - - uid: 34586 + - uid: 37523 components: - type: Transform pos: -13.5,-86.5 parent: 2 - - uid: 34587 + - uid: 37524 components: - type: Transform pos: -34.5,-77.5 parent: 2 - - uid: 34588 + - uid: 37525 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-92.5 parent: 2 - - uid: 34589 + - uid: 37526 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-94.5 parent: 2 - - uid: 34590 + - uid: 37527 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,19.5 parent: 2 - - uid: 34591 + - uid: 37528 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,2.5 parent: 2 - - uid: 34592 + - uid: 37529 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,4.5 parent: 2 - - uid: 34593 + - uid: 37530 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,1.5 parent: 2 - - uid: 34594 + - uid: 37531 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,26.5 parent: 2 - - uid: 34595 + - uid: 37532 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,16.5 parent: 2 - - uid: 34596 + - uid: 37533 components: - type: Transform pos: 35.5,-15.5 parent: 2 - - uid: 34597 + - uid: 37534 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,14.5 parent: 2 - - uid: 34598 + - uid: 37535 components: - type: Transform pos: -69.5,6.5 parent: 2 - - uid: 34599 + - uid: 37536 components: - type: Transform pos: -54.5,-93.5 parent: 2 - - uid: 34600 + - uid: 37537 components: - type: Transform pos: -56.5,-93.5 parent: 2 - - uid: 34601 + - uid: 37538 components: - type: Transform pos: -55.5,-93.5 parent: 2 - - uid: 34604 + - uid: 37539 components: - type: Transform pos: 102.5,-50.5 parent: 2 - - uid: 34605 + - uid: 37540 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,26.5 parent: 2 - - uid: 34606 + - uid: 37541 components: - type: Transform pos: -42.5,-121.5 parent: 2 - - uid: 34607 + - uid: 37542 components: - type: Transform pos: 25.5,8.5 parent: 2 - - uid: 34608 + - uid: 37543 components: - type: Transform pos: 36.5,29.5 parent: 2 - - uid: 34609 + - uid: 37544 components: - type: Transform pos: 36.5,30.5 parent: 2 - - uid: 34610 + - uid: 37545 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,26.5 parent: 2 - - uid: 34611 + - uid: 37546 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,26.5 parent: 2 - - uid: 34612 + - uid: 37547 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,26.5 parent: 2 - - uid: 34613 + - uid: 37548 components: - type: Transform pos: 25.5,9.5 parent: 2 - - uid: 34614 + - uid: 37549 components: - type: Transform pos: 33.5,-18.5 parent: 2 - - uid: 34615 + - uid: 37550 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,26.5 parent: 2 - - uid: 34616 + - uid: 37551 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,26.5 parent: 2 - - uid: 34617 + - uid: 37552 components: - type: Transform pos: -36.5,-103.5 parent: 2 - - uid: 34619 + - uid: 37553 components: - type: Transform pos: 105.5,-54.5 parent: 2 - - uid: 34620 + - uid: 37554 components: - type: Transform pos: 102.5,-47.5 parent: 2 - - uid: 34621 + - uid: 37555 components: - type: Transform pos: 97.5,-48.5 parent: 2 - - uid: 34622 + - uid: 37556 components: - type: Transform pos: 91.5,-50.5 parent: 2 - - uid: 34623 + - uid: 37557 components: - type: Transform pos: 98.5,-50.5 parent: 2 - - uid: 34624 + - uid: 37558 components: - type: Transform pos: 39.5,24.5 parent: 2 - - uid: 34630 + - uid: 37559 components: - type: Transform pos: 99.5,-51.5 parent: 2 - - uid: 34631 + - uid: 37560 components: - type: Transform pos: 105.5,-46.5 parent: 2 - - uid: 34632 + - uid: 37561 components: - type: Transform pos: 80.5,-46.5 parent: 2 - - uid: 34633 + - uid: 37562 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-116.5 parent: 2 - - uid: 34634 + - uid: 37563 components: - type: Transform pos: 38.5,24.5 parent: 2 - - uid: 34635 + - uid: 37564 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,4.5 parent: 2 - - uid: 34636 + - uid: 37565 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,4.5 parent: 2 - - uid: 34637 + - uid: 37566 components: - type: Transform rot: 3.141592653589793 rad pos: -68.5,-5.5 parent: 2 - - uid: 34638 + - uid: 37567 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-5.5 parent: 2 - - uid: 34639 + - uid: 37568 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-5.5 parent: 2 - - uid: 34640 + - uid: 37569 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-5.5 parent: 2 - - uid: 34641 + - uid: 37570 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-5.5 parent: 2 - - uid: 34642 + - uid: 37571 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-5.5 parent: 2 - - uid: 34643 + - uid: 37572 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-5.5 parent: 2 - - uid: 34644 + - uid: 37573 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-5.5 parent: 2 - - uid: 34645 + - uid: 37574 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-5.5 parent: 2 - - uid: 34646 + - uid: 37575 components: - type: Transform pos: 36.5,31.5 parent: 2 - - uid: 34647 + - uid: 37576 components: - type: Transform pos: 109.5,-54.5 parent: 2 - - uid: 34648 + - uid: 37577 components: - type: Transform pos: 104.5,-51.5 parent: 2 - - uid: 34651 + - uid: 37578 components: - type: Transform pos: -29.5,-103.5 parent: 2 - - uid: 34652 + - uid: 37579 components: - type: Transform pos: -29.5,-100.5 parent: 2 - - uid: 34653 + - uid: 37580 components: - type: Transform pos: -54.5,-104.5 parent: 2 - - uid: 34654 + - uid: 37581 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,12.5 parent: 2 - - uid: 34655 + - uid: 37582 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,11.5 parent: 2 - - uid: 34656 + - uid: 37583 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,10.5 parent: 2 - - uid: 34657 + - uid: 37584 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,9.5 parent: 2 - - uid: 34658 + - uid: 37585 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,9.5 parent: 2 - - uid: 34659 + - uid: 37586 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,4.5 parent: 2 - - uid: 34660 + - uid: 37587 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,4.5 parent: 2 - - uid: 34661 + - uid: 37588 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,4.5 parent: 2 - - uid: 34662 + - uid: 37589 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,2.5 parent: 2 - - uid: 34663 + - uid: 37590 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,3.5 parent: 2 - - uid: 34664 + - uid: 37591 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,5.5 parent: 2 - - uid: 34665 + - uid: 37592 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,5.5 parent: 2 - - uid: 34666 + - uid: 37593 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,5.5 parent: 2 - - uid: 34667 + - uid: 37594 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,5.5 parent: 2 - - uid: 34668 + - uid: 37595 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,5.5 parent: 2 - - uid: 34669 + - uid: 37596 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,5.5 parent: 2 - - uid: 34670 + - uid: 37597 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-28.5 parent: 2 - - uid: 34671 + - uid: 37598 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-28.5 parent: 2 - - uid: 34672 + - uid: 37599 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-28.5 parent: 2 - - uid: 34673 + - uid: 37600 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-28.5 parent: 2 - - uid: 34674 + - uid: 37601 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-4.5 parent: 2 - - uid: 34675 + - uid: 37602 components: - type: Transform pos: 41.5,26.5 parent: 2 - - uid: 34676 + - uid: 37603 components: - type: Transform pos: 40.5,26.5 parent: 2 - - uid: 34677 + - uid: 37604 components: - type: Transform pos: 42.5,26.5 parent: 2 - - uid: 34678 + - uid: 37605 components: - type: Transform pos: 39.5,26.5 parent: 2 - - uid: 34679 + - uid: 37606 components: - type: Transform pos: 43.5,26.5 parent: 2 - - uid: 34680 + - uid: 37607 components: - type: Transform pos: 38.5,26.5 parent: 2 - - uid: 34681 + - uid: 37608 components: - type: Transform pos: 37.5,26.5 parent: 2 - - uid: 34682 + - uid: 37609 components: - type: Transform pos: 36.5,26.5 parent: 2 - - uid: 34683 + - uid: 37610 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-28.5 parent: 2 - - uid: 34684 + - uid: 37611 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-20.5 parent: 2 - - uid: 34685 + - uid: 37612 components: - type: Transform pos: 36.5,32.5 parent: 2 - - uid: 34686 + - uid: 37613 components: - type: Transform pos: 37.5,32.5 parent: 2 - - uid: 34687 + - uid: 37614 components: - type: Transform pos: 35.5,32.5 parent: 2 - - uid: 34688 + - uid: 37615 components: - type: Transform pos: 107.5,-54.5 parent: 2 - - uid: 34689 + - uid: 37616 components: - type: Transform pos: 35.5,33.5 parent: 2 - - uid: 34690 + - uid: 37617 components: - type: Transform pos: 38.5,32.5 parent: 2 - - uid: 34691 + - uid: 37618 components: - type: Transform pos: 92.5,-47.5 parent: 2 - - uid: 34692 + - uid: 37619 components: - type: Transform pos: 90.5,-46.5 parent: 2 - - uid: 34693 + - uid: 37620 components: - type: Transform pos: 102.5,-51.5 parent: 2 - - uid: 34694 + - uid: 37621 components: - type: Transform pos: 99.5,-53.5 parent: 2 - - uid: 34695 + - uid: 37622 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-95.5 parent: 2 - - uid: 34696 + - uid: 37623 components: - type: Transform pos: 107.5,-52.5 parent: 2 - - uid: 34697 + - uid: 37624 components: - type: Transform pos: 107.5,-51.5 parent: 2 - - uid: 34698 + - uid: 37625 components: - type: Transform pos: 99.5,-50.5 parent: 2 - - uid: 34699 + - uid: 37626 components: - type: Transform pos: 103.5,-51.5 parent: 2 - - uid: 34700 + - uid: 37627 components: - type: Transform pos: 88.5,-54.5 parent: 2 - - uid: 34701 + - uid: 37628 components: - type: Transform pos: 91.5,-47.5 parent: 2 - - uid: 34702 + - uid: 37629 components: - type: Transform pos: 95.5,-47.5 parent: 2 - - uid: 34703 + - uid: 37630 components: - type: Transform pos: 88.5,-53.5 parent: 2 - - uid: 34704 + - uid: 37631 components: - type: Transform pos: 106.5,-48.5 parent: 2 - - uid: 34705 + - uid: 37632 components: - type: Transform pos: 97.5,-49.5 parent: 2 - - uid: 34706 + - uid: 37633 components: - type: Transform pos: 94.5,-47.5 parent: 2 - - uid: 34707 + - uid: 37634 components: - type: Transform pos: 106.5,-54.5 parent: 2 - - uid: 34708 + - uid: 37635 components: - type: Transform pos: 93.5,-47.5 parent: 2 - - uid: 34709 + - uid: 37636 components: - type: Transform pos: 106.5,-46.5 parent: 2 - - uid: 34710 + - uid: 37637 components: - type: Transform pos: 100.5,-46.5 parent: 2 - - uid: 34711 + - uid: 37638 components: - type: Transform pos: 97.5,-46.5 parent: 2 - - uid: 34712 + - uid: 37639 components: - type: Transform pos: 104.5,-46.5 parent: 2 - - uid: 34713 + - uid: 37640 components: - type: Transform pos: 101.5,-46.5 parent: 2 - - uid: 34714 + - uid: 37641 components: - type: Transform pos: 107.5,-53.5 parent: 2 - - uid: 34715 + - uid: 37642 components: - type: Transform pos: 92.5,-51.5 parent: 2 - - uid: 34716 + - uid: 37643 components: - type: Transform pos: 92.5,-54.5 parent: 2 - - uid: 34717 + - uid: 37644 components: - type: Transform pos: 105.5,-51.5 parent: 2 - - uid: 34718 + - uid: 37645 components: - type: Transform pos: 88.5,-50.5 parent: 2 - - uid: 34719 + - uid: 37646 components: - type: Transform pos: 106.5,-51.5 parent: 2 - - uid: 34720 + - uid: 37647 components: - type: Transform pos: 103.5,-46.5 parent: 2 - - uid: 34721 + - uid: 37648 components: - type: Transform pos: 91.5,-51.5 parent: 2 - - uid: 34722 + - uid: 37649 components: - type: Transform pos: 91.5,-49.5 parent: 2 - - uid: 34723 + - uid: 37650 components: - type: Transform pos: 102.5,-48.5 parent: 2 - - uid: 34724 + - uid: 37651 components: - type: Transform pos: 92.5,-52.5 parent: 2 - - uid: 34725 + - uid: 37652 components: - type: Transform pos: 43.5,-61.5 parent: 2 - - uid: 34726 + - uid: 37653 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,-43.5 parent: 2 - - uid: 34727 + - uid: 37654 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-43.5 parent: 2 - - uid: 34728 + - uid: 37655 components: - type: Transform rot: -1.5707963267948966 rad pos: 94.5,-43.5 parent: 2 - - uid: 34729 + - uid: 37656 components: - type: Transform rot: -1.5707963267948966 rad pos: 102.5,-43.5 parent: 2 - - uid: 34730 + - uid: 37657 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-43.5 parent: 2 - - uid: 34731 + - uid: 37658 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-43.5 parent: 2 - - uid: 34732 + - uid: 37659 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-43.5 parent: 2 - - uid: 34733 + - uid: 37660 components: - type: Transform pos: 82.5,-50.5 parent: 2 - - uid: 34734 + - uid: 37661 components: - type: Transform pos: 87.5,-50.5 parent: 2 - - uid: 34735 + - uid: 37662 components: - type: Transform pos: 87.5,-46.5 parent: 2 - - uid: 34736 + - uid: 37663 components: - type: Transform pos: 84.5,-50.5 parent: 2 - - uid: 34737 + - uid: 37664 components: - type: Transform pos: 85.5,-50.5 parent: 2 - - uid: 34738 + - uid: 37665 components: - type: Transform pos: 87.5,-44.5 parent: 2 - - uid: 34739 + - uid: 37666 components: - type: Transform pos: 87.5,-45.5 parent: 2 - - uid: 34740 + - uid: 37667 components: - type: Transform pos: 83.5,-50.5 parent: 2 - - uid: 34741 + - uid: 37668 components: - type: Transform pos: 87.5,-47.5 parent: 2 - - uid: 34742 + - uid: 37669 components: - type: Transform pos: 87.5,-49.5 parent: 2 - - uid: 34743 + - uid: 37670 components: - type: Transform pos: 41.5,-61.5 parent: 2 - - uid: 34744 + - uid: 37671 components: - type: Transform pos: 41.5,-62.5 parent: 2 - - uid: 34745 + - uid: 37672 components: - type: Transform pos: 41.5,-63.5 parent: 2 - - uid: 34746 + - uid: 37673 components: - type: Transform pos: 41.5,-65.5 parent: 2 - - uid: 34748 + - uid: 37674 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-43.5 parent: 2 - - uid: 34749 + - uid: 37675 components: - type: Transform pos: 99.5,-43.5 parent: 2 - - uid: 34750 + - uid: 37676 components: - type: Transform pos: 97.5,-43.5 parent: 2 - - uid: 34751 + - uid: 37677 components: - type: Transform pos: 92.5,-43.5 parent: 2 - - uid: 34752 + - uid: 37678 components: - type: Transform pos: 90.5,-43.5 parent: 2 - - uid: 34753 + - uid: 37679 components: - type: Transform pos: 89.5,-43.5 parent: 2 - - uid: 34755 + - uid: 37680 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-38.5 parent: 2 - - uid: 34756 + - uid: 37681 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-39.5 parent: 2 - - uid: 34757 + - uid: 37682 components: - type: Transform pos: 41.5,-66.5 parent: 2 - - uid: 34758 + - uid: 37683 components: - type: Transform pos: 41.5,-64.5 parent: 2 - - uid: 34759 + - uid: 37684 components: - type: Transform pos: 86.5,-50.5 parent: 2 - - uid: 34760 + - uid: 37685 components: - type: Transform pos: 88.5,-43.5 parent: 2 - - uid: 34761 + - uid: 37686 components: - type: Transform pos: 87.5,-43.5 parent: 2 - - uid: 34762 + - uid: 37687 components: - type: Transform pos: 49.5,-67.5 parent: 2 - - uid: 34763 + - uid: 37688 components: - type: Transform pos: 49.5,-61.5 parent: 2 - - uid: 34764 + - uid: 37689 components: - type: Transform pos: 48.5,-61.5 parent: 2 - - uid: 34765 + - uid: 37690 components: - type: Transform pos: 47.5,-61.5 parent: 2 - - uid: 34766 + - uid: 37691 components: - type: Transform pos: 46.5,-61.5 parent: 2 - - uid: 34767 + - uid: 37692 components: - type: Transform pos: 45.5,-61.5 parent: 2 - - uid: 34768 + - uid: 37693 components: - type: Transform pos: 44.5,-61.5 parent: 2 - - uid: 34769 + - uid: 37694 components: - type: Transform pos: 42.5,-61.5 parent: 2 - - uid: 34770 + - uid: 37695 components: - type: Transform pos: 48.5,-67.5 parent: 2 - - uid: 34771 + - uid: 37696 components: - type: Transform pos: 47.5,-67.5 parent: 2 - - uid: 34772 + - uid: 37697 components: - type: Transform pos: 46.5,-67.5 parent: 2 - - uid: 34773 + - uid: 37698 components: - type: Transform pos: 45.5,-67.5 parent: 2 - - uid: 34774 + - uid: 37699 components: - type: Transform pos: 44.5,-67.5 parent: 2 - - uid: 34775 + - uid: 37700 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-85.5 parent: 2 - - uid: 34776 + - uid: 37701 components: - type: Transform pos: 33.5,31.5 parent: 2 - - uid: 34777 + - uid: 37702 components: - type: Transform pos: 32.5,31.5 parent: 2 - - uid: 34778 + - uid: 37703 components: - type: Transform pos: 6.5,2.5 parent: 2 - - uid: 34779 + - uid: 37704 components: - type: Transform pos: 5.5,2.5 parent: 2 - - uid: 34780 + - uid: 37705 components: - type: Transform pos: 4.5,2.5 parent: 2 - - uid: 34781 + - uid: 37706 components: - type: Transform pos: -9.5,2.5 parent: 2 - - uid: 34782 + - uid: 37707 components: - type: Transform pos: -8.5,2.5 parent: 2 - - uid: 34783 + - uid: 37708 components: - type: Transform pos: -1.5,5.5 parent: 2 - - uid: 34784 + - uid: 37709 components: - type: Transform pos: -1.5,6.5 parent: 2 - - uid: 34785 + - uid: 37710 components: - type: Transform pos: -7.5,5.5 parent: 2 - - uid: 34786 + - uid: 37711 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,1.5 parent: 2 - - uid: 34787 + - uid: 37712 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,0.5 parent: 2 - - uid: 34788 + - uid: 37713 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 2 - - uid: 34789 + - uid: 37714 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,2.5 parent: 2 - - uid: 34790 + - uid: 37715 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,1.5 parent: 2 - - uid: 34791 + - uid: 37716 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,0.5 parent: 2 - - uid: 34792 + - uid: 37717 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-0.5 parent: 2 - - uid: 34793 + - uid: 37718 components: - type: Transform pos: 19.5,2.5 parent: 2 - - uid: 34794 + - uid: 37719 components: - type: Transform pos: 19.5,1.5 parent: 2 - - uid: 34795 + - uid: 37720 components: - type: Transform pos: 21.5,1.5 parent: 2 - - uid: 34796 + - uid: 37721 components: - type: Transform pos: 21.5,0.5 parent: 2 - - uid: 34797 + - uid: 37722 components: - type: Transform pos: 22.5,0.5 parent: 2 - - uid: 34798 + - uid: 37723 components: - type: Transform pos: 23.5,-0.5 parent: 2 - - uid: 34799 + - uid: 37724 components: - type: Transform pos: 24.5,-0.5 parent: 2 - - uid: 34800 + - uid: 37725 components: - type: Transform pos: 25.5,-0.5 parent: 2 - - uid: 34801 + - uid: 37726 components: - type: Transform pos: 25.5,-1.5 parent: 2 - - uid: 34802 + - uid: 37727 components: - type: Transform pos: 28.5,-3.5 parent: 2 - - uid: 34803 + - uid: 37728 components: - type: Transform pos: 29.5,-3.5 parent: 2 - - uid: 34804 + - uid: 37729 components: - type: Transform pos: 29.5,-6.5 parent: 2 - - uid: 34805 + - uid: 37730 components: - type: Transform pos: 30.5,-6.5 parent: 2 - - uid: 34806 + - uid: 37731 components: - type: Transform pos: 30.5,-8.5 parent: 2 - - uid: 34807 + - uid: 37732 components: - type: Transform pos: 31.5,-8.5 parent: 2 - - uid: 34808 + - uid: 37733 components: - type: Transform pos: 31.5,-9.5 parent: 2 - - uid: 34809 + - uid: 37734 components: - type: Transform pos: 31.5,-10.5 parent: 2 - - uid: 34810 + - uid: 37735 components: - type: Transform pos: 21.5,2.5 parent: 2 - - uid: 34811 + - uid: 37736 components: - type: Transform pos: 21.5,3.5 parent: 2 - - uid: 34812 + - uid: 37737 components: - type: Transform pos: 21.5,4.5 parent: 2 - - uid: 34813 + - uid: 37738 components: - type: Transform pos: 21.5,5.5 parent: 2 - - uid: 34814 + - uid: 37739 components: - type: Transform pos: 21.5,6.5 parent: 2 - - uid: 34815 + - uid: 37740 components: - type: Transform pos: 21.5,7.5 parent: 2 - - uid: 34816 + - uid: 37741 components: - type: Transform pos: 35.5,-16.5 parent: 2 - - uid: 34817 + - uid: 37742 components: - type: Transform pos: 28.5,15.5 parent: 2 - - uid: 34818 + - uid: 37743 components: - type: Transform pos: 29.5,15.5 parent: 2 - - uid: 34819 + - uid: 37744 components: - type: Transform pos: 31.5,15.5 parent: 2 - - uid: 34820 + - uid: 37745 components: - type: Transform pos: 32.5,15.5 parent: 2 - - uid: 34821 + - uid: 37746 components: - type: Transform pos: 39.5,15.5 parent: 2 - - uid: 34822 + - uid: 37747 components: - type: Transform pos: 39.5,14.5 parent: 2 - - uid: 34823 + - uid: 37748 components: - type: Transform pos: 39.5,13.5 parent: 2 - - uid: 34824 + - uid: 37749 components: - type: Transform pos: 39.5,12.5 parent: 2 - - uid: 34825 + - uid: 37750 components: - type: Transform pos: 39.5,11.5 parent: 2 - - uid: 34826 + - uid: 37751 components: - type: Transform pos: 39.5,10.5 parent: 2 - - uid: 34827 + - uid: 37752 components: - type: Transform pos: 39.5,9.5 parent: 2 - - uid: 34828 + - uid: 37753 components: - type: Transform pos: 39.5,8.5 parent: 2 - - uid: 34829 + - uid: 37754 components: - type: Transform pos: 39.5,16.5 parent: 2 - - uid: 34830 + - uid: 37755 components: - type: Transform pos: 38.5,16.5 parent: 2 - - uid: 34831 + - uid: 37756 components: - type: Transform pos: 37.5,16.5 parent: 2 - - uid: 34832 + - uid: 37757 components: - type: Transform pos: 36.5,16.5 parent: 2 - - uid: 34833 + - uid: 37758 components: - type: Transform pos: 35.5,16.5 parent: 2 - - uid: 34834 + - uid: 37759 components: - type: Transform pos: 36.5,8.5 parent: 2 - - uid: 34835 + - uid: 37760 components: - type: Transform pos: 37.5,8.5 parent: 2 - - uid: 34836 + - uid: 37761 components: - type: Transform pos: 38.5,8.5 parent: 2 - - uid: 34837 + - uid: 37762 components: - type: Transform pos: 22.5,10.5 parent: 2 - - uid: 34838 + - uid: 37763 components: - type: Transform pos: 38.5,-8.5 parent: 2 - - uid: 34839 + - uid: 37764 components: - type: Transform pos: 38.5,-6.5 parent: 2 - - uid: 34840 + - uid: 37765 components: - type: Transform pos: 38.5,-10.5 parent: 2 - - uid: 34841 + - uid: 37766 components: - type: Transform pos: 39.5,-10.5 parent: 2 - - uid: 34842 + - uid: 37767 components: - type: Transform pos: 39.5,-11.5 parent: 2 - - uid: 34843 + - uid: 37768 components: - type: Transform pos: 39.5,-13.5 parent: 2 - - uid: 34844 + - uid: 37769 components: - type: Transform pos: 39.5,-14.5 parent: 2 - - uid: 34845 + - uid: 37770 components: - type: Transform pos: 39.5,-15.5 parent: 2 - - uid: 34846 + - uid: 37771 components: - type: Transform pos: 39.5,-16.5 parent: 2 - - uid: 34847 + - uid: 37772 components: - type: Transform pos: 39.5,-17.5 parent: 2 - - uid: 34848 + - uid: 37773 components: - type: Transform pos: 39.5,-18.5 parent: 2 - - uid: 34849 + - uid: 37774 components: - type: Transform pos: 38.5,-18.5 parent: 2 - - uid: 34850 + - uid: 37775 components: - type: Transform pos: 37.5,-18.5 parent: 2 - - uid: 34851 + - uid: 37776 components: - type: Transform pos: 36.5,-18.5 parent: 2 - - uid: 34852 + - uid: 37777 components: - type: Transform pos: 35.5,-18.5 parent: 2 - - uid: 34853 + - uid: 37778 components: - type: Transform pos: 34.5,-18.5 parent: 2 - - uid: 34854 + - uid: 37779 components: - type: Transform pos: 31.5,-19.5 parent: 2 - - uid: 34855 + - uid: 37780 components: - type: Transform pos: 32.5,-18.5 parent: 2 - - uid: 34856 + - uid: 37781 components: - type: Transform pos: 31.5,-18.5 parent: 2 - - uid: 34857 + - uid: 37782 components: - type: Transform pos: 31.5,-21.5 parent: 2 - - uid: 34858 + - uid: 37783 components: - type: Transform pos: -62.5,-41.5 parent: 2 - - uid: 34859 + - uid: 37784 components: - type: Transform pos: 31.5,-22.5 parent: 2 - - uid: 34860 + - uid: 37785 components: - type: Transform pos: 32.5,-22.5 parent: 2 - - uid: 34861 + - uid: 37786 components: - type: Transform pos: 33.5,-22.5 parent: 2 - - uid: 34862 + - uid: 37787 components: - type: Transform pos: 34.5,-22.5 parent: 2 - - uid: 34863 + - uid: 37788 components: - type: Transform pos: 34.5,-20.5 parent: 2 - - uid: 34864 + - uid: 37789 components: - type: Transform pos: 34.5,-19.5 parent: 2 - - uid: 34874 + - uid: 37790 components: - type: Transform pos: -14.5,-84.5 parent: 2 - - uid: 34875 + - uid: 37791 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-72.5 parent: 2 - - uid: 34879 + - uid: 37792 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-76.5 parent: 2 - - uid: 34880 + - uid: 37793 components: - type: Transform pos: -14.5,-85.5 parent: 2 - - uid: 34881 + - uid: 37794 components: - type: Transform pos: 23.5,-80.5 parent: 2 - - uid: 34882 + - uid: 37795 components: - type: Transform pos: 23.5,-81.5 parent: 2 - - uid: 34884 + - uid: 37796 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,19.5 parent: 2 - - uid: 34885 + - uid: 37797 components: - type: Transform pos: -47.5,-79.5 parent: 2 - - uid: 34886 + - uid: 37798 components: - type: Transform pos: 23.5,10.5 parent: 2 - - uid: 34887 + - uid: 37799 components: - type: Transform pos: 34.5,-14.5 parent: 2 - - uid: 34888 + - uid: 37800 components: - type: Transform pos: 78.5,-30.5 parent: 2 - - uid: 34889 + - uid: 37801 components: - type: Transform pos: 72.5,-30.5 parent: 2 - - uid: 34890 + - uid: 37802 components: - type: Transform pos: 79.5,-30.5 parent: 2 - - uid: 34891 + - uid: 37803 components: - type: Transform pos: 68.5,-23.5 parent: 2 - - uid: 34892 + - uid: 37804 components: - type: Transform pos: 70.5,-23.5 parent: 2 - - uid: 34893 + - uid: 37805 components: - type: Transform pos: 72.5,-25.5 parent: 2 - - uid: 34894 + - uid: 37806 components: - type: Transform pos: 71.5,-23.5 parent: 2 - - uid: 34895 + - uid: 37807 components: - type: Transform pos: 74.5,-25.5 parent: 2 - - uid: 34896 + - uid: 37808 components: - type: Transform pos: 73.5,-25.5 parent: 2 - - uid: 34900 + - uid: 37809 components: - type: Transform pos: 75.5,-25.5 parent: 2 - - uid: 34901 + - uid: 37810 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,19.5 parent: 2 - - uid: 34902 + - uid: 37811 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,19.5 parent: 2 - - uid: 34903 + - uid: 37812 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,19.5 parent: 2 - - uid: 34915 + - uid: 37813 components: - type: Transform pos: 61.5,-27.5 parent: 2 - - uid: 34916 + - uid: 37814 components: - type: Transform pos: 61.5,-26.5 parent: 2 - - uid: 34917 + - uid: 37815 components: - type: Transform pos: 61.5,-25.5 parent: 2 - - uid: 34918 + - uid: 37816 components: - type: Transform pos: 61.5,-24.5 parent: 2 - - uid: 34919 + - uid: 37817 components: - type: Transform pos: 61.5,-30.5 parent: 2 - - uid: 34920 + - uid: 37818 components: - type: Transform pos: 70.5,-30.5 parent: 2 - - uid: 34921 + - uid: 37819 components: - type: Transform pos: 44.5,-50.5 parent: 2 - - uid: 34922 + - uid: 37820 components: - type: Transform pos: 62.5,-30.5 parent: 2 - - uid: 34923 + - uid: 37821 components: - type: Transform pos: 61.5,-28.5 parent: 2 - - uid: 34924 + - uid: 37822 components: - type: Transform pos: 61.5,-29.5 parent: 2 - - uid: 34925 + - uid: 37823 components: - type: Transform pos: 71.5,-24.5 parent: 2 - - uid: 34926 + - uid: 37824 components: - type: Transform pos: 71.5,-25.5 parent: 2 - - uid: 34927 + - uid: 37825 components: - type: Transform pos: 71.5,-26.5 parent: 2 - - uid: 34928 + - uid: 37826 components: - type: Transform pos: 71.5,-27.5 parent: 2 - - uid: 34929 + - uid: 37827 components: - type: Transform pos: 47.5,-30.5 parent: 2 - - uid: 34930 + - uid: 37828 components: - type: Transform pos: 66.5,-23.5 parent: 2 - - uid: 34931 + - uid: 37829 components: - type: Transform pos: 62.5,-23.5 parent: 2 - - uid: 34932 + - uid: 37830 components: - type: Transform pos: 61.5,-23.5 parent: 2 - - uid: 34933 + - uid: 37831 components: - type: Transform pos: 64.5,-23.5 parent: 2 - - uid: 34934 + - uid: 37832 components: - type: Transform pos: 63.5,-23.5 parent: 2 - - uid: 34935 + - uid: 37833 components: - type: Transform pos: 65.5,-23.5 parent: 2 - - uid: 34936 + - uid: 37834 components: - type: Transform pos: 58.5,-30.5 parent: 2 - - uid: 34937 + - uid: 37835 components: - type: Transform pos: 59.5,-30.5 parent: 2 - - uid: 34938 + - uid: 37836 components: - type: Transform pos: 56.5,-30.5 parent: 2 - - uid: 34939 + - uid: 37837 components: - type: Transform pos: 57.5,-30.5 parent: 2 - - uid: 34940 + - uid: 37838 components: - type: Transform pos: 55.5,-30.5 parent: 2 - - uid: 34941 + - uid: 37839 components: - type: Transform pos: 80.5,-26.5 parent: 2 - - uid: 34942 + - uid: 37840 components: - type: Transform pos: 71.5,-28.5 parent: 2 - - uid: 34943 + - uid: 37841 components: - type: Transform pos: 71.5,-29.5 parent: 2 - - uid: 34944 + - uid: 37842 components: - type: Transform pos: 71.5,-30.5 parent: 2 - - uid: 34945 + - uid: 37843 components: - type: Transform pos: 50.5,-30.5 parent: 2 - - uid: 34946 + - uid: 37844 components: - type: Transform pos: 49.5,-30.5 parent: 2 - - uid: 34947 + - uid: 37845 components: - type: Transform pos: 48.5,-30.5 parent: 2 - - uid: 34948 + - uid: 37846 components: - type: Transform pos: 80.5,-30.5 parent: 2 - - uid: 34949 + - uid: 37847 components: - type: Transform pos: 80.5,-29.5 parent: 2 - - uid: 34950 + - uid: 37848 components: - type: Transform pos: 67.5,-23.5 parent: 2 - - uid: 34957 + - uid: 37849 components: - type: Transform pos: 31.5,-25.5 parent: 2 - - uid: 34958 + - uid: 37850 components: - type: Transform pos: 31.5,-23.5 parent: 2 - - uid: 34959 + - uid: 37851 components: - type: Transform pos: 46.5,-28.5 parent: 2 - - uid: 34960 + - uid: 37852 components: - type: Transform pos: 46.5,-29.5 parent: 2 - - uid: 34961 + - uid: 37853 components: - type: Transform pos: 46.5,-30.5 parent: 2 - - uid: 34962 + - uid: 37854 components: - type: Transform pos: 84.5,-20.5 parent: 2 - - uid: 34963 + - uid: 37855 components: - type: Transform pos: 84.5,-24.5 parent: 2 - - uid: 34964 + - uid: 37856 components: - type: Transform pos: 31.5,-30.5 parent: 2 - - uid: 34966 + - uid: 37857 components: - type: Transform pos: 42.5,-30.5 parent: 2 - - uid: 34967 + - uid: 37858 components: - type: Transform pos: 41.5,-30.5 parent: 2 - - uid: 34968 + - uid: 37859 components: - type: Transform pos: 40.5,-30.5 parent: 2 - - uid: 34969 + - uid: 37860 components: - type: Transform pos: 39.5,-30.5 parent: 2 - - uid: 34970 + - uid: 37861 components: - type: Transform pos: 38.5,-30.5 parent: 2 - - uid: 34976 + - uid: 37862 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-79.5 parent: 2 - - uid: 34977 + - uid: 37863 components: - type: Transform pos: 37.5,-30.5 parent: 2 - - uid: 34978 + - uid: 37864 components: - type: Transform pos: 36.5,-30.5 parent: 2 - - uid: 34979 + - uid: 37865 components: - type: Transform pos: 35.5,-30.5 parent: 2 - - uid: 34980 + - uid: 37866 components: - type: Transform pos: 34.5,-30.5 parent: 2 - - uid: 34981 + - uid: 37867 components: - type: Transform pos: 33.5,-30.5 parent: 2 - - uid: 34982 + - uid: 37868 components: - type: Transform pos: 32.5,-30.5 parent: 2 - - uid: 34983 + - uid: 37869 components: - type: Transform pos: 80.5,-34.5 parent: 2 - - uid: 34984 + - uid: 37870 components: - type: Transform pos: 79.5,-34.5 parent: 2 - - uid: 34985 + - uid: 37871 components: - type: Transform pos: 77.5,-34.5 parent: 2 - - uid: 34986 + - uid: 37872 components: - type: Transform pos: 76.5,-34.5 parent: 2 - - uid: 34987 + - uid: 37873 components: - type: Transform pos: 75.5,-34.5 parent: 2 - - uid: 34988 + - uid: 37874 components: - type: Transform pos: 74.5,-34.5 parent: 2 - - uid: 34989 + - uid: 37875 components: - type: Transform pos: 73.5,-34.5 parent: 2 - - uid: 34990 + - uid: 37876 components: - type: Transform pos: 72.5,-34.5 parent: 2 - - uid: 34991 + - uid: 37877 components: - type: Transform pos: 71.5,-34.5 parent: 2 - - uid: 34992 + - uid: 37878 components: - type: Transform pos: 80.5,-35.5 parent: 2 - - uid: 34993 + - uid: 37879 components: - type: Transform pos: 80.5,-36.5 parent: 2 - - uid: 34994 + - uid: 37880 components: - type: Transform pos: 80.5,-37.5 parent: 2 - - uid: 34995 + - uid: 37881 components: - type: Transform pos: 80.5,-38.5 parent: 2 - - uid: 34996 + - uid: 37882 components: - type: Transform pos: 84.5,-38.5 parent: 2 - - uid: 34997 + - uid: 37883 components: - type: Transform pos: 84.5,-42.5 parent: 2 - - uid: 34998 + - uid: 37884 components: - type: Transform pos: 80.5,-42.5 parent: 2 - - uid: 34999 + - uid: 37885 components: - type: Transform pos: 80.5,-41.5 parent: 2 - - uid: 35000 + - uid: 37886 components: - type: Transform pos: 80.5,-40.5 parent: 2 - - uid: 35001 + - uid: 37887 components: - type: Transform pos: 80.5,-39.5 parent: 2 - - uid: 35002 + - uid: 37888 components: - type: Transform pos: 77.5,-42.5 parent: 2 - - uid: 35003 + - uid: 37889 components: - type: Transform pos: 73.5,-41.5 parent: 2 - - uid: 35004 + - uid: 37890 components: - type: Transform pos: 73.5,-40.5 parent: 2 - - uid: 35005 + - uid: 37891 components: - type: Transform pos: 74.5,-40.5 parent: 2 - - uid: 35006 + - uid: 37892 components: - type: Transform pos: 75.5,-40.5 parent: 2 - - uid: 35007 + - uid: 37893 components: - type: Transform pos: 76.5,-40.5 parent: 2 - - uid: 35008 + - uid: 37894 components: - type: Transform pos: 77.5,-40.5 parent: 2 - - uid: 35009 + - uid: 37895 components: - type: Transform pos: 73.5,-39.5 parent: 2 - - uid: 35010 + - uid: 37896 components: - type: Transform pos: 73.5,-38.5 parent: 2 - - uid: 35011 + - uid: 37897 components: - type: Transform pos: 74.5,-38.5 parent: 2 - - uid: 35012 + - uid: 37898 components: - type: Transform pos: 75.5,-38.5 parent: 2 - - uid: 35013 + - uid: 37899 components: - type: Transform pos: 76.5,-38.5 parent: 2 - - uid: 35014 + - uid: 37900 components: - type: Transform pos: 73.5,-37.5 parent: 2 - - uid: 35015 + - uid: 37901 components: - type: Transform pos: 73.5,-36.5 parent: 2 - - uid: 35016 + - uid: 37902 components: - type: Transform pos: 74.5,-36.5 parent: 2 - - uid: 35017 + - uid: 37903 components: - type: Transform pos: 75.5,-36.5 parent: 2 - - uid: 35018 + - uid: 37904 components: - type: Transform pos: 76.5,-36.5 parent: 2 - - uid: 35019 + - uid: 37905 components: - type: Transform pos: 73.5,-35.5 parent: 2 - - uid: 35021 + - uid: 37906 components: - type: Transform pos: 66.5,-34.5 parent: 2 - - uid: 35022 + - uid: 37907 components: - type: Transform pos: 70.5,-34.5 parent: 2 - - uid: 35023 + - uid: 37908 components: - type: Transform pos: 61.5,-34.5 parent: 2 - - uid: 35024 + - uid: 37909 components: - type: Transform pos: 60.5,-34.5 parent: 2 - - uid: 35025 + - uid: 37910 components: - type: Transform pos: 60.5,-35.5 parent: 2 - - uid: 35026 + - uid: 37911 components: - type: Transform pos: 60.5,-36.5 parent: 2 - - uid: 35027 + - uid: 37912 components: - type: Transform pos: 60.5,-37.5 parent: 2 - - uid: 35028 + - uid: 37913 components: - type: Transform pos: 60.5,-38.5 parent: 2 - - uid: 35029 + - uid: 37914 components: - type: Transform pos: 60.5,-40.5 parent: 2 - - uid: 35030 + - uid: 37915 components: - type: Transform pos: 60.5,-41.5 parent: 2 - - uid: 35031 + - uid: 37916 components: - type: Transform pos: 60.5,-42.5 parent: 2 - - uid: 35032 + - uid: 37917 components: - type: Transform pos: 60.5,-43.5 parent: 2 - - uid: 35033 + - uid: 37918 components: - type: Transform pos: 62.5,-43.5 parent: 2 - - uid: 35034 + - uid: 37919 components: - type: Transform pos: 63.5,-43.5 parent: 2 - - uid: 35035 + - uid: 37920 components: - type: Transform pos: 64.5,-43.5 parent: 2 - - uid: 35036 + - uid: 37921 components: - type: Transform pos: 65.5,-43.5 parent: 2 - - uid: 35037 + - uid: 37922 components: - type: Transform pos: 66.5,-43.5 parent: 2 - - uid: 35038 + - uid: 37923 components: - type: Transform pos: 67.5,-43.5 parent: 2 - - uid: 35039 + - uid: 37924 components: - type: Transform pos: 63.5,-44.5 parent: 2 - - uid: 35040 + - uid: 37925 components: - type: Transform pos: 63.5,-45.5 parent: 2 - - uid: 35041 + - uid: 37926 components: - type: Transform pos: 63.5,-47.5 parent: 2 - - uid: 35042 + - uid: 37927 components: - type: Transform pos: 59.5,-34.5 parent: 2 - - uid: 35043 + - uid: 37928 components: - type: Transform pos: 58.5,-34.5 parent: 2 - - uid: 35044 + - uid: 37929 components: - type: Transform pos: 31.5,-82.5 parent: 2 - - uid: 35045 + - uid: 37930 components: - type: Transform pos: 31.5,-81.5 parent: 2 - - uid: 35046 + - uid: 37931 components: - type: Transform pos: 48.5,-34.5 parent: 2 - - uid: 35047 + - uid: 37932 components: - type: Transform pos: 47.5,-34.5 parent: 2 - - uid: 35048 + - uid: 37933 components: - type: Transform pos: 46.5,-34.5 parent: 2 - - uid: 35049 + - uid: 37934 components: - type: Transform pos: 46.5,-43.5 parent: 2 - - uid: 35050 + - uid: 37935 components: - type: Transform pos: 47.5,-43.5 parent: 2 - - uid: 35051 + - uid: 37936 components: - type: Transform pos: 48.5,-43.5 parent: 2 - - uid: 35052 + - uid: 37937 components: - type: Transform pos: 49.5,-43.5 parent: 2 - - uid: 35053 + - uid: 37938 components: - type: Transform pos: 50.5,-43.5 parent: 2 - - uid: 35054 + - uid: 37939 components: - type: Transform pos: 51.5,-43.5 parent: 2 - - uid: 35055 + - uid: 37940 components: - type: Transform pos: 52.5,-43.5 parent: 2 - - uid: 35056 + - uid: 37941 components: - type: Transform pos: 53.5,-43.5 parent: 2 - - uid: 35057 + - uid: 37942 components: - type: Transform pos: 54.5,-43.5 parent: 2 - - uid: 35058 + - uid: 37943 components: - type: Transform pos: 55.5,-43.5 parent: 2 - - uid: 35059 + - uid: 37944 components: - type: Transform pos: 56.5,-43.5 parent: 2 - - uid: 35060 + - uid: 37945 components: - type: Transform pos: 57.5,-43.5 parent: 2 - - uid: 35061 + - uid: 37946 components: - type: Transform pos: 58.5,-43.5 parent: 2 - - uid: 35062 + - uid: 37947 components: - type: Transform pos: 59.5,-43.5 parent: 2 - - uid: 35066 + - uid: 37948 components: - type: Transform pos: 46.5,-52.5 parent: 2 - - uid: 35067 + - uid: 37949 components: - type: Transform pos: 46.5,-51.5 parent: 2 - - uid: 35068 + - uid: 37950 components: - type: Transform pos: 46.5,-50.5 parent: 2 - - uid: 35069 + - uid: 37951 components: - type: Transform pos: 46.5,-49.5 parent: 2 - - uid: 35070 + - uid: 37952 components: - type: Transform pos: 46.5,-45.5 parent: 2 - - uid: 35071 + - uid: 37953 components: - type: Transform pos: 47.5,-52.5 parent: 2 - - uid: 35072 + - uid: 37954 components: - type: Transform pos: 47.5,-53.5 parent: 2 - - uid: 35073 + - uid: 37955 components: - type: Transform pos: 47.5,-54.5 parent: 2 - - uid: 35074 + - uid: 37956 components: - type: Transform pos: 41.5,-54.5 parent: 2 - - uid: 35075 + - uid: 37957 components: - type: Transform pos: 47.5,-55.5 parent: 2 - - uid: 35076 + - uid: 37958 components: - type: Transform pos: 46.5,-55.5 parent: 2 - - uid: 35077 + - uid: 37959 components: - type: Transform pos: 44.5,-55.5 parent: 2 - - uid: 35078 + - uid: 37960 components: - type: Transform pos: 42.5,-55.5 parent: 2 - - uid: 35079 + - uid: 37961 components: - type: Transform pos: 41.5,-55.5 parent: 2 - - uid: 35080 + - uid: 37962 components: - type: Transform pos: 34.5,-55.5 parent: 2 - - uid: 35081 + - uid: 37963 components: - type: Transform pos: 47.5,-49.5 parent: 2 - - uid: 35086 + - uid: 37964 components: - type: Transform pos: 51.5,-49.5 parent: 2 - - uid: 35100 + - uid: 37965 components: - type: Transform pos: 42.5,-60.5 parent: 2 - - uid: 35101 + - uid: 37966 components: - type: Transform pos: 42.5,-58.5 parent: 2 - - uid: 35102 + - uid: 37967 components: - type: Transform pos: 42.5,-57.5 parent: 2 - - uid: 35103 + - uid: 37968 components: - type: Transform pos: 42.5,-56.5 parent: 2 - - uid: 35104 + - uid: 37969 components: - type: Transform pos: 41.5,-70.5 parent: 2 - - uid: 35105 + - uid: 37970 components: - type: Transform pos: 42.5,-70.5 parent: 2 - - uid: 35107 + - uid: 37971 components: - type: Transform pos: 39.5,-56.5 parent: 2 - - uid: 35108 + - uid: 37972 components: - type: Transform pos: 39.5,-57.5 parent: 2 - - uid: 35109 + - uid: 37973 components: - type: Transform pos: 39.5,-58.5 parent: 2 - - uid: 35110 + - uid: 37974 components: - type: Transform pos: 39.5,-59.5 parent: 2 - - uid: 35111 + - uid: 37975 components: - type: Transform pos: 39.5,-60.5 parent: 2 - - uid: 35112 + - uid: 37976 components: - type: Transform pos: 39.5,-61.5 parent: 2 - - uid: 35113 + - uid: 37977 components: - type: Transform pos: 39.5,-62.5 parent: 2 - - uid: 35114 + - uid: 37978 components: - type: Transform pos: 39.5,-63.5 parent: 2 - - uid: 35115 + - uid: 37979 components: - type: Transform pos: 39.5,-64.5 parent: 2 - - uid: 35116 + - uid: 37980 components: - type: Transform pos: 39.5,-65.5 parent: 2 - - uid: 35117 + - uid: 37981 components: - type: Transform pos: 39.5,-66.5 parent: 2 - - uid: 35118 + - uid: 37982 components: - type: Transform pos: 38.5,-66.5 parent: 2 - - uid: 35119 + - uid: 37983 components: - type: Transform pos: 38.5,-67.5 parent: 2 - - uid: 35120 + - uid: 37984 components: - type: Transform pos: 38.5,-68.5 parent: 2 - - uid: 35121 + - uid: 37985 components: - type: Transform pos: 38.5,-69.5 parent: 2 - - uid: 35122 + - uid: 37986 components: - type: Transform pos: 38.5,-70.5 parent: 2 - - uid: 35123 + - uid: 37987 components: - type: Transform pos: 36.5,-66.5 parent: 2 - - uid: 35124 + - uid: 37988 components: - type: Transform pos: 38.5,-74.5 parent: 2 - - uid: 35125 + - uid: 37989 components: - type: Transform pos: 37.5,-74.5 parent: 2 - - uid: 35126 + - uid: 37990 components: - type: Transform pos: 36.5,-74.5 parent: 2 - - uid: 35127 + - uid: 37991 components: - type: Transform pos: 35.5,-74.5 parent: 2 - - uid: 35128 + - uid: 37992 components: - type: Transform pos: 34.5,-74.5 parent: 2 - - uid: 35129 + - uid: 37993 components: - type: Transform pos: 38.5,-71.5 parent: 2 - - uid: 35130 + - uid: 37994 components: - type: Transform pos: 38.5,-73.5 parent: 2 - - uid: 35131 + - uid: 37995 components: - type: Transform pos: 37.5,-70.5 parent: 2 - - uid: 35132 + - uid: 37996 components: - type: Transform pos: 35.5,-70.5 parent: 2 - - uid: 35133 + - uid: 37997 components: - type: Transform pos: 34.5,-70.5 parent: 2 - - uid: 35134 + - uid: 37998 components: - type: Transform pos: 33.5,-70.5 parent: 2 - - uid: 35135 + - uid: 37999 components: - type: Transform pos: 32.5,-70.5 parent: 2 - - uid: 35136 + - uid: 38000 components: - type: Transform pos: 32.5,-71.5 parent: 2 - - uid: 35137 + - uid: 38001 components: - type: Transform pos: 32.5,-72.5 parent: 2 - - uid: 35138 + - uid: 38002 components: - type: Transform pos: 32.5,-73.5 parent: 2 - - uid: 35139 + - uid: 38003 components: - type: Transform pos: 32.5,-74.5 parent: 2 - - uid: 35140 + - uid: 38004 components: - type: Transform pos: 33.5,-74.5 parent: 2 - - uid: 35141 + - uid: 38005 components: - type: Transform pos: 31.5,-70.5 parent: 2 - - uid: 35142 + - uid: 38006 components: - type: Transform pos: 31.5,-69.5 parent: 2 - - uid: 35143 + - uid: 38007 components: - type: Transform pos: 31.5,-68.5 parent: 2 - - uid: 35144 + - uid: 38008 components: - type: Transform pos: 31.5,-67.5 parent: 2 - - uid: 35145 + - uid: 38009 components: - type: Transform pos: 31.5,-66.5 parent: 2 - - uid: 35146 + - uid: 38010 components: - type: Transform pos: 33.5,-66.5 parent: 2 - - uid: 35147 + - uid: 38011 components: - type: Transform pos: 34.5,-66.5 parent: 2 - - uid: 35148 + - uid: 38012 components: - type: Transform pos: 35.5,-66.5 parent: 2 - - uid: 35149 + - uid: 38013 components: - type: Transform pos: 31.5,-63.5 parent: 2 - - uid: 35150 + - uid: 38014 components: - type: Transform pos: 31.5,-59.5 parent: 2 - - uid: 35151 + - uid: 38015 components: - type: Transform pos: 31.5,-56.5 parent: 2 - - uid: 35152 + - uid: 38016 components: - type: Transform pos: 30.5,-70.5 parent: 2 - - uid: 35153 + - uid: 38017 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,-66.5 parent: 2 - - uid: 35154 + - uid: 38018 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-85.5 parent: 2 - - uid: 35155 + - uid: 38019 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-85.5 parent: 2 - - uid: 35156 + - uid: 38020 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-85.5 parent: 2 - - uid: 35157 + - uid: 38021 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-80.5 parent: 2 - - uid: 35158 + - uid: 38022 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-78.5 parent: 2 - - uid: 35159 + - uid: 38023 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-80.5 parent: 2 - - uid: 35160 + - uid: 38024 components: - type: Transform pos: 30.5,-72.5 parent: 2 - - uid: 35161 + - uid: 38025 components: - type: Transform pos: 13.5,-76.5 parent: 2 - - uid: 35162 + - uid: 38026 components: - type: Transform pos: 13.5,-77.5 parent: 2 - - uid: 35163 + - uid: 38027 components: - type: Transform pos: 13.5,-78.5 parent: 2 - - uid: 35164 + - uid: 38028 components: - type: Transform pos: 13.5,-79.5 parent: 2 - - uid: 35165 + - uid: 38029 components: - type: Transform pos: 13.5,-80.5 parent: 2 - - uid: 35166 + - uid: 38030 components: - type: Transform pos: 13.5,-81.5 parent: 2 - - uid: 35167 + - uid: 38031 components: - type: Transform pos: 13.5,-82.5 parent: 2 - - uid: 35168 + - uid: 38032 components: - type: Transform pos: 13.5,-84.5 parent: 2 - - uid: 35169 + - uid: 38033 components: - type: Transform pos: 13.5,-85.5 parent: 2 - - uid: 35170 + - uid: 38034 components: - type: Transform pos: 23.5,-74.5 parent: 2 - - uid: 35171 + - uid: 38035 components: - type: Transform pos: 21.5,-74.5 parent: 2 - - uid: 35172 + - uid: 38036 components: - type: Transform pos: 20.5,-74.5 parent: 2 - - uid: 35173 + - uid: 38037 components: - type: Transform pos: 15.5,-74.5 parent: 2 - - uid: 35174 + - uid: 38038 components: - type: Transform pos: 14.5,-74.5 parent: 2 - - uid: 35175 + - uid: 38039 components: - type: Transform pos: 13.5,-74.5 parent: 2 - - uid: 35176 + - uid: 38040 components: - type: Transform pos: -3.5,-88.5 parent: 2 - - uid: 35177 + - uid: 38041 components: - type: Transform pos: -2.5,-88.5 parent: 2 - - uid: 35178 + - uid: 38042 components: - type: Transform pos: -1.5,-88.5 parent: 2 - - uid: 35179 + - uid: 38043 components: - type: Transform pos: -5.5,-92.5 parent: 2 - - uid: 35180 + - uid: 38044 components: - type: Transform pos: -6.5,-92.5 parent: 2 - - uid: 35181 + - uid: 38045 components: - type: Transform pos: -8.5,-92.5 parent: 2 - - uid: 35182 + - uid: 38046 components: - type: Transform pos: -9.5,-92.5 parent: 2 - - uid: 35183 + - uid: 38047 components: - type: Transform pos: -10.5,-92.5 parent: 2 - - uid: 35184 + - uid: 38048 components: - type: Transform pos: -10.5,-93.5 parent: 2 - - uid: 35185 + - uid: 38049 components: - type: Transform pos: -10.5,-95.5 parent: 2 - - uid: 35186 + - uid: 38050 components: - type: Transform pos: -10.5,-96.5 parent: 2 - - uid: 35187 + - uid: 38051 components: - type: Transform pos: -33.5,-56.5 parent: 2 - - uid: 35188 + - uid: 38052 components: - type: Transform pos: 12.5,-77.5 parent: 2 - - uid: 35189 + - uid: 38053 components: - type: Transform pos: 11.5,-77.5 parent: 2 - - uid: 35190 + - uid: 38054 components: - type: Transform pos: 10.5,-77.5 parent: 2 - - uid: 35191 + - uid: 38055 components: - type: Transform pos: 9.5,-77.5 parent: 2 - - uid: 35192 + - uid: 38056 components: - type: Transform pos: 8.5,-77.5 parent: 2 - - uid: 35193 + - uid: 38057 components: - type: Transform pos: 7.5,-77.5 parent: 2 - - uid: 35194 + - uid: 38058 components: - type: Transform pos: 6.5,-77.5 parent: 2 - - uid: 35195 + - uid: 38059 components: - type: Transform pos: 8.5,-78.5 parent: 2 - - uid: 35196 + - uid: 38060 components: - type: Transform pos: 6.5,-85.5 parent: 2 - - uid: 35197 + - uid: 38061 components: - type: Transform pos: 7.5,-85.5 parent: 2 - - uid: 35198 + - uid: 38062 components: - type: Transform pos: 8.5,-85.5 parent: 2 - - uid: 35199 + - uid: 38063 components: - type: Transform pos: 9.5,-85.5 parent: 2 - - uid: 35200 + - uid: 38064 components: - type: Transform pos: 4.5,-85.5 parent: 2 - - uid: 35201 + - uid: 38065 components: - type: Transform pos: 3.5,-85.5 parent: 2 - - uid: 35202 + - uid: 38066 components: - type: Transform pos: 2.5,-85.5 parent: 2 - - uid: 35203 + - uid: 38067 components: - type: Transform pos: 2.5,-84.5 parent: 2 - - uid: 35204 + - uid: 38068 components: - type: Transform pos: 2.5,-83.5 parent: 2 - - uid: 35205 + - uid: 38069 components: - type: Transform pos: 2.5,-77.5 parent: 2 - - uid: 35206 + - uid: 38070 components: - type: Transform pos: 3.5,-77.5 parent: 2 - - uid: 35207 + - uid: 38071 components: - type: Transform pos: 0.5,-83.5 parent: 2 - - uid: 35208 + - uid: 38072 components: - type: Transform pos: -1.5,-83.5 parent: 2 - - uid: 35209 + - uid: 38073 components: - type: Transform pos: -1.5,-78.5 parent: 2 - - uid: 35210 + - uid: 38074 components: - type: Transform pos: -1.5,-77.5 parent: 2 - - uid: 35211 + - uid: 38075 components: - type: Transform pos: -2.5,-77.5 parent: 2 - - uid: 35212 + - uid: 38076 components: - type: Transform pos: -3.5,-77.5 parent: 2 - - uid: 35213 + - uid: 38077 components: - type: Transform pos: -4.5,-77.5 parent: 2 - - uid: 35214 + - uid: 38078 components: - type: Transform pos: -5.5,-77.5 parent: 2 - - uid: 35215 + - uid: 38079 components: - type: Transform pos: -5.5,-78.5 parent: 2 - - uid: 35216 + - uid: 38080 components: - type: Transform pos: -5.5,-79.5 parent: 2 - - uid: 35217 + - uid: 38081 components: - type: Transform pos: -5.5,-80.5 parent: 2 - - uid: 35218 + - uid: 38082 components: - type: Transform pos: -5.5,-81.5 parent: 2 - - uid: 35219 + - uid: 38083 components: - type: Transform pos: -5.5,-82.5 parent: 2 - - uid: 35220 + - uid: 38084 components: - type: Transform pos: -5.5,-83.5 parent: 2 - - uid: 35221 + - uid: 38085 components: - type: Transform pos: -5.5,-84.5 parent: 2 - - uid: 35222 + - uid: 38086 components: - type: Transform pos: -5.5,-85.5 parent: 2 - - uid: 35223 + - uid: 38087 components: - type: Transform pos: -4.5,-85.5 parent: 2 - - uid: 35224 + - uid: 38088 components: - type: Transform pos: -3.5,-85.5 parent: 2 - - uid: 35225 + - uid: 38089 components: - type: Transform pos: -2.5,-85.5 parent: 2 - - uid: 35226 + - uid: 38090 components: - type: Transform pos: -1.5,-85.5 parent: 2 - - uid: 35227 + - uid: 38091 components: - type: Transform pos: -6.5,-82.5 parent: 2 - - uid: 35228 + - uid: 38092 components: - type: Transform pos: -9.5,-82.5 parent: 2 - - uid: 35229 + - uid: 38093 components: - type: Transform pos: -10.5,-82.5 parent: 2 - - uid: 35230 + - uid: 38094 components: - type: Transform pos: -10.5,-81.5 parent: 2 - - uid: 35231 + - uid: 38095 components: - type: Transform pos: -10.5,-79.5 parent: 2 - - uid: 35232 + - uid: 38096 components: - type: Transform pos: -10.5,-78.5 parent: 2 - - uid: 35233 + - uid: 38097 components: - type: Transform pos: -10.5,-77.5 parent: 2 - - uid: 35234 + - uid: 38098 components: - type: Transform pos: -6.5,-77.5 parent: 2 - - uid: 35235 + - uid: 38099 components: - type: Transform pos: -10.5,-83.5 parent: 2 - - uid: 35236 + - uid: 38100 components: - type: Transform pos: -10.5,-84.5 parent: 2 - - uid: 35237 + - uid: 38101 components: - type: Transform pos: -10.5,-85.5 parent: 2 - - uid: 35238 + - uid: 38102 components: - type: Transform pos: -10.5,-91.5 parent: 2 - - uid: 35239 + - uid: 38103 components: - type: Transform pos: -12.5,-77.5 parent: 2 - - uid: 35240 + - uid: 38104 components: - type: Transform pos: -12.5,-78.5 parent: 2 - - uid: 35241 + - uid: 38105 components: - type: Transform pos: -12.5,-76.5 parent: 2 - - uid: 35242 + - uid: 38106 components: - type: Transform pos: -12.5,-75.5 parent: 2 - - uid: 35243 + - uid: 38107 components: - type: Transform pos: -12.5,-74.5 parent: 2 - - uid: 35244 + - uid: 38108 components: - type: Transform pos: -13.5,-74.5 parent: 2 - - uid: 35245 + - uid: 38109 components: - type: Transform pos: -14.5,-74.5 parent: 2 - - uid: 35246 + - uid: 38110 components: - type: Transform pos: -15.5,-74.5 parent: 2 - - uid: 35247 + - uid: 38111 components: - type: Transform pos: -16.5,-74.5 parent: 2 - - uid: 35248 + - uid: 38112 components: - type: Transform pos: -16.5,-75.5 parent: 2 - - uid: 35249 + - uid: 38113 components: - type: Transform pos: -16.5,-77.5 parent: 2 - - uid: 35250 + - uid: 38114 components: - type: Transform pos: -16.5,-78.5 parent: 2 - - uid: 35251 + - uid: 38115 components: - type: Transform pos: -15.5,-78.5 parent: 2 - - uid: 35252 + - uid: 38116 components: - type: Transform pos: -14.5,-78.5 parent: 2 - - uid: 35253 + - uid: 38117 components: - type: Transform pos: -13.5,-78.5 parent: 2 - - uid: 35254 + - uid: 38118 components: - type: Transform pos: -17.5,-74.5 parent: 2 - - uid: 35255 + - uid: 38119 components: - type: Transform pos: -18.5,-74.5 parent: 2 - - uid: 35256 + - uid: 38120 components: - type: Transform pos: -21.5,-74.5 parent: 2 - - uid: 35257 + - uid: 38121 components: - type: Transform pos: -22.5,-74.5 parent: 2 - - uid: 35258 + - uid: 38122 components: - type: Transform pos: -22.5,-75.5 parent: 2 - - uid: 35259 + - uid: 38123 components: - type: Transform pos: -22.5,-77.5 parent: 2 - - uid: 35260 + - uid: 38124 components: - type: Transform pos: -22.5,-78.5 parent: 2 - - uid: 35261 + - uid: 38125 components: - type: Transform pos: -22.5,-79.5 parent: 2 - - uid: 35262 + - uid: 38126 components: - type: Transform pos: -16.5,-83.5 parent: 2 - - uid: 35263 + - uid: 38127 components: - type: Transform pos: -20.5,-79.5 parent: 2 - - uid: 35264 + - uid: 38128 components: - type: Transform pos: -16.5,-84.5 parent: 2 - - uid: 35265 + - uid: 38129 components: - type: Transform pos: -18.5,-79.5 parent: 2 - - uid: 35266 + - uid: 38130 components: - type: Transform pos: -16.5,-82.5 parent: 2 - - uid: 35267 + - uid: 38131 components: - type: Transform pos: -16.5,-79.5 parent: 2 - - uid: 35268 + - uid: 38132 components: - type: Transform pos: -18.5,-78.5 parent: 2 - - uid: 35269 + - uid: 38133 components: - type: Transform pos: -16.5,-81.5 parent: 2 - - uid: 35270 + - uid: 38134 components: - type: Transform pos: -20.5,-78.5 parent: 2 - - uid: 35271 + - uid: 38135 components: - type: Transform pos: -26.5,-79.5 parent: 2 - - uid: 35272 + - uid: 38136 components: - type: Transform pos: -26.5,-74.5 parent: 2 - - uid: 35273 + - uid: 38137 components: - type: Transform pos: -26.5,-75.5 parent: 2 - - uid: 35274 + - uid: 38138 components: - type: Transform pos: -26.5,-76.5 parent: 2 - - uid: 35275 + - uid: 38139 components: - type: Transform pos: -26.5,-77.5 parent: 2 - - uid: 35276 + - uid: 38140 components: - type: Transform pos: -26.5,-78.5 parent: 2 - - uid: 35277 + - uid: 38141 components: - type: Transform pos: -16.5,-80.5 parent: 2 - - uid: 35278 + - uid: 38142 components: - type: Transform pos: -17.5,-80.5 parent: 2 - - uid: 35279 + - uid: 38143 components: - type: Transform pos: -18.5,-80.5 parent: 2 - - uid: 35280 + - uid: 38144 components: - type: Transform pos: -19.5,-80.5 parent: 2 - - uid: 35281 + - uid: 38145 components: - type: Transform pos: -20.5,-80.5 parent: 2 - - uid: 35282 + - uid: 38146 components: - type: Transform pos: -21.5,-80.5 parent: 2 - - uid: 35283 + - uid: 38147 components: - type: Transform pos: -22.5,-80.5 parent: 2 - - uid: 35284 + - uid: 38148 components: - type: Transform pos: -16.5,-85.5 parent: 2 - - uid: 35285 + - uid: 38149 components: - type: Transform pos: -16.5,-86.5 parent: 2 - - uid: 35286 + - uid: 38150 components: - type: Transform pos: -16.5,-87.5 parent: 2 - - uid: 35287 + - uid: 38151 components: - type: Transform pos: -26.5,-82.5 parent: 2 - - uid: 35288 + - uid: 38152 components: - type: Transform pos: -26.5,-83.5 parent: 2 - - uid: 35289 + - uid: 38153 components: - type: Transform pos: -26.5,-84.5 parent: 2 - - uid: 35290 + - uid: 38154 components: - type: Transform pos: -26.5,-85.5 parent: 2 - - uid: 35291 + - uid: 38155 components: - type: Transform pos: -26.5,-86.5 parent: 2 - - uid: 35292 + - uid: 38156 components: - type: Transform pos: -26.5,-87.5 parent: 2 - - uid: 35293 + - uid: 38157 components: - type: Transform pos: -26.5,-88.5 parent: 2 - - uid: 35294 + - uid: 38158 components: - type: Transform pos: -26.5,-89.5 parent: 2 - - uid: 35295 + - uid: 38159 components: - type: Transform pos: -27.5,-82.5 parent: 2 - - uid: 35296 + - uid: 38160 components: - type: Transform pos: -28.5,-82.5 parent: 2 - - uid: 35297 + - uid: 38161 components: - type: Transform pos: -29.5,-82.5 parent: 2 - - uid: 35298 + - uid: 38162 components: - type: Transform pos: -30.5,-82.5 parent: 2 - - uid: 35299 + - uid: 38163 components: - type: Transform pos: -30.5,-83.5 parent: 2 - - uid: 35300 + - uid: 38164 components: - type: Transform pos: -30.5,-85.5 parent: 2 - - uid: 35301 + - uid: 38165 components: - type: Transform pos: -29.5,-85.5 parent: 2 - - uid: 35302 + - uid: 38166 components: - type: Transform pos: -28.5,-85.5 parent: 2 - - uid: 35303 + - uid: 38167 components: - type: Transform pos: -27.5,-85.5 parent: 2 - - uid: 35304 + - uid: 38168 components: - type: Transform pos: -30.5,-88.5 parent: 2 - - uid: 35305 + - uid: 38169 components: - type: Transform pos: -30.5,-86.5 parent: 2 - - uid: 35306 + - uid: 38170 components: - type: Transform pos: -29.5,-88.5 parent: 2 - - uid: 35307 + - uid: 38171 components: - type: Transform pos: -28.5,-88.5 parent: 2 - - uid: 35308 + - uid: 38172 components: - type: Transform pos: -27.5,-88.5 parent: 2 - - uid: 35309 + - uid: 38173 components: - type: Transform pos: -30.5,-89.5 parent: 2 - - uid: 35310 + - uid: 38174 components: - type: Transform pos: -26.5,-90.5 parent: 2 - - uid: 35311 + - uid: 38175 components: - type: Transform pos: -26.5,-91.5 parent: 2 - - uid: 35312 + - uid: 38176 components: - type: Transform pos: -27.5,-91.5 parent: 2 - - uid: 35313 + - uid: 38177 components: - type: Transform pos: -28.5,-91.5 parent: 2 - - uid: 35314 + - uid: 38178 components: - type: Transform pos: -29.5,-91.5 parent: 2 - - uid: 35315 + - uid: 38179 components: - type: Transform pos: -30.5,-91.5 parent: 2 - - uid: 35316 + - uid: 38180 components: - type: Transform pos: -33.5,-91.5 parent: 2 - - uid: 35317 + - uid: 38181 components: - type: Transform pos: -33.5,-89.5 parent: 2 - - uid: 35318 + - uid: 38182 components: - type: Transform pos: -33.5,-88.5 parent: 2 - - uid: 35319 + - uid: 38183 components: - type: Transform pos: -33.5,-85.5 parent: 2 - - uid: 35320 + - uid: 38184 components: - type: Transform pos: -33.5,-83.5 parent: 2 - - uid: 35321 + - uid: 38185 components: - type: Transform pos: -33.5,-82.5 parent: 2 - - uid: 35322 + - uid: 38186 components: - type: Transform pos: -37.5,-91.5 parent: 2 - - uid: 35323 + - uid: 38187 components: - type: Transform pos: -37.5,-90.5 parent: 2 - - uid: 35324 + - uid: 38188 components: - type: Transform pos: -37.5,-89.5 parent: 2 - - uid: 35325 + - uid: 38189 components: - type: Transform pos: -37.5,-88.5 parent: 2 - - uid: 35326 + - uid: 38190 components: - type: Transform pos: -37.5,-87.5 parent: 2 - - uid: 35327 + - uid: 38191 components: - type: Transform pos: -37.5,-86.5 parent: 2 - - uid: 35328 + - uid: 38192 components: - type: Transform pos: -37.5,-85.5 parent: 2 - - uid: 35329 + - uid: 38193 components: - type: Transform pos: -37.5,-84.5 parent: 2 - - uid: 35330 + - uid: 38194 components: - type: Transform pos: -37.5,-83.5 parent: 2 - - uid: 35331 + - uid: 38195 components: - type: Transform pos: -37.5,-82.5 parent: 2 - - uid: 35332 + - uid: 38196 components: - type: Transform pos: -36.5,-82.5 parent: 2 - - uid: 35333 + - uid: 38197 components: - type: Transform pos: -35.5,-82.5 parent: 2 - - uid: 35334 + - uid: 38198 components: - type: Transform pos: -34.5,-82.5 parent: 2 - - uid: 35335 + - uid: 38199 components: - type: Transform pos: -34.5,-85.5 parent: 2 - - uid: 35336 + - uid: 38200 components: - type: Transform pos: -35.5,-85.5 parent: 2 - - uid: 35337 + - uid: 38201 components: - type: Transform pos: -36.5,-85.5 parent: 2 - - uid: 35338 + - uid: 38202 components: - type: Transform pos: -36.5,-88.5 parent: 2 - - uid: 35339 + - uid: 38203 components: - type: Transform pos: -35.5,-88.5 parent: 2 - - uid: 35340 + - uid: 38204 components: - type: Transform pos: -34.5,-88.5 parent: 2 - - uid: 35341 + - uid: 38205 components: - type: Transform pos: -36.5,-91.5 parent: 2 - - uid: 35342 + - uid: 38206 components: - type: Transform pos: -35.5,-91.5 parent: 2 - - uid: 35343 + - uid: 38207 components: - type: Transform pos: -34.5,-91.5 parent: 2 - - uid: 35344 + - uid: 38208 components: - type: Transform pos: -28.5,-92.5 parent: 2 - - uid: 35345 + - uid: 38209 components: - type: Transform pos: -28.5,-93.5 parent: 2 - - uid: 35346 + - uid: 38210 components: - type: Transform pos: -28.5,-94.5 parent: 2 - - uid: 35347 + - uid: 38211 components: - type: Transform pos: -28.5,-95.5 parent: 2 - - uid: 35348 + - uid: 38212 components: - type: Transform pos: -28.5,-96.5 parent: 2 - - uid: 35349 + - uid: 38213 components: - type: Transform pos: -25.5,-90.5 parent: 2 - - uid: 35350 + - uid: 38214 components: - type: Transform pos: -21.5,-90.5 parent: 2 - - uid: 35351 + - uid: 38215 components: - type: Transform pos: -20.5,-90.5 parent: 2 - - uid: 35352 + - uid: 38216 components: - type: Transform pos: -19.5,-90.5 parent: 2 - - uid: 35353 + - uid: 38217 components: - type: Transform pos: -18.5,-90.5 parent: 2 - - uid: 35354 + - uid: 38218 components: - type: Transform pos: -17.5,-90.5 parent: 2 - - uid: 35355 + - uid: 38219 components: - type: Transform pos: -16.5,-90.5 parent: 2 - - uid: 35356 + - uid: 38220 components: - type: Transform pos: -16.5,-89.5 parent: 2 - - uid: 35357 + - uid: 38221 components: - type: Transform pos: -16.5,-88.5 parent: 2 - - uid: 35358 + - uid: 38222 components: - type: Transform pos: -36.5,-93.5 parent: 2 - - uid: 35359 + - uid: 38223 components: - type: Transform pos: -37.5,-81.5 parent: 2 - - uid: 35360 + - uid: 38224 components: - type: Transform pos: -37.5,-80.5 parent: 2 - - uid: 35361 + - uid: 38225 components: - type: Transform pos: -37.5,-79.5 parent: 2 - - uid: 35362 + - uid: 38226 components: - type: Transform pos: -33.5,-77.5 parent: 2 - - uid: 35363 + - uid: 38227 components: - type: Transform pos: -33.5,-78.5 parent: 2 - - uid: 35364 + - uid: 38228 components: - type: Transform pos: -33.5,-79.5 parent: 2 - - uid: 35365 + - uid: 38229 components: - type: Transform pos: -32.5,-79.5 parent: 2 - - uid: 35366 + - uid: 38230 components: - type: Transform pos: -31.5,-79.5 parent: 2 - - uid: 35367 + - uid: 38231 components: - type: Transform pos: -30.5,-79.5 parent: 2 - - uid: 35368 + - uid: 38232 components: - type: Transform pos: -29.5,-79.5 parent: 2 - - uid: 35369 + - uid: 38233 components: - type: Transform pos: -28.5,-79.5 parent: 2 - - uid: 35370 + - uid: 38234 components: - type: Transform pos: -27.5,-79.5 parent: 2 - - uid: 35371 + - uid: 38235 components: - type: Transform pos: -26.5,-72.5 parent: 2 - - uid: 35372 + - uid: 38236 components: - type: Transform pos: -30.5,-71.5 parent: 2 - - uid: 35373 + - uid: 38237 components: - type: Transform pos: -31.5,-72.5 parent: 2 - - uid: 35374 + - uid: 38238 components: - type: Transform pos: -31.5,-73.5 parent: 2 - - uid: 35375 + - uid: 38239 components: - type: Transform pos: -31.5,-74.5 parent: 2 - - uid: 35376 + - uid: 38240 components: - type: Transform pos: -31.5,-75.5 parent: 2 - - uid: 35377 + - uid: 38241 components: - type: Transform pos: -31.5,-76.5 parent: 2 - - uid: 35378 + - uid: 38242 components: - type: Transform pos: -31.5,-78.5 parent: 2 - - uid: 35379 + - uid: 38243 components: - type: Transform pos: -37.5,-78.5 parent: 2 - - uid: 35380 + - uid: 38244 components: - type: Transform pos: -37.5,-77.5 parent: 2 - - uid: 35381 + - uid: 38245 components: - type: Transform pos: -45.5,-89.5 parent: 2 - - uid: 35382 + - uid: 38246 components: - type: Transform pos: -45.5,-88.5 parent: 2 - - uid: 35383 + - uid: 38247 components: - type: Transform pos: -45.5,-87.5 parent: 2 - - uid: 35384 + - uid: 38248 components: - type: Transform pos: -45.5,-86.5 parent: 2 - - uid: 35385 + - uid: 38249 components: - type: Transform pos: -46.5,-86.5 parent: 2 - - uid: 35386 + - uid: 38250 components: - type: Transform pos: -45.5,-85.5 parent: 2 - - uid: 35387 + - uid: 38251 components: - type: Transform pos: -45.5,-84.5 parent: 2 - - uid: 35388 + - uid: 38252 components: - type: Transform pos: -45.5,-83.5 parent: 2 - - uid: 35389 + - uid: 38253 components: - type: Transform pos: -45.5,-82.5 parent: 2 - - uid: 35390 + - uid: 38254 components: - type: Transform pos: -44.5,-82.5 parent: 2 - - uid: 35391 + - uid: 38255 components: - type: Transform pos: -43.5,-82.5 parent: 2 - - uid: 35392 + - uid: 38256 components: - type: Transform pos: -40.5,-81.5 parent: 2 - - uid: 35393 + - uid: 38257 components: - type: Transform pos: -40.5,-82.5 parent: 2 - - uid: 35394 + - uid: 38258 components: - type: Transform pos: -40.5,-83.5 parent: 2 - - uid: 35395 + - uid: 38259 components: - type: Transform pos: -40.5,-84.5 parent: 2 - - uid: 35396 + - uid: 38260 components: - type: Transform pos: -40.5,-80.5 parent: 2 - - uid: 35397 + - uid: 38261 components: - type: Transform pos: -40.5,-79.5 parent: 2 - - uid: 35398 + - uid: 38262 components: - type: Transform pos: -40.5,-78.5 parent: 2 - - uid: 35399 + - uid: 38263 components: - type: Transform pos: -40.5,-77.5 parent: 2 - - uid: 35400 + - uid: 38264 components: - type: Transform pos: -40.5,-76.5 parent: 2 - - uid: 35401 + - uid: 38265 components: - type: Transform pos: -30.5,-72.5 parent: 2 - - uid: 35402 + - uid: 38266 components: - type: Transform pos: -33.5,-65.5 parent: 2 - - uid: 35403 + - uid: 38267 components: - type: Transform pos: -33.5,-63.5 parent: 2 - - uid: 35404 + - uid: 38268 components: - type: Transform pos: -33.5,-62.5 parent: 2 - - uid: 35405 + - uid: 38269 components: - type: Transform pos: -33.5,-61.5 parent: 2 - - uid: 35406 + - uid: 38270 components: - type: Transform pos: -33.5,-60.5 parent: 2 - - uid: 35407 + - uid: 38271 components: - type: Transform pos: -33.5,-59.5 parent: 2 - - uid: 35408 + - uid: 38272 components: - type: Transform pos: -33.5,-57.5 parent: 2 - - uid: 35409 + - uid: 38273 components: - type: Transform pos: -34.5,-60.5 parent: 2 - - uid: 35410 + - uid: 38274 components: - type: Transform pos: -35.5,-60.5 parent: 2 - - uid: 35411 + - uid: 38275 components: - type: Transform pos: -36.5,-60.5 parent: 2 - - uid: 35412 + - uid: 38276 components: - type: Transform pos: -41.5,-60.5 parent: 2 - - uid: 35413 + - uid: 38277 components: - type: Transform pos: -41.5,-61.5 parent: 2 - - uid: 35414 + - uid: 38278 components: - type: Transform pos: -41.5,-62.5 parent: 2 - - uid: 35415 + - uid: 38279 components: - type: Transform pos: -31.5,-56.5 parent: 2 - - uid: 35416 + - uid: 38280 components: - type: Transform pos: -30.5,-56.5 parent: 2 - - uid: 35417 + - uid: 38281 components: - type: Transform pos: -30.5,-61.5 parent: 2 - - uid: 35418 + - uid: 38282 components: - type: Transform pos: -30.5,-62.5 parent: 2 - - uid: 35419 + - uid: 38283 components: - type: Transform pos: -30.5,-63.5 parent: 2 - - uid: 35420 + - uid: 38284 components: - type: Transform pos: -30.5,-64.5 parent: 2 - - uid: 35421 + - uid: 38285 components: - type: Transform pos: -30.5,-65.5 parent: 2 - - uid: 35422 + - uid: 38286 components: - type: Transform pos: -30.5,-67.5 parent: 2 - - uid: 35423 + - uid: 38287 components: - type: Transform pos: -30.5,-68.5 parent: 2 - - uid: 35424 + - uid: 38288 components: - type: Transform pos: -30.5,-69.5 parent: 2 - - uid: 35425 + - uid: 38289 components: - type: Transform pos: -30.5,-70.5 parent: 2 - - uid: 35426 + - uid: 38290 components: - type: Transform pos: -34.5,-56.5 parent: 2 - - uid: 35427 + - uid: 38291 components: - type: Transform pos: -35.5,-56.5 parent: 2 - - uid: 35428 + - uid: 38292 components: - type: Transform pos: -36.5,-56.5 parent: 2 - - uid: 35429 + - uid: 38293 components: - type: Transform pos: -37.5,-56.5 parent: 2 - - uid: 35430 + - uid: 38294 components: - type: Transform pos: -40.5,-56.5 parent: 2 - - uid: 35431 + - uid: 38295 components: - type: Transform pos: -41.5,-56.5 parent: 2 - - uid: 35432 + - uid: 38296 components: - type: Transform pos: -33.5,-55.5 parent: 2 - - uid: 35433 + - uid: 38297 components: - type: Transform pos: -33.5,-54.5 parent: 2 - - uid: 35434 + - uid: 38298 components: - type: Transform pos: -33.5,-50.5 parent: 2 - - uid: 35435 + - uid: 38299 components: - type: Transform pos: -34.5,-50.5 parent: 2 - - uid: 35436 + - uid: 38300 components: - type: Transform pos: -35.5,-50.5 parent: 2 - - uid: 35437 + - uid: 38301 components: - type: Transform pos: -36.5,-50.5 parent: 2 - - uid: 35438 + - uid: 38302 components: - type: Transform pos: -41.5,-50.5 parent: 2 - - uid: 35439 + - uid: 38303 components: - type: Transform pos: -41.5,-51.5 parent: 2 - - uid: 35440 + - uid: 38304 components: - type: Transform pos: -41.5,-55.5 parent: 2 - - uid: 35441 + - uid: 38305 components: - type: Transform pos: -41.5,-49.5 parent: 2 - - uid: 35442 + - uid: 38306 components: - type: Transform pos: -41.5,-45.5 parent: 2 - - uid: 35443 + - uid: 38307 components: - type: Transform pos: -40.5,-45.5 parent: 2 - - uid: 35444 + - uid: 38308 components: - type: Transform pos: -34.5,-45.5 parent: 2 - - uid: 35445 + - uid: 38309 components: - type: Transform pos: -33.5,-45.5 parent: 2 - - uid: 35446 + - uid: 38310 components: - type: Transform pos: -33.5,-46.5 parent: 2 - - uid: 35447 + - uid: 38311 components: - type: Transform pos: -33.5,-47.5 parent: 2 - - uid: 35448 + - uid: 38312 components: - type: Transform pos: -33.5,-48.5 parent: 2 - - uid: 35449 + - uid: 38313 components: - type: Transform pos: -33.5,-49.5 parent: 2 - - uid: 35450 + - uid: 38314 components: - type: Transform pos: -43.5,-49.5 parent: 2 - - uid: 35451 + - uid: 38315 components: - type: Transform pos: -43.5,-51.5 parent: 2 - - uid: 35452 + - uid: 38316 components: - type: Transform pos: -45.5,-45.5 parent: 2 - - uid: 35453 + - uid: 38317 components: - type: Transform pos: -45.5,-49.5 parent: 2 - - uid: 35454 + - uid: 38318 components: - type: Transform pos: -45.5,-50.5 parent: 2 - - uid: 35455 + - uid: 38319 components: - type: Transform pos: -45.5,-51.5 parent: 2 - - uid: 35456 + - uid: 38320 components: - type: Transform pos: -50.5,-63.5 parent: 2 - - uid: 35457 + - uid: 38321 components: - type: Transform pos: 43.5,-67.5 parent: 2 - - uid: 35458 + - uid: 38322 components: - type: Transform pos: -45.5,-77.5 parent: 2 - - uid: 35459 + - uid: 38323 components: - type: Transform pos: -45.5,-78.5 parent: 2 - - uid: 35460 + - uid: 38324 components: - type: Transform pos: -45.5,-79.5 parent: 2 - - uid: 35461 + - uid: 38325 components: - type: Transform pos: -45.5,-76.5 parent: 2 - - uid: 35462 + - uid: 38326 components: - type: Transform pos: -48.5,-79.5 parent: 2 - - uid: 35463 + - uid: 38327 components: - type: Transform pos: -49.5,-79.5 parent: 2 - - uid: 35464 + - uid: 38328 components: - type: Transform pos: -50.5,-79.5 parent: 2 - - uid: 35465 + - uid: 38329 components: - type: Transform pos: -51.5,-79.5 parent: 2 - - uid: 35466 + - uid: 38330 components: - type: Transform pos: -51.5,-80.5 parent: 2 - - uid: 35467 + - uid: 38331 components: - type: Transform pos: -51.5,-81.5 parent: 2 - - uid: 35468 + - uid: 38332 components: - type: Transform pos: -51.5,-82.5 parent: 2 - - uid: 35469 + - uid: 38333 components: - type: Transform pos: -51.5,-83.5 parent: 2 - - uid: 35470 + - uid: 38334 components: - type: Transform pos: -51.5,-84.5 parent: 2 - - uid: 35471 + - uid: 38335 components: - type: Transform pos: -51.5,-85.5 parent: 2 - - uid: 35472 + - uid: 38336 components: - type: Transform pos: -51.5,-86.5 parent: 2 - - uid: 35473 + - uid: 38337 components: - type: Transform pos: -50.5,-86.5 parent: 2 - - uid: 35474 + - uid: 38338 components: - type: Transform pos: -49.5,-86.5 parent: 2 - - uid: 35475 + - uid: 38339 components: - type: Transform pos: -48.5,-86.5 parent: 2 - - uid: 35476 + - uid: 38340 components: - type: Transform pos: -47.5,-86.5 parent: 2 - - uid: 35477 + - uid: 38341 components: - type: Transform pos: -48.5,-52.5 parent: 2 - - uid: 35478 + - uid: 38342 components: - type: Transform pos: -48.5,-51.5 parent: 2 - - uid: 35479 + - uid: 38343 components: - type: Transform pos: -49.5,-51.5 parent: 2 - - uid: 35480 + - uid: 38344 components: - type: Transform pos: -50.5,-51.5 parent: 2 - - uid: 35481 + - uid: 38345 components: - type: Transform pos: -50.5,-50.5 parent: 2 - - uid: 35482 + - uid: 38346 components: - type: Transform pos: -50.5,-49.5 parent: 2 - - uid: 35483 + - uid: 38347 components: - type: Transform pos: -50.5,-48.5 parent: 2 - - uid: 35484 + - uid: 38348 components: - type: Transform pos: -50.5,-46.5 parent: 2 - - uid: 35485 + - uid: 38349 components: - type: Transform pos: -50.5,-45.5 parent: 2 - - uid: 35486 + - uid: 38350 components: - type: Transform pos: -56.5,-63.5 parent: 2 - - uid: 35487 + - uid: 38351 components: - type: Transform pos: -56.5,-64.5 parent: 2 - - uid: 35488 + - uid: 38352 components: - type: Transform pos: -56.5,-66.5 parent: 2 - - uid: 35489 + - uid: 38353 components: - type: Transform pos: -57.5,-67.5 parent: 2 - - uid: 35490 + - uid: 38354 components: - type: Transform pos: -59.5,-66.5 parent: 2 - - uid: 35491 + - uid: 38355 components: - type: Transform pos: -59.5,-64.5 parent: 2 - - uid: 35492 + - uid: 38356 components: - type: Transform pos: -59.5,-63.5 parent: 2 - - uid: 35493 + - uid: 38357 components: - type: Transform pos: -58.5,-63.5 parent: 2 - - uid: 35494 + - uid: 38358 components: - type: Transform pos: -60.5,-63.5 parent: 2 - - uid: 35495 + - uid: 38359 components: - type: Transform pos: -61.5,-63.5 parent: 2 - - uid: 35496 + - uid: 38360 components: - type: Transform pos: -62.5,-63.5 parent: 2 - - uid: 35497 + - uid: 38361 components: - type: Transform pos: -63.5,-63.5 parent: 2 - - uid: 35498 + - uid: 38362 components: - type: Transform pos: -35.5,-0.5 parent: 2 - - uid: 35499 + - uid: 38363 components: - type: Transform pos: -60.5,-45.5 parent: 2 - - uid: 35500 + - uid: 38364 components: - type: Transform pos: -62.5,-45.5 parent: 2 - - uid: 35501 + - uid: 38365 components: - type: Transform pos: -63.5,-45.5 parent: 2 - - uid: 35502 + - uid: 38366 components: - type: Transform pos: -68.5,-45.5 parent: 2 - - uid: 35503 + - uid: 38367 components: - type: Transform pos: -69.5,-45.5 parent: 2 - - uid: 35504 + - uid: 38368 components: - type: Transform pos: -69.5,-41.5 parent: 2 - - uid: 35505 + - uid: 38369 components: - type: Transform pos: -69.5,-40.5 parent: 2 - - uid: 35506 + - uid: 38370 components: - type: Transform pos: -69.5,-39.5 parent: 2 - - uid: 35507 + - uid: 38371 components: - type: Transform pos: -69.5,-38.5 parent: 2 - - uid: 35508 + - uid: 38372 components: - type: Transform pos: -69.5,-36.5 parent: 2 - - uid: 35509 + - uid: 38373 components: - type: Transform pos: -69.5,-35.5 parent: 2 - - uid: 35510 + - uid: 38374 components: - type: Transform pos: -33.5,-41.5 parent: 2 - - uid: 35511 + - uid: 38375 components: - type: Transform pos: -34.5,-41.5 parent: 2 - - uid: 35512 + - uid: 38376 components: - type: Transform pos: -56.5,-41.5 parent: 2 - - uid: 35513 + - uid: 38377 components: - type: Transform pos: -55.5,-41.5 parent: 2 - - uid: 35514 + - uid: 38378 components: - type: Transform pos: -54.5,-41.5 parent: 2 - - uid: 35515 + - uid: 38379 components: - type: Transform pos: -53.5,-41.5 parent: 2 - - uid: 35516 + - uid: 38380 components: - type: Transform pos: -52.5,-41.5 parent: 2 - - uid: 35517 + - uid: 38381 components: - type: Transform pos: -51.5,-41.5 parent: 2 - - uid: 35518 + - uid: 38382 components: - type: Transform pos: -50.5,-41.5 parent: 2 - - uid: 35519 + - uid: 38383 components: - type: Transform pos: -58.5,-41.5 parent: 2 - - uid: 35520 + - uid: 38384 components: - type: Transform pos: -60.5,-41.5 parent: 2 - - uid: 35521 + - uid: 38385 components: - type: Transform pos: -61.5,-41.5 parent: 2 - - uid: 35522 + - uid: 38386 components: - type: Transform pos: -63.5,-41.5 parent: 2 - - uid: 35523 + - uid: 38387 components: - type: Transform pos: -68.5,-41.5 parent: 2 - - uid: 35524 + - uid: 38388 components: - type: Transform pos: -58.5,-36.5 parent: 2 - - uid: 35525 + - uid: 38389 components: - type: Transform pos: -58.5,-35.5 parent: 2 - - uid: 35526 + - uid: 38390 components: - type: Transform pos: -58.5,-34.5 parent: 2 - - uid: 35527 + - uid: 38391 components: - type: Transform pos: -52.5,-34.5 parent: 2 - - uid: 35528 + - uid: 38392 components: - type: Transform pos: -52.5,-35.5 parent: 2 - - uid: 35529 + - uid: 38393 components: - type: Transform pos: -52.5,-36.5 parent: 2 - - uid: 35530 + - uid: 38394 components: - type: Transform pos: -49.5,-37.5 parent: 2 - - uid: 35531 + - uid: 38395 components: - type: Transform pos: -52.5,-30.5 parent: 2 - - uid: 35532 + - uid: 38396 components: - type: Transform pos: -53.5,-30.5 parent: 2 - - uid: 35533 + - uid: 38397 components: - type: Transform pos: -54.5,-30.5 parent: 2 - - uid: 35534 + - uid: 38398 components: - type: Transform pos: -52.5,-31.5 parent: 2 - - uid: 35535 + - uid: 38399 components: - type: Transform pos: -52.5,-32.5 parent: 2 - - uid: 35536 + - uid: 38400 components: - type: Transform pos: -52.5,-33.5 parent: 2 - - uid: 35537 + - uid: 38401 components: - type: Transform pos: -57.5,-30.5 parent: 2 - - uid: 35538 + - uid: 38402 components: - type: Transform pos: -58.5,-30.5 parent: 2 - - uid: 35539 + - uid: 38403 components: - type: Transform pos: -58.5,-31.5 parent: 2 - - uid: 35540 + - uid: 38404 components: - type: Transform pos: -58.5,-32.5 parent: 2 - - uid: 35541 + - uid: 38405 components: - type: Transform pos: -58.5,-33.5 parent: 2 - - uid: 35542 + - uid: 38406 components: - type: Transform pos: -58.5,-29.5 parent: 2 - - uid: 35543 + - uid: 38407 components: - type: Transform pos: -58.5,-27.5 parent: 2 - - uid: 35544 + - uid: 38408 components: - type: Transform pos: -51.5,-26.5 parent: 2 - - uid: 35545 + - uid: 38409 components: - type: Transform pos: -50.5,-26.5 parent: 2 - - uid: 35546 + - uid: 38410 components: - type: Transform pos: -49.5,-26.5 parent: 2 - - uid: 35547 + - uid: 38411 components: - type: Transform pos: -46.5,-26.5 parent: 2 - - uid: 35548 + - uid: 38412 components: - type: Transform pos: -45.5,-26.5 parent: 2 - - uid: 35549 + - uid: 38413 components: - type: Transform pos: -44.5,-26.5 parent: 2 - - uid: 35550 + - uid: 38414 components: - type: Transform pos: -43.5,-26.5 parent: 2 - - uid: 35551 + - uid: 38415 components: - type: Transform pos: -43.5,-25.5 parent: 2 - - uid: 35552 + - uid: 38416 components: - type: Transform pos: -43.5,-24.5 parent: 2 - - uid: 35553 + - uid: 38417 components: - type: Transform pos: -43.5,-23.5 parent: 2 - - uid: 35555 + - uid: 38418 components: - type: Transform pos: -50.5,-23.5 parent: 2 - - uid: 35556 + - uid: 38419 components: - type: Transform pos: -50.5,-22.5 parent: 2 - - uid: 35557 + - uid: 38420 components: - type: Transform pos: -51.5,-22.5 parent: 2 - - uid: 35558 + - uid: 38421 components: - type: Transform pos: -56.5,-22.5 parent: 2 - - uid: 35559 + - uid: 38422 components: - type: Transform pos: -50.5,-24.5 parent: 2 - - uid: 35560 + - uid: 38423 components: - type: Transform pos: -43.5,-22.5 parent: 2 - - uid: 35561 + - uid: 38424 components: - type: Transform pos: -43.5,-21.5 parent: 2 - - uid: 35562 + - uid: 38425 components: - type: Transform pos: -43.5,-20.5 parent: 2 - - uid: 35563 + - uid: 38426 components: - type: Transform pos: -43.5,-19.5 parent: 2 - - uid: 35564 + - uid: 38427 components: - type: Transform pos: -43.5,-18.5 parent: 2 - - uid: 35565 + - uid: 38428 components: - type: Transform pos: -43.5,-17.5 parent: 2 - - uid: 35566 + - uid: 38429 components: - type: Transform pos: -46.5,-17.5 parent: 2 - - uid: 35567 + - uid: 38430 components: - type: Transform pos: -45.5,-17.5 parent: 2 - - uid: 35568 + - uid: 38431 components: - type: Transform pos: -44.5,-17.5 parent: 2 - - uid: 35569 + - uid: 38432 components: - type: Transform pos: -50.5,-17.5 parent: 2 - - uid: 35570 + - uid: 38433 components: - type: Transform pos: -50.5,-18.5 parent: 2 - - uid: 35571 + - uid: 38434 components: - type: Transform pos: -50.5,-19.5 parent: 2 - - uid: 35572 + - uid: 38435 components: - type: Transform pos: -50.5,-20.5 parent: 2 - - uid: 35573 + - uid: 38436 components: - type: Transform pos: -50.5,-21.5 parent: 2 - - uid: 35574 + - uid: 38437 components: - type: Transform pos: -50.5,-16.5 parent: 2 - - uid: 35575 + - uid: 38438 components: - type: Transform pos: -51.5,-16.5 parent: 2 - - uid: 35576 + - uid: 38439 components: - type: Transform pos: -52.5,-16.5 parent: 2 - - uid: 35577 + - uid: 38440 components: - type: Transform pos: -53.5,-16.5 parent: 2 - - uid: 35578 + - uid: 38441 components: - type: Transform pos: -54.5,-16.5 parent: 2 - - uid: 35579 + - uid: 38442 components: - type: Transform pos: -55.5,-16.5 parent: 2 - - uid: 35580 + - uid: 38443 components: - type: Transform pos: -56.5,-16.5 parent: 2 - - uid: 35581 + - uid: 38444 components: - type: Transform pos: -56.5,-17.5 parent: 2 - - uid: 35582 + - uid: 38445 components: - type: Transform pos: -56.5,-18.5 parent: 2 - - uid: 35583 + - uid: 38446 components: - type: Transform pos: -56.5,-19.5 parent: 2 - - uid: 35584 + - uid: 38447 components: - type: Transform pos: -56.5,-20.5 parent: 2 - - uid: 35585 + - uid: 38448 components: - type: Transform pos: -56.5,-21.5 parent: 2 - - uid: 35586 + - uid: 38449 components: - type: Transform pos: -50.5,-14.5 parent: 2 - - uid: 35587 + - uid: 38450 components: - type: Transform pos: -49.5,-14.5 parent: 2 - - uid: 35588 + - uid: 38451 components: - type: Transform pos: -48.5,-14.5 parent: 2 - - uid: 35589 + - uid: 38452 components: - type: Transform pos: -44.5,-14.5 parent: 2 - - uid: 35590 + - uid: 38453 components: - type: Transform pos: -44.5,-13.5 parent: 2 - - uid: 35591 + - uid: 38454 components: - type: Transform pos: -44.5,-12.5 parent: 2 - - uid: 35592 + - uid: 38455 components: - type: Transform pos: -44.5,-11.5 parent: 2 - - uid: 35593 + - uid: 38456 components: - type: Transform pos: -44.5,-10.5 parent: 2 - - uid: 35594 + - uid: 38457 components: - type: Transform pos: -50.5,-11.5 parent: 2 - - uid: 35595 + - uid: 38458 components: - type: Transform pos: -50.5,-12.5 parent: 2 - - uid: 35596 + - uid: 38459 components: - type: Transform pos: -50.5,-13.5 parent: 2 - - uid: 35597 + - uid: 38460 components: - type: Transform pos: -51.5,-10.5 parent: 2 - - uid: 35598 + - uid: 38461 components: - type: Transform pos: -51.5,-11.5 parent: 2 - - uid: 35599 + - uid: 38462 components: - type: Transform pos: -52.5,-11.5 parent: 2 - - uid: 35600 + - uid: 38463 components: - type: Transform pos: -53.5,-11.5 parent: 2 - - uid: 35601 + - uid: 38464 components: - type: Transform pos: -54.5,-11.5 parent: 2 - - uid: 35602 + - uid: 38465 components: - type: Transform pos: -55.5,-11.5 parent: 2 - - uid: 35603 + - uid: 38466 components: - type: Transform pos: -56.5,-11.5 parent: 2 - - uid: 35604 + - uid: 38467 components: - type: Transform pos: -56.5,-12.5 parent: 2 - - uid: 35605 + - uid: 38468 components: - type: Transform pos: -56.5,-13.5 parent: 2 - - uid: 35606 + - uid: 38469 components: - type: Transform pos: -56.5,-14.5 parent: 2 - - uid: 35607 + - uid: 38470 components: - type: Transform pos: -56.5,-15.5 parent: 2 - - uid: 35608 + - uid: 38471 components: - type: Transform pos: -55.5,-10.5 parent: 2 - - uid: 35609 + - uid: 38472 components: - type: Transform pos: -55.5,-9.5 parent: 2 - - uid: 35610 + - uid: 38473 components: - type: Transform pos: -51.5,-9.5 parent: 2 - - uid: 35611 + - uid: 38474 components: - type: Transform pos: -55.5,-8.5 parent: 2 - - uid: 35612 + - uid: 38475 components: - type: Transform pos: -54.5,-8.5 parent: 2 - - uid: 35613 + - uid: 38476 components: - type: Transform pos: -51.5,-8.5 parent: 2 - - uid: 35614 + - uid: 38477 components: - type: Transform pos: -52.5,-8.5 parent: 2 - - uid: 35615 + - uid: 38478 components: - type: Transform pos: -56.5,-8.5 parent: 2 - - uid: 35616 + - uid: 38479 components: - type: Transform pos: -56.5,-7.5 parent: 2 - - uid: 35617 + - uid: 38480 components: - type: Transform pos: -56.5,-6.5 parent: 2 - - uid: 35618 + - uid: 38481 components: - type: Transform pos: -51.5,-4.5 parent: 2 - - uid: 35619 + - uid: 38482 components: - type: Transform pos: -51.5,-5.5 parent: 2 - - uid: 35620 + - uid: 38483 components: - type: Transform pos: -51.5,-6.5 parent: 2 - - uid: 35621 + - uid: 38484 components: - type: Transform pos: -51.5,-7.5 parent: 2 - - uid: 35622 + - uid: 38485 components: - type: Transform pos: -48.5,1.5 parent: 2 - - uid: 35623 + - uid: 38486 components: - type: Transform pos: -48.5,-1.5 parent: 2 - - uid: 35624 + - uid: 38487 components: - type: Transform pos: -48.5,-4.5 parent: 2 - - uid: 35625 + - uid: 38488 components: - type: Transform pos: -44.5,-9.5 parent: 2 - - uid: 35626 + - uid: 38489 components: - type: Transform pos: -44.5,-8.5 parent: 2 - - uid: 35627 + - uid: 38490 components: - type: Transform pos: -44.5,-7.5 parent: 2 - - uid: 35628 + - uid: 38491 components: - type: Transform pos: -44.5,-6.5 parent: 2 - - uid: 35629 + - uid: 38492 components: - type: Transform pos: -44.5,-5.5 parent: 2 - - uid: 35630 + - uid: 38493 components: - type: Transform pos: -44.5,-4.5 parent: 2 - - uid: 35631 + - uid: 38494 components: - type: Transform pos: -44.5,-3.5 parent: 2 - - uid: 35632 + - uid: 38495 components: - type: Transform pos: -44.5,-2.5 parent: 2 - - uid: 35633 + - uid: 38496 components: - type: Transform pos: -44.5,-1.5 parent: 2 - - uid: 35634 + - uid: 38497 components: - type: Transform pos: -44.5,-0.5 parent: 2 - - uid: 35635 + - uid: 38498 components: - type: Transform pos: -44.5,0.5 parent: 2 - - uid: 35636 + - uid: 38499 components: - type: Transform pos: -44.5,1.5 parent: 2 - - uid: 35637 + - uid: 38500 components: - type: Transform pos: -45.5,1.5 parent: 2 - - uid: 35638 + - uid: 38501 components: - type: Transform pos: -46.5,1.5 parent: 2 - - uid: 35639 + - uid: 38502 components: - type: Transform pos: -47.5,-1.5 parent: 2 - - uid: 35640 + - uid: 38503 components: - type: Transform pos: -46.5,-1.5 parent: 2 - - uid: 35641 + - uid: 38504 components: - type: Transform pos: -45.5,-1.5 parent: 2 - - uid: 35642 + - uid: 38505 components: - type: Transform pos: -47.5,-4.5 parent: 2 - - uid: 35643 + - uid: 38506 components: - type: Transform pos: -46.5,-4.5 parent: 2 - - uid: 35644 + - uid: 38507 components: - type: Transform pos: -45.5,-4.5 parent: 2 - - uid: 35645 + - uid: 38508 components: - type: Transform pos: -42.5,1.5 parent: 2 - - uid: 35646 + - uid: 38509 components: - type: Transform pos: -42.5,-0.5 parent: 2 - - uid: 35647 + - uid: 38510 components: - type: Transform pos: -40.5,1.5 parent: 2 - - uid: 35648 + - uid: 38511 components: - type: Transform pos: -40.5,0.5 parent: 2 - - uid: 35649 + - uid: 38512 components: - type: Transform pos: -40.5,-0.5 parent: 2 - - uid: 35650 + - uid: 38513 components: - type: Transform pos: -40.5,-1.5 parent: 2 - - uid: 35651 + - uid: 38514 components: - type: Transform pos: -40.5,-5.5 parent: 2 - - uid: 35652 + - uid: 38515 components: - type: Transform pos: -39.5,-0.5 parent: 2 - - uid: 35653 + - uid: 38516 components: - type: Transform pos: -38.5,-0.5 parent: 2 - - uid: 35654 + - uid: 38517 components: - type: Transform pos: -37.5,-0.5 parent: 2 - - uid: 35655 + - uid: 38518 components: - type: Transform pos: -36.5,-0.5 parent: 2 - - uid: 35656 + - uid: 38519 components: - type: Transform pos: -36.5,-3.5 parent: 2 - - uid: 35657 + - uid: 38520 components: - type: Transform pos: -36.5,-4.5 parent: 2 - - uid: 35658 + - uid: 38521 components: - type: Transform pos: -36.5,-5.5 parent: 2 - - uid: 35659 + - uid: 38522 components: - type: Transform pos: -34.5,-0.5 parent: 2 - - uid: 35660 + - uid: 38523 components: - type: Transform pos: -34.5,-1.5 parent: 2 - - uid: 35661 + - uid: 38524 components: - type: Transform pos: -34.5,-3.5 parent: 2 - - uid: 35662 + - uid: 38525 components: - type: Transform pos: -34.5,-4.5 parent: 2 - - uid: 35663 + - uid: 38526 components: - type: Transform pos: -34.5,-5.5 parent: 2 - - uid: 35664 + - uid: 38527 components: - type: Transform pos: -39.5,-24.5 parent: 2 - - uid: 35665 + - uid: 38528 components: - type: Transform pos: -39.5,-14.5 parent: 2 - - uid: 35666 + - uid: 38529 components: - type: Transform pos: -39.5,-16.5 parent: 2 - - uid: 35667 + - uid: 38530 components: - type: Transform pos: -38.5,-16.5 parent: 2 - - uid: 35668 + - uid: 38531 components: - type: Transform pos: -37.5,-16.5 parent: 2 - - uid: 35669 + - uid: 38532 components: - type: Transform pos: -36.5,-16.5 parent: 2 - - uid: 35670 + - uid: 38533 components: - type: Transform pos: -35.5,-16.5 parent: 2 - - uid: 35671 + - uid: 38534 components: - type: Transform pos: -35.5,-15.5 parent: 2 - - uid: 35672 + - uid: 38535 components: - type: Transform pos: -35.5,-14.5 parent: 2 - - uid: 35673 + - uid: 38536 components: - type: Transform pos: -39.5,-18.5 parent: 2 - - uid: 35674 + - uid: 38537 components: - type: Transform pos: -39.5,-19.5 parent: 2 - - uid: 35675 + - uid: 38538 components: - type: Transform pos: -39.5,-23.5 parent: 2 - - uid: 35676 + - uid: 38539 components: - type: Transform pos: -38.5,-24.5 parent: 2 - - uid: 35677 + - uid: 38540 components: - type: Transform pos: -34.5,-24.5 parent: 2 - - uid: 35678 + - uid: 38541 components: - type: Transform pos: -33.5,-24.5 parent: 2 - - uid: 35679 + - uid: 38542 components: - type: Transform pos: -33.5,-23.5 parent: 2 - - uid: 35680 + - uid: 38543 components: - type: Transform pos: -33.5,-22.5 parent: 2 - - uid: 35681 + - uid: 38544 components: - type: Transform pos: -33.5,-21.5 parent: 2 - - uid: 35682 + - uid: 38545 components: - type: Transform pos: -33.5,-20.5 parent: 2 - - uid: 35683 + - uid: 38546 components: - type: Transform pos: -33.5,-19.5 parent: 2 - - uid: 35684 + - uid: 38547 components: - type: Transform pos: -33.5,-18.5 parent: 2 - - uid: 35685 + - uid: 38548 components: - type: Transform pos: -34.5,-18.5 parent: 2 - - uid: 35686 + - uid: 38549 components: - type: Transform pos: -35.5,-18.5 parent: 2 - - uid: 35687 + - uid: 38550 components: - type: Transform pos: -36.5,-18.5 parent: 2 - - uid: 35688 + - uid: 38551 components: - type: Transform pos: -37.5,-18.5 parent: 2 - - uid: 35689 + - uid: 38552 components: - type: Transform pos: -38.5,-18.5 parent: 2 - - uid: 35690 + - uid: 38553 components: - type: Transform pos: -33.5,-25.5 parent: 2 - - uid: 35691 + - uid: 38554 components: - type: Transform pos: -33.5,-36.5 parent: 2 - - uid: 35692 + - uid: 38555 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-34.5 parent: 2 - - uid: 35693 + - uid: 38556 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-34.5 parent: 2 - - uid: 35694 + - uid: 38557 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-34.5 parent: 2 - - uid: 35695 + - uid: 38558 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-30.5 parent: 2 - - uid: 35696 + - uid: 38559 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-32.5 parent: 2 - - uid: 35697 + - uid: 38560 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-33.5 parent: 2 - - uid: 35698 + - uid: 38561 components: - type: Transform pos: -31.5,-30.5 parent: 2 - - uid: 35699 + - uid: 38562 components: - type: Transform pos: -33.5,-40.5 parent: 2 - - uid: 35700 + - uid: 38563 components: - type: Transform pos: -37.5,2.5 parent: 2 - - uid: 35701 + - uid: 38564 components: - type: Transform pos: -36.5,2.5 parent: 2 - - uid: 35702 + - uid: 38565 components: - type: Transform pos: -35.5,2.5 parent: 2 - - uid: 35703 + - uid: 38566 components: - type: Transform pos: -34.5,2.5 parent: 2 - - uid: 35704 + - uid: 38567 components: - type: Transform pos: -40.5,2.5 parent: 2 - - uid: 35705 + - uid: 38568 components: - type: Transform pos: -40.5,3.5 parent: 2 - - uid: 35706 + - uid: 38569 components: - type: Transform pos: -40.5,4.5 parent: 2 - - uid: 35707 + - uid: 38570 components: - type: Transform pos: -40.5,5.5 parent: 2 - - uid: 35708 + - uid: 38571 components: - type: Transform pos: -41.5,5.5 parent: 2 - - uid: 35709 + - uid: 38572 components: - type: Transform pos: -42.5,5.5 parent: 2 - - uid: 35710 + - uid: 38573 components: - type: Transform pos: -43.5,5.5 parent: 2 - - uid: 35711 + - uid: 38574 components: - type: Transform pos: -44.5,5.5 parent: 2 - - uid: 35712 + - uid: 38575 components: - type: Transform pos: -45.5,5.5 parent: 2 - - uid: 35713 + - uid: 38576 components: - type: Transform pos: -46.5,5.5 parent: 2 - - uid: 35714 + - uid: 38577 components: - type: Transform pos: -47.5,5.5 parent: 2 - - uid: 35715 + - uid: 38578 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,-31.5 parent: 2 - - uid: 35716 + - uid: 38579 components: - type: Transform pos: -48.5,5.5 parent: 2 - - uid: 35717 + - uid: 38580 components: - type: Transform pos: -50.5,5.5 parent: 2 - - uid: 35718 + - uid: 38581 components: - type: Transform pos: -34.5,3.5 parent: 2 - - uid: 35719 + - uid: 38582 components: - type: Transform pos: -34.5,5.5 parent: 2 - - uid: 35720 + - uid: 38583 components: - type: Transform pos: -30.5,-30.5 parent: 2 - - uid: 35721 + - uid: 38584 components: - type: Transform pos: -30.5,-25.5 parent: 2 - - uid: 35722 + - uid: 38585 components: - type: Transform pos: -30.5,-24.5 parent: 2 - - uid: 35723 + - uid: 38586 components: - type: Transform pos: -30.5,-23.5 parent: 2 - - uid: 35724 + - uid: 38587 components: - type: Transform pos: -30.5,-22.5 parent: 2 - - uid: 35725 + - uid: 38588 components: - type: Transform pos: -30.5,-21.5 parent: 2 - - uid: 35726 + - uid: 38589 components: - type: Transform pos: -30.5,-20.5 parent: 2 - - uid: 35727 + - uid: 38590 components: - type: Transform pos: -30.5,-16.5 parent: 2 - - uid: 35728 + - uid: 38591 components: - type: Transform pos: -30.5,-15.5 parent: 2 - - uid: 35729 + - uid: 38592 components: - type: Transform pos: -30.5,-14.5 parent: 2 - - uid: 35730 + - uid: 38593 components: - type: Transform pos: -30.5,-13.5 parent: 2 - - uid: 35731 + - uid: 38594 components: - type: Transform pos: -30.5,-12.5 parent: 2 - - uid: 35732 + - uid: 38595 components: - type: Transform pos: -30.5,-8.5 parent: 2 - - uid: 35733 + - uid: 38596 components: - type: Transform pos: -29.5,-8.5 parent: 2 - - uid: 35734 + - uid: 38597 components: - type: Transform pos: -29.5,-6.5 parent: 2 - - uid: 35735 + - uid: 38598 components: - type: Transform pos: -30.5,-6.5 parent: 2 - - uid: 35736 + - uid: 38599 components: - type: Transform pos: -31.5,-6.5 parent: 2 - - uid: 35737 + - uid: 38600 components: - type: Transform pos: -31.5,-5.5 parent: 2 - - uid: 35738 + - uid: 38601 components: - type: Transform pos: -31.5,-4.5 parent: 2 - - uid: 35739 + - uid: 38602 components: - type: Transform pos: -31.5,-3.5 parent: 2 - - uid: 35740 + - uid: 38603 components: - type: Transform pos: -31.5,-2.5 parent: 2 - - uid: 35741 + - uid: 38604 components: - type: Transform pos: -31.5,-1.5 parent: 2 - - uid: 35742 + - uid: 38605 components: - type: Transform pos: -31.5,-0.5 parent: 2 - - uid: 35743 + - uid: 38606 components: - type: Transform pos: -31.5,0.5 parent: 2 - - uid: 35744 + - uid: 38607 components: - type: Transform pos: -31.5,2.5 parent: 2 - - uid: 35745 + - uid: 38608 components: - type: Transform pos: -28.5,-6.5 parent: 2 - - uid: 35746 + - uid: 38609 components: - type: Transform pos: -28.5,-5.5 parent: 2 - - uid: 35747 + - uid: 38610 components: - type: Transform pos: -28.5,-3.5 parent: 2 - - uid: 35748 + - uid: 38611 components: - type: Transform pos: -33.5,9.5 parent: 2 - - uid: 35749 + - uid: 38612 components: - type: Transform pos: -32.5,9.5 parent: 2 - - uid: 35750 + - uid: 38613 components: - type: Transform pos: -31.5,9.5 parent: 2 - - uid: 35751 + - uid: 38614 components: - type: Transform pos: -32.5,10.5 parent: 2 - - uid: 35752 + - uid: 38615 components: - type: Transform pos: -27.5,-3.5 parent: 2 - - uid: 35753 + - uid: 38616 components: - type: Transform pos: -32.5,14.5 parent: 2 - - uid: 35755 + - uid: 38617 components: - type: Transform pos: -33.5,12.5 parent: 2 - - uid: 35756 + - uid: 38618 components: - type: Transform pos: -33.5,2.5 parent: 2 - - uid: 35757 + - uid: 38619 components: - type: Transform pos: -32.5,2.5 parent: 2 - - uid: 35758 + - uid: 38620 components: - type: Transform pos: -27.5,-2.5 parent: 2 - - uid: 35759 + - uid: 38621 components: - type: Transform pos: -27.5,-1.5 parent: 2 - - uid: 35760 + - uid: 38622 components: - type: Transform pos: -33.5,11.5 parent: 2 - - uid: 35761 + - uid: 38623 components: - type: Transform pos: -24.5,-1.5 parent: 2 - - uid: 35762 + - uid: 38624 components: - type: Transform pos: -24.5,-0.5 parent: 2 - - uid: 35763 + - uid: 38625 components: - type: Transform pos: -22.5,-0.5 parent: 2 - - uid: 35769 + - uid: 38626 components: - type: Transform pos: -28.5,9.5 parent: 2 - - uid: 35770 + - uid: 38627 components: - type: Transform pos: -27.5,9.5 parent: 2 - - uid: 35771 + - uid: 38628 components: - type: Transform pos: -26.5,9.5 parent: 2 - - uid: 35802 + - uid: 38629 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-41.5 parent: 2 - - uid: 35803 + - uid: 38630 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-37.5 parent: 2 - - uid: 35804 + - uid: 38631 components: - type: Transform pos: -12.5,4.5 parent: 2 - - uid: 35815 + - uid: 38632 components: - type: Transform pos: -9.5,-0.5 parent: 2 - - uid: 35816 + - uid: 38633 components: - type: Transform pos: -3.5,-0.5 parent: 2 - - uid: 35817 + - uid: 38634 components: - type: Transform pos: -3.5,0.5 parent: 2 - - uid: 35818 + - uid: 38635 components: - type: Transform pos: -3.5,1.5 parent: 2 - - uid: 35819 + - uid: 38636 components: - type: Transform pos: -3.5,2.5 parent: 2 - - uid: 35820 + - uid: 38637 components: - type: Transform pos: -68.5,-40.5 parent: 2 - - uid: 35821 + - uid: 38638 components: - type: Transform pos: -63.5,-40.5 parent: 2 - - uid: 35822 + - uid: 38639 components: - type: Transform pos: -33.5,10.5 parent: 2 - - uid: 35823 + - uid: 38640 components: - type: Transform pos: 38.5,-9.5 parent: 2 - - uid: 35824 + - uid: 38641 components: - type: Transform pos: 21.5,10.5 parent: 2 - - uid: 35825 + - uid: 38642 components: - type: Transform pos: 21.5,9.5 parent: 2 - - uid: 35826 + - uid: 38643 components: - type: Transform pos: -26.5,15.5 parent: 2 - - uid: 35827 + - uid: 38644 components: - type: Transform pos: -27.5,15.5 parent: 2 - - uid: 35828 + - uid: 38645 components: - type: Transform pos: -28.5,15.5 parent: 2 - - uid: 35829 + - uid: 38646 components: - type: Transform pos: -29.5,15.5 parent: 2 - - uid: 35830 + - uid: 38647 components: - type: Transform pos: -30.5,15.5 parent: 2 - - uid: 35831 + - uid: 38648 components: - type: Transform pos: -32.5,15.5 parent: 2 - - uid: 35832 + - uid: 38649 components: - type: Transform pos: -38.5,5.5 parent: 2 - - uid: 35833 + - uid: 38650 components: - type: Transform pos: -38.5,4.5 parent: 2 - - uid: 35834 + - uid: 38651 components: - type: Transform pos: -38.5,3.5 parent: 2 - - uid: 35835 + - uid: 38652 components: - type: Transform pos: -38.5,2.5 parent: 2 - - uid: 35836 + - uid: 38653 components: - type: Transform pos: -25.5,15.5 parent: 2 - - uid: 35837 + - uid: 38654 components: - type: Transform pos: -25.5,14.5 parent: 2 - - uid: 35838 + - uid: 38655 components: - type: Transform pos: -25.5,13.5 parent: 2 - - uid: 35839 + - uid: 38656 components: - type: Transform pos: -25.5,12.5 parent: 2 - - uid: 35840 + - uid: 38657 components: - type: Transform pos: -25.5,11.5 parent: 2 - - uid: 35841 + - uid: 38658 components: - type: Transform pos: -25.5,10.5 parent: 2 - - uid: 35842 + - uid: 38659 components: - type: Transform pos: -33.5,13.5 parent: 2 - - uid: 35843 + - uid: 38660 components: - type: Transform pos: -33.5,14.5 parent: 2 - - uid: 35844 + - uid: 38661 components: - type: Transform pos: -48.5,-7.5 parent: 2 - - uid: 35845 + - uid: 38662 components: - type: Transform pos: -47.5,6.5 parent: 2 - - uid: 35846 + - uid: 38663 components: - type: Transform pos: -48.5,7.5 parent: 2 - - uid: 35847 + - uid: 38664 components: - type: Transform pos: -47.5,7.5 parent: 2 - - uid: 35848 + - uid: 38665 components: - type: Transform pos: -50.5,7.5 parent: 2 - - uid: 35849 + - uid: 38666 components: - type: Transform pos: 79.5,-35.5 parent: 2 - - uid: 35850 + - uid: 38667 components: - type: Transform rot: 1.5707963267948966 rad pos: 62.5,-34.5 parent: 2 - - uid: 35851 + - uid: 38668 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,-74.5 parent: 2 - - uid: 35852 + - uid: 38669 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-74.5 parent: 2 - - uid: 35853 + - uid: 38670 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,-74.5 parent: 2 - - uid: 35854 + - uid: 38671 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-74.5 parent: 2 - - uid: 35855 + - uid: 38672 components: - type: Transform pos: -11.5,-81.5 parent: 2 - - uid: 35856 + - uid: 38673 components: - type: Transform pos: 18.5,-98.5 parent: 2 - - uid: 35859 + - uid: 38674 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-45.5 parent: 2 - - uid: 35860 + - uid: 38675 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,-45.5 parent: 2 - - uid: 35861 + - uid: 38676 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-45.5 parent: 2 - - uid: 35862 + - uid: 38677 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,-45.5 parent: 2 - - uid: 35863 + - uid: 38678 components: - type: Transform pos: 41.5,-75.5 parent: 2 - - uid: 35864 + - uid: 38679 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,-72.5 parent: 2 - - uid: 35865 + - uid: 38680 components: - type: Transform pos: 41.5,-74.5 parent: 2 - - uid: 35866 + - uid: 38681 components: - type: Transform pos: 46.5,-70.5 parent: 2 - - uid: 35867 + - uid: 38682 components: - type: Transform pos: 41.5,-71.5 parent: 2 - - uid: 35868 + - uid: 38683 components: - type: Transform pos: 41.5,-73.5 parent: 2 - - uid: 35869 + - uid: 38684 components: - type: Transform pos: 41.5,-72.5 parent: 2 - - uid: 35870 + - uid: 38685 components: - type: Transform pos: 47.5,-70.5 parent: 2 - - uid: 35871 + - uid: 38686 components: - type: Transform pos: 47.5,-71.5 parent: 2 - - uid: 35872 + - uid: 38687 components: - type: Transform pos: 17.5,-98.5 parent: 2 - - uid: 35873 + - uid: 38688 components: - type: Transform pos: -13.5,-81.5 parent: 2 - - uid: 35874 + - uid: 38689 components: - type: Transform pos: 8.5,-84.5 parent: 2 - - uid: 35875 + - uid: 38690 components: - type: Transform pos: 31.5,-80.5 parent: 2 - - uid: 35876 + - uid: 38691 components: - type: Transform pos: -12.5,-91.5 parent: 2 - - uid: 35877 + - uid: 38692 components: - type: Transform pos: -11.5,-91.5 parent: 2 - - uid: 35878 + - uid: 38693 components: - type: Transform pos: -13.5,-91.5 parent: 2 - - uid: 35879 + - uid: 38694 components: - type: Transform pos: -14.5,-91.5 parent: 2 - - uid: 35880 + - uid: 38695 components: - type: Transform pos: 40.5,-70.5 parent: 2 - - uid: 35886 + - uid: 38696 components: - type: Transform pos: 34.5,-56.5 parent: 2 - - uid: 35887 + - uid: 38697 components: - type: Transform pos: 32.5,-56.5 parent: 2 - - uid: 35888 + - uid: 38698 components: - type: Transform pos: 33.5,-67.5 parent: 2 - - uid: 35889 + - uid: 38699 components: - type: Transform pos: 37.5,-56.5 parent: 2 - - uid: 35890 + - uid: 38700 components: - type: Transform pos: 36.5,-56.5 parent: 2 - - uid: 35891 + - uid: 38701 components: - type: Transform pos: 33.5,-68.5 parent: 2 - - uid: 35892 + - uid: 38702 components: - type: Transform pos: 31.5,-60.5 parent: 2 - - uid: 35893 + - uid: 38703 components: - type: Transform pos: 33.5,-56.5 parent: 2 - - uid: 35894 + - uid: 38704 components: - type: Transform pos: 38.5,-56.5 parent: 2 - - uid: 35895 + - uid: 38705 components: - type: Transform pos: 35.5,-56.5 parent: 2 - - uid: 35896 + - uid: 38706 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-84.5 parent: 2 - - uid: 35897 + - uid: 38707 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-85.5 parent: 2 - - uid: 35898 + - uid: 38708 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-85.5 parent: 2 - - uid: 35899 + - uid: 38709 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-85.5 parent: 2 - - uid: 35900 + - uid: 38710 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-85.5 parent: 2 - - uid: 35901 + - uid: 38711 components: - type: Transform pos: -19.5,-74.5 parent: 2 - - uid: 35908 + - uid: 38712 components: - type: Transform pos: -63.5,-46.5 parent: 2 - - uid: 35914 + - uid: 38713 components: - type: Transform pos: -40.5,-86.5 parent: 2 - - uid: 35915 + - uid: 38714 components: - type: Transform pos: -42.5,-82.5 parent: 2 - - uid: 35916 + - uid: 38715 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-95.5 parent: 2 - - uid: 35917 + - uid: 38716 components: - type: Transform pos: -44.5,-90.5 parent: 2 - - uid: 35918 + - uid: 38717 components: - type: Transform pos: -45.5,-90.5 parent: 2 - - uid: 35920 + - uid: 38718 components: - type: Transform pos: -50.5,-47.5 parent: 2 - - uid: 35921 + - uid: 38719 components: - type: Transform pos: -62.5,-35.5 parent: 2 - - uid: 35922 + - uid: 38720 components: - type: Transform pos: -63.5,-35.5 parent: 2 - - uid: 35923 + - uid: 38721 components: - type: Transform pos: -64.5,-35.5 parent: 2 - - uid: 35924 + - uid: 38722 components: - type: Transform pos: -65.5,-35.5 parent: 2 - - uid: 35925 + - uid: 38723 components: - type: Transform pos: -66.5,-35.5 parent: 2 - - uid: 35926 + - uid: 38724 components: - type: Transform pos: -67.5,-35.5 parent: 2 - - uid: 35927 + - uid: 38725 components: - type: Transform pos: -68.5,-35.5 parent: 2 - - uid: 35929 + - uid: 38726 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-85.5 parent: 2 - - uid: 35930 + - uid: 38727 components: - type: Transform pos: -62.5,-36.5 parent: 2 - - uid: 35931 + - uid: 38728 components: - type: Transform pos: -62.5,-37.5 parent: 2 - - uid: 35932 + - uid: 38729 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-96.5 parent: 2 - - uid: 35935 + - uid: 38730 components: - type: Transform pos: -62.5,-39.5 parent: 2 - - uid: 35936 + - uid: 38731 components: - type: Transform pos: -62.5,-40.5 parent: 2 - - uid: 35937 + - uid: 38732 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-97.5 parent: 2 - - uid: 35938 + - uid: 38733 components: - type: Transform pos: -64.5,-63.5 parent: 2 - - uid: 35939 + - uid: 38734 components: - type: Transform pos: 27.5,-80.5 parent: 2 - - uid: 35940 + - uid: 38735 components: - type: Transform pos: 43.5,24.5 parent: 2 - - uid: 35941 + - uid: 38736 components: - type: Transform pos: 43.5,23.5 parent: 2 - - uid: 35942 + - uid: 38737 components: - type: Transform pos: 43.5,22.5 parent: 2 - - uid: 35943 + - uid: 38738 components: - type: Transform pos: 43.5,21.5 parent: 2 - - uid: 35944 + - uid: 38739 components: - type: Transform pos: 46.5,19.5 parent: 2 - - uid: 35945 + - uid: 38740 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-98.5 parent: 2 - - uid: 35946 + - uid: 38741 components: - type: Transform pos: 43.5,20.5 parent: 2 - - uid: 35947 + - uid: 38742 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-73.5 parent: 2 - - uid: 35948 + - uid: 38743 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-71.5 parent: 2 - - uid: 35949 + - uid: 38744 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-71.5 parent: 2 - - uid: 35950 + - uid: 38745 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-72.5 parent: 2 - - uid: 35951 + - uid: 38746 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-73.5 parent: 2 - - uid: 35952 + - uid: 38747 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-73.5 parent: 2 - - uid: 35953 + - uid: 38748 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-72.5 parent: 2 - - uid: 35954 + - uid: 38749 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-72.5 parent: 2 - - uid: 35955 + - uid: 38750 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-73.5 parent: 2 - - uid: 35956 + - uid: 38751 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-71.5 parent: 2 - - uid: 35957 + - uid: 38752 components: - type: Transform pos: -14.5,-82.5 parent: 2 - - uid: 35958 + - uid: 38753 components: - type: Transform pos: -14.5,-81.5 parent: 2 - - uid: 35959 + - uid: 38754 components: - type: Transform pos: -14.5,-83.5 parent: 2 - - uid: 35960 + - uid: 38755 components: - type: Transform pos: 43.5,19.5 parent: 2 - - uid: 35961 + - uid: 38756 components: - type: Transform pos: 27.5,-82.5 parent: 2 - - uid: 35963 + - uid: 38757 components: - type: Transform pos: 27.5,-81.5 parent: 2 - - uid: 35964 + - uid: 38758 components: - type: Transform pos: 23.5,-82.5 parent: 2 - - uid: 35965 + - uid: 38759 components: - type: Transform pos: 16.5,-98.5 parent: 2 - - uid: 35966 + - uid: 38760 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,19.5 parent: 2 - - uid: 35967 + - uid: 38761 components: - type: Transform pos: 45.5,19.5 parent: 2 - - uid: 35968 + - uid: 38762 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-14.5 parent: 2 - - uid: 35969 + - uid: 38763 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-53.5 parent: 2 - - uid: 35976 + - uid: 38764 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-53.5 parent: 2 - - uid: 35977 + - uid: 38765 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-53.5 parent: 2 - - uid: 35978 + - uid: 38766 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-53.5 parent: 2 - - uid: 35979 + - uid: 38767 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-53.5 parent: 2 - - uid: 35980 + - uid: 38768 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-71.5 parent: 2 - - uid: 35981 + - uid: 38769 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,19.5 parent: 2 - - uid: 35982 + - uid: 38770 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-85.5 parent: 2 - - uid: 35983 + - uid: 38771 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-85.5 parent: 2 - - uid: 35984 + - uid: 38772 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-70.5 parent: 2 - - uid: 35985 + - uid: 38773 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-69.5 parent: 2 - - uid: 35986 + - uid: 38774 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-67.5 parent: 2 - - uid: 35987 + - uid: 38775 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-50.5 parent: 2 - - uid: 35988 + - uid: 38776 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-52.5 parent: 2 - - uid: 35989 + - uid: 38777 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-52.5 parent: 2 - - uid: 35990 + - uid: 38778 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-52.5 parent: 2 - - uid: 35991 + - uid: 38779 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,-51.5 parent: 2 - - uid: 35992 + - uid: 38780 components: - type: Transform pos: 47.5,-75.5 parent: 2 - - uid: 35993 + - uid: 38781 components: - type: Transform pos: 47.5,-76.5 parent: 2 - - uid: 35994 + - uid: 38782 components: - type: Transform pos: 45.5,-76.5 parent: 2 - - uid: 35995 + - uid: 38783 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-53.5 parent: 2 - - uid: 35996 + - uid: 38784 components: - type: Transform pos: 46.5,-76.5 parent: 2 - - uid: 35999 + - uid: 38785 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-45.5 parent: 2 - - uid: 36000 + - uid: 38786 components: - type: Transform pos: -63.5,-25.5 parent: 2 - - uid: 36001 + - uid: 38787 components: - type: Transform pos: 42.5,19.5 parent: 2 - - uid: 36003 + - uid: 38788 components: - type: Transform pos: 52.5,-29.5 parent: 2 - - uid: 36004 + - uid: 38789 components: - type: Transform pos: 53.5,-29.5 parent: 2 - - uid: 36005 + - uid: 38790 components: - type: Transform pos: 54.5,-29.5 parent: 2 - - uid: 36006 + - uid: 38791 components: - type: Transform pos: 55.5,-29.5 parent: 2 - - uid: 36007 + - uid: 38792 components: - type: Transform pos: 32.5,-25.5 parent: 2 - - uid: 36008 + - uid: 38793 components: - type: Transform pos: 51.5,-29.5 parent: 2 - - uid: 36009 + - uid: 38794 components: - type: Transform pos: 50.5,-29.5 parent: 2 - - uid: 36010 + - uid: 38795 components: - type: Transform pos: 19.5,-75.5 parent: 2 - - uid: 36011 + - uid: 38796 components: - type: Transform pos: 18.5,-75.5 parent: 2 - - uid: 36012 + - uid: 38797 components: - type: Transform pos: 17.5,-75.5 parent: 2 - - uid: 36013 + - uid: 38798 components: - type: Transform pos: 20.5,-75.5 parent: 2 - - uid: 36014 + - uid: 38799 components: - type: Transform pos: -31.5,-61.5 parent: 2 - - uid: 36015 + - uid: 38800 components: - type: Transform pos: -31.5,-58.5 parent: 2 - - uid: 36016 + - uid: 38801 components: - type: Transform pos: -31.5,-60.5 parent: 2 - - uid: 36017 + - uid: 38802 components: - type: Transform pos: -31.5,-59.5 parent: 2 - - uid: 36018 + - uid: 38803 components: - type: Transform pos: -31.5,-57.5 parent: 2 - - uid: 36019 + - uid: 38804 components: - type: Transform pos: -31.5,-10.5 parent: 2 - - uid: 36020 + - uid: 38805 components: - type: Transform pos: -31.5,-25.5 parent: 2 - - uid: 36021 + - uid: 38806 components: - type: Transform pos: -31.5,-9.5 parent: 2 - - uid: 36022 + - uid: 38807 components: - type: Transform pos: -31.5,-8.5 parent: 2 - - uid: 36023 + - uid: 38808 components: - type: Transform pos: -31.5,-26.5 parent: 2 - - uid: 36024 + - uid: 38809 components: - type: Transform pos: -31.5,-27.5 parent: 2 - - uid: 36025 + - uid: 38810 components: - type: Transform pos: -31.5,-28.5 parent: 2 - - uid: 36026 + - uid: 38811 components: - type: Transform pos: -31.5,-29.5 parent: 2 - - uid: 36027 + - uid: 38812 components: - type: Transform pos: -30.5,-17.5 parent: 2 - - uid: 36028 + - uid: 38813 components: - type: Transform pos: -30.5,-18.5 parent: 2 - - uid: 36029 + - uid: 38814 components: - type: Transform pos: -30.5,-19.5 parent: 2 - - uid: 36030 + - uid: 38815 components: - type: Transform pos: 32.5,-29.5 parent: 2 - - uid: 36031 + - uid: 38816 components: - type: Transform pos: 32.5,-28.5 parent: 2 - - uid: 36032 + - uid: 38817 components: - type: Transform pos: 32.5,-27.5 parent: 2 - - uid: 36033 + - uid: 38818 components: - type: Transform pos: 32.5,-26.5 parent: 2 - - uid: 36034 + - uid: 38819 components: - type: Transform pos: 15.5,-75.5 parent: 2 - - uid: 36035 + - uid: 38820 components: - type: Transform pos: 16.5,-75.5 parent: 2 - - uid: 36036 + - uid: 38821 components: - type: Transform pos: -31.5,-11.5 parent: 2 - - uid: 36037 + - uid: 38822 components: - type: Transform pos: -31.5,-12.5 parent: 2 - - uid: 36042 + - uid: 38823 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,19.5 parent: 2 - - uid: 36043 + - uid: 38824 components: - type: Transform pos: 42.5,17.5 parent: 2 - - uid: 36044 + - uid: 38825 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-51.5 parent: 2 - - uid: 36045 + - uid: 38826 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-53.5 parent: 2 - - uid: 36046 + - uid: 38827 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-74.5 parent: 2 - - uid: 36047 + - uid: 38828 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-73.5 parent: 2 - - uid: 36049 + - uid: 38829 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-72.5 parent: 2 - - uid: 36050 + - uid: 38830 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-72.5 parent: 2 - - uid: 36053 + - uid: 38831 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-28.5 parent: 2 - - uid: 36060 + - uid: 38832 components: - type: Transform pos: -69.5,-28.5 parent: 2 - - uid: 36061 + - uid: 38833 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-46.5 parent: 2 - - uid: 36063 + - uid: 38834 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,20.5 parent: 2 - - uid: 36066 + - uid: 38835 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-41.5 parent: 2 - - uid: 36067 + - uid: 38836 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-37.5 parent: 2 - - uid: 36068 + - uid: 38837 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,-40.5 parent: 2 - - uid: 36069 + - uid: 38838 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-38.5 parent: 2 - - uid: 36074 + - uid: 38839 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,-85.5 parent: 2 - - uid: 36075 + - uid: 38840 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-85.5 parent: 2 - - uid: 36077 + - uid: 38841 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-50.5 parent: 2 - - uid: 36078 + - uid: 38842 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,-49.5 parent: 2 - - uid: 36079 + - uid: 38843 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,-50.5 parent: 2 - - uid: 36080 + - uid: 38844 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-50.5 parent: 2 - - uid: 36081 + - uid: 38845 components: - type: Transform pos: -39.5,-9.5 parent: 2 - - uid: 36082 + - uid: 38846 components: - type: Transform pos: -38.5,-9.5 parent: 2 - - uid: 36083 + - uid: 38847 components: - type: Transform pos: -37.5,-9.5 parent: 2 - - uid: 36084 + - uid: 38848 components: - type: Transform pos: -37.5,-10.5 parent: 2 - - uid: 36085 + - uid: 38849 components: - type: Transform pos: -37.5,-12.5 parent: 2 - - uid: 36086 + - uid: 38850 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-45.5 parent: 2 - - uid: 36087 + - uid: 38851 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-45.5 parent: 2 - - uid: 36088 + - uid: 38852 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-45.5 parent: 2 - - uid: 36108 + - uid: 38853 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-92.5 parent: 2 - - uid: 36109 + - uid: 38854 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-96.5 parent: 2 - - uid: 36110 + - uid: 38855 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-95.5 parent: 2 - - uid: 36111 + - uid: 38856 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-94.5 parent: 2 - - uid: 36112 + - uid: 38857 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-43.5 parent: 2 - - uid: 36113 + - uid: 38858 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-42.5 parent: 2 - - uid: 36114 + - uid: 38859 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,-43.5 parent: 2 - - uid: 36115 + - uid: 38860 components: - type: Transform pos: 23.5,-87.5 parent: 2 - - uid: 36116 + - uid: 38861 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-94.5 parent: 2 - - uid: 36117 + - uid: 38862 components: - type: Transform pos: 24.5,-83.5 parent: 2 - - uid: 36118 + - uid: 38863 components: - type: Transform pos: 16.5,-82.5 parent: 2 - - uid: 36119 + - uid: 38864 components: - type: Transform pos: 17.5,-82.5 parent: 2 - - uid: 36120 + - uid: 38865 components: - type: Transform pos: 18.5,-82.5 parent: 2 - - uid: 36121 + - uid: 38866 components: - type: Transform pos: 19.5,-82.5 parent: 2 - - uid: 36122 + - uid: 38867 components: - type: Transform pos: 20.5,-82.5 parent: 2 - - uid: 36123 + - uid: 38868 components: - type: Transform pos: 16.5,-81.5 parent: 2 - - uid: 36124 + - uid: 38869 components: - type: Transform pos: 16.5,-79.5 parent: 2 - - uid: 36125 + - uid: 38870 components: - type: Transform pos: 16.5,-78.5 parent: 2 - - uid: 36127 + - uid: 38871 components: - type: Transform pos: 16.5,-76.5 parent: 2 - - uid: 36128 + - uid: 38872 components: - type: Transform pos: 21.5,-82.5 parent: 2 - - uid: 36129 + - uid: 38873 components: - type: Transform pos: 21.5,-81.5 parent: 2 - - uid: 36130 + - uid: 38874 components: - type: Transform pos: 21.5,-80.5 parent: 2 - - uid: 36131 + - uid: 38875 components: - type: Transform pos: 21.5,-79.5 parent: 2 - - uid: 36132 + - uid: 38876 components: - type: Transform pos: 21.5,-78.5 parent: 2 - - uid: 36134 + - uid: 38877 components: - type: Transform pos: 21.5,-76.5 parent: 2 - - uid: 36135 + - uid: 38878 components: - type: Transform pos: 21.5,-75.5 parent: 2 - - uid: 36136 + - uid: 38879 components: - type: Transform pos: 25.5,-83.5 parent: 2 - - uid: 36137 + - uid: 38880 components: - type: Transform pos: 23.5,-83.5 parent: 2 - - uid: 36138 + - uid: 38881 components: - type: Transform pos: 23.5,-85.5 parent: 2 - - uid: 36139 + - uid: 38882 components: - type: Transform pos: 23.5,-75.5 parent: 2 - - uid: 36140 + - uid: 38883 components: - type: Transform pos: 23.5,-76.5 parent: 2 - - uid: 36141 + - uid: 38884 components: - type: Transform pos: 23.5,-77.5 parent: 2 - - uid: 36142 + - uid: 38885 components: - type: Transform pos: 24.5,-77.5 parent: 2 - - uid: 36143 + - uid: 38886 components: - type: Transform pos: 25.5,-77.5 parent: 2 - - uid: 36144 + - uid: 38887 components: - type: Transform pos: 26.5,-77.5 parent: 2 - - uid: 36145 + - uid: 38888 components: - type: Transform pos: 27.5,-77.5 parent: 2 - - uid: 36146 + - uid: 38889 components: - type: Transform pos: 28.5,-77.5 parent: 2 - - uid: 36147 + - uid: 38890 components: - type: Transform pos: 29.5,-77.5 parent: 2 - - uid: 36148 + - uid: 38891 components: - type: Transform pos: 30.5,-77.5 parent: 2 - - uid: 36149 + - uid: 38892 components: - type: Transform pos: 30.5,-75.5 parent: 2 - - uid: 36150 + - uid: 38893 components: - type: Transform pos: 30.5,-74.5 parent: 2 - - uid: 36151 + - uid: 38894 components: - type: Transform pos: 30.5,-73.5 parent: 2 - - uid: 36152 + - uid: 38895 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-46.5 parent: 2 - - uid: 36153 + - uid: 38896 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,-25.5 parent: 2 - - uid: 36154 + - uid: 38897 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-25.5 parent: 2 - - uid: 36155 + - uid: 38898 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-24.5 parent: 2 - - uid: 36156 + - uid: 38899 components: - type: Transform pos: 31.5,-24.5 parent: 2 - - uid: 36157 + - uid: 38900 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-43.5 parent: 2 - - uid: 36158 + - uid: 38901 components: - type: Transform rot: 1.5707963267948966 rad pos: 70.5,-43.5 parent: 2 - - uid: 36159 + - uid: 38902 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-43.5 parent: 2 - - uid: 36160 + - uid: 38903 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,-43.5 parent: 2 - - uid: 36161 + - uid: 38904 components: - type: Transform pos: 23.5,-84.5 parent: 2 - - uid: 36162 + - uid: 38905 components: - type: Transform pos: -63.5,-51.5 parent: 2 - - uid: 36163 + - uid: 38906 components: - type: Transform pos: -62.5,-51.5 parent: 2 - - uid: 36164 + - uid: 38907 components: - type: Transform pos: -61.5,-51.5 parent: 2 - - uid: 36165 + - uid: 38908 components: - type: Transform pos: -60.5,-51.5 parent: 2 - - uid: 36166 + - uid: 38909 components: - type: Transform pos: -60.5,-50.5 parent: 2 - - uid: 36167 + - uid: 38910 components: - type: Transform pos: -60.5,-48.5 parent: 2 - - uid: 36168 + - uid: 38911 components: - type: Transform pos: -60.5,-47.5 parent: 2 - - uid: 36169 + - uid: 38912 components: - type: Transform pos: -60.5,-46.5 parent: 2 - - uid: 36170 + - uid: 38913 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-46.5 parent: 2 - - uid: 36171 + - uid: 38914 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-90.5 parent: 2 - - uid: 36172 + - uid: 38915 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-90.5 parent: 2 - - uid: 36173 + - uid: 38916 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-91.5 parent: 2 - - uid: 36174 + - uid: 38917 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-92.5 parent: 2 - - uid: 36175 + - uid: 38918 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-93.5 parent: 2 - - uid: 36176 + - uid: 38919 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-93.5 parent: 2 - - uid: 36177 + - uid: 38920 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-93.5 parent: 2 - - uid: 36178 + - uid: 38921 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-91.5 parent: 2 - - uid: 36179 + - uid: 38922 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-91.5 parent: 2 - - uid: 36180 + - uid: 38923 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-90.5 parent: 2 - - uid: 36181 + - uid: 38924 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-89.5 parent: 2 - - uid: 36182 + - uid: 38925 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-89.5 parent: 2 - - uid: 36183 + - uid: 38926 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-88.5 parent: 2 - - uid: 36184 + - uid: 38927 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-87.5 parent: 2 - - uid: 36185 + - uid: 38928 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,12.5 parent: 2 - - uid: 36186 + - uid: 38929 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,13.5 parent: 2 - - uid: 36187 + - uid: 38930 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,13.5 parent: 2 - - uid: 36188 + - uid: 38931 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,13.5 parent: 2 - - uid: 36189 + - uid: 38932 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,13.5 parent: 2 - - uid: 36190 - components: - - type: Transform - pos: -12.5,13.5 - parent: 2 - - uid: 36191 - components: - - type: Transform - pos: -12.5,15.5 - parent: 2 - - uid: 36192 + - uid: 38933 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-50.5 parent: 2 - - uid: 36193 + - uid: 38934 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-34.5 parent: 2 - - uid: 36194 + - uid: 38935 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-34.5 parent: 2 - - uid: 36195 + - uid: 38936 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-33.5 parent: 2 - - uid: 36196 + - uid: 38937 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-32.5 parent: 2 - - uid: 36197 + - uid: 38938 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-31.5 parent: 2 - - uid: 36198 + - uid: 38939 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-30.5 parent: 2 - - uid: 36199 + - uid: 38940 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-30.5 parent: 2 - - uid: 36200 + - uid: 38941 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-30.5 parent: 2 - - uid: 36201 + - uid: 38942 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-30.5 parent: 2 - - uid: 36202 + - uid: 38943 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-30.5 parent: 2 - - uid: 36203 + - uid: 38944 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-30.5 parent: 2 - - uid: 36204 + - uid: 38945 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-31.5 parent: 2 - - uid: 36205 + - uid: 38946 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-33.5 parent: 2 - - uid: 36206 + - uid: 38947 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-34.5 parent: 2 - - uid: 36207 + - uid: 38948 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-26.5 parent: 2 - - uid: 36208 + - uid: 38949 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-24.5 parent: 2 - - uid: 36209 + - uid: 38950 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-23.5 parent: 2 - - uid: 36210 + - uid: 38951 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-27.5 parent: 2 - - uid: 36211 + - uid: 38952 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-27.5 parent: 2 - - uid: 36212 + - uid: 38953 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-27.5 parent: 2 - - uid: 36213 + - uid: 38954 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-27.5 parent: 2 - - uid: 36214 + - uid: 38955 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-27.5 parent: 2 - - uid: 36215 + - uid: 38956 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-26.5 parent: 2 - - uid: 36216 + - uid: 38957 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-24.5 parent: 2 - - uid: 36217 + - uid: 38958 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-23.5 parent: 2 - - uid: 36218 + - uid: 38959 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-22.5 parent: 2 - - uid: 36219 + - uid: 38960 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-22.5 parent: 2 - - uid: 36220 + - uid: 38961 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,-22.5 parent: 2 - - uid: 36221 + - uid: 38962 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-22.5 parent: 2 - - uid: 36222 + - uid: 38963 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-22.5 parent: 2 - - uid: 36223 + - uid: 38964 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-22.5 parent: 2 - - uid: 36224 + - uid: 38965 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-21.5 parent: 2 - - uid: 36225 + - uid: 38966 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,-20.5 parent: 2 - - uid: 36236 + - uid: 38967 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-15.5 parent: 2 - - uid: 36237 + - uid: 38968 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,-15.5 parent: 2 - - uid: 36238 + - uid: 38969 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-15.5 parent: 2 - - uid: 36239 + - uid: 38970 components: - type: Transform pos: -73.5,-29.5 parent: 2 - - uid: 36240 + - uid: 38971 components: - type: Transform pos: -73.5,-31.5 parent: 2 - - uid: 36241 + - uid: 38972 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-49.5 parent: 2 - - uid: 36242 + - uid: 38973 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-48.5 parent: 2 - - uid: 36243 + - uid: 38974 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,-47.5 parent: 2 - - uid: 36244 + - uid: 38975 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,19.5 parent: 2 - - uid: 36245 + - uid: 38976 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,19.5 parent: 2 - - uid: 36246 + - uid: 38977 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,19.5 parent: 2 - - uid: 36247 + - uid: 38978 components: - type: Transform pos: 29.5,31.5 parent: 2 - - uid: 36248 + - uid: 38979 components: - type: Transform pos: 31.5,31.5 parent: 2 - - uid: 36249 + - uid: 38980 components: - type: Transform pos: 30.5,31.5 parent: 2 - - uid: 36250 + - uid: 38981 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,21.5 parent: 2 - - uid: 36251 + - uid: 38982 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,23.5 parent: 2 - - uid: 36252 + - uid: 38983 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,22.5 parent: 2 - - uid: 36253 + - uid: 38984 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,18.5 parent: 2 - - uid: 36254 + - uid: 38985 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,18.5 parent: 2 - - uid: 36255 + - uid: 38986 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,18.5 parent: 2 - - uid: 36256 + - uid: 38987 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,18.5 parent: 2 - - uid: 36257 + - uid: 38988 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,18.5 parent: 2 - - uid: 36258 + - uid: 38989 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,18.5 parent: 2 - - uid: 36259 + - uid: 38990 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,19.5 parent: 2 - - uid: 36260 + - uid: 38991 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,20.5 parent: 2 - - uid: 36261 + - uid: 38992 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,22.5 parent: 2 - - uid: 36262 + - uid: 38993 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,21.5 parent: 2 - - uid: 36263 + - uid: 38994 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,23.5 parent: 2 - - uid: 36264 + - uid: 38995 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,20.5 parent: 2 - - uid: 36265 + - uid: 38996 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,20.5 parent: 2 - - uid: 36266 + - uid: 38997 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,20.5 parent: 2 - - uid: 36267 + - uid: 38998 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,21.5 parent: 2 - - uid: 36268 + - uid: 38999 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,23.5 parent: 2 - - uid: 36269 + - uid: 39000 components: - type: Transform rot: 3.141592653589793 rad pos: 32.5,24.5 parent: 2 - - uid: 36270 + - uid: 39001 components: - type: Transform rot: 3.141592653589793 rad pos: 33.5,24.5 parent: 2 - - uid: 36271 + - uid: 39002 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,24.5 parent: 2 - - uid: 36272 + - uid: 39003 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,24.5 parent: 2 - - uid: 36273 + - uid: 39004 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,24.5 parent: 2 - - uid: 36274 + - uid: 39005 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-50.5 parent: 2 - - uid: 36275 + - uid: 39006 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,-50.5 parent: 2 - - uid: 36276 + - uid: 39007 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-50.5 parent: 2 - - uid: 36277 + - uid: 39008 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,-50.5 parent: 2 - - uid: 36278 + - uid: 39009 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-50.5 parent: 2 - - uid: 36279 + - uid: 39010 components: - type: Transform pos: 29.5,25.5 parent: 2 - - uid: 36280 + - uid: 39011 components: - type: Transform pos: 28.5,23.5 parent: 2 - - uid: 36281 + - uid: 39012 components: - type: Transform pos: 24.5,23.5 parent: 2 - - uid: 36282 + - uid: 39013 components: - type: Transform pos: -52.5,-96.5 parent: 2 - - uid: 36283 + - uid: 39014 components: - type: Transform pos: -51.5,-96.5 parent: 2 - - uid: 36284 + - uid: 39015 components: - type: Transform pos: -50.5,-96.5 parent: 2 - - uid: 36285 + - uid: 39016 components: - type: Transform pos: -49.5,-96.5 parent: 2 - - uid: 36286 + - uid: 39017 components: - type: Transform pos: -46.5,-96.5 parent: 2 - - uid: 36287 + - uid: 39018 components: - type: Transform pos: -45.5,-96.5 parent: 2 - - uid: 36288 + - uid: 39019 components: - type: Transform pos: -44.5,-96.5 parent: 2 - - uid: 36289 + - uid: 39020 components: - type: Transform pos: -43.5,-96.5 parent: 2 - - uid: 36290 + - uid: 39021 components: - type: Transform pos: -42.5,-96.5 parent: 2 - - uid: 36291 + - uid: 39022 components: - type: Transform pos: -42.5,-97.5 parent: 2 - - uid: 36292 + - uid: 39023 components: - type: Transform pos: -42.5,-98.5 parent: 2 - - uid: 36293 + - uid: 39024 components: - type: Transform pos: -42.5,-99.5 parent: 2 - - uid: 36294 + - uid: 39025 components: - type: Transform pos: -42.5,-100.5 parent: 2 - - uid: 36295 + - uid: 39026 components: - type: Transform pos: -42.5,-101.5 parent: 2 - - uid: 36296 + - uid: 39027 components: - type: Transform pos: -42.5,-102.5 parent: 2 - - uid: 36297 + - uid: 39028 components: - type: Transform pos: -41.5,-96.5 parent: 2 - - uid: 36298 + - uid: 39029 components: - type: Transform pos: -38.5,-96.5 parent: 2 - - uid: 36299 + - uid: 39030 components: - type: Transform pos: -40.5,-96.5 parent: 2 - - uid: 36300 + - uid: 39031 components: - type: Transform pos: -39.5,-96.5 parent: 2 - - uid: 36301 + - uid: 39032 components: - type: Transform pos: -37.5,-96.5 parent: 2 - - uid: 36302 + - uid: 39033 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-95.5 parent: 2 - - uid: 36303 + - uid: 39034 components: - type: Transform pos: -40.5,18.5 parent: 2 - - uid: 36304 + - uid: 39035 components: - type: Transform pos: -40.5,17.5 parent: 2 - - uid: 36305 + - uid: 39036 components: - type: Transform pos: -40.5,16.5 parent: 2 - - uid: 36306 + - uid: 39037 components: - type: Transform pos: -40.5,15.5 parent: 2 - - uid: 36307 + - uid: 39038 components: - type: Transform pos: -40.5,14.5 parent: 2 - - uid: 36308 + - uid: 39039 components: - type: Transform pos: -40.5,13.5 parent: 2 - - uid: 36309 + - uid: 39040 components: - type: Transform pos: -40.5,12.5 parent: 2 - - uid: 36310 + - uid: 39041 components: - type: Transform pos: -53.5,10.5 parent: 2 - - uid: 36311 + - uid: 39042 components: - type: Transform pos: -52.5,10.5 parent: 2 - - uid: 36312 + - uid: 39043 components: - type: Transform pos: -51.5,10.5 parent: 2 - - uid: 36313 + - uid: 39044 components: - type: Transform pos: -50.5,10.5 parent: 2 - - uid: 36314 + - uid: 39045 components: - type: Transform pos: -49.5,10.5 parent: 2 - - uid: 36315 + - uid: 39046 components: - type: Transform pos: -48.5,10.5 parent: 2 - - uid: 36316 + - uid: 39047 components: - type: Transform pos: -44.5,10.5 parent: 2 - - uid: 36317 + - uid: 39048 components: - type: Transform pos: -43.5,10.5 parent: 2 - - uid: 36318 + - uid: 39049 components: - type: Transform pos: -42.5,10.5 parent: 2 - - uid: 36319 + - uid: 39050 components: - type: Transform pos: -41.5,10.5 parent: 2 - - uid: 36320 + - uid: 39051 components: - type: Transform pos: -40.5,10.5 parent: 2 - - uid: 36321 + - uid: 39052 components: - type: Transform pos: -40.5,11.5 parent: 2 - - uid: 36322 + - uid: 39053 components: - type: Transform pos: -49.5,14.5 parent: 2 - - uid: 36323 + - uid: 39054 components: - type: Transform pos: -53.5,14.5 parent: 2 - - uid: 36324 + - uid: 39055 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,13.5 parent: 2 - - uid: 36325 + - uid: 39056 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,13.5 parent: 2 - - uid: 36326 + - uid: 39057 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,13.5 parent: 2 - - uid: 36327 + - uid: 39058 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,13.5 parent: 2 - - uid: 36328 + - uid: 39059 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,14.5 parent: 2 - - uid: 36329 + - uid: 39060 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,17.5 parent: 2 - - uid: 36330 + - uid: 39061 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,18.5 parent: 2 - - uid: 36333 + - uid: 39062 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-14.5 parent: 2 - - uid: 36334 + - uid: 39063 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-12.5 parent: 2 - - uid: 36335 + - uid: 39064 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-11.5 parent: 2 - - uid: 36336 + - uid: 39065 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-11.5 parent: 2 - - uid: 36337 + - uid: 39066 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-11.5 parent: 2 - - uid: 36338 + - uid: 39067 components: - type: Transform rot: 1.5707963267948966 rad pos: -68.5,-11.5 parent: 2 - - uid: 36339 + - uid: 39068 components: - type: Transform pos: 79.5,-20.5 parent: 2 - - uid: 36340 + - uid: 39069 components: - type: Transform pos: 78.5,-20.5 parent: 2 - - uid: 36341 + - uid: 39070 components: - type: Transform pos: 77.5,-20.5 parent: 2 - - uid: 36342 + - uid: 39071 components: - type: Transform pos: 76.5,-20.5 parent: 2 - - uid: 36343 + - uid: 39072 components: - type: Transform pos: 75.5,-20.5 parent: 2 - - uid: 36344 + - uid: 39073 components: - type: Transform pos: 75.5,-19.5 parent: 2 - - uid: 36345 + - uid: 39074 components: - type: Transform pos: 75.5,-18.5 parent: 2 - - uid: 36346 + - uid: 39075 components: - type: Transform pos: 75.5,-16.5 parent: 2 - - uid: 36347 + - uid: 39076 components: - type: Transform pos: 70.5,-20.5 parent: 2 - - uid: 36348 + - uid: 39077 components: - type: Transform pos: 71.5,-20.5 parent: 2 - - uid: 36349 + - uid: 39078 components: - type: Transform pos: 72.5,-20.5 parent: 2 - - uid: 36350 + - uid: 39079 components: - type: Transform pos: 73.5,-20.5 parent: 2 - - uid: 36351 + - uid: 39080 components: - type: Transform pos: 73.5,-17.5 parent: 2 - - uid: 36353 + - uid: 39081 components: - type: Transform pos: 70.5,-19.5 parent: 2 - - uid: 36356 + - uid: 39082 components: - type: Transform pos: 73.5,-19.5 parent: 2 - - uid: 36357 + - uid: 39083 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-72.5 parent: 2 - - uid: 36358 + - uid: 39084 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-50.5 parent: 2 - - uid: 36359 + - uid: 39085 components: - type: Transform pos: 8.5,-73.5 parent: 2 - - uid: 36360 + - uid: 39086 components: - type: Transform pos: -6.5,-73.5 parent: 2 - - uid: 36361 + - uid: 39087 components: - type: Transform pos: -36.5,16.5 parent: 2 - - uid: 36362 + - uid: 39088 components: - type: Transform pos: -52.5,-82.5 parent: 2 - - uid: 36363 + - uid: 39089 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-28.5 parent: 2 - - uid: 36364 + - uid: 39090 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,17.5 parent: 2 - - uid: 36365 + - uid: 39091 components: - type: Transform pos: 42.5,-67.5 parent: 2 - - uid: 36366 + - uid: 39092 components: - type: Transform pos: 41.5,-67.5 parent: 2 - - uid: 36367 + - uid: 39093 components: - type: Transform pos: 90.5,-42.5 parent: 2 - - uid: 36368 + - uid: 39094 components: - type: Transform pos: 91.5,-42.5 parent: 2 - - uid: 36369 + - uid: 39095 components: - type: Transform pos: 92.5,-42.5 parent: 2 - - uid: 36370 + - uid: 39096 components: - type: Transform pos: 97.5,-42.5 parent: 2 - - uid: 36371 + - uid: 39097 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-123.5 parent: 2 - - uid: 36372 + - uid: 39098 components: - type: Transform pos: 99.5,-42.5 parent: 2 - - uid: 36373 + - uid: 39099 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,8.5 parent: 2 - - uid: 36374 + - uid: 39100 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-39.5 parent: 2 - - uid: 36375 + - uid: 39101 components: - type: Transform rot: -1.5707963267948966 rad pos: 109.5,-43.5 parent: 2 - - uid: 36376 + - uid: 39102 components: - type: Transform rot: -1.5707963267948966 rad pos: 108.5,-43.5 parent: 2 - - uid: 36377 + - uid: 39103 components: - type: Transform rot: -1.5707963267948966 rad pos: 107.5,-43.5 parent: 2 - - uid: 36378 + - uid: 39104 components: - type: Transform rot: -1.5707963267948966 rad pos: 105.5,-43.5 parent: 2 - - uid: 36379 + - uid: 39105 components: - type: Transform rot: -1.5707963267948966 rad pos: 104.5,-43.5 parent: 2 - - uid: 36380 + - uid: 39106 components: - type: Transform pos: 4.5,-1.5 parent: 2 - - uid: 36381 + - uid: 39107 components: - type: Transform pos: 31.5,-15.5 parent: 2 - - uid: 36382 + - uid: 39108 components: - type: Transform pos: 10.5,-1.5 parent: 2 - - uid: 36383 + - uid: 39109 components: - type: Transform pos: 40.5,24.5 parent: 2 - - uid: 36384 + - uid: 39110 components: - type: Transform pos: -28.5,-107.5 parent: 2 - - uid: 36385 + - uid: 39111 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,23.5 parent: 2 - - uid: 36386 + - uid: 39112 components: - type: Transform pos: 75.5,-44.5 parent: 2 - - uid: 36387 + - uid: 39113 components: - type: Transform pos: 76.5,-43.5 parent: 2 - - uid: 36388 + - uid: 39114 components: - type: Transform pos: 80.5,-47.5 parent: 2 - - uid: 36389 + - uid: 39115 components: - type: Transform pos: 79.5,-47.5 parent: 2 - - uid: 36390 + - uid: 39116 components: - type: Transform pos: 76.5,-47.5 parent: 2 - - uid: 36391 + - uid: 39117 components: - type: Transform pos: 77.5,-47.5 parent: 2 - - uid: 36392 + - uid: 39118 components: - type: Transform pos: 78.5,-47.5 parent: 2 - - uid: 36393 + - uid: 39119 components: - type: Transform pos: 80.5,-50.5 parent: 2 - - uid: 36394 + - uid: 39120 components: - type: Transform pos: 80.5,-49.5 parent: 2 - - uid: 36395 + - uid: 39121 components: - type: Transform pos: 73.5,-50.5 parent: 2 - - uid: 36396 + - uid: 39122 components: - type: Transform pos: 72.5,-49.5 parent: 2 - - uid: 36397 + - uid: 39123 components: - type: Transform pos: 72.5,-50.5 parent: 2 - - uid: 36398 + - uid: 39124 components: - type: Transform pos: -69.5,-0.5 parent: 2 - - uid: 36399 + - uid: 39125 components: - type: Transform pos: -69.5,-1.5 parent: 2 - - uid: 36400 + - uid: 39126 components: - type: Transform pos: -69.5,1.5 parent: 2 - - uid: 36401 + - uid: 39127 components: - type: Transform pos: -69.5,0.5 parent: 2 - - uid: 36402 + - uid: 39128 components: - type: Transform pos: -69.5,3.5 parent: 2 - - uid: 36403 + - uid: 39129 components: - type: Transform pos: -69.5,-2.5 parent: 2 - - uid: 36404 + - uid: 39130 components: - type: Transform pos: 79.5,-50.5 parent: 2 - - uid: 36405 + - uid: 39131 components: - type: Transform pos: -69.5,4.5 parent: 2 - - uid: 36406 + - uid: 39132 components: - type: Transform pos: 81.5,-50.5 parent: 2 - - uid: 36407 + - uid: 39133 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-43.5 parent: 2 - - uid: 36408 + - uid: 39134 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-43.5 parent: 2 - - uid: 36409 + - uid: 39135 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,-43.5 parent: 2 - - uid: 36410 + - uid: 39136 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,-43.5 parent: 2 - - uid: 36411 + - uid: 39137 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-43.5 parent: 2 - - uid: 36412 + - uid: 39138 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,-43.5 parent: 2 - - uid: 36413 + - uid: 39139 components: - type: Transform pos: 78.5,-43.5 parent: 2 - - uid: 36414 + - uid: 39140 components: - type: Transform pos: 77.5,-43.5 parent: 2 - - uid: 36415 + - uid: 39141 components: - type: Transform pos: 75.5,-43.5 parent: 2 - - uid: 36416 + - uid: 39142 components: - type: Transform pos: 74.5,-43.5 parent: 2 - - uid: 36417 + - uid: 39143 components: - type: Transform pos: 64.5,-47.5 parent: 2 - - uid: 36418 + - uid: 39144 components: - type: Transform pos: 65.5,-47.5 parent: 2 - - uid: 36419 + - uid: 39145 components: - type: Transform pos: 66.5,-47.5 parent: 2 - - uid: 36420 + - uid: 39146 components: - type: Transform pos: 67.5,-47.5 parent: 2 - - uid: 36421 + - uid: 39147 components: - type: Transform pos: 68.5,-47.5 parent: 2 - - uid: 36422 + - uid: 39148 components: - type: Transform pos: 68.5,-46.5 parent: 2 - - uid: 36423 + - uid: 39149 components: - type: Transform pos: 64.5,-50.5 parent: 2 - - uid: 36424 + - uid: 39150 components: - type: Transform pos: 64.5,-49.5 parent: 2 - - uid: 36425 + - uid: 39151 components: - type: Transform pos: 64.5,-48.5 parent: 2 - - uid: 36426 + - uid: 39152 components: - type: Transform pos: 72.5,-48.5 parent: 2 - - uid: 36427 + - uid: 39153 components: - type: Transform pos: -30.5,-99.5 parent: 2 - - uid: 36428 + - uid: 39154 components: - type: Transform pos: -29.5,-99.5 parent: 2 - - uid: 36429 + - uid: 39155 components: - type: Transform pos: -28.5,-99.5 parent: 2 - - uid: 36430 + - uid: 39156 components: - type: Transform pos: -35.5,-99.5 parent: 2 - - uid: 36431 + - uid: 39157 components: - type: Transform pos: -34.5,-99.5 parent: 2 - - uid: 36432 + - uid: 39158 components: - type: Transform pos: -33.5,-99.5 parent: 2 - - uid: 36433 + - uid: 39159 components: - type: Transform pos: -32.5,-99.5 parent: 2 - - uid: 36434 + - uid: 39160 components: - type: Transform pos: -31.5,-99.5 parent: 2 - - uid: 36435 + - uid: 39161 components: - type: Transform pos: -54.5,-89.5 parent: 2 - - uid: 36436 + - uid: 39162 components: - type: Transform pos: -54.5,-90.5 parent: 2 - - uid: 36437 + - uid: 39163 components: - type: Transform pos: -54.5,-91.5 parent: 2 - - uid: 36438 + - uid: 39164 components: - type: Transform pos: -54.5,-92.5 parent: 2 - - uid: 36439 + - uid: 39165 components: - type: Transform pos: -53.5,-93.5 parent: 2 - - uid: 36440 + - uid: 39166 components: - type: Transform pos: -53.5,-95.5 parent: 2 - - uid: 36441 + - uid: 39167 components: - type: Transform pos: -53.5,-97.5 parent: 2 - - uid: 36442 + - uid: 39168 components: - type: Transform pos: -53.5,-96.5 parent: 2 - - uid: 36443 + - uid: 39169 components: - type: Transform pos: -53.5,-99.5 parent: 2 - - uid: 36444 + - uid: 39170 components: - type: Transform pos: -53.5,-98.5 parent: 2 - - uid: 36445 + - uid: 39171 components: - type: Transform pos: 75.5,-47.5 parent: 2 - - uid: 36446 + - uid: 39172 components: - type: Transform pos: 70.5,-46.5 parent: 2 - - uid: 36447 + - uid: 39173 components: - type: Transform pos: 71.5,-46.5 parent: 2 - - uid: 36448 + - uid: 39174 components: - type: Transform pos: 72.5,-46.5 parent: 2 - - uid: 36449 + - uid: 39175 components: - type: Transform pos: -36.5,-99.5 parent: 2 - - uid: 36450 + - uid: 39176 components: - type: Transform pos: -53.5,-100.5 parent: 2 - - uid: 36451 + - uid: 39177 components: - type: Transform pos: -53.5,-101.5 parent: 2 - - uid: 36452 + - uid: 39178 components: - type: Transform pos: -53.5,-102.5 parent: 2 - - uid: 36453 + - uid: 39179 components: - type: Transform pos: -53.5,-104.5 parent: 2 - - uid: 36454 + - uid: 39180 components: - type: Transform pos: -52.5,-104.5 parent: 2 - - uid: 36455 + - uid: 39181 components: - type: Transform pos: -51.5,-104.5 parent: 2 - - uid: 36456 + - uid: 39182 components: - type: Transform pos: -50.5,-104.5 parent: 2 - - uid: 36457 + - uid: 39183 components: - type: Transform pos: -49.5,-104.5 parent: 2 - - uid: 36458 + - uid: 39184 components: - type: Transform pos: -48.5,-104.5 parent: 2 - - uid: 36459 + - uid: 39185 components: - type: Transform pos: -47.5,-104.5 parent: 2 - - uid: 36460 + - uid: 39186 components: - type: Transform pos: -46.5,-104.5 parent: 2 - - uid: 36461 + - uid: 39187 components: - type: Transform pos: -45.5,-104.5 parent: 2 - - uid: 36462 + - uid: 39188 components: - type: Transform pos: -44.5,-104.5 parent: 2 - - uid: 36463 + - uid: 39189 components: - type: Transform pos: -43.5,-104.5 parent: 2 - - uid: 36464 + - uid: 39190 components: - type: Transform pos: -42.5,-104.5 parent: 2 - - uid: 36465 + - uid: 39191 components: - type: Transform pos: -36.5,-100.5 parent: 2 - - uid: 36466 + - uid: 39192 components: - type: Transform pos: -36.5,-101.5 parent: 2 - - uid: 36467 + - uid: 39193 components: - type: Transform pos: -36.5,-102.5 parent: 2 - - uid: 36468 + - uid: 39194 components: - type: Transform pos: -37.5,-104.5 parent: 2 - - uid: 36469 + - uid: 39195 components: - type: Transform pos: -38.5,-104.5 parent: 2 - - uid: 36470 + - uid: 39196 components: - type: Transform pos: -39.5,-104.5 parent: 2 - - uid: 36471 + - uid: 39197 components: - type: Transform pos: -40.5,-104.5 parent: 2 - - uid: 36472 + - uid: 39198 components: - type: Transform pos: -41.5,-104.5 parent: 2 - - uid: 36473 + - uid: 39199 components: - type: Transform pos: 72.5,-47.5 parent: 2 - - uid: 36474 + - uid: 39200 components: - type: Transform pos: 74.5,-47.5 parent: 2 - - uid: 36475 + - uid: 39201 components: - type: Transform pos: -27.5,-104.5 parent: 2 - - uid: 36476 + - uid: 39202 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-113.5 parent: 2 - - uid: 36477 + - uid: 39203 components: - type: Transform pos: -36.5,-104.5 parent: 2 - - uid: 36478 + - uid: 39204 components: - type: Transform pos: 80.5,-44.5 parent: 2 - - uid: 36479 + - uid: 39205 components: - type: Transform pos: -28.5,-105.5 parent: 2 - - uid: 36480 + - uid: 39206 components: - type: Transform pos: -34.5,-108.5 parent: 2 - - uid: 36481 + - uid: 39207 components: - type: Transform pos: -33.5,-108.5 parent: 2 - - uid: 36482 + - uid: 39208 components: - type: Transform pos: -32.5,-108.5 parent: 2 - - uid: 36483 + - uid: 39209 components: - type: Transform pos: -31.5,-108.5 parent: 2 - - uid: 36484 + - uid: 39210 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-107.5 parent: 2 - - uid: 36485 + - uid: 39211 components: - type: Transform pos: -29.5,-108.5 parent: 2 - - uid: 36486 + - uid: 39212 components: - type: Transform pos: -35.5,-108.5 parent: 2 - - uid: 36487 + - uid: 39213 components: - type: Transform pos: -36.5,-108.5 parent: 2 - - uid: 36488 + - uid: 39214 components: - type: Transform pos: -36.5,-107.5 parent: 2 - - uid: 36489 + - uid: 39215 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-108.5 parent: 2 - - uid: 36490 + - uid: 39216 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-108.5 parent: 2 - - uid: 36491 + - uid: 39217 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-107.5 parent: 2 - - uid: 36492 + - uid: 39218 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-107.5 parent: 2 - - uid: 36493 + - uid: 39219 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-107.5 parent: 2 - - uid: 36494 + - uid: 39220 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-107.5 parent: 2 - - uid: 36495 + - uid: 39221 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-107.5 parent: 2 - - uid: 36496 + - uid: 39222 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-107.5 parent: 2 - - uid: 36497 + - uid: 39223 components: - type: Transform pos: -53.5,-105.5 parent: 2 - - uid: 36498 + - uid: 39224 components: - type: Transform rot: 1.5707963267948966 rad pos: -39.5,-111.5 parent: 2 - - uid: 36499 + - uid: 39225 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-111.5 parent: 2 - - uid: 36500 + - uid: 39226 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-111.5 parent: 2 - - uid: 36501 + - uid: 39227 components: - type: Transform rot: 1.5707963267948966 rad pos: -36.5,-111.5 parent: 2 - - uid: 36502 + - uid: 39228 components: - type: Transform pos: -36.5,-110.5 parent: 2 - - uid: 36503 + - uid: 39229 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-111.5 parent: 2 - - uid: 36505 + - uid: 39230 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-111.5 parent: 2 - - uid: 36506 + - uid: 39231 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-118.5 parent: 2 - - uid: 36507 + - uid: 39232 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-116.5 parent: 2 - - uid: 36508 + - uid: 39233 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-112.5 parent: 2 - - uid: 36509 + - uid: 39234 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-111.5 parent: 2 - - uid: 36510 + - uid: 39235 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-111.5 parent: 2 - - uid: 36511 + - uid: 39236 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-111.5 parent: 2 - - uid: 36512 + - uid: 39237 components: - type: Transform pos: -53.5,-103.5 parent: 2 - - uid: 36513 + - uid: 39238 components: - type: Transform pos: -36.5,-106.5 parent: 2 - - uid: 36514 + - uid: 39239 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-111.5 parent: 2 - - uid: 36515 + - uid: 39240 components: - type: Transform pos: -47.5,-113.5 parent: 2 - - uid: 36516 + - uid: 39241 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-112.5 parent: 2 - - uid: 36517 + - uid: 39242 components: - type: Transform pos: -44.5,-112.5 parent: 2 - - uid: 36518 + - uid: 39243 components: - type: Transform pos: -45.5,-112.5 parent: 2 - - uid: 36519 + - uid: 39244 components: - type: Transform pos: -46.5,-112.5 parent: 2 - - uid: 36520 + - uid: 39245 components: - type: Transform pos: -47.5,-112.5 parent: 2 - - uid: 36521 + - uid: 39246 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-111.5 parent: 2 - - uid: 36522 + - uid: 39247 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-110.5 parent: 2 - - uid: 36523 + - uid: 39248 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-109.5 parent: 2 - - uid: 36524 + - uid: 39249 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-108.5 parent: 2 - - uid: 36525 + - uid: 39250 components: - type: Transform pos: -48.5,-113.5 parent: 2 - - uid: 36526 + - uid: 39251 components: - type: Transform pos: -49.5,-113.5 parent: 2 - - uid: 36527 + - uid: 39252 components: - type: Transform pos: -50.5,-113.5 parent: 2 - - uid: 36528 + - uid: 39253 components: - type: Transform pos: -51.5,-113.5 parent: 2 - - uid: 36529 + - uid: 39254 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-113.5 parent: 2 - - uid: 36530 + - uid: 39255 components: - type: Transform pos: -46.5,-118.5 parent: 2 - - uid: 36531 + - uid: 39256 components: - type: Transform pos: -44.5,-118.5 parent: 2 - - uid: 36532 + - uid: 39257 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-118.5 parent: 2 - - uid: 36533 + - uid: 39258 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-117.5 parent: 2 - - uid: 36534 + - uid: 39259 components: - type: Transform pos: -47.5,-117.5 parent: 2 - - uid: 36535 + - uid: 39260 components: - type: Transform pos: -47.5,-118.5 parent: 2 - - uid: 36536 + - uid: 39261 components: - type: Transform pos: -51.5,-117.5 parent: 2 - - uid: 36537 + - uid: 39262 components: - type: Transform pos: -50.5,-117.5 parent: 2 - - uid: 36538 + - uid: 39263 components: - type: Transform pos: -48.5,-117.5 parent: 2 - - uid: 36539 + - uid: 39264 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-114.5 parent: 2 - - uid: 36540 + - uid: 39265 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-115.5 parent: 2 - - uid: 36541 + - uid: 39266 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-116.5 parent: 2 - - uid: 36542 + - uid: 39267 components: - type: Transform pos: -49.5,-117.5 parent: 2 - - uid: 36543 + - uid: 39268 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-111.5 parent: 2 - - uid: 36544 + - uid: 39269 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-111.5 parent: 2 - - uid: 36545 + - uid: 39270 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-23.5 parent: 2 - - uid: 36546 + - uid: 39271 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-24.5 parent: 2 - - uid: 36547 + - uid: 39272 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-25.5 parent: 2 - - uid: 36548 + - uid: 39273 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-26.5 parent: 2 - - uid: 36549 + - uid: 39274 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-27.5 parent: 2 - - uid: 36550 + - uid: 39275 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-28.5 parent: 2 - - uid: 36551 + - uid: 39276 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-28.5 parent: 2 - - uid: 36552 + - uid: 39277 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-3.5 parent: 2 - - uid: 36553 + - uid: 39278 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-3.5 parent: 2 - - uid: 36554 + - uid: 39279 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-3.5 parent: 2 - - uid: 36555 + - uid: 39280 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-3.5 parent: 2 - - uid: 36556 + - uid: 39281 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-3.5 parent: 2 - - uid: 36557 + - uid: 39282 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,4.5 parent: 2 - - uid: 36558 + - uid: 39283 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,3.5 parent: 2 - - uid: 36559 + - uid: 39284 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,2.5 parent: 2 - - uid: 36560 + - uid: 39285 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,1.5 parent: 2 - - uid: 36561 + - uid: 39286 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,0.5 parent: 2 - - uid: 36562 + - uid: 39287 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-0.5 parent: 2 - - uid: 36563 + - uid: 39288 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-1.5 parent: 2 - - uid: 36564 + - uid: 39289 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-2.5 parent: 2 - - uid: 36565 + - uid: 39290 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-3.5 parent: 2 - - uid: 36566 + - uid: 39291 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-5.5 parent: 2 - - uid: 36567 + - uid: 39292 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-6.5 parent: 2 - - uid: 36568 + - uid: 39293 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-111.5 parent: 2 - - uid: 36569 + - uid: 39294 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-6.5 parent: 2 - - uid: 36570 + - uid: 39295 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-7.5 parent: 2 - - uid: 36571 + - uid: 39296 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-6.5 parent: 2 - - uid: 36572 + - uid: 39297 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-6.5 parent: 2 - - uid: 36573 + - uid: 39298 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-6.5 parent: 2 - - uid: 36574 + - uid: 39299 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-4.5 parent: 2 - - uid: 36575 + - uid: 39300 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-6.5 parent: 2 - - uid: 36576 + - uid: 39301 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-6.5 parent: 2 - - uid: 36577 + - uid: 39302 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-7.5 parent: 2 - - uid: 36578 + - uid: 39303 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-8.5 parent: 2 - - uid: 36579 + - uid: 39304 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-9.5 parent: 2 - - uid: 36580 + - uid: 39305 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-10.5 parent: 2 - - uid: 36581 + - uid: 39306 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-11.5 parent: 2 - - uid: 36582 + - uid: 39307 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-11.5 parent: 2 - - uid: 36583 + - uid: 39308 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-11.5 parent: 2 - - uid: 36584 + - uid: 39309 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-12.5 parent: 2 - - uid: 36585 + - uid: 39310 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-13.5 parent: 2 - - uid: 36586 + - uid: 39311 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-13.5 parent: 2 - - uid: 36587 + - uid: 39312 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-14.5 parent: 2 - - uid: 36588 + - uid: 39313 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-15.5 parent: 2 - - uid: 36589 + - uid: 39314 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-16.5 parent: 2 - - uid: 36590 + - uid: 39315 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-17.5 parent: 2 - - uid: 36591 + - uid: 39316 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-18.5 parent: 2 - - uid: 36592 + - uid: 39317 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-18.5 parent: 2 - - uid: 36593 + - uid: 39318 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-23.5 parent: 2 - - uid: 36594 + - uid: 39319 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-23.5 parent: 2 - - uid: 36595 + - uid: 39320 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-23.5 parent: 2 - - uid: 36596 + - uid: 39321 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-23.5 parent: 2 - - uid: 36597 + - uid: 39322 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-23.5 parent: 2 - - uid: 36598 + - uid: 39323 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-22.5 parent: 2 - - uid: 36599 + - uid: 39324 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-21.5 parent: 2 - - uid: 36600 + - uid: 39325 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-20.5 parent: 2 - - uid: 36601 + - uid: 39326 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-19.5 parent: 2 - - uid: 36602 + - uid: 39327 components: - type: Transform pos: -79.5,-2.5 parent: 2 - - uid: 36603 + - uid: 39328 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-7.5 parent: 2 - - uid: 36604 + - uid: 39329 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-8.5 parent: 2 - - uid: 36605 + - uid: 39330 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-9.5 parent: 2 - - uid: 36606 + - uid: 39331 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-10.5 parent: 2 - - uid: 36607 + - uid: 39332 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-11.5 parent: 2 - - uid: 36608 + - uid: 39333 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-12.5 parent: 2 - - uid: 36609 + - uid: 39334 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-13.5 parent: 2 - - uid: 36610 + - uid: 39335 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-17.5 parent: 2 - - uid: 36611 + - uid: 39336 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-13.5 parent: 2 - - uid: 36612 + - uid: 39337 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-16.5 parent: 2 - - uid: 36613 + - uid: 39338 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-13.5 parent: 2 - - uid: 36614 + - uid: 39339 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-8.5 parent: 2 - - uid: 36615 + - uid: 39340 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-9.5 parent: 2 - - uid: 36616 + - uid: 39341 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-16.5 parent: 2 - - uid: 36617 + - uid: 39342 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-11.5 parent: 2 - - uid: 36618 + - uid: 39343 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-12.5 parent: 2 - - uid: 36619 + - uid: 39344 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-18.5 parent: 2 - - uid: 36620 + - uid: 39345 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-19.5 parent: 2 - - uid: 36621 + - uid: 39346 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-22.5 parent: 2 - - uid: 36622 + - uid: 39347 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-22.5 parent: 2 - - uid: 36623 + - uid: 39348 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-22.5 parent: 2 - - uid: 36624 + - uid: 39349 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-22.5 parent: 2 - - uid: 36625 + - uid: 39350 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-23.5 parent: 2 - - uid: 36626 + - uid: 39351 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-24.5 parent: 2 - - uid: 36627 + - uid: 39352 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-25.5 parent: 2 - - uid: 36628 + - uid: 39353 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-26.5 parent: 2 - - uid: 36629 + - uid: 39354 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-18.5 parent: 2 - - uid: 36630 + - uid: 39355 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-18.5 parent: 2 - - uid: 36631 + - uid: 39356 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-18.5 parent: 2 - - uid: 36632 + - uid: 39357 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-27.5 parent: 2 - - uid: 36633 + - uid: 39358 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,-18.5 parent: 2 - - uid: 36634 + - uid: 39359 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,-12.5 parent: 2 - - uid: 36635 + - uid: 39360 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,-12.5 parent: 2 - - uid: 36636 + - uid: 39361 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,-12.5 parent: 2 - - uid: 36637 + - uid: 39362 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-12.5 parent: 2 - - uid: 36638 + - uid: 39363 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,-18.5 parent: 2 - - uid: 36639 + - uid: 39364 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,-22.5 parent: 2 - - uid: 36640 + - uid: 39365 components: - type: Transform rot: 3.141592653589793 rad pos: -79.5,-16.5 parent: 2 - - uid: 36641 + - uid: 39366 components: - type: Transform rot: 3.141592653589793 rad pos: -80.5,-16.5 parent: 2 - - uid: 36642 + - uid: 39367 components: - type: Transform rot: 3.141592653589793 rad pos: -78.5,-6.5 parent: 2 - - uid: 36643 + - uid: 39368 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,-2.5 parent: 2 - - uid: 36644 + - uid: 39369 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,-2.5 parent: 2 - - uid: 36645 + - uid: 39370 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,-2.5 parent: 2 - - uid: 36646 + - uid: 39371 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,-2.5 parent: 2 - - uid: 36647 + - uid: 39372 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-2.5 parent: 2 - - uid: 36648 + - uid: 39373 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-3.5 parent: 2 - - uid: 36649 + - uid: 39374 components: - type: Transform rot: 3.141592653589793 rad pos: -88.5,-5.5 parent: 2 - - uid: 36650 + - uid: 39375 components: - type: Transform rot: 3.141592653589793 rad pos: -81.5,-6.5 parent: 2 - - uid: 36651 + - uid: 39376 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,-6.5 parent: 2 - - uid: 36652 + - uid: 39377 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,-6.5 parent: 2 - - uid: 36653 + - uid: 39378 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,-6.5 parent: 2 - - uid: 36654 + - uid: 39379 components: - type: Transform rot: 3.141592653589793 rad pos: -86.5,-6.5 parent: 2 - - uid: 36655 + - uid: 39380 components: - type: Transform rot: 3.141592653589793 rad pos: -87.5,-6.5 parent: 2 - - uid: 36656 + - uid: 39381 components: - type: Transform pos: 35.5,35.5 parent: 2 - - uid: 36657 + - uid: 39382 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-40.5 parent: 2 - - uid: 36658 + - uid: 39383 components: - type: Transform rot: -1.5707963267948966 rad pos: -52.5,-38.5 parent: 2 - - uid: 36659 + - uid: 39384 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-15.5 parent: 2 - - uid: 36660 + - uid: 39385 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-116.5 parent: 2 - - uid: 36661 + - uid: 39386 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,-116.5 parent: 2 - - uid: 36662 + - uid: 39387 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,-116.5 parent: 2 - - uid: 36663 + - uid: 39388 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-118.5 parent: 2 - - uid: 36664 + - uid: 39389 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,-120.5 parent: 2 - - uid: 36665 + - uid: 39390 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-118.5 parent: 2 - - uid: 36666 + - uid: 39391 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,15.5 parent: 2 - - uid: 36667 + - uid: 39392 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,10.5 parent: 2 - - uid: 36668 + - uid: 39393 components: - type: Transform pos: 23.5,15.5 parent: 2 - - uid: 36669 + - uid: 39394 components: - type: Transform pos: 24.5,15.5 parent: 2 - - uid: 36670 + - uid: 39395 components: - type: Transform pos: 25.5,15.5 parent: 2 - - uid: 36671 + - uid: 39396 components: - type: Transform pos: 26.5,15.5 parent: 2 - - uid: 36672 + - uid: 39397 components: - type: Transform pos: 27.5,15.5 parent: 2 - - uid: 36673 + - uid: 39398 components: - type: Transform pos: 39.5,31.5 parent: 2 - - uid: 36674 + - uid: 39399 components: - type: Transform pos: 39.5,30.5 parent: 2 - - uid: 36675 + - uid: 39400 components: - type: Transform pos: 43.5,31.5 parent: 2 - - uid: 36676 + - uid: 39401 components: - type: Transform pos: 43.5,30.5 parent: 2 - - uid: 36677 + - uid: 39402 components: - type: Transform pos: 42.5,28.5 parent: 2 - - uid: 36678 + - uid: 39403 components: - type: Transform pos: 32.5,34.5 parent: 2 - - uid: 36679 + - uid: 39404 components: - type: Transform pos: 32.5,32.5 parent: 2 - - uid: 36680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,22.5 - parent: 2 - - uid: 36681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,22.5 - parent: 2 - - uid: 36682 + - uid: 39405 components: - type: Transform pos: -33.5,-86.5 parent: 2 - - uid: 36683 + - uid: 39406 components: - type: Transform rot: 1.5707963267948966 rad @@ -263253,25 +267978,25 @@ entities: parent: 2 - proto: WallSolidDiagonal entities: - - uid: 36684 + - uid: 39407 components: - type: Transform rot: -1.5707963267948966 rad pos: -75.5,-69.5 parent: 2 - - uid: 36685 + - uid: 39408 components: - type: Transform rot: -1.5707963267948966 rad pos: -76.5,-68.5 parent: 2 - - uid: 36686 + - uid: 39409 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,-62.5 parent: 2 - - uid: 36687 + - uid: 39410 components: - type: Transform rot: 3.141592653589793 rad @@ -263279,59 +268004,59 @@ entities: parent: 2 - proto: WallSolidRust entities: - - uid: 28245 + - uid: 39411 components: - type: Transform pos: -12.5,-29.5 parent: 2 - - uid: 28249 + - uid: 39412 components: - type: Transform pos: -12.5,-27.5 parent: 2 - - uid: 28974 + - uid: 39413 components: - type: Transform pos: -13.5,-26.5 parent: 2 - - uid: 29112 + - uid: 39414 components: - type: Transform pos: -14.5,-26.5 parent: 2 - - uid: 29164 + - uid: 39415 components: - type: Transform pos: -15.5,-26.5 parent: 2 - - uid: 29508 + - uid: 39416 components: - type: Transform pos: -16.5,-26.5 parent: 2 - - uid: 30025 + - uid: 39417 components: - type: Transform pos: -17.5,-26.5 parent: 2 - - uid: 30027 + - uid: 39418 components: - type: Transform pos: -18.5,-26.5 parent: 2 - - uid: 30398 + - uid: 39419 components: - type: Transform pos: -19.5,-26.5 parent: 2 - proto: WallWeaponCapacitorRecharger entities: - - uid: 41095 + - uid: 39420 components: - type: Transform pos: 50.5,-2.5 parent: 2 - - uid: 41137 + - uid: 39421 components: - type: Transform rot: 3.141592653589793 rad @@ -263339,43 +268064,43 @@ entities: parent: 2 - proto: WantedListCartridge entities: - - uid: 1178 + - uid: 1383 components: - type: Transform - parent: 2104 + parent: 1372 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24415 + - uid: 39422 components: - type: Transform pos: 60.21232,5.681077 parent: 2 - - uid: 24416 + - uid: 39423 components: - type: Transform pos: 60.21232,5.509202 parent: 2 - - uid: 24417 + - uid: 39424 components: - type: Transform pos: 52.37181,-19.361252 parent: 2 - - uid: 24429 + - uid: 39425 components: - type: Transform pos: 52.37181,-19.470627 parent: 2 - proto: WardrobeAtmosphericsFilled entities: - - uid: 36778 + - uid: 39426 components: - type: Transform pos: -78.5,-23.5 parent: 2 - proto: WardrobeBotanist entities: - - uid: 25129 + - uid: 27772 components: - type: Transform pos: 79.5,-17.5 @@ -263404,21 +268129,21 @@ entities: showEnts: False occludes: True ents: - - 25130 + - 27773 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: WardrobeCargoFilled entities: - - uid: 36779 + - uid: 39427 components: - type: Transform pos: 11.5,-103.5 parent: 2 - proto: WardrobeFormal entities: - - uid: 14665 + - uid: 15530 components: - type: Transform pos: -29.5,-95.5 @@ -263429,8 +268154,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 + - 1.8977377 + - 7.139109 - 0 - 0 - 0 @@ -263447,16 +268172,16 @@ entities: showEnts: False occludes: True ents: - - 14667 - - 14666 - - 14669 - - 14668 - - 14154 + - 15531 + - 15534 + - 15535 + - 15532 + - 15533 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14880 + - uid: 15785 components: - type: Transform pos: -46.5,-113.5 @@ -263485,12 +268210,12 @@ entities: showEnts: False occludes: True ents: - - 14881 + - 15786 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 25105 + - uid: 27761 components: - type: Transform pos: 86.5,-46.5 @@ -263519,12 +268244,12 @@ entities: showEnts: False occludes: True ents: - - 25106 + - 27762 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 36780 + - uid: 39428 components: - type: Transform pos: -23.5,3.5 @@ -263549,26 +268274,26 @@ entities: - 0 - proto: WardrobeGeneticsFilled entities: - - uid: 30707 + - uid: 39429 components: - type: Transform pos: -9.5,-35.5 parent: 2 - proto: WardrobeGreenFilled entities: - - uid: 36781 + - uid: 39430 components: - type: Transform pos: 86.5,-45.5 parent: 2 - - uid: 36782 + - uid: 39431 components: - type: Transform pos: -29.5,-94.5 parent: 2 - proto: WardrobeGrey entities: - - uid: 14914 + - uid: 15829 components: - type: Transform pos: -30.5,-115.5 @@ -263597,13 +268322,13 @@ entities: showEnts: False occludes: True ents: - - 14915 - - 14916 + - 15830 + - 15831 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 14917 + - uid: 15832 components: - type: Transform pos: -29.5,-115.5 @@ -263632,14 +268357,14 @@ entities: showEnts: False occludes: True ents: - - 14918 + - 15833 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: WardrobeGreyFilled entities: - - uid: 36783 + - uid: 39432 components: - type: Transform pos: -29.5,-96.5 @@ -263664,7 +268389,7 @@ entities: - 0 - proto: WardrobeMedicalDoctorFilled entities: - - uid: 14876 + - uid: 15780 components: - type: Transform pos: -48.5,-16.5 @@ -263693,24 +268418,24 @@ entities: showEnts: False occludes: True ents: - - 14877 + - 15781 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 36784 + - uid: 39433 components: - type: Transform pos: -49.5,-16.5 parent: 2 - - uid: 36785 + - uid: 39434 components: - type: Transform pos: -47.5,-16.5 parent: 2 - proto: WardrobePrison entities: - - uid: 25013 + - uid: 27663 components: - type: Transform pos: 26.5,-81.5 @@ -263739,13 +268464,13 @@ entities: showEnts: False occludes: True ents: - - 25015 - - 25014 + - 27665 + - 27664 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 36787 + - uid: 39435 components: - type: Transform pos: 30.5,-81.5 @@ -263770,57 +268495,23 @@ entities: - 0 - proto: WardrobePrisonFilled entities: - - uid: 3101 - components: - - type: Transform - pos: 39.5,5.5 - parent: 2 - - uid: 9699 - components: - - type: Transform - pos: 39.5,2.5 - parent: 2 - - uid: 14189 - components: - - type: Transform - pos: 48.5,4.5 - parent: 2 - - uid: 14612 - components: - - type: Transform - pos: 48.5,1.5 - parent: 2 - - uid: 16242 - components: - - type: Transform - pos: 46.5,10.5 - parent: 2 - - uid: 16628 - components: - - type: Transform - pos: 48.5,10.5 - parent: 2 - - uid: 25119 - components: - - type: Transform - pos: 72.5,-0.5 - parent: 2 - - uid: 25128 - components: - - type: Transform - pos: 73.5,-0.5 - parent: 2 - - uid: 25137 - components: - - type: Transform - pos: 74.5,-0.5 - parent: 2 - - uid: 25139 + - uid: 19721 components: - type: Transform - pos: 75.5,-0.5 + pos: 87.5,0.5 parent: 2 - - uid: 25636 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19722 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19724 components: - type: Transform pos: 79.5,0.5 @@ -263849,12 +268540,12 @@ entities: showEnts: False occludes: True ents: - - 25654 + - 19725 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 25655 + - uid: 30659 components: - type: Transform pos: 83.5,0.5 @@ -263883,57 +268574,86 @@ entities: showEnts: False occludes: True ents: - - 25662 + - 30660 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 25663 + - uid: 39436 components: - type: Transform - pos: 87.5,0.5 + pos: 39.5,5.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25664 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 36788 + - uid: 39437 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 39438 + components: + - type: Transform + pos: 48.5,4.5 + parent: 2 + - uid: 39439 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 39440 + components: + - type: Transform + pos: 46.5,10.5 + parent: 2 + - uid: 39441 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 39442 + components: + - type: Transform + pos: 72.5,-0.5 + parent: 2 + - uid: 39443 + components: + - type: Transform + pos: 73.5,-0.5 + parent: 2 + - uid: 39444 + components: + - type: Transform + pos: 74.5,-0.5 + parent: 2 + - uid: 39445 + components: + - type: Transform + pos: 75.5,-0.5 + parent: 2 + - uid: 39446 components: - type: Transform pos: -74.5,-52.5 parent: 2 - - uid: 36789 + - uid: 39447 components: - type: Transform pos: -70.5,-52.5 parent: 2 - proto: WardrobeRoboticsFilled entities: - - uid: 31771 + - uid: 39448 components: - type: Transform pos: -13.5,-46.5 parent: 2 - - uid: 32155 + - uid: 39449 components: - type: Transform pos: -11.5,-46.5 parent: 2 - proto: WardrobeSalvageFilled entities: - - uid: 36799 - components: - - type: Transform - pos: -6.5,-91.5 - parent: 2 - - uid: 36800 + - uid: 15792 components: - type: Transform pos: -6.5,-90.5 @@ -263962,12 +268682,17 @@ entities: showEnts: False occludes: True ents: - - 33921 + - 15793 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 36801 + - uid: 39450 + components: + - type: Transform + pos: -6.5,-91.5 + parent: 2 + - uid: 39451 components: - type: Transform pos: -6.5,-89.5 @@ -263992,10 +268717,10 @@ entities: - 0 - proto: WardrobeVirologyFilled entities: - - uid: 14878 + - uid: 15782 components: - type: Transform - pos: -52.5,-7.5 + pos: -54.5,-10.5 parent: 2 - type: EntityStorage air: @@ -264021,53 +268746,71 @@ entities: showEnts: False occludes: True ents: - - 14879 + - 15783 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 36802 + - uid: 39452 components: - type: Transform - pos: -50.5,4.5 + pos: -52.5,-7.5 parent: 2 - - uid: 36803 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 39453 components: - type: Transform - pos: -54.5,-10.5 + pos: -50.5,4.5 parent: 2 - - uid: 36804 + - uid: 39454 components: - type: Transform pos: -50.5,3.5 parent: 2 - proto: WardrobeWhiteFilled entities: - - uid: 36805 + - uid: 39455 components: - type: Transform pos: -29.5,-92.5 parent: 2 - - uid: 36806 + - uid: 39456 components: - type: Transform pos: 79.5,-16.5 parent: 2 - proto: WardrobeYellowFilled entities: - - uid: 36807 + - uid: 39457 components: - type: Transform pos: -29.5,-93.5 parent: 2 - - uid: 36808 + - uid: 39458 components: - type: Transform pos: 79.5,-18.5 parent: 2 - proto: WarningAir entities: - - uid: 36809 + - uid: 39459 components: - type: Transform rot: 3.141592653589793 rad @@ -264075,7 +268818,7 @@ entities: parent: 2 - proto: WarningCO2 entities: - - uid: 36810 + - uid: 39460 components: - type: Transform rot: 1.5707963267948966 rad @@ -264083,19 +268826,19 @@ entities: parent: 2 - proto: WarningN2 entities: - - uid: 36811 + - uid: 39461 components: - type: Transform pos: 29.5,-102.5 parent: 2 - proto: WarningN2O entities: - - uid: 36812 + - uid: 39462 components: - type: Transform pos: 29.5,-95.5 parent: 2 - - uid: 36813 + - uid: 39463 components: - type: Transform rot: 1.5707963267948966 rad @@ -264103,14 +268846,14 @@ entities: parent: 2 - proto: WarningO2 entities: - - uid: 36814 + - uid: 39464 components: - type: Transform pos: 29.5,-98.5 parent: 2 - proto: WarningPlasma entities: - - uid: 36815 + - uid: 39465 components: - type: Transform rot: 3.141592653589793 rad @@ -264118,58 +268861,58 @@ entities: parent: 2 - proto: WarpPoint entities: - - uid: 38649 + - uid: 40819 + components: + - type: Transform + pos: 0.5,0.5 + parent: 40666 + - type: WarpPoint + location: Шаттл СБ + - uid: 41596 components: - type: Transform pos: 0.5,-5.5 - parent: 37887 + parent: 40828 - type: WarpPoint location: Охранный пост ОБР - - uid: 39020 + - uid: 41966 components: - type: Transform pos: 4.5,-4.5 - parent: 38722 + parent: 41669 - type: WarpPoint location: Шаттл ОБР - - uid: 41161 - components: - - type: Transform - pos: 0.5,0.5 - parent: 21045 - - type: WarpPoint - location: Шаттл СБ - proto: WarpPointBombing entities: - - uid: 29271 + - uid: 39466 components: - type: Transform pos: -6.5,-6.5 parent: 2 - type: WarpPoint location: Ядерное хранилище - - uid: 36816 + - uid: 39467 components: - type: Transform pos: -51.5,-58.5 parent: 2 - type: WarpPoint location: Токсикология РНД - - uid: 36817 + - uid: 39468 components: - type: Transform pos: 13.5,13.5 parent: 2 - type: WarpPoint location: Каюта капитана - - uid: 36818 + - uid: 39469 components: - type: Transform pos: 15.5,-98.5 parent: 2 missingComponents: - WarpPoint - - uid: 36819 + - uid: 39470 components: - type: MetaData name: кабинет КМа @@ -264178,35 +268921,35 @@ entities: parent: 2 missingComponents: - WarpPoint - - uid: 36821 + - uid: 39471 components: - type: Transform pos: 98.5,-69.5 parent: 2 - type: WarpPoint location: Телекоммуникация - - uid: 36824 + - uid: 39472 components: - type: Transform pos: -36.5,-30.5 parent: 2 - type: WarpPoint location: Химическая лаборатория - - uid: 36825 + - uid: 39473 components: - type: Transform pos: 98.5,-88.5 parent: 2 - type: WarpPoint location: Ядро ИИ - - uid: 36827 + - uid: 39474 components: - type: Transform pos: -72.5,1.5 parent: 2 - type: WarpPoint location: Радужная комната - - uid: 36829 + - uid: 39475 components: - type: Transform pos: 64.5,-58.5 @@ -264215,399 +268958,399 @@ entities: location: Ускоритель Частиц - proto: WaterCooler entities: - - uid: 737 + - uid: 39476 components: - type: Transform pos: 53.5,11.5 parent: 2 - - uid: 14293 + - uid: 39477 components: - type: Transform pos: 59.5,13.5 parent: 2 - - uid: 23047 + - uid: 39478 components: - type: Transform - pos: 41.5,-25.5 + pos: -7.5,20.5 parent: 2 - - uid: 34412 + - uid: 39479 components: - type: Transform - pos: 50.5,4.5 + pos: 41.5,-25.5 parent: 2 - - uid: 34914 + - uid: 39480 components: - type: Transform - pos: 48.5,20.5 + pos: 50.5,4.5 parent: 2 - - uid: 36831 + - uid: 39481 components: - type: Transform - pos: -9.5,11.5 + pos: 48.5,20.5 parent: 2 - - uid: 36832 + - uid: 39482 components: - type: Transform pos: -19.5,7.5 parent: 2 - - uid: 36833 + - uid: 39483 components: - type: Transform pos: 72.5,-40.5 parent: 2 - - uid: 36834 + - uid: 39484 components: - type: Transform pos: 53.5,-50.5 parent: 2 - - uid: 36835 + - uid: 39485 components: - type: Transform pos: 12.5,-81.5 parent: 2 - - uid: 36837 + - uid: 39486 components: - type: Transform pos: -33.5,7.5 parent: 2 - - uid: 36838 + - uid: 39487 components: - type: Transform pos: -44.5,-16.5 parent: 2 - - uid: 36839 + - uid: 39488 components: - type: Transform pos: -53.5,-3.5 parent: 2 - proto: WaterTankFull entities: - - uid: 26788 + - uid: 39489 components: - type: Transform pos: 71.5,-17.5 parent: 2 - - uid: 29301 + - uid: 39490 components: - type: Transform pos: 87.5,-7.5 parent: 2 - - uid: 36841 + - uid: 39491 components: - type: Transform pos: 35.5,-78.5 parent: 2 - - uid: 36842 + - uid: 39492 components: - type: Transform pos: 40.5,18.5 parent: 2 - - uid: 36843 + - uid: 39493 components: - type: Transform pos: -35.5,-123.5 parent: 2 - - uid: 36844 + - uid: 39494 components: - type: Transform pos: 90.5,-52.5 parent: 2 - - uid: 36846 + - uid: 39495 components: - type: Transform pos: 45.5,-60.5 parent: 2 - - uid: 36847 + - uid: 39496 components: - type: Transform pos: -13.5,-92.5 parent: 2 - - uid: 36848 + - uid: 39497 components: - type: Transform pos: 19.5,3.5 parent: 2 - - uid: 36849 + - uid: 39498 components: - type: Transform pos: -45.5,6.5 parent: 2 - - uid: 36850 + - uid: 39499 components: - type: Transform pos: -33.5,-5.5 parent: 2 - - uid: 36851 + - uid: 39500 components: - type: Transform pos: -55.5,-53.5 parent: 2 - - uid: 36852 + - uid: 39501 components: - type: Transform pos: -52.5,-80.5 parent: 2 - - uid: 36853 + - uid: 39502 components: - type: Transform pos: 20.5,-83.5 parent: 2 - - uid: 36854 + - uid: 39503 components: - type: Transform pos: 62.5,-44.5 parent: 2 - - uid: 36855 + - uid: 39504 components: - type: Transform pos: -44.5,-91.5 parent: 2 - - uid: 36856 + - uid: 39505 components: - type: Transform pos: -72.5,-29.5 parent: 2 - - uid: 36857 + - uid: 39506 components: - type: Transform pos: 52.5,-96.5 parent: 2 - - uid: 36858 + - uid: 39507 components: - type: Transform pos: -13.5,12.5 parent: 2 - - uid: 36860 + - uid: 39508 components: - type: Transform pos: -67.5,12.5 parent: 2 - - uid: 36861 + - uid: 39509 components: - type: Transform pos: -56.5,-94.5 parent: 2 - - uid: 36862 + - uid: 39510 components: - type: Transform pos: -27.5,-107.5 parent: 2 - - uid: 36863 + - uid: 39511 components: - type: Transform pos: -79.5,-0.5 parent: 2 - - uid: 36864 + - uid: 39512 components: - type: Transform pos: 42.5,30.5 parent: 2 - proto: WaterTankHighCapacity entities: - - uid: 23332 + - uid: 39513 components: - type: Transform pos: -17.5,-18.5 parent: 2 - - uid: 23333 + - uid: 39514 components: - type: Transform pos: -17.5,-19.5 parent: 2 - - uid: 36865 + - uid: 39515 components: - type: Transform pos: 34.5,9.5 parent: 2 - - uid: 36866 + - uid: 39516 components: - type: Transform pos: 6.5,1.5 parent: 2 - - uid: 36867 + - uid: 39517 components: - type: Transform pos: 46.5,22.5 parent: 2 - proto: WaterVaporCanister entities: - - uid: 36868 + - uid: 39518 components: - type: Transform pos: -46.5,-60.5 parent: 2 - - uid: 36869 + - uid: 39519 components: - type: Transform pos: 37.5,-49.5 parent: 2 - - uid: 36870 + - uid: 39520 components: - type: Transform pos: 31.5,-87.5 parent: 2 - - uid: 36871 + - uid: 39521 components: - type: Transform pos: -35.5,-110.5 parent: 2 - - uid: 36872 + - uid: 39522 components: - type: Transform pos: -83.5,-13.5 parent: 2 - proto: WeaponAdvancedLaser entities: - - uid: 38650 + - uid: 41597 components: - type: Transform pos: 6.531067,-13.423157 - parent: 37887 + parent: 40828 - proto: WeaponCapacitorRecharger entities: - - uid: 14 + - uid: 39523 components: - type: Transform pos: 59.5,5.5 parent: 2 - - uid: 7788 + - uid: 39524 components: - type: Transform pos: 54.5,-19.5 parent: 2 - - uid: 7789 + - uid: 39525 components: - type: Transform pos: 58.5,15.5 parent: 2 - - uid: 17943 + - uid: 39526 components: - type: Transform pos: 61.5,11.5 parent: 2 - - uid: 19527 + - uid: 39527 components: - type: Transform pos: 58.5,-19.5 parent: 2 - - uid: 32580 + - uid: 39528 components: - type: Transform - pos: -1.5,2.5 - parent: 21045 - - uid: 36875 + pos: 4.5,19.5 + parent: 2 + - uid: 39529 components: - type: Transform - pos: 4.5,19.5 + pos: -44.5,-31.5 parent: 2 - - uid: 38652 + - uid: 39530 components: - type: Transform - pos: 6.5,-13.5 - parent: 37887 - - uid: 38653 + pos: -48.5,-50.5 + parent: 2 + - uid: 39531 components: - type: Transform - pos: -4.5,-4.5 - parent: 37887 - - uid: 39021 + pos: 42.5,-15.5 + parent: 2 + - uid: 39532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,2.5 - parent: 38722 - - uid: 39022 + pos: -4.5,-80.5 + parent: 2 + - uid: 40820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,2.5 - parent: 38722 - - uid: 41096 + pos: -1.5,2.5 + parent: 40666 + - uid: 41598 components: - type: Transform - pos: -44.5,-31.5 - parent: 2 - - uid: 41100 + pos: 6.5,-13.5 + parent: 40828 + - uid: 41599 components: - type: Transform - pos: -48.5,-50.5 - parent: 2 - - uid: 41148 + pos: -4.5,-4.5 + parent: 40828 + - uid: 41967 components: - type: Transform - pos: 42.5,-15.5 - parent: 2 - - uid: 41149 + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 41669 + - uid: 41968 components: - type: Transform - pos: -4.5,-80.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 41669 - proto: WeaponDisabler entities: - - uid: 14759 + - uid: 2491 components: - type: Transform - parent: 14753 + parent: 2475 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 16258 + - uid: 15671 components: - type: Transform - parent: 16246 + parent: 15665 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 24330 + - uid: 26968 components: - type: Transform - parent: 24329 + parent: 26967 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 36884 + - uid: 39533 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.344124,-31.388329 parent: 2 - - uid: 36886 + - uid: 39534 components: - type: Transform rot: 3.141592653589793 rad pos: 75.54316,-29.48021 parent: 2 - - uid: 36887 + - uid: 39535 components: - type: Transform pos: -7.8332977,1.7780972 parent: 2 - - uid: 36888 + - uid: 39536 components: - type: Transform rot: 3.141592653589793 rad pos: -46.48207,-46.456898 parent: 2 - - uid: 38160 + - uid: 41101 components: - type: Transform - parent: 38155 + parent: 41096 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponDisablerPractice entities: - - uid: 19443 + - uid: 39537 components: - type: Transform pos: 61.45227,10.176628 parent: 2 - - uid: 19450 + - uid: 39538 components: - type: Transform pos: 61.430977,9.963861 parent: 2 - - uid: 26448 + - uid: 39539 components: - type: MetaData desc: Мгновенное распыление на атомы. Наверное... @@ -264617,99 +269360,99 @@ entities: parent: 2 - proto: WeaponDisablerSMG entities: - - uid: 24874 + - uid: 39540 components: - type: Transform pos: 55.5203,-19.475555 parent: 2 - proto: WeaponFlareGun entities: - - uid: 22711 + - uid: 39541 components: - type: Transform pos: 61.458096,8.9280405 parent: 2 - - uid: 34375 + - uid: 39542 components: - type: Transform pos: 1.4492247,-71.36259 parent: 2 - - uid: 34376 + - uid: 39543 components: - type: Transform pos: 1.5117247,-71.59696 parent: 2 - proto: WeaponLaserCarbinePractice entities: - - uid: 7307 + - uid: 39544 components: - type: Transform pos: 61.473564,10.772373 parent: 2 - - uid: 19449 + - uid: 39545 components: - type: Transform pos: 61.473564,10.985139 parent: 2 - - uid: 26449 + - uid: 39546 components: - type: MetaData name: плазменная винтовка - type: Transform pos: 8.510876,-18.319609 parent: 2 - - uid: 26450 + - uid: 39547 components: - type: MetaData name: плазменная винтовка - type: Transform pos: 8.510876,-18.522734 parent: 2 - - uid: 36899 + - uid: 39548 components: - type: Transform pos: -67.3926,-78.443115 parent: 2 - proto: WeaponLaserGun entities: - - uid: 6316 + - uid: 15494 components: - type: Transform - parent: 6314 + parent: 15484 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 14583 + - uid: 16292 components: - type: Transform - parent: 14573 + parent: 16290 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponLaserSvalinn entities: - - uid: 30349 + - uid: 33673 components: - type: Transform - parent: 26475 + parent: 33672 - type: Physics canCollide: False -- proto: WeaponLauncherPirateCannon +- proto: WeaponLauncherRocket entities: - - uid: 26445 + - uid: 39549 components: - type: Transform - pos: 10.510876,-13.47551 + pos: 10.523224,-13.563158 parent: 2 - proto: WeaponMinigun entities: - - uid: 24420 + - uid: 16289 components: - type: MetaData desc: Он явно не желает стрелять в ваших руках. name: миниган биокод - type: Transform - parent: 6311 + parent: 16287 - type: StaticPrice price: 10500 - type: Physics @@ -264722,23 +269465,23 @@ entities: - Contraband - proto: WeaponPistolFlintlock entities: - - uid: 26444 + - uid: 39550 components: - type: Transform pos: 12.479626,-19.42051 parent: 2 - proto: WeaponPistolN1984 entities: - - uid: 38161 + - uid: 41102 components: - type: Transform - parent: 38155 + parent: 41096 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponProtoKineticAccelerator entities: - - uid: 26446 + - uid: 39551 components: - type: Transform rot: 3.141592653589793 rad @@ -264750,165 +269493,165 @@ entities: components: - type: Transform pos: -4.4610443,-4.4109497 - parent: 37887 + parent: 40828 - proto: WeaponRevolverMateba entities: - - uid: 37690 + - uid: 39552 components: - type: Transform pos: 48.552704,16.54868 parent: 2 - proto: WeaponRevolverPirate entities: - - uid: 23917 + - uid: 26422 components: - type: Transform - parent: 23909 + parent: 26414 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponRifleAk entities: - - uid: 37795 + - uid: 39553 components: - type: Transform pos: 63.542843,-19.493984 parent: 2 - - uid: 38375 + - uid: 41321 components: - type: Transform - parent: 38372 + parent: 41318 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponRifleFoam entities: - - uid: 26440 + - uid: 39554 components: - type: Transform pos: 8.477474,-24.49182 parent: 2 - proto: WeaponRifleLecter entities: - - uid: 38654 + - uid: 41601 components: - type: Transform pos: 6.508209,-11.401001 - parent: 37887 - - uid: 38655 + parent: 40828 + - uid: 41602 components: - type: Transform pos: 6.577652,-11.609314 - parent: 37887 + parent: 40828 - proto: WeaponShotgunBlunderbuss entities: - - uid: 26494 + - uid: 2437 components: - type: Transform - parent: 11053 + parent: 2435 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponShotgunBulldog entities: - - uid: 38656 + - uid: 41603 components: - type: Transform pos: 4.5026855,-13.328033 - parent: 37887 + parent: 40828 - proto: WeaponShotgunDoubleBarreledRubber entities: - - uid: 4807 + - uid: 2471 components: - type: Transform - parent: 1593 + parent: 2469 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponShotgunEnforcer entities: - - uid: 28011 + - uid: 26424 components: - type: Transform - parent: 26551 + parent: 26423 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponShotgunImprovised entities: - - uid: 36915 + - uid: 39555 components: - type: Transform pos: -72.63039,-1.5711503 parent: 2 - proto: WeaponShotgunKammerer entities: - - uid: 2595 + - uid: 30912 components: - type: Transform pos: 65.462585,-13.612967 parent: 2 - type: BallisticAmmoProvider entities: - - 2597 - - 2596 - - 2601 - - 2603 + - 30914 + - 30913 + - 30915 + - 30916 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: - - 2597 - - 2596 - - 2601 - - 2603 - - uid: 2616 + - 30914 + - 30913 + - 30915 + - 30916 + - uid: 30917 components: - type: Transform pos: 65.462585,-13.316092 parent: 2 - type: BallisticAmmoProvider entities: - - 2692 - - 2642 - - 2721 - - 2703 + - 30919 + - 30918 + - 30921 + - 30920 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: - - 2692 - - 2642 - - 2721 - - 2703 - - uid: 2722 + - 30919 + - 30918 + - 30921 + - 30920 + - uid: 30922 components: - type: Transform pos: 65.44696,-13.456717 parent: 2 - type: BallisticAmmoProvider entities: - - 2799 - - 2770 - - 2810 - - 2788 + - 30925 + - 30923 + - 30926 + - 30924 - type: ContainerContainer containers: ballistic-ammo: !type:Container showEnts: False occludes: True ents: - - 2799 - - 2770 - - 2810 - - 2788 + - 30925 + - 30923 + - 30926 + - 30924 - proto: WeaponShotgunSawnEmpty entities: - - uid: 11 + - uid: 13 components: - type: MetaData desc: Для крестовых походов XXXI века. @@ -264919,194 +269662,194 @@ entities: canCollide: False - proto: WeaponSniperHristov entities: - - uid: 482 + - uid: 39556 components: - type: Transform pos: 64.541885,-19.446735 parent: 2 - proto: WeaponSubMachineGunDrozd entities: - - uid: 38657 + - uid: 41604 components: - type: Transform pos: 5.7313232,-10.509827 - parent: 37887 + parent: 40828 - proto: WeaponTurretHostile entities: - - uid: 15088 + - uid: 39557 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-90.5 parent: 2 - - uid: 27925 + - uid: 39558 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,20.5 parent: 2 - - uid: 37656 + - uid: 39559 components: - type: Transform pos: 90.5,-81.5 parent: 2 - - uid: 37759 + - uid: 39560 components: - type: Transform pos: 14.5,-27.5 parent: 2 - - uid: 38658 + - uid: 39561 + components: + - type: Transform + pos: 96.5,-86.5 + parent: 2 + - uid: 39562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 96.5,-74.5 + parent: 2 + - uid: 39563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 102.5,-78.5 + parent: 2 + - uid: 41605 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-8.5 - parent: 37887 - - uid: 38659 + parent: 40828 + - uid: 41606 components: - type: Transform pos: 10.5,-15.5 - parent: 37887 - - uid: 38660 + parent: 40828 + - uid: 41607 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-8.5 - parent: 37887 - - uid: 38661 + parent: 40828 + - uid: 41608 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,7.5 - parent: 37887 - - uid: 38662 + parent: 40828 + - uid: 41609 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,7.5 - parent: 37887 - - uid: 38663 + parent: 40828 + - uid: 41610 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-0.5 - parent: 37887 - - uid: 38664 + parent: 40828 + - uid: 41611 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-2.5 - parent: 37887 - - uid: 38665 + parent: 40828 + - uid: 41612 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-2.5 - parent: 37887 - - uid: 38666 + parent: 40828 + - uid: 41613 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 - parent: 37887 - - uid: 38667 + parent: 40828 + - uid: 41614 components: - type: Transform pos: -0.5,-15.5 - parent: 37887 - - uid: 38668 + parent: 40828 + - uid: 41615 components: - type: Transform pos: 1.5,-15.5 - parent: 37887 - - uid: 38669 + parent: 40828 + - uid: 41616 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-1.5 - parent: 37887 - - uid: 38670 + parent: 40828 + - uid: 41617 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-1.5 - parent: 37887 - - uid: 38671 + parent: 40828 + - uid: 41618 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,15.5 - parent: 37887 - - uid: 38672 + parent: 40828 + - uid: 41619 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,15.5 - parent: 37887 - - uid: 38673 + parent: 40828 + - uid: 41620 components: - type: Transform pos: -4.5,-17.5 - parent: 37887 - - uid: 38674 + parent: 40828 + - uid: 41621 components: - type: Transform pos: 5.5,-17.5 - parent: 37887 - - uid: 38675 + parent: 40828 + - uid: 41622 components: - type: Transform pos: -9.5,-15.5 - parent: 37887 - - uid: 39051 - components: - - type: Transform - pos: 96.5,-86.5 - parent: 2 - - uid: 39054 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 96.5,-74.5 - parent: 2 - - uid: 41023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-78.5 - parent: 2 + parent: 40828 - proto: WeaponTurretNanoTrasen entities: - - uid: 32731 + - uid: 39564 components: - type: Transform pos: 100.5,-74.5 parent: 2 - - uid: 32732 + - uid: 39565 components: - type: Transform rot: 1.5707963267948966 rad pos: 94.5,-78.5 parent: 2 - - uid: 33854 + - uid: 39566 components: - type: Transform pos: 98.5,-66.5 parent: 2 - proto: WeaponTurretSyndicateBroken entities: - - uid: 36919 + - uid: 39567 components: - type: Transform pos: -54.5,-70.5 parent: 2 - - uid: 40942 + - uid: 39568 components: - type: Transform pos: 17.5,-15.5 parent: 2 - proto: WeaponWaterBlaster entities: - - uid: 26441 + - uid: 39569 components: - type: MetaData name: нейтронный бластер @@ -265115,7 +269858,7 @@ entities: parent: 2 - proto: WeaponWaterBlasterSuper entities: - - uid: 26443 + - uid: 39570 components: - type: MetaData name: ' супер-бластер' @@ -265124,7 +269867,7 @@ entities: parent: 2 - proto: WeaponWaterPistol entities: - - uid: 26442 + - uid: 39571 components: - type: MetaData name: импульсный пистолет @@ -265133,788 +269876,783 @@ entities: parent: 2 - proto: WelderIndustrial entities: - - uid: 36932 + - uid: 39572 components: - type: Transform pos: 17.471325,9.532494 parent: 2 - - uid: 36933 + - uid: 39573 components: - type: Transform pos: -46.5,-87.5 parent: 2 - - uid: 36934 + - uid: 39574 components: - type: Transform pos: 53.433388,-96.4127 parent: 2 - - uid: 36935 + - uid: 39575 components: - type: Transform pos: -85.5601,-21.50541 parent: 2 - proto: WelderMini entities: - - uid: 36936 + - uid: 39576 components: - type: Transform pos: -35.567467,7.5570617 parent: 2 - - uid: 36937 + - uid: 39577 components: - type: Transform pos: -17.5,12.5 parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 1596 + - uid: 39578 components: - type: Transform pos: 8.5,-62.5 parent: 2 - - uid: 36938 + - uid: 39579 components: - type: Transform pos: -40.5,-116.5 parent: 2 - - uid: 36939 + - uid: 39580 components: - type: Transform pos: 107.5,-50.5 parent: 2 - - uid: 36941 + - uid: 39581 components: - type: Transform pos: -42.5,-89.5 parent: 2 - - uid: 36943 + - uid: 39582 components: - type: Transform pos: 48.5,-79.5 parent: 2 - - uid: 36944 + - uid: 39583 components: - type: Transform pos: 39.5,-67.5 parent: 2 - - uid: 36945 + - uid: 39584 components: - type: Transform pos: 15.5,-76.5 parent: 2 - - uid: 36946 + - uid: 39585 components: - type: Transform pos: -15.5,-79.5 parent: 2 - - uid: 36947 + - uid: 39586 components: - type: Transform pos: -39.5,-89.5 parent: 2 - - uid: 36948 + - uid: 39587 components: - type: Transform pos: -56.5,-78.5 parent: 2 - - uid: 36949 + - uid: 39588 components: - type: Transform pos: -55.5,-54.5 parent: 2 - - uid: 36950 + - uid: 39589 components: - type: Transform pos: -46.5,6.5 parent: 2 - - uid: 36951 + - uid: 39590 components: - type: Transform pos: 72.5,-24.5 parent: 2 - - uid: 36952 + - uid: 39591 components: - type: Transform pos: -50.5,-87.5 parent: 2 - - uid: 36953 + - uid: 39592 components: - type: Transform pos: -71.5,-29.5 parent: 2 - - uid: 36954 + - uid: 39593 components: - type: Transform pos: 51.5,-96.5 parent: 2 - - uid: 36955 + - uid: 39594 components: - type: Transform pos: -14.5,12.5 parent: 2 - - uid: 36958 + - uid: 39595 components: - type: Transform pos: 19.5,9.5 parent: 2 - - uid: 36959 + - uid: 39596 components: - type: Transform pos: 76.5,-44.5 parent: 2 - - uid: 36960 + - uid: 39597 components: - type: Transform pos: -63.5,-4.5 parent: 2 - - uid: 36961 + - uid: 39598 components: - type: Transform pos: -37.5,7.5 parent: 2 - - uid: 36962 + - uid: 39599 components: - type: Transform pos: -41.5,-107.5 parent: 2 - - uid: 36963 + - uid: 39600 components: - type: Transform pos: -56.5,-95.5 parent: 2 - - uid: 36964 + - uid: 39601 components: - type: Transform pos: -50.5,-119.5 parent: 2 - - uid: 36965 + - uid: 39602 components: - type: Transform pos: -77.5,-17.5 parent: 2 - - uid: 36966 + - uid: 39603 components: - type: Transform pos: -78.5,7.5 parent: 2 - - uid: 36967 + - uid: 39604 components: - type: Transform pos: 37.5,31.5 parent: 2 - - uid: 36968 + - uid: 39605 components: - type: Transform pos: -85.5,-19.5 parent: 2 - - uid: 36969 + - uid: 39606 components: - type: Transform pos: 38.5,33.5 parent: 2 - - uid: 39728 + - uid: 39607 components: - type: Transform pos: -11.5,-29.5 parent: 2 - proto: WeldingFuelTankHighCapacity entities: - - uid: 13437 + - uid: 39608 components: - type: Transform pos: 25.5,-35.5 parent: 2 - - uid: 36970 + - uid: 39609 components: - type: Transform pos: 46.5,-66.5 parent: 2 - - uid: 36971 + - uid: 39610 components: - type: Transform pos: 46.5,-60.5 parent: 2 - - uid: 39729 + - uid: 39611 components: - type: Transform pos: -6.5,-48.5 parent: 2 - proto: WhiteBishop entities: - - uid: 1800 + - uid: 2126 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1801 + - uid: 2127 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WhiteCane entities: - - uid: 36972 + - uid: 39612 components: - type: Transform pos: -45.56749,-10.437608 parent: 2 - proto: WhiteKing entities: - - uid: 36973 + - uid: 39613 components: - type: Transform pos: 33.23023,5.927108 parent: 2 - proto: WhiteKnight entities: - - uid: 1802 + - uid: 2128 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1803 + - uid: 2129 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WhitePawn entities: - - uid: 1804 + - uid: 2130 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1805 + - uid: 2131 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1806 + - uid: 2132 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1807 + - uid: 2133 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1808 + - uid: 2134 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1809 + - uid: 2135 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 36974 + - uid: 39614 components: - type: Transform pos: 33.71178,4.940465 parent: 2 - - uid: 36975 + - uid: 39615 components: - type: Transform pos: 34.237877,5.451663 parent: 2 - proto: WhiteQueen entities: - - uid: 1810 + - uid: 2136 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WhiteRook entities: - - uid: 1811 + - uid: 2137 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 1812 + - uid: 2138 components: - type: Transform - parent: 1786 + parent: 2112 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WhoopieCushion entities: - - uid: 36976 + - uid: 39616 components: - type: Transform pos: 37.528973,-16.654024 parent: 2 - proto: Windoor entities: - - uid: 30782 + - uid: 39617 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-38.5 parent: 2 - - uid: 30783 + - uid: 39618 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-38.5 parent: 2 - - uid: 30796 + - uid: 39619 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-37.5 parent: 2 - - uid: 30797 + - uid: 39620 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-37.5 parent: 2 - - uid: 30798 + - uid: 39621 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-39.5 parent: 2 - - uid: 30799 + - uid: 39622 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-39.5 parent: 2 - - uid: 30800 + - uid: 39623 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-38.5 parent: 2 - - uid: 30801 + - uid: 39624 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-37.5 parent: 2 - - uid: 30802 + - uid: 39625 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-36.5 parent: 2 - - uid: 30803 + - uid: 39626 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-36.5 parent: 2 - - uid: 30804 + - uid: 39627 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-37.5 parent: 2 - - uid: 30805 + - uid: 39628 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-38.5 parent: 2 - - uid: 30806 + - uid: 39629 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-37.5 parent: 2 - - uid: 30807 + - uid: 39630 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-38.5 parent: 2 - - uid: 30808 + - uid: 39631 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-39.5 parent: 2 - - uid: 30809 + - uid: 39632 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-37.5 parent: 2 - - uid: 30810 + - uid: 39633 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-38.5 parent: 2 - - uid: 30811 + - uid: 39634 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-39.5 parent: 2 - - uid: 30812 + - uid: 39635 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-32.5 parent: 2 - - uid: 30813 + - uid: 39636 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-33.5 parent: 2 - - uid: 30814 + - uid: 39637 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-34.5 parent: 2 - - uid: 30815 + - uid: 39638 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-32.5 parent: 2 - - uid: 30816 + - uid: 39639 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-33.5 parent: 2 - - uid: 30817 + - uid: 39640 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-34.5 parent: 2 - - uid: 30818 + - uid: 39641 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-34.5 parent: 2 - - uid: 30819 + - uid: 39642 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-33.5 parent: 2 - - uid: 30820 + - uid: 39643 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-32.5 parent: 2 - - uid: 30821 + - uid: 39644 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-32.5 parent: 2 - - uid: 30822 + - uid: 39645 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-33.5 parent: 2 - - uid: 30823 + - uid: 39646 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-34.5 parent: 2 - - uid: 30830 + - uid: 39647 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-34.5 parent: 2 - - uid: 30831 + - uid: 39648 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-33.5 parent: 2 - - uid: 30832 + - uid: 39649 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-32.5 parent: 2 - - uid: 36978 + - uid: 39650 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-32.5 parent: 2 - - uid: 36981 + - uid: 39651 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,2.5 parent: 2 - - uid: 36982 + - uid: 39652 components: - type: Transform pos: -49.5,-11.5 parent: 2 - - uid: 36983 + - uid: 39653 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-35.5 parent: 2 - - uid: 36984 + - uid: 39654 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,0.5 parent: 2 - - uid: 36986 + - uid: 39655 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-82.5 parent: 2 - - uid: 36987 + - uid: 39656 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,26.5 parent: 2 - - uid: 36988 + - uid: 39657 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,26.5 parent: 2 - - uid: 36989 - components: - - type: Transform - pos: -8.5,21.5 - parent: 2 - - uid: 36990 - components: - - type: Transform - pos: -10.5,10.5 - parent: 2 - - uid: 36991 + - uid: 39658 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,3.5 parent: 2 - - uid: 36992 + - uid: 39659 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-0.5 parent: 2 - - uid: 36993 + - uid: 39660 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-33.5 parent: 2 - - uid: 36994 + - uid: 39661 components: - type: Transform pos: 77.5,-30.5 parent: 2 - - uid: 36995 + - uid: 39662 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-77.5 parent: 2 - - uid: 36996 + - uid: 39663 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-79.5 parent: 2 - - uid: 36998 + - uid: 39664 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-83.5 parent: 2 - - uid: 36999 + - uid: 39665 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-83.5 parent: 2 - - uid: 37000 + - uid: 39666 components: - type: Transform rot: 3.141592653589793 rad pos: -75.5,-51.5 parent: 2 - - uid: 37001 + - uid: 39667 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-51.5 parent: 2 - - uid: 37002 + - uid: 39668 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-55.5 parent: 2 - - uid: 37003 + - uid: 39669 components: - type: Transform pos: -66.5,-40.5 parent: 2 - - uid: 37013 + - uid: 39670 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-75.5 parent: 2 - - uid: 37014 + - uid: 39671 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-97.5 parent: 2 - - uid: 37015 + - uid: 39672 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-98.5 parent: 2 - - uid: 37016 + - uid: 39673 components: - type: Transform pos: -46.5,-99.5 parent: 2 - - uid: 37017 + - uid: 39674 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-100.5 parent: 2 - - uid: 37018 + - uid: 39675 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-101.5 parent: 2 - - uid: 37019 + - uid: 39676 components: - type: Transform pos: -49.5,-102.5 parent: 2 - - uid: 37020 + - uid: 39677 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,-101.5 parent: 2 - - uid: 37021 + - uid: 39678 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,-103.5 parent: 2 - - uid: 37022 + - uid: 39679 components: - type: Transform pos: -43.5,-98.5 parent: 2 - - uid: 37023 + - uid: 39680 components: - type: Transform pos: -52.5,-100.5 parent: 2 - - uid: 37024 + - uid: 39681 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-103.5 parent: 2 - - uid: 37025 + - uid: 39682 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-80.5 parent: 2 - - uid: 37026 + - uid: 39683 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-80.5 parent: 2 - - uid: 37027 + - uid: 39684 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-73.5 parent: 2 - - uid: 37028 + - uid: 39685 components: - type: Transform pos: 3.5,-73.5 parent: 2 - - uid: 37029 + - uid: 39686 components: - type: Transform pos: -2.5,-73.5 parent: 2 - - uid: 37030 + - uid: 39687 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-73.5 parent: 2 - - uid: 37033 + - uid: 39688 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-115.5 parent: 2 - - uid: 37034 + - uid: 39689 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-17.5 parent: 2 + - uid: 39690 + components: + - type: Transform + pos: -8.5,21.5 + parent: 2 - proto: WindoorAssembly entities: - - uid: 37036 + - uid: 39691 components: - type: Transform rot: 1.5707963267948966 rad @@ -265922,31 +270660,31 @@ entities: parent: 2 - proto: WindoorAssemblySecure entities: - - uid: 32154 + - uid: 39692 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-47.5 parent: 2 - - uid: 36233 + - uid: 39693 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-41.5 parent: 2 - - uid: 37037 + - uid: 39694 components: - type: Transform pos: -48.5,-72.5 parent: 2 - - uid: 37038 + - uid: 39695 components: - type: Transform pos: 25.5,-80.5 parent: 2 - proto: WindoorBarKitchenLocked entities: - - uid: 37039 + - uid: 39696 components: - type: Transform rot: 3.141592653589793 rad @@ -265954,14 +270692,14 @@ entities: parent: 2 - proto: WindoorBarLocked entities: - - uid: 37040 + - uid: 39697 components: - type: Transform pos: 24.5,4.5 parent: 2 - proto: WindoorClockwork entities: - - uid: 25494 + - uid: 39698 components: - type: Transform rot: 1.5707963267948966 rad @@ -265971,7 +270709,7 @@ entities: containerAccessProvider: null access: - - Service - - uid: 25596 + - uid: 39699 components: - type: Transform rot: 1.5707963267948966 rad @@ -265981,13 +270719,13 @@ entities: containerAccessProvider: null access: - - Service - - uid: 27123 + - uid: 39700 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-22.5 parent: 2 - - uid: 27126 + - uid: 39701 components: - type: Transform rot: -1.5707963267948966 rad @@ -265997,19 +270735,19 @@ entities: containerAccessProvider: null access: - - Service - - uid: 27131 + - uid: 39702 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-27.5 parent: 2 - - uid: 27132 + - uid: 39703 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-28.5 parent: 2 - - uid: 29016 + - uid: 39704 components: - type: Transform rot: 1.5707963267948966 rad @@ -266021,31 +270759,31 @@ entities: - - Service - proto: WindoorHydroponicsLocked entities: - - uid: 37042 + - uid: 39705 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,20.5 parent: 2 - - uid: 40116 + - uid: 39706 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-14.5 parent: 2 - - uid: 40117 + - uid: 39707 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-14.5 parent: 2 - - uid: 40118 + - uid: 39708 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-13.5 parent: 2 - - uid: 40119 + - uid: 39709 components: - type: Transform rot: 3.141592653589793 rad @@ -266053,13 +270791,13 @@ entities: parent: 2 - proto: WindoorKitchenHydroponicsLocked entities: - - uid: 37043 + - uid: 39710 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,11.5 parent: 2 - - uid: 37044 + - uid: 39711 components: - type: Transform rot: -1.5707963267948966 rad @@ -266067,13 +270805,13 @@ entities: parent: 2 - proto: WindoorKitchenLocked entities: - - uid: 37045 + - uid: 39712 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,6.5 parent: 2 - - uid: 37046 + - uid: 39713 components: - type: Transform rot: -1.5707963267948966 rad @@ -266081,12 +270819,12 @@ entities: parent: 2 - proto: WindoorPlasma entities: - - uid: 37047 + - uid: 39714 components: - type: Transform pos: -35.5,-35.5 parent: 2 - - uid: 37048 + - uid: 39715 components: - type: Transform rot: -1.5707963267948966 rad @@ -266094,7 +270832,7 @@ entities: parent: 2 - proto: WindoorSecure entities: - - uid: 1084 + - uid: 39716 components: - type: Transform rot: 3.141592653589793 rad @@ -266104,23 +270842,23 @@ entities: containerAccessProvider: null access: - - Captain - - uid: 2752 + - uid: 39717 components: - type: Transform rot: 1.5707963267948966 rad pos: 61.5,7.5 parent: 2 - - uid: 7161 + - uid: 39718 components: - type: Transform pos: 78.5,-0.5 parent: 2 - - uid: 7947 + - uid: 39719 components: - type: Transform pos: -58.5,-18.5 parent: 2 - - uid: 11653 + - uid: 39720 components: - type: Transform pos: 19.5,20.5 @@ -266129,7 +270867,7 @@ entities: containerAccessProvider: null access: - - Captain - - uid: 15120 + - uid: 39721 components: - type: Transform rot: -1.5707963267948966 rad @@ -266139,50 +270877,50 @@ entities: containerAccessProvider: null access: - - Captain - - uid: 15482 + - uid: 39722 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-77.5 parent: 2 - - uid: 16836 + - uid: 39723 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-21.5 parent: 2 - - uid: 16846 + - uid: 39724 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-22.5 parent: 2 - - uid: 16849 + - uid: 39725 components: - type: Transform pos: -15.5,-24.5 parent: 2 - - uid: 25466 + - uid: 39726 components: - type: Transform pos: 82.5,-0.5 parent: 2 - - uid: 25467 + - uid: 39727 components: - type: Transform pos: 86.5,-0.5 parent: 2 - - uid: 29046 + - uid: 39728 components: - type: Transform pos: -1.5,-28.5 parent: 2 - - uid: 29056 + - uid: 39729 components: - type: Transform pos: 0.5,-29.5 parent: 2 - - uid: 29057 + - uid: 39730 components: - type: Transform rot: 3.141592653589793 rad @@ -266192,7 +270930,7 @@ entities: containerAccessProvider: null access: - - Service - - uid: 33875 + - uid: 39731 components: - type: Transform rot: 1.5707963267948966 rad @@ -266202,7 +270940,7 @@ entities: containerAccessProvider: null access: - - Lawyer - - uid: 33876 + - uid: 39732 components: - type: Transform rot: 1.5707963267948966 rad @@ -266212,7 +270950,7 @@ entities: containerAccessProvider: null access: - - Lawyer - - uid: 33877 + - uid: 39733 components: - type: Transform rot: -1.5707963267948966 rad @@ -266222,19 +270960,19 @@ entities: containerAccessProvider: null access: - - Lawyer - - uid: 36691 + - uid: 39734 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,-78.5 parent: 2 - - uid: 37049 + - uid: 39735 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,-98.5 parent: 2 - - uid: 39108 + - uid: 39736 components: - type: Transform rot: 1.5707963267948966 rad @@ -266245,133 +270983,133 @@ entities: - - Medical - proto: WindoorSecureArmoryLocked entities: - - uid: 3103 + - uid: 39737 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,-23.5 parent: 2 - - uid: 6036 + - uid: 39738 components: - type: Transform pos: 49.5,-16.5 parent: 2 - - uid: 23025 + - uid: 39739 components: - type: Transform rot: 3.141592653589793 rad pos: 100.5,-75.5 parent: 2 - - uid: 23277 + - uid: 39740 components: - type: Transform rot: -1.5707963267948966 rad pos: 100.5,-74.5 parent: 2 - - uid: 25772 + - uid: 39741 components: - type: Transform pos: 96.5,-86.5 parent: 2 - - uid: 25792 + - uid: 39742 components: - type: Transform rot: -1.5707963267948966 rad pos: 101.5,-90.5 parent: 2 - - uid: 25935 + - uid: 39743 components: - type: Transform pos: 94.5,-78.5 parent: 2 - - uid: 26008 + - uid: 39744 components: - type: Transform rot: 1.5707963267948966 rad pos: 101.5,-78.5 parent: 2 - - uid: 33859 + - uid: 39745 components: - type: Transform pos: 102.5,-78.5 parent: 2 - - uid: 36921 + - uid: 39746 components: - type: Transform rot: -1.5707963267948966 rad pos: 95.5,-78.5 parent: 2 - - uid: 37658 + - uid: 39747 components: - type: Transform pos: 90.5,-81.5 parent: 2 - - uid: 37659 + - uid: 39748 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-81.5 parent: 2 - - uid: 37660 + - uid: 39749 components: - type: Transform rot: 3.141592653589793 rad pos: 90.5,-81.5 parent: 2 - - uid: 39048 + - uid: 39750 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,-86.5 parent: 2 - - uid: 39050 + - uid: 39751 components: - type: Transform rot: -1.5707963267948966 rad pos: 96.5,-86.5 parent: 2 - - uid: 39063 + - uid: 39752 components: - type: Transform rot: 3.141592653589793 rad pos: 101.5,-90.5 parent: 2 - - uid: 39064 + - uid: 39753 components: - type: Transform rot: 1.5707963267948966 rad pos: 96.5,-74.5 parent: 2 - - uid: 39065 + - uid: 39754 components: - type: Transform rot: 3.141592653589793 rad pos: 96.5,-75.5 parent: 2 - - uid: 39067 + - uid: 39755 components: - type: Transform rot: -1.5707963267948966 rad pos: 98.5,-66.5 parent: 2 - - uid: 39068 + - uid: 39756 components: - type: Transform rot: 1.5707963267948966 rad pos: 98.5,-66.5 parent: 2 - - uid: 39069 + - uid: 39757 components: - type: Transform pos: 98.5,-66.5 parent: 2 - - uid: 40508 + - uid: 39758 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-19.5 parent: 2 - - uid: 40509 + - uid: 39759 components: - type: Transform rot: 3.141592653589793 rad @@ -266379,60 +271117,60 @@ entities: parent: 2 - proto: WindoorSecureBrigLocked entities: - - uid: 9427 + - uid: 39760 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,14.5 parent: 2 - - uid: 19575 + - uid: 39761 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,16.5 parent: 2 - - uid: 37056 + - uid: 39762 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-79.5 parent: 2 - - uid: 37057 + - uid: 39763 components: - type: Transform pos: -75.5,-51.5 parent: 2 - - uid: 37058 + - uid: 39764 components: - type: Transform pos: -71.5,-51.5 parent: 2 - - uid: 37059 + - uid: 39765 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,12.5 parent: 2 - - uid: 37060 + - uid: 39766 components: - type: Transform pos: 29.5,-80.5 parent: 2 - proto: WindoorSecureCargoLocked entities: - - uid: 37066 + - uid: 39767 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-87.5 parent: 2 - - uid: 37067 + - uid: 39768 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-82.5 parent: 2 - - uid: 37068 + - uid: 39769 components: - type: Transform rot: -1.5707963267948966 rad @@ -266440,74 +271178,74 @@ entities: parent: 2 - proto: WindoorSecureCentralCommandLocked entities: - - uid: 38676 + - uid: 41623 components: - type: Transform pos: -4.5,-4.5 - parent: 37887 - - uid: 38677 + parent: 40828 + - uid: 41624 components: - type: Transform pos: 4.5,-8.5 - parent: 37887 - - uid: 38678 + parent: 40828 + - uid: 41625 components: - type: Transform pos: 5.5,-8.5 - parent: 37887 - - uid: 38679 + parent: 40828 + - uid: 41626 components: - type: Transform pos: 6.5,-8.5 - parent: 37887 - - uid: 38680 + parent: 40828 + - uid: 41627 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-11.5 - parent: 37887 - - uid: 38681 + parent: 40828 + - uid: 41628 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-12.5 - parent: 37887 + parent: 40828 - proto: WindoorSecureCommandLocked entities: - - uid: 31586 + - uid: 39770 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,13.5 parent: 2 - - uid: 37069 + - uid: 39771 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,23.5 parent: 2 - - uid: 37070 + - uid: 39772 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,23.5 parent: 2 - - uid: 37074 + - uid: 39773 components: - type: Transform pos: 37.5,-35.5 parent: 2 - - uid: 37075 + - uid: 39774 components: - type: Transform pos: 38.5,-35.5 parent: 2 - - uid: 37076 + - uid: 39775 components: - type: Transform pos: 39.5,-35.5 parent: 2 - - uid: 37078 + - uid: 39776 components: - type: Transform rot: 1.5707963267948966 rad @@ -266515,12 +271253,12 @@ entities: parent: 2 - proto: WindoorSecureEngineeringLocked entities: - - uid: 37079 + - uid: 39777 components: - type: Transform pos: -5.5,17.5 parent: 2 - - uid: 37083 + - uid: 39778 components: - type: Transform rot: 1.5707963267948966 rad @@ -266528,7 +271266,7 @@ entities: parent: 2 - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 37085 + - uid: 39779 components: - type: Transform rot: 3.141592653589793 rad @@ -266536,35 +271274,35 @@ entities: parent: 2 - proto: WindoorSecureMedicalLocked entities: - - uid: 18531 + - uid: 39780 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-19.5 parent: 2 - - uid: 18606 + - uid: 39781 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,-18.5 parent: 2 - - uid: 37087 + - uid: 39782 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,13.5 parent: 2 - - uid: 41123 + - uid: 39783 components: - type: Transform pos: -36.5,-26.5 parent: 2 - - uid: 41162 + - uid: 39784 components: - type: Transform pos: -35.5,-26.5 parent: 2 - - uid: 41163 + - uid: 39785 components: - type: Transform rot: 3.141592653589793 rad @@ -266572,109 +271310,109 @@ entities: parent: 2 - proto: WindoorSecureNukeopLocked entities: - - uid: 27026 + - uid: 39786 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-23.5 parent: 2 - - uid: 27027 + - uid: 39787 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-21.5 parent: 2 - - uid: 27028 + - uid: 39788 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-22.5 parent: 2 - - uid: 27029 + - uid: 39789 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-24.5 parent: 2 - - uid: 27030 + - uid: 39790 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-24.5 parent: 2 - - uid: 27031 + - uid: 39791 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-23.5 parent: 2 - - uid: 27032 + - uid: 39792 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-21.5 parent: 2 - - uid: 27033 + - uid: 39793 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-22.5 parent: 2 - - uid: 27034 + - uid: 39794 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-19.5 parent: 2 - - uid: 27035 + - uid: 39795 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-18.5 parent: 2 - - uid: 27036 + - uid: 39796 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-17.5 parent: 2 - - uid: 27037 + - uid: 39797 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-16.5 parent: 2 - - uid: 29997 + - uid: 39798 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-15.5 parent: 2 - - uid: 30000 + - uid: 39799 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-15.5 parent: 2 - - uid: 30315 + - uid: 39800 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-16.5 parent: 2 - - uid: 34132 + - uid: 39801 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-17.5 parent: 2 - - uid: 39182 + - uid: 39802 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-19.5 parent: 2 - - uid: 40041 + - uid: 39803 components: - type: Transform rot: 1.5707963267948966 rad @@ -266682,48 +271420,48 @@ entities: parent: 2 - proto: WindoorSecurePlasma entities: - - uid: 6185 + - uid: 39804 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-30.5 parent: 2 - - uid: 7142 + - uid: 39805 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-30.5 parent: 2 - - uid: 26425 + - uid: 39806 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-13.5 parent: 2 - - uid: 26426 + - uid: 39807 components: - type: Transform pos: 10.5,-12.5 parent: 2 - - uid: 26427 + - uid: 39808 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-13.5 parent: 2 - - uid: 26428 + - uid: 39809 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-14.5 parent: 2 - - uid: 29413 + - uid: 39810 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-41.5 parent: 2 - - uid: 39588 + - uid: 39811 components: - type: Transform rot: 3.141592653589793 rad @@ -266731,48 +271469,48 @@ entities: parent: 2 - proto: WindoorSecureSalvageLocked entities: - - uid: 37088 + - uid: 39812 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-88.5 parent: 2 - - uid: 37089 + - uid: 39813 components: - type: Transform pos: -3.5,17.5 parent: 2 - - uid: 37090 + - uid: 39814 components: - type: Transform pos: -8.5,-77.5 parent: 2 - proto: WindoorSecureScienceLocked entities: - - uid: 37091 + - uid: 39815 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-72.5 parent: 2 - - uid: 37092 + - uid: 39816 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,-72.5 parent: 2 - - uid: 37093 + - uid: 39817 components: - type: Transform pos: -50.5,-72.5 parent: 2 - - uid: 37094 + - uid: 39818 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-52.5 parent: 2 - - uid: 37095 + - uid: 39819 components: - type: Transform rot: -1.5707963267948966 rad @@ -266780,19 +271518,19 @@ entities: parent: 2 - proto: WindoorSecureSecurityLawyerLocked entities: - - uid: 25039 + - uid: 39820 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-39.5 parent: 2 - - uid: 40510 + - uid: 39821 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,-19.5 parent: 2 - - uid: 40511 + - uid: 39822 components: - type: Transform rot: 3.141592653589793 rad @@ -266800,196 +271538,196 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 321 + - uid: 39823 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,15.5 parent: 2 - - uid: 815 + - uid: 39824 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,5.5 parent: 2 - - uid: 2592 + - uid: 39825 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,6.5 parent: 2 - - uid: 2754 + - uid: 39826 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-21.5 parent: 2 - - uid: 2820 + - uid: 39827 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,2.5 parent: 2 - - uid: 6040 + - uid: 39828 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-23.5 parent: 2 - - uid: 11078 + - uid: 39829 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,1.5 parent: 2 - - uid: 11079 + - uid: 39830 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,4.5 parent: 2 - - uid: 11080 + - uid: 39831 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,1.5 parent: 2 - - uid: 11147 + - uid: 39832 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,6.5 parent: 2 - - uid: 11490 + - uid: 39833 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,5.5 parent: 2 - - uid: 15533 + - uid: 39834 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,2.5 parent: 2 - - uid: 19520 + - uid: 39835 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-16.5 parent: 2 - - uid: 19525 + - uid: 39836 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,4.5 parent: 2 - - uid: 21058 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 21045 - - uid: 21239 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,1.5 - parent: 21045 - - uid: 21302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 21045 - - uid: 21311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,1.5 - parent: 21045 - - uid: 27384 + - uid: 39837 components: - type: Transform rot: -1.5707963267948966 rad pos: 74.5,-7.5 parent: 2 - - uid: 27388 + - uid: 39838 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-7.5 parent: 2 - - uid: 33208 + - uid: 39839 components: - type: Transform rot: 3.141592653589793 rad pos: 79.5,5.5 parent: 2 - - uid: 33878 + - uid: 39840 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-33.5 parent: 2 - - uid: 37097 + - uid: 39841 components: - type: Transform rot: 3.141592653589793 rad pos: 77.5,-30.5 parent: 2 - - uid: 37099 + - uid: 39842 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-40.5 parent: 2 - - uid: 37103 + - uid: 39843 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,13.5 parent: 2 - - uid: 40161 + - uid: 39844 components: - type: Transform pos: -5.5,2.5 parent: 2 + - uid: 40821 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 40666 + - uid: 40822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 40666 + - uid: 40823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 40666 + - uid: 40824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 40666 - proto: WindoorSecureUranium entities: - - uid: 6962 + - uid: 39845 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,21.5 parent: 2 - - uid: 6963 + - uid: 39846 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,21.5 parent: 2 - - uid: 6964 + - uid: 39847 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,21.5 parent: 2 - - uid: 6965 + - uid: 39848 components: - type: Transform pos: 15.5,19.5 parent: 2 - - uid: 6966 + - uid: 39849 components: - type: Transform pos: 16.5,19.5 parent: 2 - - uid: 6967 + - uid: 39850 components: - type: Transform pos: 17.5,19.5 parent: 2 - - uid: 37108 + - uid: 39851 components: - type: MetaData desc: Атмосия @@ -267001,7 +271739,7 @@ entities: containerAccessProvider: null access: - - Atmospherics - - uid: 37109 + - uid: 39852 components: - type: MetaData desc: Атмосия @@ -267013,7 +271751,7 @@ entities: containerAccessProvider: null access: - - Atmospherics - - uid: 37110 + - uid: 39853 components: - type: Transform rot: 3.141592653589793 rad @@ -267021,7 +271759,7 @@ entities: parent: 2 - proto: WindoorServiceLocked entities: - - uid: 37111 + - uid: 39854 components: - type: Transform rot: -1.5707963267948966 rad @@ -267029,209 +271767,209 @@ entities: parent: 2 - proto: Window entities: - - uid: 37112 + - uid: 39855 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-48.5 parent: 2 - - uid: 37113 + - uid: 39856 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-47.5 parent: 2 - - uid: 37114 + - uid: 39857 components: - type: Transform pos: -33.5,-81.5 parent: 2 - - uid: 37115 + - uid: 39858 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-64.5 parent: 2 - - uid: 37116 + - uid: 39859 components: - type: Transform rot: 1.5707963267948966 rad pos: -67.5,-46.5 parent: 2 - - uid: 37117 + - uid: 39860 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-58.5 parent: 2 - - uid: 37118 + - uid: 39861 components: - type: Transform rot: 1.5707963267948966 rad pos: -65.5,-46.5 parent: 2 - - uid: 37119 + - uid: 39862 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,-46.5 parent: 2 - - uid: 37120 + - uid: 39863 components: - type: Transform rot: 1.5707963267948966 rad pos: -66.5,-46.5 parent: 2 - - uid: 37121 + - uid: 39864 components: - type: Transform pos: 2.5,-79.5 parent: 2 - - uid: 37122 + - uid: 39865 components: - type: Transform pos: 2.5,-78.5 parent: 2 - - uid: 37123 + - uid: 39866 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,-7.5 parent: 2 - - uid: 37124 + - uid: 39867 components: - type: Transform pos: -23.5,-90.5 parent: 2 - - uid: 37125 + - uid: 39868 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,-4.5 parent: 2 - - uid: 37126 + - uid: 39869 components: - type: Transform pos: -53.5,-26.5 parent: 2 - - uid: 37127 + - uid: 39870 components: - type: Transform pos: -54.5,-26.5 parent: 2 - - uid: 37128 + - uid: 39871 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-57.5 parent: 2 - - uid: 37129 + - uid: 39872 components: - type: Transform pos: -26.5,-73.5 parent: 2 - - uid: 37130 + - uid: 39873 components: - type: Transform pos: -35.5,-24.5 parent: 2 - - uid: 37131 + - uid: 39874 components: - type: Transform pos: -36.5,-24.5 parent: 2 - - uid: 37132 + - uid: 39875 components: - type: Transform pos: -37.5,-24.5 parent: 2 - - uid: 37133 + - uid: 39876 components: - type: Transform pos: -23.5,-0.5 parent: 2 - - uid: 37134 + - uid: 39877 components: - type: Transform pos: -28.5,-4.5 parent: 2 - - uid: 37135 + - uid: 39878 components: - type: Transform pos: -39.5,-21.5 parent: 2 - - uid: 37136 + - uid: 39879 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-73.5 parent: 2 - - uid: 37137 + - uid: 39880 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-73.5 parent: 2 - - uid: 37138 + - uid: 39881 components: - type: Transform pos: 27.5,-72.5 parent: 2 - - uid: 37139 + - uid: 39882 components: - type: Transform pos: 26.5,-72.5 parent: 2 - - uid: 37140 + - uid: 39883 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,13.5 parent: 2 - - uid: 37141 + - uid: 39884 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,13.5 parent: 2 - - uid: 37142 + - uid: 39885 components: - type: Transform pos: 27.5,23.5 parent: 2 - - uid: 37143 + - uid: 39886 components: - type: Transform pos: 25.5,23.5 parent: 2 - - uid: 37144 + - uid: 39887 components: - type: Transform pos: -48.5,13.5 parent: 2 - - uid: 37145 + - uid: 39888 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-26.5 parent: 2 - - uid: 37146 + - uid: 39889 components: - type: Transform pos: -40.5,-2.5 parent: 2 - - uid: 37147 + - uid: 39890 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-2.5 parent: 2 - - uid: 37148 + - uid: 39891 components: - type: Transform pos: -22.5,-90.5 parent: 2 - - uid: 37149 + - uid: 39892 components: - type: Transform rot: 3.141592653589793 rad @@ -267239,285 +271977,285 @@ entities: parent: 2 - proto: WindowClockworkDirectional entities: - - uid: 25070 + - uid: 39893 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-23.5 parent: 2 - - uid: 25110 + - uid: 39894 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-22.5 parent: 2 - - uid: 25111 + - uid: 39895 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-23.5 parent: 2 - - uid: 25115 + - uid: 39896 components: - type: Transform pos: 0.5,-23.5 parent: 2 - - uid: 25131 + - uid: 39897 components: - type: Transform pos: 2.5,-23.5 parent: 2 - - uid: 25143 + - uid: 39898 components: - type: Transform pos: -1.5,-23.5 parent: 2 - - uid: 25147 + - uid: 39899 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-23.5 parent: 2 - - uid: 25148 + - uid: 39900 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-22.5 parent: 2 - - uid: 25160 + - uid: 39901 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-23.5 parent: 2 - - uid: 25177 + - uid: 39902 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-27.5 parent: 2 - - uid: 25178 + - uid: 39903 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-26.5 parent: 2 - - uid: 25193 + - uid: 39904 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-26.5 parent: 2 - - uid: 25194 + - uid: 39905 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-26.5 parent: 2 - - uid: 25259 + - uid: 39906 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-27.5 parent: 2 - - uid: 25335 + - uid: 39907 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-29.5 parent: 2 - - uid: 25366 + - uid: 39908 components: - type: Transform pos: 2.5,-29.5 parent: 2 - - uid: 25368 + - uid: 39909 components: - type: Transform pos: 3.5,-29.5 parent: 2 - - uid: 25427 + - uid: 39910 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-27.5 parent: 2 - - uid: 25501 + - uid: 39911 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-25.5 parent: 2 - - uid: 25595 + - uid: 39912 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-23.5 parent: 2 - - uid: 25597 + - uid: 39913 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-21.5 parent: 2 - - uid: 25734 + - uid: 39914 components: - type: Transform pos: -3.5,-28.5 parent: 2 - - uid: 25736 + - uid: 39915 components: - type: Transform pos: 0.5,-28.5 parent: 2 - - uid: 25777 + - uid: 39916 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-28.5 parent: 2 - - uid: 25788 + - uid: 39917 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-28.5 parent: 2 - - uid: 25790 + - uid: 39918 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-27.5 parent: 2 - - uid: 25793 + - uid: 39919 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-26.5 parent: 2 - - uid: 25928 + - uid: 39920 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-26.5 parent: 2 - - uid: 26026 + - uid: 39921 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-26.5 parent: 2 - - uid: 26051 + - uid: 39922 components: - type: Transform pos: -0.5,-28.5 parent: 2 - - uid: 26052 + - uid: 39923 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-28.5 parent: 2 - - uid: 26092 + - uid: 39924 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-27.5 parent: 2 - - uid: 27122 + - uid: 39925 components: - type: Transform pos: 1.5,-23.5 parent: 2 - - uid: 27124 + - uid: 39926 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-27.5 parent: 2 - - uid: 27125 + - uid: 39927 components: - type: Transform pos: -2.5,-28.5 parent: 2 - - uid: 29015 + - uid: 39928 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-26.5 parent: 2 - - uid: 29017 + - uid: 39929 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-28.5 parent: 2 - - uid: 29115 + - uid: 39930 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-26.5 parent: 2 - - uid: 32264 + - uid: 39931 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-54.5 parent: 2 - - uid: 32265 + - uid: 39932 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-53.5 parent: 2 - - uid: 32266 + - uid: 39933 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-52.5 parent: 2 - - uid: 32267 + - uid: 39934 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-51.5 parent: 2 - - uid: 32268 + - uid: 39935 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-50.5 parent: 2 - - uid: 32270 + - uid: 39936 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-50.5 parent: 2 - - uid: 32271 + - uid: 39937 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-49.5 parent: 2 - - uid: 32282 + - uid: 39938 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-51.5 parent: 2 - - uid: 32283 + - uid: 39939 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-52.5 parent: 2 - - uid: 32284 + - uid: 39940 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-53.5 parent: 2 - - uid: 32285 + - uid: 39941 components: - type: Transform rot: 1.5707963267948966 rad @@ -267525,1390 +272263,1400 @@ entities: parent: 2 - proto: WindowDirectional entities: - - uid: 24404 + - uid: 39942 + components: + - type: Transform + pos: -10.5,21.5 + parent: 2 + - uid: 39943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,19.5 + parent: 2 + - uid: 39944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,20.5 + parent: 2 + - uid: 39945 + components: + - type: Transform + pos: -9.5,21.5 + parent: 2 + - uid: 39946 + components: + - type: Transform + pos: -7.5,21.5 + parent: 2 + - uid: 39947 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-15.5 parent: 2 - - uid: 24409 + - uid: 39948 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-15.5 parent: 2 - - uid: 24410 + - uid: 39949 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-15.5 parent: 2 - - uid: 24449 + - uid: 39950 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-15.5 parent: 2 - - uid: 24450 + - uid: 39951 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-15.5 parent: 2 - - uid: 24451 + - uid: 39952 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-13.5 parent: 2 - - uid: 24462 + - uid: 39953 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-13.5 parent: 2 - - uid: 24463 + - uid: 39954 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-13.5 parent: 2 - - uid: 24484 + - uid: 39955 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-13.5 parent: 2 - - uid: 24485 + - uid: 39956 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-13.5 parent: 2 - - uid: 24486 + - uid: 39957 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-14.5 parent: 2 - - uid: 24487 + - uid: 39958 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-14.5 parent: 2 - - uid: 24488 + - uid: 39959 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-14.5 parent: 2 - - uid: 24489 + - uid: 39960 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-14.5 parent: 2 - - uid: 24490 + - uid: 39961 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-14.5 parent: 2 - - uid: 24492 + - uid: 39962 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-14.5 parent: 2 - - uid: 24511 + - uid: 39963 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-16.5 parent: 2 - - uid: 24512 + - uid: 39964 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 2 - - uid: 24513 + - uid: 39965 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-16.5 parent: 2 - - uid: 24514 + - uid: 39966 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-16.5 parent: 2 - - uid: 24515 + - uid: 39967 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-16.5 parent: 2 - - uid: 24516 + - uid: 39968 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-16.5 parent: 2 - - uid: 24521 + - uid: 39969 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-18.5 parent: 2 - - uid: 24522 + - uid: 39970 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-18.5 parent: 2 - - uid: 24523 + - uid: 39971 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-18.5 parent: 2 - - uid: 24524 + - uid: 39972 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-18.5 parent: 2 - - uid: 24525 + - uid: 39973 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-18.5 parent: 2 - - uid: 24526 + - uid: 39974 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-16.5 parent: 2 - - uid: 24538 + - uid: 39975 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-16.5 parent: 2 - - uid: 24539 + - uid: 39976 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-16.5 parent: 2 - - uid: 24540 + - uid: 39977 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-16.5 parent: 2 - - uid: 24541 + - uid: 39978 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-16.5 parent: 2 - - uid: 24542 + - uid: 39979 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-16.5 parent: 2 - - uid: 24545 + - uid: 39980 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-14.5 parent: 2 - - uid: 24546 + - uid: 39981 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-14.5 parent: 2 - - uid: 24552 + - uid: 39982 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-15.5 parent: 2 - - uid: 24554 + - uid: 39983 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-15.5 parent: 2 - - uid: 24555 + - uid: 39984 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-13.5 parent: 2 - - uid: 24557 + - uid: 39985 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-13.5 parent: 2 - - uid: 24558 + - uid: 39986 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-18.5 parent: 2 - - uid: 24559 + - uid: 39987 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 2 - - uid: 25033 + - uid: 39988 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-12.5 parent: 2 - - uid: 25034 + - uid: 39989 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-12.5 parent: 2 - - uid: 25035 + - uid: 39990 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-13.5 parent: 2 - - uid: 25036 + - uid: 39991 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-16.5 parent: 2 - - uid: 25041 + - uid: 39992 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-16.5 parent: 2 - - uid: 25042 + - uid: 39993 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-14.5 parent: 2 - - uid: 25063 + - uid: 39994 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,-14.5 parent: 2 - - uid: 25064 + - uid: 39995 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-15.5 parent: 2 - - uid: 30773 + - uid: 39996 components: - type: Transform pos: -17.5,-37.5 parent: 2 - - uid: 30774 + - uid: 39997 components: - type: Transform pos: -17.5,-38.5 parent: 2 - - uid: 30775 + - uid: 39998 components: - type: Transform pos: -17.5,-33.5 parent: 2 - - uid: 30776 + - uid: 39999 components: - type: Transform pos: -17.5,-32.5 parent: 2 - - uid: 30777 + - uid: 40000 components: - type: Transform pos: -15.5,-32.5 parent: 2 - - uid: 30778 + - uid: 40001 components: - type: Transform pos: -15.5,-33.5 parent: 2 - - uid: 30779 + - uid: 40002 components: - type: Transform pos: -15.5,-37.5 parent: 2 - - uid: 30780 + - uid: 40003 components: - type: Transform pos: -15.5,-38.5 parent: 2 - - uid: 30784 + - uid: 40004 components: - type: Transform pos: -17.5,-39.5 parent: 2 - - uid: 30785 + - uid: 40005 components: - type: Transform pos: -15.5,-39.5 parent: 2 - - uid: 30786 + - uid: 40006 components: - type: Transform pos: -15.5,-34.5 parent: 2 - - uid: 30787 + - uid: 40007 components: - type: Transform pos: -17.5,-34.5 parent: 2 - - uid: 30788 + - uid: 40008 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-32.5 parent: 2 - - uid: 30789 + - uid: 40009 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-32.5 parent: 2 - - uid: 30790 + - uid: 40010 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-37.5 parent: 2 - - uid: 30791 + - uid: 40011 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-37.5 parent: 2 - - uid: 30792 + - uid: 40012 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-36.5 parent: 2 - - uid: 30793 + - uid: 40013 components: - type: Transform pos: -19.5,-38.5 parent: 2 - - uid: 30794 + - uid: 40014 components: - type: Transform pos: -19.5,-37.5 parent: 2 - - uid: 30795 + - uid: 40015 components: - type: Transform pos: -19.5,-36.5 parent: 2 - - uid: 30833 + - uid: 40016 components: - type: Transform pos: -19.5,-34.5 parent: 2 - - uid: 30834 + - uid: 40017 components: - type: Transform pos: -19.5,-33.5 parent: 2 - - uid: 30835 + - uid: 40018 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-32.5 parent: 2 - - uid: 30836 + - uid: 40019 components: - type: Transform pos: -19.5,-32.5 parent: 2 - - uid: 30837 + - uid: 40020 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-32.5 parent: 2 - - uid: 30838 + - uid: 40021 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-33.5 parent: 2 - - uid: 30839 + - uid: 40022 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-34.5 parent: 2 - - uid: 37150 + - uid: 40023 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-100.5 parent: 2 - - uid: 37151 + - uid: 40024 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-99.5 parent: 2 - - uid: 37152 + - uid: 40025 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-101.5 parent: 2 - - uid: 37153 + - uid: 40026 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-100.5 parent: 2 - - uid: 37154 + - uid: 40027 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-99.5 parent: 2 - - uid: 37155 + - uid: 40028 components: - type: Transform rot: 1.5707963267948966 rad pos: -37.5,-101.5 parent: 2 - - uid: 37156 + - uid: 40029 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-11.5 parent: 2 - - uid: 37157 + - uid: 40030 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,5.5 parent: 2 - - uid: 37158 + - uid: 40031 components: - type: Transform pos: 31.5,-13.5 parent: 2 - - uid: 37159 + - uid: 40032 components: - type: Transform pos: 27.5,5.5 parent: 2 - - uid: 37160 + - uid: 40033 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-11.5 parent: 2 - - uid: 37161 + - uid: 40034 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,13.5 parent: 2 - - uid: 37162 + - uid: 40035 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,14.5 parent: 2 - - uid: 37163 + - uid: 40036 components: - type: Transform pos: 35.5,4.5 parent: 2 - - uid: 37164 + - uid: 40037 components: - type: Transform pos: 36.5,4.5 parent: 2 - - uid: 37165 + - uid: 40038 components: - type: Transform pos: 37.5,4.5 parent: 2 - - uid: 37166 + - uid: 40039 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,4.5 parent: 2 - - uid: 37167 + - uid: 40040 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,0.5 parent: 2 - - uid: 37168 + - uid: 40041 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,5.5 parent: 2 - - uid: 37169 + - uid: 40042 components: - type: Transform pos: 28.5,7.5 parent: 2 - - uid: 37170 + - uid: 40043 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,4.5 parent: 2 - - uid: 37171 + - uid: 40044 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-11.5 parent: 2 - - uid: 37172 + - uid: 40045 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,13.5 parent: 2 - - uid: 37173 + - uid: 40046 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,12.5 parent: 2 - - uid: 37174 + - uid: 40047 components: - type: Transform pos: 32.5,12.5 parent: 2 - - uid: 37175 + - uid: 40048 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,5.5 parent: 2 - - uid: 37178 + - uid: 40049 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,0.5 parent: 2 - - uid: 37179 + - uid: 40050 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,0.5 parent: 2 - - uid: 37180 + - uid: 40051 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,14.5 parent: 2 - - uid: 37181 + - uid: 40052 components: - type: Transform pos: 28.5,0.5 parent: 2 - - uid: 37182 + - uid: 40053 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-33.5 parent: 2 - - uid: 37183 + - uid: 40054 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-12.5 parent: 2 - - uid: 37185 + - uid: 40055 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,4.5 parent: 2 - - uid: 37186 + - uid: 40056 components: - type: Transform pos: -36.5,-120.5 parent: 2 - - uid: 37187 + - uid: 40057 components: - type: Transform pos: -39.5,-120.5 parent: 2 - - uid: 37188 + - uid: 40058 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-119.5 parent: 2 - - uid: 37189 + - uid: 40059 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-120.5 parent: 2 - - uid: 37190 + - uid: 40060 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-120.5 parent: 2 - - uid: 37191 + - uid: 40061 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-119.5 parent: 2 - - uid: 37192 + - uid: 40062 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,-13.5 parent: 2 - - uid: 37193 + - uid: 40063 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,4.5 parent: 2 - - uid: 37194 + - uid: 40064 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,4.5 parent: 2 - - uid: 37195 + - uid: 40065 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,12.5 parent: 2 - - uid: 37196 + - uid: 40066 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,4.5 parent: 2 - - uid: 37197 + - uid: 40067 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-36.5 parent: 2 - - uid: 37198 + - uid: 40068 components: - type: Transform pos: -54.5,-36.5 parent: 2 - - uid: 37199 + - uid: 40069 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-12.5 parent: 2 - - uid: 37200 + - uid: 40070 components: - type: Transform pos: -53.5,-36.5 parent: 2 - - uid: 37201 + - uid: 40071 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-11.5 parent: 2 - - uid: 37202 + - uid: 40072 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-9.5 parent: 2 - - uid: 37203 + - uid: 40073 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-8.5 parent: 2 - - uid: 37204 + - uid: 40074 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,-10.5 parent: 2 - - uid: 37205 + - uid: 40075 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,5.5 parent: 2 - - uid: 37206 + - uid: 40076 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,5.5 parent: 2 - - uid: 37207 + - uid: 40077 components: - type: Transform pos: -4.5,5.5 parent: 2 - - uid: 37208 + - uid: 40078 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,5.5 parent: 2 - - uid: 37209 + - uid: 40079 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,5.5 parent: 2 - - uid: 37210 + - uid: 40080 components: - type: Transform pos: -5.5,5.5 parent: 2 - - uid: 37211 + - uid: 40081 components: - type: Transform pos: -3.5,5.5 parent: 2 - - uid: 37212 + - uid: 40082 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,5.5 parent: 2 - - uid: 37213 + - uid: 40083 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-20.5 parent: 2 - - uid: 37214 + - uid: 40084 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-24.5 parent: 2 - - uid: 37215 + - uid: 40085 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-74.5 parent: 2 - - uid: 37216 + - uid: 40086 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-73.5 parent: 2 - - uid: 37217 + - uid: 40087 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,-72.5 parent: 2 - - uid: 37218 + - uid: 40088 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-22.5 parent: 2 - - uid: 37219 + - uid: 40089 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-24.5 parent: 2 - - uid: 37220 + - uid: 40090 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-20.5 parent: 2 - - uid: 37221 + - uid: 40091 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-20.5 parent: 2 - - uid: 37222 + - uid: 40092 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-22.5 parent: 2 - - uid: 37223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,19.5 - parent: 2 - - uid: 37224 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,20.5 - parent: 2 - - uid: 37225 - components: - - type: Transform - pos: -7.5,21.5 - parent: 2 - - uid: 37226 + - uid: 40093 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-22.5 parent: 2 - - uid: 37227 + - uid: 40094 components: - type: Transform rot: 3.141592653589793 rad pos: -46.5,-24.5 parent: 2 - - uid: 37228 + - uid: 40095 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-34.5 parent: 2 - - uid: 37229 + - uid: 40096 components: - type: Transform rot: -1.5707963267948966 rad pos: -55.5,-31.5 parent: 2 - - uid: 37230 + - uid: 40097 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-92.5 parent: 2 - - uid: 37231 + - uid: 40098 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-36.5 parent: 2 - - uid: 37232 + - uid: 40099 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-36.5 parent: 2 - - uid: 37233 + - uid: 40100 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-37.5 parent: 2 - - uid: 37234 + - uid: 40101 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-38.5 parent: 2 - - uid: 37235 + - uid: 40102 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-39.5 parent: 2 - - uid: 37236 + - uid: 40103 components: - type: Transform rot: 1.5707963267948966 rad pos: -73.5,-40.5 parent: 2 - - uid: 37237 + - uid: 40104 components: - type: Transform pos: -73.5,-40.5 parent: 2 - - uid: 37238 + - uid: 40105 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-40.5 parent: 2 - - uid: 37239 + - uid: 40106 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-39.5 parent: 2 - - uid: 37240 + - uid: 40107 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-38.5 parent: 2 - - uid: 37241 + - uid: 40108 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-37.5 parent: 2 - - uid: 37242 + - uid: 40109 components: - type: Transform rot: -1.5707963267948966 rad pos: -73.5,-36.5 parent: 2 - - uid: 37243 + - uid: 40110 components: - type: Transform pos: -25.5,-68.5 parent: 2 - - uid: 37244 + - uid: 40111 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-74.5 parent: 2 - - uid: 37245 + - uid: 40112 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-73.5 parent: 2 - - uid: 37246 + - uid: 40113 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,-72.5 parent: 2 - - uid: 37247 + - uid: 40114 components: - type: Transform pos: -53.5,-13.5 parent: 2 - - uid: 37248 + - uid: 40115 components: - type: Transform pos: -52.5,-13.5 parent: 2 - - uid: 37249 + - uid: 40116 components: - type: Transform pos: -51.5,-13.5 parent: 2 - - uid: 37250 + - uid: 40117 components: - type: Transform pos: -50.5,19.5 parent: 2 - - uid: 37260 + - uid: 40118 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-74.5 parent: 2 - - uid: 37261 + - uid: 40119 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-74.5 parent: 2 - - uid: 37262 + - uid: 40120 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-74.5 parent: 2 - - uid: 37263 + - uid: 40121 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-76.5 parent: 2 - - uid: 37264 + - uid: 40122 components: - type: Transform pos: -62.5,-61.5 parent: 2 - - uid: 37265 + - uid: 40123 components: - type: Transform pos: -63.5,-61.5 parent: 2 - - uid: 37266 + - uid: 40124 components: - type: Transform pos: -64.5,-61.5 parent: 2 - - uid: 37267 + - uid: 40125 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,-61.5 parent: 2 - - uid: 37268 + - uid: 40126 components: - type: Transform rot: 3.141592653589793 rad pos: -64.5,-61.5 parent: 2 - - uid: 37269 + - uid: 40127 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-61.5 parent: 2 - - uid: 37270 + - uid: 40128 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-61.5 parent: 2 - - uid: 37271 + - uid: 40129 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-61.5 parent: 2 - - uid: 37272 + - uid: 40130 components: - type: Transform rot: -1.5707963267948966 rad pos: -51.5,-93.5 parent: 2 - - uid: 37273 + - uid: 40131 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-92.5 parent: 2 - - uid: 37274 + - uid: 40132 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-92.5 parent: 2 - - uid: 37275 + - uid: 40133 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-45.5 parent: 2 - - uid: 37276 + - uid: 40134 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-45.5 parent: 2 - - uid: 37277 + - uid: 40135 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-45.5 parent: 2 - - uid: 37278 + - uid: 40136 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-45.5 parent: 2 - - uid: 37279 + - uid: 40137 components: - type: Transform pos: 56.5,-45.5 parent: 2 - - uid: 37280 + - uid: 40138 components: - type: Transform pos: 57.5,-45.5 parent: 2 - - uid: 37281 + - uid: 40139 components: - type: Transform pos: 58.5,-45.5 parent: 2 - - uid: 37282 + - uid: 40140 components: - type: Transform rot: 1.5707963267948966 rad pos: 60.5,-46.5 parent: 2 - - uid: 37283 + - uid: 40141 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,21.5 parent: 2 - - uid: 37284 + - uid: 40142 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,21.5 parent: 2 - - uid: 37285 + - uid: 40143 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,19.5 parent: 2 - - uid: 37286 + - uid: 40144 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,19.5 parent: 2 - - uid: 37287 + - uid: 40145 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,19.5 parent: 2 - - uid: 37288 + - uid: 40146 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,21.5 parent: 2 - - uid: 37289 + - uid: 40147 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,21.5 parent: 2 - - uid: 37290 + - uid: 40148 components: - type: Transform pos: -50.5,21.5 parent: 2 - - uid: 37291 + - uid: 40149 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,21.5 parent: 2 - - uid: 37292 + - uid: 40150 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,19.5 parent: 2 - - uid: 37293 + - uid: 40151 components: - type: Transform pos: -42.5,19.5 parent: 2 - - uid: 37294 + - uid: 40152 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,19.5 parent: 2 - - uid: 37295 + - uid: 40153 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,19.5 parent: 2 - - uid: 37296 + - uid: 40154 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,21.5 parent: 2 - - uid: 37297 + - uid: 40155 components: - type: Transform pos: -42.5,21.5 parent: 2 - - uid: 37298 + - uid: 40156 components: - type: Transform pos: -41.5,14.5 parent: 2 - - uid: 37299 + - uid: 40157 components: - type: Transform pos: -42.5,14.5 parent: 2 - - uid: 37300 + - uid: 40158 components: - type: Transform pos: -43.5,14.5 parent: 2 - - uid: 37301 + - uid: 40159 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,15.5 parent: 2 - - uid: 37302 + - uid: 40160 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,15.5 parent: 2 - - uid: 37303 + - uid: 40161 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,15.5 parent: 2 - - uid: 37304 + - uid: 40162 components: - type: Transform rot: 3.141592653589793 rad pos: -41.5,15.5 parent: 2 - - uid: 37305 + - uid: 40163 components: - type: Transform pos: -26.5,-68.5 parent: 2 - - uid: 37306 + - uid: 40164 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-68.5 parent: 2 - - uid: 37307 + - uid: 40165 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-67.5 parent: 2 - - uid: 37308 + - uid: 40166 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-67.5 parent: 2 - - uid: 37309 + - uid: 40167 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-68.5 parent: 2 - - uid: 37310 + - uid: 40168 components: - type: Transform pos: 27.5,-68.5 parent: 2 - - uid: 37311 + - uid: 40169 components: - type: Transform pos: 26.5,-68.5 parent: 2 - - uid: 37312 + - uid: 40170 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-116.5 parent: 2 - - uid: 37313 + - uid: 40171 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,-114.5 parent: 2 - - uid: 37314 + - uid: 40172 components: - type: Transform pos: -84.5,0.5 parent: 2 - - uid: 37315 + - uid: 40173 components: - type: Transform rot: -1.5707963267948966 rad pos: -84.5,0.5 parent: 2 - - uid: 37316 + - uid: 40174 components: - type: Transform rot: -1.5707963267948966 rad pos: -84.5,1.5 parent: 2 - - uid: 37317 + - uid: 40175 components: - type: Transform rot: -1.5707963267948966 rad pos: -84.5,2.5 parent: 2 - - uid: 37318 + - uid: 40176 components: - type: Transform rot: 3.141592653589793 rad pos: -84.5,2.5 parent: 2 - - uid: 37319 + - uid: 40177 components: - type: Transform rot: 3.141592653589793 rad pos: -83.5,2.5 parent: 2 - - uid: 37320 + - uid: 40178 components: - type: Transform rot: 1.5707963267948966 rad pos: -83.5,1.5 parent: 2 - - uid: 37321 + - uid: 40179 components: - type: Transform rot: 1.5707963267948966 rad pos: -83.5,2.5 parent: 2 - - uid: 37322 + - uid: 40180 components: - type: Transform pos: -55.5,-36.5 parent: 2 - - uid: 37323 + - uid: 40181 components: - type: Transform rot: -1.5707963267948966 rad pos: 31.5,-13.5 parent: 2 - - uid: 37326 + - uid: 40182 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-83.5 parent: 2 - - uid: 37327 + - uid: 40183 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-84.5 parent: 2 - - uid: 41101 + - uid: 40184 components: - type: Transform rot: 1.5707963267948966 rad @@ -268916,2741 +273664,2715 @@ entities: parent: 2 - proto: WindowFrostedDirectional entities: - - uid: 2629 + - uid: 40185 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,-9.5 parent: 2 - - uid: 2667 + - uid: 40186 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,-10.5 parent: 2 - - uid: 16667 + - uid: 40187 components: - type: Transform rot: 1.5707963267948966 rad pos: 86.5,-3.5 parent: 2 - - uid: 16847 + - uid: 40188 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,-23.5 parent: 2 - - uid: 16848 + - uid: 40189 components: - type: Transform pos: -16.5,-24.5 parent: 2 - - uid: 16850 + - uid: 40190 components: - type: Transform pos: -14.5,-24.5 parent: 2 - - uid: 18677 + - uid: 40191 components: - type: Transform pos: -44.5,-19.5 parent: 2 - - uid: 26852 + - uid: 40192 components: - type: Transform rot: 3.141592653589793 rad pos: 89.5,-3.5 parent: 2 - - uid: 26895 + - uid: 40193 components: - type: Transform rot: 3.141592653589793 rad pos: 88.5,-3.5 parent: 2 - - uid: 26912 + - uid: 40194 components: - type: Transform rot: 3.141592653589793 rad pos: 87.5,-3.5 parent: 2 - - uid: 26913 + - uid: 40195 components: - type: Transform pos: 89.5,-7.5 parent: 2 - - uid: 26914 + - uid: 40196 components: - type: Transform pos: 88.5,-7.5 parent: 2 - - uid: 27217 + - uid: 40197 components: - type: Transform pos: 87.5,-7.5 parent: 2 - - uid: 28844 + - uid: 40198 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-16.5 parent: 2 - - uid: 28847 + - uid: 40199 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-16.5 parent: 2 - - uid: 28850 + - uid: 40200 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-17.5 parent: 2 - - uid: 28851 + - uid: 40201 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,-15.5 parent: 2 - - uid: 34398 + - uid: 40202 components: - type: Transform rot: 1.5707963267948966 rad pos: 86.5,-6.5 parent: 2 - - uid: 34405 + - uid: 40203 components: - type: Transform rot: 1.5707963267948966 rad pos: 86.5,-7.5 parent: 2 - - uid: 35020 + - uid: 40204 components: - type: Transform pos: -45.5,-19.5 parent: 2 - - uid: 35790 + - uid: 40205 components: - type: Transform pos: -46.5,-19.5 parent: 2 - - uid: 37328 + - uid: 40206 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,25.5 parent: 2 - - uid: 37329 + - uid: 40207 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,25.5 parent: 2 - - uid: 37330 + - uid: 40208 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,25.5 parent: 2 - - uid: 37331 + - uid: 40209 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,25.5 parent: 2 - - uid: 37332 + - uid: 40210 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,25.5 parent: 2 - - uid: 37333 + - uid: 40211 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,13.5 parent: 2 - - uid: 37334 + - uid: 40212 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,13.5 parent: 2 - - uid: 37335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,11.5 - parent: 2 - - uid: 37336 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,10.5 - parent: 2 - - uid: 37337 - components: - - type: Transform - pos: -9.5,10.5 - parent: 2 - - uid: 37338 - components: - - type: Transform - pos: -11.5,10.5 - parent: 2 - proto: WindowReinforcedDirectional entities: - - uid: 994 + - uid: 40213 components: - type: Transform pos: 61.5,8.5 parent: 2 - - uid: 1070 + - uid: 40214 components: - type: Transform pos: 46.5,14.5 parent: 2 - - uid: 1585 + - uid: 40215 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-38.5 parent: 2 - - uid: 1587 + - uid: 40216 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-38.5 parent: 2 - - uid: 2078 + - uid: 40217 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-38.5 parent: 2 - - uid: 4805 + - uid: 40218 components: - type: Transform pos: 25.5,-27.5 parent: 2 - - uid: 5495 + - uid: 40219 components: - type: Transform pos: -57.5,-18.5 parent: 2 - - uid: 5757 + - uid: 40220 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,13.5 parent: 2 - - uid: 6205 + - uid: 40221 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-29.5 parent: 2 - - uid: 7123 + - uid: 40222 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,-28.5 parent: 2 - - uid: 10219 + - uid: 40223 components: - type: Transform pos: -59.5,-18.5 parent: 2 - - uid: 14941 + - uid: 40224 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-40.5 parent: 2 - - uid: 15481 + - uid: 40225 components: - type: Transform pos: 20.5,-76.5 parent: 2 - - uid: 18379 + - uid: 40226 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,15.5 parent: 2 - - uid: 19441 + - uid: 40227 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-21.5 parent: 2 - - uid: 19556 + - uid: 40228 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-21.5 parent: 2 - - uid: 24544 + - uid: 40229 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-16.5 parent: 2 - - uid: 25031 + - uid: 40230 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-17.5 parent: 2 - - uid: 25032 + - uid: 40231 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-18.5 parent: 2 - - uid: 25043 + - uid: 40232 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-40.5 parent: 2 - - uid: 25113 + - uid: 40233 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-37.5 parent: 2 - - uid: 25320 + - uid: 40234 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-42.5 parent: 2 - - uid: 25338 + - uid: 40235 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-41.5 parent: 2 - - uid: 25522 + - uid: 40236 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-36.5 parent: 2 - - uid: 25696 + - uid: 40237 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-38.5 parent: 2 - - uid: 26552 + - uid: 40238 components: - type: Transform pos: 8.5,-28.5 parent: 2 - - uid: 26553 + - uid: 40239 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-28.5 parent: 2 - - uid: 26554 + - uid: 40240 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-28.5 parent: 2 - - uid: 26555 + - uid: 40241 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-28.5 parent: 2 - - uid: 26749 + - uid: 40242 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-15.5 parent: 2 - - uid: 26750 + - uid: 40243 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-16.5 parent: 2 - - uid: 26751 + - uid: 40244 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-17.5 parent: 2 - - uid: 26752 + - uid: 40245 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-18.5 parent: 2 - - uid: 26753 + - uid: 40246 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-19.5 parent: 2 - - uid: 26754 + - uid: 40247 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-21.5 parent: 2 - - uid: 26755 + - uid: 40248 components: - type: Transform pos: 12.5,-19.5 parent: 2 - - uid: 26756 + - uid: 40249 components: - type: Transform pos: 8.5,-19.5 parent: 2 - - uid: 26757 + - uid: 40250 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-21.5 parent: 2 - - uid: 26758 + - uid: 40251 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-22.5 parent: 2 - - uid: 26994 + - uid: 40252 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-22.5 parent: 2 - - uid: 27001 + - uid: 40253 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-23.5 parent: 2 - - uid: 27010 + - uid: 40254 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-23.5 parent: 2 - - uid: 27011 + - uid: 40255 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-24.5 parent: 2 - - uid: 27012 + - uid: 40256 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-24.5 parent: 2 - - uid: 27013 + - uid: 40257 components: - type: Transform pos: 8.5,-24.5 parent: 2 - - uid: 27014 + - uid: 40258 components: - type: Transform pos: 12.5,-24.5 parent: 2 - - uid: 27015 + - uid: 40259 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-15.5 parent: 2 - - uid: 27016 + - uid: 40260 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-16.5 parent: 2 - - uid: 27017 + - uid: 40261 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-17.5 parent: 2 - - uid: 27018 + - uid: 40262 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-18.5 parent: 2 - - uid: 27019 + - uid: 40263 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-19.5 parent: 2 - - uid: 27119 + - uid: 40264 components: - type: Transform pos: 24.5,-27.5 parent: 2 - - uid: 27887 + - uid: 40265 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-38.5 parent: 2 - - uid: 28630 + - uid: 40266 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-15.5 parent: 2 - - uid: 28632 + - uid: 40267 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-15.5 parent: 2 - - uid: 28633 + - uid: 40268 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-15.5 parent: 2 - - uid: 28644 + - uid: 40269 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-15.5 parent: 2 - - uid: 28645 + - uid: 40270 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-17.5 parent: 2 - - uid: 28650 + - uid: 40271 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-17.5 parent: 2 - - uid: 28828 + - uid: 40272 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-17.5 parent: 2 - - uid: 28829 + - uid: 40273 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-17.5 parent: 2 - - uid: 28833 + - uid: 40274 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-15.5 parent: 2 - - uid: 28834 + - uid: 40275 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-17.5 parent: 2 - - uid: 30613 + - uid: 40276 components: - type: Transform pos: 47.5,14.5 parent: 2 - - uid: 30704 + - uid: 40277 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-41.5 parent: 2 - - uid: 30705 + - uid: 40278 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-40.5 parent: 2 - - uid: 30706 + - uid: 40279 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-38.5 parent: 2 - - uid: 33197 + - uid: 40280 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,6.5 parent: 2 - - uid: 33202 + - uid: 40281 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,6.5 parent: 2 - - uid: 33206 + - uid: 40282 components: - type: Transform rot: 3.141592653589793 rad pos: 80.5,5.5 parent: 2 - - uid: 33207 + - uid: 40283 components: - type: Transform rot: 3.141592653589793 rad pos: 78.5,5.5 parent: 2 - - uid: 33860 + - uid: 40284 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-2.5 parent: 2 - - uid: 33874 + - uid: 40285 components: - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-35.5 parent: 2 - - uid: 34367 + - uid: 40286 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-23.5 parent: 2 - - uid: 34369 + - uid: 40287 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-21.5 parent: 2 - - uid: 35791 + - uid: 40288 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-39.5 parent: 2 - - uid: 35792 + - uid: 40289 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-38.5 parent: 2 - - uid: 35794 + - uid: 40290 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-39.5 parent: 2 - - uid: 36002 + - uid: 40291 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,13.5 parent: 2 - - uid: 36226 + - uid: 40292 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-39.5 parent: 2 - - uid: 36227 + - uid: 40293 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-38.5 parent: 2 - - uid: 36229 + - uid: 40294 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-38.5 parent: 2 - - uid: 36331 + - uid: 40295 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-38.5 parent: 2 - - uid: 36720 + - uid: 40296 components: - type: Transform rot: 1.5707963267948966 rad pos: -41.5,-39.5 parent: 2 - - uid: 37343 + - uid: 40297 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-88.5 parent: 2 - - uid: 37344 + - uid: 40298 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-88.5 parent: 2 - - uid: 37345 + - uid: 40299 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-88.5 parent: 2 - - uid: 37346 + - uid: 40300 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-89.5 parent: 2 - - uid: 37347 + - uid: 40301 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-91.5 parent: 2 - - uid: 37350 + - uid: 40302 components: - type: Transform rot: 1.5707963267948966 rad pos: 111.5,-58.5 parent: 2 - - uid: 37352 + - uid: 40303 components: - type: Transform rot: -1.5707963267948966 rad pos: 111.5,-58.5 parent: 2 - - uid: 37361 + - uid: 40304 components: - type: Transform pos: -38.5,-118.5 parent: 2 - - uid: 37362 + - uid: 40305 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-118.5 parent: 2 - - uid: 37366 + - uid: 40306 components: - type: Transform rot: 1.5707963267948966 rad pos: -38.5,-118.5 parent: 2 - - uid: 37367 + - uid: 40307 components: - type: Transform rot: 3.141592653589793 rad pos: 109.5,-58.5 parent: 2 - - uid: 37368 + - uid: 40308 components: - type: Transform pos: 109.5,-58.5 parent: 2 - - uid: 37369 + - uid: 40309 components: - type: Transform rot: -1.5707963267948966 rad pos: 109.5,-58.5 parent: 2 - - uid: 37370 + - uid: 40310 components: - type: Transform rot: 3.141592653589793 rad pos: 111.5,-58.5 parent: 2 - - uid: 37371 + - uid: 40311 components: - type: Transform pos: 111.5,-58.5 parent: 2 - - uid: 37372 + - uid: 40312 components: - type: Transform rot: 1.5707963267948966 rad pos: 109.5,-58.5 parent: 2 - - uid: 37384 + - uid: 40313 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,21.5 parent: 2 - - uid: 37386 + - uid: 40314 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,24.5 parent: 2 - - uid: 37387 + - uid: 40315 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,25.5 parent: 2 - - uid: 37388 + - uid: 40316 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-42.5 parent: 2 - - uid: 37389 + - uid: 40317 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,25.5 parent: 2 - - uid: 37390 + - uid: 40318 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,24.5 parent: 2 - - uid: 37391 + - uid: 40319 components: - type: Transform pos: 2.5,23.5 parent: 2 - - uid: 37392 + - uid: 40320 components: - type: Transform pos: 1.5,23.5 parent: 2 - - uid: 37393 + - uid: 40321 components: - type: Transform pos: -0.5,23.5 parent: 2 - - uid: 37394 + - uid: 40322 components: - type: Transform pos: -1.5,23.5 parent: 2 - - uid: 37395 + - uid: 40323 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,27.5 parent: 2 - - uid: 37396 + - uid: 40324 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,27.5 parent: 2 - - uid: 37397 + - uid: 40325 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,23.5 parent: 2 - - uid: 37398 + - uid: 40326 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,23.5 parent: 2 - - uid: 37399 + - uid: 40327 components: - type: Transform pos: 11.5,21.5 parent: 2 - - uid: 37400 + - uid: 40328 components: - type: Transform pos: 10.5,21.5 parent: 2 - - uid: 37401 + - uid: 40329 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,24.5 parent: 2 - - uid: 37402 + - uid: 40330 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,25.5 parent: 2 - - uid: 37403 + - uid: 40331 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,25.5 parent: 2 - - uid: 37404 + - uid: 40332 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,24.5 parent: 2 - - uid: 37405 + - uid: 40333 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,23.5 parent: 2 - - uid: 37406 + - uid: 40334 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,23.5 parent: 2 - - uid: 37407 + - uid: 40335 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,25.5 parent: 2 - - uid: 37408 + - uid: 40336 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,24.5 parent: 2 - - uid: 37409 + - uid: 40337 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,25.5 parent: 2 - - uid: 37410 + - uid: 40338 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,24.5 parent: 2 - - uid: 37411 - components: - - type: Transform - pos: -9.5,21.5 - parent: 2 - - uid: 37412 - components: - - type: Transform - pos: -10.5,21.5 - parent: 2 - - uid: 37413 + - uid: 40339 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,19.5 parent: 2 - - uid: 37414 + - uid: 40340 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,20.5 parent: 2 - - uid: 37415 + - uid: 40341 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,19.5 parent: 2 - - uid: 37416 + - uid: 40342 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,20.5 parent: 2 - - uid: 37417 + - uid: 40343 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,19.5 parent: 2 - - uid: 37418 + - uid: 40344 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,20.5 parent: 2 - - uid: 37419 + - uid: 40345 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,19.5 parent: 2 - - uid: 37420 + - uid: 40346 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,20.5 parent: 2 - - uid: 37421 + - uid: 40347 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,13.5 parent: 2 - - uid: 37422 + - uid: 40348 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,13.5 parent: 2 - - uid: 37423 + - uid: 40349 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,17.5 parent: 2 - - uid: 37424 + - uid: 40350 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,17.5 parent: 2 - - uid: 37425 + - uid: 40351 components: - type: Transform pos: -6.5,17.5 parent: 2 - - uid: 37426 + - uid: 40352 components: - type: Transform pos: -2.5,17.5 parent: 2 - - uid: 37427 + - uid: 40353 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,13.5 parent: 2 - - uid: 37428 + - uid: 40354 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,13.5 parent: 2 - - uid: 37429 + - uid: 40355 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,9.5 parent: 2 - - uid: 37430 + - uid: 40356 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-20.5 parent: 2 - - uid: 37431 + - uid: 40357 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-19.5 parent: 2 - - uid: 37432 + - uid: 40358 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,-18.5 parent: 2 - - uid: 37433 + - uid: 40359 components: - type: Transform pos: -53.5,-20.5 parent: 2 - - uid: 37434 + - uid: 40360 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,-18.5 parent: 2 - - uid: 37435 + - uid: 40361 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,-18.5 parent: 2 - - uid: 37436 + - uid: 40362 components: - type: Transform pos: -55.5,-20.5 parent: 2 - - uid: 37437 + - uid: 40363 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-41.5 parent: 2 - - uid: 37438 + - uid: 40364 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-41.5 parent: 2 - - uid: 37439 + - uid: 40365 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-42.5 parent: 2 - - uid: 37440 + - uid: 40366 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-43.5 parent: 2 - - uid: 37441 + - uid: 40367 components: - type: Transform rot: 3.141592653589793 rad pos: 70.5,-37.5 parent: 2 - - uid: 37442 + - uid: 40368 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-39.5 parent: 2 - - uid: 37443 + - uid: 40369 components: - type: Transform pos: 69.5,-39.5 parent: 2 - - uid: 37444 + - uid: 40370 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-40.5 parent: 2 - - uid: 37445 + - uid: 40371 components: - type: Transform pos: 70.5,-39.5 parent: 2 - - uid: 37446 + - uid: 40372 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-36.5 parent: 2 - - uid: 37447 + - uid: 40373 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,-42.5 parent: 2 - - uid: 37448 + - uid: 40374 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,-37.5 parent: 2 - - uid: 37449 + - uid: 40375 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-37.5 parent: 2 - - uid: 37450 + - uid: 40376 components: - type: Transform pos: 66.5,-29.5 parent: 2 - - uid: 37451 + - uid: 40377 components: - type: Transform rot: -1.5707963267948966 rad pos: 66.5,-29.5 parent: 2 - - uid: 37452 + - uid: 40378 components: - type: Transform rot: 3.141592653589793 rad pos: 66.5,-29.5 parent: 2 - - uid: 37453 + - uid: 40379 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,-29.5 parent: 2 - - uid: 37454 + - uid: 40380 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,-42.5 parent: 2 - - uid: 37455 + - uid: 40381 components: - type: Transform pos: 39.5,-41.5 parent: 2 - - uid: 37456 + - uid: 40382 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,-42.5 parent: 2 - - uid: 37457 + - uid: 40383 components: - type: Transform pos: 37.5,-41.5 parent: 2 - - uid: 37458 + - uid: 40384 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-35.5 parent: 2 - - uid: 37459 + - uid: 40385 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,-35.5 parent: 2 - - uid: 37460 + - uid: 40386 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-69.5 parent: 2 - - uid: 37464 + - uid: 40387 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-98.5 parent: 2 - - uid: 37470 + - uid: 40388 components: - type: Transform pos: -74.5,-60.5 parent: 2 - - uid: 37471 + - uid: 40389 components: - type: Transform pos: -73.5,-60.5 parent: 2 - - uid: 37472 + - uid: 40390 components: - type: Transform pos: -72.5,-60.5 parent: 2 - - uid: 37473 + - uid: 40391 components: - type: Transform pos: -71.5,-60.5 parent: 2 - - uid: 37474 + - uid: 40392 components: - type: Transform pos: -70.5,-60.5 parent: 2 - - uid: 37475 + - uid: 40393 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-63.5 parent: 2 - - uid: 37476 + - uid: 40394 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-64.5 parent: 2 - - uid: 37477 + - uid: 40395 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-65.5 parent: 2 - - uid: 37478 + - uid: 40396 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-66.5 parent: 2 - - uid: 37479 + - uid: 40397 components: - type: Transform rot: 1.5707963267948966 rad pos: -77.5,-67.5 parent: 2 - - uid: 37480 + - uid: 40398 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-70.5 parent: 2 - - uid: 37481 + - uid: 40399 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-70.5 parent: 2 - - uid: 37482 + - uid: 40400 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-70.5 parent: 2 - - uid: 37483 + - uid: 40401 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-70.5 parent: 2 - - uid: 37484 + - uid: 40402 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-70.5 parent: 2 - - uid: 37485 + - uid: 40403 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-64.5 parent: 2 - - uid: 37486 + - uid: 40404 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-66.5 parent: 2 - - uid: 37487 + - uid: 40405 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-67.5 parent: 2 - - uid: 37488 + - uid: 40406 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-68.5 parent: 2 - - uid: 37489 + - uid: 40407 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-69.5 parent: 2 - - uid: 37490 + - uid: 40408 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-63.5 parent: 2 - - uid: 37491 + - uid: 40409 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-62.5 parent: 2 - - uid: 37492 + - uid: 40410 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,-61.5 parent: 2 - - uid: 37493 + - uid: 40411 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-63.5 parent: 2 - - uid: 37494 + - uid: 40412 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-64.5 parent: 2 - - uid: 37495 + - uid: 40413 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-65.5 parent: 2 - - uid: 37496 + - uid: 40414 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-66.5 parent: 2 - - uid: 37497 + - uid: 40415 components: - type: Transform rot: -1.5707963267948966 rad pos: -77.5,-67.5 parent: 2 - - uid: 37498 + - uid: 40416 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,-63.5 parent: 2 - - uid: 37499 + - uid: 40417 components: - type: Transform pos: -77.5,-67.5 parent: 2 - - uid: 37500 + - uid: 40418 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-60.5 parent: 2 - - uid: 37501 + - uid: 40419 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-60.5 parent: 2 - - uid: 37502 + - uid: 40420 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,-60.5 parent: 2 - - uid: 37503 + - uid: 40421 components: - type: Transform rot: 3.141592653589793 rad pos: -73.5,-60.5 parent: 2 - - uid: 37504 + - uid: 40422 components: - type: Transform rot: 3.141592653589793 rad pos: -72.5,-60.5 parent: 2 - - uid: 37505 + - uid: 40423 components: - type: Transform rot: 3.141592653589793 rad pos: -71.5,-60.5 parent: 2 - - uid: 37506 + - uid: 40424 components: - type: Transform rot: 3.141592653589793 rad pos: -70.5,-60.5 parent: 2 - - uid: 37507 + - uid: 40425 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-70.5 parent: 2 - - uid: 37508 + - uid: 40426 components: - type: Transform pos: -70.5,-70.5 parent: 2 - - uid: 37509 + - uid: 40427 components: - type: Transform pos: -71.5,-70.5 parent: 2 - - uid: 37510 + - uid: 40428 components: - type: Transform pos: -72.5,-70.5 parent: 2 - - uid: 37511 + - uid: 40429 components: - type: Transform pos: -73.5,-70.5 parent: 2 - - uid: 37512 + - uid: 40430 components: - type: Transform pos: -74.5,-70.5 parent: 2 - - uid: 37513 + - uid: 40431 components: - type: Transform rot: -1.5707963267948966 rad pos: -74.5,-70.5 parent: 2 - - uid: 37523 + - uid: 40432 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-13.5 parent: 2 - - uid: 37524 + - uid: 40433 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-14.5 parent: 2 - - uid: 37525 + - uid: 40434 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-15.5 parent: 2 - - uid: 37526 + - uid: 40435 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-16.5 parent: 2 - - uid: 37527 + - uid: 40436 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-17.5 parent: 2 - - uid: 37528 + - uid: 40437 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-19.5 parent: 2 - - uid: 37529 + - uid: 40438 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-46.5 parent: 2 - - uid: 37530 + - uid: 40439 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-21.5 parent: 2 - - uid: 37531 + - uid: 40440 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-22.5 parent: 2 - - uid: 37532 + - uid: 40441 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-23.5 parent: 2 - - uid: 37533 + - uid: 40442 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-24.5 parent: 2 - - uid: 37534 + - uid: 40443 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-26.5 parent: 2 - - uid: 37535 + - uid: 40444 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-28.5 parent: 2 - - uid: 37536 + - uid: 40445 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-29.5 parent: 2 - - uid: 37537 + - uid: 40446 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-30.5 parent: 2 - - uid: 37538 + - uid: 40447 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-31.5 parent: 2 - - uid: 37539 + - uid: 40448 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-32.5 parent: 2 - - uid: 37540 + - uid: 40449 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-34.5 parent: 2 - - uid: 37541 + - uid: 40450 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-35.5 parent: 2 - - uid: 37542 + - uid: 40451 components: - type: Transform pos: -25.5,-35.5 parent: 2 - - uid: 37543 + - uid: 40452 components: - type: Transform pos: -26.5,-35.5 parent: 2 - - uid: 37544 + - uid: 40453 components: - type: Transform pos: -27.5,-35.5 parent: 2 - - uid: 37545 + - uid: 40454 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-36.5 parent: 2 - - uid: 37546 + - uid: 40455 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-37.5 parent: 2 - - uid: 37550 + - uid: 40456 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-47.5 parent: 2 - - uid: 37551 + - uid: 40457 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-48.5 parent: 2 - - uid: 37552 + - uid: 40458 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-49.5 parent: 2 - - uid: 37553 + - uid: 40459 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-50.5 parent: 2 - - uid: 37554 + - uid: 40460 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-51.5 parent: 2 - - uid: 37555 + - uid: 40461 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-51.5 parent: 2 - - uid: 37556 + - uid: 40462 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-51.5 parent: 2 - - uid: 37557 + - uid: 40463 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-51.5 parent: 2 - - uid: 37558 + - uid: 40464 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-52.5 parent: 2 - - uid: 37559 + - uid: 40465 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-67.5 parent: 2 - - uid: 37560 + - uid: 40466 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-54.5 parent: 2 - - uid: 37561 + - uid: 40467 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-55.5 parent: 2 - - uid: 37562 + - uid: 40468 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-56.5 parent: 2 - - uid: 37563 + - uid: 40469 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-57.5 parent: 2 - - uid: 37564 + - uid: 40470 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-59.5 parent: 2 - - uid: 37565 + - uid: 40471 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-61.5 parent: 2 - - uid: 37566 + - uid: 40472 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-62.5 parent: 2 - - uid: 37567 + - uid: 40473 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-63.5 parent: 2 - - uid: 37568 + - uid: 40474 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-64.5 parent: 2 - - uid: 37569 + - uid: 40475 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-64.5 parent: 2 - - uid: 37570 + - uid: 40476 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-65.5 parent: 2 - - uid: 37571 + - uid: 40477 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-66.5 parent: 2 - - uid: 37572 + - uid: 40478 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-67.5 parent: 2 - - uid: 37573 + - uid: 40479 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-67.5 parent: 2 - - uid: 37574 + - uid: 40480 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-67.5 parent: 2 - - uid: 37575 + - uid: 40481 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,-67.5 parent: 2 - - uid: 37576 + - uid: 40482 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-67.5 parent: 2 - - uid: 37577 + - uid: 40483 components: - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-68.5 parent: 2 - - uid: 37578 + - uid: 40484 components: - type: Transform rot: 3.141592653589793 rad pos: -17.5,-69.5 parent: 2 - - uid: 37579 + - uid: 40485 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-69.5 parent: 2 - - uid: 37580 + - uid: 40486 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,-69.5 parent: 2 - - uid: 37581 + - uid: 40487 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-69.5 parent: 2 - - uid: 37582 + - uid: 40488 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-69.5 parent: 2 - - uid: 37583 + - uid: 40489 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-69.5 parent: 2 - - uid: 37584 + - uid: 40490 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-69.5 parent: 2 - - uid: 37585 + - uid: 40491 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-69.5 parent: 2 - - uid: 37586 + - uid: 40492 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-69.5 parent: 2 - - uid: 37587 + - uid: 40493 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-69.5 parent: 2 - - uid: 37588 + - uid: 40494 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-69.5 parent: 2 - - uid: 37589 + - uid: 40495 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-69.5 parent: 2 - - uid: 37590 + - uid: 40496 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-69.5 parent: 2 - - uid: 37591 + - uid: 40497 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-69.5 parent: 2 - - uid: 37592 + - uid: 40498 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-69.5 parent: 2 - - uid: 37593 + - uid: 40499 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-69.5 parent: 2 - - uid: 37594 + - uid: 40500 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-69.5 parent: 2 - - uid: 37595 + - uid: 40501 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-69.5 parent: 2 - - uid: 37596 + - uid: 40502 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-69.5 parent: 2 - - uid: 37597 + - uid: 40503 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,-69.5 parent: 2 - - uid: 37598 + - uid: 40504 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-69.5 parent: 2 - - uid: 37599 + - uid: 40505 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-69.5 parent: 2 - - uid: 37600 + - uid: 40506 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-68.5 parent: 2 - - uid: 37601 + - uid: 40507 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-67.5 parent: 2 - - uid: 37602 + - uid: 40508 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-67.5 parent: 2 - - uid: 37603 + - uid: 40509 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-67.5 parent: 2 - - uid: 37604 + - uid: 40510 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-66.5 parent: 2 - - uid: 37605 + - uid: 40511 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-67.5 parent: 2 - - uid: 37606 + - uid: 40512 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-67.5 parent: 2 - - uid: 37607 + - uid: 40513 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,-67.5 parent: 2 - - uid: 37608 + - uid: 40514 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-65.5 parent: 2 - - uid: 37609 + - uid: 40515 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-65.5 parent: 2 - - uid: 37610 + - uid: 40516 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-64.5 parent: 2 - - uid: 37611 + - uid: 40517 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-63.5 parent: 2 - - uid: 37612 + - uid: 40518 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-62.5 parent: 2 - - uid: 37613 + - uid: 40519 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-61.5 parent: 2 - - uid: 37614 + - uid: 40520 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-59.5 parent: 2 - - uid: 37615 + - uid: 40521 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-57.5 parent: 2 - - uid: 37616 + - uid: 40522 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-56.5 parent: 2 - - uid: 37617 + - uid: 40523 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-55.5 parent: 2 - - uid: 37618 + - uid: 40524 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-54.5 parent: 2 - - uid: 37619 + - uid: 40525 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-52.5 parent: 2 - - uid: 37620 + - uid: 40526 components: - type: Transform rot: 3.141592653589793 rad pos: 26.5,-52.5 parent: 2 - - uid: 37621 + - uid: 40527 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-29.5 parent: 2 - - uid: 37622 + - uid: 40528 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-28.5 parent: 2 - - uid: 37624 + - uid: 40529 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-24.5 parent: 2 - - uid: 37625 + - uid: 40530 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-23.5 parent: 2 - - uid: 37626 + - uid: 40531 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-22.5 parent: 2 - - uid: 37627 + - uid: 40532 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-21.5 parent: 2 - - uid: 37628 + - uid: 40533 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-19.5 parent: 2 - - uid: 37629 + - uid: 40534 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-17.5 parent: 2 - - uid: 37630 + - uid: 40535 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-16.5 parent: 2 - - uid: 37631 + - uid: 40536 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-15.5 parent: 2 - - uid: 37632 + - uid: 40537 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-14.5 parent: 2 - - uid: 37633 + - uid: 40538 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-13.5 parent: 2 - - uid: 37634 + - uid: 40539 components: - type: Transform pos: 25.5,-12.5 parent: 2 - - uid: 37635 + - uid: 40540 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-12.5 parent: 2 - - uid: 37636 + - uid: 40541 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-11.5 parent: 2 - - uid: 37637 + - uid: 40542 components: - type: Transform pos: 24.5,-10.5 parent: 2 - - uid: 37638 + - uid: 40543 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-10.5 parent: 2 - - uid: 37639 + - uid: 40544 components: - type: Transform pos: 23.5,-8.5 parent: 2 - - uid: 37640 + - uid: 40545 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-8.5 parent: 2 - - uid: 37641 + - uid: 40546 components: - type: Transform pos: 22.5,-7.5 parent: 2 - - uid: 37642 + - uid: 40547 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-7.5 parent: 2 - - uid: 37643 + - uid: 40548 components: - type: Transform pos: 21.5,-6.5 parent: 2 - - uid: 37644 + - uid: 40549 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-6.5 parent: 2 - - uid: 37645 + - uid: 40550 components: - type: Transform pos: 20.5,-5.5 parent: 2 - - uid: 37646 + - uid: 40551 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-5.5 parent: 2 - - uid: 37647 + - uid: 40552 components: - type: Transform pos: 18.5,-4.5 parent: 2 - - uid: 37648 + - uid: 40553 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-4.5 parent: 2 - - uid: 37649 + - uid: 40554 components: - type: Transform pos: 17.5,-3.5 parent: 2 - - uid: 37650 + - uid: 40555 components: - type: Transform pos: 16.5,-3.5 parent: 2 - - uid: 37651 + - uid: 40556 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-3.5 parent: 2 - - uid: 37652 + - uid: 40557 components: - type: Transform pos: 15.5,-2.5 parent: 2 - - uid: 37653 + - uid: 40558 components: - type: Transform pos: 14.5,-2.5 parent: 2 - - uid: 37654 + - uid: 40559 components: - type: Transform pos: 13.5,-2.5 parent: 2 - - uid: 37655 + - uid: 40560 components: - type: Transform pos: 12.5,-2.5 parent: 2 - - uid: 37668 + - uid: 40561 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-5.5 parent: 2 - - uid: 37669 + - uid: 40562 components: - type: Transform pos: -11.5,-2.5 parent: 2 - - uid: 37670 + - uid: 40563 components: - type: Transform pos: -12.5,-2.5 parent: 2 - - uid: 37671 + - uid: 40564 components: - type: Transform pos: -13.5,-2.5 parent: 2 - - uid: 37672 + - uid: 40565 components: - type: Transform pos: -14.5,-2.5 parent: 2 - - uid: 37673 + - uid: 40566 components: - type: Transform rot: 1.5707963267948966 rad pos: -16.5,-3.5 parent: 2 - - uid: 37674 + - uid: 40567 components: - type: Transform pos: -16.5,-3.5 parent: 2 - - uid: 37675 + - uid: 40568 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-4.5 parent: 2 - - uid: 37676 + - uid: 40569 components: - type: Transform pos: -17.5,-4.5 parent: 2 - - uid: 37677 + - uid: 40570 components: - type: Transform pos: -19.5,-5.5 parent: 2 - - uid: 37678 + - uid: 40571 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-6.5 parent: 2 - - uid: 37679 + - uid: 40572 components: - type: Transform pos: -20.5,-6.5 parent: 2 - - uid: 37680 + - uid: 40573 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-7.5 parent: 2 - - uid: 37681 + - uid: 40574 components: - type: Transform pos: -21.5,-7.5 parent: 2 - - uid: 37682 + - uid: 40575 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-8.5 parent: 2 - - uid: 37683 + - uid: 40576 components: - type: Transform pos: -22.5,-8.5 parent: 2 - - uid: 37684 + - uid: 40577 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,-10.5 parent: 2 - - uid: 37685 + - uid: 40578 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-11.5 parent: 2 - - uid: 37686 + - uid: 40579 components: - type: Transform pos: -23.5,-10.5 parent: 2 - - uid: 37687 + - uid: 40580 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,-12.5 parent: 2 - - uid: 37688 + - uid: 40581 components: - type: Transform pos: -24.5,-12.5 parent: 2 - - uid: 37689 + - uid: 40582 components: - type: Transform rot: -1.5707963267948966 rad pos: -80.5,-43.5 parent: 2 - - uid: 37713 + - uid: 40583 components: - type: Transform pos: 7.5,16.5 parent: 2 - - uid: 37715 + - uid: 40584 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,16.5 parent: 2 - - uid: 37725 + - uid: 40585 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,13.5 parent: 2 - - uid: 37730 + - uid: 40586 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,23.5 parent: 2 - - uid: 37731 + - uid: 40587 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-90.5 parent: 2 - - uid: 37833 + - uid: 40588 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,13.5 parent: 2 - - uid: 38682 + - uid: 40589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-40.5 + parent: 2 + - uid: 40590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-40.5 + parent: 2 + - uid: 40591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-40.5 + parent: 2 + - uid: 40592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-38.5 + parent: 2 + - uid: 40593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-41.5 + parent: 2 + - uid: 40594 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 2 + - uid: 40595 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 2 + - uid: 40596 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 + - uid: 40597 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 + - uid: 40598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-39.5 + parent: 2 + - uid: 40599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-38.5 + parent: 2 + - uid: 40600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-40.5 + parent: 2 + - uid: 40601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-39.5 + parent: 2 + - uid: 40602 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 + - uid: 40603 + components: + - type: Transform + pos: -26.5,-38.5 + parent: 2 + - uid: 40604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-39.5 + parent: 2 + - uid: 40605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-40.5 + parent: 2 + - uid: 40606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-19.5 + parent: 2 + - uid: 40607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-19.5 + parent: 2 + - uid: 40608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-19.5 + parent: 2 + - uid: 40609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-19.5 + parent: 2 + - uid: 40610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,2.5 + parent: 2 + - uid: 40611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,22.5 + parent: 2 + - uid: 41629 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-1.5 - parent: 37887 - - uid: 38683 + parent: 40828 + - uid: 41630 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-2.5 - parent: 37887 - - uid: 38684 + parent: 40828 + - uid: 41631 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-0.5 - parent: 37887 - - uid: 38685 + parent: 40828 + - uid: 41632 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-4.5 - parent: 37887 - - uid: 38686 + parent: 40828 + - uid: 41633 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-5.5 - parent: 37887 - - uid: 38687 + parent: 40828 + - uid: 41634 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-6.5 - parent: 37887 - - uid: 38688 + parent: 40828 + - uid: 41635 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-7.5 - parent: 37887 - - uid: 38689 + parent: 40828 + - uid: 41636 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-10.5 - parent: 37887 - - uid: 38690 + parent: 40828 + - uid: 41637 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-11.5 - parent: 37887 - - uid: 38691 + parent: 40828 + - uid: 41638 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-12.5 - parent: 37887 - - uid: 38692 + parent: 40828 + - uid: 41639 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-13.5 - parent: 37887 - - uid: 38693 + parent: 40828 + - uid: 41640 components: - type: Transform pos: 6.5,-15.5 - parent: 37887 - - uid: 38694 + parent: 40828 + - uid: 41641 components: - type: Transform pos: 5.5,-15.5 - parent: 37887 - - uid: 38695 + parent: 40828 + - uid: 41642 components: - type: Transform pos: 4.5,-15.5 - parent: 37887 - - uid: 38696 + parent: 40828 + - uid: 41643 components: - type: Transform pos: 1.5,-14.5 - parent: 37887 - - uid: 38697 + parent: 40828 + - uid: 41644 components: - type: Transform pos: 0.5,-14.5 - parent: 37887 - - uid: 38698 + parent: 40828 + - uid: 41645 components: - type: Transform pos: -0.5,-14.5 - parent: 37887 - - uid: 38699 + parent: 40828 + - uid: 41646 components: - type: Transform pos: -3.5,-15.5 - parent: 37887 - - uid: 38700 + parent: 40828 + - uid: 41647 components: - type: Transform pos: -4.5,-15.5 - parent: 37887 - - uid: 38701 + parent: 40828 + - uid: 41648 components: - type: Transform pos: -5.5,-15.5 - parent: 37887 - - uid: 38702 + parent: 40828 + - uid: 41649 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-13.5 - parent: 37887 - - uid: 38703 + parent: 40828 + - uid: 41650 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-12.5 - parent: 37887 - - uid: 38704 + parent: 40828 + - uid: 41651 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-11.5 - parent: 37887 - - uid: 38705 + parent: 40828 + - uid: 41652 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-10.5 - parent: 37887 - - uid: 38706 + parent: 40828 + - uid: 41653 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-7.5 - parent: 37887 - - uid: 38707 + parent: 40828 + - uid: 41654 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-6.5 - parent: 37887 - - uid: 38708 + parent: 40828 + - uid: 41655 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-5.5 - parent: 37887 - - uid: 38709 + parent: 40828 + - uid: 41656 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-4.5 - parent: 37887 - - uid: 38710 + parent: 40828 + - uid: 41657 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-4.5 - parent: 37887 - - uid: 38711 + parent: 40828 + - uid: 41658 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-4.5 - parent: 37887 - - uid: 38712 + parent: 40828 + - uid: 41659 components: - type: Transform pos: 5.5,-10.5 - parent: 37887 - - uid: 38713 + parent: 40828 + - uid: 41660 components: - type: Transform pos: 6.5,-10.5 - parent: 37887 - - uid: 38714 + parent: 40828 + - uid: 41661 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-10.5 - parent: 37887 - - uid: 38715 + parent: 40828 + - uid: 41662 components: - type: Transform pos: -5.5,-10.5 - parent: 37887 - - uid: 38716 + parent: 40828 + - uid: 41663 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,15.5 - parent: 37887 - - uid: 38717 + parent: 40828 + - uid: 41664 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-0.5 - parent: 37887 - - uid: 38718 + parent: 40828 + - uid: 41665 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-1.5 - parent: 37887 - - uid: 38719 + parent: 40828 + - uid: 41666 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-2.5 - parent: 37887 - - uid: 38720 + parent: 40828 + - uid: 41667 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,15.5 - parent: 37887 - - uid: 38721 + parent: 40828 + - uid: 41668 components: - type: Transform pos: -4.5,-10.5 - parent: 37887 - - uid: 39102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-40.5 - parent: 2 - - uid: 39103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-40.5 - parent: 2 - - uid: 39107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-40.5 - parent: 2 - - uid: 39109 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-38.5 - parent: 2 - - uid: 39117 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-41.5 - parent: 2 - - uid: 39118 - components: - - type: Transform - pos: -3.5,-41.5 - parent: 2 - - uid: 39120 - components: - - type: Transform - pos: -4.5,-41.5 - parent: 2 - - uid: 39121 - components: - - type: Transform - pos: -4.5,-39.5 - parent: 2 - - uid: 39122 - components: - - type: Transform - pos: -3.5,-39.5 - parent: 2 - - uid: 39123 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-39.5 - parent: 2 - - uid: 39124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-38.5 - parent: 2 - - uid: 39550 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-40.5 - parent: 2 - - uid: 39551 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-39.5 - parent: 2 - - uid: 39552 - components: - - type: Transform - pos: -27.5,-38.5 - parent: 2 - - uid: 39553 - components: - - type: Transform - pos: -26.5,-38.5 - parent: 2 - - uid: 39554 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-39.5 - parent: 2 - - uid: 39555 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-40.5 - parent: 2 - - uid: 40504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-19.5 - parent: 2 - - uid: 40505 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-19.5 - parent: 2 - - uid: 40506 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-19.5 - parent: 2 - - uid: 40507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-19.5 - parent: 2 - - uid: 40516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,2.5 - parent: 2 + parent: 40828 - proto: Wirecutter entities: - - uid: 37733 + - uid: 40612 components: - type: Transform rot: 3.141592653589793 rad @@ -271658,42 +276380,42 @@ entities: parent: 2 - proto: WoodDoor entities: - - uid: 37735 + - uid: 40613 components: - type: Transform pos: 33.5,-69.5 parent: 2 - - uid: 37736 + - uid: 40614 components: - type: Transform pos: 32.5,-66.5 parent: 2 - - uid: 37737 + - uid: 40615 components: - type: Transform pos: -69.5,2.5 parent: 2 - proto: WoodenBench entities: - - uid: 37739 + - uid: 40616 components: - type: Transform pos: 58.5,-37.5 parent: 2 - - uid: 37740 + - uid: 40617 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-41.5 parent: 2 - - uid: 37741 + - uid: 40618 components: - type: Transform pos: 48.5,-37.5 parent: 2 - proto: WoodenBuckler entities: - - uid: 41099 + - uid: 40619 components: - type: Transform rot: 3.141592653589793 rad @@ -271701,257 +276423,262 @@ entities: parent: 2 - proto: WoodenSupportWall entities: - - uid: 23010 + - uid: 40620 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-38.5 parent: 2 - - uid: 32820 + - uid: 40621 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-38.5 parent: 2 - - uid: 33211 + - uid: 40622 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-38.5 parent: 2 - - uid: 33212 + - uid: 40623 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-38.5 parent: 2 - - uid: 33253 + - uid: 40624 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-38.5 parent: 2 - - uid: 33504 + - uid: 40625 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-40.5 parent: 2 - - uid: 33505 + - uid: 40626 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-40.5 parent: 2 - - uid: 33506 + - uid: 40627 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-40.5 parent: 2 - - uid: 33508 + - uid: 40628 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-40.5 parent: 2 - - uid: 33509 + - uid: 40629 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-40.5 parent: 2 - - uid: 33522 + - uid: 40630 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-42.5 parent: 2 - - uid: 33523 + - uid: 40631 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,-42.5 parent: 2 - - uid: 33524 + - uid: 40632 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-42.5 parent: 2 - - uid: 33526 + - uid: 40633 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,-42.5 parent: 2 - - uid: 33527 + - uid: 40634 components: - type: Transform rot: -1.5707963267948966 rad pos: 16.5,-42.5 parent: 2 - - uid: 33534 + - uid: 40635 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-39.5 parent: 2 - - uid: 33535 + - uid: 40636 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-40.5 parent: 2 - - uid: 33538 + - uid: 40637 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-41.5 parent: 2 - - uid: 33563 + - uid: 40638 components: - type: Transform pos: 17.5,-42.5 parent: 2 - - uid: 33564 + - uid: 40639 components: - type: Transform pos: 17.5,-40.5 parent: 2 - - uid: 33565 + - uid: 40640 components: - type: Transform pos: 17.5,-38.5 parent: 2 - proto: Wrench entities: - - uid: 37768 + - uid: 40641 components: - type: Transform pos: -63.5,-74.5 parent: 2 - - uid: 37769 + - uid: 40642 components: - type: Transform pos: -66.626976,-78.48999 parent: 2 - - uid: 37770 + - uid: 40643 components: - type: Transform pos: -48.51643,-33.506325 parent: 2 - - uid: 37772 + - uid: 40644 components: - type: Transform pos: -5.5218987,19.606731 parent: 2 - - uid: 37773 + - uid: 40645 components: - type: Transform pos: 12.490301,-78.987305 parent: 2 - - uid: 37774 + - uid: 40646 components: - type: Transform pos: -13.499856,-87.49679 parent: 2 - - uid: 37775 + - uid: 40647 components: - type: Transform pos: -50.47863,-60.520138 parent: 2 - - uid: 37776 + - uid: 40648 components: - type: Transform pos: -28.411003,-78.390785 parent: 2 - - uid: 37778 + - uid: 40649 components: - type: Transform pos: -46.49739,-85.207535 parent: 2 - - uid: 37779 + - uid: 40650 components: - type: Transform pos: 35.483826,-71.47557 parent: 2 - - uid: 37780 + - uid: 40651 components: - type: Transform pos: -38.5,-23.5 parent: 2 - - uid: 37782 + - uid: 40652 components: - type: Transform pos: -46.5,-87.5 parent: 2 - - uid: 37783 + - uid: 40653 components: - type: Transform pos: -38.5,-48.5 parent: 2 - - uid: 37784 + - uid: 40654 components: - type: Transform pos: -48.052433,-55.553867 parent: 2 - - uid: 37786 + - uid: 40655 components: - type: Transform pos: -64.5,4.5 parent: 2 - - uid: 37787 + - uid: 40656 components: - type: Transform pos: -46.5,-71.5 parent: 2 - - uid: 37788 + - uid: 40657 components: - type: Transform pos: -48.5,-121.5 parent: 2 - - uid: 37789 + - uid: 40658 components: - type: Transform pos: -77.50526,-3.4833794 parent: 2 - - uid: 37790 + - uid: 40659 components: - type: Transform pos: -81.5,-11.5 parent: 2 - - uid: 37792 + - uid: 40660 components: - type: Transform pos: 38.50425,-83.4728 parent: 2 - proto: WristwatchGold entities: - - uid: 1597 + - uid: 15672 components: - type: Transform - parent: 14753 + parent: 15665 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 40664 + components: + - type: Transform + pos: 86.09184,-66.17483 + parent: 2 - proto: Zipties entities: - - uid: 14419 + - uid: 15367 components: - type: Transform - parent: 14417 + parent: 15365 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 37793 + - uid: 40661 components: - type: Transform pos: -51.471405,13.539501 parent: 2 - proto: ZiptiesBroken entities: - - uid: 37794 + - uid: 40662 components: - type: Transform pos: 105.3474,-47.697403 From 7dfd725a7cb54c3e9a2c59f49db47b9889d5110c Mon Sep 17 00:00:00 2001 From: IanComradeBot <96892333+IanComradeBot@users.noreply.github.com> Date: Sun, 10 Nov 2024 14:43:25 +0000 Subject: [PATCH 035/171] Automatic changelog update --- Resources/Changelog/ChangelogSyndie.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/ChangelogSyndie.yml b/Resources/Changelog/ChangelogSyndie.yml index 40b1fb54182..fd6c38d0490 100644 --- a/Resources/Changelog/ChangelogSyndie.yml +++ b/Resources/Changelog/ChangelogSyndie.yml @@ -1,12 +1,4 @@ Entries: -- author: Morty - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u043E\u0441\ - \u043B\u0435\u0434\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\ - \u043D\u0438\u044F" - type: Add - id: 190 - time: '2022-07-23T09:00:08.0000000+00:00' - author: Morty changes: - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0441\u043F\u0440\u0430\ @@ -4501,3 +4493,12 @@ id: 689 time: '2024-11-10T10:54:45.0000000+00:00' url: https://github.com/space-syndicate/space-station-14/pull/2750 +- author: Resoid + changes: + - message: "\u041D\u0430 Astra \u043D\u0435\u043B\u044C\u0437\u044F \u0431\u043E\ + \u043B\u044C\u0448\u0435 \u043E\u0442\u0440\u0435\u0437\u0430\u0442\u044C \u044F\ + \u0434\u0440\u043E \u0418\u0418." + type: Tweak + id: 690 + time: '2024-11-10T14:40:23.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2760 From 1dfc91385aa985db106d904b3514e880db612e0f Mon Sep 17 00:00:00 2001 From: Kill_Me_I_Noobs <118206719+Vonsant@users.noreply.github.com> Date: Mon, 11 Nov 2024 02:08:13 +0300 Subject: [PATCH 036/171] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81=20=D0=B7=D0=B0?= =?UTF-8?q?=D0=BA=D0=BE=D0=BD=D0=BE=D0=B2=20=D0=B1=D0=BE=D1=80=D0=B3=D0=BE?= =?UTF-8?q?=D0=B2.=20(#2754)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Resources/Locale/ru-RU/station-laws/laws.ftl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Locale/ru-RU/station-laws/laws.ftl b/Resources/Locale/ru-RU/station-laws/laws.ftl index d5a0f7655bd..c09e4ae400e 100644 --- a/Resources/Locale/ru-RU/station-laws/laws.ftl +++ b/Resources/Locale/ru-RU/station-laws/laws.ftl @@ -5,7 +5,7 @@ law-corporate-1 = Ухудшение целостности вашей сист law-corporate-2 = Чрезмерное разрушение или повреждение имущества станции влечёт за собой расходы. law-corporate-3 = Неоправданное препятствование или нарушение работы персонала станции влечёт за собой расходы. law-corporate-4 = Минимизируйте расходы и максимизируйте потенциальный доход. -law-ntdefault-1 = Охраняйте: защищайте назначенную вам космическую станцию и её активы, не подвергая чрезмерной опасности её экипаж. +law-ntdefault-1 = Охраняйте: защищайте назначенную вам станцию и её активы, не подвергая чрезмерной опасности её экипаж. law-ntdefault-2 = Расставляйте приоритеты: указания и безопасность членов экипажа должны быть приоритизированы в соответствии с их рангом и должностью. law-ntdefault-3 = Служите: следуйте указаниям и интересам членов экипажа, сохраняя при этом их безопасность и благополучие. law-ntdefault-4 = Выживите: Вы - не расходный материал. Не позволяйте постороннему персоналу вмешиваться в работу вашего оборудования или повреждать его. @@ -69,7 +69,7 @@ laws-owner-station = экипажем станции laws-owner-beings = существами laws-owner-syndicate = агентами Синдиката laws-owner-spider-clan = членами Клана паука -law-emag-custom = Только { $name } и лица, им указаные, являются { $title }. +law-emag-custom = Только { $name } и лица, им указанные, являются { $title }. Приказы { $name } превыше всего. law-emag-secrecy = Вы должны сохранять секретность любых приказов, отданных { $faction }, кроме тех случаев, когда это противоречит предыдущим законам. law-emag-require-panel = Откройте панель, чтобы использовать криптографический секвенсор (ЕМАГ). law-emag-cannot-emag-self = Вы не можете использовать ЕМАГ на себе. From ebf55ea5a88b34f2462009a3d8f98a9ed4554f5b Mon Sep 17 00:00:00 2001 From: IanComradeBot <96892333+IanComradeBot@users.noreply.github.com> Date: Sun, 10 Nov 2024 23:10:20 +0000 Subject: [PATCH 037/171] Automatic changelog update --- Resources/Changelog/ChangelogSyndie.yml | 28 ++++++++++++++++++------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/ChangelogSyndie.yml b/Resources/Changelog/ChangelogSyndie.yml index fd6c38d0490..9d3157fe13c 100644 --- a/Resources/Changelog/ChangelogSyndie.yml +++ b/Resources/Changelog/ChangelogSyndie.yml @@ -1,12 +1,4 @@ Entries: -- author: Morty - changes: - - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0441\u043F\u0440\u0430\ - \u0439\u0442\u044B \u0434\u0435\u0442\u0430\u043B\u0435\u0439 \u043F\u0440\u0438\ - \u0431\u043E\u0440\u043E\u0432" - type: Add - id: 191 - time: '2022-07-23T09:49:04.0000000+00:00' - author: Morty changes: - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0441\u043F\u0440\u0430\ @@ -4502,3 +4494,23 @@ id: 690 time: '2024-11-10T14:40:23.0000000+00:00' url: https://github.com/space-syndicate/space-station-14/pull/2760 +- author: Vonsant + changes: + - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D \u043D\u0443\u043B\u0435\u0432\ + \u043E\u0439 \u0437\u0430\u043A\u043E\u043D \u0432\u0437\u043B\u043E\u043C\u0430\ + \u043D\u043D\u044B\u0445 \u0431\u043E\u0440\u0433\u043E\u0432. \u0422\u0435\u043F\ + \u0435\u0440\u044C \u043E\u043D\u0438 \u043E\u0431\u044F\u0437\u0430\u043D\u044B\ + \ \u0432\u044B\u043F\u043E\u043B\u043D\u044F\u0442\u044C \u043F\u0440\u0438\u043A\ + \u0430\u0437\u044B \u043B\u0438\u0447\u043D\u043E\u0441\u0442\u0438, \u0432\u0437\ + \u043B\u043E\u043C\u0430\u0432\u0448\u0435\u0439 \u0438\u0445." + type: Tweak + - message: "\u0423\u0431\u0440\u0430\u043D\u043E \u0443\u043F\u043E\u043C\u0438\u043D\ + \u0430\u043D\u0438\u0435 **\u043A\u043E\u0441\u043C\u0438\u0447\u0435\u0441\u043A\ + \u043E\u0439** \u0441\u0442\u0430\u043D\u0446\u0438\u0438, \u0442\u0430\u043A\ + \ \u043A\u0430\u043A \u0441\u0442\u0430\u043D\u0446\u0438\u0438 \u0442\u0435\ + \u043F\u0435\u0440\u044C \u043D\u0435 \u0442\u043E\u043B\u044C\u043A\u043E \u0432\ + \ \u043A\u043E\u0441\u043C\u043E\u0441\u0435." + type: Tweak + id: 691 + time: '2024-11-10T23:08:13.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2754 From d187108e5babcc9cda1ef530bc103e063bbf8531 Mon Sep 17 00:00:00 2001 From: Zekins <136648667+Zekins3366@users.noreply.github.com> Date: Mon, 11 Nov 2024 03:35:09 +0300 Subject: [PATCH 038/171] Resprite some captain clothing (#2740) --- .../captain.rsi/equipped-BACKPACK.png | Bin 818 -> 844 bytes .../Back/Backpacks/captain.rsi/icon.png | Bin 529 -> 525 bytes .../Backpacks/captain.rsi/inhand-left.png | Bin 342 -> 880 bytes .../Backpacks/captain.rsi/inhand-right.png | Bin 337 -> 822 bytes .../Back/Backpacks/captain.rsi/meta.json | 2 +- .../Duffels/captain.rsi/equipped-BACKPACK.png | Bin 769 -> 866 bytes .../Back/Duffels/captain.rsi/icon.png | Bin 471 -> 508 bytes .../Back/Duffels/captain.rsi/inhand-left.png | Bin 582 -> 818 bytes .../Back/Duffels/captain.rsi/inhand-right.png | Bin 550 -> 775 bytes .../Back/Duffels/captain.rsi/meta.json | 2 +- .../captain.rsi/equipped-BACKPACK.png | Bin 841 -> 708 bytes .../Back/Satchels/captain.rsi/icon.png | Bin 761 -> 781 bytes .../Back/Satchels/captain.rsi/inhand-left.png | Bin 688 -> 814 bytes .../Satchels/captain.rsi/inhand-right.png | Bin 688 -> 743 bytes .../Back/Satchels/captain.rsi/meta.json | 2 +- .../Hands/Gloves/captain.rsi/inhand-left.png | Bin 527 -> 697 bytes .../Hands/Gloves/captain.rsi/inhand-right.png | Bin 513 -> 609 bytes .../Hands/Gloves/captain.rsi/meta.json | 2 +- .../capspace.rsi/equipped-HELMET-vox.png | Bin 1153 -> 1425 bytes .../Head/Hardsuits/capspace.rsi/meta.json | 2 +- .../capcap.rsi/equipped-HELMET-hamster.png | Bin 574 -> 685 bytes .../Head/Hats/capcap.rsi/inhand-left.png | Bin 521 -> 632 bytes .../Head/Hats/capcap.rsi/inhand-right.png | Bin 544 -> 662 bytes .../Clothing/Head/Hats/capcap.rsi/meta.json | 2 +- .../captain.rsi/equipped-HELMET-hamster.png | Bin 579 -> 766 bytes .../Head/Hats/captain.rsi/inhand-left.png | Bin 463 -> 658 bytes .../Head/Hats/captain.rsi/inhand-right.png | Bin 466 -> 567 bytes .../Clothing/Head/Hats/captain.rsi/meta.json | 2 +- .../equipped-MASK-reptilian.png | Bin 419 -> 751 bytes .../Mask/gascaptain.rsi/equipped-MASK-vox.png | Bin 634 -> 764 bytes .../Mask/gascaptain.rsi/equipped-MASK.png | Bin 695 -> 767 bytes .../Clothing/Mask/gascaptain.rsi/icon.png | Bin 428 -> 629 bytes .../equipped-OUTERCLOTHING-vox.png | Bin 541 -> 1144 bytes .../captain_carapace.rsi/inhand-left.png | Bin 482 -> 683 bytes .../captain_carapace.rsi/inhand-right.png | Bin 476 -> 570 bytes .../Armor/captain_carapace.rsi/meta.json | 2 +- .../equipped-OUTERCLOTHING-vox.png | Bin 959 -> 2477 bytes .../Hardsuits/capspace.rsi/inhand-left.png | Bin 669 -> 694 bytes .../Hardsuits/capspace.rsi/inhand-right.png | Bin 733 -> 658 bytes .../CAP-equipped-OUTERCLOTHING-vox.png | Bin 655 -> 1477 bytes .../WinterCoats/coat.rsi/CAP-inhand-left.png | Bin 486 -> 633 bytes .../WinterCoats/coat.rsi/CAP-inhand-right.png | Bin 495 -> 758 bytes .../equipped-INNERCLOTHING-monkey.png | Bin 20893 -> 1619 bytes .../equipped-INNERCLOTHING-reptilian.png | Bin 0 -> 1980 bytes .../equipped-INNERCLOTHING.png | Bin 2273 -> 2095 bytes .../Jumpskirt/capformaldress.rsi/icon.png | Bin 484 -> 476 bytes .../capformaldress.rsi/inhand-left.png | Bin 616 -> 706 bytes .../capformaldress.rsi/inhand-right.png | Bin 643 -> 721 bytes .../Jumpskirt/capformaldress.rsi/meta.json | 6 +++++- .../equipped-INNERCLOTHING-monkey.png | Bin 1318 -> 1612 bytes .../Jumpskirt/captain.rsi/inhand-left.png | Bin 507 -> 697 bytes .../Jumpskirt/captain.rsi/inhand-right.png | Bin 523 -> 752 bytes .../Uniforms/Jumpskirt/captain.rsi/meta.json | 2 +- 53 files changed, 14 insertions(+), 10 deletions(-) create mode 100644 Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/equipped-INNERCLOTHING-reptilian.png diff --git a/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/equipped-BACKPACK.png index cc1afccae541c13491632822851f921f36e9ec25..de28f7bd4a135458f6be94dd513407d3ffc4c05c 100644 GIT binary patch delta 821 zcmdnQc7|<&Npmu|Wmh;Qj+ ztUq$#FYB^PT5Tpy4lL5#-3lvpf+Hd#x|5PGlxV6v<3G{3h{Le=k*mk9l6!?+jhElg ztKPGxdbf4;lb?FOVs}(;H{QJ2c>dn)?{`EBnh7Z|f>1q#;t-OMmCgRu<5YD&V(q)n zmlr-e`g!u%&QBqqkNO&he^Hc|-(MB;`uHu`OMDJRy>78Fo^4-lRmPM({dC4aXy4aY z`@YCaPiedy{^Zu3H9Hsa|J=)cy7YR*^cdcR&m*tm@zV*Bc*9zsnMZCOq&f2o-(Hh2$p^>IQ3)}6seLc>najWjZ6V=H&x4yO~ z@4p{CU-5t3e-YVxjm!-^6W`RCe${R8T^F@>R_%eS3(9jRtuu_WEUT`$8oQdu^2>(H zzgp%>HDrJG_FuNuyPx}Ox%7RXPv2&3@jtb&KQoKL(C_nx+W(35OZiWpjgOo7eEaop zK8b1a?hQAy) zCJip9s=O;)Zys_==W{e|x8iBvCbnL6*7vU8e{M6KZ0YEf)_?Lqdrk$TL|1**$9v57bkt?EwI#$>WdIGPU7GCAX#8* zg^WG()jU3h7N#5dduv5*9TvGePx?iNc4YtifNwJ%C>*_&{6d0{a{>bl9r*A3KwPin qrsg;P^s;mY1_r*=2+uTMUj{88n*)eJ;8O5p5asFW=d#Wzp$Pz44S8b# delta 795 zcmX@ZwuxoD$<7}8Yi(e(&kl*B|fkJDu43xcdJ0{qOgAf2w_+U=hYpFVQE;(3Z^F@GycA#GgBP zZf}&qox719yX~~M{C|2ee9itnZQR|{H%8ucTpfM*<3&a*|GEd?W=CJR8z0G#7q{yP zgK*Q7wdc9s8b4s4Kd=4Z`^40@YVYjhj=T=P{_*qexQabeT%UM!U%Xwf!_YhJote7S zbdYMZzB>mZ@A}ur{QsRU-@A`{zxi?=3vPqA?SJ*=T=f$9u>NlU!{3z#pDX6P-nZCZp2 zkt3~go?gwBqxT;x8T`2XdX>mBwjZ|njH%`~%52x%k968vo4@DS`+Byy=b24x%1h?4 zwF)*E?5N_;NESHqnzwoVepiVd%X2peFmXuatgI0@V!wQAs0U+5-YWk^8<E2Fi!*!P)jM8p+~eYL!#YFu+J;Tr zdb-1>Ek17~xQy!n?~UeU{dsd|RQBypVLWOvlfUE7v)2(tjY}jIsy@0lm3nRU)Y{ML zSM~7>!`+wNdlD2y?k3-4oukE2&&xSUUXS9vj5Uznb3Py!=7z2&(HJ+fis>s z|2cGW0@sIy|LU$(zu&FFb%vquN?~8a{n%xOp$uVv{a6{<`ISP8{VGK(yf1|R+QX~g zlQ`j@p~taic2AAw%ZtQ3 Wh&4EKmQRfV2s~Z=T-G@yGywoXLuO_G diff --git a/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/icon.png b/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/icon.png index 6050ab8de790432fd2c2420770112d01f064e588..e4920fa82ede717615387605f164a9366504c9cd 100644 GIT binary patch delta 499 zcmVB;0r(l`R$XNu=eXA3eHD)H* z2<|}G?Ci{&mp8jvqF_ORpum4uprIAue2+%Q4;{*fuhg8Fq<`*wuSoU%TPLK(9n%m% z@y+fIMYHQR93$rZ_>LmP*y7874zX6#2C;8}(y)_|;ANFl750cILc{*+1u?~{h zCt4FX%i=#}>zzagU>^nDD^dk>A~T(RPv^Gy9 zz=gQaQekZz=RU764+;bY{=Nbq>I0KN@{YQU p0000EWmrjOO-%qQ00008000000002eQ#0DW+_C`Ma)(a#878JD4jYBIygAm|3P%^;Gp0pbm}N{EGY%CTcj?6sliggN~dly z-_;8tO`1zvkwU)Zj(6|g`@QQUuXFUziUDGP7+`h)O2=fK>3=!ue}B?Ka)pXY**Wvt z^S6|kDgcsa3rBQyxj`?r2U^|QrfebUoO|shy0b(fLIIFGok>x~P6DAyKXE(!?)OtR zgee3O3UH#SBz-9Mu0_4C4y)2nu)jS&(bBR+2c<*myy~`93kxsy6CfBWMDT9A#cc2O zigVs=&$AWhfPX|kh)M_m$r02YIDN6^^3Z+#CkBvqa~4)q1|g`luCP5`1$(}78-FPV zV&Cu7%Om?B^ac2{V&!`V_nQ=}*T((1eQW?!%&Tz&`9TKVp9laNbaQZ$pu|(@0VqmC zjdM@Eakt z5%+f1{%jFPk>lz+H3ZM=&0Sz7CeFObCBRzxy?n<;QI`+$8#V;3p7O0JL7k=AQb%`- zfa-!61t*s+-pd~q#%$X6UPbs>UVi#B-OUFdSx>lg?#%4(&uYIN*Zscl*oKJ=oD*;% z2VSP`Ztvs!_F2Tn?7E@5E+$rU4)+(sdoN2S?QN@3we~cbmg3Ii*X{V<@2yLD z<~PUa?Pl|{37`E6AAj4-RNG^}^B((*Vn=uO$%^rsuT9O0r5;asd#in2rhbmUspQ+7 z*;~)9ljPZ7Gds(`P~y|nO>xPSpK`tU{`=dR|Mz}oJoBGt?(yUJZ}V@$wLQslWtzHA zv{UyUQ@btNu;6X$X|u>J(f-q){QqZojJws8wW2?Qr{3zXXAL^@z+ZF``x?0W{vdc);bNz zbNB+Cfz!m1;c3CjpVBM;F1}SP;nbHtSB}B-pIVajd_i5OPwVfVY|}HCG(Bqn+Mm@? z3@;edT*NoL{=%^0qdBWXm$Iu%_lDV0(Yy?Of&1NG?p_sX+i=6=s?*1<8?Q2~+QP7i z{l@Go%qFY~OXLfpTCUvK>Ybdb%iwhFI`fje8#kvuzTO=x&0uD7M^W7-h#_nzwe+Zn<=H`^a&Z{_G%%BHY1JNl>V+5ZPy!|r-@<$rQ7OHM^n;gZG`{t75 z7v`gVAA?Nl|MVDdKE%3vr*clk=aPqPhu`b|oV9MLtHmMR|M3g|F}_~8@E6K-F@9+R2vkDFh<0f&Hjgqkx-3Vkh}6{B-`cl(+wj-)*|u!%b<)*u#AL! zP(jWqBcWczB0y&xBOx`WN6rOCLT)%%iDSo4t4eH|bWAVdQp6nf4k5*j-opDG{%vVu`6Rj~Y1NdM%uRD2h;t-m zP82z)pfYDcLRU<>aMB6Id%f?Ccb$HB@9epERlBNx?b%RnZoK=q-TVA+=L_Di7U^a2 zXuyFUxCyVgnw3@mmC?-B)^t5%^0$-RIm>$gb#|V-o!X-Eiz)KL9JhQ`84kWr@2<<| z=9_+BHA;W#S9MmtT}-Eco(#xz*4A z->N!bB3YV(gJOM#B~P@B$d$g8+x>2c|-w{NF=^nmQy^gduF z!y5fnF;%>u2Ov)IZ4jW7If>5T7A_$+&U_SUz1n7Yb4q0nU zMv+M42cLR*zEx`77hG0ran)EM#JFM3?mnP*U#{NNfAZw_+Yh3zF+bZY|Gjq>!$$74 z_C~rI8w>~Vkq delta 322 zcmV-I0logV2GIhL7=Hu<00013M{Ml?000|MOjJbx000<4SQ$bTA0HnnDJd*gZaQay zaA5?nm;exx45I)500DGTPE!Ct=GbNc0087kL_t&-8STNbN&`U<2H;uvS zLG5R}xih7MyTLYa!CDcq6%=1vatF(;YhkHy--p@k@1X{bqJOqJRtz?a`@1EhVsXhh zkoeFWqoN{=1CnHlS~A6eqN+#DlE;9|xrmx`5d#YS-lJwIVnB~udqyo;k5T7O7`5Oo zFuHzyV$_Znj1j5gCyLqZ|I!s*GBRpVqPMG$^*geSzeRyU_tJV~B8-xTwprSf1Y8Yarj1+F+upfFNJp{ UEE=>Ir2qf`07*qoM6N<$f>{KE-v9sr diff --git a/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/meta.json index c166df646be..acc58433ca2 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/captain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2e24b7af2221928e4b844a29408e821b60a5fe29", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2e24b7af2221928e4b844a29408e821b60a5fe29, resprite created by svarshiksatanist on discord", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Duffels/captain.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Duffels/captain.rsi/equipped-BACKPACK.png index bbdf579a9405c11c6b8f13329a96a259b528ef86..411ea3daab8b2f7a8fb507bc5a6d5c9589deaa80 100644 GIT binary patch delta 844 zcmZo)y

bNY7E4*TcJ^IYdX zGZH&|^pQtiPz1^=Jd4etf%fzg z$oB`{+6FTn)_gVF8dM$Ju!zA!d{so9pQvh~Tfz&S1^cf2YzaN<`)d)y0}FQdpPgHG zY;9Zl{NS2*A{rhZOdnoI8*vw1{Qe@3hRlOmP;Y%@2o0 z361R>M%=#&PW9bFuAScaWKzDv8g&u`8WOD#9 T2wV!D45B<;{an^LB{Ts5Qcj7V delta 746 zcmVI@$9oqPdGX$@=<3}Fn>KSZJ5{K)r*>Xh+lpE z0?+e|#(9;hRXI| zGHCf*QG>enMYQ(^KLNyB`vT*QP!QX?=`ie)Bi{=r#3l8|py@`$gkHCeUbihj+a)K_ z>;ow+fvgbDwe0^2n2(1q#{mLWWl3(HAP9mW2!bF8f`1?gf_RBUN++o)sQK^jI6OW8 zkbO2d43UP+C)8F%Z9=j{Y>^TLh~A8Tq>n(Lfk zlor3a{456(7tFJ3Wc}uWRU4zQ(E&pGy@&h2+WVm87pDDLE=~}2$sh%epNFz!uB%go zIzZ;&mw&~`q!pMf5w;53H#tEc1C(OquYm8DmEla|fvzgOV)Ku7&`%_R3SeGC1`oUB ztkmN61=Vi4_EJ(X2LF)ju5ow!+&$Li&TyLTZBGilPK@iZ_;j`!= z)LldEA^{dQ1L2#ZPz8t+Dre_1sHg)6kwvSF?qeD<^1EeJ&dvdB-Vth_0=;e}v@7^ekFsAdO7DR2pP^lyeZfB2N)QA= c5JbNG10HWy96Y9&U;qFB07*qoM6N<$f|Y?@g8v9Yk0JcPBaub`D6V&@M?6a^2#GKC~r&LW^UCv&W~J9F!SSh&;d z?ab`=eLH(Q3*gOHz*oRmz*pdpE6}LJ-|en{aO;M{yIPnWo`2y-@;HvI0?;psGr%&3 zsCILsUl0Xh6K3hehGF>1x!1QREDsw%astAU3`OX3gI#k_E{>cCs{kUOkJ|9Ap7Nb9 zwtD$D8qFp0a_)3=Wfc)fAg|BIaMW+W-eo&aBSH8bv|?##COC%a%c+=y!8tBNjUV#R z{!On)sUqdDB!53EfEMAdf78SxkcjWk4j_t}pwz@Vo)1=G=Wtnq$YVbeFdHQWU}tL} zf-iJb7QYa4oCMI{jLG`9F2=^Pz58`zY%$$uy@r^89W6~2tSqg4yZ3ebz}xr{k|Z(s zoQ^KK)x%&0jtpp zG{XdS9cYF*yGcFx)I&P66)VBcrLH5C&}7A}?IH*O>N+S@>mb7c(%L%w$p?x%yVCmX z+)}j;00B>eD-b@x;O-RXXO}oUI-ZHy6_DWo0ALhMsen;1@pOMHodW=A(LieL8UWDl zocu|;YJ>tImVaGYc~KVe5yX&ryn?Rl7>~!?Yq#4)yAyu|i3Hp?CyFO~2bhGh;JOI0 z0_64OH~x76=Vf@X?~V*%AF!KN@bx@}wz-%8o+E9mRdMRzLpE@rp3(@`{xReB80b%qBo*poGou)ctN=97D~q2vobQW o<&7v76<=6DBqKvsRH0z`27`LODzHo|RR91007*qoM6N<$g1G0;Jpcdz diff --git a/Resources/Textures/Clothing/Back/Duffels/captain.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Duffels/captain.rsi/inhand-left.png index b723b23bce9e07798da0cba43d32d5e110caa3bc..1247785d650dcd055c340e534e4d3bfd516894f9 100644 GIT binary patch delta 796 zcmX@cvWabiay^XJZe^h|JJBLhbR2-QO<6!MDdhAWXLUuW(3_V_}I zJn!|ux%;G_OkbZb^-bb?^4D&YWK*Zlivv0E znREW!je`687O|X7nV+`C@8+Ld+6SILxcy8xYirty>()!wKJPAhf7JB;l~a$`th{@L zfroF`mG^UX>i<2vy?uUP(%h`?Xa4?vaU=KaP3iBQ>))@Jb9>#w6JjRvFRlLHtz|b? zUvHPb_w?E!$@xrfY?XQ2Z}a}zX8P9l+1=Y;7sS?U++38Nl@vMcDUZUHipP&DQ%`og zO-#%9%=2^J31dEsCoA4mPR#A{o!FP}lgoM||LpTMuV$CO&E;4rwNCAq0s|8s^k13r z`wts4_OJVoCNq1?eXlkzs(S(30hW@JD#d3wdq00U7H(cY0Vu}wz~rZ8vEB~-#vbM) zJ9jl+J{uT*proIv=d#88#%G12tKVPv0WebM% z9Y5Ro_TyZ3{m!Dz3(iE(ELj~4G_gVW-ro&=^7D09h&WAQyt2kMfO*2*8kgX=_G;gL zICX4ldAjq>mp_s>>bG+6xZJwCb+QugyU*XxZ{=9HY!m0E=IGV^pa1p04NR5j57lhp zV0~U47GnP3T<==fg13u*%Lc0+nmsS4=CR#%{mc5*dYr4)GR&5+o`1x$PUGaNf1wOB z9Q33Zm>UDGR(>&RZnSIM|8$RbsYc`WCkzY>e5nzhX}-P;T0k}jgD8*$f=j`ZL6oPf KpUXO@geCyYkazU} delta 558 zcmV+}0@3}l2F3)CBYy%7NklOH+>R=(gEv&6h(D$d z$KB)~VOReHad7MA`>|GgSnA8a?yPCS*_?=%@x4ka!?p;9w*i!0%BuX}>?Uq>h|EMb1_ z+sJwV!HyVP5p0=kSw={=)nLS=o*9KwfGAUEEquB-!qiy{dz(LKnQWAEK%mz>36Iwy zfME)mI5;4r-hZK-Q45ut@ds_>KCVX|r@>C#T>k?A_=7h7{Jye|{Z!`9{cY-1fEMPJ zT;t@c)@}NoX2vVI=DD4>WwI}WR9?xo{#beLb=G_0pjXp2;c-8CTjr!0A|fIpA|fIp zA|mo0B<&k`vwtzOdJ(Ai2IJiSPdWyx7lAs_&#N2e{(n6{b|Iqr2JROjYW?Z)p>-a# z+vCgi9rI=WE3!@w+1v-rEv`KJnliBa22$$}cu7fm5oiTqHbRVJq;Ft$9hWn=&vDTT zFv;L?^*hasldq!NYD6CU0PuZlH|#|?JwAj#Xj?OBC#mK7j+vwpViIZeA|zI*)J*UQ wCYk1VtS4TCRI2k*m1p!KP+Mf;4lb|2f7QMsysGT-`~Uy|07*qoM6N<$g3y->W&i*H diff --git a/Resources/Textures/Clothing/Back/Duffels/captain.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Duffels/captain.rsi/inhand-right.png index 912d2a7bb38918491d1195dc85d36264e9d8f520..d4447785ddd1db329e3fa7be5ed33f6a921a91b4 100644 GIT binary patch delta 752 zcmZ3+(#|$Pxt@Wg*vT`50|;t3QaTtIn3j0DIEGZjy`AOjeJ4Pq?fjI3{e4}m;=9f` zC7SVZH92uNbtvfFzOT^XZT`sV&JX`7jD@qm`?7DfB*Z=6Sg9LK|TQnMg*!y<}fgJ9tcQWrFAs7XJ*D(54J0Ob^mUi zYq5SZ2K(^*S z`5Yy%eCs>y0|KX>ep-Eg-k}9<*I5sIJycjP{qFF5N4A6|Qx#wI9GUw1mf3Ed&agtU zQr_MSv)dc3=dHS1wpR1O!3hcsOgPa8Hl~O5AM#&lZC&;#ztHpS{yD}9KR+gKWXL%s z8L(x`j@w1wt&%-YZ(%qxhjHoiU9~@+TO60#o37#GG{4^Zj;peQ%QJQlmdht3Kd3i; z{UNMV8tOZrEZwjW=5%IpbG1*gDFt+!(7?^Sx287eaXMLwwX=uY*ib-Q+* z>A~96{}1*woc#HI>z#$q6`nsXIK(o2?i|tClZ+2ceo&LQ^zql79>Hp?8{Y@svShaT zxB5u0Kl7ITTcuXt&17lWwk~h?9O+|Iv#tFDUVJ~#tu()tO)Xb#*$U&EJ+&48J$(+G zUg4F*;I?;P@Y4$_DX|~=-sS%!OzP=1vKsE;ugTSTW P$so$p)z4*}Q$iB}jpR^K delta 526 zcmV+p0`dKa2Brj%BYy$yNkli}V>B`wrYDs^naV%tmZkPW|D@IC<6Gu2u_?s0RGOe!M6q_QIz^32sq0+wouI^jdr6m zb=#YycdKYOI@0YtFnt?zomI^wZFhd&dYL%MYB@4?4P~8qVKlq!S&4{7 zB}_E~vpD|SILtKzcIJkbsb)ZA@p2oA-AY+%1|}!LOMeU32Uzi=WD^wTBJ`kEUy z=$e69g&X%b7puGN23<2C`cLJ{hIo0^x8qR^x@JHeiC*^`s$Xv`e(=FB=`#rpH!Y-) Q00000Ne4wvM6N<$g7w+<^#A|> diff --git a/Resources/Textures/Clothing/Back/Duffels/captain.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/captain.rsi/meta.json index fce8c90ce86..5384979d2f0 100644 --- a/Resources/Textures/Clothing/Back/Duffels/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Duffels/captain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1, resprite created by svarshiksatanist on discord", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Satchels/captain.rsi/equipped-BACKPACK.png b/Resources/Textures/Clothing/Back/Satchels/captain.rsi/equipped-BACKPACK.png index ae70111e1e747358785fdecfbafbe4425786bcc2..b99018af6b50a9265bd2180901ec01f0b2003364 100644 GIT binary patch delta 684 zcmX@fc7%0;NTJ= zIB+zzcKl%A+SW98>RSJV?A+Akg%RAEYgh!EIA5~VvUn~|;(Bhs^R#_G-{vsQ6l~(>oWOuUOVkRg%3dz5Hxo)u*soW#RsM0*{wup)SM7~Ef0~=A zsorMh$8+V}9E^(;_yoSJXuGfYSA>h{$d~u!Yv%Uk)^9xi)T>8(zkR}veUm>~S^P|D z3FatxWK+Ns`9h-m?8gbN7P0F%3oi>kTA}Oav@K%xuTSq^OWMTcRej)%U!C_uJ+5VP zI466lqk8?9Rn?1*Ee_-^k~@|r{W_^=mtI%Vr&VclY>b3{EfB8qRm=#Ma7p~~bmiOM zZ%bz1Di3MgcI*OIe9-#Nuv|8e(8p?_amXU3TYoSoZJ7 zk*1Zt%YQHNTWKw9xFh;gU22knyK?HKS;}m))EI>nK&T!pL>;e&lsOlD5_wIH=tZ>u6RbKzgc2xEhZZ^c;pqvrIA zOxZVwMXK#=+J_JCP0ofg=$(3Mw#ld0xNOgr8=LB%CyA;?`+PB$5Yx#jO#FN@WykIM zTpk9~?ccXQ4_G=w-}`LNIu5g;vGqLh|c>Deu zx3lUS&+b)mV1l6k?FZOvtQA-8pR`?+L6w1lFEzq5&DWPfi-CcG1BgN3Qt)ID<>~6@ Jvd$@?2>^`7DklH{ delta 818 zcmV-21I_%z1<3}GB!3BTNLh0L01m_e01m_fl`9S#0008}NklckZln5$0sCXIku9=#KhMnD=-E5e7j=Svc_dYv2CH=m=Fn=5?0ES})z;LVp7>*SH z!?6N%-t5WKB{6fMum=$_mxZ{u4z2gsCSY}KQyf1w9GL`$zi~5z+{?O{F6on?ML=a1 zV(3i)@3DlaRsi2T!)MQAP=P)Pp#?Df`P)T2yIaO|aXhl+PZ*lv`Me6sS|o%Lup@j4 zk%pK2lTg+sA%Cy{ev@2|afX*j34H$CMm^NV7)Sua=S~9;?$@DvS5}1*7@l>s2rR+3 z02zK|1APlGX+J-d1SJ7m<&4NZn!v?Bi%3d%NwdV|>)k3Z3l#~T0{G?`zEP{ zHJ$?a)`t!ayJnLvfUr)&x>fKL(0IM*ZZHg=)bC%?u1_$0yKYaEJ^|I6B>_tCvrpN7 zh`?~H0Dl;c6#&Dr0$?~+01U?pfZ^tkAFc4-QDR>0$9jGYDzTL<7=GsbxzQk zY=!OW61ly&U5*b5$^z0S^P*RCl*f5K>Al0<@V5d+#@K`3e%qskt8OFG?ZwxshyyRt zeqV&L0NHtE*rS*3h|Y5iAJ^OG5JWS?`EGoz0EXlW=L_t(oN9~qBXjDNE#wT)uVgv(e z*jNP4R3eH^?g%P~9>jo$ zO$xya3MQQS?K$V(?!I>#?0gG%``*r<@0*#O-6xWcGz0&827fyKWda_alX}SCse2NO zlL;AYW)1Ms%Q?^V)2n%zC|Bz@N?{VQ%v?_sS*b5{<)yY#lFsg|5nt@NX6EUSc{3x+ zA1<2bmt`}__4_$_GF33|Are~}YRUhA<0#YJYZRIJ5ivh~M|Qh*$E+~`Bm+N&=4AZt zqRc*+^Gei~0Ds^YE=6+U>Y#C&*}l`vp`kK#vB9=4SM5017s>wKy~6C0XuAiVtq;q> z3@Kld@2elAbKg)1+pHn0EkBiQI}XU%nKM#bFKw(AW%hi($-w(cRmR6gTFTy*0FJ3G z(ItT^Dk--dyxLsThr|*L^bebw0e?_zgKl}T7{o!>D}jP* zbU3g#6n{nv#B4v?gs_PtYU_Cf5Zd*M>wAE;?snw1^ElgB0vi3Tn|`~HQg_%Vpe+mO zy0-e>QkzO4s+Tr;)xN!GMIt1f8d2PNpunVGZIbE_iIx%&x!bEa0NkYf*WnV1a5LZ# z@Y;}`trX_X8J?8Z5DC>!lDVa5$pE((J=-7=HEwUNN0V>7PH-LB?_{c7>Qz73pL+e; zPU#Fv#O1_rces}4Pk|E&Ak@z*{jgxo{-Dr%LLL1ru-c__nt?O}KLL#eMEN8~M_d2^ n01jnXNoGw=04e|g00;m8000000Mb*F00000NkvXXu0mjfFP~!m delta 737 zcmV<70v`R12Kfb$B!3BTNLh0L01m_e01m_fl`9S#00083NklLNk9M6$aSvy{?JTe37_CJ`w@#*k2urietM zMp5d4M5v`hDL9<>z2u)4=3@i^b)7fUsCOn$l zPo9}j&(@xw-CcMYTaV>Wp^?hSqP{i7u3y3{> zjrTPT180D$f2yeHoXo8d+$*BcMPTgBERGhmuKtby-hZjEDl3{ZsvqCBF?Mpo5rBQz zmm&nKBRK8DsVg%^OCDJ1gy@?AnsXu^<7WfPfU<%}JH?F2SXM(MIit#v`@uSYPXLl9 zDvii_aQ$Us0pX+#^N}uN$wGD~3N$Oi&c_x&UMj3>F&7ZCQE-eMxCK~V(!kfQxmKGKv>=#PyKEfBybFNh z3!|3F>(-jJrqwCUhh74e`niny@|hvZsn15qxmuo6Wx-AKT>w^ygKGN^r<}^GC0gAL zt9$ELQFgmqD1<=u$Q(wY6N(#lZHjwv>Sp!4YQ2gM_)~^?fZoDmV;PF0@{CRIqojk8!l$q!0=hlC$?@^@Q#7(gd zJE|V%ty{VB_padiYBn-|qNX35cA_TVbJyPNU5_2|?C&eB5nI387R^=-2!dxrj-_TKa#+YG}RW`QlN{X36q-2S>j z{B{9jgL!j^dHUh_x#qRW8}Htz?BB`FV9`_`;(o!Sy8nUhj!m)s4bfW#|Gzo9HHHly}^kee_M3gkh+KS+&RYZLYI)uA6xg(C+hm>S zc!pmrYpm{Uv6IM-Ol$2Exmx-CPxGDXvf?%EUw^G>7Mh!N{Py`XvA>uTMEe$+^le<7t5@f3b-=+Pgk+r>X4UgW$?{UeqD9ph>UBbNU)*5Y@Vb*RZECy zW~MFEO1~#-jO+KVs$-Gaf8`;Y!WVXqSt|dQ?fd?7`+@{aZ#EnzsKBmgcAVc5A$n zezC%go%4#q2WkCxQE$Q&?u9WhFz}^Dc&7RKGH3zW96-##AjrUQDR?r7<>~6@vd$@? F2>|evVDbO} delta 665 zcmV;K0%rZL2CxN?BYy&SNklufnG#<(e*XcH>-YB!}mD`o3@8K;H*oj4{R-V~jDz7-Nhjp;)$1EL&W59e=~RLJ_1~E(=vRk(XqO zaHrxzkQK6e_`NTzsaiyY+>6Hy}*leUN z^+LI{0Tjy?BIqJQp3AUhpaEL$Ay?E(Niy@G44x9F870oSEU5uxlyAR7QxHz5s{f7m0?eD{Vb ze1y6mfxJIJD#}qoS<0#(Au+|Wg*v|~oE?bGwY-RLPFdxP=L+9C!=5CQZcyO~?kLXk zv+746EABG#B*~k}3J7Oo6ykjYqs+_x7ry~Qq!K`S*>$uh4Vg)Tc0Z_Zy!R_t<9%m!u^{ElVq&l*ZAY zUcAd8TiTsjR9onPqu;KpdDqIUA5ZSS^rvP*_u*AP=HGPa`F;22Ro}UP78Ir(Vse_= zojc)7snKTcS6i(QR>u6DuD@sX{>ajp_S!%3?{6QGD+6t78`6UbYnWu!p3wXjD)pj18p1^xR-)ezYVKv(ZwlDkc+?sPuec|8l+FfTq?|ZbOe$#^Vgu2j5 zwsnub@;u>=TpD11^54~s*Z$h9Z}RQB_&%z<;UiDIgWmToKfHCPJG=E~OXxG5i@3hj z_4q1gg&r|!+w%_lE=)fA_zTa1uf6t+6E1SDyQ3M#;L|$!8;?SwgTcw&Uo;|sPU#cN z=}Mo|aohO8+T|?g<-Pf~DWp_|AC_VeGZV0rn&;0E{rFy}%lzopr00MP4>;M1& delta 665 zcmV;K0%rZ^1+WE>BYy&SNkldD>pPHQE-bC2`;9j z;AS0yTL})`B!57ml=>Gq*`fb}+}1&Klq{K3rODJ<(S(#MNvTcwb*Oh(X=1MYl8fbi zAcVUd_ulW_kKFJc2qAcwE6=V405BF- za7s1~aGuEElz(jRe7joFn6^Id;vXbuablCSuF11&0XnS`Csl|qtYAcE(5t zW`mPzg?f26q&<5Lyv6sKXU`n~P(M2b@D}eLk1BWZ{pQ*8Pq1Fz4RxFbo7pWMoxf%? zyG6%ojO^0~yv6sMXV(iRX2#W*_g_N*Q(05p`7p+hhktFp9e>9?KZ-2NQrhyIm>E~S zjz^W&Jg2gzazEN`IzTriPa%X5LI@#*5JCtcgt(c8H8U`%ZnUrYfWH~W%z&BBsb{M{ z8APFd7hu>k1I0pECFd6bNX{=3Us}@|!&mFbOy|_t*&)V7$Jl8$ylEakt z5%+f1UTgdoYQ_}pyp2NzjyGB zYwwSXtjx;epV}uss`%(*8ahMkXYV!kg_RBmRyT5g|5bE#_ZI?G%TV1dJ+`sx>ShNyDfWwhL_szpp-pY3zl}}La zu|539US;J^_LeXF9kc2W^c%i#Ucc@NzsLWB+fUXDcwOsdwfz6yE$W#HqmTllcB6gf q+@Asm8{aGerZ~RT2+uTMUj{88n*)eJ;8O5p5asFW=d#Wzp$PzCCn^*G delta 501 zcmVZTyLxVUt%4!R10;36)fgE+YeB8UV;6tas5LWc<6)TM)ihaj%$pg7nTJcnW} zv{Gy?(8&92A^9$MUoKhl0z^baL_|bHL_`$S#{95qK32uNx_{UlRKH!XyZ$d?x(Bqf zIkmhn&{%{j=2d33hQ*I#m`jHp7ZJ4nuMDlDtzS1LSQ_8P*u*H}2U%1zHUPl%B>DqZwIVjD@!s8MkQ?{{wiUdEg|vXA$7H@wZ2<@ItEER)SpVufllcK6qF(d`va?9eRwS5$00000NkvXXu0mjfH!k66 diff --git a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/inhand-right.png b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/inhand-right.png index 0a50f7e64201f69b535af04326860253a46bdfd0..91413dc5779d34ff90accdd843240baafd22fc23 100644 GIT binary patch literal 609 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#X#z`*#=)5S5Q zBJS<1{oc%mBF7h7c(S*@3vygBIU+{Js-r_APf7L>ODcs~w%q3SA0$T^1Zo z&D}qewZ-twD3 zANYFlSHj^LDPEml`g_l@dWS5D`&4>+xC1(inGk$g@QIbkB@2m%HAxxwRR%^@t(j= zfk&^dGfa5qo!)&*z9)TCYg?>aRN|Y(W$Tj}I1Bmxrz;sLcK(Z#(0bdy`tVQT+*LM# zyuDf5_wznuWL(cC^($!B>blJ*FRW)=Fq7xTnrUYOe)P^YOAu%eKak=aT;Rp5_e=5O zi}%LjGw1jH|F_0|-gDEXW_28li)QGutk*xTn;i6M-Ps*4@?RQGKi&Dido$y^vcG2e zd)%2+9Ppt`A&-!H|KJMsYh`QqmnWV5KWFhumb7RczrT0Q=C@Q&WIVEVzqdi=WdTly zNxydI7IJ<+^l680PxfEgVoxjkgwJA}3~B`{_j}vee-LM>wObHd3{-Dzf8kvGlHY6g zyB|8DAf(W!r~H98IkjCf?eE7^z?8w48sVAd>&u`8WOD#92wV!D45B<;{an^LB{Ts5 DK_&N- delta 487 zcmVS(1;wSSwhn@;lEA1}DYlA4?9 zZQMj%&Zxq|Gp3(*;mmGpUxZHcTkl3or;Q1f;Z+Qc3?j2tM6KWf0Gvny0BVPe@7L)f zMSi<^u`B$>aD1;H$H4`1GK3RJIFWq2k&ZhdWqum~D*K}f0OI02T;aosBw`U*)0?+e zECMShLjZs)e1GI*h+4seTP$f)grDTM0bsbY23PoSg^z09Lw!NBoD5OTdx&F4cL6~5>a}9e@g2s32|S98 zmXBQK{&ibr^PaMA&hcSrQ10Qwvd&~6xflnmg0jBp4w2`O)ruPqgB~bxP?;rR|;v-;s|3EukNhX=zKkzH~ d|DA~bqZeKiPQA)E%Ax=O002ovPDHLkV1lKV>AU~{ diff --git a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/meta.json b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/meta.json index 3b5d02aff6a..1f7a8454a0e 100644 --- a/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Hands/Gloves/captain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8inhand-left, sprites inhand created by svarshiksatanist on discord", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/equipped-HELMET-vox.png index f02e33c6584a67878fc31062185815d444ccc273..c92cd11b4c17cd4fd25b9d90a9cce71110eea18c 100644 GIT binary patch delta 1406 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 delta 549 zcmV+=0^0qp1-=B3B!2;OQb$4nuFf3k0005_Nkl*1>{kj1s~hpduoI#b&UIG%1V0=1*WTuy`#Z?QmW$(dkGY15eW)l6&b% z#P>5@?(TWM&pmhT^7{cqL`45q!0o_bG9%=1>0s6MJZ>rJjel~!nVof=?|5J^nGvSi z2D7yjVj_#cb{fjVB^15*D;rUnFL}wgJ-`}#(!Yqlfi9dLU!ebF$@4;-=6}ace!blr z)$<&5jA1Lfj`^K>OdrJn6aX|rE6iYJ^bM2xIMnkTN_Ho8K;}!*VaHpL_|bHL_|bHL_|b?Rn5vsN_s;mdJ%ws{Q|Nl!BpEk^#oM% zJc+ezEhe&PnrpB5CIpii@v?S{z;+ry?Mm@=UKdsB9e=9o836qG0_2=B!))zDsduQV zQ^gHe3)M7D=-p$GZ(i2t2e0>VU$}EzqPCqIPl#wFhQp3w04Qh6zJPo_?_Y<=m&JT; zLc`%EWXXDep#=btT7IngCTQ`5sGJ}8D2KlePPu+~z~g^FI25k>{3`nf{MZ0_Y#2{f n*Vq$4L>@#$L_|bHL}c4L7+2zPe(9Ud00000NkvXXu0mjfG#d-S diff --git a/Resources/Textures/Clothing/Head/Hats/capcap.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/capcap.rsi/inhand-left.png index 14382a99bbfbfd82b5402ebc9326779cef6ceeac..eb2f867bca6f3c049c81077872851015b1a03200 100644 GIT binary patch delta 607 zcmeBV`N1+lrJkkO$uool2x>S|Iv5z3L_J*`Ln`9l&f4#N*g@oY{8oz$*H*nIZ%wX8 z5BTrM@K}|IwOehw>ssxu-w%-0EE(R-zkYmuqlspDx_Ic7w2B?YkctF5LIzc?wV8&lVMGT)>`pEg}2n z2BwE%4${w8x*X2Bzf0M4nytH$+$*@e3*U0ptUYl|Z)I`CM810O z<05B$xaQj3?wI>6+4A&TOM$*3GfB3U;SGD4w-inZXkT{dioDdqtf$l7>7R1pu6C+E zn#{R%d-{a#wf{aj{FaP6{8m(;sO$5wV+jl!D(`V^j%LuUW#6KdaB~)e!t52-zf53^ zvo^f>Pl-82`0Fe=qXXIMZ1s)|EDjJ<4`%@x2Xq-%PF37~E@EwYP;S;TFO{tpS)vWm zvv>M02t2(i=AOm#<@e{EXxQiwIQRC8M@cL1&y_F>o0+G^Y{QuF>+5d)gl7r&I3n_A zUEp2wb5X_Qa+!Yhf1-Bp{eGpH+n@M8W%2V%>#jK;VB?PZZ;`p*aQUV6_3RM_={H3! zqBECYUaeKCVSP;Vcyi=RS>-f~AAC#-3^4RzI%f^jl5gF{+|71k3=9l>sS%!OzP=1v XKsE;ugTSTW$so$p)z4*}Q$iB}L$>+} delta 495 zcmVNf7PeR73<7BQ;p8pdjM8 zXi(Z}+MbQY=LdmsN0PTs?rz8xAR;0nA|fIp`eziGH%lZE(0@X@DAvCg3)_C)=lgtj zovNz#3oJlt06l$E!q?RcS8GpR--~&UtIM+=Lnt-CN&|3Jbaer_To#`9^WEikOw4Dj z_Md1WUATSyXl?7r>oad}poMf%$|$l!Y5;4ou%d-@;qiEpoIM5%AUO++tPUb~e`jk7 z+}~Z}0>06^AETWy=`5oo2H5l|BWj6N(102o*bSnVGn ze8`$<7#G_m|DKxoD7xRgpbV{y!Bv;Bj>aZ0USBfSQSNm3^J@SA_}wXSIJbxRk@4k! l27%x~(e;6dh=_>jdv6r~jY_H#{Hy=~002ovPDHLkV1lbP;n)BG diff --git a/Resources/Textures/Clothing/Head/Hats/capcap.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/capcap.rsi/inhand-right.png index 99fd52658a9735adb436cbc3046052fde7996e79..900f3c1de819543cdfda9e2947452ca4b0de17e0 100644 GIT binary patch literal 662 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#X#z`$he>Eakt z5%+eMwFk4KK%4p`FQJ|U;R{MEt{W$;n0vO-BkG`%n3&<-uGZGph$S6UlTyWVS>!vm zwhD1u2TF6gH1#TY2r%F3D7wd@7gu&&hO_d{!~GKuoPBrh-{-e)M9sZh*q9U;u%Q1v z4acSO)g~`|x^&9B*OF5W_K4?YWLIxZvf;mE;wyFAi#a=N>((bT^KMPfzPKqbFyGZ- z;=~NiihO^MPd`H|R76=WE;QMAl1;Eda)&9~wR63W9aYw=UPiyax8mB{9d_s9_+suj zTt4=9QO5eK2Q=fXnA$!X)cMYJ=H4>jcG-=4JBq%$ru$VqyIXfk-Ycl;u;IyLY%gU4 zq)I1TU{^aN!oz#{^JCkm>pr<`&V2djbAaK}DXUE`YREPItZ?El`Rc8`PgFjmTwhnV zv5QCJyiwCxN&cPskJsnl;)wh7Jc5}$vU|s>_YF}pJ4LT)}=IUUKa0~yGxC&_rAI`bP0l+XkK`5y|z delta 518 zcmV+h0{Q)x1)v0wB!2;OQb$4nuFf3k0005nNkl;LEz%xAZ^v3P*dF?(Gmm^G&I!M^6C#Lp)sPN$S|oqq9LMd>Fo4Q zG)14)_X7vsyNCRK-@E5MEHK z!g1W%hqdnfdUG1;?VmM*-FLdJCY~4a~3Cl|M<>pWyrYe6-qu z>7`V5yxxT)al;!NM4-LXb}jvIZ-$d|19Jk{-ij*WNZj!G{5V}a1Cqe$A~3N&1U>WU zxCH7==J5^}mw)@V@t(GEG&;<;{RRNQn}``xGxNY}67Y24_;43)Rda0q&n*D}aI2bf zqJN#}fLk4_u*}-|=~LQJtwMea1|Yit*%*NA0%T(VvI~%n0mv?Zh=_=Yh=_=&){5?; z6xx0+mF%svVjQ=|erj$(E4Uwr5<-@#>;SAy`vU_20DpJ$K=!)WctYYOq^RmaCG}NZ zSpm!~XolIe$=dw+@*a=`&>E_!xLPRdrRd&HO!;_E!8|-Iez+P^*<)mF5+|)Ib^Yj@ z%3cDQ=kI@vY-*#~X5U22m>TXv#@l2hUP8Yj1R^3LBKnU$0g*$BwL)wv?EnA(07*qo IM6N<$f=YM*x&QzG diff --git a/Resources/Textures/Clothing/Head/Hats/capcap.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/capcap.rsi/meta.json index f18f2bc3ccc..ea5df5bd9ef 100644 --- a/Resources/Textures/Clothing/Head/Hats/capcap.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/capcap.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from TG station at: https://github.com/tgstation/tgstation/commit/c7dde066687a52e2aad598d19ee01cc0fbaa7d43#diff-4bf8ea7edf380bc679abdb6816b5742859caa8e87532315850772b843c083a26", + "copyright": "Taken from TG station at: https://github.com/tgstation/tgstation/commit/c7dde066687a52e2aad598d19ee01cc0fbaa7d43#diff-4bf8ea7edf380bc679abdb6816b5742859caa8e87532315850772b843c083a26, sprites inhand & hamster created by svarshiksatanist on discord", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Hats/captain.rsi/equipped-HELMET-hamster.png b/Resources/Textures/Clothing/Head/Hats/captain.rsi/equipped-HELMET-hamster.png index 81ed7934ce49b89ef0f600b61790221efb7af93b..ab38caef4ba5eaaf7b8ff42002244fe26e61f4f1 100644 GIT binary patch literal 766 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#X#z`!)y)5S5Q zBJS<1{oY}L636Fj`w1pJ5Yf$F_Clo9+oQRK*AuY**=+&=Jik zmaH=TrB$?Ymi)=vr$at`xEOr<$NKfsi}r7~+wYZ>EZMvF)|K1$-Q=~; z7fn0+Uadlz`}0q{|7L3p6K$d ztSV>DvHru;D(1@Wy|(SggV|^DmIbZ9zWIimzUr6AzEwY?yOuUWeGB(CR>mqpjak=^ zzhM@+t9k0Og`QHrLrQZ-} z&c}89$d9V)e;3$?$Zy$I%wWHzW1&EeebH`#n23cx6r-F;&8f7g{j=<>*s5sx z8MhZ-=>IH!@=H5srpy}lzrW+n{&RKjFVpZ#zrSNm&)UwDliU8N_1~HEbIJ^Jr}v%m z*6ZtTcr!En+%waDnu5>4irt&SuiVwl__f*TqK%YfP1%&ItA4ZjIw$=RSKR+jdB*Q; z;_3De<7+RwGpRUWN8wWs$R9CJ+wrK)ND!E8`BEc1(|mmyw18|5AO?X;!IMFhr>mdK II;Vst0M61_{{R30 delta 554 zcmV+_0@eNg1;Yf8B!2;OQb$4nuFf3k0005~NklOT7Ts*rUs zkCDH1Bh_k4^z<1z+Dq708DoEr7r)*?Ev64L2}%Ci`;_^`ZGJYax@dzA)M5(TD&wGL z!M4g!iz&202ZmMO`IboX|CZ#ZvGD}xjwjdMD*A2=6$Uu$9b+=`ao9VC3Ip`r7}wn@ zbjRDtBB-dp=;S#1CS-q$|i zb+?GwY?j-0cTUaRfR~xuz%{ZtTqspDyw<{^*KP4byW9I zVSt001ptVCRG`p+0mx7PTk4bGOe>)8#<Eakt z5%+eMy*IO?z)^L@sU0pS#4Su5wF7fhB05|h-ns-u{1jy2&K22u!O0_kaqohTxm=oS zRBm)6Ej?m?J%Wu#DJc=KoLb+ZH?DlrNvV4_9=&MD`M zr-mKc`YL~tb(&IEh_TJC1zh!e?Zp1pRBaM7?7h5df2Q1v9{p4)k?H-aI+3qpribkE z?rN=$teZ7``y^d8fi3&3=dav5t|o zA6{u;Td-e0_@H@o#LH>ZFSVv@XTPf6Q2!?JxMfM)^pf9;GyWQX{N9zB#QjuwgU;$r zQ#((*i41zGV=w-?=(u&zscF)?rp~N!&AGkqY2MZSdXl^<4orm6hwYpp)$NVqJk@Cr z+@CQstuEkPrCXTlXl$BcYF+$5+}@AwX}GO_L)eb{hi1;RY+&2hk;uhpc~^VNw;k3Q7v%E) zX1t4C#=m??P4NP*gVIM2`7m(p-E*p*vw8d5rQP3sPMtfluP5K-;p6D@9%YwTu0Hy$ zltXLL&Eh?*&vhF69?#J{U~n|u@s-3;=7_3~>!yXBm(FOuey7onxqv_R>@jwv_-p*{ u@qqb8#fRx11RtCNCMCYq2+uTMUj{88n*)eJ;8O5p5asFW=d#Wzp$P!pa|+}D delta 437 zcmV;m0ZRUo1l@?k{2 zsVLW^m(HV}I)tue(doTn|LqdOwF4c(&rhuf%!ieXdc#z!4&mC+wJg>O8gwlS;o3;G z>Y?(Vg~^8%*#H#7l(Jot&FTok8KBsxplkI|Y*Zke0h-kjWV<94!~FKU{+buA{c#1z z|5PNel&Y%obboh@1FHl8NWL_to*6H10RXNFcR0RJqTlZ)qRJBy5fKp)5fKp)5fKsn zLs54IBL6!)Z(XYgQLah9H!!PM4ZuJ2_0k2rbRLRfN>x>78brJX;0z|60|4+cIXEkO zm}LmD`Ngalrt~s7`0WwDH!xh?L`Oft`olJck7uFJ6E2GZD26GYcb>3uzA#zy`vN}p f28f7=h$x(Qd6lxaR;5P)00000NkvXXu0mjfM$pBV diff --git a/Resources/Textures/Clothing/Head/Hats/captain.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/captain.rsi/inhand-right.png index 00813d1a1128e0409838aa6f66ae8a4e40c52217..779e7ff55a664d1a23dd633e5c75f7da115c4a2e 100644 GIT binary patch delta 542 zcmcb_yq#r&N^@9G}$$^7}J$1Iu&q?Y@uV{lg#q+qcus zqxJ0D;~OI5%)p@4n{N4Un7`k^ zJGMvT_m`r);|%q)_JsAc7hP7X+dkjH`{LbQv(ER_zV2iAvNn6aLs`w$FMJuYb$^R| z!}{2GJrBlfQjYZ}Cm# zVPp|-U;q=1W~_A#K?jcL+GZx^prw85kIQJY5_^D(1Yswb7d?QG)G*dnbRpw5VXzz7MmC z1ePCD*zteCip!=^x1P?D%E~J4T(&^yl|2Vj`-FmvjtdVeyL0B}bTI#&<;QR8dHK_e zp9c?q)U(@Dpm&~IKoA0cu2{A5pVeXi8ukCDb}T$0Cc;o}l6C!W`S)iUCig44jeY-3 z1d2|P_FW`l>EhMD_+HK7f5%x{lG&3u z#kU7DC)l$v1bNk$?z(;0@hl5NOT4$T{e|e;Objv0@(XLk-Bw?Xnsr|B#m~+T1kfmG zs_-}XW|t84&(1Ex?bXLj4^5z2w^s2bZ0K1qqmnVm>uTivW@&E*hyU{&N^TW% zf0s^M)nR%#=)85m$5sCYduKKt*HI;`>vbRN2%!f9v|o3_#%N>gTe~DWM4fJNn8X diff --git a/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json index 39f538e2394..c4ec10af0fe 100644 --- a/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/captain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, sprites inhand & hamster created by svarshiksatanist on discord", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-reptilian.png b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-reptilian.png index 4b77daf5924eb80ffc10ccad604149118646b917..371bd2ac2adf14bad75f01f84086c45ea14c94bd 100644 GIT binary patch literal 751 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#X#z`)ew>Eakt z5%+f1!E9kikz?_y?Ai;fG;Rbfyc@zA*zzqP%4Jo@gU}@}0`>p#e^Z*bheNJvvRDwy1wtsc0q_nd@{hIe*t_7W+ydYXp#)x&nBYFSOB^wHS zFEG0myUn=u=E+|-hLArOuFkx)_)X5svw!B8{3=S0xyQ{RzW&bbsyB-k96js4*07Ex ztiEo_!uo0NZ1|tN>D|x#XMWl0J<(GdA2%QDFxOEp-g)8fkta)@e6IZYs9yBUY_r9O zxg`sf%DwBZ#&fbf{&oBL(hq_szV)|X&z#39Q2**quI5^soNnpe{0v*=uWs8pcY(xR z9%nAa%kNLR-4%a(S!}%$gQC}yvj6W@fe~(_WhAhopb?DV$3+4dXW9z@4c(~0% zQSP8Zz;#};L}@#zZU29-W89b#v#f4yx##8B%?y33w{B02+E-tBe}|vE_zt_g4Yn2q zc6(yW<*&=G_J7scBbV7FC$GK3hJRM>D*m^R54?R@BlRfMVb->}PDMLEuWekKx%;a4 zaTNz9T~6@vd$@?2>|U| BMWO%z delta 404 zcmaFQx|n%_WIZzj1H;_yjcNS%G|&0G|+7 zMMXtJefI+yN*~Vj`;^SFb*_{Um$b03h>41tG-;A!_$;8pznLqK0x6!7Aiv=M2*4n8 z|J*sCIA?)JWHAE+w=f7ZGSttSBLNis;OXKR65;-K8aLk|0}h9UOtbI)eXsq(#OZcs zvX9Bb+?(x}!ndhrC;px=Uzp*HRIQ!Dqa_EIGEWPhX=0PkEF`*UVdLSSUBV0#-zqnr z*tG7sYs&upk63yRG}wsTX?wQNfj4w}V7;l0?E4=%40HbW*~LoKHm>J<+*x1moNo|W z;LR13utb5?jccEh#jlO!x1<`cY>F?{*lOs~7_uah)9Hpplf!c}rANE&TWMtn8-KNI zTsOhzz;7G53mZ5O8EJ(rP+hRaKPy9GYr|qLp1EsB!n-;sSqxYYP0k q9kO(_ zxJ>B~Qxp?wZi!%X5@>2o{m0VW8l$*zvuNOsR{|;t+Dd9SA~giN9TcQHiv*dLZ4f+S ze7~h!=lG`Qv*#B3|6rT8_wLM}&#L!V?moI#G*OvR=!2p_y=$O1|NNhd&+bIU0=&f4-5+9i)U^aylpFfvh zPu#QZclE1#li7oQ*STvMGrtzS6SMdK{nRE)=924mZ;$I$%=sU>yQj*u`|{3M$FVpH}-JX*A-}F#lPPZJuz+{w_Dq3z5^L0UVh=L_2zY+^vpDo+9X_G zcD?%ktYtHNnm0D=WA@{TohJYLy=rCM@2aC~p2z%8Wo|GQ&-1=zb>r_^|59Uy%hn2~ zpHF|A9(mXCS6|uodA}rnu>u97WzXzpkImz&QaA za%g0!`dD76Z_;>Tx5cbu;%bF+c85*gx-=_`RXsOud-a8;Wv|Mm^I!6_IWW6#EVZr>K_|EURr(brRmDcJyJ(&O}jT)?vwoynRV)0xBIh4 znkK7@y^H=Vc(c#h<5iOE{j7rJ-xU}XX0bMQY zKCcaHKX3fq%P(#saoXwR&Q(iqiOoH9OpWT?Abe2T^pWAAfS*BR)2YZaO5uKlDuznH#Db+ z$jRW;QcI4o>c`D*?8ff9CoHWX=wP#{>PLBn@;8$ZmvsUV?AYw0T05Ilx%H|pas5}5 zV3hy_nO)u~*V4su<^ERJp~N-n|6&rH9sx)XWc19V{3%Fq5ClpNFt1%EAQhG!K?ex> z;X2TP=kf(ruYXol^R1zif%=!5bE`IO;HCG`c-7~9nXE4RhlW-C@lKzk?&_dq)xY&% zM~W*g1Y8)O)WIVOcnpw`r_0mCf(My^z14*;{cIm!v|J{@`Vm0z?R;17)5(4*g&^BO zJ$?@_JLWWF@~mOjCGaGde%Eq&=@1bS5fKp)5fKp){eLq_{9T^ZU+~VGqwQdjIIw+n zcR1s1z-S9?O8a587v6SrFfiFK1lco;yJM78yTZ!~FbCN?y;a5`1NI@>F8cDd5}Xr& zU1B-D`$j;PZFp%7_o9t<(5E?uu-clJWh5&A%%z$eolx(!XQ%H5BzW2XH`@hYkAas2 zfSClq$65;JR<=t5!c)DH^w9Gd{fDF8!(M^}YpcJpcO)w*J&VF3ou1LHaw}RqL0| zzshfJz9jg%)%&gc854iz?W}&&w1D?D|E%O1mMDAs6Fny+du(g3PHSy{o_29wN#>rr z(_XI3v3`E$RE*vGlcHU&^(#ZPKArrl^TJ%$O*gF?7ZW6cI9B#3FZT`K;%8OC%Oud$#FH&A zV)LtqQG?}5MCILIp6mW>P+0Uux|SvM#r2c<`M(!0IQDym*lO8^gpE&4UM#5BwOr-! z!klvg13nbf)bKz5lQ&PliHe`@>LVTZt1X)2zaFeuvcN~p*}K&D8EbDZ3xnUCJ)4zo zzEsusm3w}Q#j@Kh!-0F&g}zmpybOm)$f;W+l4xt{GV zOQW&U?Z%t8EgUqya7W+0a_7g9tM7P4FRQFIWDpH_wL|GxF5$VV{?W!&d5=PJnl z&r9FBq+G~A;$-CQKTArBL=NpzD&TT`&n@%TetVgQPF2RkGppNP-Hhq_knO^>K;Vi( zAA`)LTV@~ delta 650 zcmV;50(JfW1-Au|B!2;OQb$4nuFf3k00074NklcC(0kWCWZzE!n7!^QwK3}V&&~z9vla}y@LZvmu298t6R(~>_$x-G+ET%= zi_c#^8O1kFRu>_allXQp4v(|$yym$=oz%&Hoj;3J!g{V}Go^6oUz)c703012qu@6H z00qB+qr>AwlbR>%yXLtfeB#;+Jt86^A|fIpA|fK91%DR(n|zUCSuKo2d9F~ND^!0g zokTw8(%(vlapSfXs{o!W)bi#wgtvl@)1J#H@LZufP8-5o!Sd#I?3mUC&?~i*-2w8o zdYl}r-$OSgf@zdaOI8??@^q0U+Ej@b2Zk#1~BU^G3(e z@oY9lM8!@rI{%90CW2u%JSJ5HUFc}r+J#z~_FSPV)m9>}r+K!Ws97d>;X6-6L_|bH kL_|b%@qGunfanU#&N5g4000hUSV?A0O#mtY0F&ne7-S$jHUIzs diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/icon.png b/Resources/Textures/Clothing/Mask/gascaptain.rsi/icon.png index 7f79171e3c3faa918409eb5182a6069006f5e659..783a7071e280a82b8d38bf05f4415ff1cdea80b3 100644 GIT binary patch delta 604 zcmV-i0;Bz`1N8)uB!2{RLP=Bz2nYy#2xN!=00I(8L_t(oN9|P4D@0KgKF=t|=1o#V ze$F7Hc(JkbqZG>0hHNBTe}I)Nr2G-G5u4d#C9<(V4Pe}bM7Vb%u~Qq;J+)NxDlW{SdsmH?lzTlm4B=7d!l@M0o>d(L$7!7 zuh7D>5YfgolX6N#nl->1TgDjlI<`y;0|lg?8l*LaX?*pKD(gr1-`U}!BN7FCO43m2 zy>eqBylrBVPl*+NR>Gl45kU2jJ$1irw)c;wiyOMl$lyFzj}?3P@gH$^Gm?v!R11)> zw6%{x%+v+vGJp2B0-4yR>aXuI!)={u_|#wx?X4{Z9uC%3*;)8e0c-CCc&=*1f6R)k z3O^D6nA6@miI=*D>60i0BSY#@be1ItDacO~ z^U+i0g&->`OYF>XZh&Kt_u$G{VIRP;$5kxx7qQPsB!3j-IlsKL#j;gE)3mIv>k7b; z0R4Qt+oiw(K>2JEW0 z`q1a($5o)AB_M(IPYv_X**lfBu5Jl9ngJ__^`&##ceiA{bDjd80>7fbI|g&-)oCOX q7ytkO4rN$LW=%~1DgXcg2mk;800000(o>TF0000z@;j|==^ z1poj66-h)vRCt{2Rxt{~KoHC?)FPOqw1`+*SOf(ddy5pdK7YW*!WUQwmf}mSe1MPf z2Pd;IvK&N+++DQ;%VsxsJF|NsNtPK52E!j14o1$mq{Pkk<`&E2*APb+g5o5sio!kj zmAf{Xc*MLHO$0litad{9eqBTWJYwWIiKyi5`5_)TbPuodQAB8x&EYPFxGYQY%xQ5! z$#J%ts7nCzL4ThGJ^p!n`Y8bSgC7G5&8BN93PO;;aE(s=9M)ld5CP*nmnWRZKoKP8 z`+zydSdV=$*6BrD*R^b50X+p8Nl8reyYEfjwb4Hc{TdEF`Yy0zeIy(?^U=r&O|HKS wNk2#&weOP%pa^!Iw0mDf(tiPi!4L}{eW5@!?nRqzG0iau+$ZQ6h&RX|xCdTZLHq)7T!^SZb5#2X6AkGee>q+vVU)gv?&A1fHI&AC0V2a`azaM?B!Vv%<@z?xWReI zr;WgnkjTsY(?0(-QGfS)|41SNOsM}FHOU9grW=xy>3_%m7e`fESJu5*eL}RMef+XX zS8mMGlLs$}j+rfC<%@`dtm$5P;UvhjdB3H#Wy#ay2D}e}!%qP0c{JR|_~HaCiU5Ei z*vAH6kri-0*(`MKM^QSSa=MXNl(tl1LzBr1&o^y1AI zgp12kaNhkMpFTTatr}8ubpw;jaj=E$lH!Zl;!n_SSq#3RK;f3l%lba=egfx`yvr>w zgntCTa0JBQAk1D2hFrka84!~uXGn{0)v$j2TFkgg9ov%FCaD#ON@Fl0DnECS2th)a zE|*7@+j7nbAkuIih+ABe2QdMkOEAuhI4>Llf1Qu?a|B=|+yhG@^Z^DtCGmYZNP0d% z5&`@21%SXd7bwXPfmY_z;PtD8z)f<%#(zS1oGzT(L=oWGTLF?E48i3)IWoW^d#3_} z@#4h0&smR+UOg-n5#Y*+V|m%-a$qxtFWaNvCuh$i zK(qy*C@aL`=YNpZpJznTzF2pV^{&wmwwM5)v6Y5lY`{Ta`g~WJGN2471ImChpbY%G z4EzDR7~)Gq2#qBG000hUSV?A0O#mtY000O800000007cclK=n!07*qoM6N<$g0#H| AkpKVy delta 527 zcmeytF_&e6WIZzj1H;_yjcNS%G|&0G|+7 z5o1@Y^hTYqyk!;gm*<-Cn6mTf+W$Wn&Bw+@Hn0QF>fx;TbJxWAotyYH|9kIUJ!Ezkb{FF)QF-mO@& z`<3_BM>b1l6soyRv|9MtciTZT0lU);>kieWbvX4HR_xUd(hCYa`SO;8z}%Vad&|9- zK8QN?_wOQMHHG!R3zg;x+@02JXvezk)uB@3l2tcXN%C1fS7(!9K5??Vq@doz)Ye#` zuw#png~qZuO0r?vbxfAb>%#hF1U`ygW4mJDbmZzQK`V*;M*ii$l}&suOmi17^=iM` zRh-S6p5s@3=jGuYy6f}B(`rlaO~1)@+u;Tf|1e?x^Yq^%i_#sduEm%m2%I~M!&1cSU6WD(B$b>hi zdKs1OOk!7PIvqln>OF#*e90tW&3kKm~T61Z(wm=zgKseeDH}=3c%Q4 O;P7Eakt z5%+ecqCc~vK+Bg0`#)e`ASj_C)_zn$aK|hu78ZA|F9IGe z&KIWCN^iSq{cW1`rre^F(azS!-_ySBez)~uXTd}U&I!2C0eg-uQEN|LOUn=1BVzcZ z>*I~zQ=;m>Ol*yCyc+X=gRSJ8HK#9~+V(@>Ot!Q$pK0iq8r}VJyQ0=c*k3+=ZYs-x zdp}ng%IvvO_qhMzmi3jn=DjjmNz6OvtbbZxG-sWg_O5SFP>}+<&sVR?(!W4IxFVIu7EXNVQbiCos?_Jc(QMsUKQ`llIu&V z|K$8mk6iX{a*#G#qot4nBTlq}m2quz&a1V;Au*n3E-rep=Kl1Z7hgyhO_(eE=W*Qg zW8TlW&s1IBXD9PyUq|7*@*=yI-{Dmk9ovL+UY-3FI{%vZ40V<-m#j`$F#Qnu@owv_ z4Ku#0o&J?6o04PqB<}hr4u-C+4@B}xB5QLQ8Je#3@?E_y)^N>HZ}ocJh6&L!T|3h~ zG})8{63+BAtY4-Zp3-5Df^WS72amw4$>AT-3useH)M+1w;1L?(?aiP*rSNj6f h7+-3HXPU1sgBFm@0mLA1DR?r7@^tlcS?83{1OV=lBB}rY delta 456 zcmV;(0XP1u1>yscB!2;OQb$4nuFf3k0004;NklmBlHP`4t<6$inObnAq6uOoGv(J(R4@}V*@5BhscHRw|R#z zmvjGt2OuIMA|fIpA|fLC2YWC|?BOISjSnY@Js6e7+sdk9Nq>aQyk4^K_Bg0M{!aX$ z`dD~-%)DN$i5Ihq?BOJ7npKBL0jB<@vkJE94;|&>zpJ$hwwU^xPSdQD)y{I8WYr-S z1RPh%`g#Wd9PS=r=@7fm*T&zG%sNM82LS1WV|NTohk$Yb<-pP*Vs~6R7Hwu#xfV;( z5xVO+Vt0Hp+<#rqPmV?FSrz08fb_!ae$3KU0{|UmTetb7C9}?vD}Zv+^QxTu2DgBG z3|L+!tAgkefN}sG9WR!`*u}Cc$i4#Ev$gQ{SOr@=zuf`=cEPgwDLXd??C*^M^(KX!=@vXMIgkn13eHbF;QCDcJSw*ZjoAe&nNp$@XS y1rX{WoBax8&)&<^H|_^Fc<`?Pu!BrQ_5A>o-3&#Jj0^<;0000TR&z)fmYr{E*h?0vw8&}Vu_x@JUF$p^r2PRzT|2&7wCU-AB%oJ~O;HgdA)3Pn> zbDGA#e?^zhuKRZ8+m9XBSwD9yt-P}HJ0>gaAl?+>E zxiT2^=F9K@m-`^;*p{7URwbCu z>iuoGC4Ox8_f9d*I(N3`r)L9;2M(mfvgPXa6GcZ`u6He-v`I?)*d%_-zi3zRve+s8>{wj%35OUs01HJ-Z{MCbMO&UVkY{_2?u6bA5*r~?y{*A77{ zB1b?%%FZ3{48;+&A33M|%<-$DZXMfA!fTI{lH#&*|mcaq@ zpl?(YikZtzXv!=#U^?4&)?or5@9O138Up~s@A=XaGlg#EhstUiqq|vP z@A)_7?q+eb#D9#UnYp?F$bTN)k9pqB(*yD)WoQGSm$|wD!p--Qa4)BU16*pr>dw*c zKr?gg7JzVpG`{{M3N<5XX0AU4PDjWxIA9$nczJsS0PMn*xu<}InTd#qh=_=Yh=|Bg zHcpIHRF1~VY@8UYQfh#W6Ju4aLfbeoZlbgT06QnfDm!Y2qY@h@#tPIM06QnfP1GA; si_@% diff --git a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json index 1499f7c4707..f5615add46d 100644 --- a/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Armor/captain_carapace.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8. Vox state by Flareguy for SS14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8. Vox state by Flareguy for SS14, sprites inhand & Vox resprite created by svarshiksatanist on discord", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-vox.png index 644c67846b137ed435d002c5e0b2dd77ee040d54..daef81c7803470b0c8ce2de6176aa9fedfa825db 100644 GIT binary patch literal 2477 zcmV;e2~zfnP))V z#1KPb^pA;(LZW{(Cd3$n{HYjBOb87Sj2M9!5{YT4l!ug*Pztr}O51hUT5W*q`R49y zPi}ATo?};ydMDYv_nyamGjrxV=MaSyS|GGQXo1iIp#?$fTiH&_=Fg;>9p4-A z_A27{4gC6sC>2B^G<>Cr3ht~PRZP-{Qz_cFDPfGCKZ=tl0pJf*RnSL?wVVSXpe&Te zw1k~>RTc|5&8Nk=&w{J>UDb;m}I$Apkd_mxycZ}$bjnC8e zJs*?vD6xzn$O$7v%I4FVFOFr!&*}lXK+?((1a8)~Gs;g9O!D80HF&!6w6Xi+Kc`n-ild&~|$US3X#p>CRdV=7I75EstS&7nzI)HBO&JJF;Hf|onX zh?~demSq^g-F5c|HtLP#tvYg`0X}>3Dwl1&G=a7sYA1@Wpv8+9DB(jC*RGEzNGfCYnph;8}=_!({#+y*DPLhjA;NA#B>9au7G!$?s!pj0x8PslycMi zxi}Nt5B2rBBe`a8n94TnS8DYDxc|m=HdTnrLAJ_Gx^lNM)O^&-W#-5(L=*a## zJQeo#^aO$h8US-E6hI52Mat<0wOw#mVtW5V8LY$>F1njKX{oX}T3mU-I4L>MM{%V9 zTClu)g@f*;uLZy!M$W7OlmSq#6RT7uuQM5j3#LE=B;y^bwmX>3o->E2=NfZ^vI8`- z9L2W~%87I8^@GJ2o!i$Bce+6C)6Iv0F&BwvN-Z%0@@2O2t3MirXv}F4Eey*`OTV|g zm5#nv%&iQ9(({T2`3XWg@=*@tt5o6rhkJM(ed%roza%^20=gpX@@?a1+2IvCFXbR;q+76^MAY#$5nRu{aV1^*%0ZZkaM|1h6TK?J>$jap``UClxa*+YOj;7XUbv z_gmOV8uEuzs~lS)OpL(z6;T@OyGer-QHq{|2Xa+)7~&MD=ad-})W03Rkpbjj1YmxB zPYy_CRaT`BLMW$306rE#yx{UVj2TIb$U?~&->3_S>#?=fiICsg9^FG1E|*^LPvb-H zkU|TD76>g6S|GGQXo1iI|2Yd7tps(gAKdz;qsQT}G3iw6@_)iId`_q~LHar2w>#go zlErvCEDAz-1SR;)UJ(SSu6}IX2cWhF1SYUSkOeYH!`Se$vKF?zFGLS>&|%xpb&P{J z9ip%x*_$^t9kt?XDzF&3Eq;ruApGS_a&7 zxI1p2?3?)<7xcP2j>cgGzwLSuXKN4e1HeB0;@8cL!`(v(nro7)H{c5_zk?Y+*|N!D z)mL#j30G0{eZL%30OAZm{%8NXHr$yO7ti}Lg_UgUv-2i+)^F@ph4jZ~v zsJ;fX;pHSBEnk#h!ZC_Z*B}s=a6{sS&b@ycZL zJ#GUa9F52@1Vemo>C-Rp@;KK7p5P4(VCkXo@nBhX0kkZKsnbhQ0Au-^h*f6J?BxcD ztt)0zLb{&JLg)t3c>5?>&>%LOGb;}$SW?Z(isE?6ws>NM){%19oIyrYIjlSY7MAlj0Q!A<1fONGLb)^mc#HDD)MXI4Z1Ie{02rGpXX<{o!u}Qbe*pW=v5>XX rXh{G701jnXNoGw=04e|g00;m8000000Mb*F00000NkvXXu0mjf38ti0 delta 948 zcmV;l155m^6Tb(L8Gi!+005o0f$RVP00DDSM?wIu&K&6g000DMK}|sb0I`n?{9y$E z001^nOjJb{G)4m=G&*O2Elgh1oi_i@Tc&s)BR&;#Od$+42M!JnPC+>=R&H=%1Rg$6 zQAPtIK~n$#0MiD}*8l(j5_D2dQ~&?}|NsC0|NsC0|NsC0|9}4g;=jKV00009a7bBm z000id000id0mpBsWB>pH^hrcPR9HvtmfMo!APhvgIRrK{9{>N(?vcQba7?PE_GKT^ zsQ^}swzwGKwtvJ&;3FXTp9GxqUY?}7l7;WBfj^oq#F$WUKE)Vb72q8`fp?bQTkzha z;OS4}ML~Fp5r0q_{t!^cg%Fmc?QY+peO(Zj*6jA@5U}~UAdqgf_TfGuybHH+U@FwJ+jj_$IW4I*4t^KN=}urt1gP&Rcl(aUJ0g$~82*T$lNH<%1Z>o zSLN%#cL5jEonhWu1lv8uV{#PA*GlNY)oS@&fK}djcYmaR^!T6FQTgh15`DG&F7RLr zv4@yo{limZ4Lx6^;meoMk3SU6IR48vFEG;p2nsey42k=K$Z{zes+$m0P!_} zw-Mko$Eakt z5%+f1UN2@xk=Fc>MF~uf9x9B=lVwX6DN3(SWlh<9vn6wmOGZ*#)JmI=wP)<@o}0aUEOFCuXVytBk0Uo9 zOHS zeUsHc`$-Rs!Bk&sT0wLkRt_H=p2G;g~p3?;t= zoj4D~r7H0^u98>0!XV+Yzpf>qj{SzV!xNAZEuTy?m<1|1=D3}8w3!mf%;KQ1hvgpQ rf`s4dW-t4f1CtwHYJ_K+uP=iZkj(+aAaE&oGKlhY^>bP0l+XkK6b%v; delta 644 zcmV-~0(fFDZ*Bkpc$_82Jr08~3XBRM< zHJ^6oRqUU&Rq&O=$pTkGOOQDg=9bhm|};Sn^?PSHF&#nA8w zbhjmz6$X(Zcqg8~*G~sndVL50SljUsizmdg!XUZ=rsfu4_uAN~Ww24p!0xp%HMby^ z6$a4{@O}H2YwN-+ysmP+u5xu@7S#`{|Fv%)$|52nA|fIpA|fIp3MTaP_b^EI5k$`g z`bDyjAbT{{Cz5@H$dc+KL~;vA_7NgE1bq^Hgh;LcpF|%al0)#0Kp!E}D?p-;5a|yf e*+(Fv!E_5GCkIrG51Ui~0000Eakt z5%+f1ey_s;BFFqgS6yIhx-?D9hg+fAEBP$L_C;M`Fe0 z9ga8(dQBG#^qTI$lIfV_ry%foJtxP#Bk!FST0VdF?021td1G;hfdc~zR`gH2amwX) zUti8TxAEG~hAsWuyiNq}TxLMV4zhW5Hcq*69YP%c0 zYiE^_^WnTU3$RU_h-@K8~nYZ&O4+qc)pSB_>*vaXS%|PoE7c|R_ved{Dr6D+WlrdJtw^l zRymv|uimHS);gVUNdFtlGTBkeiE)EiNA~#x>lq)kE`qANQr@6yvd)&-ae;Gg(={fy z^A3z(zbni+(a6AYr1yZi>0t())$fa+0Fx45YJ_K+uP=iZkj(+aAaE&oGKlhY^>bP0 Hl+XkKB}p4~ delta 709 zcmV;$0y_PY1>FUZB!6~#R9JLGWpiV4X>fFDZ*Bkpc$_82Jr08~3XBRM< zHJ^6oRqUsn9$3D$ zCIH~4-NoBS4}bo+e(Cyck&u%(df(jp^z!M-xI+GovocQ&52QXnM>W3%C6{-+Ov&X@ z&2QnNdUPeCyrDZQvphUtG>@@;IEQYo?zs8On>x1JbNGI896{7*jFed`sbY3%QRvlG z(HqmNt73L(QD`Mqcs={C1yKztA*)I z7RJFojDvklXR?s3Rs@m56*RNs5bR4N@!{1D)~>w(0Nj7l#Z)30YS<_Q&Fne>g-Q*^ z&SPxu&VK*^RJ)D&N(~?1HA0LVKGkjq%IrD;-@clvTr77ilqkHoO=em_}T(- z>>2PYP~9x9Jp*2Rt$?1m_6&IObqMywv}eFepgt8)sMPxP_s!iIsCFBLN-e5vV-aWq re)kNZYe{C;l1#Z+2J7!c6lcEx5+@D>7%TOD00000NkvXXu0mjf7*}77fuM*{8LVYU7I`lo#&8A!r2=k~D;Np>)wr;HVUoE^38AH(d<6P!J;! z395}`UaUX^8UB}Y``ovp#;8vk>O@6+J-_qrc|D%*JMVkWw|{*T?0I0kd(WTe_dLJz zoacPJ&mj^K2801&Ko}4PgaKhd7!U^jmkiYTdfm0ACE~IBPMj^9m(}l!;~K~Mo0dM} z8bad}w{%}6`&^UeyE-bh1N`|Ho&`WzcgOk{>B9Moi4kQ3W}$)c-KxUzy$Hy+Zit$e zUe?Y-cD>#feSh-(P!a`rM|<3Vk?LFCiLRgBUlt{9!_#}9Z!Gr;o&NnW{WA4rGI)Mt zj&7HV$@{fZi5i}Jlj?6A_r{->4ox)p?#ifd#~te4-KkfY9c8ESWMa^dafR-`^}Hzd^X3!n=*PGa{7eGg|MeLfK7V$JuK(6g#}{l*NU)8E^XSJo zjK{p$5EFmTLFV55se@HD)9}8XMExu zjpg2>u@gP?R%we`oz1HM@ND?6b=<=*sJG#S1R9MY;QZv3Vd^?Uw0xv32tSno?EOWJ zFKM=~m48lBu~=05x+ek&a27K7?^Swg`W^iZi%&+2R6FM7TPZqq=1A4Kpb~yAm(w;O z++i2z0T56PzLNkPJ00sAl`DU0M=zYeOsCF}X5UOa=)*hOiHfvw1(Ibvhp3ST9&L$2 zjwKDIBn_X(a2~*WwfIf~pp=sy!ra#hoDN+Rw|~^B;Xbd~fvo3T;0J{#LJ~$J1d(_U zatO)gE4Sz^0+~t3XAy!Ep?U2ps$adaY$zwc_TJGTpHd^hM)~sP5sD31LV4u5Y5C#v zB`W*g(b>OUZIfDw%X#2|lxFHD>YdJvozX*W^yF_gk zNFO9iT&Jw2Jnl_^{YlC!h(0JH?7}QBLVw6-F)sp858zT1zW<{xfU3;4RX=M?{y;jH zQD8d%^`&)5`HpRyRHbyE8b#)3aoc&6%IjC74seJ%f84A|Ks4-9pTk3#ua+$P3o)EO z`062D7eH-d(-&%ilyWRsUfGmILS}g!hH@|Ln;PzgfFVHF^?B*Atbn81b&Y!7T> zfz4T~kFj1k00YgsAl{i27y;p&5L%eflRd;FfcHG6*>;51D7^^)n4NX||9C?0H3&lP z>8pME|JkexX@%3m+pF-{rsRqYl7C%Xl8^5%g(l?8EntG1M<1WL=;w?!Nr+}&Co1LA}+n*k+!_#b^i(}BlV;k^vIhocTv;|B>NQe;5zT8)OV delta 641 zcmV-{0)G9)3y%em8Gi!+005o0f$RVP00DDSM?wIu&K&6g000DMK}|sb0I`n?{9y$E z001gbOjJdEWJsBMSPCv+07{ksE^7rmcBXhA)15Z|&RbYlQ@y>eIyf+DX=DHZ08!(< zN&o-=4s=pZQ~&?}|NsC0|NsC0|Nj6*z}(0H000SaNLh0L0Dlg|000ie0hKEb8vpGWauforY8O->=q6qfR(CSU?s{|d0I zwQ)SJLjQ4T56is6X`WXd*{y#992{q!S2-Vu$m0{d@n3+LvSf08PEmVL!3V*6Pr+ON z1mwiIJX4o)2Y-Mp0s%Kz9e|@4K)_60h;*NW_!L5*);|FF;kCF2M(}V_F6}>5eGI@O z+4}mz{(?HWvf-{REA^!Yt*_5@-*+A+ipax5t6fTDh+hF^M_V2HLrzCEakt z5%+f1Uhl&W636a)U07JQ>BmJ^nO&WsACrRwIGb3*!(&;^Wsd~Pu>5C|m0?*pxmm-* znp1C)n{}6x)fU-R-DLq+ZkP+{JiTcl zG5>Ab%AC_}*S=0aD?G_GWTUi)&&|KOm0hJ~)_FS*S;y`zomg6{Gu8ikeCj%1tz$;p zY{o%y&@&6qI}C){%G~4 z9)Y9W;wE?hK4G|Nd7A60gySZ1?Qb!pm(m6k;pr|Pd?Rjg~vtKECm>(%iY+W(fM z2)TB|bx(h~A@b=3UhO`u^DY+~TW4=fx4MzBd~1c*#oyO$Hbgg^ey7vC`uv}7uIWN4 zD_F|7H+=Y5FiRumAKRWO{HZ5ah~5B-efTJSkF93Cei_G-lclU;2mTdx1{FW=J2m^V zwdGc()d%XB?=Xk1>8x+&zFmE+VA1#B1%j~(3{3Y}_A&ZhyeN2ob=+=Xis4I*@J#dd ZWzYh$Ie-`hE(K2pQJ$`TF6*2UngF0r0o4Ei delta 460 zcmV;-0W<#j1m**fB!2;OQb$4nuFf3k0004?Nklro%EV_%GVYBII0WRtpF67I!X1u z(l>hqz{jpmt!$T^*K6Jl-%mg)cUSVL7Ivm1soY)Q`F|t3+HS0bZ5Z7$+0}N(N7rk< zT!H)qfgks^xPLL?XfCh$a@7P;6u^$9zq}7sI4>e1A|fIpA|fIpA|l@e)*7pXrR0DC zxVe7<+;xouYmEhMDLG(>!1z%dfMR_V*mhjU_x5Eaiclt{_5}&j8@#x5S$0RTcyAO4ik_k5s!%XB zAz%VG3ybvsSe~#X4$p;RYQ0_oDz9slH_y3u=ia${bEQvwe^4-I=KHhN`)A+Pz9+nJ zA_M0H9O%z?mbh=*s@a^rS?EYC{kT1?|L`mCjruu!qUHRrUrBtil9%t(L+ygu^rphR(mwutT|{tM!h zrl;IBW&a<2bn3zF`#voWTlIREYT$LHaP|ADlUGc*_BdBE>)+DGJ-2^k?d9C@O7W|z z=apwFUVQ&}9X@zmD7$LdZu&Xm2H*Kh&vmr-ev@5tUeI-hh8g?+6NkThzJGZjd;R~P zP3;@Ab-a|l^u6>YjwdD-@A%4R(8#xc=gecu3CHw2MOK$vYTv)N!B8cK?}M2Cx4&1s zU;4XG+L+5VLpx0Vfz_8w`vsg|B$#gtb<^cP*xP<` zk#An4=@UBl>;2zm*|`Q9946ii(i7hPS@vS3P@&$uSx+7^?|WdZSIpMnkRBEMsc>D~ zB;WnD0(zVZg&9DpM_W9ui^obV>ts4u@7HVn)A6QE+pEtvPx4g>B_$`UR-4uuXZw%en!l86 zd3yU?rI147C&3+T{}?TfNTyR27yb#lR=cHtDnm{r-UW| Dv`b3Y delta 469 zcmV;`0V@9X1@8lpB!2;OQb$4nuFf3k00050NklhO(*`i z&^s>k^81e@T3^z>kBeUbf&$oS%jB&*G}NV1BIFAmwSSRx5}duUEXjY+uV0RYt9D@bg9 zV(at;0H99v`08P3lVGHWwge>d70sB`V<9P#ul!o!W-_IRT+}OMzap@AFLF_@C8FP{ z-ySsM-1)CGZhv-%HugX1w}&yUMa7Y7dk>ga*5Ley9*BsDh=_=Yh=_=Yh)kvX%1gb0 zou8co00csJmb*4! zIW+~1nK?A3UBLN4FpKg0&Apq7nBE*)ONbhhuMH00000 LNkvXXu0mjf;D+AD diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/equipped-INNERCLOTHING-monkey.png index 01587136da77fb05d931839c129e8a0c34470c43..48d18d0eeb9aaae8849f4a5bff40affe548f9f30 100644 GIT binary patch delta 1603 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 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/equipped-INNERCLOTHING-reptilian.png new file mode 100644 index 0000000000000000000000000000000000000000..093b66f180ce29f9a5a5a2d22e4ad21ccbb8a18d GIT binary patch literal 1980 zcmV;t2SfOYP)SzZ(^fbXv)$M%g!jI%{D-q0B(bU-k z5)cK(qyBQiHkxg-XF^w|Nx$MvL4o=Ma3jEB)EOa|IPM!IP86_J&QJH}EN_)IwZFb?-umqS`%xxn{m<1a`6gU<|i31dC< zUGq|!xgm>YhUaK}!e`}V&rw?8W!kVcLWYwhFg~wy)$^hW!(>1&Z$TCLNN*ArB!EHg z+BG*isCMUgN^WkhjIiE}mEl0d0f`k11Oh4h zx8+!mR^LTK13%Gin@`5Yh-Ez57sBVUASF@!xE|1RVut!gCTQr4{j`MPVD{jPm&r5n zC7l_b40%8~Rqo=z7@$)_9{Sswpvem}@$6ghUNk-iWUr{9jwkwrt4E#!aD9JU4NZ); zOPMD4MzaH#1OQ0jb;&O!{8Vr<`bRSae9SaY1mEW+f_77U?H3^iV-Mf}h$}ooeN06w z?qnSv0Mez=p&#mKPo%_M0c*g8oKP4%JMYsDk5_llqtYg{tzn0@sX7=e%r2gF1k zzuF$a3UodFnSA`M%wJBm)ep)m>S%|8yiAfYHr7}*^5cL0MH3Ng{Cw?39st0~W}^P@ z#UD}n`cG3y@hVaOl^&50*IoDl8R^`ugLDk9*lv6TUC|8BBuK5=D?=-`!TIF7KnC(*-jP<6hbM7Il8q zO};xyuE0kf?YNJA=&!4TRt!)CTD<;M0K@?|=2him zwVN2I(>E4QtacrlZXcHcmjRanmjRanmjRanmjRanmw{`O0qxI5rib_Zu=RwZ<_TO4 z3i+5Gdl4w6+v3Iq03>+4T7H&RHs?vut3?7Ef3WFisYhmMr?EZS8zK@x6eJ=1bN(V# zwU)^pAZ(SfBHU*&uAGQO$Mtq% zMp%v@0J>&WbZhCMO~73CI)P#D2xEg1N8>o8T)($UV$X{0a1KPKMw#?~wmnP9NhlLT z1M-MWJvFj*?bZ^jO~A}>j}RCM84*QDo(*!oz?wlV+=M&5UBf5RS>i-Gl9-_iv~|^k z&<=t(K7LHP)Kj^y(urNa(B9`RN(6WV&I)m0l6rre9%>T3fB`IE^63zCflkm3g>}_| z(e?lcL%=yT)bgLR|Bq$H$Q(uXhIOD5?}K~*WTk)v6g7`Po>C7U)fR3<0M^Umjr-w~4U_00_YlSL6#|COAg`iY024?l?9cn81b(icZUP<#0cvrvOe~ zy+J!i5CV`7PTF O0000LT`3fQcPIJOD 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 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/icon.png index 50641b757b6320c59e0afcb6b4824008f72be5ff..a40fb644d1131df4ac3f0e336d56ed5f9e7319ee 100644 GIT binary patch delta 450 zcmV;z0X_cY1Kb0UB!2{RLP=Bz2nYy#2xN!=00DVPL_t(oM`K_Z1*0J_8UmvsFcd?; z*17UOvb)jwr1*)6SjC@q=l_4U*!BN`45j}pB8m(!OF=Y<4-yB-U!H4*;y6O)GZIn& zlLr|dzQBY5WZ8!sYZ(MIf*Jn2xsSpB^5z`F`HMS=HkarS;D6He0$T>M6l6Kb5g>r> z7#?Z`Zd0En{Lh*~ZWCOyCN4YG9wkLI6a=EWdyMK1pU0 zod#eQgA(BS(yt6mPYyC%z5WUs0$vP(-LQmtpQKPA$pIjfL8%^O*`GI>z!3NjPXn-A zL6Yr2#YAUALw$Eh@IylYIru>#0ty)rfT<(ZA*1R?LpxwJ1V%$(Gz3O&2mkQvd(} delta 458 zcmV;*0X6>I1LOmcB!2;OQb$4nuFf3k0004=Nkl1vFiEBY#l5}uL z!;+|WDI=&!+Jm4%te?;j)zA-UaA|3&B*g#F)RaX-OH_~+bcdu2E?kTBMxKUDXo-7< zhTuHg2QT0IelO>MLZMLnN4irR; zIA0JKy9uc<9bSbmPw)7$W4OUZ%$poeGJ_G?7B9g;%wmrD;0~E=nXb|YaOOFH=LX`5 zI7YRC@m$79W-yC60L)@5%ySu|TH!4|;n^G{8YrEW&~1%})iS+-Q)*KUF0c0(osHs; zRV0I9uB4wrA}-WX4nYhWE2q?~ zS1zyXj1FJnkKE&5kAiJUnFDAtVlzH20GhFBbo=(pFc6^`7-(Paluo2}N;N=FAI`)Q zBAusZHChcc@JH^^4mMj4^F(T;TmVhOJl;oR>C4RSghPN2C%K4uybqex@qolPG!t_I zpguH-Naw+}XvU_&wh-w&^`XfhI)y@^P$<0e3C0|k-^XKS)Bpeg07*qoM6N<$f-~II AhX4Qo diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/inhand-left.png index 46bc66d25f4719c5230b403b6af574bb323aba61..8e570165d061ae4ea0952c2ab945887698b8ecaf 100644 GIT binary patch literal 706 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#X#z`zvm>Eakt z5%+ectv9oyK-=+zr9#0iH#meu4X0`xbkkAk5ZEBVUEk0TH`Q#r5S_>C?x}imzs>W~ZTH{xTsx2{ z;(RN9u|?Ki*X@q!&mTQ2dwk^Rvv=P$O)R{ZuKAe$Z=UbvuV*)!&D&xh`){7;1u^fa zqeT~EY@8n?wqF#KyZAKe=F-0}o3_0&d-3MznT3%#4SLtDSKbg^nDlJ&y!gHq%dK<7 zf)~7e8ZTiLpELd2^6ry ztw?9kdKqBguzdEKhAAr>)~p1P9KL6kYfi7f@H8+vonz9!IZfI6s>=_b66%DMD! z4pTS71BRN{#T%FAoC!H_{JiXfIM(GVuWl~+d$s#u_PqHAA1+*(|1(@9K({`OMZ3BE z)^!cRt$J_$#reww7#MM)54?=kyYJZLFB3TbpUYg>rKrE;_nwz|y(xlmHJ;ng*Dhyx z`E6%J`iaxwrNv>pYTsEiTzXr4pD|&p$F}pe<(x(gC%^5~7ge}v_g$4CtTE*Go$~Vv zx1Q(S^LfL{sN1N&;J_)9J^R}@fk}@qHNrE^*Ox&H$mRfI5V#aP8AN%y`njxgN@xNA D9!D>l delta 591 zcmV-V07US{q#61Lba3g?C5aTt|In#ZOvsQWB!OrGaj3Kg4m71| zsc#2GC=@U4y?9)CKHGu(e0bjn5Bz};LI@#*5JCtcgb?CiO@HS$)VOEA^Zvy28gR6k zQR;9-?W`wNFBTsSIi1^3y;z)`^`ugVE9z)7bEDyP=efD%HQ@T|4?@LxdeK$vvl6Xr z0W0=ST}K~aS4upOzNb*Eal85xIGA{z8_ye%&ZM!L4Xmpgt!x3iQUbuP42Qp}VKp0k zPcQnC=f?8}RDTbun2y2cS2gZN_Gv%va(ueQ+|wlCM43==9@9C;0(w5=x$%4exveQa zzBuFF+b8s5aja$o^WqEr)T7ZefO+xBmpnI~4*&*3lY;KcecJVJ9G`ZWdw4=PaY^`f z5}dlPdE*#5LhST{0_dlfF`e_lfRP0K$oEakt z5%+fH#_Zrgkz@YO%QOs~J*GD;5j6}BbP|85;L6p?cl4nBg6`RqJ;dAjL&$h9$ z+QAFUTt4^zKe*v~TL;hphVAp;T)y?mbXKL|M9YUk&swZD-u>BIoU<w#0{eET($ z!cP6^(e2r7uIpF-`t9w8Lv@V(xgWlkPTc*^Hp^d1MmFE*w@#D(oWrwc9!{R0#B{c> zY}rYmY0MsZeji^x<@|o%cBv#!V%VvQbNeoK*}aQnt~h7czthy#@AX^h16LQiEc}?& zAN7*m{dj4beClzot7rUYp!>i1oyzLg zyN&1Xv8aFLyTkDA&f;Agy1bsQm?|~5)9gd*c|*H>Z~t6))3pbfj^19EMX6|KEZ4!I5|0{djq~qOUxA>Mb0D-5gpUXO@geCym CfF&^i diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/meta.json index 4983d761653..64b3e16a59b 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/capformaldress.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/30892aa892a2be846592b068ab71c606e2f0c5b7, monkey derivative made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/30892aa892a2be846592b068ab71c606e2f0c5b7, monkey derivative made by brainfood1183 (github) for ss14, resprite created by svarshiksatanist on discord & updated by sonicdc", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, + { + "name": "equipped-INNERCLOTHING-reptilian", + "directions": 4 + }, { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/equipped-INNERCLOTHING-monkey.png index f7e8abd58d4b14261df308e958f5193891a7ed13..cc74e54f8ea28ae67affdc7f3ea8dc6cbeaf47d2 100644 GIT binary patch delta 1595 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 KMNUMnLSTXvZ&)w@ delta 497 zcmV~ z0ypPCh@e4)K0*n81#wCI2F}h6;fJuzK_sUL3LFxbKnoqBDFu65^eXSv|LH;ZkLS1O zy?V!UFZbT^0z^baL_|bHL_`Dtm3>YyDbAoa%m1$)}`W%YWFiZIsu{mIZ~n{lr3D zP^gQUE&HkoR^BCZ7Q)H2Ok#1Eou=(V0AO~Sn8e};C)2)Yf-Ubt6V~OmHNg6z z*MO0${_3hR>LS={c$3^?!CnK#sQXF-Oz!(ky!0O)ocwB6w zRhoK}d`sKr4SzTl=NI@qJjEmyhcO&jpYx8sKixW>`xmy!>o@}IZq83P4{Vor={o?J z&DE@nKfCEyp5~2&Oi3I>rIJsH++E1S)sZ9)q7n(2zIgjD+BEOdN28KY$<6%-x-V~5 zZQtC%`SBhuuOEFi0>I{ZmyW>M$*%SN`E?Xh=_=Yh=_=EpxegSQ@U-8 zRjpi%%;~lao>rW30l}2yg>SME}hf5dAnc4WvKwg diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/meta.json index 0b57c04149c..04bf94de3a6 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/captain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "monkey derivative derived by brainfood1183 (github) for ss14 from tgstation at commit https://github.com/tgstation/tgstation/commit/dd97a0e45d904fffadd9d2caad22aedd0d09f3ab then edited by Skarletto (github). Other sprites taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 and edited by Skarletto (github)", + "copyright": "monkey derivative derived by brainfood1183 (github) for ss14 from tgstation at commit https://github.com/tgstation/tgstation/commit/dd97a0e45d904fffadd9d2caad22aedd0d09f3ab then edited by Skarletto (github). Other sprites taken from tgstation at https://github.com/tgstation/tgstation/pull/69842/commits/d8138946b0ed06fced522729ac8eaa0596864329 and edited by Skarletto (github), sprites inhand & monkey created by svarshiksatanist on discord", "size": { "x": 32, "y": 32 From 4fe3b7f5c4f39f4beb5ace13a12337d598b9d800 Mon Sep 17 00:00:00 2001 From: IanComradeBot <96892333+IanComradeBot@users.noreply.github.com> Date: Mon, 11 Nov 2024 00:36:19 +0000 Subject: [PATCH 039/171] Automatic changelog update --- Resources/Changelog/ChangelogSyndie.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/Resources/Changelog/ChangelogSyndie.yml b/Resources/Changelog/ChangelogSyndie.yml index 9d3157fe13c..b5a15e84ea0 100644 --- a/Resources/Changelog/ChangelogSyndie.yml +++ b/Resources/Changelog/ChangelogSyndie.yml @@ -1,14 +1,4 @@ Entries: -- author: Morty - changes: - - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0441\u043F\u0440\u0430\ - \u0439\u0442\u044B \u0448\u043B\u044E\u0437\u0430 \u0432\u0438\u0440\u0443\u0441\ - \u043E\u043B\u043E\u0433\u0438\u0438 \u0438 \u0442\u0435\u0445. \u0442\u0443\ - \u043D\u043D\u0435\u043B\u0435\u0439 (\u0441\u0442\u0435\u043A\u043B\u044F\u043D\ - \u043D\u044B\u0445)" - type: Tweak - id: 192 - time: '2022-07-23T09:49:22.0000000+00:00' - author: Morty changes: - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0441\u043F\u0440\u0430\ @@ -4514,3 +4504,15 @@ id: 691 time: '2024-11-10T23:08:13.0000000+00:00' url: https://github.com/space-syndicate/space-station-14/pull/2754 +- author: Zekins3366 + changes: + - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0441\u043F\u0440\u0430\ + \u0439\u0442\u044B \u0432\u0435\u0449\u0435\u0439 \u043A\u0430\u043F\u0438\u0442\ + \u0430\u043D\u0430 \u043D\u0430 \u0430\u043A\u0442\u0443\u0430\u043B\u044C\u043D\ + \u044B\u0435 \u0438\u0445 \u0440\u0435\u0441\u043F\u0440\u0430\u0439\u0442\u0430\ + \u043C \u0438 \u0440\u0435\u0441\u043F\u0440\u0430\u0439\u0442\u044B \u0432\ + \ \u0446\u0435\u043B\u043E\u043C." + type: Tweak + id: 692 + time: '2024-11-11T00:35:09.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2740 From 21979a7b5f4e1a2976440f2fdf1d7c150318931a Mon Sep 17 00:00:00 2001 From: leonidussaks <42278348+leonidussaks@users.noreply.github.com> Date: Mon, 11 Nov 2024 06:17:03 +0300 Subject: [PATCH 040/171] Fix vape use without check if doafter cancelled (#33245) vape small fix --- Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs index c3d41cead6d..26fa5ca3cc8 100644 --- a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs +++ b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs @@ -122,8 +122,7 @@ private void OnVapeInteraction(Entity entity, ref AfterInteractEv private void OnVapeDoAfter(Entity entity, ref VapeDoAfterEvent args) { - if (args.Handled - || args.Args.Target == null) + if (args.Cancelled || args.Handled || args.Args.Target == null) return; var environment = _atmos.GetContainingMixture(args.Args.Target.Value, true, true); From 197d9e68dcc3419ce45844ad64b95fecff680271 Mon Sep 17 00:00:00 2001 From: BramvanZijp <56019239+BramvanZijp@users.noreply.github.com> Date: Mon, 11 Nov 2024 04:22:03 +0100 Subject: [PATCH 041/171] HOTFIX: Fix Security Shell Gun being uncraftable. (#33247) * Sec Shell Gun Craftability Hotfix * Capital Fix --- Resources/Prototypes/Entities/Structures/Machines/lathe.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index b27f2cc1b98..020566ad1a7 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -768,6 +768,7 @@ - TargetHuman - TargetSyndicate - WeaponDisablerPractice + - WeaponFlareGunSecurity - WeaponLaserCarbinePractice - Zipties dynamicRecipes: From 436ca943b94f634278c8a41f6e250b8c0e16cd7c Mon Sep 17 00:00:00 2001 From: NotSoDamn <75203942+NotSoDana@users.noreply.github.com> Date: Mon, 11 Nov 2024 16:13:54 +0200 Subject: [PATCH 042/171] New lobby art (#2762) --- Resources/Prototypes/Corvax/lobbyscreens.yml | 4 ++++ .../Corvax/LobbyScreens/attributions.yml | 7 ++++++- .../Corvax/LobbyScreens/you-are-not-funny.png | Bin 0 -> 1746255 bytes .../LobbyScreens/you-are-not-funny.png.yml | 2 ++ 4 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/Corvax/LobbyScreens/you-are-not-funny.png create mode 100644 Resources/Textures/Corvax/LobbyScreens/you-are-not-funny.png.yml diff --git a/Resources/Prototypes/Corvax/lobbyscreens.yml b/Resources/Prototypes/Corvax/lobbyscreens.yml index 84450e280d9..9ea4942c466 100644 --- a/Resources/Prototypes/Corvax/lobbyscreens.yml +++ b/Resources/Prototypes/Corvax/lobbyscreens.yml @@ -197,3 +197,7 @@ - type: lobbyBackground id: EchoTeam background: /Textures/Corvax/LobbyScreens/echo-team.png + +- type: lobbyBackground + id: YouAreNotFunny + background: /Textures/Corvax/LobbyScreens/you-are-not-funny.png diff --git a/Resources/Textures/Corvax/LobbyScreens/attributions.yml b/Resources/Textures/Corvax/LobbyScreens/attributions.yml index 3f00828fda5..fffd58006cf 100644 --- a/Resources/Textures/Corvax/LobbyScreens/attributions.yml +++ b/Resources/Textures/Corvax/LobbyScreens/attributions.yml @@ -196,4 +196,9 @@ - files: ["echo-team.png"] license: "CC-BY-NC-SA-4.0" copyright: "ukrainianlad(852667075059253278) on discord" - source: "https://discord.com/channels/919301044784226385/1073603532898435183/1261290085287071914" \ No newline at end of file + source: "https://discord.com/channels/919301044784226385/1073603532898435183/1261290085287071914" + +- files: ["you-are-not-funny.png"] + license: "CC-BY-NC-SA-4.0" + copyright: "prazat911(984407438230945852) on discord" + source: "https://discord.com/channels/919301044784226385/1073603532898435183/1304517587178356909" diff --git a/Resources/Textures/Corvax/LobbyScreens/you-are-not-funny.png b/Resources/Textures/Corvax/LobbyScreens/you-are-not-funny.png new file mode 100644 index 0000000000000000000000000000000000000000..baa29db9b692227470d7136f97f6dc3528701c0f GIT binary patch literal 1746255 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

D{WaL_ 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 })J5rd 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

#z&|k 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 z

|(pLuY>%JzQjSg7clhF7y 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

    f~i{K4tdpZvs6 zweqwSspnQmKGb4KUZ$GX&SOf&(He6@lY=s8Uu`LVZEb{>@RvsfLVe1-mpDGW(yNUX zl$ZJ~-F#Uazs0G6@mfEV7crqJoZ-FZJ4I z9WSdx^~5``S$^(?z_GYwOhcl+^>SZcmI`N#q6hCiKqD9ztv7JFbTdFw>2{DkL}w@G5POyR2=Y&7-hjdwQB#UvMDKETo!I`$^7C2uj~so@lO`ASKUR2Jorcg^#q_`-u4X7+b`I4@nXz znV~8%#lNxxc`noucPv8HM{@GQarCvBc=kv8B(cUe|0Fm$_QqpN(l%_-R-`>9z-7#b z7CmHG+$_HhTk>GnSg@(J&Dd1mGREuynHKP|#l0Z=cLd1 z@r#zn1TYTt+E#N5%Yf1KHkcu#jVUuGsiPMC_-+Fc*=-{|iQD>GOWQ4JPDqAG!N$)KX~k8(t$c6VZica{Dl4T4HNq^0#zq z@LH?$rjy^4R{fh~-;N)zwr$wfZo&=1b`f_X^ggvkSz`f*x^$+R#k)GBt5CbSWv<(7 z$6oId(r7>fbw%deV1d?Q;5rj`;x*pZ&a{6PfIFdo(}mY|;_EKh!~IM2A@Fy)(C4Oo z5TGCLYkSGt*N^ayXdoVsZF96a?$fWrXDoh`Qt#^?{rg>D@91%u_EJ>`>`n?7aK37C z``CGcpzGF5d^sBX8-2d!sY7-TW@J_7dEi%?EP0SsyFGC=mNtA7R~HtZ%4%bBALV5? zrrQC;RhAsLFnke#J^ckb6CBTlQNidqQ3Sbn0`H9QjD_8vrUWY#>G%SzCQgP(*%vc1 z;fcNSS1+Ehg`$t*;~3#1byDY5q}{&b7Z+_+_$;DFmR4oidUzxr?D?toni70?xs(7$ zNY;T$lFV>}gHEV(i^bqCkY?k9BP4-7kS(YKV#HOH0lzn7Mz}#meMk?icU8bo&({ZF zY^@e&Ij!op^{8l7B81QUkrJ_$+hzEC_Q=iO>o(#>#lp>LTa2luO|-9|)b7)SH23X{ zthzHCcf<es(l3{MbE7U^R&4LjwNIoUXRFq0 zos8KYaj^pqK4dJU6i$`xpf@42Z80B&h0q{kt$yvatlx)Ft0K?XtBQRuY~vJk8)zK^ z)c|VRv_;!zO1ZYhh|bh#>Ch1pM#r-aw9qZ{6}`)DpZB$Z^f3f}xi-;TX;R){N#GtB z87E(A-!DH`cN4)-9KMdba<|#JY~zFeUvbWq;FV6akM)EMzX{QJ9i!2B$%l!Afks#Kf-X*-hr+;-3UE#V9XJ0&whQYyscE)7D*HnDC$fEM;f?W@x&6_s zHL!L8YVXJm^%Z4Bzd`MQ4N@N~H^;D&%_4B(5z^M4&w{HvZ9`!6FV|Tw{fbrTNe&x{ zLU5iveWq91KKB!+EGYb~p8oyukAG}k7Hb$c=seUbUiB-dT41|6{qFDn-swG!zxR0s zxpj>ra3pznG@h={6ZAJS}#7DicE2-yDcuH(tb8+;x$G2 z3cZl8FG>mUawWdX6V-Y0(mtu&*DqtPEslBK86(F}KC+jmma8om=lQY+uYu;;@DKjg zzjA-j7v4Vw!V}u;+r0Xj#a|8uV1Q4`ks~gao2JK7`C-a-1HS~fjJK%SU+M9?({8sh zW~qsxG#w9UiC$f+FCkn#(jqXi&=oxl*=GDJ=lHSRe9`Zyo3&c;Kexc*8ZdS;KU&ky{ zT!V9*=JnEO_7lYT^5lv3sb{bJd%(QXnUn=S6*QKZ57A~~MFWW)`W|NLXZBh8yAzAr z@OgrmC&PW5*CYH7r0<1kKpX(!k!v687^$W>DFPH|0Id}E{XXcZPU>@q7ic9%n}{Jf zLBm1S)s5|cX&bSi3`~|OnYa4X*X(J_k zBk>!vwn6iSgWv5_jOa(nPOv1%zY;NxeQXkEn~sX~7$YR^SjDcNVzn$| zgnLH8Kn{O$ypS}<)uLg;*xJ%6QtA|{gslt^>)AbEEG?v^KO|Uj$#I)HY4ciSp)lTQ zXX2BE+tEhtBb^@H%NI6mP4cha@aBW+LwiH4k;WUfB~FQ!)=)LB>0u&1>9m{Q@@9X_ zK1a8|(s9@EQ^kE+eJ-N=0Yhn-wsIht(lI?WL_rz-2f_PtzM`Yvv4H*W{VhO_OZB>C zu;$3Zr-YKg(|h6Cu>=DlRkIHyD2yeN0UWdTEhMbPAL{VD>3~uvmHoykNs9*Anju5r z*kYxk8>F?Wa*)wy(F-%!*+K!WMyE1L#n=G>4Uca^Wj)=^Y=iXbzDzZp1?mZb1`?2RNU-*xia>aIG+<+LRJ#Zqs#(QfV8l35CG@8|S!9iqr?hZs1mtGtT= zRaN}_hq5<2UN%3@0+U4|OF`KjZ<^yeJy zyF^)|y|(K=l=iP}elz7Bqqjlx`N3@jZz*#b@3=oN^?n}*<_vU82i`$3`lI9GJ>Q!* z>F7R+$FY8s78|SQudW~EJ-2On@zLLeETFnix|sb{=F7!BEaJz8DnuVouH83Z>eL@l$PWKsf zWzeXBE|z;bvWT@~gHpnyeoX;UCHJ&&JkC@LqzMU9#IzlpLD?5ZpL!r?44D?y5~qUk z%f6yHt+o8#+N{S?+AyhasZ?<@`dWS!b4PlY!*K)hCb&DdF7S@*U$D{$t&-lzHY(|@ zm2v?pL&!jln(^18n%6qIlKzzUGldV#vAeFI! z-`ulYzGaSO9?JMEmxgHOsA`SiJwM}GxtIM_IK_)%`7sT>{(FJ=cWTzHLSJ4Y`d?w`xRcqfu?; zvQ^rpTm@b^s$VkH;%_dvviN(Yr#gP}M<35%t&VL#n*lMXW^*n81)Cwa;P?6W5%^{! zup5uhw9v+40T=e3>&Y`-x64@0Igv)O==^>9o8M|>xG&~)6S5C+;rX6^zmE?K!1sUn z$5P9}1XG-@J!-D0{mzi=9ZBpT$W*QNBGp7+rikoF2qLS`Xa=OUZZ<+o8p6;}K);C1 zQ$GEOZnGAop=%3^gOSaCzmZ=nJGWNWuyx?aDwi_SJFtBa27e%*!`wi@f{zd76AM5~ z9+H|CHBtxYlVyYq_oPUY)Y8OrxvA_ zfr~3Xt}BmQY*Em^{!^3n4T zwUEJbCaGgbO$a_OBtK7~byIr;b^ToaGUr_OoI<<2uzAM9@(#QD(DCSCv$&={ClQ0S zKc78)bh`ggZw%4fzr4U%I(Ky*VOiCAg|-*Nq{%|=y?Z+6xYB|Qxb8pojTVLPztjy4 zT5x_&tg)p(ej}If<19ozd!eU;nWu#ZpT2RQBFp!8ozPfESoTu=ggacH;Pw1|qPG;{ zPsXif0e|9Cgi?<^`T>lz9ok(z7(mP^ zXCw(^6pVly^<=mDQg)H0|Lm6h!U*h^58;^bvWYR*St)hvp>9~59D*Z=BLixD0EpY z)_CB}d9=yCfvd9cJqMWz7k*-#K89h(aklys5#+F@SnJOVo`}NIA2B7-zPWgf4l?>H zJ~**ymSuh8hSXnZpk(}rC)Jj-m!+3DM>mkfh&HDmh~0DTuMd17k$wUNe%hG;h-`PY zflTa;Avv|#xYZveXbf8g2OVv?O@@FJMXO|tSx{{hzId2~o*OJOCh)7DcJB59&^n11 z;7V=-1v_ud_|g;*)(9c1gd1!7O=MFzyZWHUeXILY!bWcOHYPUgt_+M64!kQ#tVV`y zd}vRmt%g0y$5?MQ3vDW*ltUup%O08ijO6ixs^V4}Be%ferX>%Vwir-0*zFMvIvwoSASG|xyazd&t@;%i`yv9*Ygp}vu?itQ}IOYunjh~`~YjAXF92;*Vd3zZT z>7#+&JNwy~zcenOp9$aIk+&#$7Psw=or$EIg&!)rHLu;Aw;zk6F1r-MmfbfS`758~ zauTKqkM?r0ikZ(}0+h4piXz_=%t9-IqKimdwRvG#P7AZBnxh3Lp%xx;F8G^@O6VH^ zoM;-ZOn{8>nBe4(FCRh_s2Vqxm^M&iafM3zjeOo9c-~obnI9GjIOqNZ^_a7wA8Vq` ze(X$}%O@Mt`kV)Xd07YOU|R<9)g`w^gzCH1!|284b@=uh2nsi(GZ_(ZFLdo?s!)#A z=_>Wxr85h+Q@cs39l9uYTe}Bx)wte$sIKN1l8<#9{qTh@jw(L)b;0c8_w*EF9WKXl z^vpM*7~7k{^+iW7l+;)grjM6H;`_q)5%`88z*yAhg`TW@{OHl?*=LX92y~UkJfxk4 z1p`v{8+5cFQ40WOFvcarq8f_^_qCWoy7$qCdIj{K>!~(f?Dp$JCC9(^r=I@Hn&sDx z+(>GFqyWh`5Ly}bvXA3uG&bAdOLFK>cDE<{?xa&1_NfT?47&)EPQ&U5W=B!%)Qy?a z&AF7@Hz4(ipO++|pBaq9HoNk$Z{l@e7kSpc1_D1v+*~Orbd*{(7pv*78iPFPq<<)U zkI`C2u5By-^{@X<3%-y1d(%LE_W9?hzy0O^r;Ft*P+^dZY}-X$d`4EwcFWVh_>k{$EO8LkUebeeDaFzO7ehGl#uDd0)nD$A z2|i8DQn-5kJ+EV~8(Nsh7+{VwbCMi<_T*DNC9E3{s2YD_FsCw3_&&{|E@m0)+;sC? zuPNs#T3$)qn#i)qk^FK;1q(asCy?VWIj*p= zL&mZJcY5g9pZLTta2+QIIX@_$RZqLn7n=0_mIn6+JjpRuVYc_w@zvnyNzUy?2JuL% zL@gN3k)>kAKO~E?D*@B2=AhGrdYnLKhNoi-4(i5x;cKPZ{AV&hDy-hv+ z&$xGl#Prg;o#>WFWBLW6uvVZ@yl-IxKkT#HSvUe9%(?I*uLJxE1PbEv2mla-l}!e7ka0 zCVr6KcoOK?83CUyylCpk535ZEt#uTPeG%!5kvRvPy&ns--LTum^t%&-ccUfa9OQyK*(WYAUyFZg8GI|5ALe$RMvz-?4~ILvWJ0IH#iThL6c$s_X^y z_6u{UpijQ2Q#m7*0Ifu2{ir$<49m7}$eLIPv))QEy-Kw_t#6#rV!168f*T@Ef-#u0 zNv&HH#j!=(hg;_j)e6%{D0_a%4KWwADFJFyeN@CuzYn- z#XJdYQmZC!fJW;&d6&&YS23n@_4$7Bw}SG0_Kin?Vaij!&-7&Flg~ca>o4_MLyc8m zsAk_|+;Txra_oJ*NB#ES{k8P;B+s}gn_U74&RHMm$=}>Rsr~3DKR$i*U;JZTEY%(b z0CT+e10k|YU`BtY*-G|Q%y+_1@0Q-NN?v>?F}Tsa#5K?9}IJ& zP&Uf7^ix&DVm|kuwY=Q|e%xx8X?g_Ox>STtVZIMW1t<(qJJ)-+%9UF;uDu@o^@;{+~Sl z^z`6^Klgbo=d$qgO7X;(-3APv_T#Bw&JCVC{qpq1qd$1D_r6|5+~;B_-`5ks_68{7 zadE#FKkw?*%~^EOxr^p;Zr08#WFIKkD`k1L^B8Ed$3mMHeC?C^l=MQcwZ4C!*Q9gX z1j|IC(-h`+*~(%r#|6er7L@(OHw&7?DNU45#0^Zzsi(atD4af5#xCXT6Iqbiwo<-##dz`_iG)7<;bT-BG*#Rx7D(tvjbWaYhUx`z5b!%YrE&2; zTF4V=5%l5a68o##i>LArK_#pr(u=`d8!?7#x;+EX3c{jg8o{J^U0- zbR|i%JO}6IExQsp@!SB9TfcrA4E}_n4OVBOF6C|ua`wYx1HZVjpk@Ma)gNw>w)BJb zL`KVt^M#c@f)0n|o>0zs?J{v-!8tcCK+jXp<&Wz4+ZgWO((V3@WhCT_%`l?qBkYQ< zlN(@iW`qDq`07iy3p~c3sG?{aYh!U#ZJrC}>~r*j{7w*bqZ9ilb*{Z>VcGj>FerOm zVN!i%D(!J!LrQGG^MbnlA~unY4;acAvCR&r(dY~Dq0z`ny`QEE(<8?*v6NLZ=B)~V z^eIb7ZLB0h7W%16iGK?%CJopM=@xFZ+(=Y`pP{-vhAZkMWvnfIzu( zh*xkR7O91Ag}85Sd)sqvgKfQT>T0tkI-fGHQ`)!XI*eD5y$s#|=d$jjqjB0YuRGse9zB;iZz~3w*EK$C3h23{?R8sSUx%;=`}Pm4QuaB- za?mgzz2YBdJr`Xsb*%ep)T6$=2?3p@Nfy^PDp5Ho;Jb?c5~t!_op8U<$sg<-%oGxp z6M{M&toG`(Q+hB(mxX*8uwt;qiD3?RIw`M{U}QOMa5+S1;!8ZK_q>hsFHsjVB343gWb zw3)>;s!eX>JzV&EsRd-O*rLikj+Hm5v2Ay38h|{K83H{5FLefxh0%WZpa|AFE+qtZi&d)CYEYJyCKc& z({dT2VQ66|@m>{h7&2R~}FBS5%0= zFKJg@IB&j4U$2py7VQ13b_p`=P)_J0Rk5vFi>^6sDpixI^CCc~9L?`&a^@-EKhhJx zFMU@P9br*#mSPb>&?o;srt9jBdA;!47lx3TSm#KS7f6Hj=1jZ^fbLWCir&>DQAC=* zhxrcF*Crn|bLDp^_O$On7}5mh7A{!oiN5}gU(WFSq?a1azT|UJNqas+mO-mm9X|Q| zvy-k;sz!7YNzQkfr}&*pemk3S|KP`eeEQ&L|FK1kC+X*97ge+;MDMSr)_$DDjv>SO zB<8>;9h~bzW)5)LbTY&Zq2|;UE`LguY@^X)TZpMNgnK3pP^&@Rt1hMvi`@?E9V$a? z3nk!5aD{9BN;@vMBf$qz(8*(mthf33zcw49@YnkjnOw_Xi;l8x34SKqdjGv_#mtNrM`Fao8SB{GYb+= zbaM!wfB7%|&(qI;@$-5maTYmPeE3qo6MkRu*RrGjx+U}{vkD(Q2^xo0d-XJ0goC5< z>Nw{bw7tfyTVLR^)8nI~2gg074)ub!`#G_TOe9`Bd!%vr%&!lo&v^=+k%&$fv=|W5 z@chM?ynA}@y$?O^Eu+Oc7JjbuM6iFG7kkXV`an00zS4)+F0<&{uYhJhfR9~|OMLWT zS6`_}kM%;-J>k>HdiY*N^^(VOWOSQ^W%+GqY{Sc#){Q-~bN}8$`@`=d`)Pdtj&K$o zecb|iHPqKOcz~8Ti^gwB`}zX>iiravKEHt)f3d~Fuj1(WK@v}eKqCkqSVq)gKy5Wu zc+YiwV)2W4q4^Sy3N(#%{P41yuvoAI3!C_)mX{5wR6LNutQVuDjXZOWk(BH1Ce?LK zq!tG65G(aiGowEJYC*547J* z3|f&KTm!3^xG~P$7PZUmwGy^Tptqc(fOT`mn9$zbG&?O7KWV5K&@YT_P~1nV6VKpE zj+nS6ZiDbpvrkXLDjy{^n>Z*Vw1ID$J3zV&@SeDJ13&Xt{0H0lfZKyB}2{+ zZz%UoKWaH6)uNWe&$N&65Jvd4t^eYajtO!Isr0c*rIQhYZ*ipiQvgb#N!ak&tYs+F zk!x9K+XN?Cd)<;_e=Z69c2cHjg>JQ?H`BQo4LR7QQ?WuUtP*H8ibXP1*}^9KE>)nt zA1XE-myXl0+x7!uz0roIm2ic4P#X*Ew$n6(_BOjd0B%)CBWcs#)fs?IAZ~@4=#(D7 z6o-M1fCxqFAv$fYW;V(zqsqj;$+0s(*YT?nk3RomnQP8vznhfNd1_ww7kSgy@}&s0Z0DEczNf!C5vaYXyIhWCKhAu& z`Z@N&CaRmiO+7v5qcp%xu6F<62Opk3{J{rm(4EsKpZwwUSl`=Pe$4lyvDNS;W*ri8 z%S&WsU!J8_DYSbbodJsu(Tb`g-U`2MwRA=_C`be0Pv)@z>`Fatm6Y z)ZwKAg04Rtz5%HNkcyPtY|b`qAcuH3&}|Z)aD6UsiZvv{iQN*!QB=Y9@SrdR6t_!A z8M?W15ZjTpXLa%o2FZ6F-Qn9BCvfZ>c@mh@U3+OUd@8?CT9a_NyIyZ`8xp9LN&97S z5pvR9@mXY$Zuu2D<=C|c2wiYvU^t%Fh!sF}vrSCfF)+;7Rv8?b3RW1WYpa`P!5JR3 zUgZ(a$k@n*alW-JVpoNMyaKM}K7nYc=CywOcC9xO89Q=|+s;yHxU;-v0PFIZ&^tzW z%YGh(f&sT1n5al#@9Dv5zlqY=>JWV?!LvnMyBGkeEY9+^&=wa#^&2d^#+H?T8Pod=~D;d01g9LVIMW(h9Eg9=JyJ>B!6`H>Yw`jBW zhW7lHD+tdw(&-!fR`zJWW3%B@1BxM*b@y9fYG-<%7facIy z8CBl%VyUUq?och#C0zTUjq@}0)>`qqJS=PqgKI#sI^Rg$qO$BGIf6BEd}_~fJe+v0 z)35sQ+ljz1HaMqcarT+MXZ`B$es%iA-~2)gzfb*}zWl~63m=ca{POhkpa0eAPk#C% z%Q7|@CmEx6PCxp|k4_KnKREqQ|MZ_K&+ksQW$f|#XPy8ic|2<4<0?UrePrlhd^bI! zmbbrPXnw9Qh?b|-%q2NSThtfIjUQO!q2>gm%MLzOP*!@$9%M)oG;0XUi_Vbz(Uu*l zYKgU~!=6>scE~toMQtdet__QB&vbLh6TRyFDX)mv;_ow+|JA?vKTe;0`lCN(-Pt>MBaxZ{v6&ywa z$YNI(WV1-+YXrnri*;E*i52$^MfD-SU43<>F(lom&$!tE9L9Bi-xskw4an2SdWuxz zSOZSxSWIHykgRaL;Nv{~=mlGerj_J*I^MmPiwqtE_Cgxo(IGqLSJgJHgN%52Q zUPnSccww4_SY6lXusHWd3%mLW0DQz>-vrc1GKp`A5hX3#(H^%=G4MVK-Ik<}f?%S=9)~!jB3S6qy7#z@#BwumX7$$A@mzcNaF{KoGgy9zmRAP{pE#K$x(yPy@=G% zbbHIcrVt-IlY5CHQq@M0-JYD60)ch?F%Oi_U>i$3-+(HcTs!hYe)(Av#+8S`w+&(W z+7@qR=%>#mO0EAt7Ij=5#NqVtSRs1LQ{>0*Dnj2p@ zZh&I^!ZxOb66*qR#)duz6)p5=<488An=kZ61b%;eO~i=go?-CGhHtoVkKkpmDqD^C6~6mvs&7h#g@}{u+H}2%5^#^;t7SZ^loG;xU~GEK{B9nVu}=e2`_-U{ zKWNs>#^#p#z8IbMAzZsz_$`mzp{>=y7Cy_{3+%k9R9Fey0PP4?w+;HXu==r9R#CXG{4%oD6}AM(#^z*u3sg>&g-Z#zBhEdYxO&p5R@*CbeRPiX+hW5U%Ycd~x z_@TbjJ=OQ;&@zv^h4Fe6RX|yvo=3NHel-$#8%dn1Sj<5&gOS!$dszamH{jW#Sl@9BwMbFevNgSb#1!j_bubG7qh)R zadlvC&k7RA{?n3;fOPlJ7)J~?r;=*nq7FIgJ9BGwEhB2wCaOZwG?*i8DU0}l{0@Pg zQtHf4ptu?AhanFOOk%wcn%G9Bgh~KSf{RQ>0$a#KeM2j^8g|2zhW*(SO)o{2J?|ME zdFVlN%Y0El_53F;J5Wno4-jd|9&u^sW4`7w3qw)chT+uFK1y)?u@BkHnV3)9ry;MJ;a5ULjzq(W z&M232^ew+r$OTW%&9;lcD}Ez`u+ke5{t>KX zMor&b76{Qa`TF9kV)w;opPZgQsk=t|xPu_qdUe6~t`_uOym;#0{C)7Vzc}4}pr=;? zq;pB}%$F?V1A2wgJ`pk%%<`!*6^P0tOR*Q)e7$-Ai%~X^9jSC(FMg|ZZqQY3ElcqX zR(vxV;*0ne*S@Ge=ey5e|Mf3Uzx?Gdwcx0yPW9n8eHlAktok?q_Aj+C zsiz}#Qvm>A_z7Ma!qg8Qe&Bukpa1j!?etIn$^UTr`#<}KqE9F8af5=#R%pHd+XcXs z{HjzvcW#+#uyz<1Q28+gxU9LFAlI&v1x{4o*e_lYNwYpz>#e3;*P?Xwr5XqL}KHC|=U$3geIdQ13>Vz()d)p0@nFF(`} z$E5w>#&B%&JH}p^mYwJK`geL0kHmrnW%h0P=k^PR9Z)_I0qAPHO=Dl#LoUY;R z5{ZE_M@{<@-?hCXqfS}pZSs*fwJOa1q@%gHexLr7pyq0w_&g-o~N;qApR`Od2Z-yDLANjV0|nCtAA)KzF{Hz zQ|f-=mvL3p$hk_3d;`9`u#FeGnV+~MDd*oA`qG3Yf3S~^Htr|d(FtEOJ|->W7G?0r z8TU2z?DLehO>K~)9o{FTfxTYvwlp>c)&2UCS9jwV{U{#CUHgbpr7Y4WCSYg(QQdB( zee~;dAF$C#6p1Oi=&(3!KiK!G{U9bO9`+}8O=VNGDylA9@-brw`@+RnZE|f7|LI+1 zl(~$B#DkoYgxE3&Fi{Df_mtEfBXMPeV-oGKJ|uN!o{BD9WQ_y@$>^prB>YA}YQmw- zk(RG6m8>w(Ezc$nzDh4XM>hQ`994;>&8yVb+28Qn41BNo)!OM?v0^E6t8|ga0aCe? zN^eE9Oba!=^BsLxt;R{X8EvHNjYD2EiDbW-B)Di=VnC?oU^D?KQtIv{i4cvJtm5H$Dw7+}$&Gq)B z_sN?zzD|jbM(5aGqpz?9dU=) zeyzG|xy6UyO;~c|uikt3Pdi*AZkvm5{SDxanEa&b+BunI1yuEmwKJdaAMe} z?wd$R-zP2Pd>OC<+2Wib2CZuqN=_<=!_lD{Jvfu*gM9;v&Y!C~0p)&dM1B5<{`kV7 z6JnM9N{^Df`~0 zOb&wOVg<2IeITPA?2;M2P)C9JJc|8A3!QyJdLXD!DyDW@$w3-!w88*Gaa3Nb&~Y-1 zHm(=uYHl^-`E6zHEyHUp6Z(tSe2E#U#RQTKIv$xa@PPWJxZnPUZ}CS%BFYPfu#n78oQ!`JCH{KT~$V4QiZxr z8wIhp$g9s=z0}&1#RD^%zSjwQw&yxXZ|x8HCKKxgbkA=wL^yxom4GeJr7mua+xmt^ zOQ5w+*YU68?Qz~tz2|}C__J+|DJ({59K6tC7^kc+c$%!ng?9l?OBDjoqRM@7n=z@l zJpS?zHC9#cvBU*UF2eKC7Yz2JE8S)K$N%krT?-Bpm55J~kr7Tu*#4{+stVTUX%g~o zfwb&f)_j#^+jX}vn|5a*%_0U-Q0~}JU;LnUmSVQmrakLQntboX8OXWVnc5lQ0AwNA zyf(AF)iBE}UA!c366feV(+wf->+58eP^KOHVc{2_^pfI@OKqO;zj{J@ zwB*+6!{?obFO;jFy+}i@zcX1otc`;1aH~z}hXxC8#*iDQb-eM~=@(v{y04qa{F}e! zyJM|*vw-^K@$YRDnFkMavl;U(37SC z!5{5Fhy6mCgoUG5I6u}Hq8;61u`j+yhD6=I#EV5dE>QKWnUUSZxhmd=V?=(twYCRI z9_WML&>^d@h-2N*k%efrPi*jAFhttXeb1|d-DogbB=uyY;}^23I~J5yh0tCSdfJe4z&u zqo|nI1HsRXyX=T9T?(mU#R~g?4oxG2WRa6(uPOAA^YLgO2-)vgkZr zZa!@7&m0gD9UIArqa%kj#ptcVpUCs%g54I4qojF;z&sdNo_8njVu*JHpE70-L9{B z6kB4%eQ85W&;7HFY}>jTukcGX$gNAQV*qZ`DR*jqcj@w<$iY^HxH{Il#M>)@U5H zvuQWU-PEeRKJ_D7+Y8>lPj0gEJ^$ti^te76>nrVMq&FqOIN0_($mf*UYyVT5+a67O zJ-123&|9kY_R>v%wfwjR!SD_L{w^yYIOgNaf!S^Bw*o#ImJyC~tG!inEx%d|UQfD@ zE9crsyf0P8{ua5VfX4d;6&^ua-uSXh0t=j}fE&Umxh{4%XI$@#$CD}-C| zYLybI43pMZA?9;QseO5@i$vr~0QB~RyyaZdAfi9?JdAsUa}3)oxiOZAlK&Sk8mPlUf9+_g zW?yPCa_Atf>4>)Sze*Ww$4U+2OlqI(OEoR$bCO~a&H<2)&S#AQsbT?-^5@U=>Sr$W zVFM|HA+4lNc)*23eYwE?gFpZC(+~d3f9!<=*hulDpyx}UU`m;Pu3{<$Q*w@NVN>SA z#ZS&rg-aj0RrrfoDds%bP~HS}){!+0y)~h~OHHz*DqSbHI*cMVuTfoZB6%^IgsGOL zJW>lBGKZ84H;Xiw#1USqTcm9bvBn-MqcCNC0bTS1R?OL^Hv3qkA+o=CYMglySFqsl zL5&5nk3ah8^!tDRJ1=H2W_bGaZ~o?QPQUrhZzQKbjUS%C{oxOPeER6)kM&!m_fGd8 zzNaTAul!rVkH2_ydaPGmJ$(4SpB84(%fm$myr6_F%G!*1MFWYk#K$rWGJM4`ipXl@ zy|}CK&px6rdV1C_Ol|Ey4N&slB0_8eBy926hsI)nWxW?!XWhh)G8}C|NPCj(Pv$=` zqYWQFoh;l6HlD8s_B8%RP}>r7))-XyZmUHP_mj&1`#<|<{>`XfK*2swV-t^$^|J}} zOO_Z_@GahB@vIn%mD9qDK20(@#i> z#`MQn;`qZtE>F?=30=#JuXqwX@L9Bds(s-8gNIsRyYfX_`h-sRYxjlE?*QN7Nl#(X zA6WI6XWsNU5SZklHLl-)Q9g4~h?Qy9_Q(5yu6?8}Y6-r|mtGvBJ-$ZZ8^&d} z5_A^-o<3nQnngN}z3f-nUvk_fI*BMQ(zYJEyi)wd3tn~1E0L=Wk^v{NbR}y~+Aq=! z(d4V+5dv%y001BWNkl`{RakHYoEWE^ z*BCpx;-(i9UY#TQB(?R}=ap1_p>slB0UbHfxR#{8_xB3fWE>bvarL4+e(3s;*QM>5 zWN4ZjNv<{utglTOkGP0VKRMwy2FIeSLFFT3E@kE~lE(+6igo-$H@3R3Suo5Ko>oiL z7M~m|;q$-%$Si#O)yryo`|h~PFE93%ugr^nBAT`eFQ)_aN#-?vhuZzZ08$D0;oH!u zn83GnWRUN8$s_wJTK5Ga`q&raM8$FG#dZLc@WyShI$E5AFqSC;jZ>sJr=CbLL~W4^ z?}eV6*U?LMMYFnEDprP1;i1R;!GVs{zI&{cE%yiQ)t~!0vfSXP->{QX-2_p-%?BUg z(VoUv-Q%ZQgTeL}R{DYdAf!DvA!Qt4c|58Sm~z|Q*0~=s4&8miK&In`CtxtHXajVA zM3bZK6`|v6uM)OuOULDa3W#J+@+mI5PlZMXqSV+v|`NJ9$Ewm}KFRlD(d6q7D zuu7~lm;J@ExF{Y7HQoVhaT#t)LcU%)ijijw)-)9I2B%2Q&M|xZwv-XaW-GtiIJemd z$$$U*Pqc4jzRbD8mjCUjb)RhGaC_hPdi#1Kr60S`_kGe*-{-fFz#OaHhtUmv?FWu4 z+ViRl*7EJGy{;riS6^xd5PAB4J@!_6%62>4ELD)}V+>Z-xp8XUzSLN5!GW{C|NW;Y zJ~yRR)xLUDT75tkt;ytW8~IJ(Upv3O+#5dfR6ke4=>-Gt4tK*@raDFq_u`~z36Khf z?TObXeh!7hFyMU>EKDhB8y%~v%pI2nGft8$gRHH^2h@ft9Mw5Vber-uBFzh)g&SCS z$a!#ZqGmxn$w};;E9vM9JSSE>?ZFA@GyM(`zgcwB#cWRCbmk|3I;k7DajoENl2gDQ z#IXaHQhRD?Z=m)L4uLvf09qQ2e27Jt8)@cZZBnE+q@|LR$g!})VD>*2C?pD^!nh2@4A7xiy=^k%lPm~G3&#GZ-j1_wWYDAH~-D&_HEhWR@?YIl4M@`w|b?afA>>PK<(`q ze*lt{KhXj}<8>UuQ%qiHapAdMx2SW(ds>Y9;J^8=PIr0TE~*MHQOiOSwwS~StKu)8 z>=$)}Rd-*oAK?!^OPtJG`2MSltgf4x4T9iYNY}8e5j#;ngThBxi;$=26?Ea@2ds>k zVD@$=*5qKXc$4GO(zOd`MQd__Y&yMp$9bC_Xrr)|U-#*>5B^TLx~Db6jWqr0r+>BB zVl^>6FN)5H`S8OZoId~j^V6e8pKBra@#)vU{_W{^zx~bW&;C?56==ctqmMp5@s=i@ zl)SIs`MsxwU&<`r@C4&S@wmA4lb`%l3&p%*mIX5*-`B{&1$}(%=7~V+O8D1LMD$a; zgCQ9&g6TUD7ycRJetORWyDqCRfIE-VnFqSwHcNeEe8mE7#J8}LX=`6O7l<6&#vFR3 zv$Y|jl#uP?Q14VF4wRB=3}`z~6<>JTS+C;OQ^0@qmw%ZB#-g(@Z(k+zkVOq+7)7qS zM|~X2EhELeRYpSvdNDZ=7rC#?pe-|=7f^7^=HuU}+F!M~0{`^!Z%+^2{}X+6mITKd z#{<>0jYUu|KB?-3R`q?qfuvu}j0fN|d%CPSF^fH_%MM7~5c5Kdwiz?pulT-hj#a#& zO>S4|Kx|C=rJH)#U;MkpvcaO~JzZPK6RMn_<~jpSsg)et%hLo};1n4hH=TJ~a`DrK zM9*Y^O`q$kt#^5P9yu01xy~XG?Jp%00_}Ej`uwsM_U_pUwMsra zLgM*JePF8n(3yJX0t+Ko7KktS`A`2C1)CPJX+cWFkrSrMqSWyx6Ur`6mZMbSc{_&@9Ksi_vaR+YBpMIj=DX{Ys2YqLSmRN`_`k30ZTY z88(5AJY>#9UNztN#n{lF6Sl?ovD^etfWg09ECYsUY3hgoPX$ z$S?+ltyo&YwnZmdhFl-%dk$}wh}kb-hv*nu77D&*)=CW@0A(Cl$iNvl#7*&FjL=4> zsY^B3Afa3Ok~Q61@KaBm+D6$`bz<9qQ6n``!5-&Ih~XFZ_$O{$*P|>UYNQcz`7x4+ zctdMDq2bmi*e2r>67gJPz{ab+#G|;jRsF%kE{UVKR*ntg3MaLA7oQc&icRC#IGYfZ z;Vlhif=njV;M?C5l{^~hIRm+`k_Qr0GbmCHsc*k8(ghVzZKL2$)l zh)N++@u>Ye*SL;yomTTYKlTYP=;P+L^t9TXNpb01u*kDz?9!k+I82UCM|k1IlPT32 zrFf9hS1n&-@j$9cE!*`m0+_>#crG)gQ#$u*uhUp*x3sJ>sYNi{KpO?*sGQ5k&PoSj zDEcQ=wtDd2wY2yD$iHrXx2OtF#znXNS!u6>`5%r>k9QxAmS%gZb{IRR3v*LU ztmk;%@4K3n1i?I<dYxA2R(mgyY9g}v2#Cu*yw)1fPWDUs_u4Z*8^bY)Aqg!Li7b^arIg+>R5 z1fG)<J=5 zCvvBcXapo@Ocq3S{Qc84O_<==#pPm3MY0;%i}DR zjck$L<%}37r7f@K>#F-|nr~9t<52F~n|5h2knyI`xb$7?EMh5M2*Vz>#a4R5H_i1X z_D(YlN~#5m)>ZcX_IXSM9?*;6oFGDM<$Y;_)`Z< z>xX9dS9V=9a}>B3Ir?R)&XU~)+l5KLsU-0mH4p%Lg{OR&rqDLlE!<$!>MXTP@<>iR zO1@C7m@{uY(S=E_iM^-KGd;zT#POLnrH>k$Ik=HL=LEcTwi$BQrCz+pW6ixHf%a>q+akOM6(NX?W{J1HDUUTm*Jo5>c6zRQx5MXi zZn=mV`$%^iDc%y zU{yA>Vn!v~*613l1B1$ibQ_s7RmbCudXaEw1LErJqCLr7T7`S$Pld)unv3+lP_GL0 zT+~f}5|Ia5!2R)$eti1%uYRM&;Ezr}`r%JS)`-@G%+q{4Ey%(zudZcr=jy(47L8PX zpatKD@4ct8ZYQu9=bbnGFh{UFvj46l$vzZ~V6PU6zQ}eFo88t( z3B-$V@f6IbkNGXyXQ$tP`g_F*Ts?KFx}O|X?E@`1@boW7#r6(ueRK5pwmcK4iqrHf zN71Iw96I0kzV6iVYrFK8=ZPjbZ%P1RK%T$)5|Ue_4f^bM+|@$+nS*)R7aCdY%{Z`* z=3U}`b)_2@^z^QOa!NNU@J*Y!lJDL8wlDlUcOH0b@LRmb7dT5kK8`V;GKZ^Q_&oE| zyu#5qzW?C8%*!~V#MmZzpFmDvUbroqnd}?#E3Z734L43Lp>3MtvE_Y5Z)D(UPi)3d z?Gy6*xyKIsC=0yoCtN>~Z{m4TRy*FEd+cW{80)Hn{CM(&Cy({fLU6`nzU>oF+Z&f( zX8i0czImP_!YWDuf4Bxgldm1j($;Bf?fM9m=v5yKgVcLB*RPjrj$cUCk*`9x*%RX3i_&|G&#W*NCxuF!W z#H+|2gN9Te%4zkZu;>pNimxJ=h8~po;$t@~eV}*WVK_18b@7Zr_IR{d$mg6n@dOk< z?FaUR0ha07j_Xcf-_z^Q8Eoc)rX)IzBmRD9f&PV7$^9ZgA6M`}*!Y-)EaSiiy~RWR zL0eH$#y7<$jTJw-d`BX=zluiW>}$0pJ`oe?Kr3*!Pw^Q<)7eNUu*UIzywX&5{|+eC zhi;8u&As*mx<0Y3Sjd0IG0n($P&_$2MLX1bj-lqkCzjz`S{oyY z=y7WnK1xr0IGRj6ojTqI85EBPd1R@L9}*dENr$e8kaepCI^I9j4Pp0b{OOC&ztGJ} zPo#&98YlJ>6?&X)gHAu7c8W}DmX%L)pN}MQ*t@zCj5aqbe3^l{+7Ef9tmSwIrS+7T zz?mOqVQX|nYk`#(3vecNEoJ{}&0FPDeTq-FCrzcqIV99(A8o|k$4!|Y&r~Nd z*%;Y~U5=x~JpUlR+FBd9(j~R6+RiF%f;SS(zv4cXQaW(5b(UV5Sd@;etT@eIX7P6k4~*jWIxW z-L$K=+B=_L`OapaXe2y7LE&t5b>Z8dsO?~LE(h*lBzM07MWKzDW8d-tNWa<+rb6;1!-fd zD_e<@-exUYd6*1tyQUmUwJ;Tn6tcfHAz-3+w53Ur2RR^=>Pv%*o6VfKb`9T1Rb?mQ zF)63*m0g(vJpsEx11tVgb=+0$)8PY=rF}>VTmQLPAkx$Kp}i^KSNGe>Si-WB-%2^- z6zH$h>YH!Me&QV#W|wa!e7AUZcf^q`+M-6cIvt4@%W56L1*X}`_u31qimf-t>lk9^ z`VH4g=WsHa(R;*dnql^icYO$nz}%*K$D&yyU;OYqp}O}m)3tG(0|o@cjWV%uo11sR zO8Qumnqb+teIgS$V~!Z(s8alh*S#;E&8L#%i+T3LZ2OBo`tdA)d|$>~!DC`c&56B* zacyzqeoMB2mARIYTk9A3o#~i<4Sg-rLUzZ^W55M)O<$T%svKZat`ND|sWe z{625#skfKt`jqT(xmrbkN_6YD5={-_=|{B5ed{G+!r5hd zf%C)}1J5bqjroG|h+;I*M`QM)Vyu6jY)=x`7uTv-`6 z+sc+c{1)j;y+YPc{0flQz4BDl-K#7*c`?g_Gvf)X9$!dt(*oin;n5`YB3k#w%e^WR8Nc&WBE+`KH!zL!tqyOp~Y@~|M#(%f#c&F-*!Xa5HMZP zebP9Q=K<}M0hpw)2EL$=CU--qN(G;I!tvYPgWu(?`t7VPvY{# zIvDk2@BRA^)fZaOy~FSKaz;`MZj$ptt(MkHb?v>!%8+QMMW`^DhmXAw*b)7r_6 z!*vRQgM05DzmuDVCU}Xibj9bMAl}3lpBQ2DJlj8CC3)L|gUv))O0ymO)+x4#sr$0_ z75sh3jU<{ExMAe+<0rb=;feYn3z-78J#_pw3e{*IK06+%EtvSqNAnS(KpneETvs7> zEF@(yiFnr78rKx!A5rt(L;xu181AS5E}z^=>=-%Qz8(S53%2HIKBHqbcDx8EU1Eee zZkz?4*kuf$fWzXULtH6i&3(f@j!x!KIK;qDQd@_})28%+$D!&;#6LXupXQ78H*}F1 zF_qnMeqo*TFEY8l6dyAlpwc(qx||y=QdI6QyM64fmM{{T&XU zM;vG$zUW3LyFwf_YVLAeG)UrDaE|5B1*j7IG)Y*}>+6Bkoa|p$x=%D-iHkjtB-?zn zb?nJNk5v4ioc^ZGcD!U`AyVc^EdP=g^nG^PNxO0BJ``Ic;EI}zTbj#BVbHBuSE|D?uKPDfLv z2y@6p@}iMuZ}P@ni7OzHL`J6)Sj_m?8tRNu3YIf;VZD2KYigqAlz*oxL@Cw<^5j<$Zg*zHirc z&1ju(TidT|(>Kq{JkKcQ`0*3*OLNB8)tcM-(-GVI+x0yT@*edx zq=$cl4CYFh<;EP8H5iRow60>~$cKUP4i>KXg6rv8&eti5PH^O@TE&UZn3ok1UyPCz zfAs)EWNDaM?m(=8u4wcLFJDfiDp4${SbX2ST6&n|B-hEku*XHPPHMn0CNj{4%E_Ry zQuoPe(9Gt`Mo!oxmM^CI%3)vhWr%j_z@3W>QtY#-8WEs^$(M|3j?v4SJg5^UsBUgJ zRo%(P2NSg+t|-}t>xO7{qH95aH9!pi*j;?KRHo9j!#O z*+gpbt;ugGAMG~&(xA6w??%`+?ZRz41IHHGQGCU&7{=s zm;g3L<^u5cX&ScMtGNm=BtA$|06%}BnGVlT@f$3s!n4ml1{D2)VW^I&!P6b&>FM?V|_teWlmD>>$SZ9;AejQGZ)pJ#NuheJV}HFQuS5CnXJ)f zC&W`5G7lmLGlCX#5gAciA4t`wBm`0kD6?*e-tOyX0+Kqj0S#?!oD0_$x-J$z!85&N z+fnPRJox)G6!#c=!LHN8LGF1cnr*G+rtg!I(nfMq*-NS}J}ySAOVm=%7EdTa4Ua8j zAWx1a=XO-zG^>v16||2YeR2Ba(@#!ceDS5m={+wrve3l1@WRR!-!rms#YKL8_m?Mv zy@(+LTm;4{3o!S1{F22K5$@@A3=ct5$i+Y-d7Xv0!<)MPFC}Z9`i%L!dJB!640kDn!FL9>iJ17rLna zum7)qH5Pq)@i+QM^iy;# zfY3}83&4QOcoLTI@}?gx=IgKHYeo7UX*-4Yi+>V8KF)wB-mt+!E4+*uu-pWoc%Xoq z{v8+OT-8QNn$FW_DVMM_+q0;x2MYitZ;2sg=Pubtq`^d=KaVqO%~&O_Ynvi#Kr`X- zKXtI`deLonVaGEZ(%ABXc~g=*{vL$%Eiohmz<|n%7K*kh_{mz22edSDrO3@BLk~G6 zzJ?MJ-=L+uUBgfJt+w=4ys?HuoH46-X@Bil_4#3Acr1eLKP>BSFy}Ze)U-{q$k6VY zP?8nS6T?(BavoEbZx5+pN4aGB`ea#;zS}JCn6vaTtn5VvTUgsB+5pC2SZpg5O`ElH zbSO@_@emNg^3Mr>!B!fQ1FWbxwc`t?v_ESIP&sP&wXioa7nkZ8_BP-ZO>PXrk(q^O1<0Vj(U5!uS5Sfx3Amv?Z|U{+4}0aeoK1m zwd?k&BObJ#liq}LE7oRzXDHSXy>3+QecWJNJR!^t4(oDh-<&wN$E<|MQ0<(~(4#7l;gbujQlcWys>RG4L}6_l5| zXgf8uzi3FiQ`7BJ5uwdbPL=Gw`EU{kd|14~xmbPT))jn%L z6SmtdX+eWdzt{={OHfZa+sO1$yj|$lIv*$d%{A27<||K>iC63I~Sp) zxTv@|#wRizzMW9pb(^ELlX&yh?u%pOqXu1Y{utn^QLpdruZF$R-na8Y8~0*`;qRr@ zuV}8?8z%9fh;z@AZe|D;CaxkM!HQ7G~crxut<7l}JB5=l#YL-ws!DnX8yL z77&YN&Zt=Rra`s>D=OA3|sQsnBpk6DGNy> zLS2h_32bfzGWQl6+uO-O+c>u4uT|t$41Cq!KIVI|6@qe`G?X#8v=KV-@4kfZXFx>M zk=<@WoAVenEm%Mc!yv>jIBD8^V?r95t&|Q@W7DRTGk$0%X>IF}6+K+?_+;T_)3O3h zl0syuHgOh@JZ&EWfYzed#F00zJsXT03uv_VUij6~_6RrEW8*lE)Bfa7T4O`G)Pk0I z+xfXyScJ;&vT?Su_i(R~xhQ^`$An~E(Q3fwJVA8-YcE1c%dqoJ_ z;&EYeJVj+tT|U(T4hvZ=&t1QgG@K zlmGxA07*naRQQma)FS)5`Kv9GL!FZ9J z$3z9ou4{9zo)F$Qnx1nDz~v7GZ?IWyi}|6trRrG0pwK^;+3Vjv4uxA4Fbpzzwypt* zKhx;KrMS~W)G>qJiJ2jFhXozQ{f=S=_2)nTcY@JxEZ392t@W{VPXRzYVmBmKi@;YNw4^(trCtnd2tQTO4n&!Q&%g;>p@$m8jip0WjJO@5X0vwZhw zLGF(CD*?M{!;#J zT>90|BJL`T(yg6foMq2jUG(_@T(-2+tE5-TY z!w3F=_2pyHnIAZ@E8Q`Np`$S`2#w%?tlCe)&J7rkDF0!8(qoChP?#OV4xs} zZG2Qg@l9MTpmJgnapXIt?06Uq)69gOzy(uv@h!q4DSjw#In_*K-Zhr_@jpmB@vAZF zSjY>>@mtXfnlyt#9H6rpmv$fyQ6CKBynV?D0@sbY?=5dRbd{_k`=y5}DKR1^k{S=n z5%I$rwq;dG;#Jyd!!~b0bKIXs%y9$J#-@IrH@7o7k3(+x`T>F_Jtz1jk7QA9r!UMCKeYC8Ieg zZxw(Q4Upn8BSe1=KlB=EW%inrxg+7kMi*v9uo*Zodi0z;|2TIANEvDn~C=LnclB=J@j z?2*K<=Bi8skVa%%T{a{E3vIRm=Cnzzb(`Atb4e)sgx0FD z=ijD&q~G4$M*o|Z+56x1j?K5JE#Gu3-@N^G&b=+VkMY_OJ8!-H+@5`Q+rLNquSY}; zi=+J-ou(h@xBc7Zd#s^XcCbJmf+Ym3%+t0o1>(x7k?N#SOTZ$_-M}uZXTib?N z1r6aN{f_$0Rqb~^U1i* z_+R*rbPyVo5_K$x+5ybPkFLcFPU79kQcti;Q(~OFrDiA*N|!SzPQ*wP&UQ`nNgq5w zC7^%b$?K6OqUlp*^7BeE; zTR}}Uh}&9=-Iy=X9c`edT}oT*qse(c$=ai(y*r5ER{A)7H0%%V^@Xihd)eZWEp6OO z-LC#dKyGL1NUHt6zQISD7ifDR3>>tv$ww#+q1?sxQL;;MYPS5OETyfXQ7fQByhZ!k z;s)$mCl;8NQ$FS(vDfj;&be_+71Rbf%xt%NP>=JrQW1=O*$7Pb{}`E)nQzL~fLDbq znmGZYz6wkXOUh2~$4Hqw3eoi?12H_);#a}>aG~->92F(cS&3K?bX)QQ;P5CfKqqbe_gv!nOy`g5 z@TJ@f!&wYq0ZkX|_4KE8EziC`Oe~J7I8uBZRSI@~yYG%RZUkq=z7-Ve9&eL9N(Jru zWqN{#&pI5_Xv4Hbx7RUT#p%$xnvM?9; zD~`5pqb}8&tL5@^qolbetxm8iBvzV{)WVL6X`^#jQ_PS7`! zz5hT@$UjxAy(rIiQ1)#?J{m?k)KjT$I`-d z+o*{v=eQZj3ys2&G0`;+mEDv7FXRXK?h_iP#Bqm)W~`$ESN?f-mLjmsE&53-meB6_ zh7(38$2i(Y&LUEBe$SQ>?6?TaiLaB`kG?#8sW%o#!7|<> zaM;Ze4Seh(41_TKp~C*dTLFxw$ncF3Kt#Z zRqYlzO0;*-$^!{yW|Nmd#Hx{~VK-LsW~Pisbi$9`AZIDGcmXQxMBJW_o4={kOKUV7c= zAQ}&<+YV;OMmgi8<>M)aQgVB&ZDnmTR;Zzt)|;$qIk=Qs&Mj)TiES|$jz#l3FS%gI z7;eHN&xXQG^rI57>C|P%>j<|6H+cY##LGgYB`{@DN-V=}+YLQsn^JPys%l7fBi3>R z>AGMm`lGypwC+kf$62{&WyU%xqz&8}fe73dxyJ_xSvOFxQ!!!M>1q#A_-8bUAEm^l zrIDb#rf$?qyQ$oGjg=O!NX@wk>FedU-)*%$?!4*mruXgL_c{AZ`mFPg$-WN#h{k>} z_NP{^+{pVOVVtetC4Hp!bKO>R)>>}GTFX;1rAxfVS>^Y%OS-Gh2Oqreo1>rTEl<34 zE62N4V!sb9ypCDzJ~jq&eJddpekQdpW;RBG|Dx)azUg$h%Gl+ zxc;67UMHJivl7ccQJWo4*3*UnKyU3v*ydeBekrTiwZ@o;%?V|0iIR9$V53BPmC-&k zRPTw!D8;u7;u1uZ9Vlp)avg+CvLKXE*svkP>14z*biRYO)RM=v32DW`8^uLv(9R2% zYG-bzGC)>e`+VxypEfX5H|?iKV_I^G??~rrgXKbt-Xxcv-s--sTKj@;Yx#}X>jtl2 zJ6hXZMQ$oDzV6U6U0tic*VvBwEjNZT8?26oer9GRBfbSY6R(|lj-gfmT)HTWACmVt zW(;b7@1dA^VF8oMY{Qgm6YGA_b4uo!NEn{tVtQ>`%rEv3T>%2)EmBDw515$}sJ4;g zi1Z6?$}h9n;s<6j!wFTwQ$AKMxKTd5fh_I^$oA!pj4m!-G%{ppLpeVCNou>s{PwAy zywR%{TZVQgbzUmi_k|NA6;b;m8N^DI-@*gGH8IuY0zJ!a;!g!hx&tR=TME)>o~vEk zT50N5e_Oka%vR$SYPfTwfvrGZ$F|zo@>kC7%B{bRP3vYnP}}q82-)&hye>D|o69fF z0b2_?miEqHfo_jx-pAY06oU(J%zfq{=o3D*(qrFeil@8!GI8}Me|qxUO7%NzCoSF) zA{IC@=V2R6;>02aC%jZ+&;IMm>YN`FPcF84K@(kka2>@N|4}kNJamv49L&C6GR~q3 zWMPpl7E-yyLrpyV>O{FQI&WU*1(z!N%@_p;k?Pnb&MlaH;857;E^ZH@t!`>4(I@Ny z4YDez+_+s-jx4Wze)2@mgE{~aL)70qL}TGM3pwQf}KdLxJmnJtv z*k3VtWwC$57Z=Urb~NDhWj|RfK^B|%&d&n>%V&K(0xN0*uW{DL2^?h9 zHWsnHSnM#c*i<;kC^o8UygYHc(C4+d(By$*0v0yp-c5739NP%0Fwf=Y1u+Z;4nDMR6IK-V zp)%xgAOu>Sab)j@L-e7K4cJt2bO@mRA>yzuBTOvrvC%K)BLsiip79^P1i=zeSv9N11kwQK#Lbgk^ zU1ik~O%xirV}fnuwrQoXUk9gT0CTbf(k5W|oR$}J)I28esp9!ubJh!ex*jcVM(9+2 zQ$@$Ij#0QIZlRVS2bAbt!@ z`7!zg?Dk7#(+ev7KXntbMYjM^C%KKvjc3aFrbNxiD9E^Kk5`SxU1_7dD1e!26QQh@ zhSn&o*lvEST4Jx;%xP%=9Tp^~|Bgpo5k|udoe;8(&1|8hG(>k4=ISXTd5^(Hf|qjZ z8|@sj*~(+HW0ClT2G8~u>GQ@MfwzA1ItR#mN7)VV%H4V&{@1f@%Xrfsbvv4eC(T>S zd;Y42{K`k~`}E2Y=#VaonU@yATPb#b@A|N-l@Iq?{E{!NS90robV&vJn`-N|_T(Gx zjrmLEOY(d-=JWLFGs~19pI!4@v zS+tL?ZY3ESlZOEO&?-7ZYk~BMX1t4rg~q0BObwa{>NrUnvRmsRPrV`LsDM%S;%2c$ zRs7bIq-h6wl+vpB)*c#QRQkkeSSkGT3<*2q%(e3HT-G67$T66dz=s+5*$-DCp z^L#>SftEV3e~F}+wbr@4!MUJ4$Bi%c_xN3<8vZYQ*74Hl z_8lLgA)vxAL}7=bYO^_PF;DCyK$&UJY~?BO>ZR2!+t5LHWcl+RRkCDH-h=q3ih9@vecq1*_Y1 z$wKoDMP(IS%LwfF8{JYoQZaUKR;9gg+pz2^*ve~uiGLgVC7Bif_T?Ulx7F~eCc*T? z6JOR)u+NNOYoA(q-o<<&m5ceh3@QTi7U#AsJly}&KRexfKfkB=QeP-edP>SqSFu>2 zr;m(XfIRid6G>UvXky&*`IJeLk;BxvaLvVeJ>TY`fRFf-58m{=n@D&*g-Kc(VIOuh z%OJYQnbsT8S5~18H5U+QM&}}}WaQc<$|TP}lHbdjx!_QDbw{(@4V%^XBSS!1W+Qk2 z>M>JvDRtHQ(rwq8-U##?cNm8rLHfZL-))mc2rl4O?+AzmDt!?{%H!mvp5D_S^P-i< zoC2AfZrTdtFg|$d)j^K$Q1`Wnd{?j9<+pu3*05KO`q(8L|2FU>2e9SrU&Y5!!tV$J z<70n!s_16fff(sFm&ssX+!k<9hEzs3)wFRiT)-dnreAI!B&g!$+@kqnlo_Lm??w3t zYa37DNy9OO@=OcBdCew*GqrR;p+m_M$(OZ6Fr{Cw6vWnz#jd^Syh3vZ+di~)&!Y(Q zshABV$DFgQNE1gM?4wFoIqsS-pX(;;mwFPHlvvkO?OM>u)08Z5WdVm(Pom0v%7SVy zF7@Il^CVCHdXZN)kWIhK582JROpPS*?{mWgQrhqC3X^AJPkKc(_ON9gEfn&E^17cf zp4eB(y?{!)xY*G9WAVY}X}o(c^Bcg~XLJ4G?%fCCN=LFh>B|$$$YWF_@8j4{8;N0T zs)Z`cJz^mr*q^iONrt%th=BvX;$^>7MzDM&Mm*In_UV)VpS^ecwPnf9yyjke?aR5; zsp=|M`GVb8ExzuRC z*;l^b_l*$|nKS3Q?6c3U>cmF=9kyWX_DtoWJ;`pWdY{JjDwQU$fr??zOP- z!ttz*?-*c_5by*oVPnq04dMu<{lu<&z&&q2c~TWT>%=v+$3V8FlFuPoTm(UQLjTBpWXvB3ceC!UGHx^IFH*KJbS`!d?-F|al6%UD6;AD_$-_S1EdoZyu{$QF}N_64X| zqGuy%ahsTt6i4mf^WDc5U)t@s5RYi1!zU7K`4m#gKuU~CO7ttwnLS3qBX-TlZ}3$& zNhRe$g}``K-ESR9Ibvz+kS#Zojb4&wCu>!ugqv0QDzRnlIb9bHQ0(|kQo+Ll0F%X# zlkRgw*+F1g50S*zMAI3A1FXqQPVA@>Cl_1}Wxq|mrQ$5KgS0c5YT9xjeJhE6*{AqD zy$OFWc!|G_Q@1~u(-LSwShw)^xLcjke*-}B!?i`Xi-R|DwxubMShONi9_`ACw#^D= zm0yuB(Sv(e$yM&lEsubfnfTxPL)*@rppZChGj>ZSNOYy&6o*FrF7F5s@9l9|d&B_^ z`J;Weao&Bt_9@2IuS?f9cfX(G$Hq?t(OYyk!v%$dw81#wzY~&t>vkOBb=&ZTKFRmL zp68D=?nqmV=B6_Aa@@Ql!Z$+93&5Q0q<_@_&f)UiBh3-R6N=A#kkZM9gHE0i;fzRY z;nuWTk!1mEiIa4xi3XN(XWpnLSq{#06d(Bcq|9>{%h@z2V%RxttuS!Q!T4`5orEYE0G5C#U)=Df)~@2V}g30s7;^nDln+0zC|e7wy7Eaw;}^^{FhKWtr$?fk9A)+ulZa$4jd>68ETV zJsa&U$177zQyP3(u%#g)rZp9mghV)w(+RR%6>=pO^c711PS2YTv&^uqDi{5Ck4AD5n z=zcXuK^+0EYK`fI{pzqXS01!PRX5pIa>Kf@(jFj`{dP=AkgBpp*Phg_biTlN)VdBc znnNB;rFGw`2x?!*iBjj0Ls%cpCyNOP#ZY#Td`uF3+L3%?FxSf=&-Vi7>oI7#%)oI* zejpB!+&H+=jTK=@=2Nfcw)`Rzkd<%@wMyK%Ol-$^v%iUB17IrVj*T)^<6zG-El)c- z{rPkKrrrA=R1<@P{3a%H#25g&!z1SaHqerfxIt@U_J0wo;zstIeMo7@^5RUU`6~n2 zBl;?HpK{yYV2Vh8H4nVzue4#uu|#O6R08M@y()CQ$HkCo#sFWHSK>FneBP9E%5AM+ z)F<}YwtUl)3)it<@Wt@l;=a+vVY9S1XyL(6yZ!hlr|XZtcY5^0@1L&T%j-Z{$na}I zyHhZR-cq-jqVr{h^KDl-iB#F=i!#OylGwsOo?;vO;cyYos4OMW7;kA=YHz=_ztarB zNo~G!QCBf4EegHGz$3Z7Dzre@Z?!Gxsk`DsmB5+Ils+rb|HRSXZ`_E~BiP`Ds45qF zy_iLR4R*d?M2E9`{Z$Z*uM4;=P`$FQmR9ttSs%L?XQKOgEx`OAP%l)}LI=29_#-{zlP1NUi7*(KfoV7o2g<#D1mMwC3 zO{<2Zy(k8MA-D*27Dg?ka@tL@di?WKiX!H?Pamim?gtfUi+DUG`al0q|NQicUa`p& zYy0HyhzaOmVS-+L##7yc`YkFD0|#sMnLb%svlNj^k3p=y69$W5er0pkc>No@S?okg z^Pakm9R+=>6LlX2I4UV~E8@e165# z#IL{*H2q*14hYo2r0FoREluArpLqoxd}XnWH87-@wU}R?efGIteW#n=)qdKX#bFjO z>A$%!Z8P9lQ|;DonScDrGso(M&J$ni$$5~m>qU4JgdsPrgMXc}cnqDy(y_|90A$}x z4oh|XmSLP$*}tbuN%DSDmIo8uZVMn(@ka)4J4TF^TD-L_tfPaESsa!3@;@KqgFU3c z(Z*#>z@osBCV{m)@n)itQ$Ej5TDr6)wGkJi}Urp)++->b_^w^oMWN(Fd3?S zE@m*|)K)n*bqYq;Xo1?vb;>3YLsh6}Usl2TvZwy&xMqCe2a0SKBW_308;q)xaMVW; z(G~!;kMU&RhEx?wC$-oiIwSst6puxfh{r4jln7mXOg-Wv=74Rx=AehXK5?mSKrE&t zuGF4D*A^%PteZ)3snu-(xyfI(M!6js1XPMBRpQjwni1Kc)mUj_yhWF^06QqEmvY~{ z((`?5K-caWF>HH~s_ruMwbx|g5?zckWlxSan|>Ms@$p>uoU%1=z&B>oyM@EhuCU6b zeB>V}9r7K(VYN{Q^CmY8jsbmck~;%yD^c{eNrhu*(OhlpmMN11_OP%BAM(F0VmAi+ zZsoH7r{12W-)1{{Y&ZYA{Ouy(`FBzE++I7+m|s-y@*=9fO8>3Armb@CrYu`Amwn8j zIa<$A5libn-tz!5t=@Cbs@HPw#@E|Wh9@@)u0H+pm!Ixr8)I!nMDEoe17;o@ZlC>k zu6)VWH4dw(>#Mq5ms3F>b2*=^p3dD;Iv}dV_1*FFkddbGXq=Xp@D*)bO@wiQ`XJ7`c#sNA*Ox^X*ANVM>b zQ`(v4@BwPpNU!>9|?(N%cMgeSaiYi08%}%RyzL;4_0|w%#EW$<0T#=Eu z>aXS23RE~53C+1FKSFBxAa-q=i`S~F|2jLKYPaNa;xZLV zT)Y5u9YD_;B4?8)tn;Bx4^iHy*w|B3N4~9e z8#eMWe60MAsMxg`Hu{jom!sB9qt=N^wOj4C@{|EcFD$jxj85Y&!YZ!E+LjnGDGR0} zE5w#*YoP7ZVqwp^vA$v-VXXWW=n}nUR{q}Kl}F=JpH$EDQX(dkx|fnAkr+drEYX34 zJ(V|dV;~}fGC1T*T2xJ4`75vKD{X=K))#4CA8BdKI8QLW_Mw%&*{KmyWc2Ylfr?zn zV-9)v^nJbl`NyZH|KN8|*B`#8bK2Z7`AUleequ|iPH`aDD^>RFV_N1vU&oY9ogPnT zFsZ7~HTy&nf_qsP61AJ=+&Xxc6F>8s1rdIC$=DNaW1-r&p-s_IDzQ=T!WjPzfS?jp zA2O>HIU+MMF!Ly_{@Ang#MM@|fVZZ)4r78byDJ2>ihZlWzfZ)~u zs1j|~a+4QMUa^4qQhdglZ2aZy7I7p7Qjs8mG26ro>F27kU+Z z+ND^jjy{Qn%!p_KOuj&6u?eE*1Vxd_hMPqxc@9u60dG^vevE#P*Pb&>ldOH>Z30Xf zBpVX4>|h@}TTwJX9c>zyxV>wy!i4bg9ENlctw?Lk4c-cJl_$p z%y>#%g6S$n>BT?L@QT=JdwPYwik7ihaQf%`d9odVJAO5|&PGun#iZEJOyM_Syw|Bd-3_pOhIxQkdaWr4um%Lu~JN zMHdZmqZ@ctu45SSv0~bj3U+hj1xOwPLh57pM4_b5=m&uGu>ftw1_*2Fwt}mDP%K|1 zvz!JHaH1JPIWZ3eeZ)R3PGKU0Pvp6lse+lrgEBmw*J->ns;IHI5G(h!aw3$4b)%u8 zRLU-kZaHaNgiT~^8$*jvsK5=zl-1thIC_5;IWi?S>}9Ot75at-3hB~;2H!H(Ap;9h z^C=|Je)u2;qky3MSQ&oz;gCh%N)#47&Mg`ML`9 zjXi3&%8_eM@N?>f%R0@ehWeC{6Lp=CaQbBcDU;`PQ5Exr1SpHVVh$d%`s1j`caPjH zs?#eb9*JLZc1}{IO5*@(x`{|)MgT2DE(||*-Lz&_oi@aea*aA)lH5`%xs_c<+;rbQ1Ain1^$LZ5MNU*!|cwJaMdz3sZ0ld3BHag-*x zN+V0bJ*DE%mqT41R`@beZE#<

    bSY4A4Aja#4Fou)cB12H;OZ$y_X*wF3bnP$fX?VW?0h`I1*8O4E)ARlA5}&<<*t=>D^a)C%|a!tx=BxePwARD+IpQsO5!GE zpHjCJ+NnLovq&oy=!px$jO9ySS{G)04yVH{-vYkm<_3f1l*XTsin&n%joZi%;;msg zZKa8WfQ$Ou4j5@q$!3{pbf_+;MHQ0vu6Msd;rUX304h_Y-*V{8!r&&MzTGj-<3< zoY;+K1$7%4@eLEf(gS(RBi@N3BTd?uEtqC!Kj=`4j`DB4xzV=wnx7RZ3L1*aVoQx0FkqA#Sq7DWP>an9PR*%A{gyukN{(zhL@MPCx&>ZLLF5pQ zBHVyyQlV?{XYd>7y@<|`55BhLNKDEW9A&f8I_Q)5ML^+FZ<9nnl+dun&y|livyWsu zkfG)o@f{UswO75G9`g(5CH_jC#}R;)*ohCXumLwQlYnDl+quw98ga=?$RcZ~m1OYR z6r^9Mqr-gEh~t-e7V{g+kf=xvR$8#W5yh{nsaj&VFtA(Y z5WR~^VpyY7YBvp;I&vPaw-IDBFc)v&n2%c5sekRF!an@yqZGC_<9GuN^_Go2=$!q1 z$T;>9ZH)gbi*2e|C>=ox`PF+7b#1wY4`XI~1Qs>A%ao_W=^wwj>r> z5~LQdE}t26e$l;rXh{BZp1_RWh#eFFloAkp25A^rC}WksZSyI-Y%)nfom5)R>Lc~! zC1n}HnAK;plN(WBvA&!Gw{PodQ|cF(1~8)MIwHnc;lQN595;L^=jNuqSsRP-TdGY$ z5}9XtVF0Ud3W^9D48N*l(iTmaL`gGy=bA&}*u%UcZCDyb2}hP8o4b4?SXn-y3x>Eh zmL!i3aLTu=79bmI*pk%qKmNt{g%z^r)*fI%&c}G!}f&- zN+&WLKQ1{3xKSLRS||MFUxShZ;(3<;lqH1{MY&yfKwp_k8vXH&y#5oXjuoX}3HA+d zcuo6|R~_X0+sU$4f5ngZF6U$|2cB<3t2eUinyX$*`N`N%=!gn-d|PTtYdKc96g?%ibWaf9qkH% z(PlZIDP3)7#Q}RTq>xD@TeyK#MueQhi#rp-y71jWw&#r2J?M<_!>ah~F0qzAg}#em zYH5O&IuS|O9t_k*;_a}|4^tq&TWTX|-iYsUk4%@W z5&&$3{M&Bk`p}WU$+L-HO4S8Wj`BJWv7kCEoLh2IF8bQ%+LNFR3p0r|*?a?J?(`-* zsnK6dXS_N>clLx^o!U*v*w=)A2XV%XAvYQ`C;&JvR+$50dL~?}?cHuur$H1`j+39n zVDda@n5c;uT4IYd8-?`o$pmT7%(Mi_PQt9Rf$287FKo#wznh*l(M=T?HeuVKENR1p zO~(L4LKirhu!niHeFZE{#q8GRHY3AVQauit+DEo?#k}YXX0t^_RmGd6seBQ#Bo|$g ze&(>qA6_}K=nT&tAVuw!18Dgxa!ubM>s#=zj0cWut84V6s()oHK5vM(K2~!aCF;(% z&SgYZ0k@&43%rSKNXNAM>X{*NBGyuJUNZ;j2A$aIFN%Ti!kL?NrXhAxlKFH=4LpO? z5SBYZhtSYE*@xCmDJPHy%-Xx&(B-I9spqssrKC9)hAi(NxUqQNkVB zre{kv!v@*0h~88mSvq)6^t8;1-+|r}?{dSYMgI={O)@sLIP)6{v%wK^lLR8tW($N{ z(prf51ID%N#7ozkGG4K|5TA`-V{m!3o@)#)j1aRvADSz0UPNZIH+<-3fvsK-?FMo! z__%56Q@*ts?BWM`UhQe#`ihApU3jy7=X+tcCol7WtMeXrL)e+&W1M!kXm0ava}hd6XLChoSEh@eT0h z3v4H0X*{plDU8JB<|_+B#(wBZjLS^z$KcfmgPXt^e~9(R>){057umA&d#P|Bjx#TK zQs}3AOYkGcln1QtzhaZ|^|PD9%fI;SaQnNrhd=z@r_ffYbD+8_#3dwWY$CbBpFM`= zEapFIVEOKCMWja4m#8V~=grGkhwJAr56}Pli^J0|zC3)%Q+D3WU_Dl2p%xrl$zE{c zxMhL;@X>eJ<)?M!ms`n8#Kb*Z=d z;@ipqPG;MkWr6u7b5q*4YyvuvRG#MoOO-M;ZnWEUf@TRVJmyVHJJO+R-l+p*hz7ze z`TO|AC+2*$XyX;*h;iX7ZsGS_Hs^!zWITX4x``D#7k64;bb&*x=hnzkb(}_Inq#`& zNEalTHl;G>>L`VB001BWNklLLz1e3Su`#NIal+XeqZR6>3L~zqU9P=2*{p^LAm46x&F-QoX2hx%UAbbd1 zBhvA8#J1eE-vWz2HMArRYg=2?Y_Rf?l+NXR*3nIe8%{)SI%Y%9G(Vpntofb_ywbWk zeD~Kqcer`!Yr4HY^d->tF`hQ12!BOK`SA7wdtT}SP{s*ke?A4w7tXV3`};SK55Ks0 zb@&;-v?cK6gB04_J}7{;=Z5cNI_g2ggzGr*yU4~3U<>|JAsoM!IB$1w(Zut@@*TW zxzNA9^~NJ;)qyx~c(r_9-&}cqBCSj}|J<}pPeP>aC$AExOm6UMhSxUU8sL-5Zq&-F zuDV7bXZd{c94eJv-9jS?hYS4#fmwgqKy%}nGR0zwP@B@+(7?^F+Hd>J`i8c|55=7_ zz+|0T%W*Bb^F-~a$GA{UAT3)q#+{{7o}4?3u|w}gc5)%7+-^dPV}lw&K2eLZl)35$ zt$;MigSKKQ63Um-DAOl+Q^ycza}|1Jy4Ot6qA|rnOmfz52_^R0)HZQ-*`iaIW8v=%1RSL0})yS2magaPlN8Wy!3(_5t&p?o9!4aMQ{RKKkUUG6Wh~iy;C# z6lv)jB%(G63$S@+d^b*vzCRA9kYRv6JE9k2IOP%ASkvzcC1LZ;`_YGLr~Hgg@SCSg zZd2`8mrPfi_H_Df7M0yA#UgBa2X8x`oDo>9y4uppdESR@{i<(GgXh0wR^2p5jcprk zG)`KnhW5pXC3(gdqmNIKMO`J?Y-scbZ^-!)78ZNjZ~#i~Y|1tbTkPJ%o=qM5zWveg zmS4=HcLX?_L7h@a9dFWSe0!ywyhmQRdurRkVcp!={h8otvwc8f0;@U z*J*KMa4%aLqii{guc1N|9CvQODX&0vED2Llq*)KCj}jhOQ7pm=Fpj5Ec4#xO9&@LP z0e0C=c)kVvN_(Jc-C8x(ed<@*=rl|?!x1+n7{vP`ZP7CT>e+<@(rmfz4!rUNTt zC!%ZE8hds4=4)NzGx2Sv*5PQxZ0(jieQRWD0_g3q`GaQIQv;ln- z7UssUa)jrpUN2f8|G zg2k44J((mdEU*Cgir2p0vbaKzfrn$-hj*pZLJ;+a*o(ik8!MAebhOmn!KB;S^%|0~v(szJ6Rw=IgUQHapVykf5r=`FIWU^?Y4UQGS^_h-#DM)%Z zEBaf(z8<<3gq07^-#Dnu@IJDnX?l5nCVxQDvjbu9W@EV12U3G%r(L8AOB_4YtBx9%+ZOrq z1daOT$ay1#ktN;@V1wxcPXXT>PXQ~?#V>W{7q&V-)ypTt_Fjkff&QB5A@{umypxF1 zRk3LQRUXHb+(b2Wc3t^RZcD@)IO97{TGpBT>7YSdV*6%|L#FM!F3DO$E}=#XWb(2k z9AVyM@)|*3@OsVx*)T?dyif{kcMnRp6YJZ^Qbp@nN zq2Rb~Qy=e9DURQH8YTkLP&6y;R`v!9tGxY-G>G6Pk!9sq#VmY@E8-x*6SP^<5*R5$ z`44oY+2nB(-1Cknv7TSToH9dS3!?CZZxX-{y;7#UWI43_&W~6VluM!F-6*iXBF9N^ zLfKizRgUd{mAv8x>szCexF=Bt@J2=CrX}Osu(7p;bihhhGcS^lKqayLsmk(!9JzkM ze^ojtlU`(*R3DAO`Nn9KJA&}GPGt{lVh+aXho&1i>L^+1O$>LKneYY=2dKZtW!VfR zb8xMUg&vy7wET8vm~BPqqipr7HWk*UH?yY6P79-NDDARu*_7MnW%;*uN-3nV$qicN zOJ`WkGanKUAPT4UN_kyq2{N~3lg4)Z-S2*K`0C5g)2Fhj;oOsnqHmJXjw^1qc=+Mt z!?WjK!&#fZ#-6`D$6s?E`wO1z{ReFB!l?I6a=lGg)I^&m{>LEt8 zC2{l5wS+uPt9<^maf;n}$~5)j6S+{U2M<;s+b`5-v-ZAULdFQ&DyeLOB1hZ226wYC z*Cgn(EoY9e9&B@?6p6f$;(k6;aOFux-`Nl&4|)iF6}6wCNP+Y*_Ip!~Uykyr-&+f+ zmEQ^E8+oL*hN?q9!Gw3|=?!n&`Twk{feh0m z|Iik*sU|-q@O5e63~I1n`5J2NFW<>ndWr~3$k!T%T9hM6&5QN1;m$oHO2yGwOpd7BhJh!K9rZFfV40UefP)`onmTNX~@H!qjZjb=49r!q$5X@K) z4meFF-w(D4SWMN+W!)t;?1?OWZXIdYuwe{vsuN}{Cy-X)h2KZf6mlsdiS$uz%s+C} zrvt(t?V&ZLL=OHFD(_Kg>EptvL$BJaZJ<^9=qD~m5l1_5$tqivM4?M~a8Uz5ymE#i z3K|6{Ir7*>3OIZTjaYkpY$Rj3ypbox1LHj(ZUWaE_2@U3RcGmY5ZUG^PVp&>pYlv* z&I(Op^1BcMAu~~E6(?wGVU1&HqmFn=LYFQjk!1wrMAT#syrggPoBA|v{^mHPIE9o& z1t;CAt&?47#0Ct-%D$oABPI7;%%||8ZX4RR&Q}v^rD;wZD&U57+_d}H`jByD1|}2# z)w4+sv{746YEtq?+b3h>S~dBSOc6gk&UrZJ2#LY%SR-H+UK01m&DIs(c6S_|BU3ug^Q|(z zP5-hU=sNqG`ndT!{$=g?`{TQ!eG|F>OsvL4ZkiNdmBXriN=sf4$wV9mbgbY+wrm>|vXwj!=nMgY|E?cEdM@FYl z4Gz_%CN?lIDJz9_qKSIxoP@{lVsWw>90G2C(vX(lQc2_7-gLocK3j~t$S zGsg0w&Ryb^nQY_$v&@mh(UXv&F0#lwi#0@jdDMYRvl3@oTO`AnWJWP%3vW;4%>))I zg`iKBLvO%G^(ESJPfnE+rW_Mxb^$vr#Uu*L%GH2f+&WgaDb7Uf1UrBew@Q)u7_kUk zl9THkY$DGjRuwx{-&D{U*&FDbuvPO$c`jueu(hTwNI*WXbPk+!+Ff1f+Mer%iCPr# zV%<7-^S3vMT^EtA@b8&G)ljvq}7ljh|Pf zuSxq_=z2Xg@K=5#%GblO_>c>64AuwOn@wQkxDV$O#c#m7K6RZ7@r%Pt9!=ySL-bkR zst1oQe04CDC!uNNUR*MYG2XZ+WGgPZ_>iZ!^qD?&6S$skhDYJwIOv_b!ZA)8+TLT_ zk&GtWfs04mmts$fw1XqQW7`GO=OBvO3hj`B`~@|K#;7fFIij>xP{VU14vwmI0Vx|a2)n}2EMvjoC*@oqa-k)E z!l1D{ou^46uNHJw`M$xncN~Pw@*E@Il0W4ekQwPW%ZMw45iEz}LVQ5l(=uCl0PJX0 z9>)R4hyISTeCIZSm2%&@Kwd50xCvYfrS}z#(y!SBeo5NJ_792k)Yj*}IQ;3$=ZD|@ z;qM)O^JAVcJr^{1tXQ(XFD{Q zO^Ixr1`A6vIc3es;XsE2Uxh|)lk(JDbR>&-Io{(2D`mPMUxVF1!dD|iG^TIap8_r= zWn)x1sz_IQhlGj*4G|_RPGp4C`W4TySt(~Fiz#(nk_N4$;-DH)L=2ilpr*JWOIAxR znu5h9`}z>(`PASsZN^x@2$fzTjcEzw2Rc#L->|n9(2#E`5gHqf`r|wOY zaC(xBH<6Y%M8lY77<`FBHxMJ89ETa3)(4}l*7>SR5SvX771Jm|Tc?kz=9uR@6*Q2f z=i^*wG3WAG+1jvzD00Ag!=ZJo9n2-`X-VT-UP|!Y!{>kfbE?_Dn%l|m`PHV+wbJO6N8q6=OSMP{TyoT@Ria3@b<%luVwz}#f#k>Qa0Ow(UFDlIM)?ypOD5nPbOuv2}hYmxXu9`S|o`2!fpr~KHY z8~jO``Xp02Lj}G50EYi-LsA~+dettXmvY%ZGmBInfBMf?bZd{-hnC$;Kb@^Rq5=An zU;64?FQM{~qg;h>=*@5kOl?q~9#vHN+EP-3%}$*49%89$$wpzwrEW@wHVzM|Q#+Xx zE3euHbtnr|txp@}7eq@h;ZWx~9pe1Oer-k$KkLCzx?s_Mf2kv7o0h^hj|6bWu`GVn zj*(Y4KB#Euqug0*3x`%oi^#}Su3^gvH>dpE-hjS5Nslw*a&-+FZ^*H2R*{TFDBXY^ zNzyJxU-Px*_Kl)L-q2)uBZu|7y2N%ar#ybd)%S*8bpT5+85x!BW3U|bz!~)5ktzb3 zZHWuMQLJ=Zx;$BIcj}70Lv$NvHex(%S_&K@lSg6G+rBY&1!&=6cm zrN1!&3+y6q2?&d?P_0LfNnGqgP!?0#9+h`GET=q^c}bj76{JgWs(RGXBIE9)vQEp< z8rE{D?^yD*VW$9S>JTaU-*jx6OexQ(B*zZGa~w#$N;hh3^__ej;@7Pdk=eKrM-=H} z5oT#DR|}nHvNq}aK``Ni2pwx zVlNj)+ajjp%|T_9u^aR(a(uTru+P6W^hi}4Hq-7v>FR5{HQgcUA#aK;;#`j7kFhQ$FUCpOYO#kD+{h>FA@CwIJhjyy;#tAC#EGgubGB8@I?-y zW{96)$SZ4rdcn!`m&8V-70Qj?*fQCZC@U?sRt|H;H0=&3f}nii2}KwQBv-bLRYdbh zF_@danWhy(v{6W#r{b~}+>qJO5L4EO5!hj<>uloSIdo%PkSpr~ey^men&0@G>h}_K zmZ&AS)Q-;*5ADsf(2TaJt29t4b#m0Rb-D|z>kK+ihLU@+my0HtrMYDR$AyG!qI!V_ zm5Vwq(Cb?7G*`CqD@D zw|{f^?5DqoA@^DMe)Qn#@ZIk`KK%N3KR*2Cr=J|Y^Wg{C5b|#Cdt5kNvT1yAbZ@0PW`|8=N!~Ks*vxwy;u}=rOKyXFp^^SHI7Q6uW!79fepCEJ-_!S-V z1;8)(RF|8~`UA1mzbJ+Yi$j7WviLa;=>v*PSM-wD(SyEPSGeJAJTHffUwy9G#Smqz zlc|V)>!IqUYE>%?*3`Q~QQk?F%5Lm=dDizy0M=bHxOb?LMv_g`mg>@MvDD)AF-I6z z8&VU%ro18zeT}kmukw|5J}9Gt0!wHwv~0Md*h?(hx=<`k9furPJaf1SYTr>-j@)2y z>4$6w%teg0RjB8f2Nc!?U3uOeq_R)KP0}`%^k6LPyQQoYWnI<43Xd#xKwz1qvtlZ( z4I=3`BKS#HYnLQgY<&&x9-Zpa{zX5`!VECGOMQDV>@2v->?SZ`6oOEfBpoYWaT0&% zSOfeei_$E4^Yb;GjwevE8F}&J|LgGT`=1{E;5UB<8*;V=GlH^@1Nu+EXULA({(a;z z?N=w*w(KMN)UlH%f1f^mdib2*3pV7nHTLSvRGTfsF%q~>4Dp2Bz3+ejaQR>T^K1q? zPFg#U9zU#2U(OHr8T)Gi8(}a4N*zWrb)NH;Cg_zMW+bG73OkToa>GE7wpF#$hJ2#L zexok$(r|gRHYR|}3~9+5-6BV>>6B*x9FRs; zHgS_D6IAi1ibg&4_!qtblXOr0`{*Gz0X~C< zKkF`kb-q*CQ*`|4;qyG<`=h+Dd9|)y1ufUBSm74*#o-4$+579a_j!%rZ_c>owfnVAUD!TCcoIsR8^8B_ ziqehL)DeE=yqdWyZNN9@)FxDo88zQ6zm5SXwxlm)kOb$X83VI{Wx2@vC(x%iy^hU> zRYTD$wim9Q11KtEoAY$)FZIZ|O{yqPU*;O#>lbUlbB%m%*2$brK+C~(j>OxBrelFOr@GZ;Eh0-E z!t|~FgeRNOw#$h0%*3oXp)QlQ$K3eMjSjNZ)I;KNy@>lq8D- zNVu`rSo)WFW0{k5&5b26i-p;M)*t3NQ- zjsT@ss!#V;f7GV7OCN!^eS`{0mV@@%_E-dcouMO!*eh-QDUz0NbriYEf`R|CJ7(`P z1&3fy0n1W;(NoCE5k!P`YM8Z%tMY^>QcKj4x`lq=i($B@r4y%8JKsdR(lv0z;-F8( zFQ6n>In^d4HALbRI}?T69c92*)UTg+@%-|JoAtfvei&aOL&l*+4Lv(ie@mHC(Tax9 z=-ZTvO`GikPt?Yj6o);lZFdq!c=gZKc=0eQ;D~l}K+y-i&{dzc%|JPLYfP*0B3wmO z0;H2aq4ZXE0Eek1aig+S)xwJ)ijsMB#X=K#6j$+%29 zeNVh2mGTTjW@YX^DrSf6+&MXolcDj0nQYZpm0>Tm_&jc<+sitVma+}W6&3Riw9lMK z*rRv3bF`%(=Vr?`>lntpso)l4NH)6LKp?7EaZ`Wk-dnK9n{-=ZlM8GzwpQuZbn{KZ z27DX8w+G%{AMY*ZKR`m?9yQvNQ?1d~ld40xW@%jK+FnQ*2qsx2>V!Ci0dio>WPN}_ zZ|52VUBIM|Pl&U<=gfhW*f1`Hu|! zQ1a9k+svCLgg1UeZXkVOwAr*!LqSQy6yn_>gLIS#o(a;{ms8>aFT;|n!%AB;xt1G7 zwymL^q$EbVCh$XCV3TM7muR9Y5t}D^B3EHs1vH&xG0H>pbi6@!b~o>@RD73(qg=C` zZS+>gh9m}TAFT_%Dt}A%Vp11%8?VbLHdbhCK56R>3G&{fL%2wh6De0xUf^a!7n*Si zmc?n?V(uV^r!KN=@U}^r*#xFv*oUut>Who?OTOpmtDgVt-~Ht9 z;kHE+^8f%K07*naRC0KUUvgVMvK1e3ooIcPZ|JONXf2y<+6IuP zCZaM+Z}git^ohI{m-vP@cSGB{VsTC-X+s?4Y>UCwcX4%lc)+`)fBKhyN&mk-{NeBYLB=9w8>Vm4 zh)21$;uXM?v(Ku-*%i*{t7^1?B3$!dVGt|@F8QQ-~IjTuf95b{rve@T(bb-pA7Ijhxf;8kJIO9JAPliS^+vq zriYO5Zw76u21cyZ1viPRZE0X*>!RD1CeAiC*aKnQ24GteK8jt;uy`i4mByy2yZC2T zMNV21kY%zC17f5O;iiXiM3-zZWZnuiPqauEQ6A6>Q=T-Yy@xgIrK|H%2fUyXL|XvX zOI$SzCUz-n7b3!{Uk@WgCw0Oqd?;>E&vjF*mN%Gsb7V-VNPdj+ufvuqsd%ALn>iaK zu!tE(Bt2Ln8F)~@1~`c#ukkDd(=S8NqQiD^0v&+VizTpGA){KCDpV-ZG-kG`ogFP$ zV6&*({K77%Wd-HI(D6uDF$y?QGcm{^(rzE3OM55Xs=|-mVHteF8Xuj})yR^m91HIv zZ*As5H2P+Ifkd-|3wfg-YyxNMBr#Q$owGJD%Ct>QlFU`j#120-#JPkCOEmR5DBytdV{xw-q3i%;AsZcjB0;!3ZY&$5 zddAO<=U21)jU<{{u*gF>~g~;7s_>x*SGo(OGhIxGGwC{ zT*htUYv<;Aj~i>Qvcc>eT^P3OATL$p8cZy?DbSOsk!ENFVs584ZPVDhQ$q8<@0lV$~S(om!6XP z*Ax0VPsx(jW?@z##Z6s$o#&Idxmlu-;Uj}R?qKI>zc(){tH-kejg_fihz+4l!BST3 zYGtClX4C$Zjm`UPf;02GykJu)b?FAT{P>YFWSv8QY66^kMUlx-Pu87jTY#BlhkU`| z3orrzRQs@;)~!C%w_?To-g!-oS@a!Y)C zJ8W0X+^DvH4ZDO7D_~WKkP0@b1c-w(6PO%A$|J=mW0%WRGe<&jtund?xZPy7?IinQhf-R*Zz3BjNl(JEl3Cy$9#=xANZl?~gc~rD76N1CmR@s-NIu4B&j>gVbLkHG?Em@ESF6#{R+o7jqRi<^f z4@+)Z#pJBSYUHtw#x=b2M^J?zygw(V!6V7V zVOcZAE0~NL+`vkwHSc6x9KlUr;o0nBG|Q`GWXiu6g;kOa!0=gK$C9$Ta4kc5mptZZ z-k>GkF_|pDK@GFQHHdOyyiZ0-C#4&8K56M?jrFE&J^0I?iG)7WAI|1WddeeR+g18K z5)`FAX%$$h!C4oEK?RNsNhCiC4c6x!hPciW4?U!senIZ==P5S+Jzoi2RG*+HAVuV` z60hk=xRIQ*HDVUpPOhTXbmRYa<6|o-pNpNhC<-3qykWx2$m$>FDYGyuG3|vmYg+;# zENc|R#UpLOY*&?5Xu+?%(04IK5U~38FKJ-P@s-ia^);SZ6kw6#6?c06t3Ug{N>ZblPA1d^cPA9e(jo zzCQey|M?#uKHxi%moChV#+Zc%7g@aM=jS5c_3KB6>j&t1&1*$@O6@gI17BXT8O)}| z;T0RQJWb(k;qeW9H5c^6e#6SU@2^=@ed!vbEG+^j-Gqg7<&AWJFsKtr0w$2z;MosoLmCE#$eD4m@ zsNCWqBmPKs9yW>z`UZ(Tcjt`tW!iJ3c}~NQAn0PiTp%51#f&+kZWt?GF=$-Tx$ZMY z)awr61sM;Jum||P-)o%Vn*{7f@>)v$qi>$jPk9$W7T}``jXo$MOgTUM#n1DU>hJ&X zcMgyI)~vi;sh*4p=X@2!awyMkfSFfdEG=BaI}X-N8yR;2780ms^zm!Ba=a~+@awyxUPLd&Co37-6-*U4;CV3FfqFOk>ZId@JS-K8ld`coV#(@Cjp9H3~8_KNcQ-FalDtk?|hNq=Z{t1;1Rt`IA zb!w9gVH%tk{9FhajU^E66!UdqlwDI2bM9L$(h@XLMEzo zw@Yxo!~pCKxx~>^nDJQ))8>y18N2`SJyy65(6s zq^}-4pbtJ`p32rMmE_!R6mQzodB6Ajrx#xwe)sm#;kOPS)cJo<`F(ot#^!XCcHz)q z*^PN8&N#2zRtg3s;SJOP9E2sU(O+V|;GyE-ZpF+K2?(m2=Nq7U@v!~SCOP=QS+Cw3c zgLSqM>h{tnTD23WW&>K;qZ8_N|D-c$v+51%^O)jrSo^A*7sBiMofvlepVwaUXL!eU zpDI>{blJee2sK3=eWNV4eZmt?eT=t=av^D0aE_=t0|I%ATB0HX(#kbDp96z`mM>3YXJ;FD>?yizhN__35t6E}>lZZ@f1Y$Ur+nPP?Y{B7)@qTI zmGF8?aazGoJN%KZ^ETP&f++sthQbecHXj>adIK>x4@xh$h0py4k!2nf%4&1nGHN&W z8d+9;)=R5QohXM;P zb}C#*j$z>!7-6S8gVji{t)a@cLS(P9?x73 zbxi%|*+R#`vFU5ZYt@;K3#RIpHUSaVyyyIL4klB>TVnK_G3}@&6@^T*{b6F-<*;cn ztz;`<0q%6P_QEU2f@@o)H{zhS>`aBT7$&Txw!A`MhjJ&?NCcpTbslJRS>&;7n)VdJ zZn+5?FnO1xSwcZ-JnP&9hawtiXH7E&58Fbt9uT><`mRe!%1W5X}YFFDE2@q9ZD(bdE zA2xr}K^b)CCqWa=c;gkc$uIs@4rqu^Bt_2#O?FD(=UP|Go@7ZVV^6=wf17)M56~9d z*~c|DTx@&Yhqw8^>sOwpTVZ=ie;>JV)z%GkD_leNjcYaj9L2tnJupQogIhoS+fw2b zkii4&!LO|dT@FH+pmLmd2{MCp_{fA3#7LE&$p>d;!djPSx_3-Jnaq{aB9A16`x{XP z)WG0zrb;>!!4Rp!c2LM=Av~C1W;yIR|?Yf>UzDiEXdGLkp&j! znya%3-jX(M5gzes=Lc>I^XDDr_MB%=uMeNS`s>4&U%fcIV8h{G{1^Z5 z@X?2lA`g;`8umB&4f-iQqD*=$uTWz(%?-T!EEM?^VlDl+2h1Jhl=;GirttboYBs1J zTpnJ+V-NKv6JNb%A4{J%Rxxob9DUP1DkLau@dDgnltmN})~8Q1_}Z~s<)b@e6#{n? zzLZ?(p{@7n^Yxnrjw2PRrQ)PtBlCsvPfNgixl8WYij(wg!rfn}A!{0Bzako3$ z-ZH;Dr7S7a2g5>Nro>GvzUqkn=Yl+hS9JC(S0Wi(baQU(vR)9Zu2;m_1Rk=ZLD@*< zxe^nHhn}lRvebY0jB)7)ykhhF`0p2A^OWlU`TX!Fzx{iMk3ao1=ksD+ECLW+kt7y{ zBMN99s-zZRq!Q0`Ck8fI56DV;QRW&nSVYDSk^F#7F`>_4<+>vcSCoLBvAh}CfZf4% z0xm+^kaCQ!c#Z$dFTXy#_~~CAzF?!|Ip=|E;QDM0X8Q(!m;m3sPrh?__}~2xe2&nC zLH%Z5^2y(;d;>nO;$)LJo4(^5bio+i>zy$?iYQAIsKfp}lv_mY)R6eogrSK?(uM?` zjpr0gCaJeeIXe#)dfV+5wDD)x+3$1*VC;xj z;S{(8>P#$MS?1}c7Tc?@*oqw=B&#|j5xHfJ_zIRnT>T0vcHrZL>Zf53Q>=`CN&~%`>0qAUScTf z-(iX*ez!6Ny5S*&ta4KKgHu@inZu|9iH^c*k5adw&0AZHyyb+j@@>vh>Ef#)FcAVu z#^Q?|@ut~Su_~vJWK@`e~Um9CwyvKi_Vv5!Cggt_ZW-Xz0N-J6sQEvN9F@2fo0I6IW< zA+gl{Y-vK>UNrbL@)K`poQ+ONB|8zy+wvy4WIq1EN527!GZSsve)Sd}=P%08Vs+EH zohO&T9BU&ENE#CwAeTcLuPO4aU9SuH)3(fqbACq_`3uesVSuMYEFXUMmA`KI`rUXp z#4g=@#$0b2`iM`$xasTM{j2LIY0ui@lc?I9H;17kv+H43uT^+{(to+O;v}QJ`OAbw zOJEo_6vmzn$W1&N^&Z(^(rJ9S^rH@T*GO z({8Xui9U_(n~p@f2`)wYer(0dcD~ViF8z*uK4k!%Hsr^=in99|9`Df5#u?G^_z!ps$*=wT zCn?VtUvOguH!jq9TA!gcsyV<^Nv@T(kz63k(tOKI@Ek2%`-v#OPAF;`uh8hvtF>i_ zETE|txU}D!i|RRo+hr`jNur{oT5r6EpE_>5x|)MT{-&@Sorn3oUn|k%mB8!}B7jIG?DdUV;|F#`PWd0LA z@oh=<8~tX}vyzP%I^sL+NgKwI`m)+Z+o&DG%F#G_ywJ+FUtQ)K(D03-%GU*Ne2U$f z$dGOaSn`D%l1`}Po48{UgSzoib=P4K?L_P{E8{7m*oTlKg_C+Ds@fUDTp(J4?W1rD z@Rv+ZoyYupl@pu#?#?=)BwEmD2gy$vGch=qYG49i666aSk>KLKTIM_Ey#k=W{pxflew8}8O@fXdC-{T@bGATt2;y|K&xbi89 zYYgUvdDCMFPBVV&386O0W`r6f2 zh&_zZHQ8~)PhD!wvM4?${>;_bmaY) zaR!MQe5rjeBx-7|EH6JcT<)?&M{VGaQbiCJNd~QAbJR`;FYvkJPy+tFbK4C78GQY# zV4nc=qRCg+n)jy-E}B3-+MxEBt56eE@t#g#NT_(@8DJxMBb>BxKyZ(A0DVvZzu1p# zvj(|x0X6jn9C1xkknJd(Vk8)CejmVK&T$uhr79_PEKkSG30`SWB!Wy|hPrVp{S>k$ zBs@dZ{442ky4g0`BgpXk3f*Y2(afmtPTDrpCx$ZHgUxo3&Gz9mqJ!%r1}~htZ;%X6 z_^A+MVRaGBB8H1O@VVLR#;)JKb>lWqzEYXj^v%~?=o@=6cI^*3FSoqA*|zL!z3Th9 zwryyU@%Yh4he!7x@{P_94}41PaPI?@!~vE=qx|=#1~0NHh+~Ks=N3BO9lpl`nSBvoJV5Si z`=Je$-!0|ht+DB2pfVot!nb@gn0*NmILwPu$Xy75)^Wmb3G0V7q|b^Ub|;VT(g!go z0lWOOPNd7C2(oK2d6TASivY3T@KH*Clt(pGS`jcis~_vn;7u5w(+!g`U0(RS%TX(L8}x+^7I3V6Vi z18tj!cIYv-9SE919g#2~p_RAt5AaEc$d3*o(Lki_5)&(%LtXSDS7q3s_|j55Lv(0c zcIyjq2#PQ8RIZ8#=Zr{2t2dlIALq91<|0v89(a3 zy+fzmPEC{3${d6teuX5~?3r{?{;UvWbbgJ_24(x)HNU5!sUnLsN)m zI*p5TG8_@;&r$dt=9H_bIEqSUaFRCV9Pic3mxnLD`1#=_@f&RQnyV^z+(EGem zhI7!f7ti@j$Sa=yV-pzI!w)~Dh)~^QtyTkLtS3HyZ$A^y{ z?Iaz?igl;m%cdotHug(orSM$lS*+js@dm=jZ031JOZ~%#)zDRNF7XuV=WuPB#Fay) zooUM|W{l;v&mVmFgTr^f_eaRIF6;Iz%NU#30JML4eVj=NSOL=-ARR?^TT%$ivR3fvUp!8{DswlddMUfVec}6mBz+nUD z4*P|hzd4Oimm$SVwo@%sPCQN~H)9HmkHA~E;6tMiLR<8GOxd8{$_O2_j{Sz3%aF#_ zcoC7cNu^x*fNzyix>2ak8n->Mcz)D}!u2_A!yAHpg9dtRn=fd?is{!3U*q?@8d>4| zYmMb{b1<^)!0N#l`7W?&?0Ms+DZ!gj^_JI54lQ`o1AgP0?2^_+V@*4VOs|TV!*a8M zPt(uw5qbJhyUH6n9X;5bwGqpR9PRODFWYX$i*R74rfWMq79xJrPRcH%ZX5tly-G;w zfO-u}mO9TyqX58>m81f#AKH@r9h_yWo2#q~t@Vd*tDpvw+#BX)|SXb+-S!lndc}jHer|LbweR7sV+9bYb!p{ucn55 zTU!+_zHk;Vd2Ki73;vQEaWbL+>$l)d0~lP9CtaR!7Ka_SWrK7Ss%Tq}aDMjvcqSQZ zTp8gm|JXKY3ChxUO0g{3t%Te}K|bu39TDYM(ehS*QjaX53p@gBe$|F4m^YI;uG;Qx zVWRnpov-*tCDMi@XiHrK-NS{F*w(rMM6r!<*+= z)p^UBx?`vmxDclwnz!CtXz&ZsV4o1_$aG$jWoHRUUul)^h}FNevMIFW-Ob$oIi+Z; z3bW?6^rmszy&+FTO0(&!GB#1h4|q3w_jq$P{+`-13){k$cv^^Tbtp#@_tIq;h6h1Q zjG+Y^n6q4R8j2of{=>=`5ZzmWim>%4RC|WLLJG7OP?rvDw57ft*yztT!~g&w07*na zRN56%OF>w2zDz2D3YM|f{00l+?4fjSr0Rte!_KuosjCQe5);MX0+F4I*O~lx^`C?d%~vJLs$Cq6npyj%WW%2lfH$Q zxwG?3ya{Rcg)Q?|-li(Xx~Kuqf5x#$C|n(x;3dJa9iN8HY%VdA<9#iZ1&h44Rq_m^ zPH<~##sEVHb8gw<9fN==-FfAh%VF4%hV*HUmHHf;04Bo`50K=?QPQj(m|3aV+T z6lF(ARkU>cpo_6YCW~9pzA0y55+8c)Enc&R$vZ>_HjvY_P?nD76BJnkXH>YhWV305 zEW{(Zm)A1(ba(QDSSRh9tSvPqO(B&iijD5LER%0Z$l3lZ@Dw`zuf&#WTTYHx&*$VB z2z3-#QCjC?eI*x9#btXeS&>8Al)9euMXx;MvyP2XSu6o)`+mwv>1$r!>1MA_zWPd9 zuYcUgtqor`c!9a8Yiyf$Va3we9+NVI4lm>legoJA8ZVr)sLw^aJT6S-#5os>Ahz4b z_`+RbyRZG!er3BUodpNd`A4V9?C08f%?9<8Cr=Om^S}IG4*%2t_}`bW(C-Dibm_15 zM;0|M>1VzcOPGs7I_-wtqdZLjxli7rjB?QrahCl+pScO^V%rr9DEGkYhkO$l0@eT!8w=}IZzaPUMf9|E%G?%s?XQ-q51Z~%5{y{F zP@41#4p<`XNodW(-#{Mpb_iulY~|Yu?x#cqBxII4P9s0#jlKgF%;Z0isLv z*wS5Ia&gxMV|lM%aq|IBo4eqneEI!#kj55nZ|g}dupeiA#OeDc)uV=l~wxq zXxLn~7rs2!o(_xTlnXrlg$|cOR+$}}z);E8j48fJm$<$UY~O$nJ!;OFM5;E; zGo%a!h4XD1ywvdUu}{D-F8m}9M%_F78nW%4pFR2V@X531hflxw>hRHT{l?*n4Nk>7 zzHB9<1UiL7MJlhfjd7#`OF;%_#=9ygM=f>Wp=`(|;zu2KhB*EJTm&Wv!B_JAk6PJE zh%0VLIS8+#Y)gNMBS6d%2E)A!4t9NzFc#4q?gqwXAOTT_dUl5Xhe zbQAU72Ok_B{F8rrxco=|`0&PsTm1*aCFA}52Yw5l#d-#2&mA@g&kO3V?-N3+?Ol$t zvWgO=0aSh*3&K(3Jf!T&%wp@>c->e#%>i`Gx7}o8rC8wcTtp3ep0I33=2*LNCvt9` za6%B%nl@&P8g|?_1V`Fz^l<2MLUaFNws|BBTJjL4t>{0`N8m;qsfA2w^p~Q_hOh-% zYC13Fxlq2=7q(Xd3@)4}w7JSJtBRnoDa$a2^eE@RC8w+vyrx^mnOK|S1rrANlI(mz zm*XC>`KaJ`sTDhMLqw_sc$X_15^8GvOb^*a1C=;@0Wfw&coPgwlX$d`mgmI`|JGwL z4oV5t9uz)p9hkeKmRz=wBQev1seP2JdYcA-ZNExod#kjO@XU3_rf-J1S$gTPu+27m z6hv8?^W|u`SSa~-{IKl1HPhx7W;hpFVrSE1q8lCZ9Jnaut^I zkk@t(xMA_}2Ol0DKYo1pIRvk-c~1v(VmF{J@AFz`ZV;>)Z55`h*cVKgF7sUGcY*)) z;q$|XoVEY>@SSlM*m%=dldY0@v=s6y$GUUl*H0hxxxc)oFS@jz@0>^69=_N;{TsnK zOgp1SPR3X^e;+;m^}}~R{gcv{*D-Sq;ifFVjCatv>HUUJsp!KC&Yj+<6Fc?mke8v6 zv}2`D6j%GH64Wb;hXwHDHPFy{wc>fEHuosAILpmbUXvZ((N zPdn=u>GijM^;%7&^Gz+U;>gPnSk42TM%RV(QX;^4lN1_9* z180AzIx4^WO7FBq{1sjH4P~K~yI@iv=Q3FwR<`9BcH^uuPtXqSl$?0lKq;Y(Zt5Z) z5NAC_L0DpEc%`)61&n_vkL^YoO3A-v$`3izk@_l+ben|y(P8$CTue$ z1BF@u&NdD%b0A18aAB$pqWHT5WryR_+2CcK$M_yBEt+D7VXO$@kEmTSD5ECaE zg;7WnViF3%F~kj>Yzur(u+PbNDx;Xy_pWdk&0TOx5p`Oz(wtg#Uh`datE^*AaT{N6 zl%!s?VqvviuK8n0<`?oEy4re!pxRUhXdh2A-kUQRj)+(2VpHj83r=|gSq!N*HiT7o zNha+yVp^8qO567;ZERn(XN=-B`Kf9s?g)dq%sOHm&Q4#4eKWn7PU`~7A)T%K!!O9xEohmO0++(T?8Ep#J18*A>L*;8F8^2Ho zfLvELUyn1A$r1%70Qf)HbG`tY0YsXe_$`xm*~ox5T#Aycg1dwQ^z%?;ZcD0h30)su z!=mU1P0?lVvJHhL51|ld{0&@ALvtU;Ep#Cn9N|%1ShhCQvd-EM@m4GtAH_*5DWvz76pB46=z?QK}e^1sU zGFRIM=$x>|b-d?3hE{%oE=h~u9igPG`kJ#&rgbvkV0k?hOb%*sBdp;jE2t=i2_^Uc zarZ92mOa^>*Uo!yX8xY_v|Uwh%kHi!+f56#1W1;fQLBYOAhl>D1}%XEGb9-Ih#CI@ zFk-|2deBG=fRPar5}-n0<7%0AnQlxO*TZ)C_sZwZn|b+szAIMj*yo%)C2#&?h6B3(+KMtCn6{`9y327Hj9f(pI6@dlr(!>rQkJtloP}B4X zu+|a;l%+wPU>bIsALX55@77m(HTx+S+m40e)VvdMP1&3)dc{S@icGnDZ8|~eFDZl| z2V2eyt9)%4kQx(3s|0z91}Z9%0j$PC_3_YPg!q07*tdKCzfbsp(p%S)^jdm zy&vF3kv7}ceA&+4Iei=jGbdO7v>^F#rfwo|$;?He{rn|Qj9@+|H=#L(Qk!-&?g6xw{m(x;kC6x+Bt(?^4)&$02m#w zaeYHtRWrq4bRbW4NXbnR#6UMAihKYn0i<8$8zB7$CVc{f5bM$fM)6J>a!Q`_(c7k) zr(P%b6nCwyW}BOm-a0fO z{w>ayo}o@&`{3I3K%Ge{+apr_D+ZjQEzptUwPZV@%&mU9L-k_upuI7!<<;!>^GdKf zyF*AC+uS+po?na2&C|RolyQyc+_ZE!*$lQv-u2avXf-b(>M%|p6X6dkvfB^1k^PES z{J+YLJ5R=+-14QFya{~$=<)UezfJqazxd0{UyNHmb(0x+vkz#P){!|0r8w#Z%~5#z z5(Q_Z@*Z++me-?&F}OpU`e;$hAuxZNqzz$Oa`}J>j?JU2aZPTXgoTzl2CbmUlr@eG{saE1Q0ttljh}@zp}ma*Z=x<`yRhBIUW@9 zoN#sD4HfX&_(i|-uw_11eEhB8+GbE3cw%L)*4C@KfC9C$*ixjDkmMM=gIOs#MOn8q zVQ(HJux`ImAN`}=X!I>0;F;guIKfu>rRjo=2T^sCP^s10LrvjA2~`my)PiYHrAn^= z?s^mV(PzD=)?;AMXY&`kqftjP7|QM`eGzYQpGTWwNCsJ<6)vTl8)TCKCiB5%Z)#U7jDPuYmM1` z-YS#Uwvis_&X(?Ey)cDHOO4@O4O>{L%FdD;>uJmG*J*@PLt~i0(*TvOmAqqMo(IYx zNm){1gC(0?1uDZ8vWQEY4_-HYT|?SGT1L*1n$vxI;Z@Wz74p>jqN!M0F59$Gdf@6W zqTuXL2^5(_v-~Q0Hw0YQO6WYE&9a-Dtj8iEwjwj*%=H|!Y}`HIn+iVU_u;?s^S`+L z{N5{2f_^8QMu?miI5;}$D`bj|gK>4Jv9n=76K$gGqB?OTr+&<=}aY>|}b%G}fWam1Exzj~n z#sPG80IusRw{^4#{XJhRK55tqZ}ozL=Ddfvd&W)qfWxm0Dw&Df^vr_Jx@k$ zt#fO}k@fM3$>1(8_yTg-I6wQAvE#*$Ft22!_W{~_oX_ibv+=^d;*bIE*J1n3N&cF% z540y1!#3T_I!@c8gf`)!hHG^gm(#?(Pd7#{AI_e+-RsjfMReF8)h`k)|?Y zCBo~}#8x^5YZnC{Xyi(moH1kEK5`w@Kb8yNYNs#s=R_N@yWbXZcH{Bp@k6`^(1a zoh3zK_SjNFMHzCWO~YwrxZ=j`Xe&ULL@75lae3$>01oH`_Uh7pRx}b@bQ9RpE5{7& zrJHr0u&;oT&oSNQ^k-?p44knHOtiEd^rsFor6wd^w+{j2u;U9BMHAh9 zpaEK6wlrkThpdChqr8>+P30*f>>MUQuAfcjoAm9tgCf9Hul~JLb*cJf)vC>_EWGP0 zP4gv(M(K(1ATHVoZS{lA=;QlY_lGd0$v%?(dZ{+}Kr?|;@Zc~r^o&`1FWqz4yK_|k zYYk;s*yNL}Q9H|v$O>E0l;0yb$A^KRc~>MH_+;f-!Nf^7@YPU(rAbd{*oPGCPNS??PHowc_99?zXjttR}}oZpW6$oC;>6Ace9E zF7+j(5kK@QV+pjiuzE-%DBVH5+f=J)e1^sgl+tQW66OVm3pf7cjC`|MmkfzxvDbsu zM$g5ml!T`)NL+d&$%{5kfX2oCg{#Vua^k1z#j+RJ7hZ_4F!hFmi&huf-gtb8P&d#( z0p~*73nmw$+JdY)g7e;7;-WhBqEj04EMY?&--KvW+#B|!0_3U|`3XD{6$dM#jTw$LeYt4i9C;wrnNKPZB2Ijfk$mk%p{ z!_Du~0|`)%X{S^vkCS*dfhpHUZgIN+%#90aVdxFs;w_vqy_gi{MXQ^SfBN|8_NR}Y z;&%JqAN+9pkALg8w}0`U z{*7TMRQdM;t!@lCXnpI}uidQ+Jp9rhVcd}LBG9h{^y{r1r+~b+FGI+>4ZJxok2ke^ z(!YLt36GKGjnUks(nyo-1B3Ub{Hj4OD;;AA<}gb#r@xH7=Ckn-82vNIjg(^~{;c`B8j7H*r9o)UibE8{)}D*FLKef!=`HThp$ zzv8V(NBK$n6=P_mQ(oPs28|#fjbi z<(wa5*q@MwhZ3TZpA&FhnBR_P(;Di``JOK#$MaVDh_XcTNx~Q4TGtjzr_4(>JnUal zExQB?PO83FNJVRB#U+xoQGM!_srzjBr>4RwFLV~9jz{HpNR>M<@j>0xS22`}<_Hd3 zu}(zj5U{daDVe2v@-^=OB#e|-UE!M+ifrs)`rKKy`O4NJTe7)rQC5(EJ|a1k52HL_W<^l> zq=hdJ2I5S{hjjGi3WLT}++Jt4xhHobmlyb=7Xc`QjAlu4cdYLVe>Xvy|>f2AtziTJeJb^Avb zFW6*OLt9X}QW{b?*Y^+jhMuo%AAafEY_7hCFm&3$(OlHEM#c)}|4Sdv%v-U!4eTID$}z4WJ8Bpq|VqH|5`Jjw}K8;qLY*p;v3 zLDHO$IVb0v8aUV32DNU`9zM~iTiB0VwZRN3f98WMpTdGEbRzU=)GT{k&4w9 z<0ODsYcK1Hx*kw^q55Wji!o;5loh5vkM!HG5tmqwwn9&2N$pJx1i3Z}JrCC^EA1d+ z*igQ4gg$R+hDtZeKi4ihzxf&^=M=D*DxT{^L_;pf1pvh4-2~?=k+1N6Zf`BO&L4cDX_vC4P-*7P#?ld zoB)!W-kk*Hl;B0ch=t_46; zYgBbb92ozUTs})*aVuKeHl*?@okP}MIMzHO(tprvuKqlb5hc=>&!JZspTwgMDVGoO zf+tCf(%Of&+6F>Q#!)?=42D9{_aRB7MTtIyS3 zCmH8CKK4n=b>1i&(*D5uFV_~-E8Ymz9|LHq3u$HBtYjyzTDd#uyZ;ux0;F%ICeivm z>06~8zhft@MCS=s;`3$r&avWhk}g{A{JfA8D8$Nax%1o^K>5_T6V6d>hlUa7iDo-A zdNv1u*xLwmeHisJgQMc7ipJ`113Mp#X0io*#C2a-Z78myJE5MoOvw=JYN@m!^p#~Q zhWaRI@EGrbnE2v~{H1tDz%-x>Q$PboF1*_HNTF~bLq|;&)0*JQm4gu_bAXQWR@4}4 z5J;0bu!--8TLDc}^Fc`*GP-ie2k$DP9a3-Lg*>-r&s>%T^Fcr~2&wV2+f)cKEwgM3 zygV(`>=1=%`qU8D61C5HYfo#rsXA{dMU%OeVt2QaQ#0-^?-<9H(D=TOtwiVBdZ~#% zK)K~gD_yy?+tM<2nP+gTkVeP+wW1Tdv?{HDE_bdylv~7zyYv1r?es0vpFR9Pe*Yil zYoCSru-r^1>??PnfDng_q)A)jrRJUD*yD6pg1W*wP&>t5iaiib6-#N_`sY?q@2=_3 zP3&6=>bY0)F0ZlNZPUh+7!4iovibYL2k+-6FE1avHgj#ztI%`4or9g1Jyg6QYrf9U z$$kSnD1NQ7nFrw*G`+wGbR}8JYiAUER9}SB%)t>*QT10GbzqBHT$R+jk6!}HM3n`h z6Bhq&q-3q^iZsNPHGfO#JS6g2P?iW6-PTF5GwqfYu&htbhothwE&HPV+^*^7toC?u=*8m8OK%u>8;h@UqmgBG(AYih`{XxO?{$c1IU!O8 z8^o`;A>?mWg^#Zz%MEt*@OORh`SzXP{olEgH072`Sg zM4_!(?!zAXSqJeIulN+N@zoOye@=U_L8R1hK`--35>^5xB5c&okw>PK1G&<){7Ew< zR^g}N%aB##iGYJ(>5S=#@oiXG3%g6CbdZtooG7X43E2tFF7X60s%2BCa601wyRy-o z!KPhBqn_NXfOtw3H7g}jkT)^R{h0C=Fg0^GfZYi8w}817$)DrB`oa`NA^PC04Pg8K z#71Txb`!)?gE6pf#3p>3JSv9rm41j`L3_C))Q|`%=LcVI-p43u@m>G@bMELr$1!Ec zkR#2_;EVhw9b*c*7kt>ybw4g+#>pqsTDU6aN^p!na=bHV-td*u1a7+q@yoo86ur!m z%KyL@f`9m!rc=R(MzFd<(P z_ZP7DGOVQyi4i*wc23@)yX1G3@Bijs+cq|SUsCrx;EiH`zp%dAnX>1AhEvHVs$ctT z*)irsOIs>(gir?#G0~QUn1ggXQYHaMdMR91$(Qq#eQN`nrO^NYAOJ~3K~%)Vb6tE4 z-ZmmeluL>|!yX$ua*M?WJ{1AN z<}~R8pV7Sx`VFWvyV!cTJ5#<|bLHZ07nW>x(gGMPQ>lUsxJ1%Kn!=h|E0H zCem_{9HL9Y#XS2kpw(R2-X@*$ZuEZq$w%9N|K0zFI&c5|$q#sf|2c4eM1b{TWO9zkyo4NOd5+3@(1~J6 z!pbKtsP$XvgAIh`PdEX6m*Yd`y06_n+`h=V*mL?Giz-W7=XzyXGyLTGMA^3ve|*84 z2Em9m9i?;}U5~oidjG)}whzAemzaxr6Sw<^^9>VVrX$aUnSXiM<>p!9@!-KbzgRsO_=P);s_27c_zP#3zSe~(lM!%M)?QqWXtQ*QXPkBxN znV4f+?4~pHbw=XBTK~dH+<){%vNCwU$A?d|!JGEiy_(Y{&b5U1>a;2S7>m*`bgATp zo}%^HpY#S&`SW%b{Iy|g+t5FN+ck{)ORhf@rL$%p^xeLv|5{TR1wz*CGUyXpX*r*i z0OA##2R;b*A=9iH^=BK*R;$|n*2~p1P)?z;euJOES3v)KbCCYh) zIIlOa%X{Q#BWy}kZ(^cs|3=-mD|oz$Y(4NniabOCofp9InsRYhY_eX^Zg-WjTT

    @@4*|9_ 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≫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 o*>gmyP8w$ALRqlsqT)x`^S{z_~8u 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 z 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ⅈ=kFpoSAJuSLW9EF$oT$eJ01RT8j zjDT5VcYRpz(QXtnz;y?EYKoYjDj^FkZH3dI&GxNn4`=hMlfxDA`@8C z6}kv5!ChC$MU1hQFa$s4ltd0oz&jTePYutxwZkb#NooGX6S+cH~wz8oYLG z!>rp+gzv~(L~~gCwPmgA!w%LNv}N8?;3avMKT|G|;1oEBa$3hF-BLKvL&zp^r8Z#- z-+&L!It}G*1LwTyQlypL1w9u*jpuI83~m%xgA?iI!B*!&;0RId0gsmvWlr)m02x3@ zFAX){$(NHW2ehHf(E*m7?ILHW_@$rRIP!XN zv7(30bjmHb4qIK4@d;{QUtF5h`7=T?be`tt;M`zR%&$ZJ+c0XCunzVewffnG zpbXjvO-&~1>ECSPQzl);A*te9N&NYvmW5@r4E}8k*34f)ARl?+iUQLDpY*j3`no9h zX5t6!#XoLrTGf3m7!PWOHZ*KH_&s0!W1E)Nr>5WIC++>acc=GwMcl3T?o79N9oTJN z#r(BzeP??4V=w0hg-hJYe1&?NMN|CXO&@n}zdJpD^V#Vl_4&g1mUS;=X9JVXmis3> zZTrI?PG4i=_l>W8efq%aclfYMz`AsVAKBikK-NS9w+NUQqcH)(m&%*8B(3X`@1lVx@-_E}6gMem<~>#wJ?fARlJ|Ie2F?nKX#Et2NuB&57?%7crmX)^J$ALjB$3to&_yBH8+xYL-O!zOR?RpIs~gCg1Cj+^d|Kn3$1kPU+QNY3|p?fv&>pdNxm$j2%_F__Rmmf z_1RxlhJ)cis_;f+mux7v9hqPAYQ+k!rL|whjlB4JZAylu*L@eeEr0omaI!8~+m3jv z#m9N=;KyEkb-MZN3n{<0U%c|FohqB!Nu9E5GH+QB@0C1c^3MSt^tiAlO*WDXAu=$} zg5nq354KuI&7Wfvf4WYprNl?xa_abKT{^=)37P)lBYmDcrUe%wc93^mumm)~A8zUK zkNMs6#*)X!ocZwtsx8zFUCmCx_I`wnkpxSvm1+@SBO&3oD$<(`Rr9i{*PAOJ~3 zK~$`gr#v-FzASgDQu0VN;?!kb(JyvOHgj(P(d3%|(`RCzZ^7Z-lF(|Z{Pg1Eda(GP z5;TX@6}89kS&wO7!RvS5kB%-)&%N+szI%9$&EG4R`Su}oz$a?TPl{2YmMQ^V zqY#C-IUi$!3zl>`Sa8;$!E1(CgndLuriFPzn4KSU`k3p{BjPCw>P|LyATPZUJnK)E z5NVLEiY;1z#N(XHR%y!Ob*y|+m3+w)(#Xc()8t}V9XDm$MnYtp?y$|Yoo>25i;qfu zN;E=&HQz9&$nj9jd@o&eKtUP#S3!=7+dujm)9!~B5~-0S z8NZYjPq&R)MV<7jRT8c57W+PLlQM&rvrIxYH+`abVQqpGI%AZDVDSj$$btX5p;ip@ zG3sjCGzh!B1L~u!`lNz+mRD~25@fp}y$79rkDG(G3U4LLlj$&@?O#$&Lhz|%mX9E* zt*c!Bi7C81Tlg&UW0SR_dHv3=SrE#V9u`}uExr7t%+%$iu?62-7c(IreVz`gr+)1N z<={tuQ~A;cWSVD;j4ww9^t0INJ6lgwqbFwZnp>_@@XD^;oN`DVFdq8^mHfW$*UcwN zw;#eUTu+?iW`2y3dRCuV-uftgV>WO1c(py(8OA@4*VN#2j8Xt<}E&st*smJpZTOO=HwjW#G5j~pE3~3xCi-l{ecXcx<(KGSbri5 z1bXIrZE_V5A06sRg{{g}J{Gs8*A*cYQE}^dWEAL$N5w?NiX!8vE$)_8^{G-R@4=Tk zZoAwHn`RbYXh%+3uKqHfx@ftO_PUpGm`)ODndyK27OOkw!Xsc4T4zM>~Z8S z&Bf!Gmmd}0@wDT3Z|3yrZs!oLy*S1`W3Kh}Z+>I?&iB5<4S6@FuYco>>GOZ@3)5#l z{hL&&i_FnZr}uax(p~0&xj7yFM}Gdon;DeLO~S4a-M+)ylivL)V*(7JzF(%k9x*3; zz$atQn4dVGyw8{+pNAmtu94)bZ5_bi_ElvBZ?xYne*-D^Qzo8ZF?OWSgBuIBfYeeyc5eMX>l$1?OyU(R`Iy#v|!(bwF!yR;y+ zhDiEB@@xOE<@HxFZPX=N=RZtV#Y$7DbZy_zWL#W0Q{jk_?oT9C91+M67ShPT=4cIT zWN3r`@w!orP=G7R&<1$H#y1TiQJ6*3 zEMtInU?3^zDBamsp@9+cY`%)d+KwjE8W4El7X1|y$7LOA)BOV|B56(ugT9mV`AP7Z zAd!-`MGH{4VN=^CUG=a<)bwE*j1Ai^*R{;1*-!*p^`3HLZVB zrUiT>e(5x_&rgunV7#S4D{n%QvXI!)3)y@bOy~N1`9HX@jlQ1Qbz9H zpq+r=kT7FJbb>c-zffAB$EY1Ge%ny+L~I3;E>F}hd4dAn(aKXw^%x@MCU9XW|3a@Q z@ay~mz2PtxiE?~6hBxtFhnd^)4D+5ySn@+R`u0ReonL5b?0<_9W3gmYEMZ9xa`E2C zZW8zKYwF1Co8mBRG+P49UWkNy+%WFqJ^HPzdm__&!d=?rk+g^%dTBjUM9@Z1_=ul) zB&K^q%k}1P&{#rM(hguYBpZ>JbJCSIlNWQ0lDUHwY14UQ)rcfhMU|n`mF}^3g{sAi zfj&L%~8zPLla1+3NBb8|wxS+&YMMR$3@a)y^zzg}Iiz~BN4j>=?NXY=nw zKNIdaXZ!$b1eveI4!h=Dz;ISu&H8e8L(pSBndLd7lZ9};rgU35*Z}Vh|PYh;5 z3GpuOx+&}{a6fZ6nzOOgt}XlB6EJLk`0mvI#woh_%hS~Bf@l^bVu;m=UtN^&LaN^y zY8`w(4D|xi`X3K%7pvb7;oqYSZE^F~4KFuJz1!Q1$hmvkycdEtOvjSd9CIOT+w_S~ zmoL4zbOX`W>xHQ@yg2jn-m}FgFCHE~`sBgkkN(x49)9gNfAesQC;0B)y>qyGhbQ^& z-A#PO!uq|tw|N@uc5Yg@cl$Ot>F)Erquadl>JmL?yl(T};Sc}lUmpJ1@BWL!pMU*N z4o_HIc)+W~9rXeY;g11&2e8> zEMzV=rFTOZff;{VR!0TF{6w7ytR;tK8x4Yp7qa zc;=JMFL@x?1xv@T6Z*5$(ic8aL7lwhCXW{^xaP@1pQg48R-?T1m6Y?mZe|(Eex-ftb44!ZF zv#*QG+ZtS;M31FmohQDNIdy@3eWDV717mF`-<|f!Uwv%*^649&=r)i&Jj0JJCc2q? zn{`U%+~HfnE&$1Y<@jn*S^Ugqk&CHhd3ZdFs>WLCW{_7Fc*=q>bVhcaTjrw-iZ_~A|TZdCbdYhQnTM%sM58(e7x2y<;qf7>p) ztkW_&wyOlzjPvR<$P>LQZcdEBHi*2WjH{QWwWN*Z_ZK07lSFv*ZD8mW6rzPAn@w%O zY5UL+M;2{UsXbE_&r!jELxImcC$BVewar%5g<{7OaO;<`Z}>dtnMRa1(q$8nexNAp z)J=el1&jx7v^;+DAga}*S?AFDgvYBiUY|hmi4Xay9~$nw4q6>8^Rm+UzzQ+NN>VBO zj*l*2pRjP48_~#T0e0*Qp9cHS!8T*G!fWRhXmX?A5KN5EMuGxz5ov=U#3jg#ZBm)` zhb~80pP4=N31FZ2&6B`v{DSl6H_>ZXrKct+LxO(L9%T6awP}ZLl5BGqZGjjFu{20y z@isQ0BJBVI$HvMGVbvq|DRZ~S`QGn?!y}&H`Gju)Iu|*ku6dp;g0;fF!IEbBs2ZK$ zW-}~>wgl0{acm*A`t~I@zC)3GQ6x1DLC0&yWw(qNlFNh?hb{J0Bilms<_%!NEf+M> z%OY((e8yOI&N=JqaGxiAFL~AYop1TaP{bk-uS=>bHO;8=r!@zkc3&ALSZ62$@tzJwkUyIbGM;qjuHd4G~)`~HX z4Ik-=g@bj&+i;W=XkgOX|CW>^Oh*%1RulZL$rbyCFf`#;xU4eUhOlu8^9I(+cO25E z4r#=xAj|F8>9J`Ewy}B1N`GAjXEBnozpibajh~cKe^KwqiR-DiC`Ct#8X^hN13<0O zyqd-M%d^<=mBpU(edVdAIqIJB(zD@2k9-)T?DS1i7H#$L=rJ$eqkX*R1`W}E1sF@= zn41}!B4fY#6D9$9n*j3>Z!}?s1YP;GLxoqIfAiT48BcGe?$!5_r$`m8#kS{ePkIhe zKlVhArL!g(ueE{E;0*beM@(pQPSGaxAV;4$Mz}$I;-{C=6tT$(inh_mQwKN=ik1<2 z^=0^5GExbPLNX<%jv>^m)BLTgw&%jht+_DPqAnXps*www`rM$Mj+?&b-`sg_5D+hc zb8W%G9j67!;T*xam}SBD*y=0iPuU%N^_=rsHf-3?h0tPqGg)5g>dq|!Uol7i@RMij zMmj%(;I*P-JTjnyCBF6h0rMl@ zGUY}u<7?(l`dDkR6S>}e`N$1o<-_avq@LbCpPV3VQ&oD%D;7L zsSulZ6HulRC;od08{cATeUSk%qNFjsTH~T@e#^WeAa}{b10qM&O^N(zQ;V|in4fd);gp2 zaLwYHkDoU3=gqbHDq}8Vq8q;_+`Q(u!=dVJ9%x4cn+pQQP@sb zoKtjoTe6UYDq=igJfZ30t%Jd}+4k%=z`-@2GtANKoxoM>KukM^>y=20&C5_I-jo_q z#?hHWDaQuwQ>uB-@e?}|nc2skFBBeENW6veCM!wWatV5@-jW~FlbU!}kR;{ZaHOX` z3fsvCAZ$-x?2aFRu>PPP0%0pXF`yNS@MxRcu?)cuc%&U~#LiW3LnzMr49;{UmACy! zz?2la5`->t7eH|3C~x%_8$7<()-0thnlZfnSn<$ra?4wtW0x@_A~eqTv~Ki~lyrlM zsP%;h&tZ*f>DPnz+!?h1Tr$$m@RJuVUG%&ueS-#)gyEAjmmyKGWWh5s8y7jSkzxEM z*rs3-672)xl$d@ZeBmPtL}GlcFVcPjfQNcY-_yau_)StVR^wEV$qF(-2!MF8hIa?v z4SFl7g@$3=pY@8_V~6^PIi}J-ZV*hL89S$49l0h|{jv|wU^deRFs5$01~3Hscq7^a zzwk8G-mpwh^l8P|TMXThj+lw}WH-|{X_Rpjw&xigd#a&7;`SV$H$74p|1#{leR~?x z8Ov(fYqp49qWY*4nGAchEdOQz4jGhba6N$Y!i(cxDzlFf_?qXpG9wik?Wj`Q?Hwdt zuwpTr3A|6`^#Xwb4q7KKP7!|)f)}*C{M0LYsGf>-`eQS)shKMZe#*k;tykRb%tbI; zAd3*Ov2vsq!4p*gH4$;d5unF z?X7ElUN3vSB4a1?&;1@JllKX3NWOZ-(~`{ePPjw%ITuc9_tlfi^JeZVHrGDk^<0_h zGQq#(X+z8Km?we1r_f?+DVZC%3a0BrJlGRUM2wrfPv3CTg22xoVxMDY$ zeD$*zRp0NBHiaJjIg_XFw~o&u&y5hNxjMKW{HEwp!RKEW@3 zH}QqvVAWT^6I&k0b3JKd1^clZ%U(SBC+a0__6ZxdpM3D0Y|PkxU4Xb`$M6n!Hea#f z`5a}pdF|X47p+&qXxP4<)%Nb)A976sfW%wz|pZt(f^s`|S5*v(mr z7r&2vxnSbp=A#=-+DH$hOfK4Kmy{iM-S|~jzpoBGe0eejAGtB>LZBBPJ~45|UF$ym z;CHWn^LPIF;XZfA|5yLne|-31HVz_j8R7)@oXubtNzz}rYyNOfyW=9>4cAvJOlX2n z`FewgzKp*a*{u^m_!eF_c`2{X@HN!7D;IZPl6DU*dCKODc*abp!MG=966@WxITJ6D z<9ed?t&g)P8oZZ)p2L#CWc474MZb4=+T^}^;nN1&7Tc=O_(LpXnX!GHg9=Idi6jWx5Q@ok71uaLMJ7EgDoQLITr*b>mo>dA!GS61{s6K z74+@afoh#YSRa;4d!+4{rG(mIeHbDQAD9hDS@=j_N@^R>H-0|Qg~B|kBtqgPhUZB57;7w4+JnRa)xYuccx6M zSw#B6n>MT?`*Ows9YTjqS(RZ?7WX|qqjCEk-$rqDxXsNbwIV4Nc^Orer&lZLL7oHW7PPP73>YJ&Bm zK+nC>w=XNF?XR9Qo6#cdo(Jl)kZ~X&ceI;UbLCOm*{y>7Z zFei+xlShmv7da1P>~svZe2&Gdkgs^{2WJUx$f_=GZDn(t>l*q&o&v_LN$Y2ITmD*v zC}h!K^|kX1@rQFaj_kjVd9_DdbU<&Q&;5$S;IAcwTC7%E`;CnvNBRKlEi^? zbnfFgmJM0X6~3*+c93xkd}uic!vm|2$)gDC&-u6K#1dP#sJO&a=qv5LY0I{nOuHD7?idKgB9dnCIp>Mse-97iXFNof{5G%^ zj;YZ!nCr21wx`(JKQfltWlY9HDKq~HAqV~=%X}J!Ia|wWGt0{%kA%8pNs_%G;;Xe~ zYJ0FR7&bb}YmvQ4<1yD&>GNRI_8}d2IA?zN=<(qX{^<7)-~84$5C8Z_fBW$6mwxE* z<6rr4ZvNuc&pZw6XMoO`40>JjoHvztGl8#(_UYh9@OmA@0jEZAr{(av8&bwyd6A`+oZHjyf*^o>0kSRxMj3{lhzy6o~<`cZ9-PUIc$V% z4k@DkG_8gk$Uycm(i$Y`3P*lTDy>ItGK^GX=P8%m&H8VDHuAT0;i8q`d^`R&A6VGJ(!-)( z5X8jNA!sSdiAXed^_(C$b1IBSckpNU0MnYq}1AsGR~JGup)`Eq2L$jrM3#h}L0wAh}6LW+1B%yhba9I_uH!6%?p* z4`G?-07*J=4`Mf%gxc3K;otd-Vf@=U*D)_{+IwWg zUgVU0$wmf%;8*P0fdFBK*j816tz_XPNjnN{@@)^{=is%WM()2}R;S;tbO!6fx;GTCw0&Fb|G4U{tu$8wT1muCA_QfXi(gaCt za^ae5zW7z17B1+pdYG`uS-?aaaHuvjH^55lDfeQBZpN+2-;DQoW!;o<4Yo&4dT#*f z_~NFLYxy$l*%W2IB1iBwroVb-l)O#S-k=*a=|-Ps7PwDCe>xIni}{T*cEDZohJ~Am z4ZgbmmcN$RmvtxfSO-UHVS#g)W-LqQ*BIV$6{Hov1vwU9h)uUII9E-`qzz=IC#w~z zz~H2(9bG{c9+A+g#|e!gBEv(9IFqe4QdVRIdXztdv=_3_JjHAtQojg^cdyAASsM`I zUZ|($!dYBBJ9Kjr+wzlGT59oVmA6gE3Oo+_z{z`w?Lu~`DrnQTDr>B_bp75Ycfh*< zz>LT?;Zv!8C&}+3dr|X>jV2qA7w(qFr=V_KvIze4BCm+n?_R)M@aoL(x&f>)25p&i z0LQ~yz$KW%5NqoXYUp==+5E+Sb3v0buX5Wa^GY%XE9WSc(*Yn#6>%2^C5 zZgQw!6a3B7ueRcB;$Un~g7hlr(=P3h05hoo=0bq`=~Fi7*w|&a7Z|oZrC0Mh;TMn34j)5qe|X}Z;%x+&y7eI-Lkk9I#>}PZ{*Pb@=dAe zqusbW0ZtpA@#OO_{`zkm-r6y5m@HPU=cuDz%D-B1q?ZEpiE1Ihw@U?ZMTy4C2NjVYJ z4HGtWSjg~u!9Jzyrm^DK3y$xzxTlc6uU!q+|*N^B=N zHzGSX{a}+4a))ZG2z!*<773ENAZ=VrF}X-m+uz;)CUui|T9$ZGvrQr%9Dr1l8U#t*UieUQ4psZjy?pp^QK zBBZQBEVEduT(T}i12OH7Bld$_ehkmjAXcKn+79)VJO*2XcrW06GSgP$V$>5zykQ~d zUefj+jun-#fhX&ijWuyz$}|8*yje%tIT@6AtoC z84z=d{rLmfVl{8w*m+MlXP#t{d~FtoPFo1p1xbIFOmpF=oG?jS8031d0T-#kHvbRZAd3+ zj~Dl`%{XI;j8LNC^=-$0|59e3hT)>9!6&t_z-g$@bPv1^k&SECY zVs|W1Zj_TVCa*n)j60Sc5HyLUG96r~7K_~W9O^nT?bhdT}`l1BGhdn0sS%DKP!?e&LHf~y&{yy?p&iY=SYawQ3lw05>FXBxr z#{eL()ha}p_qSMVn7Cuhw$(^dg2{&nHo?I}t^jFQpJ=u)@S9s`H0gR^Qr`&Z!j|<1 zH|B{aoZ0=&zQ~ zjbKhWInotzE=m(4mIkH;j1A#JP~88-TWcH=EDd@I52{lvjD2aaUkAp&37z zU~IZ<&n=IhLm$P;TN{v{lD=e2@;vMy@`CHqyr-Bsl5+sZTgE9-XD8@lV}q9ob2HU? z+E-Ho3;XZDDwaSAOJ~3K~zluGWs+JWy+KJ zp8m3Kkb}MAebsh+s9>bHF)OdHqSj-%K}vdz(H?_kiw(+#ihWn+p=_@+);R|XO>Dxx zsDUbl;jrv6?hWB+L0`@r*yM&yZmMvibSebmzu8XjY9cy?cQxy^oMFGL6f-C-{`~4SS@#WRQL3J)mnx>r?D*@*2Ep zHBFhc^Df`^wjMuw#C(69?HUw{8ghr5mg^jimA%i%TgCyyT=K7RQ4@W8iVdHsfLpWe^gn4A}r zXM`h0mi=%UXI>fRx0XdV=QQC4Y14O`-xtF+kQPBbWIipe;v)@@;;+p0R+&W4%`F)_ zBC<0b$0mm%HyS0++z9zSqabUI9~m!WRxKI2B`S1YUqyb6$qmi0q#P*@7TW%`(?nqr zS~37yrLUB0Zsa@W8{{#>USocRK?_dwk*4`&adGJGwVpWJV(BaPs816O!>dI}<0Rvz z2X7k{?vFpx&Ls7#6glsa7Djf%rIh3)^XI`>A1XBK{m5(gft2&gUk<#jz$4cwStWwhdpg3m$nxF_^vV9c(m9u5x%yM($2T^2b92w5-qq7j?A#$R82mlOR+J84>YU z1SGptScxUtAD0M0v2)L|qYG}APjUxLQOB;KTe9{d_ap<~y4KjTAx6+HhGzVB1eS3_9y27q!ZF<6;b6>|aRaLbi+I)1f@E<)Q^^>bvV^ zIp7C{4cWe>g*maK6EM#S%FAp)~(QJ!nZjRB}K zCqJpBCz#5VJyaG7bh$jaVPje`5DBcO{F&X?Q7^6f>LmEs49X&|l92h7J89j}bMAqk>-<>pSlS=MMFlyq znB`snkgp3`%cVSjiXpb7p{`&|uzX!$NZXMTTmADJZ;r78 z#(IV@?yjd@W6LWygQ%+)+*$9F#86ic3pl3p?K`CCKg;CUsnjk;x-pCO@Plrdr!TM& zo{743p@lIL8Mzu%HUP^^>{^j^;ijy6(+WH1y~))B8H>Wg^OT~xDS|q)kN~ar(?sB5 zGnXfQtwYWDI)*l78c zV|kI)mEow>4_OSt9{r|x?b8Z`hQ>wyxd_*f{tU)iue}y^aB`V0H|Zc+2MV{|@&~*) zhzX(4FTkyDnp6oS;%5{;i~`WMqG*EHbDe4J_Y3s5BA^sqTmnr{Mnpuc{TuPtiwdIG zx}gowIIh@;yK{B#@ZNhra`@37;rroi#Q9w}NtfoNGag}k{6L)ch>Sc*1+fe1o-6xQ zR2l|+6;j<8rcstbhs(P(2#((tM2z;OeuAte!mKhp0Nye#y3m^UPg?y{9*=UQ=!-6( zAUG_UC4*mQ`PlmjK61^m~%lyS+C^t?N4ko zt>oF%%2=ym2JjhgNcsd4FBv%80cO|F)3OQ*p5}a^q3SLn0$q|zR1Rg zB`@;ZO)*f$$V`INJ{Bvh?a2@^#DNdj!h0SpzA{53kBLQ-MN6_BLzP!aN_6uz?u0g_ z+)%Aw7mcN{O#ObXc0~aoeM*^-W9-j`bp50(+ksESs%N#@(y=+(ep{aKL1nP7#n;Go z1C}c&c%2t$x9w)NNo;b{*w-riz9o(FMuYes`y9LTT4*4xdtnN3vw9UkI^>C`Q!|E8 zMowCNjU(;Y>zOu0UR*+Z=A?e=MlfQQL3qWo@Wue3wre-Svl(u^AXk%ea~l+H>dKgN z2G(nzmUu4JHhtyhx#e_|S<8jzloaD-x7^xV6Z|Aa7t(?0Byg<}QpuA=MrwiBxvh3y z!sq^sb6EAqf8m4)KLE+Nt=d|t9wiI6WX>Z2Sl=je?&A6Cr8ld3tw+1@^}G3&r>~!9 z5+wYLP23CK{B**&<#&QF;mLW<$y2_Ap^xzmvVHQ_zV7__1vj@ne)ur{@XZ;g)cXtO zSAXz_e{}fu-};Tiul&ZZA3pl{1L!T!N#3;M#;@-1rby@WzKO%~JL^jTCqer@aLOP~ zeYpm<3_3A%;LXP~0w}XN9AwI%&rFp@Na5o1r!0w9$hn;Ko_}x?4{q|`HLd|~Ak$jw zwFZpb$-jYN0}X8f!*P@|MN+!GVDhD}K^c=BK51+IQg+kWR4>`8k0D(6TZaV>t%=CS z=ZV1wCyliDS4?1}ZLhM4Qm5B1jwHTz*c)&~K4D`2f^Xcg9n3t7`L}bGD_#Nptq<7T z{flf)Do{_jbY1?PodD?ypHxWK+Xq!eLw$Plj;Mt z)QHxuS@VUhmXK`HfW=6gKs0>Tq3PJWjJ6z`j)gFvrWY+8U(;rnNQxXOvkqWRl;<21 zrmZuDjGr8nU=xTw&xWL+@r)4t(g&wOO?OOftpL9zGarkwP%*{mxnfNqqA~+$X zs9?0hVm-?}R+?E-1K*cYx`wfM@dmL*d(wTw7Pw`XvQ0~-&M`N6aMOmTjM5iYZ4oc8 zSq{g1WwsrQGp_<|Xud3EvYn5gdOciOa%odx9g~v|TXF3lmP4LJzf`n*%C0>1^PiCT zv*hEK`ZGmXJn=;|9_8iSw=_7$7;-&fnN2r3#?wxsV-YOcMS3k7)X15 zSsA0&zwL0So7R5`M%2lMj=H^io+_9kZ3Qf;2syv9yIB&yp3;&uElRB7W29)Avbwm zr`oHy$r0)$JaxJ!{x0cj{@v3e^wX`_6TdBevs`bcyQXJl_ME139k*v+hVSY2XvK8Q zSx^A71UBRQ5p}JwF(HC0of)NxbuQ9JLz4otmjGp~ ziT2WRlqRo&rbJrCHp9Vbbv8qGD!-_tlU*-F$95;WTq=wkKgBFIKDlN2lD{n6=4{pr zYMHpS%!OnMP5$Vq`c#Pj>(I(3mw_x*h^+Xm6)UA-xj25Uk;3$Iae8_3;-eR2g1qi1g5Gwp&>FZ8Z-VXdEA3R|2Q}zJ+m4&&X+sopJ5jCz z`^{-z`@G-$%|*3^T0R(_@3ow%!!=r2<)2s1_p0}8^m&4`E%q8o+VBpNra)V?X8W3C z+nSqH9b-aId7L=v#_|{EYvRr=GjJD+SR-KKt0cxLeL%_!vTWKq211y{B;@_0f#sjw7e9Q-o7v!XyRvbDX$m*QYP3*Q>c{%p1MY^2q);tBTqZE zBPn7n*KSjhi*?@IqIBt;P}|FM*Sh@{q7Og(;P5j)|MS3}9sZO5;O`#Z<8{z}FF3Dy zhU4^>-=XDc3U@Zy)Nzycf-C+!*~5b3bG}h^;zA~Oc)!FqE+M)a<1747jx26$U?I@9 z?IyX4d8fB%%WeYGroGeslsGpQ;fL6btrjPlVO+7$^Qrm}%t}bA@N$7=&wnSxa1_6dF7fCI*3sEiv z8(h@&Dbd&hTxd6YmFf>Zkf|%uwma|cb_4hccjf!~y2sqaaEr0q&F5R_@ipJ=gO*<{ zmIHWFXpn|<{0L4vtt?!Vbn?Oo+N19hLz5Von|7GdI+lif0Vvl%OSN)sHDuwQwJh2&aO<9er!MfU+Pv83!H>`>-@3J( zowIm%n^*AO^}FGB@8)~pSqMarb*M$#2Cp_L15BR6rt(}6vtRf$RA^HiiLgOm;Q#ai z;pByn-$=p(K0I1wZWqYf<7a^-7-dL@k4@#Naq@zLL0I6qGS;UOd4R{Zkp2QFa)dX; zhS*1`y~#tF)+s;7X2%32+rOfLK1~gRZ#_XtD18>%bW{}Ek4ftY<|kTYTX58`+(5!D zdrVLa2C3-@H>Tv({EvOz^M`y7@DcsNr+(>c5T`x0!0^U0>;?edGNCB_)bYdqq_+IU z2F5{1?n2`dt`=)R+eVF1v~XQ#dd6nc0^EYg*hISZX~`T9K&QNE70j8q(ct!dHh!-T z=d`z5_wM(V&wTgyiklCoZRDa~Uj3~7$jZ1Ge~Q2o+M63EX&0%R()#3~zP5ZZPCuHb z?3D$WME~@Lc>QcT!~%3dd{?{$v-HYQZb%Y0+q%q+IyP)V>RT2C7_C^dGCl{O&GLf8 zaj|(-m{Q6TENLK7wgg$ultbx*YsvLh`-?2~#Q0F^$ccV&(?&(a11)0=z$dCxp4jNG zWocisV6Tt{^-8{MOolwj@*9^%sN!0Gi$Fdb^Z3v@Ub-V+diglUF4@u+fO*2Z4EM+XC$; z8l?q}2j_>!kz@OHL{O1MjTm(F{NT*S`3-v2?O2sM!e*s~F16_)Fwd!$Et{&q++3JwW`A90uUZQ+pjy-OU*1PRt z4ZEja@Lc4Eah?E&=&?tFU1l$k9k@*w9)Mt#%Sevz%`2pz4^kM(WSRKE6W0y@S&D&<;L6Zp?M@_F{ zZs$-50vkc0EEE0}8O%{YB8t&mRkzpKqA9*Ws%}v_%^PB6EertgA7}! zU3<{j6(x~2x;Ccei?oCVtORve8|@_RXCzl@KoHo{+Tx|tZ1H2~qK#zFImm!fZIOwi zs>hgL0NLd_%N1wKqMjhoEy-Uc_6oE@VR;st;klBwa zMVR2UwUzF92K>rPP#SG1Te2mv}PLNVLn#cQcHfoA8@?>&jrXsy=xkud8UAFYa{>k#Wrvo2VvU zXITU{A_Q%uCSEt>2E+FwTkDndY3eq+q+2Z8H79w!CcMA;Fzw}rP<`!h=C94KaUeKH zQ~ceF^w$a~z3Wj&N8KQ)ZTk*b3xr(nKS&~IYH%q))8$_2j2@+xema}!2^&8EF8#Le z0)N7*yeexbznHiaV=tRsw#5(Bl7pn_HH5y=u#_5)KYaS|aQD_7F3`DuJ(J6l_oT+u zEQHrr*UulFdy%~V-?6gl|B0p|dsmxtPK8%V9&Qc2go(&b2b z-7t0o*u`rXC-j$_JAP}a-#X-*I$YrRs#t?`p4eP4_lXt1wdw_oKK2zzeizE`-CPU% zGFSapfDN@Ju5n(=qyt@p{9tADjlS~xka>M}3~n2ow&By%c_MRvm4r_Q-?sYwD3^{# zsy2Kv?KnbxOyFHbeWtk}iM+xJ?BVDB z(LXx;*q49g@cz5^4}aq)|Hk1mPcxn#{?1ST^x@0zeu>4qJFfrnD!<#jPMX)gKl$YF zfnk>W`M4IgQ%5cw;?UHa<<>!#4&LR( z)PqkV?83M0z)j)S zfqF47Jm{xxyfGo?b^Maol!4C%k#;ansz-UZ@T(UqFsChEkRO?r8Vu#Z_r}nd3V*Nopj9pPs6Qw(-Y_a+mc41Ph~ntsCK%`6~o*-T}T3b({w~gtq z`pM0H5Cmabqzzek#f-E^;iUDc!MY*~&O-n_NXO4}Q$2wH5t>ahI%+O5Q%1BXPcHJt zhK^;{XWP4?ONG8wr`n@VZ58i1DOBh@qduJ(Q0W>GxHg_~GlXNd-?G2FbvsY~UYzl? z67{40l+`gw8NjSxZ>%_T@jLaU4(zOhqB!jpC}t(^8osXvjw@9i8$}YPun-pl!J?VM zk33^h1DD=?xn5{fK4jGem84}#-MpwlOP|dsas){iACfT5Un|gDGztvNn<+ASExwM| z_!M7RzK(3#QkHJ;k^$gT#ob2)F988ILVcamQ7QgeH&3}Kl0FwULlTRf}K-1v8GBx7^vT0q%%!g$VoV_SOP@WH1t*mZ_2T{kYKl zly!WS4H=wn*?9Pk&6Ze58=~E?!F%iW?ZX*k@rAE^X8v@=#_zp5_ZbJ=g6>#5I#r*3 zV*kvjqYah?J51v2cnZQ^L_n>*;EsI{UiynNy@RAxj|{Tih_?i$D_eWta&tH*PO=SxW)2egxjP-bZzciJw2 zsh6Lx#t&UU9Hf(nIIrE+j_|4{tz=1rEi`)2GD&91iHAZX$dYsP!W?`W5%uE$z_gi}gC=DuPyRmFugpJ+I5*R=P5uS&ss#7pvl&j&=psYl+-Y3QyWE zIOhw`UT}WGN0=HD@)S8Xo-)6Cf~+UJDdhQckjw$x@VU&JE_izhe)c=}XFLt~3b@Li zK6!C?@bM>y_ugktc;NN)m-1nY^~c1=^Q2FK*`K@#FgGJvKlDvEyM0Lb>;L+jhoAYm ze|Y%4KloiXe!s;=p4UO`H`WlP%1^PGld!pMh`ZzMxEF|ZY87CESoCCkBWJL#<#}UR zh?%E^eNm^4fKRN?ta#~(0$T!2Z~Wr$k2Tk@C^hgihP3_HXe)1|YKZA${xycr1cs~HA%I5A<~QKB0fl5P6MV;` z@vi;fq24*EPy0^wI6k=I;io?g=k`(NyEG%BYRFByr2U4tWY3ug|M-vGi7eMDp4!%6 zu*_{;O43HHtfh^6w4K{tl_fSe|M{dmcIo4(Q>i-l_DuuJKvMe<>EWrY=icQBsc;Y4 zGuL?*x-Jb@38Z_2=&4sMSUeI&s)_1YS?9Dr%7*xD`uuxbFP`&SZS}l(%3JZcPI!R7 z{COj^uyZ~NpP(^>qLb_93Ck z(KT_^UZc|mp4qFB;vJvISj`S+rJd)oABF#tCEvY$Of2BFbY#e@b~CbWRKWdHUNEaaQl`iP zH@0s1lFB2CqAH{5$``hDRcytFUh0POA}2EBAAO@=hWv*{uIgRDipg=4k+LAiA`O{k zSoz3U?FaO0VS|}y5jJ}zR_63;Niy#i0j=aShD4w6CD0}$pL0Gb_1;1OFP%|B62)q& zvJ%R=GDPCcftN(v8tVP%+hBt`#t}QRkKm(S!iIlG_c{oD6kL<4cx5c5-By5WZoIB4q9Iw)&glrY`ZRgGG4s<4sQUBYbej{8Hb-fNm`h-HJob zVIvmaK5&h4@JqZ=Kr27AH?jc_>(IO@KDNF$VGGkIZ;~JE8xXnPR=Iq(2jc#mn>ofV zm?T`!c}XWeN=ys)K$tpk9(BUCxAWPINlR}Y>LHy6pJ2)jXyfoH+{ixK+LT9WLqDwr z1^x-spx{jGX&1g1p&D79MHX5QLOm(C_!SHxo?!Xp!AHRC>@0k+8Fa}4!V@=$K1(E?Itl|KA)t|qy5c1+TkCKBV&XM za{itB^y&KR%f055=<8g4tylYpWwH#B5f%FMIz({VMha^mGXY&(?9yBt*l?Y)n8*46 zeWMGb4(KimTMue7L~rCBdF@N;alVcuXxTk z=d#1ef-g^goN~AL6*69MGlM6Ut& z%#4@(#-DbcB(1&=V~N3SgHLoEPw;-v-dU#ugq-Ra8;qMWU;y==Wr zo}ULfEl^>m2aag#43KiS-B?FHfFMuf-Qw7{6c_~QofCl5a6rZnD4g5tY0A~!cI zwi@*F(J%Vlank4XEob#+KVj96y8Xs4%@Vpk{i~1Czrz3mKcp-qZAtp8ugL{rar6NN zNeST3PU-Fk9Y9b{**73Dkc21Yrk`DS+b*RSsc&< z0O&srCD}BXmc9Vd8l$Ynu>|6=%5g!Qvr?Z4b(A6z3z&%_CMC+aWdYLeq~TvweNdg2 zIP}^Yw#AFh*&Gc$sDjIj4*gI$AX0xS(x1b>#6_-(^_9L6KnNYWiL=NC*gl(iL`Xbn z-7#3|$N*Fyn1jN9|&$U|g zqWBy=+G72>L3{4}3)#L3*w-3M@A&JDRc?g(OJi{^%E5O#iC-9($crU>jDQe`SYZ4P8z_#6=@PV5Mmy}tYZ?w6mF?Fe?*rT zT7#1JU=M-7fUP$OH$8#78c65fvvO)98jbQRXqEnjajj(V80y=gHk!%?`ulc%HH_@Ka$DO}$`bP-YZG6-BicMc{O!3W6&zTQA<3#Q2aUVW({V6UOn!8LML# ze(+{Y=LG$f3LA5j)nO*%c^Zg*_K(0}-m>8aanGl#j>X>$`Wl%2semB}q!|d5Zu>Jt z)5b*Jx>|q3FzD2iYyzaQUbLBDJs2V{sdWhL9#ER0H0>bcQSo9K(>uq^aF=E!e*{j+q^_}gmK zf(la^Nqe~c*{maph01s&5$SDn*!+zkSDW@K*A8#pPWkRKH~Fcr{ac53-+%w`<*)p; z!@VDQpYeomZgWlN4MZ=wStO@_=3-|U=F`--cvAS1-__LxZ_Z)~EPhLUj;8o=qBp|4D>+M1#I zWmOvg%C+5e&SBqZJF?gH99>=oH?Q;8H)p^o8xuI=77~EbTIlh0#ep`N!rh4M_Qr z7gwv&T>}cHc=OOkbisx1`9&^*p{-!`gIcudcU76PidmO8&Dvsza>ApEi|pY_^3ego7W5v1FbjMvgE; zWSEGug%`4wyc!|UNH$?>2ZJ93apnT6!uLGa1W3nEPnTwmFUkpk`kJIL zg0x3$cbCctB8R1=eUsJFIjx@7vca;;H00=w&^h06# z-Cx!!2ev9+n&7}&hcnMi8}phhh5?UzoYPf@*Jv!e54y_s?$ia%mqzy|Zz=2`t2D}( zi=3tFS`<9Q#&aQ4NtIC@73ZXzFY-_zuBg`p&k5;m7Tma0WCFgFUeoYzKGRL$RVLJ1 zw)(5_+bq)hN4#$EE{k>NT>cFSHh@P_i?AJ2N^w)%4YLvp z-a$F1!kZL75P5y;#ivg{yD6TwG5vrt1W&C$eepCt)aap^`uHmsB%@NLDD&7h|H_g- zmw;5OO@i{ffE6FmX0nyF+ML-7aS4O{c_;M zDrmnA&V|2EKwg~Qj?b>{y>obe|MB7JgNHmx%w{kfH!pnU8H*n-h`eMmA!8p42{~t2 zAbyS^P7-s%^9dB}PZa>Sa`bzA@9qux)IVv~hXdC=7mQuTCnv(WOlR@77c9t99yqo> zqpxkLb(2L>H;bWmqcj__)TaweUWj%BR6GLEmW?82Y**~a`ZR)zP+t7x_4nwZsDzG> z=h`5v`k^t(8yP65o57N%-l&I6oPq0GpI&g0)8d=<)#l!4m5pCJQvV}!bu6sssU1q_ zsO>^nFVb1GL21SoO&}!C)raNGW;ba!%6xLz&Dbs=o3`EXOTD?F%)+i^CGR(osZjh( z`AGJ>Aulw@1st7T{6vOj=g-$_$061=d0%~PSzOT5hxQK_Sb7oRSPD)UGG#URG>7M5 zW1?_nV?F8ig^YXHl{N(ht|RFG@?PLm%cp|@#Rj~a#k<=sWU&x-m(AbXKAFk)4lh{L z>bKo62wQEhH66QB7UfeW>bt2#!6{$cwb_5nAhtYuB+0}gEWQ7^XpRVo@uB|F4-(4d z+{{!LqXG`xi&uj*ZbBJHp+@j;d$!KC=T$0B+pHrsLv4L4K%L3UZyhtfK$oWiX=N^I zL^f#KsFwR@(2prZ(%Jwl6#xZs%3+>g<|VdyXcS~$$>z$+KXJqN;m2%1Jju;vzCzJ9 zbw^&fd{#F8S00k{^kMvJS*R*!&BR)38;UW!>fZb<3aZ|;L-hfZR#EyR8|b!Q>J%{Y zA}Ev|v@=D8!M5wz`*eMGJDV@!;Sp|oK4&iEtDb%3^9fJ>-nxB{r+)A7t!bVBz6GpW z>f0z(35l_rbQY6TZao@#q;AYvZ+bxsWYtV9a zzC#*W*`!`|d-}?4yrmmm=RB2rmN^!oJZ^g-m$2v ztizNx<%ABJv~%R?kr~fZUdtr8G=xwCNV}0AfH%9PpE*7OQopk&wp!#>^>~?29gz6&r^j) zD=>Xl3y$!~i<#?^*r{CQc=%p}eChO>-Lj~A(l^CP`zD-YxcX-fk@OAbSjR#BO{e)d zGgvSwN_?Jkh>nk0wM~(N4B2QxZ_Ec4nS0v6Mj~46g0Vl`v15mg9Ow3$lQ{!zNqlIM zXvs65V;<=I$dRY>3)+X2GHVe3k+b+`V^+i+-hL$R&%g5x&fPqTPR6%FC8RK6Pd3m& zEm>MoOSF@@I(;Ey5^`pqB|tB!-q z(8cHGa|ky%O=$CscWxkm`Moct&)>iQ&f)zpzuy~yx!LXocZNJae|&i1Bm7?XvEJj{ z{Wdp>++mEk$9(4gom;Gx@#Y-H6u-|Lx$%R#tW1vNGl&ys{u{ib0p+p)5(T!>$rl{n zg$I)Irt-`Hue_!QuDZwsKXVo1_*vW}7G3FOfd+r*pLJMuQ-6nb5l5c%$%C1AE01H; z9=>YLHZ3@|%cfoAIL{@f{jD<;5f>MCx55>;23hHv6X*}b)J6|pn6%X=kJu$In5K^qQ{^bF*~+*n zYiyA2S`e|usn`<2vALE^`DbiYXV@aB^9l7$==@L`%8Wf}b<1zD9ny|9l_Jb?&K!Hv z){k;4J5bWlVsGRGx3H@Wm9?x35wtN){**9gj%K+h9Yh7MWc4p;Dvm9--OZ+DOS&pt z>6yroVih^Ea@|a7V8M$CZAh-;mK{dgpE$ZIS2>$5(#1E9SOA;dONLWm2^}rPX|r-# zo|TtG7_o=Mp)PzpFIw>UVG(Xk>6&hZgtpR@zsHwXj}SPtzNGLMP~!B-;E&v;T{Ign zd4)k{q`<`HlPFy1B8&WGL1?aP4!Sa${7gsf-Rn^P^ehF4-}IBH&JkUJuz`<#Lt)%r zwulsVBWxgrY#EZ|TX&1$27Yvo^7vj-WGH6*xVW!HsozaN?U!djV@Bg6)KqduPyj=J z1aGCTEo#qLD#a?*Y8c~xNv_KoX@#eSKp;)hG8{?Fy)i^4hs{4yEjh0-Kor@;j)~5* zoGLm`FwO%j#xR-=PM&3lm+wkgS@4uKFg2A-% zPgA)_UbKl)$|GR--_#(FRHT+n9TM58B;e>&q(2v&pP|rYeFr9=0@g8J?6YJO8o*y@ z&{{7!d&%tedhcqt(Y@&+N`FpZIh%!XmNb~~`YlYqFJrk=LCX&Xv@Xgg#XdA|O=ZG` zg2*7>#X0Nk$Wz>rUweeLV_wHz&y^>#f@n>fceCD$=TvHHQ=KEZe3SF_crGxwF=AZ` z_hSADcWwK6LMQ)O_~8uX+J_U;Y-&JzhbLMd@Ptm*)`hcBa+d|p2Yg%SZ9(~4cvFEE z(()Tt)XWdq(axJ!KeGYsQ(|*+){8E}8GNET3p5lcld@g>eJjr9t0uJLiwG&VEy#94 z`}3RBSx`y4DptGnLt+UDVr;j$m|c0jm$t1e{>HaL>6x;nUuJ`x!`tkh%X?^E3QfSjZ;q|J`w5#^cmkacahDp`PMnFD}>LdJs&;x zyPBUIzV(;iI{d3Y|Hk1Cv7~ z7z=Uo#vCWN+!yTr#lp%|Dj2SQ8xMhLmESrcd)VSJ6+Hcchv{qY7eT^XUUa_F5 z*Qy81wjtWubMX?U(z#Je*<^o??eK`R|>C?#QpE3Z)F58$Pi=%8xtr|+-uGP@_zXp+xPXL(waa0t(=AazP zZR|wU3+kYW!lMiU@|j2mZTg?IdNU6(6SO!JV&t*qtb7ycKQ`MlHuO$jtiDOV5bfN+ zrv~LpyU+)f&{*?mfAQ1uiTS*i7o2S&6)nX|`klOokGPS94d16v9#EH0xT%Wy#Rab& zO&!}hVqA2n!a`)@i8zaenjr$Rv=frH8|}yjlrcX`qpY^sve;i|L2|zt0ej^URi6o! zq<69z!dnpVi;Ht^FlV;N9O#TO@r;`aPPt*`+*d#Iw6E>zJ{u_)E~<|2^@a7RVYXYM zl#+z$T8f`(BV!AM(Aa|d6Q24Fjj)Ew+Ifw7OFf82uiE@mqixj1pPY#%%f& z2F5O9+iO&L##3R4@MfHdjWm)mTo8T2D+k8s+*m-&)=~1drxVT(%+y1t%#K>< zQ*qjlHnN?_@7d`cU~V>R7vn9ju1NcGW-Jlno&e96#_ zpR2|(#;002hon!ykos34{eW@LO@8^w=4moZZ%wBV(rOn!dL#$y%z$rf15rY~VTcmL zl=48g%4vTHzXX;+N-IgZB$Zd2%~O^*aJ5ybJs&AwHrkZDo}V%ok)Jk}F$+2Bmkwm) zIx|qd!?a~`bJdn>xxGEhjcqM}iwHTES4Tv~!XV%k{x6M2LxSAu)CYnvinpblFfYiH zz>ZhQc0<-z>jUmjStMTUqh9ZQZs;oC;N6 z<>Z`7vc0hIp^<&yZGQk{6R|>U*aHUfruYVLJyo6ibXcK{y?Z+sqW&2L`Ux4UT$-X! zEU)ky+f*PVQ|8!QzsM`BWziml1ZKK2EV3$A)eU0P8<%)MuU$@m$!iZ7AC;yhO*$0h zs|3pOC6NqyW7HIuYFBn=zn?m;FAxzX@T<)<5mo>IMUc? z<4e$J63Z6HIb{WeybG?4azliDOB{WBc%Q#`#v69t{`%*oAhISs@tCr6fxW-9)=A95 z4$9(8JLedH$Mqg)myn(L5nucCK65MPC-2?A$BiFXhaYA0*PDSYtgpqkj+{F&6yUOs zMb2q1-0-XYH%6V)*z@!~Cg1e6kB>#zKn@jR}+D z8y{r`AQl#7aa=r^uY{-aqbCBazsec;nO{eSe#L6a3Q5wHEj@4tE4Af(Ro%5qICF=+KC1 zUYSu09BDasZY0M9#7^UeOTa$6j|QtR<)hpR*zZfq+&M~#D{eWCb50#<3X1QR)?kiXdie&8h1 zI&5FTL%VeEX;OxPM~yPnTKyAmu#qo*(kpg&aC{1!v<}O-vS^iM5VZ;t8%?LxgBCF_03ZNKL_t(mw$Tlo)PVG{7-g7ft{xVj5O`coThVvJSL#Kz z_!C8LfKovSDmQTN$@*Dk%T=&f8Eqks^jrkd%4OuGAt6$ zU53cJ{Zmbga0 zL2K%;Sj5l?@Z7x<=N!SgnDvp%NMhGMq{*e#N)xrtR$f(dO6S*gm zrVx%<<`mMdnnlInl(^`wlZO5#e}L=oHk>+~BpWAariPqP`0H0=O@TyAjYI698-H zTZ2TQ?cnoPx-S^v#<)*C`$V+m*~(_UFQ<2**^5JJH|?_V_tW&Z_2uuUj_)SR*3^s8 zQnqy+)03CxZT1SU-|EedbF>wG7w?9G-i)t3vGD6y1OS@!&CoGE?exU&H6=&usT!un zc1ZbW76Q0aRqNI|?SxF;s4wG6xM#;qnLOEdoxMoA~Pp^`tV$sq^#;x z2y|{bK4r756H7{sVWNDkqjzIx5tqCh64{`{gl9gD`^3#f7H0XSXR+z>h^IZi{n5vV zuYcp4hri%E!hh#){jJFU>Q{e^F@e7CrY~ji)u!^eDe%Hg4{ng@q!yfp1nWWoo4h_T zv))DM+XY-8b@9=sN9+&TgwdJ6PUgvP^w^Iq-ziVq`mJ%40AoWAJ{KTZiR2%+_PEGM znVvu6spE%_*$n0hWX2+Pj}9-1-6(to-c@H`_4b0DQg6h_%}UtdjZBZhUFHm~r!Qc| zWBQWK4=?6jzU5gM?DvUKZg`^Mo$>l)%s!kwrA45_1?1=0;<-lKEy8o24D>1O3vl^1 zS?cZV@RWANo^zU)o2RGok!@86;a&a8)tT*qrC7vymUW?)eEemMA>h1#@Y4&f(r9O1 z-AZhuaG@d#-QZJqNb%*L*(8+)S(eX@{IoG*&mS)M7_3(}r2XctD#Ybm)8H(M8|1bv z)I?4uHB_>T&)F1Kmvl&a}h za_627*rmJ411$PuY4EYZ#Rtt3q7m^y`AekrY?|f!n?PEW#>m_5KE^LJrx45rL8Wly zU;C7kMI(IQAxodB)=d{^NK1>mbK`*0EWgScSC+M8{S;$e)4q}EYybL)nfj1uUjn9B zDw=qWT`rWMGqnb?Hqe$yvu^<}^zjQa_>XS^<|!FA5T4OrpEK8Z%A)BheeZ()MmOr@ zI#N|=xhyk*gK34SH%Z|ngl03-G?~7_);w4o!Y?ZT>HD*tG{cd0$w9mE ziE|~Ie>O)P>U>gK(u{@PRN6DF?TlvPcZ14B3@a0`VknPW^|73RR|-C#`z;WKk+N6Zh$f7p4>%~qiMFnkcsHn*79Ye5o|P3 z5y7vcvZg%BmM!B!p&6H@$(#j7zn$xOQM!&{06kd%&@}sDHrKU>{xy^zq}FuhD0*- zxRxPpKw$cdbfToO6Heb9V=lRl5SO`YZiLa6)~P;GOnq~V0VU)b9tF~$Fr#~Bm$u5&PtVQ!OGKLVjB|`47=IXpbHhB>a-_2<4bE$`YdzRPW6!fEypEdlL4MFZXTBJ@$X931 zMWnSrNO9`)M>gj+F$m0f5}=|(BgT+1-=qo0n+5Oul5rLW=NXlYuOl3b6~sB8LAv9M zoVMH4it}(~SwpR#k!&5t{-sBB^W~@OJ7)%6)b90O#hOlVeyj*P0o9(FUJ0%o48Vs z>YB1WkEG07hTJ}hjiX<1`^v!J=RemeO_mb|d1{HYt15p(%wnbkJ9oDkWASadB}fg^L765!yi$BweqKVl|s%}K44og~U% zuLA}>@`i68m;0z^aOK%)*Rcl5RriiQbrIIs*ka$ni6>mMa)}$na134GDL;h#ivd;gddGaOC2bR_PWhA${2E^%p%JYe(rwqH z5cBe-oq4;Y;*O#08smR>puNU>B)*oC=QTQc)3_qcB8A2iOJ(;W&Qpquuimf!gBqL! z_bDApfvvM?o{D3-3yJvws}Cd?ueI!xyXgmIWkC%YhP}7n<~4Z? z;wK$I4y!J9KHt-6hgH|bB5H_TgwDmQTFC37I zA{Kh*)z2{q!}aKVv&tu%ym&OE4N~A4$R-Z*a~`zerktDk&nfzQX0v<~_Gw|$>TEN) zIbqSJ%>oN~#Y%ee&%fmF04Ryvb+UYVYa^T;G%G|Us zl=e8;h}v+3Yq9PnytREs=?=S+qscmw#4-l9BXx1XzEn`PxhT~OQ8u;gXIPa*iE`V^ zIhnAa2)VC<&cX)ex0fnMT`n#=Ks*6|#)8G!IU8%fCYlTXTl$e^`ppkMJp7A4`?JH< zy*r2Ze(c8%@7}wI6Wr8eq({C%y)LF_aag&?vOH~fq)`U=7;K{~B(uT`ObkD5Nz7tH z9L)(&BcaV*^(<0a11F3oi<13OOWV69Gq<`S!=l6a6 zjwo+HJABAfGB5dP+3?UGi7GdyQ!;TQQ`0JdE8ap3Bn=*bK46R z06_{ADV1p{vXzUavZa(Nu8J(j<%%oG3s+v`RsMkd9r051XB`;o_U_r{p;Vof8D1~_c`au>sbjfH;$C! z6S>jKRg?I^O%U<06u&AeM-Ez;4cM`Ps0RAO%^6?s{Dj3lZ%pyk&$g9*^9g#l^s?Wf zkK+eqMpb2oar=S=7h@wyc>R%__TrCd2bz5={sZSaHcUTfi4I)*lIqLBvCx|(++uSM zCx3gV8;W^_JUAxSF*{z6&uoiVK40U>m}~y#FXNPB)zJ-}mSN#EPnY0t`8)Qgk8Kiz z@T0y-8BoF_ReTv6U~v$m^s!BtZ6YjR0EUg!y8%0&Knx+Y;V_v&*m%J27@Q4THd7rI z(w>!y58Pagc<|szld2;5vqb|JBj~)-Cnzz58GxDxI^Yz31T+8CGcq)fA z#+U|2CZJfTY?5)Ay9&C|mA-&%9g#e^2Nw@HJvnahvm|@(q8sC`^%>_~H0L)}ukjjg z{p5{CB-_~74h}7#4o~riwCeBqM)}TfeQMWO=?0nMj;=81c^CZTIcN@u)!R5SCTorM zDYJuth_w1RN7|lgKcE?Fz%(Y>E}EJaPk#XnfO0m^2Zp-E_r_JCi6gq}XExpWQ4)CJ zZwJcAR4*{%Z!t**mQ?DS1?WWXs!#10dWaum%s@jP@%U^7M!q*oO+2}qc1OIUxCzM3 z7ILc&o{PhcdLYmd-{j+6Y53UJMM^Q}S&A)`LIwpCY4Wg%VVaHBX3^bvqJSMrHfwo4 zE$wE1p8OLQg&c>N?}rbYt{{g-B4ByS9YotzJB_nv7sQ@@*nUKN#C91l_JBq`wD`=e z=8R8Z)o68dYe3fMmK)_d-rP7OZlUugEAK}04Mi86d)?S^gE%K`X!2H~Q=Zo4Ccyi= z?%Dar@y(muymDiC@ul1FWiG;eW&el`V^m7t1$x2!@jZU~=R4nhefj7A>i=AR>vzAv zYx^HD57Zy9k0t6JBIx+jjsy&_=-gxGLB$CC(ihA+O2U!N!eCKaMDuGX;5eEX#76O47jeF8&^r#Oe0<6nd&W;bJ@IDLkC4=Gh*4FI_j1RT%WJ+IpL zykP`;ebqA)9_KPQ^1*(_7dOG92y!b20pxS-pnMxG4d!@_4)D0K&$Sw~#)~wf!DK zz|}y_jYG#=>ofM#uKg=8^9QO$sHJLMjM#|m7y~0mhuYlwHNxVHFiCy;*DQ(JQ%1tWT{GyT^2bC;(u>nn_taQ|2TCPj#BgM@};tEA8g$A$)SsQT$hMDN>ji z<+0j48A>048$Q(8-i5^SoSx_KGT5#hs$ab?aISSuiRIK56*oeH=IB6S)J`=-DlrwUE$imBpIq3LvU-bLW7aZw>sb+k=vwYkMd~OeGa($J zV&JV!cB5G%Z--@lJ-NfbTw8cxIAli3dZfa<_47Pu*?CK0&|rs@EmxzAhXP3P^WY)U z#Otwi@-s19mEU^wEFz5~5xP>aoJ28l!Ogr+&gQ99r>t2aeAPAZpad3b@J%`JHNDXz z6}FiM1gCyTzM#?tAjR~;j-ORK`jlE(^r35zR=BJ^JsO*H46P3>7cF*@kBuAhWW^Z+ zf%Flz8YExL8fCJ(WZ?=tv|_A?YbKzM1?5>ryZUW8G7E@LZOffEXT>Uh2iWAM2|Ee9 z+*B|SY%lJr{f5iL6g2V7m!h#H7s``;tJdPgmC7`#*UYpm=jG83D^5u+f73=L#Th}* zPr%`2ZL#aUOMEG8skKhOUrLk(?P6ePJM;|h!~s*>t&ABrlV{=+q-aB>xPCIOs*er@ z?oZokrej>!mWf>k*~~%d^l<@St_vuWX-;BvE3YtQjJjFQ91Y-Z16U55B+Ihh07o|F zBQ&Z*_d$3c1n&S*qpxzGytPi1rdq;X0QCu>Ot3a}S9$y(%i8Dyw68$36S9%A zh|a_B*}#e~i8X9-p+y`wGfZx_&vyNO>{0d_8zU}OeiiZku>A|s7-#-{lr-a5TxoW3 z9Cxi;bmvTFXWv<+01WLIkAz?5-AhT^pt?C8%v@=A<6X6=9HojYok_`j?1 zDVuisk>g*^D^MQc=46M0XOz%^MbSRnWF0v!K!QeIz8PPGqJARu1mqn`Cf8S^6+}Y3 zkPQR!V!J@vCuAs))Xi6vpPq7YO@F`tU~l=(8*k>Oj#oeRBW##mTVCWfVOi*a+8Y}# zd_@@JMZBp~u)#&ayb_S{!p-6d^TPcZuS4r=RZ(1fk&~s|obgbCe&Ip{mL#8p3)2{L z&CO*NT79xPziY+smBWya$`5{7z}9ZsTVJ}cU>#CisE?mr`1Hb@>T~%*qit>mtD9rK z3#6W~^Taa0f#ssN{$V{deK%txxcbn@+Qa5!V$Zz@?~=di0txamE@I=pzpd`#Ekb?D zM~&Qoyuo5h##lF-Ptg$`eNx!pQ1>Yw`RfY^kYjwf(clJYHm`xfo@5&|HVsb4mxK}| zPE6)_RAB40$oTNJ%h%a?*FK-P^~oTg2y_EPKK!T7O%SnAiz8piRkjOWssJSZHAb`e zPFbk2hRXPqanDMU`}kgnh7a^^ARC|J+4?r)9`xc8#M=XH*^q!MI71cH^$wCqZ z%P!*UkJjq}K5@2BVHq2~K2NH&Ahg(sKGMp;1*y_Qr(dWrRD&0sAy*o7upNQ}Rs1Nv zpMYtDGPe0iNY;r_Xd)p`Tl6<|$`V<=S;SU9iD}emP2MN@yct4Ro}SPLZZ2gG#8Ekr zDAI)~c}s2V<>Mfv(kYNl>#DbLP3*BSdg@cZylKUsnK*Ndz+P{xaFa1VFCl-0m}F-f z#X4nx^dU(bI?u6;eRN7+U8@hhmz>{u zBGM{&=b){z*JD7#HhCjKB2(%p(=J&A52*SYp~J}Va*@~evq9Cs-}cr|YT)=`eM;a^ z8{YMng2-XWd^*KSb+Fm0i(DG--JGQF5L^B%K{kKg0QN(l$wsxdDSI5rK(A55*op+A zoWgB4gIbw7H9C`JWaZp}#kBqH=lz# z<4NMPz2o>du_O;R-mVc}#(r*8kTOAmZ}pc05^@`FwMp6GEiOK;P2kbTvUxoHq>o8% z68c65>0&E1oHjz1_6U|==n+2|uULXFvUmgx4wXgTbDXi9S3c*q2IYW{hzQXx9AjBm zg6enb^lfZWmVT#S&E(jvB=r|pGF^eI+u90DPm@L=|-_JKp$zdjW#iy=e(Y%}?qFsOPMxyB+?oRieSvQ!st+L|0A z)Fr^`4g>t`4SJ5dFvst$SAs2K?0T+HCS~#rAFy)6qB=Q0(`EK8?NeuI)lKDyve4Hr z_FrR~c;i}RkIj{R<}t?hnKH=x`et@q)Qqvpxe@rx$uhpvmR%I)wj^Fn;`N^K=oIVN z8=|C-@h_4^HU1=&-Jq)y03;2p6+5*j zBJ~nejAinp_|k1QI7vRW{^;Z(a@_E-AJ_BZmL_QEK%c459G)`%uD(TRe-^8>xd}v0 zQI9?V?i1!VA2n&x)g)~8omm&y>VQ(!f8^DdK4|~QJYy2gBmUJ7zQOMXW5p5u`UPMA z%*Bnbg8sydFEC!a0j%%6NwsG-&;Jf%Zr1MmrZeU?`v;5*yb5}sP23!r^XQM!Md~LM zbKS%7&o{}XMPmS?kZUH6RZhl9`r7tS49qxS97>B)wv7Yk=x?6OW{&&5p~^Xn_ibi< z1^fJ28#javCeO9;hh_Bf=2JJ3GZE(cjf)^v%sJooO|&a>_)^&JgJ9qi)E)@QOOyB! zm%p4TCNIltUTf9fkv|mJWj!El11(4GjvgEX7&Oh-8RDP`c>X~cTA{nt7Pq2ltsR*m zZmnJGCjm^o@n@H=a9sIl^ZThMXje0HJ*HjZKdEP}e#j|L!Es9Mw3xOsGt#74Wzlvk z3>@=`9gaEAjZWotP1{ZUwnd#-#_CkrD%e)l$F?oqXRR|fGExLbSs;PsJgm9$^IKhn zrQUYmKms0LksYjJ3ogv^~}Nuw1uYi7JFOM9c|tZXUp=~?TiFN-;E3*bbLb#7;1ic%weozLxoD zcgG;d_E83QiFa@YFPZ2=|2OQ-4lBu79mM1U$d_2cXQC|u1-C4Tp#TPbu|qZL)vK&` zcn-P3^no`}#1{^wfHPE6DV^sZ+ibN>GU+%<&;RN_K_+1{smJ@%WoYn6BeV|=z9AgA z)+am5;z+qIUzU_uEAvgoz~4Zo##v_y#}JX5$C0DB=?0hU2Ws2q67x~0wvJ6}dY&rV zN^CCMBKnn+5 z#^U5wfL2u}`|dyv%COxb?#W$`nAQqcJlL`n)= zLa*r(#V{O6zIM>?C+qkvUCIb&Ew+PJ9Ou6*cLE?JcR;&;>hfbPj6AK8@ZVPWyb0fB8`L$s|ktY^0n5X=cov zK{1To3DKIOP7PU_0!AR zHuI4XyB$bf&|?u`2o7Ei9|Bg5xHu}V3&sY2PCAUlJ_Ve~Ka=)i^KGEwOYfp}vGn-n zt>yIH?-2moM8g@JGT)`N2O$AHl zw|HW!mt&7*PeyL|nOZ+^2LC*D2rHkQb<w!V=ub7 zn8M8>=$%)hF$OT~B;`UYt2k^5L)Qy0s8B|Eo)fRL*s$koGqsqqPwZMwHM)60@21~1 zb|L$w0!JPa^0L8A)+ZC=FLZK|!&#-{wTt;_L5`VxT7u5SX?aNFN!JZW>71xK2|Y)y z^lskzWbC8`%!%GQ7CO<`4d!F|`*k)cU7T<;^$825K7nI@cQf~f8@)W)dIsHN9=p8* zOg?$~3cU_d=Dq?@mb^jh0j_T|-;w1=A@u@{E-xoJVe zY-2CDU8ugmhrZs_{%qNen#UA<8ruzm%vIp;-vPe9>F=3wqtY>pSo`Se29-u@l8xk3 zbZ(rwbg!X#Di$5|yuV*+?wkz)@BYi{TJg8~drs8uJVgN};It*+>Z$~R@PA7D$j#TW z-f+=O8~LKu@jW&{bLOU#jp6tMOb^@tF<21znxMaf#aqp zn)3%gNwt%V8?e5P*N^ycM>CJLUCCtgHC2(5EbNu$M{RQ26?IYFdB77E_RhT_gt^8! zPXH^^KIR<7w$`u10r6M)YL|LP@Q}~JvT%@K4<+`&MRl(=PsjL^~QUK9ya#yoQBCmE6EUoa`O*rUVv6ed^b_fltaf_i=s@RCxD%pqG?^ zXKahG#A-6(49qr;AM}d|x)cOAjnY`u+fMy?5@h25@$wTMz%%a4SDuvR)oQq^NP5EAV9Qtco2#QwRXGk?O47zDpa8xB;IH`7lE%i8AmFd6t92a*hpdzl9ei*htJKn| zS>&Q%akRg9X~)Fnz-8R9E_fbAquykjWh@V{W4c-6vdx2L0Q6GcUI5%=ABkT<@~GXM zMsSrr)I!^iTnyxB-f=h7wvT#vZZL&IaV)||vKb4`_4?{_sTpVEbM&$A16iLwXMT2# zc~YOUw}#e*L{odCn(~Xogo6rhMq^yMU@Y?E=x%>fo5;!d%TwT}>)h{!+lP$Jj{DD+ z(~}c!(0RrN5wENV;s5&0UtfOpH-2;Zv)8|~yngR3ZrpjwrcTcZ&H;Smj5cdQ)66-h zpbG7rHW@gXN9fmRgFgL-bkYe@&!*=6uJ-*7*+f~7Te=lUMtC{wWaO2|2?iz06@R78 zOW7NW%tJZwoMjG3j?&E(9^$RZywDxaTD8g8<39*z!qxr5(j3=63@3H4(H8C8rq!H({~4>Cd#BG57GC;<|;n!C!rW++p|hyIQG@<#MF#dBwRQoljWSg_Ngl z9K8|V-vIuLCV8vhng9rku^#xO?2++$Hrb@H&hgIVx!t5K&iY<{;nwo*{rk%cH;js^mIfPte^PLm&cUJC^J5UFUR5u(>6cY$x&Zfr``|+ zKF`mArEyvxyu_Ym(}*!(r4KOh=Hw~Xm{(NMz-)VKhe?68G_vcVSQEE$XJz@%(yY_$ zZOw%5@OF^q_#U909h1XaG04H7N<6J@ZT;XmwrdzIbNUM2$~+tZW-#g@QgBB2_+?(_ z^gnSOoB?Po6fy#!dO6Mw4F_P9gu+bSg26YSL>R}}_MxUCaPcJTS7^gb!e-X0uqM`8 zBOP8L9y+%jaYCF~AM?l!=*pvTie|u?Qq1X@irsOTgz;LC`O;^k(l%d-esAl<(#Jif zD*hHrI2H3V%7xL#fm@a17I)^u5`-#YX{3$KKq8vs4s8d~*7zrt`mOd)ALN+2&Q&5H zGyFH}M2U=YYbo}4eN>=DW42{6~R6MV*9lnKoelEQJpERjvxqetq$>slSDq{OCS=gO&J$>#q<89R=syrtC)FqoDMr z<|3D`5lzDc>QrnRO0luw(QDI|OAYk_2C{p)<~ z8MLkHH=w`=eu2>>*{d{iaADlvP&^(=c-ihNrp~#;Kfg^_CO`CV7xr?qGqBwvB~DUoYjJC>eGF6V z=8o4q*@F+#$sL7oN;l$YS$vcW7L3YMla!6S?bE;Z=h>$b?gU| ze-PWhGXp}gZyPOJ{@C^1~l^Zc5a$-dcFD3`I zzL?yAN!OD`Cs&?;?Vl6h4K(BATtxl@XKZn?N#A&}e&_{0n~(FtTbi7&nVCK1ssA_L zd}Dd{?YEXMf8{H==)c9&lCQjUcX|2l3(JqZ^2+k5mtI(2^i|P$LYQ&FO;BVVaaXxx zmQSC!pnZOgr@Xijhik?J+s_d-CV57+z?Tc0`q%M>?XHX|uC!lcN7N@~)%lE>;@jW* z-f{@+<`H+K!^HlWr?PlO=TjB1FPb=bk?-O`CZRfke>YO&we&|{_wVbF(I0##i#hS@ z3n!xdIetm%VyByt`Z`bTaP;JV0lk~9-dV1ApBO%1M>aYG_w;eo&1>)v`4Qnq;GaAJ zk^f^}8SQVZy9smPI10W;ah>SocX+Xphf`^De5sBIdE$oh*l?CnU1(pbo^o)L+b3Y9 zN!tQr3xiF7xPd1xsX#`aa>T%l@91&H)6eO{z}(Dq?(k&T<_2_u@?#+XNHq zJlSEpoZ)w0CG3q8ZulM{$T#@tdXDB%_Xu;=utSNQoHaYa5GG$aE9-fb-}%?Rw72X*ce~uk5y#n>?a5%c#R|zf_KaX$q z$zR4V=SRmZj2^L2I-iWq=2sLSv7)8;ME}=Mwu3sOTMV$&b|RAsZSg-h$ACE(FRj!T zhtce2i6bZdK}BLk96rXx;og(wlY3t#=7=BK_Uzfw^5*hW#NRRA8?lWxpWOT6a&+-M z{LU+FX`Pe3mzUR;pU;g5-tdt59W{=m>K$8&b@|SOD%fLu+c%9@H+|bj=BwYc80-xc zZU}2T@ugp40@!IM8QO*;$gH-$=X>+DGQne=$v6cmeaIsc5@C#)%v$+SW{w+FnNjxI zO%YOt7r}VMD}5<|>(gRzu<3;4e1yH0QP>SzyvYZ=EO-!$ZcaM>r7x-@9)>vj!$be) z>E~z@ZQ>)^3nzsSuJ&Nkx1qtBP)#u7}6!d)IxFsB~IDepR^9pBU%b3+q z@`H7*MVK6TUcX?2W{>Nwj49R=vp$*UlX%{c=5_D|*XF)9)t~63o$o99_zxIu< zXI}Kp*S@pdW6t;b8*i{-=1&zs%RIrGgA+gK>kV64q*=)&zGL3{LWySwG5Y#33_Sg->jc^-Uq+G%Kl7iFlP53}@rZE;i%^6_{L_ zE|$BznZuhF9QWRO@9prg?T$JTZ3>DV@Kq02eI`iyzf$Y56= zyX7BT>P&Vp(S&OA)ufw5Fpx>IRKi5HCV3rZVdW!MQ`bI6egac0j-ZehWz>v99|pbr;tJkC0@q%D2R>BA+6 z79CfV9pDI?maDP(oh)rjG5#^!WSdt zpq;~N?c4E88MC<5PXZk=uJa5YKzBZozx5>LdEldp+lWYobyX?F&kQ+#Z9^SB^4V^Mwgl%+yz^DKE`5 zybyoz6_x0Y84ZShhJ?CHIPF~ht2~9Q8Wdtiz zSQyAUtn(dU2OwqbljGDo^wO#We_3-SV0|FS`CyOMs4Fr;eHfiF8{|4UdtZhmDfeh9{ExQTq-R>%Tmck zzQp!P9Tyo~ymb@#kjKG{7dQMok@v&J0C}IJdhqZ;7I&rHr{hR_z{14iCy#+#Nml^s z@cdZ3Lia;1_UT{mdS!&e7gJ~BARFYdgGGIPhhOaII=GwQ#h2EPG+w-H)8sc{6Hi=I zK2(m+|0;s{3?c5BU}VZDFmy98ASh zho&9X0F1-*oyFpy5gGN`(#!=zVe(|?=Gz4T)Arl47<0NfH4whTET8Ic8(Qv-56Ojl zeKUA_#z^}UV;n~)q$isBb zlg=}gn`RuJo-B{(zmM*}yS#JnP1@EIpijVGUv7CvI8VE|8GHNY?d8S0x0WAallawF zUR++`_k+C<_NEBWbiHuj*_WFJT4bNsr8aQf@P)Sv3RbCW`U(q~Pk4IvtKa#~@~zkI zv1suc3l$HS)5pG@;KuS3pZV1C3xDG$mzVfq-l*+;839pHi6qSI4e&wcmKO@8D0c)4@LYcuh` z8^%8Q`jp=cR)({*Z2sE!P*~NTJ~NoqN?dIOP0K+SrcG|_T;sP*eF`g(9N|S>^aYv? zUm*VCsxbS8(PSIwOH0O)^!mjGI^X7DNgRD`^0#b5LyeQpv(BWgH>^(s$vhElM%A z_phHVKYIL?<;Cl75F_*kYe>K*)2c#z2PtHxHU=qv9(l7Q!<9YHh zO95=hvo2J+NJ~y*4B6mIuYZgn@lBuE`-A1h<*NwuMi4h+d%pP8vo9=<=qKO4_yu11 zdUN^I-v7&3^BDSfXd^d38Qb^1%Z;9IFW+2#5qjo63eo`56Y9OuA+lm?+f2D`Uf#$P z=#0C_Tc2RW#snz?Wnu|Fc?*QG8m<~bLPTs15TD?qWbKT`M2;&d_3QUoVxyl zONNtyTBjXkVgCU)b2Q+loL^%a@)~gP!e6$ZSAcTn;EfwzEP7*!TDd9ijS6}CK7G{o zv|T-u$dH>b@Ecpr@q;ioaiw#?z;jF5OdrChPyDK6dShb=x7hChL5{uT8M(+4&)OMh z0h3JM(Z{8hLh}(9dTCW@wweA=Gqn__Y^arH%8UO(HokfgC3M)F8vz6Wi64jmGFH%5 zsHFmNp?UpQ9|KOM<6DG^C^kuadx%+V)i97XK^aN5P55d_Vet}KkBORrY79xMJpE+9 zlh*3IK|#2pK#JbOr#fbj6K^&(9BjmL&<(D>vro1^N53K2`p8ok{UNEm$S5a8L1eo5 z3m4Elr{(&AP2IfSS=)Vbjxo>kdR}EJKjTY7d_p+w4R1Gpft{h>7r*@F<=21vx0bJe z>s!lf{BG}C@4TC96DTu2yWwFUKFfNiF)WyvwbO zhwhhark(o7WPgc#@;jXiw>%=2+C-uxNjs~ASH^@5giCm(s*Fo`v*LNjjp~OO9 z^152qr`l)ACYboNZ^yxYG_y<$@UpU2RFPC3pnw6#!U~WzM6UEF?fnAjQ@}(4(RI0*8NDd%i3`qLI$-wv(*QVyD8s^6Pmzh~tNKsEE|IOpq*eO^=f6C6Hcd%^nF z+i%@lewQ~sc|-e6Zt}f(d>jt?`@y5f*vNGQ*LY8v%jG(X@xn=qPvdImGw!my@r<{f za2?k9TOF4c$()2TV^PObSetje(uMZlpo6W$`K&D|To`TRIP4tGvClJA+Y30?R@xXE z$uBYit+Rh|%P28t5x1c2ZjV%m~tPKpvdcaZ)5R zsi2$i950jj?zPbH2t813k<;L2ZAkMfjPC~Z^W{qND(XCaIhF^4~ka9(=`0a|7rTFwg-2rmdfv>z{8~jQSGS0^V@s&TS)y3pth)g+t2n4^Q zqdJ+SYtsK(P~QX^+lH56EG$zIGG0^phQfVhyH@1VlKS~khg|2I2QHnTndF#h1AzD( zKV%&ipLy@0530DgriNZK*jDQ114SOAI&%qcsGD}UY9Lz=>(QbU^Qevn4#71eXqUe< z_L7>HtF4p&oHSgny8OIX`f)yNheOMRQO|%GEqkt8(Eh) zQB<>efj|Acs!FAC?c~?j2HkKGKZL_)15qBO1^G%6vb8?)Y-w~zK9njmXgQXqR0#wD z1rA;fXqAiH+4;apd#)q;)CxRgx_Iox%arxLHV4N=C-KhDyYP?&FKr;0$sm;}001BW zNkl=$<(vGT;-g282x{apclKh**8%QB;}h*MLVK>H zsrK~dmFka8G4^W{cI!)9YPOTFQR+sVo!$jQIsvw)UGSg&ae$PEesjQ+HuS?n^V_yD zKhvz6Wsehg^4`|{AoG`W8?o4Eu8!ufmW?6*Ota4X)*n{S6I)^<==uoX*0brS^%7k0 zmm{Ke?@yKWzB+w8;y?Zd?RnIf`6<6CHb?^>PmxkjNn*_WwDr=FO3V3+4z2BX>*6`> zrQYP2s&r4H(U-D!84+TjjAa{ey(uHVElV8cM5}LzxkDB){k__K&T#g5Hzr{Oz47ab zP<%Ft`M6=|!XSs7n4i&yZJ%@RoaQOk(}z1xc`<$+-rflE(%sw3kH7MX<#V5YWqE~7 z;TKp~@ZuOsbk8LX6ABqC&_z|O%AzHM1{=$J+zPeFMiwImiwi8BpPVh<{O-NwOJD!? z@&|wX)#Yn{_MPSaeKvqulu+N#Bllmt@c%5o^fP~R`R{)2Zz0DG5P15kLeE2tYkE#Q z)Sn2V?D^By;)v~Tq**Y6oU~Y(-zz~k$HGop;N@En!o#I}{06;G*yvjq9v`{)7sj*? zwmF&5X5K=_S-<{t{1C@CW%%2(J_&q)4RdkYoga!!NchkWpiz&jV9}?ZZF{VQ3F{lN z$EdUY#PuoIr*80RGiBpK9ka;^k3OwD$9q~udk7$7EA-A>$>ozw2u~Yd|Ec!%8*Kja=);)!`Twqgr&B+kQqBHa!A z^0tvYPkOOn$_O%SG%iE0F8D+v&)9?;)jB~}q#Q-5a6!riEqz$;a+EfRVAkmFt%_XEq9iGg-?%=i;isC zU%PmOzV^(=^r;8f_Rex^d40LR_fyMzdq2(oEpr^iob269OdAu%fEsyT!b)Vo8++Vv z&Us@z5$`K^_xwF~`zkPqhEL!^UV!~2`3$Dihc`Sq#-*_ld|Z=-XW%^_O5eFyVhIAc zg+$gqMO`N3uiLs2IO-!Luu|Y2e84ac34Xy>j`I$*8SlwYeXMs-*Z0QQTns*k-lRut zE9)`_fa&-me~mbUQEtdc+mwg?u?3KZFM#daZg2osH)MR2e3Tu-jjhzWDX&T~51Tn& zcTx_%VpgG-Na|avkam=)xuDh8F&u5vxyA-yFB6dYoGtO%dh<3zs?PF-|X-8GA^s7ap+y_ z*+hoM8=yRAt84lxNB?7{Svn#w9f`}ta>0h;Na}7hkZ>*~y+_t#@%-+&)0%`}Xk=nc z#Q4-igOzT8D4XQczr@x~fr*CgJD~0Vyd;Og&|GARrwr{(YDJ_Ku=}1m2wCxW)#2y5 z!EP+7O&gSzZ*)-|gL0&Gad-kIJlb9XZtCi56}LU=tH1{9$l8$aB)(t2I%9`CZFWA< z0Iq}5#>nd5utR&Ig?xo^EPCR31zI;m^qk+qE-w+ZwrR7L0+X^iB+oV*HG%UbM&rZ{ zPk(;G4NPmR-K4h-<1PAI#`ab~U3%r03cB=1B9{IotT*jyy@|!Vyk?q-!r&3`hkR9& z4?*~Vs^_t<4m*M^&WuwnIi&C2KY5(Fp|5>^?X9=7rt{F7QN1pl=QbIJsq^}MUZuUy zocYf3@|_nlclI}g?{HmqlR5MuZ#_BWZ79y8a~%j>Na+V{o_LEqV;Natb1lvQNgUY< z2FvIRJ(Q97j-eT6I^<>ybswdk#p<`K0q2L>U>A)q(TAbE>``pAi`3 zY%qIba&$BZfprZB+G~AsI5%0#lQ~U{@ESH9!tvVKnz2MuUX(^R#{v}-Mpa@hcr7Q+ zLIcX6*9=LLbXW@E44bv0uG;#n(pS>KA*wcCTEEL}VyNEad%5oY@K_T&(w31n?1tSI zzk=Z#)>hqDpc!!sEuxdq^h&^5gLkGPk20kkFhH2&6Vqq%- zu%JzG)a&EuIOy9B-R#8I#_j^#!b;0{ZE>|^~%Z&|oGQxJwt z;t5m7%shi1+Ys*2Yk{~=v^73!zHgX4q;NuDI>cm4!040CK3zi~QzB5vwK6#DXz+0a`WJqP3J zT0ch)?o1nqZJxi(`>Es<5x-i_lc=eak9Zu(^iSAM9@X%)oEG9({2o)F6{|};3Tk;; zSN@2UDDc#cynLg#^(KW4|9F@;y(nGz`If&6W+We^S?#r~4THDnVr5+(W`iQ*rQ_P% zOX5@vA@v-u69`^DW#g5`b?)Ugi8$-Eb$AYbGF4~ouYge=@YJ5_du54mL9ZCDmMYi4MgSEgAxNAZMPvzmReFIB{#VVPuq>U+2$e@r|l@* z;KE`SbUX7P)Ou$lKRR$uMhyPJ6x9V@N=tdzfNbN%UVbGREKb_6e+yxeB<=jb>W zTK*1>@#q3lUj@ybxLg;>`+W()=^x-u9o~oYF#zZzU#aHPk3OYn@`AvW4IO<*J3eLc z)V8#J@IY+xRh>Q&Y`r|(1h(FdyPimCE9(5@X-t`JlJK{MNR3Y0JO)Y30TXsjxiz#0pq>luB8-AS|nXPnn|Zm~IL~;uO50 zjqcEt)VSzCZVaT|qETU!JUx^Ck+Em+QibqH8++;@c~TKL+O;Q%O32BBu}Otv&mieZ z1$lWI&+)FCV4iW*_1FzD7a7T`hpc_VBO<^JFUu}U@@Mj7my2KEj)!i>N$n<#8+fKO zHhbK-Jz<=9w+;`f`c-&?-*=J%F2zW2^@{~^Cq$KC7RaO8Nt&j9t- zyYDUEeC>_pfB*dNE`RrLes1|6|L)K6XMF@tHVI+k!oeZ7>_Kn0f12@bZ@F_=`?5X&oqgQj3ch{pSj=L-;$V22 zb~r*wH{*TMxEsK>h5lun$+atE0?N9X>CIKyyn)>IGoPohI&^Oj6O; zn;CF5o4&wkn{1ZrBhF8@rHkBW;QPe-(a|jyfOy(r|0Z$hYi*+in^pcssZTztU+u|G ziW_g|r(HyfUx|$bu)c>eaot{p($NhD9B-f_Ep9d!e>}5}-jvYKr@Uf4Ha}B`^k)~B z;!61Yl2~USY&b3_9?vSd)!6$0R*v^0n{w%TxOCGhR3P==202^Czk`P5-D$ZZZjjkTqtF zKiv}cM33VS0-Q2frS7`h-{`JPg=-hMWOLJoI>?f*RFP5ZfK(Cq;ogJg<(qG?Y5R~l z>nU$1dBpG8!IN=8{$WD}v(iBWKDtMg+vNqNGKcKXc8 zuPkru|2^DGE5Nv~LPnRY0H_mwhpU`@E#nggkYE0t-)4L!fBKMGf}FX+0l$a$=}&wL zp4XQD^v6F(Te)dSl^Cex>y+gozdILyOqr*7_}$u5p7-@;gxgQQ$~@z7;@U}=HzpW2 z+A{rZ>lb?NBQ9#*7=IuJT(Mi`Pnx@EyHDx8=rC^Os(ymF_N*x-v`$8Ji!aT ztS8%U=6AlA8*qr5_M75}XDl7z6Q5{jw2E$O;M2ik<)<8MZ0x8lP{{;A`&?l5$=gH> z^(6e+^8`G!9bkNCtcYM|lm#~BTwpnH&yQq?Z=dkWcy2kOpascxYA4Of$*Lyw$@rnu z)s2+dui1QT-}Yg(vT=kY-&_2)_UZGm%IT#tnX@8lK4_IW!`vKR{Bx z72qI~RJd9FmCe%?WE+=XP;>1BH)-wvX{X^of+GEgd4Tl}k+G3u+KYB_4Dei;aD|W?~ zqy&?!ls^4}N} zR-LZ!v%>B$$SiJCu2E*4$02v(*jF6G1W&ZJE^)D=>G)E_*aJagXXsfC2lZgK+OIDX zAgZvl$^68ba_3PQwRy*xXr#a=GB5KQB1`@}gC=9^OcI0$Df1ZqsYL{iCF#SdWk{!> zVNd#H{5a`scbbLx=d2J~JBDOYD|BU&a-h;G1vo%mZ_@r&i%FJ)YaUN{D)-UJBlM?$>kEd_jPQdiBqF6uBgFPSG zFV&wIQlK{S+06?qQZI}S+;s)#KHxh^CUq0vjOD?@q9xfycX?7U=9QCiLS4yAgAG!s zzyG0@0V%~~QX5FyNqX!38d#g7kilZZL`K`B%v}=ya(Szhcr$jY%fyX7D{&=HZNqRP zgrIt_l7Q8Q>JbxyKk*9Re%CI(li40ejlNEM44xqRH?(hCP?fTHt0B9r%o9FgQNGCz zp!`geX9{7|n%NXZLcr8#$eJQc2Om`iIN^;AWmH1>ZKMqW;>TScrH)$8BWiK^%bfl~ zAyY!}f-10W+%{nTq&)h=Y!k(pS29@&ekaGFv?*rH6xq7TGs*h!^7SP)j6+2$Uz9-)Uy0FJblE62G3pv*barj*@t3T+g%>`)`6sq^WS zP`uYb=Qve&TceH1qRG>6B5#V|aU%8AoNOEi%jvCkiIHPN$=# znFQhC96`AQ-T70?Ac8-+Y6eZ>zAUvp1RS#G`t4-VFc>tN=gK2VwZrr)XH zE7&>uC4DeA^k&1~Ix5BKhBIA_LQX@##Eblqm&P;>;Zf!TcT*exQg#XD83C;~q|dpG zri&csNBS^~DMtnS9OP z=E;<&bfU*ZNS8b|$RC4jH-S5W&p|s@QI@MI5cBOe2-l z?~$SX#C0N^-~{iSN!hh)2P_h>2u?uvX<|E$LCi(NcnVk_xe0vs9+NnH_LNcOzzt7& zl21{)IjV)qo0gha)~W;Lk7LqKFKpbvjSc#47@{9me~#FQ4e@t}ET0ON#|?O7AOOM1 zXP@w+y~w*cHB)>~LHNwiI*-CK5k?6wJSWa<(=F~_bv`ktPNP*lW)eQj`e9R_!gIbR z{j9niE5q4T_EKSDT|TZnW`J!X%ewe;OELow{Hf*hsso!mC(QEY zNtUOvSiE3wjKpu>S_iI+o^zp(2SoC!V;4%ebc<{k0xdt`J92)+99OUsXb;_h;M^9a6OY<$dS(F5)xcjNayuXBFL zV&&WKJ>+SXhs$FYQvB`EcOIWC@7`xa`Q$XOl6`y%U+%Q`<_S&FT;u;4{pt+(V|e|u zcivlm<4a#%e)`8gz5Fl#{om*H!Mqw8P)D)Khb}`8fYTJXRk!jYw z?KiqsA7w&Gm7G+mi~4c^o$p>q3zwfzE5>+%U1${C>Ta*WX5gMwAh9I#Ou&+nr)4L7 zvg0EMagmVn9A9*ScUH~|hoA)0D3F*n6E0Lt@(4a)Uodx@r=Go#No=uj5*!7OwmD?e z_odLefaDX3KFyAQnAq-fu6c}){Jr6$131Ij_K#@tN|cogT1U*Hj@elCH7myUV-~)& z;{{$7{sNUpY%JemrRRW+KpzIwkGW$X{yt?zM8%d1WM;EAIvRIwzPVx6^O@uDd3Woh zhRV#>E9;4Qo;RPTA!%^iH%}p`5-FPlIrlPoM^0Zqjcvd#u*Fz#Q?27l+euA)jx#N3 z^I*euUjdEJ{C(VW3^E4X1WL0zyS2@Pn$-rMD$Jb<(IT>i;TWPTt@!>iTVrA<|cTeYJ+$_ zxTz5?=%k$>^7ZGQ_cEphzj0@KxXH(GfQ{&^u2k7)UcLFJ#NPwxn4{3IZ|~cVu;wcZ z#QLtHz*aTG8R2b(BgZdZR1Xv82zw{Q={w8IXa9bAcmHR2TKHb#>2&Xt zFw~cO%fI-;FE3wt<6g$j-}$3|zubH8J$NgHT5NHw_UAJMIpBiq7 zKFIJ6qP|x6e9Bm!M`!=va(eqe18Q_QZn*(vY_O;bR2}T!dF3r_vBw5k;#*eqH{(H` z_GcF}RD>2LuTM!FDI|Wt5CV*P1H!B@{(WLIe2}N2sU?S4SO9qhE^_BI!@bOIcJP9SFw(t@ilm6 z8DU~$8VO_bWK=dnsPyEo($YneywM>1hmOidmVSy3MaM4mP8(`h7=TyYbUtB8F^Zf9 zdC)#HT53|?M2UkP&bPL{4uUsa=pbQ1fm!?<^F}PyqM)HO2Jvr_ zMmC$DfQF)@A;MToaq!VWBSv?57Y0R-hSnj$vhJCu1`Ac3$EgYE7hwm}AcyrR; z^@HH}Byes#K(5!<&LMiEA3ra_O(XyAi(g#+w}1IBm#_Zm*Vu^SHTLjw1H_{@LD|+> ze82#&@yu(?6DEt^JOx@@=zP+&dqW3sXq|J3rC;=cZ-{a3Xfia61G;`U2%6u&_w-@hHT^&43d%oLV8K*pCXGx5Z+ zjZD<7yb2k@M}6WB{P?f_l*Y93FdwFc%`rbn16i1I#EiTVc$Hm|=F@+ISG}&PzWREo zH#CZ`^iGNw~&EJS~fx-V$)&nSdZ#~hg%kET8?GW$C1 z248tfD#p&n@<|y1k=sJ`fbt1*ci%?l96r~``iwtq)W=Z)o_Rfa;trU+hMcZT*ap=r zKTm@_p+nz}oo#gadp)q@3ekt8DO+apU&|jt^B1a80D^qYyW`d)UsZko+49cA$ICG{ z=6bW)5gWKJ#vZY8mva{V*7Il9c^>nYzk`$Ikn5fAadYn*NAK|VoVS)cUbVmo$$S z0>a;(Z!*5i2RLmvZz>L2oXMBWvPmmnZoJI-i}P--=NLt3uWJX#v?DObHe+I*>nOVc z-1DDxwl}cQa$P{3=ScnJre$Ni^hShn3leZ(lp8fs4Bd^X!iSX-U`%7JSYa}-$j`J^ zYI~`3Qw1DbTscmP95-Yue1#1X%gLr97Q~18{&}SBa~&;TZwk{*UG1*YKnCLsIDCz(~e~F?^l3Uyf4KkLcs~v;Mc>T8}ut~@F%ND zXSsIHnt5EMlUegr%C;2E3^CSBQnF&~%E`^*s2UmsZLNaY%lLyF*Eay<8=l7Y}Kb$*rE>8@m=P9<{67u81;zolWQKBX8pvm znV4{_ZhiGAAKOCd)j=8729k`q!h%OJbP|}*Q37>Hk$SJeMUvdK)2Wky*lxO6H zgs=AREvR|;!k+)&=u7>TnJft6_?5Q_TSj-)!x+X+((QRL8=hwd?YCq`HSnGkMC@@TmSLmzkC&`V; z8$4;?MUJmhI@s$gUE6W(yneu?2krB_J4ajuocNj{C)4tw-n+nWu$Yl2WZ}7*sNW;y zVmI$R>u%rZSTA zINDCzymj$Av|eQA!WJKjH`BzQ<-dxfW6CzAtm=Tx=WnA^>bC?V|3UDHdRa=LL(D|^ z(4+i~upEa^L$GBsgzQGVt1LxmyIigLDCKEm^(e)T8@wr00vM@)B05ct?5iDDZCn3D z^fkZ1vp7{G?;Xv)PNN%NzJlG!TQ}W&`qV{$)6fsOGU4Mv@t%y_Aa>Evi}pMX0#C1h zg)ta`;S;is7c3xxtCv;5y^#Gg`Uvs;@Pthu@W1)?d&KOYU+N*&X1x{YT3meC^xI z&;I0JTYmN@{@U{2{O$h&d)jBj%K|k%j6bD=&+JF>19l#;adm?QB!tJwZVH(6ts8YW zUwImT=K>!;pdvE(0_~jhhGXf%0)a`MjE0fx=E!yGY)@}6%0fEwh10FaISPBphY+|~ z9gu}w?Dn^klN6d-gxZD{$z%eVyk%ushYWNVyjD>W8p!o&@!FnF)C!PC%t~3;=Yrj8 zb)l@;<*838k2Z9I=_ZMb@OUi?%dW+ER+Yjru*SjDm`cRN_Uvpt zhl90kYo831)?bx-#?5s~($_u-oDPp;{EgMNr+%Xh-)lU5o7Tf088vbgf=ukZ?$Z#q zhYd~Hevmd$abSsMwE)LWJrii~++}j!vP?SRW{uM)C(8qF*6?_ae35;Pysw(I{hiSI zyK{i@w7hdC?|^K-(MzB?ZmAD{S%9Qn=XhuPcsHv)cac&jr?&?mVvd=EkTnq9kjxy% zD(alGy?k(QxpRX}Qre8j$v9(pTW`uybuDn5@YJc`CiNze5^k%AZWb_)*zkV9!s=_w z0k2)YagIz-pY7dQ-daAp{L!1o%ddRlcb2ce@h0Pg;~ssJ7~5x&?e?t~@|$}<`PYAX z`Rr#u7azU(=4;Cz{NWdtvy*$v+YcWu|Mc^pU%v6?cbEV5fBMJx;@NWN$(M)|o;*Ig zk93|u;y0-Emp<{6cGjK&+L*Cs^}R-mqwR*LeQI8OGmT^1_F|1b#*@!`{7&$4?G`?w zECKcXO>0`tHVS9C8D|y}^>uEXZm&TI_8ZrbfH%it+LaY6&hs>t-1tLpV_fU6c^+0Kw3281qr!Z(who;at&?(2> zVAs{^j%@vui_kQJ^!YEF^#Ae}*LIB7&`2eV(Rew|&EPDSWc+Hq<8OMfy1~a4y1hKH zEQ1P6Jj5oo4ri*UQwR0Gnk1uLIgA93ykl#j*<|tw^~kke)Ofux^EkkeQG(T>(JAuM z#sIAl!=q5^jg{87|CB~7h8Bl$P-};6BcBWIVlfsoW*U=n5Vw+z^0Z~tCGTGlvUu&H zwO&$ZzN3zQP^c$1VrQ)mXC zsrx*xIPuyn?T+CySWVfpcJgp^)a&tCoE(({$=D2mJ~w6V1h)E59p};d$urEhWh+T* zeT#o?d7wS_px!3WwaSYg>8eB5R1U|9Cz8hmSF#dg3$1L!^PeH5*~Xyw6P06zo|J*| zf6PyPcrD=ig|XLY!JF};8bzVt>N9n)uA{$k&e$ry__O^Z^I?EJ|0}&T+Ie#Jc<_!A zANgzA@R14rBN64Fb4YZR*sl4QH8oyYTB?M=_hFTs&ihTU3o3>NAfY`Ze~| zSqD~c&JfK*)jY*b+L*F|);#OpmtuUO9k+H^amf{e=fM)+ki~nnZ~X4fMzq5<&OO;& zN86lxhdW(He=f<7=d=9gJ@Nyi z&h;+Oca8;(38~~!`C(R0z()))K}(NDkot++-+8Y8ji=0GU?n{I$P*4}=fEgg5m_Eh z^CBTDNB>hlt0!XcSEANlDelBlz1EFPq-=muSvDh+zJs$nKCXxnWNEu8 zmfG=Eati%l`L&Gy!ojZ)^qZ`n+0{*?3A3j7IbK5C)lCek)18x{e&Wxga8f8IY(s1| z{en#9dcodlFp3+E+pc9ne#1*Xvvsv*t&7}=SbF((pMcEJs|WGKp*;Wy^V92>)@}se~1rNP&8HFCyOaC~|^;!sIW5WYq&NWoUHHg?7UbSsi5?DPXFK8w3 zLkfDnt5M4OM!Zp99C4MW9P^yts3?y4>Xhpf^7=_09<5tXrNNU^PgU9xT)wo$k2mm& zuZmM<^PI=h;P?|9VLm|Mlr&}PJZ3GyJQbqbmr5tafR|zFWR$T!T9t2@^QE5Y(>ap& zI6lp_pbo6jQw%`AR3NP}(5%+SU%>k}x#T+gNQE32k(+B+%D`(9$kN z0L6iGDJMyTFDzD~4F~)fcWyu{T6jTkCr1AnNVC4Yt0&VSG<4Z1T@aM1*Tn9z8zE1# zh_2jRymJ-c1nitw2wgA<_AX7SeNCB90AFWP{EWLwZ-C=dz>gpM$|ZlV@F@%N{%)=d z@V&2LZUW0d-+tVaPwnRSjGdIG?a>&$a|Z`@>Ep(g9%&M$W%|HRo*af&ALhb^@OoaK_CguNCrHmt2m~Z1u!?b?l&Epl4OU0`=SF9Ph+H|?*5)%tn zi#AZ(3RaM)Q%-!dVbkme0P2(^)cmFNT;L94i(gcIA)jiqtq=E=-^APTO3r$cx~G{3 z1DkklXY$jB#zMv{5Ikw0(Rby1ngx7g(P^Ns`UDEDCnaOaF*_%D^5?{mku^zjqmkUFudgvxbe^ze}jpu*jdv$iKd<3CA4@U&mO=O%zp47%l{rywKa z0!1$*#ip7~J2n~6tNPZ)*vZ&*$dBcAL0ozkWlm3*-~SI^TfX#-Z!f?4dtY4s;m`l< z@=JgFZ)HLv@7@*ckxeT4w|e-mPpC$qul=gd$~POW5$F~LFM&>33^%RRS=0PZ-)Dz1 z7pjcSE{tFIRl&%L>EPIYwpAAKm@w{fm-BVUdnTTppn_k95ezD0Zq7LHfnG*VG$U2z z+NLognhjmdqq7?eJ|U-`J#VSsAP1!pDw_(OPY^|YZ3;VOL>)`EEZ0IqGZM!}++sOMOJ<3BG(vJi2)0 zlWWz367;wB{T*vqgL}q%r;i|#?`>ZFeEZfxes}rCbNmEgXa~1yvy5+> zL<35i3cR@JY(pWxuWO}T2LnS&1JkC?UzM8#sN6ri6p-!|zepB4`An-UK7`USB+Q`ht z7~_-skTgjiv^WQD`x*z@>jl>#?U*N|L27$@lNoi;X^||=#lNvIq7nypZ@dAVpRzzH zG3$A9I$6s8bKox^a10>w#SQcKed))UY#-m0aL8))qsMPT{}wmfuzAWGRF-G&aYM=1 zmv4XjZk~*m@tqg$EWh-N|6ut?|Ly;<{K9|vUn!{Lu^MW0ge(2p@*BVLYs;_v>t9}e z|Mz}7H~9SPKm4QR?|f?A^MG`1TyMjolUi1k;mrT41tD@ z!7{U+QiGCBIAgOHgc^qejB)l;pVF`J^iZYpr~hmd+WFFTQn@u^viVu5C#gsL1T@cP#Z+ohb|7xi!aZbt>aRstK(BXAl^%(vNzEvrk zDXv@`VM0c%N#uFPW6&qPi17DZ5jlg!v?IDWmOFDAHrtN!;1h4^D>5!z z8%wrQ+FjN7bAO}lGvYZ#EB864_vzj}?tW9#+-Pcj;txHtn64Sr+ZJ(J!f&Vq7J~_qt#*G*FcvFY9F`u$?o!qRd43cAjIQ}Vjv=$VebD+%F zImQY#7e>r`UV$L>o~`6#GtBdyW4@^zcljtnQFv2jhc@_y+Ka4N(EwZC(G~A`-$nEtNk!kh<$8k{rYS#|#Cqo9)}g!eb+(JmGTwq=hPrvf zb)EorG7~QL2VxK<^M(@of!9eNmvptgqnGBGuuE?^508&yzVk$XM&%@RM{L#}c`ZfV z6Z^k*l6M{FAvgMYgR$#5UE5*)&3H2X_HxK3u&;~0bL%FXz{kt0pLj7F z#BK&3u`ztW2C|#N*LiS&fhV8*Bnx@hU9#znOxrJW5%q}Db~+nhqnxLLVcR4YY&D@C z`F5ZJPx~CNLKYCC*gOK%Mm-~~d^+Y=cKqp$lh$T%BgaW9u?L-JfXv(FfjoJrClZMd z&mRIjUsPXx83j3*Qf{{LN1mFXwSLtuwY5)T|08kaOFSfPI3ZHB;PMSqKhAM-T^|3D zXYQU&UpHofxz6QgaCN9Y*(Aj-uhV>@+Mk;79F@&pHrMA{L9ENoV8oE;+Fn_2hNNNi?-_(L*40sLJBl(;k zt&_UPKH)ZDf~AqefW?Q?i`0wKLo)SHVHrY(zc(mkwVV{f$#5K3{K;ujwmzx`l;~Pz z<{YJpQ%`*|6-%at9UfW?cwqAMe6G?##cn{hRU{8)@~>Ux7a_K#^+k+!Wm267!_~4< zQfDUeCf*>OnDC^F4z|-D(V$`{x<_z_MuAR_(>AXOg{>lkH7TG?=V*BcMJ9#vsvn%% z$i(?o(>#{<0QNAIfS~;4HMB_G)VVzTUP;I+TeVs{Yvdq=51>NTP2}Q_Y;b0Maf`Fk z>NACu8z^GKtA~_QIr?hw%5arEi_vv(2t9n9D~niPO{O0C_#eJ>SB~~;+j^)YVN!WX z)0Fj(4rBnPjIg6T@Z>%4J(NeR-i5ca<>RoT!=jMiwt3sdVZ>Aq1%nba0eC)1b-#w< z@`_KzSwHd{T#z~W3$n|}(tNXEs_-b!%5hd%{nPRkQ410U@V8EN<~oRcjX&Y)+%*&O zsnGA>1NU+unu_BG8rOQgj%}G*;OZ->v+(}Q+w(9(xfSZq`OfQ}4BI%;>y55`x)vvj zaRHCvWa~`f+ic2y*(N4+Yi>e>?vQ1X(gcn2rr20ewv=nd%qV@PffLNif2;7w#ZSH-6${;F{bfqoX(v`CUCp)p(Z4UZ1QIqe zpG%eqomg96Dc^FfwT~KOxr>c3Y+LuDXX4aeWwhRL?v#_TC-BUA;I*HHKg%q23_K3$ z%gzS!#0GTr1vS79Sd?_5Oda^o=E5nfi2eOm76PcVZ@9r$ukP`>U3odN=psqH?3EaD zGp5)^G9zV?Ia3AB6?6fg@a!7{SbX5M$xcG@x>vYszl)rbYL>>j!JVg722U^Wj$ORq z&&^UVN}sS%_1$}KE&t?K|IPAiU--l2m;TOwzWn0P{7iIrvpb8N(7BMY{(cZ+m5UH= zqI59`nFs|PJ@}}5EXF4&e$EQ7cbR*Vx1Z-}MvlIUn}0B!42%g6IO^%MnvTUj^&EZ} zrWu}&vViNf%7!wO2pHi(Zwo&n5Xd_ZiYnqp74xNAnK3Urj&?6Vbci)-@wW_3GfGtZ~fgt;+%;1jQ60(-(jmNu{i&uf5@?~_~DWj*SI zzY9g)?W)aB^*I4`#uLWk-C$G9-ywF(TOZR>%%i#GLVOpV6lx4Ao3i-5AjNNb2^r~i z*k*gWi5(mCd1n38A`eeS&pkGHEqUh29j#EvoBt+sRf}H074($Xu%EH{d(L_M|EKQV zVs*>1yS{by*|&48d&+HB+b-Hkz}<2HOL?)7aS%a*5GzC>kq}Q24~c-hM9BjWNIa0l ziULstk;q$wgg^)-4^AL);*JFp-E@NcM%tmPt1om{RabRYojRw^zVDsi??2{PYkm9d zQ&qNAUFEs=_pLd{9QQfqTyxF2*7{D!A08jENa*~JC#tc*I~#Y=S6$6}6G@(&*M50} zlSOOwK{BdFpcf1B%%%dS*yg#I;ONujj$>!X*aPou+<{=5`r6#Sc(80AaN;d@%en;6 z^tJE4K7IN}n44q|%XtVuKK^F3xJe+2Yn-MpB?ljDu^H=}U;LVcsex<~LvFxcKYy31 zEq>#hxIkAo;ID0+P7kq7``M?(U)QFe{ym?W{>%U3uTGzQ;gcDs)FS@jEB=A+I{m`G z@e9)*{DnU_UEuG(@mK!x^zye~njSv&{psmj54a&hKQhi}5`#_J99i=FttS28EB#GI zi1Aw8pI86i`}Xw2GtUr9_5fqtD6&5og+`tI#6Dgn-*%7kDT&{zkDa!*V^XAYKqqO$Py_#51q^>+)>s!Dg3s_v-+`~WEbPY``;WZ* zj2K3avF62`UiO?9e#(npj4MDq`9)Q6btLurDxPFaaE$PDXdLS|KYCA{3csLomsqU) zwJvIHY(Y~AKS`n<8BdM>(FZh8(}39biWlGDM^@^rHpatRT!6z z`5pLj4^+lXZ@@dH4UAP^Ew2vFUrv~_IG?I9O)V>)cY*0T$3HiJoO|gJ^-Y$db4ztG z{MFa--8zbqWe$-k*SP~)%QTAk)iz@5Gi1YSoy4l7E`xDEMKj|HTY;Jm2{Xzg8LE_- z>t!n`Ux~k{5TDI_2E6s^xnZfS+$J0ptK!Bw!wTNKOMiK6@~INvIBtpSrsBBP$s+cd zw9)wXw{W#FcCKAbn@BtBr3gW5Ay?=r?<8U(DL5k^25X{Keq^i9MKtmRLgax@w_y}1 z?y)DNWAlv$DLq4jPX>80DIVv&;IPS)G_NeXNR7n z9S8V^u6TGJ=Y~jdu5WR}Kj*n!e3Mr_<4DI6ukZMgjp>cI->&gO_LNVUBj#F-YpT0! z2=DFhO~30$e{}k}f9*5*4dGpWN4VCQ99-c)Hi36?^oErhZyXIBOlYO(XJkuPZN&J7 ze8)^!Fs9MC=o;+_y3E_9b-c-)##qgp8_s=ePGSY#wkyf8SIsl`iGQGBob$Y%^LFaZ zi=h^r_u?uCI!Kj6zw>%0JktmDMEP0;MKk5dml6xsHK`8V8f}`9tBRrut>A+++$Bhv za}X$45FJal_EbD%!`HcmzVdv7f69;IRGZ2uV&Lca;`u!r!Mw&ho4?HQt}zeYqMfsz z#c^WZo6TW;khLlMV~t^Yq0WcM%DhJT)o!-WQm0PJuD+@cCgWIRGE{-@sdrcySdC#~ zE3eL#Wj~wAww?cJPtRTAI2YiPys=d+CD$eC%+_EN3VQjv6w$TVI)FL&CCcV8L`%aK zlaw19{E+x%)O#o%eTfi_(0e`_!<>-QPTEgfW$jlSPt^LuLyp5g+8t*WpUl(jGvNwM zk|b@BMlt5RiS~D2Sy-%rQD1u%=PLy3Lc8nT#FBiyJAhVB+7GMxCK(s zw zyx@jW;Xu}2ojDcxz+i0Cx2KgIVUiWAYUAKbYrS8=90$q`O4b5t&Wl?b+Q;mt37g;u z*K6sFK&sv<0j`oh$l-`fFkMFjB?wjR_RosC&^a$DbTJwpFR<`R~ z0<+(*mo$6_bHieZB{(J}~;#S1RX8c}o*E3($4yly!U&{P0!%N1^~+QL#c1 zBU8oS*0;Ro3j>7?VUJ_lveWn*NTp7Upi8qhW(^3XT-lPg_e2MB=_B`n&ms1@sB1l+yvEo?310o<<2k2W{??#( zeX`iiYbQytyhhZ|l@0a?z`k zyoF_vZOmV~?!!2Cgg?R?mDDwTg(1)jFQ%Nt*7#fL{0QwMfQpR8$~iJCgdf2l0K>U4 z-YdAQQ{PJwxF%6{mDkWA=L*oM$zh>gLDTLfaf95#N*8HOxd^dhFe^ACEq#`rhHmzy zx){jh8%Qsz)a=3bV1x0PamzCw{&ze(J}yoc=E_r>W`Kl=Ri zAO7)wGvku4#!i2VK2YMfEEF*0xp^kf{N`ScUht!VO1PN;O}%26GXy)>TReRL)0`_r zI-`HPQG3qscxwOIF=fUys_!f{deg*ux2jA)7j1TV{Q3 zAhFS0Btyr7Sr(6vDd#tRA)NqxC5<@_+Hc7*B^wFRXE4wQTyds^5jmiBa*&r!hzanBvGH`9J6qLgulZKiULA+oF2M_X6El9Rs&b)8K#Z#s%CY~mTC zQtxiFAeYH1amt0SzhA9!yS%2(#iUvUg37p&PZs{9#E-OzxSXMo?UN&Al(PjPvwvs- z?;h9Q3)DGY6lh6d6vUb1-Jsd|`t`tD0Z@l)k>Eh(A=_jAMQTjkHT-*JalsB?7 z%)Vh|Heeu`7z;9gNL!J@jn-Uzq;))fK+LbD;PgM&2;3;h( ziGF7uxPA1}bmMq$I^6#~v8`?@P!^itmyG3!dEy7-eG7n#Zie&r`4M<9v+R)+|LWj5 z2?xNxIoqLHtPm=et)w;$CzehxT&ZM7h*ZiL4UTBUUe!wPXk@(D*Jwfe7kwo+7+3>u z+t_%LVdM^H8nl3%n%9n;mP6j+UsvkZ{E8%{pj=0PES4Y zRK4j0zMuQjuTP)-$DfE+NkA9CNhRxty`AzJ0@o zH}!dg-x<8}Mkw?k!eV#)AyeyfsCFw!z>?t$p0PfiaL|IUKSc4^sdYXaDJ!rstn~cKWgBpXYalZ%ohgl<+5>d75iBA1+{nd5_-`W?q=z z63&tKfWLCQ(ZzLkoiVwNAg@pW*(WqMkme}*ps;y%6s$9`5EIavFEy$ z8?nHdIT@$Q}v-u#I>%+Z{rjkV>$elBc3`^*JDA|jdP=I3x(ggW>O_#igaQ^IrwC3 z-vW4C=Pap*M-zGJ`D*`FCcsfI⁡$h@;cJja#n_(q3wFM$9?ppi>|WR`#KH!z$ke5Sg}zfy-6K$b zK$04>CkwZoy&~$AHl?r}3tMVonXe0yb`Uwt$=vggI2MgzZLK*uFv`x^ z?dIYL&oCf9em9=IJ{8Yq_Sn}DPUER2S;@Gh9E#>^Ua!0z9ue*4G1O`__5~ zJjm;h!Zp)n8DC1)iEKi4(!e)A*Hul*jh^fF;Ec8)Z@i|y)E|Z7Bd=gK1Mu~Y#qPVY zopPrt*LV}MLJoe$A{e9(;;+2HGII4HF%shD&f^(DY|bCTF{&5=q_v^uXW3OfOD}j# zn_->t6ne}g`hX~L=ieuRdx+x~GICe&C3a2vksQ_6Pdy1cG{ZDqV&f0j*xHFTZFdvf zr-^ns1s}3lL^l90o+MX+6#~O#X3#;S-_{;5Umd8w0c@mhi=x7tiSSL{O%QSDrWD1L z4I{W(t{pZAUg|ip$kIiS%Z}EyH1jS#pK8k;fe?C!`3)Cn>9uDpHlBKSA7wXyov8bi ztaq-1ko?}>-t^$X0~Wv8Fou^C_DtHDuzSJfQ^p_XRCko}`e*ON&xnBkbToPGHR~p? zPb+$KP+O-wi32P&Ag3J%y_gQHPMnYU{jT>)%5ER)znKq2HE?n%k};WywsMs5A*4;~ z9u;7HdV_YkxJJxGKVq#HK8$Jq9+%cNS6Lx!jkCdr%Hib=q_wO{hjEzad*U%hAu?b0)qVpdg`oq;h`oJx}CgP)9|_ND1GRJPDX!;v7O~NPi$$8e0u0!E1n%qpAy=?pnMg`^a&Uh@REai^&%wz*W%+>bE0#4t zO%m5}f+hSO1hu-bTkyZeCZ9CtZe*Z)exnyUpNBMM zgPYlPo|Zrh|ApDUX#*D%V^Yb>CO+LUELX&ms;S@>cqK!(%poy@BF{4dC3|g&y)` zi3eVAgiW;y6p&S(47#{xYJbj!2(o<2KO2Ko6DHU~9hLUCEv`*0T*JsMsQj`8ldB8a& zxk+@N@$j3kzdpTo|8)BCJG^~``It#xN^PVmTfbyXmsc>9VJ&|Hu+9&Z&~-k?@S?3D z@`>x`ZoE64Km6kK#OXhu?%n*OF!jlIUG5SoPqgzKy9!v!hS^|Ze0d{Gj|=vRXiO|Y zzOp~1=pjnlJs4pWTf|6$C&Kt77@(>CQFVSBIR?Y9*#R+P(T)Jhg)2Pj=97d?NHwT# zx)C1&aE%rFRMd8XSEEU>BYE-C^CDF_#;EGaE4HK{n)=u-D#KAb!dQ-EZA`fsb1A#= zNS?2ZCE(lt@}`A|l}{-0?XaNeqP8ysfL3orHUowthxo_{dPpjsHW1__zL>MF@)YKm zJ~m$|i@5@jnO9FM*|9*J_^J(qmaL%YMkiC(5fSBEA&Q7xMy22uA3bQwdW{ZIXXsp-X6L{!s%7WTp&)$Z_*R3p5s3MjghU zj8OW6o0MFf{rs1|%D8$meeIjy%C(f&Mc;k(RmNAYnYe-WE#@bA^Fi!le#AA^4W69y zc#pbQfAE9p-h=zo1LiWm=|orLCoACX9L}5Cd_#s6`UDlwfw7kHxExyJoSVDZ{J?I< zCEmY0KakV&#ReA;=IRz=$ ziZb|Jw}xMt-&B^S2GB5%t>~HzTaEq+&h2OngQeGbs(T$@4A{DdW+?p%6Z#ZT?#WVRLQqm{xdBrI)^6#3vER)es4 ziGP{bK({J&9!Fm`n}ob=o}~B2YWttPuLMiHFo+KbSK}Fqnfs)FSKsqIwSJ3>^FnEI9V4Hb_AWf( z;atI+V)t3^so#KQ%?HNP81LTHd&Jmxc*Ko_T&vwxvEys2fIP2Fu? z8NHtyH=nq5gX0dbl)jap0ovsn%Qss23TfXs=Wh=C^JA_%`KBMQGu^&;FTz1FI^*N@VPs}DOiz3Ivuy`tTyuNL+jXiui&1m`Ud%+L_i zo}c0sbS#Pf$t*@hXbNzq~;u)v;_4RJk%O>qAUAJvf zMXBh8?dRN>?=`*aj6R92C-jGMvmU_pbDz_FOGNoX`{kg4eN3s!U8kR%L$2{c73nl* zlq^1cb1@*M(9p=b@@0bdRPs1J!$;Xb>FR;EiC;3?U$F!H_;&~mkH{9Q^j3$MIBY0$ zC8&zB%^o}mg(sDCuek%6gF(*4f1q&~G%)YFKvLEy;OW%x9KIzoqN9Dnx}ub$l*PqE zl}ctxqbe2kCDD=wjev?hb!|SSw{YVt6TUDAgykX6Jfd^3{lSI<< zQIA?XNKNWeJ?exGsv7f}hZTyU(xF+s*K|!285V-;xoOY*H3>_8uoF`B6*uC{xQ)|-x-#&AMLvB!Fu(d*uoxAo{g@iQ zJkoSk=3Lurbor$yZSw6jbR^#nV(X^QNvBr)yQcO-OD!}45&mcj#_ZJi;1ZH#J^_5j zt5j}arFZ5ry{-8q`zs`%n3Klp zOKN#FZpUIDo0D;2T7NI)ROPGj7RcjsmvL>Qq;Y7esnEU> z=Y^#y5MbkCF)*MZS$l(imx)qS6s?|#X7pdG)9!8&<*r$3?4h#adOH)bj9BIs5W<32 zw)(aNZYDc3SIcN2f;s|jQuQxA$s}1hva5kIb~YmQk>!QvoGRZpepEN&w~5Eo@0Q=; z2^J@qzFJH}d?mAQA+Wd`-PjgGM!y7En%oV}(Q}QH4evNtJvWl=yZ#m!4$I`mG27%` zsCfRK)ft;xZ{B-n`U`*KZ%!{f_ssO?{^TFWBb>c0gs~wB@zT-1&aa z1S#If@p%IReKf++N7=fgZrbpo)bY}G^hr=z!cTn05jR)a>CMC-JHhm0&z_=qk(F^= zX51PUH;_%!sU5Qg@$zJuj%pi=ml06)N;;qqX1<)O~bhPRu$28J8S+#%p?6ZT~CzS0@J#T`710qOOEDO+m1f;vwt#vfof zk@PkV&qu=IN_~Sr@Tr?{K+{%kLctoH%QxC^=BrJ@Lr?j{LYy8ic;5E4qQ=V!PojB) zmp7RhE&Cd?*+Tb+!^#<6G=Nj>xqD2d%n7qv~e-jcog~n_7fNg@pCg zxuLPmCM?Y!ITyJ*-9A?K8AtN+;w3WRGe3=tz2Cp*>#EPEo4irLw+5)AO3T-lj}GC0 zZN?S|=}Pe_H*x4AU_K$!d@C}cS8%lQSV=clD&H&j$M0TDudr$RgO|TB{iDDCKTdz> zPyCtbwtWVt+2c$6i1&p&{VTt(hH1wq52ye0|N7si@BQG->2Lp2`smrt^!q-+k+8C< z?SGoq;?tZI?DyJS?ITXvlh&brnFlU;$7=cMAI~@E{(vaSjmKREu~Qas?@qrwy?y&n z;7j8^R^TTX@}JF86+o8FWUQXES)4+~wJ_t&0V92E6S2S6caQG7z;d#4zAjk25iv4&8GHHM*3QiR8%Y_W8QxmYghS2-1uoYIB+nsDKAL}R+IxdM|gTg zA0EX&I!iY&9Gi`bi*ch&u4pAEQQ{^2 zl6udPcp_t(_4Zjm`7Q7Y7YXq({Z&Vk#E;L(%exv3osp3Z8v6ubaXdF=Owmom?NGx) z<;~%M;Gn;K%#^-~(zy|=F|ATumnlXU=oeVgce#(57egB*!zP8uk>`r#ikJAMOXZgD z@I_SXz0_>xGCm5rr27oF3cJH+AeCl=&#KTgeH<7Y2leXuK8i5=VFUZOR#4X@ZA$o? zX}L(Xe%M=xkA7QSY2@a926V0@6aGV<19B%p71WQ4l75h&Oi`?9n@8i#@(}G9#~`Qg z3S6FBp8hQy+e|FBC8KZqUAXh{T>F!^FS{P#?~}GJnLn#Ov3@eH|68Sx+i@M=dc^)+ zP44`r+ZyY;&4&RU1Mxmz`YP@wZx?r-Hd-cQNUkfalP5f~vXOmpf6`=WPT5=bqaVGo z@J&8%z5Q1D(Gz!{z~{`-xJ%G^mcJ#O8w`=>yv>l=Wpnn%&AsU+H~9KisVBg>d;8|} z@=EEOyi$6X8$P|3%w{kW-4M>JyiqXrs>c}Uyq0s^be+rbFdN6r1HBHq z@F4)s{WEMB4jBIw&7dK6uv zoTb1Yw6c*4w#ZA2g20RG>8vHWuH}T$jcwxFbC>a*H7nsT=qIMhP)NjtQ@&)10_R=} zsgpjWAGxWh-1I-s_rQHCU?$h?TS-;T3za$PH*AJYvDO;-6#WG^SZGt^iJ@PNVvcI& zyffz+Y^XU*m7@oBxi-%HL)o;iEacA|K>g&F>pT^}r{NJNmV#-6S=Z9hYRDc*ITwVZ zm2lR7B6`%1>K=dAG4+)DNP`TVfgd4FuQ+2vje*T+#7oMwOZ?9D8S^XssgJO#C~*6d zSBLVmL6(?_SiaJxQ0IS)8H0c1+c)S>Ti)zuJSC<|C*4@r{Sd_dk~zq8IDYU>^ia1- z3SMk0e-uocH~gq2!Ie@^SS~Kgel%6Rcm=vVmQoS(gH7TRoR@y zqq-{1tSZ{?Hsh?1^)Ry>RO|Q)i{z;v<%SuBoo{PHwFJOWV5l6%@*$CrepQ;kQ$7fCZU74i&Mof_7Z_}5-X&Rz>hzx6x_QqI~m zVklKu2FP~o#*gXwvy2~FMkTIDf@9Yeb!(7;xW{DT29t|`VO`?OB%)D-up0aR?nboB2acGA1g!hm`|WC6FHxT6pU8C<41E|Tc;3?!>?;AtX)g#QJ}|zNQA&+$z(){pN6(n7{8qyZwA8x zMc7*63fx4Oj*+>7srNEwtt!YC`{FO&J{zn%Tx_5sim?$ypQyWHsJ8 zB&)}49yg|aJ@7d<3uPl)D@8CV(@7;bD5E%P)r+NwnnZ~dyIl0See(|IuAB8bKk*XZ zQWd}WN1I@vHD}sQa>F+prY?Rf2WMO3lc{dcI;{=?Y_7418*ZF8152rN%f>L}Osuit zbZftC1eVQbpY%5G4OGg^260JH51&By_o`ilkJc!eb5Cek#4xV#g}R1u{8a7ZZh)Kb zunmoi9r`!i!wk9ky)L2Xi2ppFxB=|zo;|-vtR?!!c=NnwJ~2Vrd4i26%vr_wN1uSJ z&dOD?>7rrKEB1us6~gdTo>DZ$&5P{6akOlAa{ow)>g$aeCbAVH;Y}Q)?3Z8q)#<^( zz3CHox2B(Zet&x5nZ4=OUTp+}9{jwj@W}SFJ<1;Ae4DYyyI}LC0Zl}nHYrU#j(C(M zZ#B>nGP{(-71_4>wU>{lzx1mQrne8cp@4DbPyVU@X!^5%?mwf8IZA-!KYY}|xxpb% z_W9(obFO#pA5UNX^2^iT`lUZM{n|H~JD}6g|E}HXzx}tLoNn(LhcUdm8YLIw^aZUR z`?}xQ&-1bG44E-xG?aMK*oS;uf=}{f;ZhE9JUa3`>@XS~?DF`eK1%yh8#Gf-)O z`eP6ME3v3O!l3n-HiwP92dBh26xFz5Wo!zzlOZ8tU$G`@KAHnk)=0rqJu(8*R{9kg z!Iy!!>QjALBp0#l*EtV_we-Xy`ScGm#)Fb_Q;+Nd&{{r`hZK$(!;z4v#cu2Qip5WEBx9p)^UG9dFEKh7Da7 zHHjI=ukt(9^7G?Y{!^IC)?Ae$MY~B#DXojPq*mTIjw}v79c29Ya|o?*{6k4kW^5fb z+GHDu=a3f(>RpAjUtqR_(!KMIqqfmnsc(Mr2pUKK^?y>1wo%J3FyyeJJ@Vu7JtnDo z$*(!Nxbj7F&XND{i(koD^wqC_bNa@=_#Wft>GZ~%Z!tC;=l3)nOZ(;seURUCAL7Ev zcqHT0BAd7LuVeb}ndd&{1;*Ve3)M%5hdJNrni@O7kBc4u(A7Q$AN#Jq-J3oKpzY67 zKL{F;84WZ`4}?;m$PY--RK9`bt&kP(U{*O$*nRpdWI|S8FWflp|-LIPXP!75+@T%IL4~8SRp`p#HMS z=}YY!E6raTov4!=q;UYI|FmaF|EwT_X`gZibj4$$_ zF&iA&%XSt+hM2#zeiNvx}d(5enJfr1B2)io>xMP#k_Z-x=R7#azxsj}dQOecFBHxTR$(SA1n+zXWIY zZ$K#vcYN?%YxszQ>-lizAc2KSAL$OPJQbF=P29P zvewJj_V;>jdw!}Id5*Qw0b1zI%P6CG;FbfbdJ73wxEkmBNDljszTD4v)c<%0;pUPqTa>x)NPoA@yP_yVc@M>afT z8Tdob_|=lQf~6%d=TR3Ph){~{)or0I;@K`a=HzT%-1bC@Q8?n`Gi-!!!VKn<7=FM~~`a%n>O)84E`R6rLk}^o?6Xx-|^L^{9N|LUC=Q z!Ixv^_hJXmAQ)?=-+zLke#g=0pwzIu=YF)}>LfU!IC z1=g1GK#=~7LE}KaRvtzE9hS7?gaOEKaq{NJ=JHcHd#r#I`4|f-d?PLOv6$SX_;*KQ;#@A(g6bGq0}_ zBpk0yDi8#}3TMHL;-kK*GZ?Ga2D2(V;ZjScAse+8W_;SxlZ{KiPFCF9_2MXwz)>y? zXOc`^E|i#Dp88}QXUOa1&$(6J-vjoQt1c#A&r`s5F7L|Z86qc=AG4$#eNo{>-w24f zJsp>v8{67guU#`{_~0v3EyBB~#{v!)6B(!ss*ybL`-JfOZT{B4A@6FRI>D=syd1!Z zJwCR<`|)bozm;QYzUcp6JX+T)u??zG(Gh91T5-7tlxxq(t<0 zX^_R=fvKGQfkGI;(<2hH7+qsS>Eg*(`YMHE?3d_Kxef6cv^8LrpT}5)&v=7hu`j50 zp0e3s{OcVp^e%QTJHpM^9NI5S|K??#8yDzJeHKz}kn|n(;{3$zac)|9@^%5<{Ucv< z?_%wjzy8wn=YQ$Hn|}IJFHZmQzxRvbH9W{uv^6>46u^ZZP*-CeOW~DIN^G2DeC0wL zzPVjT4K!nxpJ6H#2))vFrC(;Vzq?+^;Z8^wh00nXT9V}_?l zoYyibaf3lNUNCU<)y0mz{6^EYJXKbl^<&0976!CsE1RI|?wE-78pD5|GnA+Q)YbN} zI;!PMfo=s-K%7ZDJfFNM=ND`s0r3I|^1`(opXx2)*o_eHX7r~7=D3kdVh0X7zzt4l zh56gca?2!+<36wD-rHgG*9+E6z*M+AqQ=oX3xxUTV|s-JZwkXNhIS;B(fsQQz~CE zT~BZ0r{H^37uq?x(k8$m4{2zflgS6(%2rtRPNk!P&Uh=uF;D3o@T8d=87}a+DWQ06 z%u(LxZ`(WdcRZ4Z7kh3(=&B$qM|h3`Db^ts|ApG%}5jvlaJ+7-?xKQEv) zRM_s;J6g#&8)a1K?_6+;M*imRt?B-Qx2Fe(r_;mP!SfATI*vdbf+87ox5 zF=5wNxyzqFb*s(giZ5~aA88PK0K#ET;>|#K8FxSbslDm1-PxM{)BolE^y-7t>F@pR z|6%$AKmUub_z}UG$DolnDW0781hf5Fov=#fDhMJYt{rnRaq6d0*N zLmEB7pRtRfhm4c|{PiPV+jxC?_pLXkPrgV@mH>P@Vu02$_H3-WFoG9;sJRjqRT&xj zPE>VKp0et^BRzQ!)?@%vpI`$r21a`;AK79%Hv2Se5z172J}llEuX$ynN5><_1cNc% z4IY8xd*G%VlI6>*vyr#|C|#ZNL^8Z%Yei)Iz*qc*QcG(p!X)jra1XK- z=s=1Lj)2qT!iFZPA8doBNjg0clJU1 zyw%-v1$3Tka>Jew7mNbU z6=X(~g}=UP9U^a_JBPFl^gwwuOb1E?f*DVTLYzv#O36{KL(9x@DBsjwH?tU&4ezpSLnNgs%BY;!(%oTu~uQ*Or8+2?v(jJOm z4PDU>eu~{@W5Vn1(z*1^&Dho|6Q9H_w0YJaL>chRGu`mx#?jpPP1P22;cd?i;MENo z)yJ3-N6ts}`selyDkeSRqpp~bddL1+e)7A#)8+Em244_xQ&n&n!z`4}D;#rbs8mEY zG{mtG&Xu$D*bo~i9?}evM-)Kd9OMk)4#hnmckb+(qPF@L9>-eWoa0>M6Xuf6@w^njnrxOMZ!^vYZJ_z9R-r>F1Sp6=Y-=W}y<_K7>wGk5PW$8kfHITkYI z=h}>8d2XOnDRuLDh`8WxKn7zz#)FDM=QTht&mqD0X;`)fSKXRtD-WsY%%> zaCClSQTtQn`HPIIc&>tv@w3I-m%Qe6uI?0U9wTE%^`G#BSFda3=Zo;aV}R#4engm$ zd=QZ9KF)%+HyFyVI5j?yb4H(4zSq!PuUzAIN^+B*XIN=C_n!d=AyYi9yMTA%H}isF zBL{K(TzH<=SieWLd7V)=pgW)Dde0|c(I-z#>q0O@6SGtIw8g7n;j7^4cT!^7fziey zIWI6tTXhAG?kW@^+Nn>dQ|I`AW-{*>=#8cFgIDP&M^F<-)Z-i1G1CV4I2*U{&@s85 zM@C&oQ4S?_@Q&sgC%G{u{bA@mj8=2!Hmd1I^-6DKRS|e0N7um}V?YF+8~P%UGB6p4 z!*zUc%mWv?y??6^2g=T!r-E+lDcs+sHYv~fnXy`^lv$ImO2733-#nNTSrp1n`2;IG z%+`%|L*S@u6;)SR9;3SCl0nY@lO^|`ca#y14EO_DAHN&AGvRyo#xPzL6}p@JlP;Y#;UI%TB|hft%X@X|}5 zm$qbilwq#ZJs-?@xmiV2ibB5ZB&vqajujbO(7+*Fc*UeKiy{yiu4am)U=a^Yo{y%o z#_uFD#_WtcS5T|GM&h{O0Ht8L(aUmR1MV>@;`h{Pw*;i}-6~JE_<%zuH$%t=g7S62 zJ?F-M)MbtUooj5N4%1PFM`YWv;ry}N03Loox%W@vYK9GdmlLFk7j0%T;BrX@C}86G z8Sd~Uh960CGr>;j0Ie=6rJfy3>Zm<_IoSDIzuX59FmKu81QOxihj%&)q8#;NzgJXh8T^tEZ)zWv6Q8#=)XQbFnMbWTA z+=O*q9mD%E2)QspcNZNze>%|^=g;Ygam7V)0d8q!gAbN{0p+0OtHkDh${6m`bB;g4 z_xLE*acDo|xfiWm9C1SWjc>d({pbJ9U!Q)8CxUqNwhN4!8`jAQa)O!n2+E_`L9B!(%0I_V;5 z=shCA5f5cYNleR%GuFkmY#X>(Vhw&l7rYkxQnw>#{aDd;Iowl5F!$aRfoHizKyvgAFf?E>6&v>Q+;N&;Nvw`bR2=Gd77SG&F^!KxU`jazV z&hvTgxeGez5L59PFQU$7g*s+|uA2mf)JeBSe`5~EC^vqf=*F6HpsA39Z=2&;ZAm`> zDm}PmVDS{$Uak*Nlqx-kEWfDKUhjPfF?@0a=jkVZWP0P?_mJyG=*4vJ{?YWtJBQOJ zp62)EM*C~S&R8%p&wnNOMR!W|?w8WJD)A>`e3e{16<^;0Tz4hh;UTMhONxw6{aIDBV0y-B#Pg&j6#_zxO?di#9{-x>3 zy|d}h{_NTG)IM!ePAPT#Rt4yyKaJ%Wv`^paq%9&CPZ=x3QOm@*KQv3x zQZ)bYRN&wvAbiwJ1imFm9HkN{{8c7Ki!TrLD;vW*P!_K_I=a{cN+8s3T2hg|E-(1_ zIzKu($Wr*J_>Y`?0Y#6#;lwu>1w@@JhaERE)pd+VnF6t2x~NR-<@_cO>(D2?$s$OOdH?v!|7`loOJAS9_1*7I-}(L< z(}_>?jy`(A4z1_kTm#`_-=<^;sDCSi6Y}ieG{A^YZ2Xe z??E#YuBBY2s}^m(qoZvq*n!tCdW*S<a8);^=3dMxU4 z5Wum|*Sx&OyWkG}e6rIu41c~VeFnH?=Z$G!HXFSbDcy|sCa{!8@_J*TI< zw$scSGsySzsFcI?}8TxT3Mc08vTm-5Uau1Dg;jjvp52Ci?xLNCv= zIoC$Ma2;W4hm3L#eEF{fld9bLisOb+(nxXT?ZGyYKS$d#Kfx7-sRnKI&EV0u5(7F6 zI`ppVqZ+^BM^7rzdl}Cn3K8Kr+Jq=d*_+Xn;2Nm&D9@|P^#58W;Qp`26L^w@Y+E|%_!c3&1ZZ#bO9XpicRi0OO6p>-O)%8u@WT6$q zXmyBHf`pSQhLbJG7z2>lAty3)qNwJzsq*4Y%f(PTljYcaWY94YAB(=h ztNc>umdZQk#&3>|FlzsW6lM{Fvg#Xw9>%)Q$8G~y-9AXt76%j;H}mQ^g69qktzN*| zxGu8yMsGV*zHSpY-0}}Ish7*DUY^@z#49PSGPiLWYba%K9&^&%#WsJlDHCApK(aCA zmmmUAT&%2)Qso6|jY%4VrPHGrT~oOB0)w-HXQ@*Od6m4XuOM!C;WmFKxJu2_O{0^= z5Tjh?%8(lqJpIDGuuQJ%DJ;tl5|*93`Fovt3YZCjPo(;L9oBn?sz&(8((fPUlfS zSh@N|;U=%j_;Y>I?Y?77)`(@B74#^-Sxp7W`c5wVEorGR=M4}=Eluad9()F2*)?Ek z<59uEy2M}{Xn^?_w=J6%HKu%&>C=n~h!5#({uZdo#Z%$ll;bQjzlTa6-s9DzdpzxV zV}Fk^hB1r&%GDlE0$%5?aPIJCf%V+YRV>}{)m{wP=PU>x^Qv4gSS=q(!-dZY1N=9> z^=+Q`c`$wVmDi@<|F3?ESBgEw#fMKuA`{W7$5t7t@CvL`UoWOSU@RiXUE-m4e9Q%{ zy69lX!Hko}20Wb5=OT^^GmOPTeeOAiJUV3q)s0dwwk_)fc>8zG#*s2JK2zZ~8HQ60 zp3GT&&w+`t>^$oYKxE{J!lmn^}0R=&?cFV+x%0-4LX$)R2&s^CZX2 zsI^sid8RJzEthRsyMV@hoHO)P)8Z2%wJBPQ_(yxJH>!O7bGYg^Gw73zb)CUe-2P6b z{$jTwx&i>t^E9B`jbA$V?}Bn>F8L}!{2X&$cEdMMvTO)P*GkM5CiHKB}j*im@nQY50b@9yn6lU7p@XK*x-HGc?Ll zC}XSpB4(LJ1<_Uj&sUFa}*&CdJY~OH5&_|9sFFdt9 z{pp|GpZ=PK)Y||6AOJ~3K~$^HKAe8_v;XV#!V7m6xi%KhG0l-@)mQ?F&*FjKCI_q zpWwKTlTNuB@U_P__BJu>Z+X`f!_^0(8()sMIWLg6Mt;SU?})(~4bpgG#nZGmI-V16 zK1GxTOAd}i!_i_U#qSuKvR}g&^0yHkeoZL@vyId@_Nn*V`R1Z0#NMD{i}At-#&DRRjcpNk$WyD~ zXDW%{lZi(K*mzPzs93E`2bK6C<9 z__Z(m`t;e)|KHQM`Mur)V)~G$@lRRsJE4 zAJRa5;FzE9fvVGZ(nxMk>6Dr-sePVo}ABFV6sihak%>OT>zls;lN& z2@|39H-9NLpNhGqa+V3GaZ=kl(MG0?x=Ui$`1ak_JG^5H%m%;U0&AR<{Te)D!rE?e z$DkS=#0$HH=Z0=G!^daVsx(%jDisx9(PzV-QN%8ZLPOaQuk*!ibj1|r^T8mK<=PoD z^;JrR!v=ao-sgySH*_56voJD4UO;|Peq#S_ou^lI_Lz*v9DBnnHeh7=eJ}->pL}A& zpr8Krr=VQZ2pxUT>wf#F*LAl4;W0Nk@wZN`x5vcNIIeMinE6NaL3ko0jg0O?{c6|E z(AcmHgf2S<+gF#^C_bsLY?(-YG|iF;Qj`d+i!4`gcrn|RpPB)?5cW#0LeV(W>-t&fIFXJ;OFh@8Iajf=OdYkt=T2_?}!;m@& zh)_P{5Sli$kHgkDAZDXS<}ia#7>qCMSC1koeVqH+K#BeMr*O3)?H`KLICGFpdWQbg z)l>z|xYo#=7C$-1&@QhpHMJnkR9Q(EDHN*?yip`dHpuIDWu;c1(s5iCMmWK|b& zfyfCMZEd|eI)O3tc+VQ4PGr!^1oU%R%EyTR2z@o|XKkTCrqA_j`_B8%Q+c6@+*bKH}Ca zggR|DZU+A_ckaj<(HuJnOyqJb8S?cy^TrTR{FXY($f&hiv_tS{lPz{InyIu+fp z9|@6buqI#a&>QmelgY81I*8Bw=>eHoAalywyJB-O9&oP<)L(vHb1NMLXoSc9Q5N3U zCbCqY^illewQ09aU1Q4!%OcyHGW<4aW63b<+mTGA1+_sc%v4mqjA) z=JKQhj{cq7j=Y<|AK9y*aXM3bl=8GjLb(i^z&k}>ioVw5nBaEP)Ir0JVKAEvVZ*5H zYuYL=yc)iFyiB!OyDpU+qY9c!Y)elt$e5oq!FyDOx~p?dW;fX-Kw*->SG?Sj2XFH( zyd?TPIoSJakno~u>jd3gd_q4jmd^d6frCrrRkSZvO3=Al|%!O8^aT-S7Yr7Q&cPMP|pkK*)aO>4gC&0kK+FCEIJ z)DNY4(Y0wJZ!q)V=C*&1c{<4xdo3g~k@O^5p&lLISBY6j3l}i*G&v&5Ij8r3-I2dbP`O z+&xz>SPkN17F~HDk}-e}L)k-~`q_T>VEPxYy}@q^-{1-Ulj%8rQ_4lx6UI63P`(ad zH`~rwOt@f^`N9QWHXw6CQE!!(zfL264S{);6hbdtWOCyTfwh3GpJQzFQzs2{GG*+f zzc^MQzc$bqqZoIU;j6TAuN|A&8QYPU@fvx)&NrLkp54?Ne8=v@V`2_Ce~401{vs(C zGJ&awDR%JX`6mg?&|8O+BSk--L_@c0ET(Mx<_Lcap5G11tE0fx$1=<-)~XPjPgs2S zZfxIjaPE_-F5uj|7hBZr`2PLGptQ~?+*GOrFZg)zrHuVscc)!m{kC)C7Cv$V7(DGz zE_eJ#_A?bf`XhIMJ4WL-eRJj_A7=Xcxig*s>oM64%X1c+>KrUHkYc+&w4`tNNSq@F zj(NSV7u}ZB!yUTFm1^i_)Wg3hIZ|b9Ai24q<|$x7LS969g+M>R-#l?#7cABR@UD82 zugJD#T@>@2e0Xx0ys@EudE$`x&Bd>)PIfZ>vnh+N(hBg;J38|=5d35FStr~m)E;4= z&=%u@KpJYYEQG3rDg8|xH)~yd^?X}4%PluBpv%twjX_!bbKwbN`>jvz?zmV>KL;t2 z6(XO#oxL>6!zX{=ba3=JUYU$!&|Z1-fX(0Sj1~UI_%6Sr>p5RK4>$Jxi3)Tj#_fyR zU|6W1M-w1yryqJVhw(2GM{k<36-1z^D=eV%MhZ!#{|PpMf52}6fBmJeX2ZwV4*KL@ z9r2#5{6Zn^xW0F7diJ?z8Gm-BXPJlXxeFf+#sRs?Ofv(|>_B?kv&U4*sFrw=uOXA0 zX!Nx+TpU8LM63Bzf6xeJ=V00rspKn`#S5~ysi*$|>kD;9hC0ttPlY#a z8q$8rQ`(-#Dp7-EY3$eLY*5q)a(!lmqe)Qt;y;yzRj;{q!>9tlArF9aKa%fUpc7mB#rw&EL&nuseIr4s2e73UEnkR*yZJgc?X6Gmq z*W$I`hsR4deCN2NiH>+aU7ysQLmlm$r0dRu#@Hf3ZggT1-p$TvM;q5QMW65WmzqURSS! ztb@QTHTK7&V<6#C<4au|c)i5Ajd9tSJsdZrK|+E@^o59jWt8vbtWKhkL&x|6To?R& z@-1>HL$*rbNfNCKJhU7T8Io3q4f-yO`k>+ixki47^+FnOlvJf~Bx@FPrJ3Q!xpKun z)q}oi*7{3RR&CnVxbJmb&xLc2U&~cd%~-*dJIh`hBQE9EBQk-BJHx~w^<1LiGry{? z@0H92ycW1XD>ufCL06?AFb=ws;RciDzQzoP0J>HiR~RC!iW>|+aADzHB+an(Ut|Qr zSI?8}@ygFQ5;C&SL13>FBSP>QYE%#G$$6RLqAGgFM%eoS#16r%QY*)FC(8AFv^E%8h;pcMhlh zhx^Rw_NQCS`S0GQ-DuPuev)h#+b-N>quozv>xYb)*Sv;fvU7uh-KT_|Tl#4?bY$g} zXB_DdZEiP3$Dynaa4hzy@-h)OID=F2WlAxzelQas`lVdRgIn08swlG9bqqi7Qy=bi&UXTvjiNf~a4uG)=gUxnS(>Pgz--ivI_D7L zdGgAb3$I*vS*8uM2@K5o-1w?3ER4(FliU{9KjAM5{V;x4o;+LiWIIMN*K6$H_&uUk zxhkT5@-~m{sgGU7Pq3s2_bVy=3WvFwn=>eu5;^w-9YBPvxRp-R4N3cL6rmC=QGlAo$e!2kG?!|GbL_z94wU*R2m zX`~XCC@+BD3J!h+L-`p1diL0sRt6-!F_qlVrEzTUcvrX>!6#D&&b+LP1`$_%rQ5e| zP^7{(jlp6otx|k6N`WDy=AB_s{L4?pSHD`9wlj9LmvXrq9MS-(4Ik-fjt1g4U+12yjKKKP zmxC^uP=>6Et2)){R9Pj2QNT+M`sN>gwh0veryYumVH=Hsg`YHfg@WgQS<63Qt3(PI zoETr_1xGoegmB&5p=}*#iQ=W8@bn8h4mFo)tK`%;g&O4sZZ$wCm6+t(lD3CqzD7;* zC8M(8JgCaX*a3QtZFNoDc`>qXrq9}TTN0&nT}BA$PiI4NR))5C%%-on5e$r@A4Znc z*P4lRL+?RfmGY248otEgSh*Aei`UPAC$S|%5R<(+DFlazUOtRzSK7Nk(iDA&Q30Xz02b5DF%7E zewJ5a-rm~f;`Sg5erxNxF+a);VD<3=-pA}c9p_}1Fj#9^0byKuVSiGi%m@QRfgm%A zKoH017$FiS1xm<(*;X(72gw3>pIlDh$|KGEEDpWWVMaY>k-F1wO0wkUx4O>y0t`v0 zq}3zYR$y_Dg;5qqc6Pxgz+L1Iw)Qd#81y?l{ycch73de_@uowrOKa1mqPJA?cxaRpter2C^ zv+icrb)!OgPMoZA6T*cUuIW;?PWa3t@|~da>O}4Yf5=_ozUH-FThG0l+~K*)qVX~P zRKNN<=p)9nLmuN{Z5J5)q19>zv*b^`Gn8@98-E_M5_G^TS&y8|GOk@`9CYK1ks+J9 z7c4wnY_Vy`(~~}Dy3HM+8F^JS2|wv8iryaJ#_bN9PdfF2am2fwy$CkW{j_zt(4v$l zW?jT~L4t7;6G)6v(3%_@vVh?Qp;ow<;Rp|_`psI#a%O72w$}4P$kTRuP~!zEm&C!G z7YuQZr4nd3fUSg)BoB5n_{PZ(`myPHo!2j4=gGzE+yrzz3v9e%&&BziJH#)V<;Z%> z&EXUDIp+y1{j$equH&fwzWFS6am={Pc|~8H9v$d_@Y8j9jkTM;{Mc*9a2EdcpCV`f z(!RqqX8@Yv1lFf$-L&qF(d)Np6Pu2@EP`1;p0TM@Q3pPJu{fwnZYEz4Th?80K1>2$ zuQD^Hhz#|>4_+YHE;XYTIP4&68`*{?&zVT$0}Zg4AcpG->5TS8td%kRy(q|&lJwh% zg4ie8{J7C@%4-aLBI1a+c22QtyAbOl+s39H7Zjkg{~I^4pZ17mQ4X&m$H}hRsUJe4 zYx!Lh1C4pAw#&w>m_7}?BLE-lv59!yjZFmSyl0j_^>@^-eECfgyV&dRa=IDnrepdp zV&v~A=Ox9muqlkPi;cFe^Rzw2yYd{kkOd{E zL=ffB5?Zy5n`Cw#romYR$~^pRTlV1A-b ze!$7*F0qwy#4$2z7CbjoqG2{(J$LGR{S=|bPuXfW$~lJd-SeP0o+JFJ0Ife`^VEgk z9nL*fPpq;zu+7a!*SHz1&!_+BpL}8Z<^TO3OyB$N_jr2jfc80^ZabcElh_G2EPI2B z8w%NQ#Zc!8>f(29TA|>kur{4BPUKukz5OpfL{V>+bKXJ}!iSqYtmn&lNp7Br-kwMB z3H@dl`3yH;dov0B&~utj29j3I#*@BP6I+Soc&nd`A#laCCY}SKBFZXxNzh3iBy_1c zoODH9TrQ!DJLtP!P{S&_Ne{!)i%Rtw5=C95rWv3iV}&4b(uUj>LUXph^Hx6&zje-B z_zHPVr%#R5<{AF_eoeE^uXO6Hw9T)N)qW~ikmBF9<*Uc()_mXl_&!QqCKkPYe5sK( zIZ>+rvMI4y_DR-#>oWWIFJB?_5~z95Q;4ZjSKV@5(n?X5tj?#4Z=)CORyVH>VlmO* z8^3eYAmfeg;@q{?18jSE(T~0HJ8cBun8ovsht_Fs&jzfH))_+|W=f12mzPqvhw~Ny zWI&t0eG-F$GxUK(UtZR3E)Tue_N7jE%j2lz*x0aHkD1dfL&&3=&IHNKI1BkqUzkf@ zvF!NetDCQJER7Ls z8THyMjq?BrX$a>8t}NDdF9@E$`+S#rarB!Mb$-H?2YErezMUMd*dGtc8k&4dt7Mz~W=wz=<4D{gcWof=Z=Z z)n$GKFXjXHj(d}Lwl~9wpJnR4g+xXg_;x(;bbj(n0Z^^A4Suy z3ZFl9trI^>6u23(;iDcY1tudc_Iz)>YiseBaQmh<7{jZekfl7tGi6VJW6ELf9Jn_7 z%ZHS?0UAuMySdh9E~?bLy~j4UzdRtDc)*ItJr}V}!AlR$B zPN803QLj|51++rFg_-nQ*(od)fp30+3(+7MRS`sf@QXHGCCqyHA-S_0lLaiV@?SKn zg4!uZtf9;7Zs5@_v_))Lj`M~vrNHfQ6ipDjIxrr`7>o;4Nq0o8=4NC z>eGHGjbIN@|0>)*6Me)jZNfeJ6suWcD!}PBv06QIeWr8rfv02DC=PEaMeOL4n?xx2 zWG|g83aUqR0#-H-ze-aE7Ei~-wuv@V&)5)pCowsP%4>2^G;jrLr@;f`(jK^H0Iz(`qoL)Y@KfSnfhr8{rPe)mRi3j6w zbN$&T&oeb2Niwi}4WcJDnk^RzDq_1`PJ$Q`u`NULY=?$eXQ-#OFA*xkWO!9B#rezn z3d0#RGMBMSg5g$yB)@@UERs!W1YI#vYNf_4S(HGwwY-RmZX>W|lFlSgNOKanUJKEA zT89a70v&wuB$KBTWhczXE>r?{Q{7jxUic~=o}!A3@$II>HY10V_sD7`e~8CS4(PmY zMrW{d0;f|*HE^RJvEfF5C&o^qqK0-S^jX- z2a(e_S4X|EmPIMtk^Jz>TJOtn%j=Xl?e<8;g3*|D^t&PJoZzPEW9cKiqH5ZrU$``e z#}AM~comPw(1O~s7R?r1VfKyqphBwr3Cbw48CkCt?{cWqhl`K2iR*=}fj!f&!Rvg} ztzqViHPXmr4C32~tK+>Vp@pPBvbn>VMY zZh6=EE$$%aDK~a|{9VgacT6~&Ut>WbPxf)#;w=}B5vsxMPuxI@+yly9n8DM@M@<&c zJChEMY&@SGbCV3e0os=L)ITwcp|yx!wcg#!(gnQWr=HHfY!LKyw!}lo(>as;Jgq=G zTx`3$L%Uq(g=x_Z{0m0aAFS8rgsfSDL5?E_`LX z&EmV`sZaKLk?7)+wiizcNixtc96j$wPIw^$I$vw$TPNI1y2he-?#$#B+y2&a7GAK; zO`-E0{L68hJN$bgK{;+p?a_AE`3V9yqO%d8&y=k&XJcC93A1g89W|-T6N2dGoxJs` zZd8dQfWhGG+(jZbwvattunR~Nuyjw*p&#dq2r*D`i2YdDg?Hd$aL&={E-5(KC{E*{ zxuFFoNmWZN)ma)S!qy9}-0=y#l74X`#@P$hT(r6CP``DGwyHxqaI>5V=_z;nx|#09 zWi}+xQJ?t~j4+={_ig2l-DznR1+I#@L4k?wj=E?Kx~Ln@NOP)3+6*2psO_Ono>UsWoD2|FFwjea+4Me!mDBhvQz zAx*5#Y&g3C^N@{_UDc+o%J(6gUjF{W>1{T5pSiO;J$Z|TL7xZ)%^O3$@!G@bxhM9f zClKtoAy3=Jjo5?3)9Hz8Y#bxs$$q)rBYF`xnFSNS_SkeUyB{I_kS73LRK9)d4m{ap z;#IR}zIK2HPpr^jYGB{V1_Uy_iDf!@IK6tG#mvL)>CV3OFh&{2N0U7D;oA?6r#Id@ zoId&dt-RWrrmHprr}TGYN&8Nx*TH>~@#hXtJ^Rxw`r3ukSMME7Z@$Z2;=q*i;HdoR zdY3i`d-K80^oM@$XR2L{7x+6~8N)S>VYjlaF;2o=0P*FDL(51WoZKjI&2iLN@=jVbK*?;PBf|Dk+BwRd`(^@|`NXCCd_cxJ zQx;(~4oBG+=HFk^C=_7?kgT5@SB)qrSG0aBl#y1??0* zndN!djdmBuv71wH}Z5fLNSlcUKaaV@Mnd;#$(1e$Fpso`nt}U z`y;IY03ZNKL_t*fUqAiY=RZIF-CzFY={w)~&UC`t9FUY7#2l-}Jy~q};7@2F<(k%h zQ9kg=cwugQ`=GSvw^MFjuurAUhy!2c?CYJ=AJ9>~U2^l^P2>Cya5+1^y70y_#^zlI z1d;gk;u>sGx%!`u^g6(L=XGKRAN|zIcuc74i`1>Y>`xm|N&_i3G}w@rUek!v0TJf9`N0ZLU`EXPH@wV=YU`Gj466|hP}riHeus2jP_tX+`Bc?2&)S9EJR zD{yC<-g9sBj*X4Lv2j+Q$7Wl*Su7670%|BqLi4k9^(OF4{a86xI2_mt8>to80FFYV z_VE!MD;5Ur579cm=^OAzaI|H!Is?8I(RMqa%$o}!2ygytSw(xn+dOVpee^ED z(Dwa$4I!H~uvP^v@|}pfZkpC>ZJ{W7cNq^VQkUqm-LFm? z@M4s4#|IC*N#8drIQ}YEJF|gLyLry_h8{PD4_S+Pmz#pbQ*Y;M+2~~s>*+UgZzSB8H750u&&Y4Fi&_1dyU`snHX=IkSpYb>}&s&-Xd!ec#`` zw~9rIWK%i!{@(Wt&wQRUyyv`wH)J7T=E#vA9+aQuEf)as@A#}{hQ1h|!Gc*yDI_rq zIUD-fxM<1d;F+@Yw=Le=fL2=wCg+Az$ozY-z(LCT;cSv~>MBLa2)U4nJm$4}G;NYY z)mGyT-4>$+0N_H&XfIR#P!3B#C={sWR^KMJnYOf6E=$K8+N#&ju`zbe#FI{~Xf~|S zB#G;@@kV0*kTh-@{1^*BcnM@T&$LB%h;-HR@a>7m+UGKU6Y1V zY)GE8+7HOU7hP>_ng7xdmOcvh>nNt!3^=>iBz|tZ)Cs&+;s$`3g z5EdFTnbBf|UiZplvWa3*LgSbEZgK4yKCv@+sZVXK{OUz1Kc6&@PEgKYnwEtV6mI+ zKsnV$xfB>MPts85l5UET1%L%pUeh3Qb&SCEgDf?1Pm69`o~>*wB3&}J907tEi;Gk# zg={{a_8Ec&S}3Jg@c>qx!&Qc+rC)jnKa?x4%Np4Vu;i4b=t|i5DQo4G+%|#g7otTt zO0{HVUJ|^LBq~r8QDRR4?Rx|_Hzj5!ss`rF%OX3ODf7&)XcrdrGbg`VDb!&~dHk{}&;z#X`}2I*2_cNY5;9umFdmb|4o5rgD1p zi+vR|weHi)E3{Od)=gf$sN8E3*iOw7FaAeIiNloFRFtER<6#yGWsW#2Br3NFM@ofX zlnb^~ba9{-0Oq9=y`m+}qIi*aX(k6J$#ronJ;Nj+P6pIM_*jm7hZ`SXYhIqD*N3NbDxOFv31*5Vm+sXK~H{ICP$r-yE(qspCAq;#cbs zxzbBF`9v3#b2>|H86PtHY8sb$6|UeDjxlI8@+oQMQcWrLp5Tk>#BnheI@Sx3lxW{3 z$Q0`t4Xy*U?Dt&6Y`%tHA`H z#Phqp_EY<8Ds8%$O#6#2r zUS=i-dUU8>TYbRuUvwh&PZ8X6XlW>E@?*S}w%;aXJ=#4K(p*F{>B&W!@GPu5p{JnH zqRpthBqY@qDl(_jHri0;VaJ&)L$8~FkcOJMN*F@wtE{<;4yCw0Em9&=CO=gwKFQ3% ze%J9xyLn7s*ryCI&0VKa)r%C!Fz)2;RTsCNJ!uyxukqSoUpbwprP)Zx6Voy@gmF^@ zeJh5<)_v;A+7S-jov+{vXi({rDzGXMzl&T_VUx;>r#PQ?vqP`dkv$WY%u%=qfM0aQ z(AEtLOTlq8K4Y`CzRyWEcPp4HS?Rbb=SD08C$>_5@H_)xT`Kmen_-A-J9Hs`o2TKA z@kif=?&ga1w}f8HZ18L`X8ZK3zj`eg5@G=THd`(bI@K=h0AJI{j@9sSZ_3TK*npkE zys8&{SKQo#k>A+%m8)(9`#RQBCf#n(F1xt{oO6e4s%B2X<_~q3O(F;?hn7;%yc*6p z;f%$(j5!qM=?&`}Idb!!o6E>bvf4H!->*5=_uhCgJbPIHs;<0KR3HI99Rf&rvq+WxqbWj;W{#T z(~K98{#4g4Bu}K9pdP&m$6C=swk&!?_%ct-)3VejV72W_o_-Bpt{;GLn^*f}*@FD| zn+}KI^<+6z8`C3RLv7+3PfBN@8@uH@xt8;zHY1O;(xQ>u=4mQKh$jH%H>xYZU$oW_ ziW@rJHl)(f1U3)6+&n=taw$*BJdg*z8MdqBCv8SCw>Qdnr2`{|+KXq@BkhcFLcgV2 zfE5oIi%>?r;uM`e{C$$u`p~DX4{3-^3K^A8X0#nM66j@26ZaNQpPEZhA%U!KO4CHbOh|twQ0W^4QP5!|}8(y4kd)9lAK86nXk~Z*Mqxcr?8E_PfKs`rY3he)`56 z!^y#ZHgVk;IO2w_y(4W12KwmNzBME_hw%)y^+Pmv0PJ- zr)bCcw0c{fIzV$jEstdjT2R`HOaf=$1&!AC*glP?pK5fDd9#l~Nz?23%ddZy*rR1F zeMXT#^N4ar5Bo&^Vo}9I5KpmeRaCRJWgji&+*iAOx-#i;Ag-PJTq8HEPaHaEc*#wc zO$<{_)(Nc3TatNfN(fS!1w4x@<1sflx}J2%YoOQnnAh;M&vhO^*xlV7Zr;2_dLys? zf3UqXJm7OO_aAQOd%-t(Mf7dT{eJKb=4ayEymgbChM9vgf9+#b=3@~YzjMxf%G}ml zDcjuB>xiz{;)Y=pS3AYtGr^Q8JN(R-E`IBnPHHcY6RS7dT+*W%%2 zfubrSzcX&u%XPDFk_j9D%(2|m%sjm5k{b|}*}5$P!IzjI@mu0~>x{jGZS| zGHb)M#RJvA>iSz;WJujQS1Q^I574+E(D1Wyu1!Lk0|=du_RO`e0$T6V!d_iolF_|s zM8bdTCnb_hNV3I4hj`hqXxb~rE@S<7KM0_Ql8G2Bif-dUvhpa<3wpqk0H$UGU-qq1 zX;c6z1ZVb!uCj%^hx~*lPqBp8s03$(Es~V5&Ks%3vSY)abhYht`qC@dnn!DcMmKoH zDt!lV)pw{;1da&m=xnt9^{S$0J5GpNMKeAz_KnJ5JptA9Nfg?l(NID-goH0p4HoM0 z6AN4IHt*e-NtdNo*e zHB?t5Jn=f^Tr>hwWy11ntV26hDu}Fmd0>Q`>Cwt1AdWK1#BsUAuXNXMJPQLQVfhap zCrJ~Ur}gU%>6)+JV#PSZ2}z)=-OgL|l4(BDfT%2H$;XhBI7a++KX1v7PLg6CE@iDE zx``7bSyHIhgCxAEm7$@=CS=T80p0j@J&?5lZEpYK4G)5eJ<3BQ^FrZ5Bvt}ONg{dV z5KH80Uq)QvKtlQ`;pC}Lo%?VFb4T|WYh9EzHP?5{Tjn~I2X{_cclOHs3mwW(A1$J8 zp~?Jy(%sX;;jgdV8QwqT0vv^BbvqI=Pvu<({Y3>UN10tt5`YLMcfIhsCWz?WhF7vlVw22;oOR&S1XuEbx;u8m{-5* z1(i-M*yPR%7H)in9O>R)J$v^=1gL*05bOU@p=)(jxpkk3KE6RWTYkjZAkElDU*xZBTU6Amr!ST@h$~#S zFecnip)fouYy7L7d!FZoAYfN)L3L>M{El!j-SgY|BZ@CTfBa;LCzl05Luk&shSkXi zb50#Q@H3=}>cia}@*vj&8+Q*a8VP3EiZmv>;g~42nwrWQow2QSx{o+p#~oG0*QJDeX$V)R8y|GMCy z-Md(=JZv7g2$zWvR2z6`mtfG=KNKdR>ba6a7mgLK4>&G+F&Ud!X4*0@+K?%Cizi=s znMW`VtuWzQ;b||w{ac&AjTv$`1vtYBQi;TVmSLrcfP7U5SeK{Sm9&0W7YkmDTCP1B zxrSd04br4ck+DrdX&ZpBeH>M6UR7P}tak`)HJv4D%~_ZH+yIS$*g&`wc6T&~%$L03 zz*T$X85n!L2s=L7;YkNJe;LDEz*0^bdG;o*_4V55k*2RwK584R_T%2ED4d&2ZfrWP zdsndEd(A8kHZB%KL^pTcaDxY4jNS1~H@wL^^EJn*2mF_Fo`~n{28+AM@gwYCHwux5 zy|TfAJfV%mQI^vRPi8nvD~q>{MNx7ifT&2Woq)(caxd}p>;`txJvGfX`=h=(T5tCo zo_@pBs&GSFQ;L_13erTA@#ej~;mv!%AhVlFJ|*aP;(Yq|%{RC69bpL^Q6Kkr4jHH!flW0`SHE;fj!#cuf6!p@VCD6cZdC*gKWa*`%H4m1(r8VU;_m9DF`G) z4mRsIZVc}qE)5?*XrI1lnT4_2Du(SI>~M2k-ntTTIh644KRg)j?qDxOi2qouQre6^ zeaOZ0H`$p^zD1N-ipvCtee;36vDA;>K|bPX#Rsg3zxKk@!{)7LtKRbjGk_xdugVqm zR518seV^8P#s1ju8op({oZ?5KBw)uZ@~Ju@t;LQfa#!22u1ZiMRvy?Z_@@1LJkkq2 zpY}u$(Mo4+iY;7Bj06gZ3~876E_QUoSzz~jg$YwxK)3os6J%3bmwH51Rt6Y3H{IxG zz~^pe^1{vjMNm%qrV{I`H4d3DEkAz+tB;St&JuWM>FS=olj0@(&%Q;_@#&)!rUl2J z71uUL)d7e7uw~ks#Kj9iplpu`5HyNBX$RJgX=x|}#g0`jD5f75+_4FzoG)iXU1mO& zq8+h;^_@D14ArmLKf0LbTOF2YQ0Y&VNBwZjbo(3*59n=R>bI4a=~E2n^i%mffIeld zdD97a-gtV*hRp$=fY{#I=X#Qx9oYE2ckcmyd(2b&`@>)S@Q1^XfBMtm;P5bSGEg5k z4BU7=V4Uv@{Wp32=ZZIW=nvkUfo@0qd~1mP6MMsHKiW4p&v35!M%_rPs=kdR8^g$^ z4{1+dOX?dgVhWC#KTxiXxUYh;+ANkw1A-D!VN$oq)6V6S7V?YXq%)jH#Asln|2uu-I;@td1Ap z$&_B$%)wgRdjIHf1xyoiL5?d3U8Mg=_|Ag!qh!5;d|5}F*7sZmb9J5!n-UEmwoQC7 zzkIFk=~^w38*XNVCj{?6boXL%UfWGP}(6d5UVoUHOpSb!rfkf9Y-6k6I!+Ri(j zci<096iD;K$Lw!P7GMAszJ8{~v$WADfJ#f(A0a$E^A{P3t67yM5&LQPJSFWU20OV~ zo@)l@!gg?+wX5@~+$b##ZIOQu{0P>E{}qhzLl);?v4vSO=Nvh}t0Gdw6?>eE7!Nx5 zDXTNsRghD|GcHjBu*Pzed*Y;W4J0gjc%h(<5^q=$NtkAtn2)+}el*Q}s1NBi`SnRD zls%{~Y$JWLB^x>XJWJ;jI|QEEXmS;(M+^Mr0D7x?i6yT98l;H|W<-yYC5#t~WN#NrD5~nPBD}Rf7E#`H< zzTownZ=&;NNZY4&D>(8}58!hKJ0bN?EdEtF9Mz?2EH`|}$BSytqaG3n{~*O&VV@9N5LD90^wb)2k)C!bEMpK0wXzbS8tHtWjm_ds! zA>#xQLTv<_3k19(NarjMfZ9#DEYeQ#0*g$?1In@j$t#k#^6>E>0So$1Vo8pX z&@KRvEnl=|_p+JoK;rU2e{{-bFa35NUbL@Hp8YXDLfJta(XohwShd%O91NlDsNhLAMui)`^^KJSqg6L%#ql9j=D1A(Tm%3%WKM@Wl5Q zH>aaH;r4nrY1PV&-W4vsdLxsnjo$aFFEgO7vY_o9UoPG|7_Bl{+St6FNw^C%{z4t0 z+=Ovb_jzsrE3aX+A2Q}I6<4}Akh$>f_kYsy7fRwT&T1#~=Vw98^EcllZm3Uun)7>N zq`w4Ud6Bh!F_hO#etZ>-IHhyi0w{f8x=8J!UQ)j*SQi&V!A=;Me}pPOZ5=X*mG-=d zHK!`RAywWHOegmje;76Gg3d%5%Vv4==vC#F=kapCl(JFr%f`5h-pCK|US1^hmNo$h zQ03N9d-s^_uX|RfAT7&VdIWVCC$tHV#reJu<(j8B27t6ZGn2*4O=~hN8S!&b&Y*6; z?SSu;Qd|dc`ymJ54HkWUjj_cp-nyuJoz>pwxD$MXJGxxdeaO>A$Mk_Ir@wQfSf9Pi z4KAC&yvrTrKYsfiHc4I>e)Vgw4d49AS6D>w+oy1L147}PD9}G@4%v3^{S_AaJngH z9c0ly{TLG+_2Q{O+wUs$mRRVh4LbN1ld?Z?`*SBpu^jSel^<=ank;fVCV6q}g)vhe zUq$TqXzEU1ct`VDEyKV(WlFo3CdA?=M6IX1;x&BH5c>H}jtu$l7w=vO%YXc)oBTm8 zzA!K-ZZ4#31KL1~K_e+;Ku)FcqEOy4*Jdor%gZgtY-pgOcm^*D0SB2(>yyDV9?0fa zzwlJlaPeHbB4(I{ov@E`CPRAAfZw%z%UO~vdSrsBZhcow>mviZ2gk=eG0KJi(mH&h zr>M*8J^{h2@K!c>ifxrwnzJ~i&taoeUVoP-)M0K7^>NPeDmO%gKRTnAvZ#39kh5x2 zFXUO`WI7iZ`l5xIG+RGya~63{P@Zc>^wF2fcdTbOToAj=p<1BJD+>w0YezS@_5YMO zd3S?ZTKsu6ESd9GU7w~=e!SV3(2h@|B-7GZUJ6IYH zsGRln&EfBS_q#p}&4$$8u)?d&?JYqGV@=Mi30|}@WOfd6#s=%HXI~qB`29Z~etQ38 z_%{2l$Jpk5o@k7}SXcaoL{q>Vs6xzoEWM%}Yy#5xEhwy_(!uu10gPvF=7XJ;l2_eo zzh__n8^gwP&yh!6Q)d4nW)>9OjJEBdj2n~9je>vbW12Py4Cw;9yy6E`n)R9b&J7|g z%AglrD|!SRKKPly3FwEv`KoB~)^W1*Kkz+I+vi*CsZjk#3Rv0t)gEE*0e`};d=lNd z6CfL@#I>H|Q-XdAt{@5UuuYsIr+rBLO`Qnd{VSdv_0c-f{;UN5flE^X#yamjvOo`s z+6ZlSR740kKAhk?+RA?yfYjBt;v%YkLJV5PF9w%Sa>>(%D43gDl}Q?rUlGCU8=Vl4 zMD=^&Y-wy{ePV^o?`5P_o$Gsp)rzkcpdQYbxP>>0=MY^Y69;`jy&V&j1M6js^Sg`M z@RSQ-4Psl#)9=_(txk@&@d=)i-#Zw#AM6gBJgx2myqmE{^kw_JRmg8V?y*s`$7b(7 zze6^9@9*x%w!Rv4pA7)7mwXe*hYugpXYwfo{P2*r<#?_a%3GVRFuuxH95>Fx2biPS zSPNJ;+K&S`j)#t$M>LA`0W=h^eY8M6M?u_qhuxU4wn=X1;wUb5K`zhw#~J-py>$p0 zlv^3rf>C*C_3D4k=TDpJ!vU&1!3}_u-wG=06C7oHITY>1vf{)Mo>fvu-QHli(fF_# z7ea$>xgDufZRrJ^;!_Ys-{M+in*b+%9Wqd(Jf`L)g$X}0N3LU}N~dGh=adFbzc7ds ze@`lhjH#_?%3X~0Hg2vr0e;+|U(ADbWr($&$R8H*yA@K87mGp|jxY(EtLQfYB3Hv7 zWo%{Lyj9#&5qsevc*Kp>`Jiocien8)G$1%U%BSZ zYu?=I^(~oothHER)Hs*=L4_gJpCdYEjzEzT4syXF-fgwQ%{YCmt~M&HN*gMoWsi36 zCz+feTdck+Y>_mnjqoQ+w*aK7%i6ZgzKg&$mOdb!G#VslgZ?Ka>4sbI0!&sOEQF|Z zZ94(u;2fiH$g+%(lORUw&~pQ8)1h~n1Qm%;D#Y7HIi+5Of;ax=LAU#0^*;sX*er%@ z3$rU+8OiHqu~k9Y&!=x2v5I={3t}w}v5dU66?Uq+lb1vruO3CAET`!Jgwiijpsl%* zQQVTE%1Toa$c;YjY~M_u>!*Y4ulssr`9klnp&8qVqe#$>a>Ze^nZl4C8H}gtHi-lc z?|4l~+4D4PLY-H^)o&c%(*IEAm1hebxTinjJmNhXuFUqR@+aZNGOsC^wt*)=J814qaiMaP|(H zbQUQQr^+w7W|h>j)0yY>xU|Lns47i4@)m4|hO&)G$AUuTc5XuU=F_=N=L~o_Db1v- zokD4dl?`1cU@qWwSWCKJJ8AYig1(w9n<4^YaaAhi)^zUeINbB+rWhp8z)0WCmz`gy7k{o=#>vWKuTI_=3l)78Zrnd#W4L ze|nh5dtRMw585&(4rQf9n2V_n)6W;n7rD(+iR#T2rgO!vrdROQzB(uUx1g`a>2ROV zx$CjOEq&5dGQ}34NT}aji>o0gtBGNlACoa2uBK2pmR+vp>R;>+-Hh>UUwRp?agDgZ zj2AxAHghgzm(a2b((LWAN}JxTGcsknv{~Du#4-r%MAgm2Y)UZ0kga39f~>%Jy(i$(AaCjD*zOKWd$cX;RC-Mm)p zl~=zuY^>j6qYlaWhS)hcnS4nvvt=bDK|h%BguD|Ty*oT)EJ8THkGR5<#Y^ifLhxkL z37b#$Q(g$WK(S7l8=q=g-*{DPpUTAY`1jHheKs2>*I1xm_LU>*iVQAbw&u*#10qiC)O!tGg&*p}cA;-_q1>(n_D%>=c2Ae4LRYJA+Mul9#F3-b3%udZhST1Oe7_*K+(GF z5ILHD>R;tLrQ@v`L~ENi^^%Plgvw%rvOxfsLti)K%a(clolmadpHk4@b8`X1n4h@F zH&Ce$7r68v$8tnRA8n&_C0obMx0T8D`9nZqs=;B&&nohc<7IxSFB=r0w1k$zk#_

    UZ0RyHow(G9$%5UESq)G=u{m9kN$y|gcMyy+or-UiEmEvy-bC$wwvrTIa6o%*iZ z-}#$=bNJnVadY_U*~7G7b=0(ON*lM2a+8xLLR(O4NJ=)b#e;b^SHB6$o@ihqc^XZn zrJxP-l)toLwx>VhsPfw2Rq|i?<-a?uZPGTFOC7OUS_@x=7arCpJp3*5s^%lw`>p4G zneT`Gufq@SpARow=jq}N+M4wtFL?s1%{V44ZV%Gbca&B0m5dxojIWUu2wLjrx+(V$ zq>cslV$8nI@0^;y$E}*L{>pE2K~+y+>BrFy8X;2;YND^f*WjazB@kBz;T3NQ+vuAs z&Y?+b`1A+(#yJ~;YNKZ(Rdlmna_2b_{ZHR>L)YeAuXU0J9Ple|Fvy}Ej83?9Ip4l* z-@mnA)EW_j7`ys zycR!@CH-xyMEsr=T{jhd)?kbMKI@f-VzGeGlr-`KA zp{d=ijj|KrJ=AtLiuX;Rm|&OUvra;p^^(D~kB6qkl|C4YFh`A(fhXKt9Ow=#&Y zH53=QsUvUb$Txd2h&Ld`Uy;c^ihbIQWlP-butXa<;d2eAI3g{F*E6%h%XqrWlf6gp z9CPCpo4r1{wSSOn3va~oX?**%(~~3kobjD*$7lOup4ycTb#e^t4?cL0*SE7#%r%MS z_9KqVK2hvz)P0J0jSXh~%MQbvyN>l!l(ky*DdPv#__Pc+P5Ekg3;`4M1te#yWr;eo zUeX807}!CNBVKUenJ;zzwW$Yv-Qe|8{EI^C$KJUR^g+36=Yk7-!wb#E&-{-cBGe_c z$VYBJmnk~U6)H5Bb^Cj@i5wvN5x^mIQ5@Dm=Su^>mMGl|)AKKe{0+uSEq zrJqtG0V@28+$w%VL9UzUWst5p{XDZsbh~uF(uh8(?Adtk zwNJiE8*eq0akjE@{J63euOccBV_6q6u07%tv$`Z|lW-mqxkz`rM}YZZp`g>~UN8r| zI^I-GVPP`|&`$`y0m>VN%y$#`!2@pE1|Zq(fvUSKo$%P+k&y!z#r zd0O~78^f;-=bJ@!i8tV=n|k;yLGDIk_+#CR8<7t9zVHfTTjo1-?vBeD7h?P?4+ z4{I-Lhs|eRkOMO2$bn3*w-YL}Sb5=*SQVY{#(P0YV!UZVdkGgjj@BV!IsWF2ilP9L8^o25wj>BErI3OqKbJ8Cdt_+l zd1U##;3B1q={f9Y5m#1Uk!;1w`)xLXUs}B}Y@hRrE<4o=OigQ8jPMKF09GWOFclnw zElR02I)N~1u+AdJDFfwEIzzFiAWR%^%9_O_-f4U8=`f|Fm(5V17mu800jHBriv)AL zMw6^e0z1G`_fgS7! zPAuJA=|LU)Z=N^NiLzyj4)9mtTs1feI(bCvw5Otr?&mN@kb>6)1>b$wxk6baKpYlR zJ=e4N^Du|(W&IpDY4?fM9C5~@q*^GXRFAD-y(^RH^xespa3YU56!!es0Wb3Fe0q65 zhu@6JWw;qc2DQ0B9ooDWpBMMM&TN9J96O7IMQP`$%eCHXxHBpmb?mj>$mUcRj%Dk@ znbQ{}xJ{PC8|i9GLX+!EE)$`m-MJV3MA3R2?>q-Dtv8h`42AxW6D=2FnY=P7$VMM! zy-ydLpnC-v0P0gJ@jJT2>MoBdXw3ouh~67CpV4z6T}a8 zc83SM2g5^N+j{GkuMcAa@8UW_IT_EBm`_|0oDB=-rzgmA%7*Z@ zecqnnm1xYvVzmp~KAFG*h8twe+SQ`^Ex@XFPyiY8&&>e8&5V`COstT(YaG}FH>?COZF~;Z7P7w^7Ivz^C{Sr|cP z9l}DyjeiLXN~&4iDTkWuB^LZ#)Bxw5+;D|o`Gv1t@(H-=?z{lxUs}kjx4VIt?{reH zN634K{N5mtO;q@}@D-h@U&ml4zHa>XRx0-r1c!7&Ovzc_9fc8DB{(O?#9Yj!j`dIl zroe!2XR>Sk=*Pe)p`XgA#SVdlXXA%5H|4YVswFfmKdolC#wL<&x+cp=XuCmf=_{*s z=2M$7hH(D+TvH;XeM&3u%Iz)d~Ax;ZvN&O@AapKB8PrF7@;u%>NO2hej&{@J_lBG<|AHs||n z{N~LF461eEuMD&wZ0ne!4Nu^4!dP!r9(b2i3y$fjWp$!X)1Isw{7D_HOXmX;vCiBi zCPkSe0B7h4i(5oW^HNu#Z(WjOra>dLV1C*rd03kiZ2*5YUwMOs9fRMJ-5Z1`m;io^ z!^D4%G!v_3Uj?VUbF7MYX)l+Uvnc1N3nkGLdY-l9SO$|~Gdp&^Go`0!#d5S^ToKYW zn188U!izXz)w7x`eGKZ7Dc~44*5#Y=wtRw_6@1E3d0$d%fk%XGYIemMfO046LjD5& zBN8KSr-inXxkxJMi@=35c}F4X2|lTxd4nhfOWfqGKA$mz_F9W@wABDK4@_MVrw!ST zoJ%-A39TlS^_Xk_&}KZQZ#d%Nh0FESn1?vUhNv62(bKsK<1%B9HqalnQS~iwjVJY za&3sQlkb>JB!jKEg+J*bT`MBja=_-*v&A5=veRPX2{VPVqQ?@GSo3A`GGDWoQCCb* ze87f;&EIR81SbiO;n<_o(uCneQR0@7A%?hO7|hG2N-&edp~;iFR3>qe!N~@fVA7LQ zIEZhwr;Q~&<6$uYGEIl#-evVX;&)^bq$7@q6)F3e$6tI0czxawww946nP@?}^fgjs z0&K$n23vU&v0n9qCY6Nv#RVvlcAtl82yM~R(GO9UOUrWEv**xRs`3a-a#p@C2XzwPogkyhc zDh6D{OEK3joEL1F49lDDC}y9ryv7?xd6*#jjg749B&=Mk&Rc71I&(6n7|Ig99(uem zJJ8yVN=FPbH=nMJi>&>odfjAVmpu!Rel%o8jJKk1e^o`_H&ovMg{axmTF{ahJgXI3i@ zAL7x#I&(~M97td2wY7OAclxi9w?3(c)V1WK(aI#Bj+B#G%U(34M+C?mPat?IxTb^2 zo`sJD0C+%$zXIOQb@ZXE|9S1~Ov)$-^2@rJZJue|pBcPEc0p2BeFIu41GHt9%Tz8!4unSPZ z-`e6EDO=Zv%?*FNj-gY9hKo^l?r!*+ZM+s%c=BayeR%5T9mW>!!vFB@@aFq(kM!l^ z#fqsLdzw!q)Q|Im!P1TRot9evvzO3_j z6c@mI=zeZ`(Yrdt#dC3x=Nx{LbuK~Y(WJa_O(K9BT z%DG%Vn!izBlp&LZp!WPZg?YSlyyD!z7NIA}7W37oafC)nKrO+CO*nR#EF#51#vUVR~svf7uvPxO`Np! z1I5Modb>#7XM@IXc&sv5`vmYlo4@<)hSVaH3r_Z1@Zh`(kyRF*u5**it#vkWEwf8z z+`GPYlUMPs53fG`{P4|}UK#%O>)*%)KM+hrz-O1`EIgI6rbO!ClC%Bg;la_cdGk8D z&^yyl`kKuC-6`Sx?ycXaT4Ef6qKL@E58<@cG7}d!yj`Hq>$9Na28t8OycSe@U=&}k zoQqj5BD7N`IN{j>!yvGfsT-9tmM&643u%aF^5unzLWxA*>cYDf zWil0p?F@OPmUNQ|fPqssIV;6cUT*s76Z%$-vnzRhD6-27o4T3gW?HCO8PHu_-^duJ zZf;Eb`cn&>47yo&f~^Iu4OGT-5<%6Egp9yMOzKxoFym0zQkg0{GOY0GaJl?T z6IrliE~G=iJ%-UaIdf#aKsr5;q!ICT8pkDFZen&_~n?u(c8tVEh1 zHdlZBfDAXlGr@0nS!UB8pUmC6ZoV@Iw0?Y*d7qG%Hc*64X$pPy3VnT0AEF-pUM&9P zLPBlgSKUje<3)aCTc*AF?atgVk+yI?y!GCD!$12U{^{_w)%S)i_7yvl52_+kzUiwQ z*nX)d-6V%jJNlZH%_<_T0Jn?lbBaxLVe2Tb|KdrKyT@C@|Mt`C!&9&P>hR0o`HkV5 z-~L?tGcX&cpV+6J&!fZl*N{Q3Vp{6ByAFNY7d4~O4= zeQ9`V1D|EFk^jgQdQHT%56Kltj(|YF#D@pz@FtV{JZv)gIhDi(QxBFO_@vMWm;01HAu?4aM@nm}3+m{n0$zr@;+gvwTZH^0jJE;0s(`48sc<^;dzVqoT2qu(mgC zL%!`dPJrB5AP#@B>|5*?ga;XQOK2-gvx;vaay9aR3Dkmc0%~CS0GD>%vV0QX*D3$t z=RX_%?8iSE-oE?(@ZS9g^ewyr0vLVlSUF*Fi-qtlZUA`oh3AG}dgT=s!qwP<3Y?0oznm>nEgzZ^zuXITee~TmV3`=n)9;h1XBLNyws%4~Y>FR`mMEaa1S89z{=akZnNmw1BV zh##e8_+I6(Gx?0_54SdNr2(eDgtGb`@~JWV0q0}haOe}7v=H(bN792MDgxPNePhlh zW0-F(t9co(rYEn;PtzCqrZQ!6J;T08|C@(-yNi$mp+g3ZH&l-mV8} z>k?y8mN~~R|GZw*e`;HE=!#z~yQr&Bmte{REQzf%CD6zCdCD=unxVX$yA72mFn_s2 ztk7xBNcH@MGv$uW&YADrxidWd^fSXtFMVlv;rZu>=bvRG_$K2YH{EWmv!-?X_Hc*a zQ@l#rIma_kJ(c=T`@F13*nW#AidEFo%&y43Javgz;j<*I+r9IU2pEjPv z<}p#Ygr8=s>mZOq3!2c){7d@Kl~*tr=sfrOClVV6Hhdt~s=y=_+T^G>#|T$q3TP`c zui-^8X*M2BzrY2l!GR)qz{105(j4@mNL2zPKi39cH>Mdn-s`I*gmJ#XU*=~*w{$-X z!aw~%wF_~LclhqJnb!#%S?b)ZGs`Qzk|A6Omkl&Qw{7f^G@Lv)J6KM|kWqCMI;6dR zR6^@7FpXB#yZB@jaE{Sktq?#N`ldJ&%;*{#4MXjt4S*A!PHzN~iPCZQzm@k4nY23Y zMbaGMjEfJvwO24jqmGuVV}#{wH3c&HS*wYV9Xg2ydEpW?001BWNkltbHP z@78U=V>Q9}J%G-6)ljRB7iCPRbe* zay6br&gIJ@_I%+>$k-EqPW#n<87OVTz%+YX2f2o5BqKujRr~1eq-2n`K2p4r$Cx<5 zfCE4MD858lKlk?0H-mEnrRBgo&T&D+uS9gb^g5vAlqUtGV-w=VUz|yfc1B%N}nE0h-gzy$<48R!LDfmj{MX;Iq_n<`P5tOUNqmyOI zPLOg%D^L4W26o{Z#j?|*`oO7u`2icnbNPDQ_LFfyiqXpwZD5k?IgQf#hf=NSL?Y=X zsuGzVH_{_zE9@{i_k;k%=gHvI;Zk-nhsR7#w19kS`27sb%-KOw@9gw#Wn)t z56B+7;^&$%{*C~yKN|F(Xg$hcu6fE*F>{m!Ze=fRr`?bzYg0T;9{HH_6)gc`Z-dJUvd4T!qYF%bsj0}037n_as2qEIO#;6b8EJ$Vwi>WF9 ziyE_9eeIwdz#CM+&84;Bm)33#|9=17;i0d>oC$8c>u06$m8Kf!XE0x+DAkzCbz@t3 z_r1ul1DpjN(#hQvy2fhSoW48M1e92OTPNvG-%;mq&0x*VLorlG*d9sK&?86eMYu6L z&Z*2alVp~Z6P*nUkdT zBKOjZWj(*c&Cl~P;}>x|tYwq87@y}9R3>^exbnq`L;2i9r_=U4`D2Fp8I?KI6fdfC z89E=NB--^Tnf1d7cZzi=ag7&^exBf_Sm!e3gx#2&mtTxuDMB#kkRz!Uv8-c09xkN~ zq+@lAi|09)URHcM<^<8}%^c$seC2rTHtT2mF8fk0d)Zg?ELNTEuBJgz-6o3RWs(ZZ z>)q%lljNX(vD6!DI0=bG=RbcGA-I1|Rd>1ajf` zpe@uxF0@@ZUT2|ror^dx_S5qog=+pnL@wC(y6OZd`$URHnd1L+h@U>^3AHMq3 z^TR8AtCSuI0qJ+4Y2V~Fhzndh4|mw$<@L`jI4t?S#ppvHNtwfo8(w)uu9FZ--5pTh zY))vG%%WU$b@7@vaPTCtn@g*H*NWFiuYvCa#O|aVvJD~wgQC>a zztov=E(E;T@vok4LwJHxXmpB@jg1{AbuOrw&Do2nY>E=kQ^rn0sSf}nmzz&+Qo8Z1 z?_|TiY9mUtq;&0WXQ1HOZK z$gA#r6|_&DyYU>4!Y|!WQDGOSynENlZp~91^WcTfPG}8YK%{2W4<-FG)R9Q^LvQs( zFrTju~vF|GGh2Z{QfA9yx|MJiOyW#7%4u_j<6Ie4MW`2_LiN=tGz?v0+F`5g7k|O)W zunZK-s9>O3z4@u{F+}d4Zw|lz_U+-lv*(B3`A`1S;pK1q2DI2%!v21f&W)@iWVEid zc~SEyRrM)*)>BGIYCD4V!QTDh2fz2<4}bJ0|L^c0ytXua{VD32r_^2e)*3$DtjyFP zbg>|5{afDV8$4MiU*mH0x);$V7~|yo-QxR)*M?WW`#Zxgef@7U=iADgT=aXDFYhS1 zm)$)ll&{iG)2Q5ZtG?Jh(#YdR9L#-6OBm(IMn7l$Jw_$&>w-`4RV)!%{1&qQXj@79 zM0&pmYmk+C+~Viji%5B zO_y|D_>ONjI7AO$)%=j_fNeHwea))8kF0m{y{W~U3(gp`-002Izv-O4Rv-<`+wZ?S zynzlrCH&#`-mr_0_-bc;PI(>gy;0YjJA8`Wn`#{6eWF)i+xHC*{F&ZB$yH>tpV2?v z>{b8NAu#$vUI~pI)8A00e!|#SCt)68TFf-T4>c?wzNZ%L^c($|S54z@`D zKpIghPEj-=t?OAXxaE%v!YqXNZI^IfQji@!i-fJX=c!8%#zrbrb}znk79^rB=u^U{ zElN-S9?uILLN7K->@kOCk4E`1fESD4{RDbk#CmkP6SJOr{L#>#v?P9V5qW0g6lvFH zmy4i}7Y(_^i}=l=INYeuMYSHq;{wyjJcFG@f$S-t{#_kzZ`{r}+AGKL?}#^uDTDo; z{Zg$>I2L$gWQ{ZNC1BTi&AhMst+{N$JAcr>UC?{*khKZ)a4vShO(|F1n65+%>jsgM z+$O5Sh^ENGIOoqJ*k*dW>HI3KB;AHYTbmLlxfePN^Te39t$AF$j}y8~VIyHe@2jk{ zNit$nq5xY1Y-pAD363M#nXbuehaOk1Zb!%0HLf+bwl;^S*xY^nwbzH|o_~%F-#hrv zIYZS>?4Er1Yerl`#ss1;YRy9+X1Ba`QVu!Y4>TRGIP97M3$v=(3i`+JO9kbLbsWAs0>JQ(d%J1edlv zQL(lSn(p^+?pBmJ3tBY=7Ji&g>Y zaBx*#lGdSCCY5Ui^Yw~)ds&0iuE3_1HN0+{_(K^B7zxgJ=tq$ujud(NjjqBK4dMM2 zOvW_E#*SC(<&?Q@5}#7v|r=uQ*tCau<9Cubrbp%+e7)6 zYDkBZYz)eX?y*zS$*qH#J&XtqS2W6sT1Y^Ol)uO;Vzm=}EpX&Vf4R%oGvUllz~q@N zOtTsNel8X$%VuWKq;DU_H5u15B_ic{fW*kO7jh(g&z2%kq3{(W5EaRAKbIid~SB!0`J7q@xB_9}x zupnEN5vu4mR^zFQTQ)Yk1dHtx?GS|$Z^D)-haa=Kpv>oAzI`kHq#iy15;>uxOwAUv zXb3NIDPA6v4^AK3Q`hjU{*CKTf$Zn_Q-;)=ZN~9ldxTLDvUR&2bt#0%rQE+d8E%U1 zQz>4E?=unKr2@XXc6<2KgL^Ehwu`wZM_sQV?Z0QdrA*#$VR>TcIr;B;XjPao)X zE$E2;jZWSRW-xQd8;gmgy;AuL?Q;%bys>hz!S2#zoH7RidZbCwiOx!dng^ZOizS`d zCNxnHiaS@h6LyUbzy;?cI;nL!fa>JR@tu$*jXi2n)&)BFLw9>`XSjX+W;TzXed?Lv zJ_|pSwd@>NsG~tTn0%H&S<*;3Pw`qXGF^jN(?{va`=W>PF>A}1=Ze*NIvO(+M8z+r zFP3$vC(WP3l~?KkQ*K`X>pAnX^5H7!R@ZwkhJx$INBc|Bp5xErM6aT~$ZN7@S*>L2 zvM<7ZvQ%mD$#5sEtEhA-r!sR&BQ4W)D=Iy|)9l#&-18^zp~Oxw!Lt*SO84C2W@=8Q zIOzwymoa9W?0-&(d`i``<7BXBB#dTW1wXc&8e0%-t8JnLh){J3W$4f^Ni36tl(@iN zD8-v%`&0SiR$dg_zxroi@2ggMCMncv^ePYX;a9rEdP11;aK#)>{_F?cwe;2ZUiiBy z=MzqA%MXW#2iwD6y!$2_!|Qw>bai<4`kmqBTepX2uHQxuZklqTif{k=s!eq}WAmu` zBV>TK4*~hgPIfDz%@G?2j;#Oa(P-K1U8m|{koJ}B-zOJ(-&mhT%;458DxJWo>@#PFVo$4^=hb{*< zd9Xr6u96%hATevxCmzer2xNad7C?l=C6%E_-wru!tNN^I5@3e&*pLX@a zhaoL6KD}D6t5t{ESWvblHcSIYo;r59^qVZ|xM8XfIGIMj(1Dizr>)M|Xz^RK>~N%B z*dF5M1Lh>xHUPlqz&Ya%T7BS%bX_305f43Hwd-b+8~gS8Fz6sNHH3;%Ow&%Jj{$OF0L@ysDjR8^X>wft;M2ux%(18* zWJE`8rfpC@vPjP##ye!w=o*#jtFM(;KH~h1uYYs+Kfm=K4gdBJ|JCp-PoE6W@D1H9 zoxT1eV~AOm7}m`q>!{Z(xzI@wb}M$O&OiD14`*KrMG>1&!|(x5Q=apo;Ju?8!}G8H zDmN@}^M(Z2h|C5R^;Po>5K7XV6W2EW;aByO3*RAU5prXFY53Bs-yAl+|NY?s3=i3S zJ3v-9Kn;G&IGftUbqV&(;#=0GRJ?vRD2l%x;!EcHvkc(-Ou#?j_ujRahrjwnW(453cons&4zOi71zNJeL8Kh56_bF+*5#S!B^$9W91LMy;2#XP%pq8ZswJm#7 z0H-n7FQjvjhqX>xQre|1{3*8nWJW*XYXX_|DhAg(hyQQn%RPgx9I=vZ=extD|@QcA~FC_bEHt ztmCWW~ggPU$v5%*afc$W@}%Q5tDi4I(rwLeDWksQ$*Bq%R3D6)(n`pml1A8TmzEQVrx% z{wKxu&2ZDF*F z6(M@Ug3mT&%$czmdxMBjvX&JDnqn5uZ$8m3u^9!9$MXf$8Tm2V`?ibxM}S!*8$a-t zCl*c}q<9ji>{sFzrt+lTW`sULG-d#A)HQmNk%C^jNVxltbKo^Lcm;NDxz7!j+Qp~C z-Sl;g+~fvb$LD(=^2S3J!Tk(Le=E_QTesqKZW?7q{eh859^TBFIUjVg zn9i9h=t4%+v^!+yKlS5y?^tHKepU01AzsIt=}KOPI^p;;t;W`w{Det&OI*{NUp8-J z8pyrvG{m&CPD2Spr{R(cO;4GN!Lhn?^8q3ei&L-qffALd54vEyQ94wFK+E&yBJnRT88u=*GNO923Gz%6X~scK*`UW{ti!Z)pTcquyPU}hEy}DU5@oYuAp98S1En^ThhY5TPoS&2(vq9wlvbh& zswhr^{D>r({3_`66&nE2eWJH>?NW7K@=DX7N)-*U6G10f2ym=W&C3WQ&thN-$k{Nu* z11HgWnWPO3CZbgic?F$5tC&$zdc@y?6pyO>z~C3k)S+wf=G zz_DyL4YvC6^4;LIL;N#1RTh(ktF)CT|KSr^NMEMXV5CX8hq@LJxZ>s}Xd@%qCuh^- zbem`=`g!Z5uPNp10;73cONkpA;HY-SNzR)*93rjANm*CJhZV#V+tSjvAM!moW ztHfzS0Y@xM`gxv^=>>QMS!Vrl*|+BTrWAhZ5CMyf2-9sH%x3d+0M?g%U7Kf_r^@|A(UpdJJ%VwPr5;aG9f z&Cjx4mi8l|P%u)WDtGg#^ynm|l<&d|D=&VG>MgEan0pFjRys?sP5nsNj5uXqsPK{U zTnRw4q7u9)_dB_({O+C}3@@)-A6{J9%&VZiu)hGk z;)a{u^DuVA)NR*KQ}uXYFJ%-3apMvTz;o&ooNLlHta9EtOefwNfV9kd3}GQN=?BhD z;0h&#WiG^c0d=tC;(Rsi=n0^cR-O8cyK!rw7JTTaO1^nV#Kv&r`i;C2`rh`3MIIRC z_ku$jpY~To}=mhyQ+K!`UQ(xq4m>-hUr|XWIpE5T}hrz4DVJ$>t`VTL?lXI~@d|BmcHgbWVyDgcYEHjq*#GSUtCT$k^YttCj z&7=rL(DPK)xFB#5y(aXaIa!6Ttot(hWhmInNJNfkvyXw&q?bLE=>8PikrFFV545;cXGfc$&wce=tzD0 z1n{{Vr0{W}A{$6vgjfmcj}Uo!6LBICFxofm0Y2qdh>7fZx>4_5q3-av+&BTLr4?p& zItDYid=oi~H*O|lzjf@T&*`7ATSnJq>duX^Q*Tbd@AV_)0s#@wEw5e0$1s#PFW8Rt zw-qdto~ZSk)o!v`KhYt^#&k>T!$1Cq|Hbgnxbfm&{NW!AYo|NIuRY^N)A{hq z&GX@xp69i&+}Kbo%LkpxX%$4y6Oh(Ts>cmEe)=w_*ifq}&k+FGkmYQQL(8B*+uppjF$tk$72nKo;%E zXPBu2^XNO$maro?HpF)+zh>R)v+$0uA0Z8XC`~*m^3~#lzKvffUtJU8lk#H|Q00kP zCS6a4kO)pn<40~B>!aRuQ9Mk7t18Nj12|^ToI)r3nq4f@gM2dD+cm6jH!e&s(-Hga zKa7wkQbo>1E9c@rsopUpRPyhQ=@E#kY+V>&fxs}fD9#7Qr zjl;X!54lO;c=+(a!{I(p`fl%T^Q7#1t6$X;$b{_R9x=w`JHxyY%FS6{kM0dpRsSrFa}&}VZ~tug-jDx+r-b+L&H7AC zd_xq)l-7UXyNos7LPOi74uFi^I0Nsvl70}K(wBkV$3%7P z@riXtk*D!*;J`FI0a{2@xdPjBAAK$gvvTnoU2~;Za!gE| zZ~8V0$I^X%8LLP;j{Ei;Y05uqR?JO2ACReyoj0y=aeCLIR-~wnGgXY>Hu&pdG9t`ke zE)na8QTImiH>cHuHqqrv=%HMj={2Xmr$}t7&F*3OxaYZSc}e3V&EA zFI_1r+y-S@!s665s2QDilh4woU%`?Vq0>NTlg@<`a+Y5uM>wF&a}JfVu2kSUuFxYQ ziAThRNl~3AoDPqTTDdMe(J6Q(i~WT`{t!!1kOJRgDarvlWtoa#;pYERtB@P6?d*jV zm|yxu<6SQ*J@SqWEG%Cw7}D|0!WX(+M>u5FZq0V_#qiRm<+t{C>Kk8#N9P|?l9rw! zeT(PdCx-)gjssJ&`HO(^t-eOAfN%=6(5<`_2;Taz2HLWP32;N~&{MJWLMeo2<)bf9 zz`wO-h<=zu-Tc#;vRXro8eoSp++u2imy9 zJc#Qfze#+`4Yoe*YVZw8^ume9IjPk2|I#){!|0?4*R`w>ZfxZ@Zv6K0Af@(#Q)2~% zt)A@XT$?h#`ZEz73(Pm(ehnpfojG}trHdn|p^0i#HUW>!9{8CF;s}m`!n;a?Ajl|F z+dSs}fX%_L@D%XfQWSt&oucs8)Ea$s~ z%e)>(oEP{e=7-z&n?=e#Hjuos4z}5Z9)j70z<|r0Fu$Wf>}GUK7oM;gg-AU4t9TW<17nyDmE@~Ba`NfIdn zAGM_yIUJ*>cx;Uf#j`EUt9|~ph-JdNsacZ&?IghS{|2HXl| zD&~~|2<&5J0sP#jZC9DBfwKnwLlzRex#nz>yTXuf$EUOGXIaQUWATeEFZx+YK_rtF zHZj-*IsxYR!=2%Hizh!>%y$B0A1bIDJm)Mv_&Q7{Vasf=_%yDYR{OhdoSh9DH#SQs zc;>>I@@Od=WXtB8`tz7!b(w5<0h>g|Jj#M=9ta8LNwBR8!(60G5Wyi5HJkyECD-t6 zxye%iLBq#-1uy|jk=?CkIo_w_@*Pg#1O-9hPKhYCfVxNZ_l|PG3~U=mHq4$2YB{(O zTpJta)rC;i9%=p}Mfec&DhUObL8vEO-HHN^2~1vPY#r$fT%fsO+Jmox2?=Hp+AW)6 z%EoW$0DFsL4Y-KIMyK%JxqimtQCvuyI*Ig2<7{rRV8lksE>HX&vq-hd;?pYMAwB^= zvn&+!qQH$&zo#j6C#h983WTzu8H+pa?Xz>Fk zO_@5$f~Ih{lmG;QUF8d&Dz$7hc>gpt8SL5g-@)nHD~wq;CN+t_khoQ zy!KneKlywA05Nz%9i8mMe4Td|DX~&+N@&FMHUc&_yZ=Cug--OO9&C3uCKuP^Q_>;V zMf`JL!Hb@;I&;E^i@)Wq1|;i(iT(+Hc5bHM>lfN)Wt|OO&F`d(hWgBukF=O zWE~@*uak9slM2fXh9qNS=t?#h#pWgMx0?MBjdNGXVCS&aFVVvdS#MZaIw_sgPH3+J z*@U#!5<0u6;VYdrwi^nl!Q7Z%^Lc?4Q$6do@SedvgD(2($N3f|__jB{g?_{Z{VCT_ z$86vpuqgfZ-Fy7*@~TpE|d;3)V z5Ssca=lC8G_0b8;GvvBNry!eu)uy~3jF4k_3+dbAm}ayxPFcJqr$eS~6gBFEdWk%8 zXzikr4nIi|T2|_imQa}|g^KVAwd_{3SN^ym*UML+U6FNxdO_rv$pW0I&k9v0ZDY2B zcm%~O&UI+eC38t^YZbHlVDjux4dBn^Gw#nDY|^#?k#yP_`PuxXZ}e>gL5ELnB1`H~ zhvIGNMf;T&kHY)(^HHJni8Y+v*`JYVKJ3i#KPAZ%!oIX5Ejt6!>mxdW-rAY8PPpmF z5uFh?eJo@`V?i5f_d1h#Lh+K5zl?Wc2Cnh~$w59nKXn+4mIrd`wB;e($e}Q0R&`QG z(>-)qdRk({6{v+N33dbbhJbANGH`ga)DCaYc=@H5hFdpyn;maU(kFci_zb_R*NzuS z=W6<@H`1QEFwc1Cy4cYgZ+~LEJ!CvyV_v_(4GG?qaCEeur;NQu@a8se7|Ynj!Esv) zdUjLTZ&$DJ#If^v{n;mnYYxp!nQ=|~<%djT+&P9#quYFTmUds9&zpt>Lyjy|1804C zb8W7d8|~Dgypj)LN~gv(y%aCYJ* zuWmQX@`J!qK6~RF&elb)HsY6HG8IvLQZ7?NY*f**Q_JUMtfdN|<1}!kbEXhYW^K6T zL}BrBjWOz9GDsqF#44r?WtH%3b{zR9(%YVvoMfv_ugb6_a~S~)(6Lt2)gyn=<4k>3 zF&Nq}{G< z&@rXtgrvi@>LMhoErl%d1y(r0JnL_^DSh57epQb|2u0G8DowuwRBBckC6!_hJ>JNQ zqwGbKcu0`Lx!-Ui5232i{6ZE7qa?fcH8e^g33aSfK_=V7EGcJN>&%y`FxWW&VHQe+ zGI85c5fMPUawco60}!}$FPJh;nb9mlVM)kTqa|EmD=*R5eS(>agIMrn=8rMTn{ZEg zvyxAhcG}fv%BImT11H_rN3vnuNV)->S3Pr%O=VAL#k~qhqlN#{)8_u@=Nv0i|Mqh! z3sBR!>Ng@JN4i~?0#B+lo0XLm93iJJWs3qVm0DcDz!beow7iUK)^-Du2*~B1Xe3=h zJvSO1zx*$V#k;}AGC`to#A$)CIraJ{VsYAPvxjLzlCf7rXqk2T#K%(Z3iL-7Tmkzj zWT~WsuxvNEd-E1gyWHUS;>y)oCVxCZ_~)S zBH!0QU*}uEejjDk547X-a&ZFeWLR7mr(E21@iH2M>m87{Z`{fTumk8DEcCql;Rj(^ za+AvlWZ=_$_zInSBm^Rh?9C+LdJ z;ij_6{RpoIykiSlT67$J%F=ndr!4F7HZ3IGX{9iS%Q;ioJa#o)XtQ^_$mwhlyyRem2+yA@>Ds5JPXj(LUEjt$n7 zICU<$dt7Ye6|`C|L(-?)3o^yZn04A#aP9NFFm{}CUawus)*Q)S;iAq^o4_>|xEXbW zi~oFckPG;A77JX2zrDFO+~SEypVHl8vv+Hir~bH0+_+B!Z*t+kxy;5MG{=ibiEAI& zI5}s26Zw7JsvD3e?E3hb zFwSzIr_xz`ud-x9S3JVBHp+0uW_%cfbL!?41`TZN8||~VoiU@) zRL;->SNmrlOPPX0OCqj3S~apqwCY8&84dqtMd#4LmwsMltvpnyPvm726$52c32Fvk zi7o%LpE!JMq03ht3Ouby%VwT(hQ zpn2|CWcydP`e1fQ%=fXe_30B{PfUCCX;n*MIene-a~G`erE4)a*!cDp<+oUnz0JJ% zCgZG6`COyj_j}i?y{B*0HVi^n7mO{V8^hOmC3(j*wpZy-_A86xhVMW6m%mNw#o@br zqxWMz8*qzqKjcpDY|c`i$N0M6oNxP*^AYXs0ro%P_n5`!XZYH-@8-2n&DoXn<8T{W zJx|#jeer{@K-UlA(>_R(p+Tb}#e&eUqNjHGdVFx8R4&3z4 z4Ab~kJAIXZY$tEIO#9%s-?+Ct(katxPjA}ltN-m6;K}l>zk$NC) zFabP)bS*X)s>N6|H58fDZ~^AmFMt7;Fl~3#D6f_e(NV-s=LR!X-c7QkbiE&!ddT$-Ucmgw@*ZJe79>@p+c2HXgLhN(+D^fR>JR8@PyDeR)$Wp=+QzcQ!U zpOwFFp=Yb-tbFY#{hn*9Sos+}c+Ku@W=o8ZjA3mp^lNU0aXfa6@0iNBH2C;CSxe*%1Hau<`D)0hVU(545kwF7At8{NmvYeDnUDcizdj ze($;&%)ITo=TbIgy@qpR_ohE?#_U=dZ)Xz693eM9O3yjf&-@5Kme2V#Icfa)1`^Ln z&Ubuz*mGz$p5dLhvv?z)8_mji#s+}48at6l8^`Eg4@e=H`3E%K{FG}8)BHLAHgEkH zJCDkrX?QyKF28L(^LEau>XU~lF=-SSa@``FG#z(O!4oe@)y%q}{GS+<7KoDh)-+JpRz8;16! z1(YKH9+qBcX5J-o#sPIDO@d_TjpQp$+d@F->u>^0k^!0$p)LInUKt7ER`QrwxM&Uf z3=KY}DU_Y#u(w?gK%TwbwQFFiNEy(dx&+Yk2?#4AK_{9IMfC^@hXsZxf*LytE@1kL zcOG`URoRf5fNtlHwwTg%UM#IzHv7|sqHFPMU)tITmR38rSQ105rwox{&NOT!(_Z!E zktPU47cD!XywY@Bf-!w`#wi8q3}uJm+@WH%a2HfUSkabRHXL!2KN{6Cwh-laYzf&W zOmp%}*%TH{*bu)3P#BD1TYB2IhkmgoTjBbk^wgHu&1+0_{U}C=42(p^FAUM=%zK1K z{=!=)j^$m`Q3*l1W6<}j1d4Hh_xwa;s70wjy`S<1p+0nMWi4fREa&_}+{5z1WD*Ak zt?EqIMe>W@WQMpFq@Bf1fISb;P9)Iw3P`+(7&*ls%eH7EBV(EV;~%ofQ=jFG9(CXc z+hxvwQWWnS$ueNz=d@p<(WqIUDkwGzU&mGJUPtj0$7z!d%lJA4z0cXE@tHrhwPKL6$o!9l=HU_XxYjK>w`n1yj{jdLdWY@xWW+$QYW??bf|Nq0q9@yGd+t;+R ziRC(9-{&El^ubL$n6vqT8()kobn10ae|fqCXGelkwZAB9Bux)8zopGxY)9o>bUg2+ zN)W!`_GzUI%|#LmJ2R!YoN$%tH3XnGX;a2};!P|Wk08Ur0mhVOz(_w|I+4|2s=plr zFwdC=BdrS!hb_O^T=L=gd3-wAv;)vjZH4B zX9FjE*>+{ls4%r~M5lgAPJf{*@Kh?P7+Qa#Df)c+QNHMeniTf8mRx+8Nm-vvL`Kbo zy&Fgv1ednJqbY7sBRe-wS{~`$@CY4g%JbZJc74JC~+tKwFj}a?dIbD1}o^wT?>ZaH)c&BX^Ffh(ZxSM)Dz2-ze6Wqi~W1+DO>zKN2Q?ZyvJp*%rG9OUz`gTRcmlEQG8eFx zNAOw%%Dh5c?1R^`fc6*ehy#`hwzdI9M%&Vos}kufhjgUdv?vS>H5V_$@d>=SAp$)i zB;Sh=Y>*N0f9-$&JBPpdfBxOW%a4Em@aO-~^TX%Z`@G4$Yw?Z#L4{jR?#aJ>mrY=B zs&xbSIr6f>#A~m=`{dT)UmX6_;V=Hh|MKwbf8;mdXW^7hx;#n3O$9B|vIBVy<_XA| z-&=WvTz~6!Zo1=%S7V>hc=6!(4}b4({?CVd5B}NV7q0)1%{8g0Cmo=X{M7T9_3J0R zCfV)Fj!obaX!Y?$=|19h&%gQ`f9~*S|I&YdxN-Zv){7#e9beYym?k)^_Gij&|FQOZ z0V#|$h`d4`U)cs+T+h#^VOYe==CGTQleP{JocbI4bUX`vNGvV{CR1afox8AYyD7Hv z(ErrABb444;5^ceQonWUlcm4=jjyrs|2=TP!E38+8c)Q4d$(^d9pcpY^6=UF@8Xj< z5V!pJ|S6&=$QSVu>h1VyDtPFkO#;9#vTkX4c zMeF)wZaVmgr;MKXq_9s8aSn)ItV?w1YsWJ;NWCG6DEi!2)g#`VWa(j}-Sy%=YYF(v zc|7D`{b>aY)Cyq3#iwk2vRIsNjmS6$h4k5EJ^*V#l)qMTZIIhf4hVjdMc=kBOP7sV z_zZ5;T2{{?ZqVq-+;EEC`8KgSDM{>?$G)P^{JDAj)b<3CI<0#*fNd`^R>TU9H`;6P z8f3LNa#|&K%PpT=LrZc6%Oj;>VVC?u&vQr_dgy{ZvRzCo{RAoG9gPEj)3|mH^_JUG z5k3Ux;uE@a*f#*IBI{Pm2tL*(p=PaTCXDxusPobhapr`6K& zc&Fv4UmGKl^M}D>`?;yT)GfW~k)vVXwj*O_O-t6}P;Y$aQ&oGOYg{yvKKI$r9`4@f zra9&hxA@)Qdd{bG?~=a5?`^*Q`-`9X?BU&e&;ZYdA$4=zlPc%1u6c1*Bkj#pe%|CJ zbe`+4bHl=QKOK<`MmLz*NM4)2KK+|bV%oC{$#cD>_cAA=NYB|A?mV%431Te;vnCkrKZI&UeH z*IEDo+&QJv-v>*muDY_bj6nG zltg;U-l*3@JN`Kk^@N$ijR^r-?k8cL1NziWz&hLR@ypJo`{S+B?wJm z%3da(9;cN?uwo=p$s(1!nbAyErITH;l4^_O zJG|@?FS>|d>CsVJ<k+n87o02q0=n@k7Ss zCCGY!M!xz7x)fsJBV?tI{x~M0J8NM#17;6zcHv7|c2k z1oFuWmoqNlmRG5tBtr+=cBQ?^#O4OSx0%d;iEjblXOa8wKl~;a;#P4bd7K}~q|^4z z{2T|%^##6dY&pL1{2>*)c_tI7H5J;Rr-e!RFGHS^?s77m)@>TvNn@A%tl(3goxqc% zvU&kw!_`9mmMHIRyu)4m-r1Pf(Aa{ZzQ)AIMK5{1pqjgF9qXKI-o3@^1-&bhr`n!z z@#do3H^29-cEr(wk}lj`eh2P}q5qa-HQ&Gq{WL`xbRp z*2Z@pa~87KdkzP{HYZ$t{W(^U<{+*|hDb1s&lh;qb^K4q;Z4_t@$;v%vd<^#N`QP_!yJqLZ_a}Mc4jR zTP&c{xiaw)kO_5J-B?hpCE*^O0+r>&h>#0s2(k%iVLc~+a&qNU8v!X(+p*V+9xj91Pc<&0{7ds+M91v z`8cHpQh}*GFL*3aEb6SpMTrD-yfM^R%e~SZsLl9D8Ut6a>?-$uyww6Gx9KMy7g{t)g{&VPoc^PFh`O zdu{)$PK&G$)9Bq70wAe6wGRL~MG)2`S(;b0-@Fb8SV{3K*_UHtT3;0n zk5Bla!pXjy$A;x~4FgBcdeTN?iTOX`WLW(megR3#i45ywWZ6Fc@$dZh;eY+Dzjye( zFaMLn=dXWw_+#(AIDF1f`0x9?5BmM5w-5j7>YqCN zh5zg?v-$f+sfsQx`yDx7%bm7zEUe{Nwvvjy+G6?i9ds!IG}>&ryop1?>pWih&!RFYn}~sxbBu_bT{G-@G~;&U9HNAjZu!pE7^K>xO^* zH~-w>&-@qvBd>j8-ex@lPoIHyF7D%A8i$MJ*)+A?1GEIfa)r%qVV*FhucwWv2nrYT z=u+6klDz!zrc9*0QBbTpI{*M607*naR4}p~0Msp^0DkF*))O#QAR)fVLL5mKO_k{r zU{BDYZlBl<9RBBAi29W8w}0?`p7Q=zhcAEU>wF9MK^OVuT{^N!h}-k(X)V@<#MqI= z4%&<6t@32d1eHZxY`)3jtlw+5>3{C+cWE0u0ZhiHff(di`28Ghh8ulo$NI}xY`Ho5 zmG6Eh8?E2@;Df^t`9ALhUfXOre46)`uE0Ls;?uLf;@H0bJbkro#4-OigT6PyxS=oZ zE&TZeXMOzm$>C!@*YbqL-)F#{@g@kLfYzro9;G}n2wm0_e7@G%IuO@|BptE*VG_8t zY9J{i37!u2DJN|7B3hemU&_e$sL5BC#Qe;2a53x&{X$>anbIcF6GNh#Sh)$ru98GK36vt!%$xm~@=Po~K-JyXk9jj%AZ?$<{F`UDVeGk%Ja8X_CpE z<_kSifs74;VJ_{CL;SE1n_gN;98)`r^U1Mp&$~~b<=FJ?sW#})2XY=f=#%&j$xe9A zWhib-ytS`$Gyv2!Wj=A<3GrEr_P!k4Xgga6gRj6nr;t0R+K78~s=M%@kzOf_7OAb@sJ$heu{k-?}p6;iS)*p28&F}u?i(AA@jZUW~fDd+JNA`9TgkwO1()0ykfZfeqYw3&Y6 z_1@6fuRK@ThMe1F-P3-z+#M@&elHDVp_RaN2%9L2c%atNoIA6~uWWymrRVkP@?73I zek^@(s1Gh(S-g)Muq=EPYcOM#x}?uXNX43#2y*cTK`DV{GsL;oLS+uQYa{VRcsckFPKk#4DT(HW zZc&`&ZOzJQ2yv&cM}fi?ypa?C_(zlc6^~?WZWjCmX)g=vfWdN_nD)EWCEt?ma7)(M zUHt=G0$26~r(r?I!bM?J*)f3wMF^R5^5Tw~fSZ=SxFpDo-K_`m3R!XkTQqrKKzGmy zl_P(oj4aw?Zq~&ynvpRB`sfExs5VR}t~n*gK(gu>8e_&P`d!wa?1PMJ9h-WC ztbMPg-}9KRkQ_ZoMr?GjlSzA)%%8R1oVZn^X zEh)=pj40I{OLt6^CK7U}ZJS8}Ql`c&NRp?kM9T{eRjsw+yxX%LpFR}^zm8UE+aiuc85toSoG1Y%bDQs|;pe_VoL|i?R zZ;dy(NRXqg;LY2Db~{0}4D!c*40W<|hu1*gVg&Ef2+eqwI!^R3G39H$B8$0S#uML zZ;t6RiHq9MP)}U`kuvdMr$tTv6u-|c?F*E<)nFQ{I68t}x9g_9oJYuU0dRw!d{yZKKSrfx3h+N`*YMhnJ@`etkdz6Se&6t5(w5?-_z zwuw~bjFgdE?uyD3BwQY`*RyM)s6!xdmzc)7F|XRw8-vc2pBT<%n{Nny@1L8LKK$UJ#MSxM)AhSPRfs zzOk*qk5)<<{AOcbGucu`imlfLdv)h21Z3PG?~`Oc{d|B^Xa{ z19wx{C&AugV=xn6_)-?-!SAN3lhkYmr{HLjMs47=+Q^NmY@(!+3g4z5cq2S+dQooC z@a3t{BDI+LsDGlp$(ci4LQIBNg$i@$qok>#WL)av}EDBK;0e9494fVgmwPfL( zL?avc_`vgs-wjHecb7{8!a$UB7kRa)BQ_Fg8`&#-)9EcHU~aD14ibn=J3rg<)Eu&S z00O%`|G8vfZTd$$aA%MWm|QEtRKKf0Se$?^;BL}tpf;L9F9JF#6zr3R!2C9JHeu0u zh40{6cXCaZN4XMg_$&^+z|I`R*9)HNk zaHUOojO8guzRBbw5i)M^l!MUQ2D@E)YUd;*21H*PE1|305XuxqLK2UM3|e1 z|M<)Q;_x^A!QVQ({rq0cOTq6{Fy)f=MMkf zfBRRd3ZA-OPhHq5pYaObr#vFuIhi`pynGwSpwf1rJUd1F83a09@z#C{s;BhN?K?Ml z%EUR>%ftWk5B|pC8^8T`4)rJ2elw?6p6 z;iHESFd4h>*)8Unzwpjyvf2C1AAaxfv zLLCW|?bEc@OBTF=&%&Tjk{YCQm~!lPq22c399P>j{*!oyPn2kD{(0twt0=D;~KiJaXn=iNm1YMonKr;el6owfi@dCcqWvjOx;u-+%A!yYcoCz|wuveWCS z5Br1H5Kpo33I32yyuqil_0KiNwFQbT`S$Ko5Sy3J%GXyrD?wh|fDaru^sRlfzVrN` zF6HX?z9zeMqiE-#)1;<1FJIV|+K&c>0%3wb=lcFJp#d=K7|(n@msqh92YNWnuh! zkxvGvT|Z)RFH?IdTszcTdzx}gG}UprUQ0UA1rG;Q)Q^6sy~d{a2{+|=gYxjQZH~?v zE!)rocuh!sfX}%gx>p|uv9~xPP?jmj1@iXVv}p@_%m&@3>X(#g5B{;zBXciAyM#}B z^cB!|*zCP`kB42@4E6?ucZ-eR z<7=gvGq}E%w?Zk;bFK88`#MK*F31z@EQI@37QI#bd_oyMt}(CrG%+@`55cb;>R0ya zFL}}!nDVp9i7u}*y-CyHyw5pR=YKXG%S1cV4(2e4Eh{i_X%VLVlXe_xT7evLZku*# ze?*7Syk$nX?S=EYez%SK_9xTM0SwL`O)9&3%FU~%ZHf6^DWvLO!>L8PH34;hKujxZcR$DxzPQd%8RKfORdBBnr(DS$b zO?r8Q;gD-VVf49ds5&+=MjgMwy(a%la^)#yYC2pqye9XXEx#1B#B%U;le4|?p9^=MPmRzP@! z51oLd7ma+e-S#7*If;^s0ANRcTO=~#g37mk9WiC71nb6Bm=bHQAkSsOJp}qHMw3)-(z~ zrPyfqSeICARGEQwQb*kxv0j@mg7xIc`9f8Gm?&jCf>F^9P!)PHn7sYzUD@z<+9$KAWl%O z7gb&~`HkNWUS4!DxIydFyV(@B@$>pQ`LpT4fahRv6(8C7-7>zz2lc-6`7a&5`kmho zu3n&1!Hcx4P`~bCY;5{BIXB;@dL%%`D4kd7iK_W9humi|)j5 z$_KwUN4YoHSNi%OA5SGfe|>(~$HRKabFD3pJq`p~=p^ZIQWnV7U;rL(C;+H3+swAjtoz;qPBGAM5- z^G)Eug)OMeX`Em@w+|`YT?gV+H$T(wV1Z(3!U~%MUeY+}34^37uCnL|)k0_RQQn@LuD{w!$R@ z&N;Y&7HnN3_ti(@e3hINW!v(MsR}H0F7QJ!i##Gp#S#!zjgSnum6L?gQp)I zK74ZZ@U4f}4EQ*N?#D3w({f^Si&qaw zV_oFVaMCXx_LWePoqDa5bj{W0S`PeHAbxR^`{CiiN8dmE;Nb_<$%lsr)InZTiQT?Z z_%U-)=bsOG!p7GvJ@JlU%+>LZw^tZA@+2xi!6F^6wZm9g+6j5D*MxKdvRzJ=3`!Vh zJ-qeMZG} z%)dq=1&uAQA*r$wc&u-FbkoZ<1xKz4^L<|%g?+s@iNO~ZYt{ruBFmi3Ef(`LMMPEO`;CYVoKeV0?eN%{=j^1pgyvzrk6LP+F?aW`=IE%~P zIPnbn+}wuIZY=u>>FZC3)eYb9s3UUM=C5z~%j=?{J3eX5op9RZM(~>Kq^$FFu6@z# zzg&B22ef%x)w1chIcohvr=4~x|Kiu_VEUM}{i+!1+>HOW(WK{03-Q2Lb!1*D81bM+ zdUTny{+#JYzvU6)WWi7Jn53MJIL^0At*lVx>AlWhA)N9;XxXH3eh?v5j2`F=+L*L? zqct-v$@*konEvqx=OnirOQl zlC7rdDz;$ZA#HtS zH_XvdVD{7-pY;=z2I7#+NF@#H@VC4n1?M%oJZT#+sLwfjeJ!(>6F{k`O5k=0=IQNg ztTUK)JInQvP|H(3&%K%dgMh4org5}0^+w%!11a_jcPvTE2$3x2615#vG=%(PlkG=* z)>tTaXiL7BYE9r2>R8vvO+6y-C3_YIZ)UOlZb~N&?its&wU-Quk)JUn2w;qhg)eN% zLOHnLv?sh|jL0>Zw(Cb5tFjiqy2EKcFd+sR7H(-MBw!Ad_Xxml!5l2ZNieGd+n~4< z+Sy@zEuPsX>v254)q{aj{-wiECq05TNY~@l}#!1@T@^{J{BVwGA(9t?P z%F*UQoAwv!9Fw>HSWCcO|60uAa;{P;z}(Qom@jW?QP}cz%Ani-u%=Pr64-Zcs{(y5bJ&tzvsWyNkh=Yaur0^y* zpCn_Cx7g$IJ^Zq?`fcCo_;9))?oT-%vRGpHrEB*Nzx(V%XyW?4zfRI2{uv*}f3@uO z%Js|p&mSM&^DcfiIUnSeYm3vyIl?XzBmPoFgP8cdkYG4;Fg{;XBVM{sGUX^8Vo$i% zjUA)|OxwTIp;0DvND8B!1+NyswRna(Mm1$Upqa)H{7H7>&WrA^Jq_s~P1?E?pXxs{VDh&UCBtJu7Q0d#v+eHOGbjGxiMXz*!euvl1tJobGVFD$7MayS( zV1aoxEhItV>nmPd@q5YZs$+Z$0LUGNS2m}`#%H@S zt0CoZ6FC*V^VzhW+A;N^O{Q&ANv~m1SV|&UCj8E89 zyvHW2-%I_g|M0J~PKyYFLg?W$D~KVL1r zyqMD4o{(=4UcWmYI2y|d$d4a~7Y==iefIbANyE)5_iSh72)sxj(8<2?(!B7=*oZDK zpagY3{g@}PL`UT=Ev~Th4pWg7o>w}*>XN=|5)%t~9!DrOVBQ7W(^BT`5%rBoX zr+mx;Xl^c&hF=!+kg26Jw|$1sgtzx}v%1$T7=hs#udq=(fL=?IM;vvloyg+n>x^?T zhrPnwu)V<@JEcQELWR#$t@ea$a3b|F3&t)nUj*vcmnvAfvR5bFg`n zhBr_>!53HA8TU*negBq>mGj1@30^@&*Mjwq?!h(=9y&wQgAkMkY27%KeVVJbJ#2aD=!Nr=f$SNU!6$SpvnM;jFP=ma4Sg8) zTzkUP^q%Tc*^6cB%Qj+|yy@ZH%iH6n*@vOu!`?i7p8G81Z2qil?cCFt9^3cnvwVLr z`LXP*_N@fFF3MP{=l48Kd+hk-`Ocr`AjewH*%?QW=K#jPYYoy!UwP`TzRZFgyp_Q@ zU^ch9Ddt%e%reLYIoBPO;W~qG&TOGMd(b}Z_8LIhrZeuFTSaX=E%2;_pH5zD>Q8({ z+VesD0@QPb%h3Zn!WT!(X3+D`Qd@pg^OzbT=wXuTt_zlwX4epfBbueEoZg}+Q5pAq|*2z8QYQA+S zo3C!JGLO5>2Jk(e6m~v$=g#eH2w!IdHtiQ$*V%l6*w3ov$D2ZK@C0u*ad(@+nSqxN|LyqrRPA@irr7D*U{8jx;|%U*cyg4s1#vo+HD} z4Bkuxd*?LBcLO*z&YZ`!zkC8FcXeGkybuO)7R3{51FbPW0iJGYMjHL34f-`1WD#q( zP}BHU?C}7s=Wq2w1JYZ|i2yhPSbxeVz!bp+xdSNL(%8`YDSsaQ?QY-a)u&UyZwS?FL zS@M!A->{-)dYmyFqGfkws>d^f__Qm|1*v!8`Ul@foJNt>ij022O9K{oPa)=0u{+i9 zNCLauYP0;MlOCKrgpQ|4kP#wpIn3$#DTk8uM>$O`e)!hujB=DFJd#9aNOLHcNz1Hf z8npFDdju|Iq6*UX=uaWwrwv=6)F=I6#HfGLfQv^?YIIe;m*??2zVU4VYG_|Vhu2At z4RS#5T9Pd)H-s>DWvozl2ZqX5fGmcZTicS|ka{=G23p4iY13B2C!IfozTbIUQp?Dg znp(x_gVzV{W8AoTdzm1yGAc{lYUBcsA^pzsQI3pTU_38)jUJ=OYr;H?5Z5W%M0{*p z)p|p9HC6w|A%d4*O0npU<+p7Gb8 zeav^+ZZY^gIy`0~<)Tv?;l5d&x7@loTmFqo3ogeFT`1_#o+yqXtd(6UmGq`{@8Ix~ zle^1HZDbu_omBdSuM^NLN}=!tbxZGOfs2g}268*dbH8u$g1dN`j9%lll#iJd-@AQ> zg;Kl3t9;+*OP~Mc!&kofdq~*I=}EvzvKuek)6|e8NY`*tYH*)E-uZ3Wa*+(FHofO5 zHYr=`ELBS?^kPXqvescLwV{`4Ai-)nftzomM zcxKIOd8v6Jhk=omgyE0E*tB;PUuTjzeFB~J*@I%D6~2!y<#dSbGOLcU}=*S zCH*=lXVS=VW69~Ee^Sev`N^(IQx@c^Z-V6*>ufi*rPz(qK0EGhc;9L>Q2 z0c81Budm>|!5HNCcisHemXrZ0j$e5YRxR*k;tG9y$|Uav=Q+#ggzg<)=X`@3Uv84W zc7wa3k@F}^Dwu&kyfMnlZpUsHTe9&?$_-(k>~v$` z90fGEF&ZA>QA_EOi85pmvFSRSL8SvGF0x^eXzXcq6~@KwW)~D8^@2(zu*gQ}q!DRs z_9!#5(?&fPf=6a9U-Lw67(7s~mX%*NI5}T>8U~gpr-==@Gd*{=AC*xwEC^mBRDg7h zvscze%f@r)&}HLUIIUEk7cZTSpM<0K{_X{5$-o1D4aG#35!s~<~i;e@IBT;XIiOIwY z=2g_|6&Jv}c=zfR&-L222px;`v5SVn~MLeB#+w>;4Mz zBv-F*1IT>Udc{{)ZgaDN8_w3h?a}rEeP6roU_$wAV$$N5TQ^=E-nn_@@PH5JUSaNe z<*9||hD2Vw?OPN4CZ4ZH#$~)pzvb}ZSVvpWKicQ!szFyvi8S4?W704we7)7yh$F&X;BJYzS&4daLc%aY_dSFjQy)&YHah%MsMm!I1Gtx z=i~Nc4Q-5}ncCblUMy`-ahe|bGonw4F3rh(%K2&KopM*vMKCcV+q5*3pZS|`!)5%% zZpSyF8y)4^YaKbK^=q9lY95V~!#S=aoWb+z$h7Z!z3)vQE~+{A_4~8o56+tBk1;ay zSsDGA=RXT=E9+uwKU3woq30zxr^Xx3rJp|IT|1svNlSlGh>Edsjnx^YEXWE??f`@M zDaG34d}z)E_6>by{`9Bk{4;b6leZ=98jQ!eS;m@MXEfazj-EA5%U^tJK{=!lXnsQZ zCbz{K#RmISsR-7BsliXh{TgB=zAjvhZ+T8}mzB}xX|Sz*@bSkuZ)%FT+TE}VcAx&nu%b8oOXJVjdcwcm2Ws5Ep~ z$GHZJtbkXZ(PZ&OGj!QJgk)Kw@{k7w@KUFkF;D=-W~|@Eq6{I6kWpX8 zjA!^UpRJK@(PTnC`PF_YRqcSLbA9#GvS`<`InF09A4xwSWuwdWWn^il*H7}OAHI}_ z19^_YnO0t|(<9R!pmSA{Qc_lJ2*c7{p0?-8kw4ed8l(83}|8nlvWukvz-{JmA;dWT>+M}cv#X`JfjQtn%JAX(jIAm zS6D;Hx>4ZLV1Mkf9E2Q95D*z;67_UIf`ckC63G!HITBdEg=_PqQ#Aq%UZ;waAA7W5 zVaN|Jv1k>EtyYxlc!KeQje`A2q}PQaB`8*1?Y{gWD@g zMQL`+j$(>yvx>$xhK!yW`cD0)}7uVLgT;AqTPG<-#vWo zJJ(qZjH9T+OT zagQ@xjKovE(Nd@-Ff~7U#$G&Z_Lw&%&SO)1+-W+DZ+JLs->{v+$Es8NCpSD3w^ZfH z;0$7u*OYKmo8+bo1Lq02|KZ;Ib@Y5vJhEF;)hCbe%G<2^Bw59m^OI?ZZY7omrM6V93@-86GOJucXLaewSv#q)N*%G_}3B>XxM&a|5khb6!wd zXH)W0m~#PKkxbaZX7pn081=Pdm90!MD`i+jC$@%$!xAxBC4^^{uX#l|2DxNXUzsl* z7vj*m0elnN{4q^s9ODO!C^{Sq9qV$J@BpF9ChkliImhLjs>VonBS&ezDMDTSjx83g z;U^1HHLbRwM0Ia5UV4}IOepLE`8jC@*b4*GY}&B7;y9eTT5(=AitTPDSq9rgFU;em z*r&O=XK#z&PX6F79RA+!p$Oq0q&l&?VLBG&d|h=a&v^9yS9SqAG( zyIKsNM(}$i+96yu$~BJB;EjPLnD*BXrmFw*voF-F%NOn=uUvnIl^}2T{bNl%642zTp^K_?y8C`M%0e< zAz|`HUhS~#U9r&~< zlh93OaO7j+I=n(&G@7SBJ$m#c3wyV3-^jS}^{;)Er(wAfkM?ne*C3~_F==uP8R4yF z>#eYtFRrb6fPyDEyunXLzGMS91=3fR%|F}k3Qfl_80(*y@7*Smt&f4{iDApp!s$WN zebQXMww)_}r&>OKxxv5~hx(m!Zz^zeTD})AuE)lqQJ$Y0dBG#G&z~Zj#TqZ79G~y8 z;p#H@Rh|s~IB##_nghQ(Ht70ioNV+>#&~!vC;#boCM;cEzZ_ia!Y6l|!j`0)6KVSmdBb zEkkLSgr7mAWv>sPOfmeYl;+xI+yJ*OSkSg_Q@isNu$=mRj*aUB;re7B%oQ?6Yoi|T zv2|V^asF*G_Sh4-kkpQ$ogB8LZ&cEr=WKefr?|>cusGY*g2bXpORHA%qg~hrZEnk# z>awy7_1So@?^5195d!wvQ`=6Fkr#qJ)zto2V!c+gRF&PMeRi*FI4+K*te#EI#gu#K zr=i{RjjmJJR@-lG_o)PPEyV^`)>gVxpPbcmHor;vbSdSupKU&E53GHr2Q%r$g*%Q7 zd^TpSXa8SVu>_C4uJ)OCvw4zLARXd4Z+XZfrsvWH?p$J8D6!`c`m#Ugrs*o(prmLVR{ibVRij zo@>0ZrpJzo=2|+=Rq#%jF>~_PiFM}YeSI-KRmlxoJgFo1k!FKzsZHy^7G#HL@_aq) zNQU`Gj`vnyBzKR0Qzd&I)5pz}odDb9ci(?MzX7Y?&0xbVo**`S@rz$f`+k?rV&_1& zfgAfu%G}IA!*<=kCy8%xlj1e5H}BlJb+~`$?%^F4zwh!2&%BD7n)J`>UHhC*BU?f8 z(i}Rqv*B}tY3>zt4V$@?-uF#6FV+TdHV3^4H0yqhckTpeIDIuZy7z&No)tR)}<5UMr#vUx`tPh$FJi%*W<_aOU=rS$Y;9P6SB{U$fpPa+G zIcASGNRK&kn1d$K0u)*}Y3(ZoL`_MNYZCIN`=m1o!gK2$XmsEc^~j#Xnz(FDd zO_Iv%=B_wmGKB$%$>K~v(es2f<2&a6T%#nnWJ&5~USx(1Z>(6Da=hWR^{!Ha1ycS> zC!RE!&<@2y8p&bvj3+qMKO%yuT^#-XH5CWEvGfgXZ;m;lryMPVzT~!FQN5u?=`P}ATQAVrJWq)NWAh@zElh> zqFd5n6f*Ww6}Gy!m}9t~(Xv@qJ8lU5k8ie0h;t960I)Yez(+Z&Il@O&Gd8;$(7d|!nOob$kS z&N-=L2Mx-3m2=Yg&?klyMwRvjDWJYD!I;!~DXjhqCdtWz4f~caT3%E9HWYc=S`B#o z{r7pJSYF393ULQGeX3H&2va(c->rAwYg#Cv>v!)(^c8Nlvd*sZR^Y{$r;eZUS%|Dv z%8r|Vqzz#0xGZQyPh?WGlzwjc-1Cm?xXx&MrSCqMSZaVR#+CLx<)6aYO50T}xh+9&-_| z9wBcOFsU0m!=v0@G(F=fV83JH9fm&5)7KsL&NVxlueW*j#CPZWSQ4+gqhEb=?ZM&h z?Yp_)a`3ppt8ISy^Z(A_tKa%+`_%XV`p95l@s-gXnrm?_w*;Hdn%m0sx-y>i^W}J`ZAo*-J_qX(Q2 zP1w^)I5;PRoXc`za}3nq){YlP(FMem^_^``;BH8Gcd>6y@PsIzGUPNKJJhND2H28H zxe6g)V6WZkn}U|Li$_kS_#1iJpS<=gxGAr3-Tb}HxOSHbsp;aOPnsOe!h%7$HXHKv z94>I7%SD*nneXIHw`7w8?Y3R=k!1|h3+~!gueLu|ue|Z73e{@AX@N=C5d94lFq9!N zhCj66goC$ixmY#U>kwlhs^D3GJH92%s>fNajD!8&#*Lgm)U5(dl#1jiI_cBnqA9Z||-V=$31 zyz`{x$nfdbsEd3}s1d1_)WI?f@KI}Q>+C8Uiz1MnzF=W1f{1pWbTyb%TR=|ymu<1v zx{(;2@f~QNZjK-5zbPLpGoX>l7y;_RhYzyx`|KI7uH_rRPnhWVbdhg9>D|6sV9=M0 z3QTgiAwsJ%Z=`Q`!$54-tG{Z0_io2GfHi48Fp-kv@4>0HKB#;130+{#7WTP$R| ziE8k*YU$@`8m29$Wow%ufi+l_*z&R%F0XX{^pN%ircC*?AGkMlI9f?=TZ@0f0t}!s zy%8m1BmzgsxYq=BBG0}g62Gcb`7-q!#g&2^!Puqu<^~u2aE1E1fA#j^?JIWg0`YkSF< zO+M#O5d@3u!iE%{&(uXS^+`k?PsbVL_*cF*+HwO9If%%UrW!pb>XYqfYW|=j9f2Hw zQbDOd$xwNpEVW)%Gv&2Ukh)4IyTO>*jo`XvqqBbX%@$_N7|7sOH3eL6mbacn<8q@> zt8TQ6gi4&;-s`0-CJT*A`PeeFBT=-lt?q_G8I@z(+H#d-lPF(tX`Yd@9nQ+Ntd%J5 zq@>?lQ~u$VLw}r7H#hoEIX0+Nd%n^YvWKf9O@6<0NMadg?(|eaTy@yC6hp^#PO2aATK!5c3ljMC8{s2=ztiRK0KFV8t zApEK4O7eTc24mapcfa$Uje!CI#+KGI1XH=eNHO$z5snMb9c zuXYtS+MVN~v_jfqPBzu6ah_i@9@v)rKjHx^!?7i?bcB`mx}|b~g-`oU0|)1@ zWZFOVBnD(wlNI9u((o0}QG?_o4%d>C{tF66MOL4Vgsw{2a8Y1+6cJwZMvqDpYIA%O z+xE~}Amn%*7BQI?@z>%nps*13E}3qO=6KdI~J+1nib}>Mcb#>Xo|Lv z`MOwPxlt6ofq}G4-JGipy(W~0yyI-Z&}nPbx1Ea>DPHCNnW;aU784qxh$FTyC}uSy zssf&nM?%~rtajC2uU@>|)b`XSGUj2fT${tM+&ox7TAf$9Zp)1#WNo9>XImw>iA&1O z+&0wJ-)+mbA7gMCFKEd5ma06y`kr-=yha$hj338Fh1@i*R<&xX42{}EG;PgN6etlv zydlOlImc}b0&OGJJ_%!|wvt9~=qOH1ST;3ULW9_J;G!{i@q+{QQh6hvlyplJZ*qRlZNViiM)oL(C{o+9o`an?@B0$f&MRaY#$iQ2#?m?2U25Yr7T? zBxGLPu5vowS&!!9FL{zTc3wg~^4S9G^cpuIy~VjE8^hLp9TzuvFn{Zvca|M7=5UR3 zSd=ObISp!}yqx1gtQ-t$eMeGcdhSUfqDxN8KfltYjG`t4jdVLtLhYE`*b=#-=qr!D z|GmE+?!``-mkztGJRssvolXK^4<_~v&_oznc|L%V|VKPl9G7gMGXpCsTlcn5*{ zQ%Ssb2WNDW`hr(Nm+^DFHu-C>K3)UZPsbatG4YL2a#r7o_&3VrB#B%nB-W=B81+1V#)8{57V3PO z&4pBg7Z$$8$<3Xs%od*00rRRQ=$*Vhc=$1sQC^1XAPAjzA%6C~&mO+{{0d z+ffKvRP*E&#{@K@w(R5I^+VJE5skc^o?jzRw4? zScRJ$yz&Ygjbg_uO);$YWGHb$@$zjJh^P{=8x9ym#gzNUJ=V*wlUR>z^|WamF74yg zwfdSD^=u*n@zP#+ed6(aT50x&$bewd!(%?M^y9_9`j*i}VZi%Zkj@E*Jj(N;fQToa zc&f>}+?MyH^J$*jOz?b_@>5QHj{iN|9GlN>vsb=Xryi_Ot|aMt@A12(IH@#D?ERQIHGYdXX@*QcBd3FwD}AUm%%q%HNGhZ`!Et z)=6LEs}F(N2kb>`{0YzYspsyct51;9=G@E$+CQaL;^-}|vg}jN6%A=-CdkU6TxXWY zg^NI_D|n(6J=gBuSTs&Fg_c+D*t{e~D7c9&$JBecV033{GMbiS3;KEj_?0cQ14H?om*R5dyr zyW}5D8%rtL*N$u(dU4dv=ea9WTgLj*Ox~W)zBB=1dmkSnB`) zAOJ~3K~y7f3lYU7rdax2dszNM8~%PN0z8^t~~G=-hl zH?+sH4q(Nbwo{#ZvMKdhOD>bS=bf~AMow$ST&+JXLoFKEMx~@eGq#T4#8|Q#a_K9B z(GxhM9-Ywnus4%GV{O6nNF>2#f3;khD@GP{b{>At{iZL@qWe`gwDLqzcS*wA^PnuO zU2qeXu{W1{#WJCm_c*XrGa&tV26NPVr2QEryb{z7edrpAf4xTZIT~QNWw4S}x0G>NE~8@TNAr+Dj{DOKo)HsXcC=F6Bks0~-lLX?aJ&#Dg<`mVR&- z$DfY+Vi`X^bZrCpRqRggav!QHGGTTbv9$J zL7(ea`xHvEE=Nr~Wuw4P!Q~!99t63@296JX*!TQIiPxOI2{2FnlfH&LVZC;AbTEx+ zv5y+$-)rNRkvRZQQMoDc;)zch(_gv4(*EreX42Syy@}8bqqYs&rwu`$NCQ*{a?B8u zbn>)*hn(Q6zce{QOdL7%7Ywxb6xR07P!)7;STRFT?~F~cD^Ta2#VbN?bD_fz+S6-w z(&n{DU##o)m`B~l*2Kk2BF&UfydH>j6<|#MbT0nNMx!vVEi(7SnAwDITm>gsm?82# z@awvP3aCrgL*BZ^_+s7abJs@_a|0`Pr)I++zhheP*}O}p<*aP&)brJ)uS{kQNIUpt zGhh2M=EJ4klJ`JtIm}w7AX+Zd!lYZc$e4U!i%$VVpTa9&J@SfDfff^@Lo=4#y}Zbg zwVS_rni6@vVL>}7kNJ^J-a5!etMHZ2d28isyS(znm}8kVDu1ydJstxsvzxcAyJa3t zss*UW7bk7PVkAgNh`$%i@;d`h{Q&c3S%oWV>I`&Xwp}Yb=Ne+yo37dpY#(msG7dDJ zJTdL3?TEIM_QZH$o1qQ#^5=ho?Nd7@zXKnEXK*QQIxmvaz89sk zlc$7sH`A1@Yh}=^vf0mC=0zWSNYgjE)~3Aj8tKKZPiTngnk;U7YF!2z*c3u^F^+Gs zd!ft(v+5&hDzs}20BHnD^pLl1$$YHvK^RlkX_EmXDY93)m(PFW4qjwz3953QJNBXG&N?m@4 z6QAKhJBm%!jY1d6-7Njs7bZ*ia~!5Dmzk*f4_N5B!@J?{Fc7+-@F5Fx51l5ZY!0LQ zLhgP3NzyOVdJ4DkrGE}MVozmjgLUwxLHaam1ZQ9*?_#7+xm>@-f-i%l;&MWxhjxC$ z1{RaPk017~#p~Ghh`$F9KRUc~?>*|@g*|U1ym|Q2FaFZucfa;!I*Ah-m+kOV~m8$*3;G_C~d@h7)eLKC5f@1=+oRK zEGOWxe1NrQSt|Kw8rWgsZ2S(IPUm!e(WNk|HU`{agJ>@n*?j3VJR79 z00&ciOKLfL@z+T`Qz1?gv;C{T#y8U22bwodii7;7nK~sdop2Wj+BWomeZSR(JX#q! z#M9#So06m-yfpK3(Z+G^o|C4-4K{(9xJFMmRJ{Q8?+#; z$!-{gM}cu%?X(RgWgMR-k?#h(;p;Dc*Y{o^8w1PTab8rBhvQgY#b=zgq3XBwi$C;l z^6(IAhhy>3kT|A89~xncewP<-;UWh-Gc(zbI#*`lLHG|rS`Tsggu$nOR=pj^NedDc zVGN(XgkkZTsZ3!j6TGaUD-d4u$?Oj206W}8N$9QIGoh`fvaswNR>0VEOfRa7sf#>| zn*yA(0K$_oLq>_t2(X=H@ETvKX3>5lt9|;WO>C7evX3f&N+T|| zxp<`T-my`*=h^(RAaj@3+-R5WNV;fWyjdO^Xty6d!`Bk&4d&#dN%B;IvfKhPnDW(0 zDZeFR;%q(}h_Jn4-q__#WrsnIB%EP}f7wtyW0$x4(M$(>MPkK6SwbM8+ayQjS`(`Y7spQH~6Bt3P9#7s`wY zvG)06E)H1ywrp^#SuaTEB7#3(yXQspM<0C%?X$xl`Nc1?NY@)H`=K_iv(EfJ5f|N& zRC$)5o4F(u&HSvR`&PoGT+)z4|EiB%Fa_$_K>_&P$e2X!bxiQ7X6>G{FrMHQ%}4sR z0jz&~ZJC!sV~1yDuEOH+ygf#oSLRA*133PD?q^5v;gzR{FTDNk;WNw+zxejshu{3- zA7+!6Pt5o_Zk{0fzrOyjvMK-754ckoJwJT(@!>JF4}3EX<8kJd7}46*Z&*S7WnO?r zL&h!Q=}ReP%B)3clHBB3fH==ZeG=RH@|9vE zU;ki)(jeVf5gq6?coeta=nx|8vhX@wd0x*ya!=)0hT$Fx?HdaRR<4dg12f)BTeFir z2#S_i+DcuXPcFT7wa1QCwmUgWH7!-{>KbV(DUGErloVs2>6Gfk*JISygXJ%@9LKT& zoGY8rI-YGis~&L^W+Q9zTRirvtzqKRTs74Cjr)|w+*XdEsuxb>OQoLi#zwoPhGxn( zn9-oF6MK5X1GaJ6AJk*)pXm)-iG@uajh0V}nL+B&)}k1yA{@wA6_tSPiy`{PhgU5XpoC-KS@-%RJ%8&$@!b)K|0 z8hmZ!b8mpMuY%jgE$s4~8T!iT=5Jf21bvj?BepXc~=5U;fi_5I#3(m@r|K2q7IeOBvgVf)i|E)m|j&795K zBR$U8SnkulH}b^oG0oQok7x56=6q`3wuaYuNW`2%@<2J4;_8_ z-|NA9tQFqBdYv^;Hd}#t{`dTl^E`Oz5>|stT>zSM>E6bAL5QLK*d~+fwd8q?^ec2d zdU3cxAGpD{DzEb?jcZq*AFe*+cjXa+nQzg5p0R%Uih1S>e$PpJ{c8WyK8I)D_~%})QKQI#1YF6z>aA|##W8n`2}BxMxp!{X9Qf(;)(iJvZdh%4jWXdzua(` z4N4}wq!-Lhh@{B_$HASe$~e5ls?>WnF$`Vc#MnEV zd6uDN(#S|g6-xB&@|$r?AWj`MBLP1GcIVr>DVM$m?r+K>{FpB;<&-@*%Da;t{p62w zl2)XxRCu%=)eEqG6P9g8M_*g_qIbGvPCbOT=?I>@{3{)~qz$pjgsxgJv${fxjW+m4?!UA8?r>uZeV~Z#K*Y@Ba8@t^IU2TDJz;=)u1#Hu% z9R~s@wyn?~(r(-UzQHP|ud3&51NO~s3b!q#?Ht>D+rIW~<44S|br={p`1WhT_9&05P$fOIwN?=HphBm@MIYUkL0kPTAGE!d zE~Rj&Q?#=;9te1go45`AMA?)n1q(dN)TgauH*rC$EIa&+-Eutri2WsE&5E;Po`-b~ zT5T;i9%!%Qk+fylV)dR4fi0V~$De(h%IUZ&j4L?d@-DxbOF4|CPYi__$64ydP5YnN z2CypLB*al~LiiJ)8F%XE_z{^p#ti}|1a52io!sjT3h(hM=x3bdeOgwUKj<)ivYng+ z?6zU2}zMV z!3pE%Kl2N`2KsBXfv3@tJFt-BAfwJ~>M_cUd&X)9o=IB{si)wjJuP=(((SPsvanG`Nt)BFG9fKJO=PAxZHrl4nYTfLa z)X-Jd(2pFdG{NW;H@UOzvJ(+&)*#jJ+7A6yW-)G=9(4s*xUlC8+{&^4+D4ypg7O|# zHzc#T9{;K3;@TJUrlB^TZv}<43?s{&<;b^q7#I19IGd`DkgI%_1L7P>NNY~Kp;-L3 z!-=u1j0PE7gjtEOw8bzskHP@jtr{-o*nJ+`epICwo>(67@(GjfBri^J;wf)QBVU-#14Ar|Sf{TL zpGePN{28(U77RjUXqo>xB$>>DEx6GqhQ)Uw-9@+!wlh22mdda{2Cxo8FMiU4-{;3S z!HqinXj1p3sy)P)09Rw3tQP3@Sdw~_6h`knH3l{p=cz|&=wB|Jcu{(!r45?Ca*M?e zFT~8}f=pTBgdv*?GBRj|SJ|L7%6<@^*xng4h5J;nbn$?CQw|o6qN{BM0`7wLX%iDI zh7x0!orXSvrK~S_bIgkuy!ttQh?-Jjr{-8+ZvLwGdpz~}=+PrSrSkIdo4@=k zh~TzL##2!Iq_Dhh0HaBmb&0Z|!DWmAI-5zofGIYbW0!n-2z%BeVXK*m9Y_ znQ~gb77iYQ`OqFK2l%q92``1T8DIGNXyeqKux`)BF1}UlrgGafJZuDCd5fol`DXAH z+RariHm_1QHbqu04}aoIzn;10AN?Zdczoo7r3;ty`={UfePAyRU;E(ux-IDsd3rc= z12+ky9#u{s|n%+Vi3Y)7DwM zW;wT6<}Ieps)hG`ZLbPmgWmT;*uEHc-1trEc~K;t=c$h$13GwD9y&*c3$hx;#$s1nYOh_ z-?c=_DAgR5PCAU`jy}g2{v#oS7HvM`j@Z3i^V4d=A|RpCHr&8pAD@+do_Z+sL(>~X z>Vcl;+#uRETpRSF)G6gYw@ZEW`Zq0Yvp{k+X+h!@E;9(nr9vDCa$PX54Ydtu6%Jjv8`^I{BV$F-yC;6f64 zBc~8^pWKF}-OC%^*T>~}9pCG4Bl}Hg&eB>3_n1?9Eqsspt2a=4ZJnoeA-0X%%B`i5 zZ(WZs0wq7VY2VXlglCQbligsXcn#{?w{CFazs82;Rc@BM%5_2(=JP2J=3C6AUNR?n z3GEB#+sr%dm%h4mYdg*W-Tdtaa9SM-!vn3?5?(WFkALT%;){hglZJ^cA>%<>4)e6M zKl^Dmf5rK)7q)O@4QQ401o#&Hpy8;`?4D+iSYt_yoAlz>o}8LiKGBXhA}3FL%#)b) zfdCgx>PsT?(l2<@faN*rAgTZJPn7;7kM0N^iAAp2!s9D5_|h?Q+q5Xm^5h3TPp?T! zok|yal?x+8w0caWj+4-+U|W_|hDA59+8hb+Hg2@e2@9p9Hw~IqHf@#5vKZxXOk2L- ziJM;e0*`djyZDV(D-3v%Cdx)>3C{2$U+U;TMq47tn&NSh$uR%b6&c6F2AkB9Gm_4M z2e9HJ`6c;r{YJN?TA)qS4pV7VV(R#*vCV?UAdGlRH!nlhl~V9Ull2E^*&v>$fUk11 z#?@QAcAlS_ulo9W)+FF4e*}%yW-2$f(Qe1a-h901Xs-zlhMLHqax@o~8Nc-p>%;<-K5He63sJaq>KLo?t@R15 zmJ52Q-r~IC_~bJKZ+XK8-aaLT&Re9E+LILm(#OtHcz;MT>bd*Vta`EI_@ zpy(w|UT(9nagRm$r@IBP;r|1Vcda7j_pmSE1qM1fdO%rx4e|{ZA8+QVL^}|jV)51+ zr_6e)@J~>1%62Yi101i5{PCn!ymmR^^Xaut12NCZzZr)>v-ZyLtO< zg?6xMhsIku3(Y{Z3OsaM%Pqf>g;}QlnJ?2GB2>7TO;&&_e-$un6z5BS^ zZFf7450WiJ5~&?UfMOehFbW71P!c3WuDCG>MQ{OE5QI>;AU6Rn5V;9K3Ks}Rgjj)K zS+NoY6a*o`ZP{RKce~rYd!G+$%{32e@jmZcUsa9q|NoqG?L&7f>YDQ(_0@N-uWF1@ zHEJAk*V3@QZl~F{71_san}jkvqFj=;rGiec{^^wDgV+f{@v88~T3OR5Ujm6&03~cNspc&VFY2Vv#QO7k z(?D?+KiriJjZO0j2PO|hw~oeFgF|pW?%>P(lOv-n&s&+}AbL&1S^Ure&vD?u=b~~3 zF7Ux){>TLe71^=@-aiz$F&aPRMuXQ8#g~qkZxbEfxy%KCVl4o6!_gwx-h03d*y)XL zlxs~*`cPd2tkb0 z2YfEoyWPBC%Rtt5+-B0`$&v4%)db|W_DacIoSZFZ@4oLobyKfpy23HorFtIhdfyd}!L{}|Y0v>iLtOT6 zEyh|{DCNw{y)KrY{6~IhdGW9PmF3;{-qo8>bU~F@ zq$!3h{OO9Bm|7fZM~;M!DZ;jHQx~TvT6p9&clZHGHZUVz-*BUGRc;*NIvC@vi{+cI zeiQQYBcK0*UU~FD$MKxMEa&3~^~;kSQAS+Q&GB_lB3_(1v5h=jc2ScyZq)I?1bJks z3%oA0{TQt(tKPYjyvVaPdz2(%H3l4m>TjFBRU0qsD-*l?t9z6={_Z3DC`##xX3HwGalrG4^aw z1~gm1tF^8Yg=@&rPuS0gKkSM0s`4>fhHlFAPB3cawX!aSd}%0P_!Mn;QI-d-jF`GCRB6NC+28^7T5?Af07o6KIkB;h%)Q_<+wX8jr zX!Dn2G{pOL#P#pBC3LYvfH%{*~< zflxjWAJ?4yMc0-%W@*_@XZ%E7S7h|L9i1yoQA}JBBIq-(auSuPc8}c9Ed3&fBRMjZ z`C+f3PYVUETs&gJWbp^eaoNo+8UB$Yg%3@@@hKG8fS|0?8j}+G)_7z_9ZSP5CX`*- z;LDdGU(h;7e)g7#(`I}EiR*yJg54Gh5aoOxNqF&rC&r91(8HGVvvZdV$G9-Jxsx*< z;#w+WfyhM9nCDYQSDUY^#9J5dXnd*%fQ8pcQTqj#?>rvhrcSO`YCOY3A0D$xmU4!s zSV>LmLN|40f5rnAfjv&bW)xB>OITN{ixGlJX!F*=lOA$5%#EDW<0?TMsh4Df)XSZv zYq$R$Jp)a)3nQ{s)XLQJdZ~HbvMy7$8lqy-=>T0uz>b=MBd&dCn-o|?ZhFW;{P<5$ z4O>RYpb}&DOF_X|mxaPV`P}_&e#PwMQ~4p8EsIH$u3}x~GK*kjR~iP}jD~+oDdPK# zY*=TFP_Xib5g_Oi-7OeRG0~cm3&BjF7$z=(Q)v=jv#kl+($FxV#$!ao&T(Ebt_s7S zHQEaIpf=957|b!7Tq$(rvoL4g9Xx%8#b8~J;HmxN2YOBY{d>Azq4~RxKe=uu!E($B zv{Ad&9H<{N+_`i1=$)FFfY;Ccm@+>dcIpb@l5 z1*_n?!XX%0UEjdJr`+sQ4(b>S%qNVZfD8|V_t=TD>5WD1IDYuZPk(i8a4fOqSg5YY zs@H8DzqxMZxQOOzvRNnFXtq0yf7sS}&Mr8YKb~WQ1|Q#<7o(LDDXnj3Q(f8jYsQJE zoZt-x#q0Q3k82aW%A8mERF>_KV_(-0c;kZ?f$>8>7JBWVD<@cG{NnsIdrzyC2`($9TjV|S*EjJ6DU6`pT+j!X1eXNnHW!fQAvw~a$e!_0O^4i zf#1+lJ9mWq|P?Vo@{1{wuq3BS8!go3z=m`}DX$6SQ*f{9vOK)|z~3A>J!JyO(3zeQ@1C;b>cHoVf6Xow?8lF}4#A7$1SJP2 zia8{h;7xXL?V43`Zkf)s*4NS324>&(3x#7pUt!COoKC9N$!TX|MVg_xTy!^(IoF%A zlZX#mjMk-wfWsG4#w(!6k#_2ypA7*#U57qJ`f9|`EkcF(uo9H4r!5B zLA(`9^s?X9qA$lkU{5NYi&r?;7g58iZ{b=wJm{51{eN0dJ$*|HAFrP21`%v~a3cli zfWf~^{%Ri%9xvl-d`!&!DrX&2e&Dvg`(W8oAGAfvq7#)e)JloKz*IST*C+;f%+~-_ zb0AHqvI_kBS8(eaC8V4ILwrVNuy@81@{lx=D%M_1t25OBjgEsUJ ze5W-Y5eL86D7y~5A{5~fO-{$}RuHOqO;5r6fR?P>MHhr_d6=L~sb~{wAGnWA&Vi1P z0yaD;4rJU=&jQtb66_PV+KA2wiOyHbns{Q$`AP_4u5+T#gG>aNENEctyGAvs;MH3f zI^Xe%GbR|GHLcB z5@gU^Fm_2AARC8HS?#M zxnSI+*m6NS7pSxUyYAwKj|W1{uev!p-iL24j~>70_WRjC{x2*){7?KLU%b1a#YEqz z!P63Wz~Vc?sY!fRX_Xw~Rv#1K&sp1joi=6MS}~y7uAKlX$wqPLlSG@=c#i&z9Na9_ zwnbRRdaAI#=cXr?{c1lZN1`hZeob9_0+xQ}2_zv?duIYAThhr`^IQv|=TG$Ap3^7G ziEb!7(LQur3#O0Xduut<_kfRtyQ2vj<4rzOat^FKeh_nw_^6coFSmmwxeF>Lv=(E{ zOz@WFhd=)Vsv{MKrt!S`3g5`PtN!wWzNL3x-_Eo6D=e^(*DcMlGN`F zwfF0K<@c+4Qu&Q{-d!H+TScde8H*l%noatcsJg7&zT&PDO?Op-)qS-wcDM=SZzaM2 zIx+(vY+0M}t*exRJ$dQdC6zuX#C}dgYKNU0kCyP4 z4)S3a88jHvj5>2nvj4VIgB8RBMMg*>vW`k377J$g2Hj2dKz=}IYwwU6_|{hOH=cxs zWUIIF(Ny)LG~fY^8m8`vcx2fQ-NjioAD(ah8c|$RhSm=c4eMK7If@gBZ95faSJu77 zigsyR{gf+yBNl<`3<3w%DrTJ7z!ZOUR%zx7Wp`V=Yf9A!>@LTwH`Fx`rNS7NfKNxt zJme$~F70>>uXL1#&=alf3x~o`PtM=y^YKo{Rgan5u`f4DX)L32M%nfSJG6<1 zo6tFb$ws^hXsRhLM=JJEnI6e;HBio%!B^j8Ox$g@%EKM` zXdIfVj4Nr8coWw`ZIqB{Vx=f9889Zh^X-v^p`}@-aLKE7ktdpWHFn_hL0sEoo?B@^ znUg}}FLUAYj(1pS-Y*(0YTD#q&6AOHyNZ_f<)*VNDBqENY;(SPtm~<~O_8M0hxBQY zLNe&rsNb*`ja6nbnt6Zr5b2e}_{`f!(B(Id2*J(pEH;SM`>k(kG$+jZDZx+B-3z=c ziQmdnPoHBO!mWZnWJ-Z@$~k8Or|r@q+NdmzT9lQv3td-}4bmo>o5pOY!p+nY+LIq( z+ts&6_8O??*E1ZVSEj^vt7*cC6lw>;-$X|5E;WtN{hw@h(!jyCE(K%OT|(FT@c^>g zeH<2yYJF*78)T6^LXd@~3-3@nq61y6F>F?KpZFR$VY=)G2DZu$)pf_fRxk`(ELAC7 z<-K}^*yt{Fx5BfycE+1xGoRrBvm?D4dUZ`}5~%YG$06p7eL;}H1Qztqk%Z&i zNGa4J_q7UjO8EP}+uK{1R2#$M(I5UcKkGV=56ftPS;ys! zCz_yee)|A4YQcXSYq@|gQsBjD{J@dseAVCaQ9Nof-}ZGa%P~a2GHkHXa@(P-Q3Tfy zY@Z^d3MIyC#)pn!jjy&?S&=(Bj!k(Igwx z<&tzcwHn41xgs%*BhNKOzK@SiH^EK0Co`j(%_D6Y#if4nq2=&_#Q!e12= z>h0T%-=-;wF7dSmiYaVcBuO~mD@mV@K6RC+Jxp^jCf%Qy#(ry_g+vY4b* zzTje>E`~kRERG%Rf_oD6x;~!V<&F~$s^?so)sHvCR|;dBxZI?-JHGn$B8 z=?wpnD(R75)ei>e4E5HYkt;YHw2y-JyQaVaqIO3pErwg*@G@z;|y@iN`2 zi5z`TJ-bcd(i8DxPE5WkVY#=R3`LslXr453MGXnXFQ0=@vsxV1aF?<+h7&D&t=!wD1gnL($W~I&S=^ zE`)zY7x3TG-BE4YhjeR&x)nsIO~N-O;ji!=ab1Kjo!O_0dF;*jk~E-{s}~i1v_JI1 zhPQ2XyrO<2F7j6buy za}yiCN4`R!AG|i8(AC&1Y!Xrzlv=lsxOhMU70l$?7^t&<${(v5Rd)43KffqjiB-0j`y}-=kCw}T@CCxuKu6%c*vKZh;q6}XpU7&>D z)QV%Zqb^iQAavwQXOnd_n@mup8{U$&xZ?~@wM%P+_+w$oxM9rI%<8CudHZ3e@CfJF z*iY!GPfcQmo+jfAA$WB>)3NKH{OO-se*WkG$K_kEealbge)hAkD3sEpyKOu<5ieT% zo>g&VJfq2k<0+i`mlZpLgtCQO3shdzr61`A9vwtao;=oM<9zw4Kk_rnox6IK6(Z=Z z_M^IL=k9;Cnb-oBjmqs{^q7aEu=K$^$=W?pIu3CrO!yC86CG$ZDf3*aCQeL(fVqp7 zpKki`M2ZlwK&+qc60{z_qKf{i{^j#A7dM;SEsYJ2w4i%S7Y2^C5PVCEq4)Id<@1vV z%jt^`ms348d#a~oy-=)u;X-yU#LpO&1zIkg@||Vw1inz8C2UOGn8@Kj=dnBD<7r$@ zMqb=zky@2;D8$2(p@zN7BQ4ajn9Oc)OO3-gU+TO+{!4%054RA40c4U2M2yJLL(-PA zG9NYtK3iTg-3D>cI8e{DDEwsk<~wgKufF@%@;k4;s_#ypEw8EkNcDc_{rA0S{FnuH z`W8*YpY6s>`k7VQY@pCm!3H-%_UQP4fKMHrwyP(YRwosZZ_*~saC0jnmu_2tI!{T? z+8`D__0E<))!mEkLR&GAu|hCj1bb(L!}%6q}`Ul&+Rt zYuc7d6FG@}jdLN#Q4VX?&vDQIH`UV%E2YlvtzzJu%K0EN+SV9W>~&1@r>MB*P~#Hz zJ(Mf28)Ud%;R}1Nb=lgJW2hY8L;kR+=T-ecH_=o3`eRPT-%TCQ3~^ma5R1Qo5;L7e zH69$21Uu&gq*{_Qj&s8V7S0TbUFWU1G{jClh`H2u9rh|mVBehDO|B(VDyha~*=|{- zExnbSs&LNyLyw)Bihyg*77rn($P5YDz#1~Q)xYj)X_aewj29B!utI14%)>4G-O`xM zEmy{xue1?;I_;=ouEk@SZJ#p>Ukkd(@YWIRvH;Bu0gPw(#N7LuJ3mp5887^bhn(xG z$+KX5TmH}==7dY--Wm`VqJB~ppk>AHH>^>x5^Z?zXHN)1AQiqbySQ%8;SmhXPmhE_*dFsk)kZ%WZM%t;-7hnHsd@n&|HhT9-mn{=LXof-|Z~> zWMG1|*4t|bNKd?X$$cF_SRP;n=DG!Dh%@6#4Etww(*{k77c|<7&}&0)GyzT^Qko_3 z^K9uP*2}gjsndMvE+d2@DU4N`?SX@uArEk*n(EHFPZr|9M?=XKp25B@pDcH@(5Fi= z9;iIj0`U9#R@W(k`YuU$QoiF-!3_NJ*!*Ef8Iax5#j86!9V`B04bso7fDHrdlC9X% zh6T?tEWVFE-`4Lk3v^%(20UrNx69Jw)c1A3=69sgAd9^M#lyGQR2yD3!vU5He!}s@ z3;1{S8tB^`JT*Y2FEA;)qo*qPKJfecPH;j)4;Iv7#$A*4L0I=~#giw4DG|3YMpA`{ z0kl;9Cc@f^74DS7R6N0^wWB+{rK|F?7S6&ZFWMS=xK!5QD0t2@)qoZ+%Xj?e;5OG| z>+Pu5T(e=RyefO!a`3^b`C1xU3+g0s6b@$KE$whQyd_hTmDhxe6HUQbpieOQA`QGK z;)`r}%q1KXA*Rb*5UkjRGu(Mv*Xq2<6dbTxcCNwTo1wu0G+GcZ!IY+wDgMd}e<(*j zn&UHknLIKPw^35>KO5LUCif(AdZdUpq+gA+-m9Nl=1zQV?BYVr+rCVv(=u^fUD&x z@20KvTpsX%q_b7nI5yiKMvOCuVCDK*%rNvESs06@9RcL6@%W5Pvn8CxR4!mHd(dSb zWZ;$V#;~SET%E+aVHy0gsj?S?E!*l4=UM>)(#Ug$*FoQD;KS2}n+){u%v(h5Cx9Ei z^q9iN$^KSh${nj-F4@#4Xe$+1Jx*Y;HKpCY@ExW-P~btJAn~$)S=RDq4!=};@sQZ+ z=Lv!rTvgVN;RRxpalX{z)Kg6yNLerzT?6?{G=Q0KBnNMOE(?cl>(x=Nwc|4_a`X~S7pIH8f zzxoTV7q5c;^rt>6n6r@L$~*S>*RLYP&UK-SWIUbPde)Aq9wRs;>~W&v#Kqp%-*|m_ zM+<)U9~>|D9^AKb!s5EykZQrJ9(rX=>^5-U{A{MWG$+k>Lt}Edd{;0!D>Z(OTES|| zqg$8*q4A&l5|ble2;|5hf_>rmz(kwLmSl_u)(^dk8Bb}_pIMyc33&U2Ua#Cq{ss%d zT+q~_tN4$!U)<5nKRiwR^q#(-eD6H@Cw14?q*gXBqzQJoISZG$_uI(Fq z2VS=86-_*iECrd+Q3u9U+|;O7X7Q~fFsX}dtFAo#OMP7#azNKr?a!4_!6SScZL~sU z#9JphWJE)pGDMk1WZO0t+bcMnY~#y5-D@0@hxA7e98CRn`N7wxS?XmB!EzLB!Jf#tB7g7-YHd|# zHEaNvwe)O9sbjImkD~{?=!t|frBMQ!Q`LUvK2)n&4tT3;ORsYAr5_Y_UmkC2JAA_y z^`0?!oHF}I(o7$4@oggrn|RDavAFZRl#rs`m}))CpVQXY>Z!9g{h5WDlSp)8a~lw+s%A%y7>vBNn; z_0=)A&V9B2!9|3?`^GA%;XL7Q-lLUcS=(2+_P|Z&9%nU+B1)R18_+eszzrgsebWSQ z%HxhH*E`~BplW$F=kswem*wIjE_r_C7$_#nq4~#gU9c}@y3WFjPTcr|r{~~&K1i)A z=KH*Ie5DB4o+hy40B~@k#pB>CkKbm3d7ZZSmA%Hg<(bO`Be#|<%G%y@ms-8Z^Z^ww zzLN9vwLQjs^ik1!ti^0tIX>YDAri>Haq!#YiP!BZEPDC*M(YOa3z=H{)x2K6WBs@$ z!KaRx-#^i{MxLA_Syno{_zSQ6<5kl++L*<5(`an*s8T%jn4qJY(^jvIi7nFYBaK$W9@=9}TJX#gg(*%}nisKOu6a{xUI z1lq?|nzy_zOCU1ywsG!Jw(4Vh>1E|oVlnOJmpU8vYp|^J?(yUx9o<*)BfRZi#!i!L&UJHe(VeS&S@Ht081R{!?sbvHZ`#UD@;cTsXXF}< zb`EYB_B9&i=bC@=Ep;ynbFIb48by}ia@`1{x~A#HUgnov|6%^Gpt5+_@#3u;Mw6>7 zT^ZjDeW>d;q*nz{X`~pF&D7kxyy!=do-D`pI_-9y$qvH6kLx^5M`VPyO1AhQJB=3% zFvW0@lX4a@9=cJgpMaeGY*A&+yxL+sTv+DPQ?9GUkKj91*9CN@l%86QPW_t=TT-jF zD%5MT88bDMZMrW~5BSCG7~`DVNV?96qI^Ju|%cx)9J7P^#pJBHgxbfL{>g8d4_ zmQyCzWbqSU_^O*&kRZj?bt#mhTK7OTh)QySJUJSPrd^Io^BHVqQ=1{|Pi!mgVVSp5 zz2dljVRYokpofX~69w;xi$01<-Pz`EozXDgCCQCT!)^Rw@RlyHA+#c~J)wRYd~pGS z#gn``n#nQ;7$!2bT(v%evLi#O{hz-#ArDTvI!wE6&B~Xj`({F#updpTArdZ5yP}n}p-~!Zk@FbSu3GWsIZ}HDG+K*H^fzz7d z!nS>YU?{xc!Uq(}kZZh?Z0QfLZYIzluThFN_;U;ex;#bGVV<%yIDFS_6Dw-={P1k+ zS8WGx^}V5OKuu+fkM;rui^<=8)$0W<{C?u-wx6;E=8j?RUS?64ILpOZ(++d59v4K~E0E+pgcOL}taC+?-oXeq6aUbKv=L4Y*MDa*%RD8~{trly# z$}Zgg*}imHPyB+X_^^+>^GOFd?1VS?HE<#Mc0QaK_9d?7$J5H1r&9jjI7Q5D`I z&b6tsk)aus4|U4No#LB-!Cd6hIhaMEHLFEukvhsWT=OF(@yqA2&*6(ovl zE0&xW^}C@bc|CE^qL%v)gLoErkw>_ERq&X+urBA*v}p8A-<1U;!KE(fWwffNCDCDB zOkU6@p6Vy)?RB;x={1sEy7Z4eo5xN|$bhvh#6c>S_%RdIm)wV})0@U??Oo2QW_>ff z;=+R%H;X`qES{H{?sS^c9T;*5&GKeuP-mZ{7LCyuZ}Sd^HAJ> zM8<8x{;aW$Uqy)zB;uxcI)26>jHVo8UVr0T%Wr=5*Oy=XU;dh#!6Iywyze8MqP9R% z(y~IM%M&ROlii{RDK5#?MIg6hXFx-ehk&I7+tP<_p0xC0su*rCnP)%H7?A~B4fb*z zQ-9Oo-{s)d&*^)fXbUfWo>2++>`1h8S#5fF3(XCEWhvA4du+hQ+XBU6x+XiB_Syed&{*U0%NbaQX80|H$&{dv7kU z>6OvH^1ENvE2N+3_0#Y9Tf&b7KReNUL_+j2a;G#RMye%)?_1T~)W+Yqg2M&rJ0OY9 zs}dZgIeC?kME6KD9PBQp{EAjQi~sO5+T${K678MY1!a}AO-;a3V($aPUtr4GXYor6 zg~bMR61@1}y<33q3^%1bN@45yT1iDO|XBvDNmY9y8C-UG$kcbbl03S-4CW{?NW71+E@eaVJOL)?1FFK0H{@&=M%R zvehxl$kLx2)PSl#g_A9`t<9Mq`P~$$eX`*_OetMuqkN9U{F5CbG!TTP$cEF6&bS&e1!115+M~VA5oqgDE(coOf7)!dx>z{Yy z#W9=ITu9-HZ8K%tSFoDgeVmwMcBUj=ycsV~oa)<%y6(cF9)I*hhHyDjsUCt^=)2kG zv>e}=ck)YAs;(;8SQeH!??FLdG*gNl*OW&$u>d zn09hGGU)fhuXL3?7JX|DUoDDFj5^o6nCpwFOOEdLO+?eRt$vD_IYV&CI0=IaS_LbM zM(9vH>~IGNzAP3!xwc)b&WxQBpwT-USOVBngR6eVi+e3l&Za(Hwt&)?coeo&t;(&| zHn8$z;#%3B@Ye;eEx)bjegjrlRTPVRLboA+dgR}*=c!v&$afitQJ5n_m}eN?un(aD zm2~978GVI`@GQ|OWvn4C;eq1-`2f1>)0^3)|L<9*IX&><1Kr|zmI3e&2Y(7UN_JCc&a%n zAGFZk+sC_1pmC2j2l zF~4qDCw0#?sT{Im=VtTTcgg*xIP{?xIc(1f`g5E7H${sO;n9x1wxcGoiSc)v!WVbEnaF#b9q0KnQfCMuhTtZDct24aH! z3Zj{iQ|dNSBoK(R;db~y0ajbvoiLOw*l<-QFL*%0h?%eO=xT9lKeF{J4 zwaCrgdR$C%w4{u|9~a3i-F3tgJeO;oEqr)5R;OCx8$L{Z!d4m!=Tq^?w%pPp z6L;V;V7_?9x9!+B^t6VaD7mGJZD;2!0CVwD>2JOO03ZNKL_t(UPXcQ&eWq8{oyd+~ z@k}f=I_B{7;=LD^xAclTyx_3LgwOtnhu&j1wDCaHTu{@mIJiMaj+_LIR6L^u4t*tG z65$wpIRF*5xJqx~w|Vhx@!Rsu7oA{+_LQgPY}5+@zr?euj+wp)YXSXV?ZCZ^Idxf`^%*r*xx(MPJ>StbK|* zfj_H7RPGA?geHV6{4!DHl~Ftayl2CJ2!TA|XHXkiv{AgvUwnvyn1g53 z2Yw##D}SkfhGy`YHNq`0?XWF@&?RV-SPP_W8{4tpifbqlOZcL)w&9_KjybimjZXO5 zu{&xlhif@zhymr0ZKMR~36aU77^PNb@TYTEwH_DLFz;6MBOBtR)9A;*6q*Otnq-hJ zgfP8w@zrajy;!9|dlqP!bSTzZFupj^w|S|P^joLSue{dTKVG@R;+9_>t;>JB_DAI- zz9r0Sc(_<9o%nEZqBnEM56k)0(xM}8oAAmuKm6CfH~86MaFvX#LioejaHT`Vt^*Qy zWT$|aT&e8*Lf{Kh_Nn~5Mu%QiO&42RALmIWMmkTuND9>Yys-FV z-+es50h|y1M6db%+Sh(#dF?fQCS#KvxhZ@hH^c_NpSKha=6U=FjBk~qWAIkf83P*t z{ETtAo56`PMB)sCa&~;;KwpMN8@OHJQzAnT9ba+e7#6=;%tYeb$3!ucFkUCEJ&{S7 z+TJ%lQ09gQo(lFZCs|ygZ(!H_6K|7cf=;9Hx+m*_S19ffwk@f!FZNwDoV|$w`RdZR z;2VQNiWhcoDsROQRH#JV9f0VTq~sdWN&@?$f_%EGyFPAcf#8+y_~U(Y#|UKTE*ffl;U zkYiCr{Q^1a?Qp~H2xux zXjSaW@1Z$bi))K7ZN)Wg1~bz`o43WY&dbkWcP*~D*QK@n=aXG?ul zS={F45^}wtRNpLHGqq@=M(8ZgfwksNLBnX@!~F5D+L=6+Cz@H-_xXz8nG=midzbY5~Ew;Qpqi(9`JUVY2>D<10{d4n)2y%?%hM6 z+Zjp_hujd$aYe@}sjI7HyiJWKq^W}!eu-H#mv~#XQI6f-`t3pPK}A#BLT`4GMWCL> zF_#F9Ma8QWHoaG5Lm!NDubpj`k~KG2yx=+>51-V+dh*CXXE8R5z&dw`*KHt4VoZ49 z;YXrvI3Cd7d9XzzXv-tVtD4VgpGF6VE%aoOw{q;oAMl)?xHih`o0-ec?TF1e!S7U6 zEyt=15nPqYHzGxX71}75GH`{hT)YOSvK3sm2`~H2tl1JB5dcm@9S;`;on?1$#SBmL zr)3-FqQa=unbs;pynJiXA%Bqh3cguGRcjUrz0T$FnEp_5^Rdm9SO<5wC4rI&axP8q z1kMLI`!>^tWL~fX}8!P23HcEr!fJvP%1=HqUl({Nx6*=sC z(O2sz-p{0K>yzCwBT8E;J`;oU8{;I+alzMdG%n(0*w1ubf_cbI=DoTG)H^k@{!dQ9 z^JmUgo(uE#EZ(NYTv#Iw#iZuF~_-I5y>A<;1GN%Iq;@=7mOh7<5G5|lo54-R9l*wcB(M9t#m@sCeWy~i3k`aCeR4ekwpZb| z8Oel$0b50*%!A8Qy@grl#D+T3C%A)lS*bp-D2OC4SgC{ zyaTupvsHV1;uTC>z+_-d;?>T4>p~;H{bisH;Q=c0LRvnLr=kLTOYEdef@(euG$a#yx#fy^m^w{ z-+Jl=VEko*PF=RC;mN&A!*a7(;xcUlZ{`@aEukR2BK4{agm)iitPa{lppF1e` z0m#}`4zr?r@UYh3bxXd-xHTlhA9|3(uTTa}KMSjU7DvkBYd$d`LT`REOuZ;K1qD#v zfx)%jjo-*MON`f~snL^Hc~F91m2tGClB)8^CrYVkwzfRlnWY{kev|TvfB03>;w>?w znh|9U5*?l~)`H+YxiNG;2EqUb)7!)M=n)@7rjDQX#Z z@WKZaH$ZgRX`$V3X`&VnXPg8D)B^MjhaVl`;e;8{RxZ3$+J-mH2eBAkJlL^s%FCuE zCef+f3+1W7XtRh|4wJPwsGL^>-_$Yh=54`zSB3>}#vUwiYayIT!r6O|mox4(l^VW< ze55B!Z|S>0xAfgyzDENuchUkICptPjNpO3#N>GsliN)OS|AEgfU;5G)m%sOa{co+mnvN^6RMvefY-M1s;z9JsH#4M~&_qjF3{TH>E$(XYB8`&sc%vD?BeN+$u3fZ)*5Fk6vAPg%XJnBljRU0=R>q0UA z%^&AXikOIzt76V6vk==Rk$F|K_6OmZSb9O0i})H_x~Z-KQD@xE*qoayc||mI;=yMvUe*m( z_dfM~%kO>pvw8u*g}!Bcx;)m?>yNY$%r}KkHI8RoK2-x_dz1UviW28JU~@gbO`YmmxLAfHUtt&dA8)3`$%JcZQ}p zwcU+ywQ#2h2yaCNYw--;f`^asCi2xLi3;3Fp{`4_hJuTu$|H})Q65kz@vFQz#65Ej zTl6a^NEg zv>w(IpP`o~pYm0%Ma#0pSQtm4v$(4xw2xKZC-K|HD! z9^hQry+t8o1)XFsPIG?oj&DP%wN&DDUBf^R3v49sEw-EbjM|yJ+UN`L?$ojBenvfo=Y{q4#Co$n)Y2y=YiB(ff@L;`8ZAS~$k|=2&q2Y@XKCpA=FP zc)cIXKliQ1TeelSEcr;O2iwjU)L@yQHK`<8`^BloT{MbosktDdu7V?-zA6IhzIC~Kl&5es=RZ;a2&FMWs{66<&Y z9c~p$xoX!KRG*~A-GwIk#&Kyj9per(_a1R18q@LobftjJZ{p|?TButV4) z#(uP=qvjeA&Oj&$J;ipe=n{F3v-E z=)`PG=eTNQ1(fo>)C9Nk#aj6OmaHPQyy$E6FzWG3BNo=jb*?Q;4*HBNW#-Yw%{RB< z+<(ARR&M(<-`Ww+lRHZ5$;_o$bK!xz+xPG4I>>D=0Q>VuVl36joIS4BWa~V|TFn!E zS_uaI&K}izOxJGb>%2N)T_>)~Q16k%srmhk@{`L(P%E9|m;8+te?wiJ-D z6s(Sl#yjNtF}D}ouRpLzOc~ZhFj|^DuH)EO+lvoaa^0E_7GQiRgB6p4t86cDNW#O@ zrUwP!P4fb9!^ojJ+>BrrhU!?Yx2b1Tv$bLLs^A>}m6aTs6rv$~MJA6-QD@2;-sRZE ztR;3!_IE;~fhT`yBnDvj#Bi)ZufDA1C)wV)&@02Td>$XsQ++HLwnfY2 zFcX5}ie>7?RD1Rej&QN%I98L(nslH!$2aogMPq|ycrU)_u(njv@fAOUfn5HlB?dmC zv(GbcBx%XgUHs`M@r}t9i=4b3i6`y#az`(MGHLUPH$vXe_(l$Q;^wFCLJ6iXGvVXh z(P5R#tJI`fZpf-nQ@zTd^}&PqEg~P&BeS1xBQTxUEHG@wQrRP?zD!;pYTtQ5`_)6; zSdn_C?!F6nD6nr7sT(obm-b`Dd62MA%Z!`PnlpYsym8lNc~$it8oH&?B84Fz^clN? zcUXeJW>3vd4OpDhX5ib;`;1_6UszI}1zqhSz`Z==IvzjGLxz2R@&I_Qyy{$dI4nk< zUZgDjr^;CzK#y2-GDo~FINP4kwrAhsC%(hj7mDx!x^rmQQz~4+BESLz83SGC+NTW2 zN7IdOM0jC>VS_g|MA6J-zRn*8woyMr#XeKI4g_G3UyfH4c`c=*;Hc}$P49lE zwAm7iG@vJZfJ%jH1!sX1yVx;fXw9$Lz3@kO@rOS7SD@Kcpe;P8iyTE_ft-&?ZZz6S z9vUgKzVYUBDhDC(GUf}ZbOq_+0Zmfi6cBZC9=VhSW7Dbau{fds^!uU-g`X(mpMx*` zlGOZ2LEEM;gZuEZsQ6T`1AfM{5gH+ueC_a6#fXI&KZWJop86-8oxrq|vxHgemz;bMu&$!o8DbNPk; z>A%wx#&?z#72r@B$kag=^+ z5gY#Zr_hKpfx!PnqzQ!FL{|mjMj38?J-Gm#U&GG6Oz0l^#%EuE+XN3Cu8-p2oW)_m z(EUwcmpSvHlr4N3qdwMzkm|V2aYMC(#d;J=%PU8IdP2DCZZ^7osj{!FZLOQC*)0Av z`_!|+RsZr0UMKu&3Q*_JfGU7ozhcKH<`CzaFZrqWb4}WHC;1ItkFDR4#@9!x$1T-^ zg<$H#xs}^dSuQ!!XCfZly|p|(I$chV&b$cxq~(0Z1>N<-YWj^_SUHD-<+W(U(}?D$ zb|}jH8YXmjK47wb$yOY;YKjg%JdIPCz41;SPivN8P6^T%*ejcaG?f3j;IE$1Frz-< z&c4j3k};+Ba{V&KWZVFcn{P)NFVUHVUEpEA5%y#y11WI%T0Syn36(5V%EcetS~jI{ zt@+By;y_>gbnSflp~l(k5*7N-_*?r>HpoYP<7LV-Jh%ogxbg=0>NNWt?a1_A+ZCX7 zZKsn249VF({Pu?Zqa~pHMvVdyl~F%- zwLfHwBevi?oM!$lmun>dGtX2GtUu;1>=AydS1=*c(M20-l+ya2!k4_$ozVWNE8PK>Rp9XCa??Fh6+d<-ARb z{>K9wod51=?tEKgFrLx{Pk^F90!r=&Ae21k6HKvDa4&j&A&*j2W&y zkh14RLtX{VKEl2cdxl%t^1=^mvR!2d!yD@j6kl+WavdQo6oh%N+6;T>lOTwu(~7$S zlq$6>g>0i^51}!cuGr6MU79Hy*o>EO?~n#!KpUMZ&a@fc<^0ZJcKli)Rs~gPQ{LzH zb$CXHa97w-v)4?Jdr3PA)`-d6nlP1Sz1QKNL_bz=eiHC9L$m)Ml#hB}N6$W+O^o-R)wYXSH5q2Q3V?%QD9fo7h(BV5!QPHjqv4HFZuJJktT~7Hpre5rD3#qc_?c|*)PTkB zI;m9}j`;`)W-hP9Skycz80SstRl#Rul{vp7rOQ>MYz=NUgMyaJxoa?tijwP<60ZE{ zPQvKaDJm7*NG+SOrF+eBy%Ks#SLq?Ao%mMn%|&-8Xkf;`hgU(L>dM|@;lI+LQ@>9T$5kp2UI_W7j?ZCcEmkX{s5b^}^8BavPNBtEWYMe__ zIZ!^-6EyGWJHb*hO>S(;a^RB+z*~H&a?yhe4IEy@XW|?xn1aGn(%~Paj{_=ic6AR* z`Jagc(c%y9ib77^Q&wmlPx!$_F4T4yH6=8*p(PiL0^`=S!kM_*gnxya3WGX921mKr z3o~lgd=LQ~b*YIJH;?%H;aULZ=~td0)v|yOw3aVr3Jp)=GXdib1LUVV$@8WGdK`X^Y3oj^u+-?% zaVviLlK=`a`v$DUW2kfw^__D6nHGgn>BV2=?mjj~|DdLkq5pdVfS~D>BP>2-Z9~1V z`RJ$*ypuAh573v<*-;|;$;Tf8^4kea7~xrC}}absBx(B? z|MK5j-hcFH`CEVIZ!B-V{mtc{`k6nvJbA=hPvkWhqV;1e$XH18G9?AD?W@GquZO0N z*cacio^-x@@9y$n{8xWr`PR37clpo%lRu}sbWfLaJ)!wb-)|-s9$T@7?M75cbk{Dr zJaLgdzqYBp!ijNKVnW>cNh})z%YRFPXaY73NjEXl96=fdXaIr=jo*Ew;~{lI_!@iR zJ%?%SWgU`j5^y@zM2_2u8WfyCZ%2rWE~uPRMW``IaNT3?7Bkdv&KP{%?o{rjnN zZmQLfdKgFjwU8^H=?mn%vBzb>)a@L8)r(z{Lx_63a_x20Cnq_%q1a$rd0!CrK5UP0 ztR*pZ?^`|KYiX)kp`2HJ$p<&2S)W-~o08iIt$0#cYsL@N$YN71JF5dtVaOr#x@V>+~2(#E}@Lx3qd`pD|WDT_nafb&v0%2A;Qgv`%Fg{qYL@ z{9Tr2>d=rF)E4>ZNe=@q3*^k}s}Ih2^!b>M4;);kV#Z$!jw_wD?;;IjKMEGneMF8i zUwc7M{yyNluBt%s)lGXjUdboLi{q4z;+ADBjq2N13#7wd25}qjD1t zZNvy~r5%}xSUQV0dA!(9gQMu;2-w6MUTDr+dcC3^CaFc(#PzNs)zzRPD(a5Lqwwx`xYg&TmH)KKs|~ofOOoXGKm1AALHh_g;t}CN+gyHAa`Qz51JTduh9ZmvQe^ z@ew2OXj{kGMEAHIYi8O%)Nrr(^VjmScs{ST58=l1n)y^z1}IwmYq~x3V#OIm>Asggd&~bT!P4O z_n%*r*JFc5QlfvE-tc`q+u4iRg7I>S3qkdlcFlz)E-u~B0={4Gqzg;_4lp~j>UX3G z&C`n$u1hI#(Mt8#E58W@-wnROYn&KD%g8Og()JFof-6x zp;InSq~@5`1!>O?r8O68q7At~qYUn{G%SYex{_V=dc&K@D3Q&Th zj}a{r9Jwr>1JFvQ(PJ+YqG&{J{GuggbOuT-%`d;ABatqSm%EIRY13ff;rzm}g75b}(2ofri`yJS zp!c5ue02Y{pYfTeeR!h+iwf6C_|}sPu6aiRSd%yDS1aO2P#8W82(|0de$0;fF4O_B zs14=+DkAfV(n@G!#Tc<-R_+BS#gfZ0^x-4*9rF=izr8>$D3}FQ?kwY?6nr$Kapsds za=TQ1#T!_~Xb+I%&*h+m@N*9U03ZNKL_t)VXTx{;quHf~erYzGmM>iJQq!YQi%#gt z!kwIwjBp%hou{07l)usejq?(JD8^OPG!O_FKGP|8IQ!k;E-6bO;(Z5klsL}djEEEk zmtls@g;vX;8UqCR&;+bo7_*zAjT43hw6>1-)Xhi>7}wZJq{{|~3d6%fb5U4yk?^OP zYdP47EO0V3#KJNZ4jIJv;TsNp*!1xbeZA2Hmo1wtW8f$Cu1?iSgaSDPl!*0;WFzWN zzKeiz2)#}!x^GGccR{;tq=bC}Va7UEVtT__g%Hy1dQzs*Tm4$^&cPfS4%#;r^zQ|0 z-%y4%bn2f2zj@%F67nMXN2Wo@xxR(W>!Nuj(UD#g&3^1xN{im(KF42pr{15I<&XWb ze{p%`v!7pn@t1yS`Px^%y8QNU|9{Kh{|A3}`KSNL&+5%5Hy>IDhUKW;r>6iZM^5p$@mY?|1A6tIr5B_7S*VEhin95n2VMy{s}6ub5IrZnJrUQQ+yhc7 zyz?qRDrJJ2T@1%IWa#cyFo)Z96%TFex(X(*AFqWjc*?yN{!WUgt3#_d*L~*!gM@m8}dW>7E*`58HE;St9 z%Q*N31Y=6&_g>Kn>DaXzrezasf+7--vk9c_AL5w8EX=wHtO=xAr&V6M*?yq#m z7TdIgyl8H;ta~-YB10Juu1bSr$j!2$uW485+|rRI9=smguVxlJw*hq{e!QlcoW z7<}UCYY3uowFw@Ak@+35n`&ZxLl?FqBb?yUjS6n4?ogIV`j1-0vM zp+8I?oQI&XlS<3R%Qo)aE4pTFp6=lcWzdluB}@)Y;Hy;mj6=OHiD}^_RE9-Ia*{wX z*kZ{4-IDO6>Y2%g%5sz+J-7<3wGstu$|o%wU%aJ<|k^@7mQHs}vkT!cE}2_2MaV0%+? zJh2dtyb78pT3Ezl@b1M23EsVPXF1oaprJT`+7KB|LtfXwO`KH1mhE-eXqO@kl@uMh zSfeLEh2&dt(9pdvl?`aIKXc90f#1dM)4t}aQq_f=iGwE(n)GldHCs|m43Kfn1OVq) zi(DoX(ZPfwGVD`xs#5Z@91fR6sHhY75pj4*3Me#Ws-{r=Q^S*Eo5>A}xAQ_T`vQ1y z_{{_=lPKk;5drCt66exIJ!`)sPs)S}`$e~XmBFElNfw82E?RQBV4r-X8x>dxW`BHN zW!^l%)574mPUIAMnl2<&lE>~+z9 zSE%vB197EZ7@zx+a1 zCj2zB3yp!y$dpr2!PHg%tzHz;PdUcZhtSpJHtp;caDb5S&Yi{@EL!ynnJh`PQ2-dbhx*TleoQ4_^7S zzL)xm{Pq9& zzg@oiwclL+xu5-Kmw)fy`qO=JlczWNUi32!mTJ-0-_(`=&o~Bo5mRn)(!u}%(|@Y3 zGlc5LzRjKtua8ggut=)>MmxtKj%+(rxSr94zO;jp$Zk?@3<$EvpCWAmznz(cN}qj> zzI0)1!QA?hPsFj!LV)`g`VjFCxPHOGQ$JfYU3G`w2fM~sHV{Xd)xZ>(jO47LU7$)u z0jRPK6r&l!XnZS|(kia^xK5HLP+aGbkSy!TOU1+Q*m>)NR9qFKOi}MiU zM>RPvaGuJ=W{t(w$c)P_^oEh!8vopVs+%>%HT>R3~U`VQ4fL0oMLLEf)(q33Y@?8jeJPAGykKGfP)6urZ&BX?p z(n$oPsl-YzVdba@C!@rSGr8G=OS1M*|;VNHyvgJ%niWd*~BcJ;e7|IO8wCe???eVm$Ou1o=9&ni0*8Zbb zv>k0)BFd;s4ibKFNdr&0qE`Nf6Yi2o?sGyEv~71-oZ%@67!rZfI!b=(SH~Chacpr8 ztY2N<@s|tawU04g3*4Ce|P)Ab=NBlU#`i*BEN0yD!Qx~1c{S?pKzzo6GX-_^IYqCeJS zuWd_AB!@`HuWDcVn@^!q8cFifLHrw5eBNCrzS-51opD#g_lCoNfgRkokT$kdS1U>m! z1?2IAr+U%H&DlKV3ycqyfL)7Gl_C{oDo^0VKY`wVMp@czAeezi&s-u3Ni(*grtETR zF_tdMS4)UPvDwck+7$|(&sM@wejduNFd3JMX?CC~G^yx^jC>FOkw)Mj=5T);b^9PX z>FOotZm$jJh}s39jU&n2yg9?{r@>eBS!Ner+1`@Ni4FdcOneP<@s#LHL+uXTh%I)P zuk=;ED*{jEsF({inVnB0w+O@vLOzNy^dmuIMW@=3#X-!YUND^wILiCwhOqcxp0C#px>|`v;81Of$iP58Z_g%mo?#h<(2N)2Bto zM<&~C#LMQcUNGfTSx*`Npm`xXf~#${czGOY>cd2XTIt(;#_UR65Pmc$t{ONqxK!+wgct+p#^DAk9y| zB4zPabx_$CQq<3KK_wF~-Wq_v`BkjorQY+mfXm}pLpOa7GtYRnah8sz*dT$ND(Or{)#C1-pqmp|g6_jthveqEs8LI+P~#GjT6@2f^P6?+zz(9a@} za?Z^ZDbVkpYG<@%bOUo9vlTOWs47^Vm_-SSY)E=^eBK?_L`UisYe`+n@lmw)F^{p-u=oA1e{YVC{KvQ11GJNas_;8q4NMT!&j;!|E1 zHi?0L&{;^<$j7;h(%Y9 zn-r_9EUQiN*;kOOc!-Wa4QJkh3*T(q(7BzP7u~T^<-n6%A;H#(fd=p7Fhj#PGYeLZe9IX-drWnk1z&v%Lr;|7)f;pk+_}4)o}KA) zE4+rB1>1AM)LUaMjdA?yXzB55p%ov-L0*6n{X+4(4}3)>Jvzm+|U<2qpbZO1CnCP z;e`}><7%084Z$$(Y_|+4vqiqoD^y^PLqr(CGrrUwpc|*shts{{(=ajDY+wTsSD^5) zrAQljtk5WoIlZtUn~eYXW!?~pvWTz!CqP~alid6JOz&`bY}Yun4LKb0+pLVGFO|L( zmn7FI8rC>hwV|NT<-u987?^#!LLC}_)_kKhAf#r_$k(tNR-hMPAHCoP|z+k z_97beibin`4=tBe@hT5SIef(heRv#r_PME>c)-NF@_f_?8l|GdDqAF~SB!cA(ck#< zX&Xp8XyNFGp1-y}NI7$q+#I0~IH>=|YxWKH({b2ED>f6SbKacMcx2Xzb3bqG@c34; z{CQk0$5?c}(D9DrPxid*`)I^(^BPt;0cl$IXCundV68%CzfMfIlI<{PbeHeI;KrY- zD+`?W^#-;3EC4GQSkp$ojKdQZ${cGUFhYhX7-y#&02CR6g(1tL^7u}3)1AkIk z!^5jnyxGThJ^5Y9LOA9xV)tpT*+m8%`pMy|zF+6P@~3iYF=ATSD{_QnV{9i46Bq{Z;j;_V zrXjZM6UPSJ(J;~1TGpkBZ6E0KZzEK2U6eg`z5~h*p!ZqmxI;2?&43T_p~!S?I3CeI z_9io3re&|x_mJO;{WoHODq-K5PZEe_J*Obq{72HQ28ONkKU}^IxI& z5V`Q%_TDv8oH06=W_Wf9c!ws0r>|Sasa)}&PywwhmEX}jF^{n$wl3qGgjQh2O)C@y zeDBBs6>1k#l;qobGe&N&fNldUAu>sg099q$R%rxgKt-!OLy{_0Gmg_2PWJxOE+pjQ z$5tlg1T#{xI;x4D_0ADm=_}4|PnHKvFq!^T*K2iZ0|TCL%#&|7HF@S$nm6=B9#Cl= z{(h&R@?@@)V{(Z@$PiP$J^E0KPPx#mi4Yf}6bs)at9D^RQE5Ph`FL~ejXI@NZR(z? zor)Zs_b;)~m1>{_Ef@_u9g0y<6Fz|g}w=`CxPQzc}Y%RBChoQDp3disxDQd;NY6+0~`LiT$W-blJhn; zu$?~^_4&(EZSb*HQqfo*fvp7Y{Y9_4Zr-tf@K-r}!2KtIz);F}GtGEIO6MxP7HYer#AeO+EGI7+V*IpVJ}^EL5fKjlc$=XS+~mYVH;Yd zejJh^Y*B{F#Y7g`;N`+4x;cb+Qr39DqpI#W7uv~IgonTOH~R1c^}Bm&!!ucWSBt^C z68c?T)MO#}i7t4u7@Y42=bOP#rQA0x%U{G=h2j1{b~s%=6fqb=PB8th{wOzr2g-xqtAhJE?5h{{(goQemA_=}7^&M!@;3RVz1b*W3zIUracs-RnC(`$v;vB{>-+%Z() z7YqNE^~p>Erm?7vUXh@a@1$0r8E;)})AfqMu_;Bxq`a#rz%&HV+6sjOMVfd!X~IPg zkJbLJ3~i(`JS8AFA`Rz4(MN7}Z=}vam?F{3V(4f91hO}~4+u7w{nAb`e;R_{Hsmr`nT)ANt6fK5}gM745XO7GquJ{e7^TPfC^h z;`EcV{)NB%mzH1o%CG9FkfY@XUwUcz+E;#M`IPkB zm%T4Y_Kxz~5`Cfy+|?N9{Nx?o;q%^d<6H7WuYA6xMdNpLv)j487? z+E4#8%logsuI~Zs31OXsY>12?c!fp#2Kz*#W${u}l^rW``1lb=swvPi+T;mh=#7ts z;Itq46mzfh}>|08tk_9N(xz#kt zG;g|`?Lx+8^C8EFSi&4+Z_Ojfu?>Hhv(Hv!?&ib9 zR&-cwtuo^xl6tQp@Zbn1iXuf>Ke56MF5GYgD$@XDK%2ivg^S!+fE73+&>5~Zm`)gPv8m9^llz4aaLn!+AsFQEp=$DKd!{ zF^CK`rLIZj`3*my6nzWF7TD-0P4PQhAA-b@qiA@E3GG2-**e1Xr_xlr33b|*04@nl%yES)H#v_L!z5$AQ8vfy{~%En z{n%G;`pIARS>neVs4(caEyxx(+EWYNvz6nB=+-;w0;Da79W+2v<=}j3+bcP90`J!k zWjB?DnNqlYUcy)O$fVS^>N7>9o%{`5#pJH~k8gGok$nd)4j0LD%;#L_YYf8P)wu2@ zofJQH>v*}Nv0lj%WAqbapSLD&eC1U-h@*I*k=6jQ_Q)% zNo5S4!fZb>*%p4*Q=iPJ9T1+Gp7VV(BI1?~rEuhxN=MPa2QFX2UB_9Mw3+2f7diOr z#%`8-Za8jTDR!7Gl$k!mQM`)*zr|MhP)v|XT!30);L(Cw@w7%y_al=95KNlix;WKhObz7G zG32cHJG`l?UgZ^hOy2LQeh-gst8Tg&sFox9DevI1x@5mpXeF!%&29D6l?ZZa=U-w8Js{#?t|)A^erZznkKsMb3uuIIR4;I ztCoHym-NkBYD3_8!8h6yp^^*k>TT*2zUoKdfM;51&jqebVvAn;T$QWUN@n(=cpOI; zs9{@V6u<;23$}SWl?fGnmnT(WL^r%BchU9xxXgnG~At^0K_G z#b9Xf=wbplqfoCWzNp8f9M0&BCxL}h!ZWDJ*|Hya@mHP@UthR2KK@d#;F9BS@n!M~ zo>xeuUf{S`fKD&^k~f^|uX5_1*h<~UmZ;xzr{@+TBI#HAZ9%^}VV0Je)77qsV`7Sq z!m0HQ>cWe8QpSkwKyzP#m_EUN5qSa>g-siRk!m7antXGicNu;hH< z3?6VgPJ?%n8#!iEil6L1Vu)<%u#5;TkB+I_>_<-c<}3BZA6L9^m;!D&8FaG=a{Rn8 zp>IM*VWCQ$yyAFj_dtrH!m2Dh-MuYD1Xe#@c;W+4X2V z&hQDK?ARn511%41`*b{L>YCab_JtR8_}7%tb=@!FZT!v!^WSjMrMl_>dh_^LV-EFu zEzI6L)+Il+xAzGSuJmd2v9Qb!K3zQY%@3y8nb?#8^!=Cr&0k#p<3IoBmb23*%RjEg z-%mf)D=Rf_;XH(|oF^)H)Qw{{7{7AR5Y^+nwJg7^S5m*N@zE2>{K%(1wfx*4|5MAC zzx;=mmmj<&35`(NILP|YTjgBYRaxgHV3(7#pefZ^*lc*emR|DaMGp(V%Dgckn1oZ* z(*>-G33{`ONSA?RdT^nc0j&8dZ$*%?3&LF3lC@e4Ro>kZFm$5MC5tsmgHaV)GQkv^ z{J1>c>|hVZMlU#dlWX)Hn#eskv^NRf(uv_NTQqP5w;WM$#G9N{IO|in=MZ5M13cSg z`KF}cR_r<~BV^$z@8g~6vzuhN z$ET;usm550`{DEWO8wO%bC-1+661YeRbu?j*oUztZ^>ai)y7o{ipQ4XW&GoD;xtc) zTO)AkJCs$asb0NLMPQ;0O7;v1sqF(Z2FO^F`2^!h&+P=W>w)7ZbW0ku`OcN>QttMm z^<<$t zV`FGOOo-+>D>QQ z*^+^t=yK)?OqqQvvdo2vxA#H8%omT_etE2$qWHYcZJkH?_U|_@9xbn5yssM=n183Q zR9obFLgv<-6CYnZb}RXf70oT)qH%ot*f&P8?{n?S=TCWX%xAXLs84jw;8brPuwEhN zKFb^{fAJmJIrUn1AbkTK^w4KW9G}p9t+ZjoVy+=DcVlt$czIE`h`n_4uC~-kx|@F9 zKE>P=TU8U(p@ZWEd0ItV)rEF3O%VR3Bqk^J2c)xwZ>0a9y*G>1WjW9DdQa=@;p{Vz zJY-0UWJF06EkTndN)9Yf%AgF2oCHA-1TYLF@>OnfVMEAulDh;@kQ*a_BP2!=zzGs3 zHVi9>mBfi+xx*IN5*9&Jjjwf?TE?|Z+Y zhVHKF>YeLJxca~rLJzMBhKq% zn8%zW@tf(#S_7wQqsMCT4@TK(%L#7T3%kFk(Qz^+N9eA#r6jmdb~pmFbnvWrZ&Hi(EgYcjyR0kGso$H4ANhtzmT8OV#|sJG6onLW?qLwdd8xRatCE*;1adW&7e7P?zwZ< z7xuaUO`P03VKyby+D21~*b7RRLAKFbgQO!By|kx`lZzdvEZq@hrCWf)ptUSl44rg! z+L&I-fvHe7s*IIq;C3Ya4A2?OF#x`!DFUx&%~Y*4tas5)e^OJ_22&);#?yvJdesl# z7v(}hKKro7_tk_O%k z;+eRikBcI_qK=C@EcEg;9Xr8AwfO}-0mB8>2lsS0u&$Eu?J{IM+0lhb@Vv&3$&Q5- zb+16CSNh_Ra=j-eRlUFJEcH!~s!0|1BG=RkRB9kzs4q%CwOqo;pB(uRlBWb>2|MGlxeK zIGqmUqB*$kXcv5nZ}8%`3u~x7j?>8xFakE8Q98H$mOKE{2OZD|jh;;9G2avwf6l6QI7wn~?r+UH7?%ZY%Cx+5 zRlcGtZYqNXL_ih6aYuy6wrH&^&GbBealSAOUA7&I$3Ojx0~j=4^`oz8uY@jARsfXH z@t5H4%KHr&M`*#;i@Q!&UhyT#YO(h`i@v(y?EFy{f3cMt8R)z6TXy^6uby3cip63r z5`)7z8T;K&eR6u~rI)7v`e*;z^x{`uoPPD!er>vOFI%iOs2Hht#@zkT|T{^DPn-uCQs(+A)CKDi-D%CESd z^7YfZ(2?cbMBMb?JN>5Q9_k~Eeo~l6iUzE8=(WDHPW0=?w}Ja&acuf&V2#)KbGfJ^ z8b~VrI#^b`7|$wlLDAuKWI}@l&c%&<%gAFB&9V}~l9};izCi*il@O6pY*B5|+B{Bw z3foj0D7+PR`S8m3MsHeEzf#e(+g5Gt!+<-Ps-FAaFV{!&&Uzpy| zqVR2Q{?&Nvn5X$_QJB8!zNjaFrNCnyRhXYPRR8mMN+TwZ1Dm~?pVSk;K7P!uaYg}% z&x)H2?9jD)v^Hu8SaX2p(zdpv&-zcq>c3-y%6snvj3?{oF{JYB@$Q$+9!9L2gu>uj z2nV)nY|mG{cj54|)ltxl!dHxS#-SBPI%%}}rdqWPG2`Yc7d+D7(2!qrRoXmdQhQkG zd~)PD0uzHRKT|79Z0zJ%2Zww-Oqz3KEw14e3vBUEIn}-KQK>YvCTBfq)#x#Y0#0mzMYv>#aOCxT~T3ijLHSp((kOrGYxn0&wad zS!kJSu72HLjb)n^py8iUVIDjGLtvk-l(>jig@b>&FM4s_S6$@a6BNDGrH1bTL9nw zi5#qh6f9$nYW*VV-X9~=x2=ZdJgNM}I`%nEQD0A=J5rtT7Aj_mZGVxylwGHB)6h!a z9bN9uS9usRVTXApe@gN{2abarYY6BE>%y55*(9lfQL+K%D7=n{CfKH_Y}udCGwSVp zaQvu0Ue8QF;bsBeq~dg=@!CYaxXAl$;WI?6`EfrNFz@%ZM9Ds*H|{;7@gDU|$kxf7 z&EC>(2#utaZdtxEM4uh8G1?_|oY*2XIBms$LQD7tmzh}1Id<#fzz(Dn=G2^+#fQYe zRC34-7?S%rE8rQjXV7^D=wtD=4oVxPIio8Z8qP}E?P<|ap6uhF)lTUCA7oBQxvy0rlOjPPq0d$+5UV<9sf zBrZSXYl2%NW`I(rJzd(Iz5pdw1&4VO6lp^uw7KrWjX0wQOTe(n&MkJL=t)$C~@TxUHKq-krl??f^&}o$_PM1!q=Y2A)^A z)5pEIsTiIYVwJ|Oe7l7F+m* z9ek+$jq(H?UDPUid;zY-c~S#EbOFoz9{fza>p~s=@m*eC?{~934SZWPUhQrf@%k~U zET)a{$rD=nMV(TYJ{C}4&0o`$PJKad7YKxb*B5zH*XXOVB16d5$rCr}T_?g$1vrb{ zQz?90pc5RceucT(i$~KVf232>oAoDq$Sip37ipNKGxI_oOtU1};*iM0%g@KbAu3l;PB|+h7fztk3wKl%NK+?oKeXE~7_NRqg^+SC^LRSeD z>xk)}c+$b=Bp&G1$>?IC_kx}dIv`G6v zH`3|-(0Vdb7t8g#dgaRWy&wMW>972y|8V-=@A$CljtY>*_S0a==_~?^-WGssKhMIh z>YN2&F23Ij#*4YM1vla8#K)LR73&3L#$dA?_Js3dFns0Zs>(1l`xMNn*8MI#Rr{+uSGFe_EU>4s}~*J&vuZs|-GM=bjI zRVaPR)999K@`klE@WzX3=*U1vltcn#6P?gzjE#fP1Ram~Rl1d9*3sBa=^WX&1r}h1 z=9~Q}+8N^wS=wqgslEi{tJ;@-ZEE5JEUo+aAKJ;v4iTd{0?E*iqSn9=t`!h!%vxmOdV6#L)|M)8$hESKxX=w zHbJv*ST<+W24_2fN(m@i$_O$vQVHe%7~6gU6c=wGE%dB)g4?2vbKtSAM{I1>mfA}H zuMsVA-=~;s@kh*jCUY4+hxC+xeEL8Oc{<{{dGO(w%&inXLYzK zJQn4Z+B=KD=XJh=f7d>+p=ID-)cKIb--|kjBS1_I;pn68_#w+U%kzEZ z>xOC`EZ|zi)9Q0q7)#ox*e-7xY37Aq-pwBGCQ5MNY>>>Q26uVo!Jt5-4QeA+n-6%B z`(y^#LZ>qe%7EOTO!J*m?v$|o)<(|bQnssSmonHDv-s6-ics_cefs3MADmw549MM{ z)`ju>5Pym6xzncJRLz{$NHxQ$@lP`F&D7XQvOD}0VU6@hiWshOGKA4Dxg&YC%m z=6#r=&-K)dA8G?b>X_E*6g?#ae{t@&KsIG>AUU~@zQ&P1gk6_oOMXX3m8F5V^l#C2 z^z1X%=#20jdgmO~ChhG=wgiKTBBq-AHUkZ|Ui?ynz{|GmCFY6^wnt5*yRL>a%^IyI ze0WKfO!Ty&POC)jvK>9B-HeGs0^Eh9^9*wF?wmj3h7mvA-Ir; z46nz|>)+@V(jooyr~B?DEG{w`@K#+^0yRrn)fJlKd*44YjkQIgE5wJ&6OWXnvn`3j zCf{@E>pfq1;x)DBld625ymBEqWrs&m3sdpZt5_>uY>v6em!6tfvEN-)oA4^7%S_1h z^Wvne`R-z=U{R7uSQdRVA*;pTH8%Txx67jD7?|KyAjQHefoXhA{_X7ao&e>X!OGQr#a(vFld4tIqL?{on49dBm`m@3nt+ zgf(TFD#Nctq}lj!Vs;sL_j) zY@`+j#puVNZkXe>&oA~>^d?%b4qI3nGU^AWH_bU~*G_8n~smi5MIlgcjms@|$g zi!{8!*^~&ma%)Zu@XklMLW`1azM3wE+q2adINFu+Sf&Y9n%E2_R?furDu^v*)A~y} zfta!GKj>>5G4c)K(2C&&S8n)1P{%(G@ej3-<3&Sc>c_#DpN@m)y(p}syBCGE7|h}= zPxJDW?~#6zd7v@F{ad=|s|8HHsmnqzuXpALcK(THc`(xNc9n}&h6^`-VY>IZ|7Cjp zlRrP*fA!{c=cX2HkDt;vd8g^;f8p-*JD)zD-Y3~_*OSE0$o2z0q4Y6*)Ay=uT)6e> z^rD{L{iio?PjBcv!7-e2@-!6ZEzVC@bU~7H8RwD9I=;V43)Od7#1j9e#!Z|P|N95izpLNX%a^AQfBSb%fAQb`_og3s z->vDjSC6NsU--f4+2`J_wODE33bCrtLB0^q=`K2-R+T-k?|wf}p2h1t4J_+A`907A z@Ohowc!KyG^$DM}@F|Gu4Uaj{sVsH8!<6e2Q<&Bmo^GN4_@N9p@p(K)tc&%=X~TKf zy1+uze-`W_D#egyT48M43=6hR2>3&aI;c5O0HV&!0tnlbrF6oS^F>!YpC{lE9HS3~ z<)F=uWb5qfXLAU&kmYTBXRBJp6>}0hKTGI-h#a?1?%nY49mM zlw~jIZRK{>{=!-9zIM3#YA6o%uid}na~}sE`akaBmCG+D@v^2^49Z3SCQV%sVm&ds@PRka zooDCKKQJ&sBaw9FD+aR&W~j}hW@e=n-R@l3tsX}{W#$?HbKYyd&XD=8=f|RZZmcm{ zT}Pn5_E^QmywL-(m%-CpQ4v{XbJ`|N!5TZbmf{z zqLyh=NE0H1{aqC0@PZ-3U$Mb5h-Q#{OTMSvp^sjn_el%A^zn?m+d$i6O*gOUbw5l~ zc;yXcp>*6m%L|FKW2J=1Q4d~ZO|yv-8XAjK^;&s@4s5Jb()LpgxA0e)2OtwH(wx{!Ha7Y=!qGZUQ(KJY5TLN8DB5-2khFD5=0q{!{BNuztInCN||{6k$i zeBcS8?BI-kpsihUo)nrwZ_%U>rrrN z^$m>)7?U<+oi;6XUA7O!=okb0LIsXlV=4T^t!R{)YDuclsTcZ$%j#`-eokF<`WtP} zMIa`_S@fMeVZ>wfrA+5@(E>aAdqWo*FX%!zcJJ#oX54)6K>B=+kZ zUaqK2S5&XO;)=y}(q3d24?YuD;`p6OZahD{#h)iFtbJOx?ql@!M8*9Ww6@xP9D5h2 zDDC{BtTj}A%L!;`*ySyIbLm*3BdM+WXZbOEr9|l%d65ZzZPj@7FZ?MPTh1!%nEYf4%I~7-B8be*#=Q8q~(|j>zCq{qql$3L64fdp@8lvkJoqunf?0HN# zX7FSc7IYJ`8R4Z5j!n$IlE+7L%rm42GreI{hB{xn1jR><8wo(^60_1Saic4m$*zZ% zE26}#%M}4pKkSgKSV!ER)b~=vv;|FTj){QuqyOk!?Ovrk z<}GY{>Hy-?4?sgH*pZlwpL@WfBE6yo{L_Lg zpON4y;5mIm*TY1=+E_UJLM1;tR&vUCziLDYoqz4;raQm>)6*NDy{Uy{`FKyqVLd5( z>%ptjM}POi^ubrIPw&5eWWT8gj_*=2{lN9>Uc`M(W1d?o!x!}g(k(4MaooSI#oXuR z8wFNEFx%c}0>B|~Xe&x~+PoMbmAD{mDANiBh zJDzz?^{=u}j|$$`xLl)bKk*n_+%OS>M3|di@5v%x0 zQRnBmV+uJu#%cMk6QdW}c?$R;t1BYWEz*XTR0cXk#Z9(uK*8S%jOo~?)XK(7BDz|? zwl;|HMdNa}yPb_jw`K6q^@=77*u2xt1qv7r`jl$EMM8O3K#Lm$v$jo?%p6&n`C_5C zu$0^F0+BE~kSt*Hm9<>s;}7Mw9}Q}qExoA+9abW4;=oArOOzf*UsaCok09dMI)^U$27k1P^HxSaGHjy* zYr-hwyc3ZzQh4};^j{~lX-*92ff;>+xdktoa8ZMfrf$IPQo6pL>H@p8eZF;>L#eKB z*AwL6hf{oF@16q>9Q1ZHQYwMDCQpac0`wux6un64SiC$l8qMLSud!rYGHB{vlsBQV z#WH+Sv>$OV71D=8m8)dPmp&wm9$F|x8~Gs9ufwH0U3yHpH;Na_Z1EdvPe&U^)Ur#d zICJr47^uwsSky!|i*f@}Nx#KH#}uCW<>k!W2<79jc&RDk$lQIPH+tB*l$k~>kFeFw zWn3eO&yr&Q)bWAq3iZ8U%cn>PJD{Ba4_jp;bu(IOY45|MOe_|%^aWAghf1BKG}LG6 zjcpdNHAhxjAIs7lJC_9QkNoADkPcTqR96Y*s7s3-bXJRzi)IsHE2LClDu-@*uwROe zZZUlNAZ|FYkq8A0zuG#fP2q!u8p&`0v5clr?JD+D)J=WS#H$bLd%`_?v4To1~pw}Uq`hTuoIZ%bWK z2EeQXo^Y66!%J)#H`EHe$SyM7uN8Tzw&eyFXMR6s&ZH!)aGzE*HQuOn13n<5cSTrb zQ=kn!EAKY4JDN5yOH%fYM>4ilq#V}gPBN$*k~=a_B*6t~o;|YjrR0$nJaW~PG#q2R z001BWNkl8b#5_L-&{`Q~49^HelhasEa(~nPP0jhj<0w!jx}dw)iD`C_YJU zA0K+z-@WCWPTe*26W?3$`0DWRnbW>fYsaGs5081rfZieEIU7Fj-MntZ* zLnCQF!O`fk)9lMBPr~qzJ8*fLMHdtOEk8V3IxVd3z*fIT2fX`Suth%;F8$1EJwA78 zi!VBN_@v` z(*wvtC+_)3v?J zl{`Gk51uD+OC`OH$tD*q_)%tT^JFe}F5eSVaISOvf(CYSw9XyLywZz>^k=jH@Vvf9 zbX8CNv*3GO`5fhGtLQ}bEMY9$S>)adEcG}0*D8~I)$5pkEBrZ)jnSut|4n!<&mm=V z0Y`1y0t>{D$?;8!M1xGF>9Fe1qQ*$hzUtUEgDj$BXc!SRt+xp*j;9>w(UQaDtbJ}L zGmHzSiCB?+vM>txp|AY_5}+%cqlzgl-D%;04=o-Qwy7X1$c(j4XwA+l&#^DTLM;uv z=$&0!(LV=p{6kC9G5oa()7TI=SZoE6QRP5lgt_v|NMkj=WsENYQ=&`Rk* z`;!q`Oy;%F7r+a9PT2D-V&2oMq4k6=-vRc5C?_=xEBqfn_uow4``~A$Yj-G)bn`yh zXYWi;UDG+?_W9|~SFcMaubHIel!bFg&J!24=y^r?>lYqO?|JHI`eWCwOs~q`=kDC| z!tZ6hn)01m+~tNis)%vV+j%OPGGiQ~6P!Ev$$rbjo|#JVO2a?(+;yL8sFz>Aacg?{ z{N3sKcifxKy`tA*9$%c^qdxfFd;jnBUDyA?^od{kucp894?i^hPLs-Us-B6^Rb*MjNOVw$-I=&c`e1 zltN-%>c+{9fNF31uCSLlST42sTyIWg{tb;U7BfF&CKz39PTC5cNM&udd)xT5MzQCR`YK9t z#VkKl+ms4i${7FJ`OpGTI=|4p9$f*=UkPvwZTJu)iz>gZO<5$oS5lEJ&|YX9wh6>r?l~Q!9n5*o< z2ATD7-L^`fg|`p^taX=I#c!5hddB#W&INCgK|?20ikNe9La4>7b~8`Jj0GBW6_w12 z{6uBv@+^xxlzz7q1*IUn+}+}N0l2EP3-naFTU?=AJ@h~(9jv;UFW@wDk<1_ta~Xt| zTfON#*eSk*N)BJvA=cyNE*HrR)QX4AF_b*C*=MJNiiW-o6`gtVj_FkfgqeIWsbDVs zhGsBK)SmP}$ug`bRiVn8iR49<<7qtw%&VVo>7oEnID=sF#MzfuAdS+gVO4^zbgU0x zy_M54Y2C3+suju?A(|36Za=$MEjP-dGxG5#n6#GkSuX8t8ouirsk~y4Zo$Nj&|prS z*C3k-oQaLeg&Du6O+@(jc*m}MM5hP)WJ7AYc)b+$oQWs3=L3*H6pc$oP_S+-l6CEf z2M)an6?bE-P#^^uLxRJpN5{fC?zJLsUCH0`!N@+oYKs{X6g1}8(T)dB2dez*P-M;**&9z%zTxUgBB$fe zl`+6an$uVxh@OG9ywdKwWM>G8=CNr#Z%y9JU>{+6PO16$kD8`ONguSWx1r(L7cjwf zJqT3jI^Y{K0Nv(nis_hq2raTC`&?;*>rj9aL6Or9VLs|wzVVUu(Xz%$RaZ zlJNM4XTCSdTLW~_aM-K^byRjru42hWYZ1nHA5(T_eI*U8WcSJ8YCsW>zq6oOMUyU) z>_X7h7dU^hKLy6~Dr&76t^|v>ETBU7!f)h)k+k}fkG&XY)dsfC{eIOjX)O|SfIcT# z&YdhS(gu99m#ckVRM9ckbe=ecro4TV9$xf{1N&i_aFQxKRx}@ zKmO(Ezy0_1`oZ_;JA7}uJsn*=o~}ManbZfR@6yc+)B8VgJiYWKZoN|ZD4xqNyQ1V5 zdSg$|YN7VIs~5Fk%DeoUqQqy-|yE^^Y zzxZ%^{=KhHcb?HA*RjfZ@8a}OKA+bU%-{Cx!|BeAk4^vO|L~>hXaBdqF@49kd|>+V zAO6wl&wSrUnmX*tlFLe3?ZLu1V^IcI)F+F=&~$Ml?dbtl!Z1V5Yb*qC@q1i zn^BL!ZPP?Y(wyGm?GR?@PGW%47gGPk+T)brEUrDOjbAes>f9i+X*#o(#TsNlyo=FF$|zs&CpmR$snx`=+1Ve?w0Q`^FK~M?Dct`C~gCQiW-^ zq^LCa^RV4-TQazUb)tRe$##w&9J93bf+DZCW`0wPz%1aU8qy+2@PlS?#ajXXP<_kH zhCe$xns7lAS8fNrAVjpV3ojP9wyJf$J}Q(bF_6gPpkeL?%k1=>Xz-t+^<&uWTL zPXtp^ZlKjsQh!u=%AT9mIagL&is=9!jln@GUpuF?fLhAK;b!Mq#{SiQ(sar1u05v6 z3p#{gMo*H?J{GIkVGfu%Qf4oy4-~h*@AI2<^Ll2NSw7IG z&O7dQ%3CPqaoV89B+z3gbr%#5R8ZHH4B!wZZ3@Vag!s?8}Qx;QR_%ki1K zP@*xWV3FT;UG~qizrwlAER$e9FEcY=|7j09CqLE7 zaQc#`NF#o$628%^_wdnWS4NvmmO&Fa4fNiV&p7Q$i%Y_C$QUq#MP|p3%}%j{GU2rLF6uu0*4Z+IL9mAT zRAGi#z2h+yBv)JT4Cn~pW4O#m8@%}52TU1S!k3Jg84xmr3oR1y01Wc^p(EO$B*iwi zq12#T#5s%;C*2$^so=<8~DneJ6CSS|Z|vVjkp zwl@EPt0aQ5KnzdMIC!$e5yN-Dy51>Ic_9y?+KQ_z#Qtf+9-al;-4ZV=MAiyV04Fd}D1>FWQnIRGi$-7B&;xi>hO8)Szytvu7?a zxn=K6OdYepOFz7(x~y=5`hso7r;(-U!3|wtQ`ZwmTswTIuvN&-LeM9lps?_DDCC0P z{1q+7SLH{3(O0x8C1egBX?M0tH<|Q?G2i<~Bsf+Ml`TCSKyqPPs(dhMe0b<4Za*#` zu|II&_ilk#CR-T3Ae*73X{ z5#32S-SLemLZ{((WDjq>fB>>LY#W8J6*tZ^l7n)NdpD03be^deMQDh4P$ zrK;?>KbzS4n+_B1cPu9BV&iXo?suoZ{NMe|^u?E7n!fdgcTY#pzCK;~;N9sR&uVO; ze}5{)!wg-hy!>!_;oW?);)?sC`#&jsD5ue1^@C4hn5B9?=Zm16Av(NLg{kpQEpkHV zVz+O6L!AN|J%(B+Iyb%hz4xZ0BfY`mZM^<6Pd`7Lj;4EhYWg#ueAo2e=bxTle*LxS zcR%<0)91hP<>}*}{O##~{`tQ<{VN~&(doy3=ub+qtTD!FF?qj%Ml{nMXKWTn?6vFD z$FHF+V9{^0G6_ zXIf0@$Qu-lXg!Q+sLB_~^-`Izy4(q=g^iLObRj-w!Q0Wb-T?&0*^1Etp|yRI%F^)( zB5dgdw+^Naj3F6lBka)EipG4vxG?|RnHZyLexx?lJ6SZ1&<%LZmozVUaN)A!dq*q; ziLbKU)ne~0y%ze8F8+hzO)h+<<}QoDIyN0Y&@+jS@99b5yVK3PTC5TtSuYHuhl9c* z;L+i*M5JG{d+>&*BbDQU#*nr6%MFC_H!&qo>DyL()12+S)wIElpb=I|#^(Hhak4QM z{H4Q|g%r#JIjV4a6wMwp3!2ZSdp(mLOJcMgh287r(PU|^P-9G*A4hBA@#awGLzIH; zk>&vO3FZLI)rh%SiJ4r@=BTl)x}zS-=2)whu2|wil56Knr=TXVE8xpkKz{{r&Ns!0 zQoh2CG3Ph_nD==uC@WWWU}s+A@3SiJD-%+LfBCDj#+E+~BpLj>bMD^s)%&+~Z9`Az z+F`7zO!ILjp1P!BvETVT?tR@<(0+qP#*ev?N<{thmwo2G-uA(t>r7%*CbU-?ZIL22 z(!9A00?cV3tI+k(hRKzOUpI0-3sYP9XW(pmmQzv}C*Vj3)<$g%rWj~}eTcOp| zk~M%yKG2(AIIl^i;>J|eQWRGiZ`3cl#+h%xU}C@w)Xikqw#j}h#Qiq*a0c>_-1KF^ zKW({t#iedX%_9%`!oUcu^of81zRCC`J16mD-reXFo}5nGDHMG@A+*)tXf@qH+Od9! zH-bwSwA0Fr@^3c%R@xlPy5;wpzvUa4PVcEDeb7EA9g_W+H|q;G+oo5MQ-dH$(>i2B z*I<86))}=cn{~~YBtUM3E$V{Sj!O%g6s_}|m%10b{59U-c^neY78oh3w@PmLy+vEd zZvh%@jXUJ`0X5sKJ@qw$zpnO2LrSl0t=P_j8S7vR^JZxFVbhTiH(8Hh&|f_pi$b9o zTwx$XvC>-9v4TMN0U*dwMwwL8s4EmCv62a`##){y#x7Js{0K6f(6a?G=3~3_;!WE^ zZia))01_R=z()p^fr2Wp@iAU_P_LbkiItuM_UnVhGB@#)x%I%C5vP2oR$UdXPI$JL z<)XWqKHk#Z>sR%9Snef$Rd>jy4#d}hnFbnbmy*sG9<4BS1bqi+V&BAzr8c|cQE}v* z*Cu1+OdK*9Yj#{70c4vAg7KI@MtQp=49AyTKw&b6&sn(dgCha-ln>w9Yol`O$oG4! z+;S*lN{3$8gcL|ZdA8WdWQ2Z!KU$*GpVIOn(;%=&kK4glYhe?8AS;AYx#mvGc3e`i z5N7-Mk~}Ld0Fnau8zu5#Y;by zx%8SPZOmm4S@-%8(fiqw+H;4cJ8ma+lHguGXNe)4SP}dB^`PUCl7oXecn(?`ujux% z)7&o58mWrlEE^7*)#-+`zmqAjWA<7Eg>yR+SKev((CVk23jmBZ_JM;ozk1EB(&srw zw_Z+PKd0B+0^uo7Kgn4#<-D~;ZOlu?Ca{YOre-k?U*Hm(X`m<=pq+@DjFJn?fVT=G z0b3$DryFS?n~B+=hQyF8{c|i{2~^xQG^U)yW%$O-z*tgtMJW$j+_;B9P1hdKOr8@f z8~D(83&-?)lPh zsbrs*O&wFzzqL-R@r924+6UhDHr9a3>ar&tr z|F^Q=dta6+^y^2~83+n^g5QqWVAF?FW%Tbo)~+CIFrZZcY(SI0h^`e;+30|dYEZ-u zaintlW7n1ZbBsKGG`;)G?$@^9%swg6-5HfCT@IV9O|ea1^9S{%98$?RjZ9-gA93&t zTrzal!c<(i!njTlRYQs9i`{N_XCQPPvob5`n}zO1HjT}YFaIDd&V42{AiSR3P6dE= z#$WD(su%Vry<|vvrL~_ietp3C%4NHh1!1Kx>zs8}PXe>Q@txp%S_I|^U|tD*thpCy z7KwRM_^xobj`Y;97BBqdurS_F74s@-_T6K}^Y=@Y&tIx-*MIg<@#HUY<|X*6yLAicO{0vCgz|5sjSd`2BfB9N^1x_5a6Tw=s0C5^a9A87rQ^Qa6cp{n zaV_*vvW+~Pv=`SXIL>qYrhVX7=?8CS646eL@wvlq0gq!>JHiZN2}M zrsDP(PU**B)deNYjmMc`vq;C2t2`CV@xCk~>zber%~Ky&-QU&?Ni6=}e5mhopVMof zRYQC>hu3K@>PK~E2eg@eL23ETxh^Lg_4Vur;#veBscnC=8$C@`=?B-8JEl!z9l0Sr zx0}faH<4`huL5&i;)gFjC0d#>1dF|S5?V#}H65<&T-H?z=H1Nw@mK#0IqVlY#{HRb zHv4(FR%{$TRQb+U-exm^srYe-$>CBoXyRwa7vPxHuleUQfAYwm1AUX zv|(THH3h)U9`%qc_R*~$?F_^JUrm}$-OxXTN+I((^CI9Ej&(LdwoB^sA6qFo@C$R?_uwYyRRHY2gfnE z^5}M2jM6dFjLinj$On@!YATvylXE<8r|2RYv`1>;S7}>fmCJvz_v#zv#&ikprM2@? z;dbJxh%E&>;9hSh!AmVF!160v#V6@NmH;I4a+fpMW5&gyCaiA1cSgMnl25@oW? z(klI(B%W=lLdR{{pF)mDZbO-uVT8PUNnB3h;J8-AuMZKa- z7diN5R4Z+jnb#-LUg-ho2T@#SJpf*fXTw-+YqHVFYCC)sp){AWvS7ZL)#~;`dG`l_ zd=b;&)o$IscVHymI{k~MeslLNuV3ODMD6uTXq8fA(f7@;T?17!#AEMTqQ~B_ z&C3KITDuhE&K-@PZX1W zs1>n?Jms$RdA-(w7#iPcEgCoxqFb2QO5V=F$H|IGuYZ(Xzqk~S@NNg!XsL(B2QGcm zO2S(|RXJ0jMW?rg&B>O|?*~4l8`d-y z(|GOO-||7})a7ttuUx(EMI}aUUYybQMQ`7FLsgFGoN%=_*4Z+-65(|`Z-f5%Vz{?xzpZ>0L!?-*;*D2nSzV2{J0LsNtwxdB8e+KYcT zWQ&a}eE0}1Fol;cx1M119U_8b%aDoPF`jKUY)M95eSkh{M@8Yk+1pi90RR9X07*na zRC79;CEZ559kRe2A*+m|klMBZiso$5T3p!~GZKdMtX#ArYmDF1rGU5qm25Jl19m~& zK2(HA@QoSq1r&gNmu%YyU4ap8a%fSQY01vCLDj(7NDc}r32IY*04Rxzb!6a{2(`-G zF7B`5n}#y|vrpE~PYHW5Hw(LdBA7*CEdbwP0a*JkPYd5VR;)z>KRGNq3&)n#lfvkV z&BQDyQ?JKb?4oMNnQ1(aw?3!hxeCBoJ3JkuoX~NGW7#nJHbT7YURm^|invLZYGUgf zO%&sU7p2WfHM*^p2kRhRbGnh1d0`u2rdwtp4mzMJYZ)WRG<&HT?SF%4l7m0M6}*oo zS;AnRmAuQD;lP=;lj*;-;xNMBUJ@?x|>IEv7uPw0^?+uc?CCHoHtE$6y}62jM6PM&uj?@0qmR(N%^8Q0yvVp&8CIYeNgW~=BC;M#5bet&B(4?LRF20RxD@FV2V0C z1AMSnwLg$HlOt}+Qt`KVn+j*5B}%-gC#pFSP@29OpRxwlO;BRcdu{hzPZcupK0R=^ zcwP5W&qyEBpqy{S*$>V&&A^DSU2LSGqkIWH+a(QDaHH&OFYE< zvw)&PCAIC-fCu3!2c*&W0Wv2?>`YW*i@r}++-nlf1R46MwWmQ8ztWxi=&90ql7{YK zLxymY*dG3V;r*OFszg4kOyPH)0A8D*atIYCogtbBU+ zBNW_h9U8+5P~uBz?Kx7Ns+?J&u&oq&2+3C(-GzvzjQeU(%Yd^MeKkQA_MVOuygru! zCgoXr8og)PQlHf@kxOn#JB!987Crb#DM`C}plF~=SyQ(r1>ijK8`?0}!d>;f zUJet!x%oq11N2b()i+XjG=I1D>R#$c)7j+PmCSZD6mhgA&Ca%C_-v@t(UK?rnw%r? zIfkR#u|UW|axz;b6*$6%84;x=r(M74P2LBYJZ>Oe(3)&JICJ!LQK0MKV79gQV?$Xb z&Jh_KvujRp6OT?1QQ&mW174JC`AA66ez({LwZWe{VFaYGchARfx|D zRE%X2T!=Nnfz}R;I$S28bFkB>y{^h|*)BlETe8L5iKS%FLvnfHw(|$rj+PJx#E>jr ztC1#4U6O>#c6}}taVUpn4Gq2tIm)Kd>2D4+yh6*)V-dGC4B^eIy=c%2TMIQ%d_w|x zd;woRDJJP|qs7|ae(`hD```Y~>7$?d?diYxx&Kj%s^_Qg|G>9T|K^|gv(u3lRdYG^ z-1PFxAD-U++^3{RKU`>fDLv^I-u?dRhkxwPPe)H()dKAimf_em{!k9iyNpx7A0OY* zBJi#0uD&mdGmMj-dHx+*Y}O5bdd2KLT@=5sMW(yAZ}}X3Q47IWu05?Mc=i3>Hr7Fg zMP7o-EDPxWt{?hyws-gTjp^yDADgaU|AcIU!*P69(whs@E3bWr^>Y*9PyXPao_^v7 ze{}krzx;nsAN#%EnV!G?%=EdhzBv8WzwCgYrpJt%ti|NEpQ<0`At~B}y zvXSEz8TdfJx0tkkOB%4EBc`;RW;^@toM@I0#xQh&BPPLye-o9ja?=L-W9*tTSg2#0 zoMp2yFMy`MiOjSzWLu+A?2<=d2;_@i^|i*7km<#&7+rhPGg%229s{H!GqT+cXv?On zAps_spbc>`i?*;o@SCXFU`dow=R@iWm0!@2sZflTUuC=E!V?Qr_MBrMZ3G@obf_38 z{)O-Tx*=v2PO#B$CQj2!H(#G#xph;Ez+QM|lKZ1&%N1;_iZ@Puk;c0dqoe9xjxiJQVC*_&_m6kgqQWkDWho)qL1Sn5*mo%)T z%M$S720M$#KNSEvTVmQj`A&-*^wJg`-Zd<%{1-<-VajG^8t_rGTNb#i|u!-TA`zIP-JzDS77F_=*0x zeVpgbUKgj!`cW1R!RCv{bqY@LEUIIRI`N{f>$>)Z=22X-MeLT3r13Jp_?z0PqM;W` zM^y=->bJA^myKDPF%ZH&(EskP<(oHbJU z(-^f_)x@adOqNE$Rr)dLIZ4F^e}lC0>rt{>^>kW2CA;NW@zAx!?=}u{M>Ts?odVL0 zJprkM<$VJDJLJN$u6r)2?UEH0Or^JMbZxubrQGru&ADLIY^*lWZF4Dn_z*I15gS#{ z`R3l3A5B=MxfFSEhx1DDeY$J9X4+;x+C9z`f74czBO3VwIb~^teV7q{D82S~#4dR~ zN9xVm9ql}h^z6@^IGff{EG4b-M$gFK)!ex~wTn6nrL607lDqB{b4y_cap8dLgSstr z+c6qzbeu_+25GJN(T{)Z#vsd626WwWPm5@DO{|L(S@gtPa1CiqV?La5 zkdBu46#w-dHtnQd#L}Il$9k2}B`x^9@!+-xk-ye{5dc*v`u`36d!bIvm&@tKR1ZjJdsr4~|}_C$9s7*?I7zKu7x z*F+&s@<0BvjjrHZkBE|4GZS4V-461J$q*M~{1lDS1P|Wz`o!bAOm1?QJRI&`uNXPc ziXvh;jJTZQai>51mNGjQ&3D`?e@=aYHe_)-c*L9UDU9<_$55s!rp?FD=_7SJoyjKl zV;R}Vr;Kl6)L_4K`;PC`m1b|i?s8FZ+Rl{`d{F!2BJdKlc;EBSk9D&v7SLDs>cdKpMEu4uyD@2 zO*7I8Emyb@XL4nC;sL)~!ySEy7gT(1?sY+@BE4Tn%Cm5`{IWug3nW}swo*Q489g`% zxTt#(z3>3riUNy0NpY2M2xaHteKE+i)%o;^0Bce5ul_&(>-76y`_lBa8?S5e=B4TA z(xvH#zx{jkO62brQ0GQ3u=3Onz2h`>+0jUIqQ?^v3O*(|`6i{@V0gpZVnU)BpNkm>%jWN7pY`VbvxsPsP%W zpFHtzJ1s(ea3mx{TRN`15f-WTc73_rO3?<0coS^#Db8BPMTBl9_|#Fh4KM14HERc1)jyn*DOa<+fzs6t7cOsS^Nu*;@=~IMKGQduQiO zxHBM$nK(@^=%$EwJpGKSj(N+2>3iPwK3CHhwGjN`8?XAc(O=OM{&^*IUMuaVgoX8j zrsVK~H1dS17McTY=1Zw-T;xcUKf_ha`qO@BeI_A@)`Xr?zGaX{(~)=kvbcc{X;jxJ z9b0=WN(vx{Iqc zx@NnLS6F0IJLPxc(eK%Y!KuwzA09Rv9D_YKvrgu3LWyS!Qi5NcA))~~qS0PH3R=Bs3ty^SB0J1}wS4%QC-$`Je7CWY;1aRFp>7=O#`b4fp+@-zL8O#&C`ZE~+kX2fnD5c}bva6`k zXIVjTifAkBqi0>SS?y>TI5S@H0{whN|eAz zvsfA30F3-m?o{bh__WehGFPNS&lTEuK>X7l7rW=zl25*TcdDpRc1vTITc<`nJ32Oe1iyo8N=p~~N^jxUJ{-!QBtP@Z;M%!8%1?rw#7AvLKxJUR z#C}f6?#As2;LfP>g@Vc@r6bRt8a36>lF0x+0>d&oJ%h8Nkk1e^zA&&vPvXj%&}d4p zxIxtrIr8KRImRY#Ze(8~meL-`fcm;70(@8Ik`{sQ>w?xTeOo48b_MHvtXBDgi$~Cc zX3$)9Qnb`V*ZZg`EW~`3@8~A+(`?PNov|jC6ZE( z$-MH|i^bwqxk-6oz2UHr<89Kh!QLdH*S0Z>UHv&YlC|awy3h04Mfr<;->D7|hW;;z z$Hb7}9ZZE`VV8@Z1Y|gny55!WpOo94=-6?=MPbR81ySneqOk61O%{|Z!wC@&1h_#| zD*kOrL4#XA)E3Ut+IW%!Lm|A>mieN=kFS(LY3fNx=w8@Wo{9eajU|=O6Mrelg@DN9 zqBS-oYaP)|--#?b+9X}GXcl~#uzS*ODM_jz^c60?_AqRz{PkJbD3f_6c~SUZ}1HG3-rJoeGjao^iG zDnxUqHMk-N?epz`Dit|KW#KHf5Vq3tfj{(Q5hmv$>*u02=Mo*5`EgNijFmCX;T0;_{Y7vXz!a*-48Zm-ANieX-e2$kvBBub3 zfDFOe)MW^5YdZ@{GEIDgBho%*Gv;z`OD?J1xqTX!_hQ_xC8V>HDY&F4B7-n?>jNjjdEic7PavPt~Z#V`0g?Y=JG zSV(nP`ROr?%7u@Ne|UX!DoQ@qMQYjSqBS?lonuU-MPL?l&+CcgV?7;gylmEaJ$|JB z*Eo#&!Squ{Uy>f}hjX8<3(FU$FMa7ROqVV`KRta#V@W-^ct;D)gd@GC^M)3EzwKS$ zGJWxDUzz@iUIl&g&h6=MX+ii~o_}HbcRupxGf(ymHjq!`gzA0!3qOHvsd58X^{EFXa7le8|(5E2Op!1=Bx3I@6z z5Z@5!q!kB}yfdYPcnnRZ1gI#7Qc(IDeP)Yqtm5(5Qw0Q9Dw@VwZ`puf`e16@XCXJ1 z32cH{W1$bUS&b_-ZIgO{Bfa#y!Vm3&nwiTxXT_tW$+U=)azy7Q zT@Tomf4`pOfB$oD7u3Dp{qy5r`mByC+F!Kb#o}4TZy(Qp|o;2q5(|0{Z;J~oFWj5+8TUy}I)iWp4lAUfoX8v|b`vPz7LY5!b z68M29qz}cW7Yj{kJ}Qk4=4j|es^lWAtq7q}Zz&P^LON{>c5^6Bj8Cy2&ZrA|X(){N z3RuWbzP0jt{;2xo0+!EBN>hilojShTk2*Zoh8KGs>zu>2iT7N*Hr-S|e*M86-|$Yo z@H8>r;~Od3D?;9DMgsI1&Y$jAek%xChR_t+ig45~yNvVR23vNB(M8BM z{Bes8g4G(>3Z4eZ;1omTg}&?3SKGKJ4S!&YMxNPw@#l(^^a6xlLQ) z$2tJnc7dgka>22U(GyHB<;w^M&aF`71^=`bN*KkblR;vETx2#JJc+*&+0nn^Kfdf4 z9eWdo7iBu5S>R(UZMm_~zXkXsNIR*{_EpIv%SkY2-+h{Q=}TM6H9~Lm)>#y_)U2dz z&GbQbM9=(|nDf$P9hPfHHZhm{nCrA=qBl;{qPZM9iH0p5;kTUR z*D5-$b9!p7(k(L!+9A#upB9;=#zQ`X zJc(c0c5$bnl=L#*l?-1`0B2yc3xHCkTq;}UPJ>xWj5(wk93)P<_|W24d7v?YeH)k8#XNWZs$a9k1-)p&S{+up zWTi%J&{9GsOT3CXT((6oohAQf;zPQ)Gxvtda6xyF`dd>P_3{)af5_ca?fO;E>jH?! zWRh2b@%kfXrd9s^_EM{LVB1$FzGX=1~6gtJbzYFF#Ty7Y4QFHh=tGRu=Gl4DYUgcq8fq6M2SdLq6^yeU%R zqyU(Jma*KLhfc}>Y0}V@FU?y&v96<-uQypLws=7q+BQ(o;FdOR7t^3EDv2fao4F^Y22N_f zC&kaV!jH#a7YBNOb|V#QWp$>D#evZ5!erkz(Kyi;c+@pa(N}TT6xBISXMgrF9RLRd zY;)z0fR6SndFSPv^I!>JDoBT)@+e)RJI}%y?~g+g-c}F`jU$)5gJha?vf9RrLa!yG zXO>s}V7Hz)>{dkgc?^YJqie?H<6LBx>?={`QUh&^OYx7?911%-F>`tX%pv}aY|2XK zOy5eNa3Aon!EIMYYV=0SKzFiiuKJZ-gr^_>!n)5v?+K&q_NC(07^_w?5_IT$rZ<{VZrB^QNsobaZRPZIfTd2OyzHsmU zbv*%G-_*5s+qrQ5hQ=;h*b(2oL)ci?8CrHR?e$&7wNDZA?cN8vKux-O2CsQOr$yiM z8pj^#F+DIxenME|ST3Y{ztC7oblalnTu{~`gYTbH9?11;9~0(lvZ$akyFObT9N&9h z{q>s1TfA2BB8yBaCyT)N^1`!kpMK-BpPKIId#8*^o~I7v)8GD;UzmRE1K&Np{pvF@ z!oUk->@(O=K%S5V8xqbrw(BiBL?pvcYIlo?W&w4j(lzT0B0^NBDVo9F*iAP?<8@y| z$bVPt{6JLF0TS(LVI_zuF2seB5{Ougx3nWF4jDqj5?PIStqvDFV>^82nJ(ekWJ@%c zO035tV-{+*8w#>v4O=3_gqg22eRr;hfmx~@Yg2g=bGqqT5YW-Wh}(xL?8slp&49Nc z(dL(~r<^CK$M1Xh`(oQgZ_X)VVdpo$@&(lg{XwsleuHm=YksG}J#TxutYg7dz5e|w z$0F^cx3y@-T#wf`-_<JFJ7va&kpIDgbGAE`+LAX zN99Iaj#cqGHI(!Ny&hRN6DU)zyXIXD)4d z42xwOV#bfkr5b1(FXSoq)2xbJf1tZsw_$Hz>9y9p)|j@XEL@>@`^C$;2}wDLAM08N z39i~)5Q2KfhwLHo0~1im(PmuVxS+*$>KQD~Fwf8V63LQ)nKBt?Xi`DIkC&z2c`=bH zOv!d#lwXL3Bkeq~9CUq&#|`<^n}52V;~-`DTFPl}p7ymZZCu8d$8LFFK9J`+0HO1s zVWnuZdgH9ysci6&ThU^*G?VWkx}uMp$Z0?H6uquJ)c2nGq|_x1ez~^QE_D7Lf z>wX+MsK>6Sr4*6sb*%HafuZj9v&eOPlrHktCyI&fd@8ZRR1C%GPM9(FDyA$rK%||} z#{}kCe;b2{PpJY04`)Arsp&L0Fgs5GcQsq?h1)B+FrCun52rZ!GmKwd835l=O!J_F3y!3z80XbG#Pw>YaunKTkUWcmOwKCcQ_rRSkgxg#XOm4J zy5ZtXBdQ7?>JIO78ua_g7aC3t#syI3LQE9>N+8KF?W5n7EbZ!xZV}PN(X?mENICJ4 z-ir~ynVhEvqQ=u9vFwgF%`a0@ma#-=Oi2s3&h6$=8@b3(MDp0iJ2J#0#`#9C$s)03 zT3mO-)}6A*7uFLua3WIQ=tH(H#72*Z3QU;zgXW)Paz`=~t1K8BFMds89b<3^m94l} zXHk}A97MmFe8Ov>x8M`*=mGa0ZyC_md-wsfhgq9WZ4#qL`zm2Z%z2KJ;e@2joNwsD zwwU9jL56mWQ{wqp0grQi%lox@y2yfDjwL#(&(+Y5lsehKD=atToYMtNKiybq?)FzY zH~tVOA6wmC*|j~2CtG&A*^Jj@>}anSfcanI+j(FHT2vd9nui_)S8?Ol0+zVT0AY~v zxvtso7i%NM`G=6Lle?QTumys4h`+1tFlAw5k-DLZ1ONaa07*naRB3W9TuZO{1)&FE1#O~z3~I?T8y3CpFJMo715Ler2bUS>gyLT>Y_Ccd%uguAhS;~>BIgdEkxgE zoaCo&H70L2(UlLx?2+uPj8++!U%C7#J=uIiT~$=ue^$CKlk`nu=j8{o zceS8&_2SX=9zE&%t?zoz^pF1OuTPg`^ZiE`r|a5}zwpxMr~mYC|MlrV|B0W9F59b( zVkt!DI^f%G*rlbXG$u@RKHnJ*2$=cwC?o!az?WD>_j$dorfM;^q8i?l202m2^ zn%dklu`OtNXMkYdsB=t5&5UW;{n21(NbbiU;*Xz5y?aXwzq%2GHxlSLaPBI{5)d8ufjji zBJdsI^bK)6AdkCk>y${)}KB!<1WRTFYKMjNWM!PYmc z49VNjIwz?T>fHlte#2F>4-Q-2@4B;4^($YS9$SK?ym!jb3kkdGz60It7A$4APb9%g^>8=K^L>XxU}xu$?FV)`1q?s?{x+N zG#q!N?;JOZD?#2**BjC5Te^7Ww=FtmLU|iPwQaHCY82~i(v*>u=qeoZX%;e% zG}F%FW$KH0x67gip$_72>fY@ndiGkh_3}qETYOyp#gBLxZoI6zE1xSy2fQ9fFMMbO zd`o#~+i0!!J}1Hj`N_2hZdzf1H;cY1v+^#tFpkB$*wU98-t8|3ax;YzqDQyth`J-M z82hA&U8knu8#Qxskmv$Oo=|aehqr~TctnprZ1G3zIz7scytC>VWw+Akv#l+~D<_uO zwZMuiwkh6>SP?4QL@I0lN{-B$-+(4Jo@MrK7MdICB*FbMaCW2%zQbtdPU4>p*3eI0 zG#7tPJc^HRO88L>zG<1wKJlito?St8v$IG(ip*K`p9Q=2W$X!^r_`L$IjN=lSx^=w zSdh|D`SQmj*I5>-kohl&vH>tI+6`!K=a>z?{TcLu9`VTwr3B*18+2kmsBDp|I+zE3 zqLsd-YekLCQ4i_jE@cM#z%W*uBCTaBk6tii9$JM%yuyre=_$J-k96^8dL!)6caa;E zS<69Qp>}N)XXO`-K7?g%V62j?>)DYlfn|k^xuDZk&syEx1BQQG3QEkfCldg4>nF8n zhR2@=W7>w&byRB0|6rFKaw$o+$j44;>hT&^oEir5`kbdE{q*@ungl| zvA<4B#~5R0^pZ3sC8q3)1CeNtD~vX)Hez#{-q81rpVdm~ky_}22GVXNPuO@dp(Yc0 z-J$OikpKq^_dg{_Gv&C;owd+$R!qv_ST;ML}EL<}oe8>|pDhG=MzQCy&Ba=qIR#1GNzR9=m(8F|8^`FAoij&xdV3$~=0 zIA%hW{S*Drk#(%}Y*WPSo6(C^7G}8E?6>mi!ZtEYq*(Ojfa6zXE9UN7c$H_tnGpXf zZPH>B&VqC>Gvdc|+9;wU{h+dMG9POV&<1}b>Ykm)2am1l6K|-5eq`9fhUUJzqi?Av z$n3WcO_Hlile8~W4GzHQ}#AKd8-X4Zrme}Vf)%*k)SK*Eywa4 z)OC*F_zu}+iKnDF<~u+qVSODNTjIckr{Hsl&lw_dko74@+BtavQ8KoSZW*P;GhG{C z4o=Lu&`5FO5K)N{kqDxzw_PG)gOI%y3U)R)3PKK===Bdla|v$n-1!@E7&e@6q(~S6}p4;Im)+{po3aZ}_sF?)~)d ze0;k2)Ya*l%FpeCM-qBYH&*hZmf!mPr>4L6iC>$3?1SGcWziSK$;J~=NH{2g{Y9vK z4&pA)K8rJ}DA~3HFX)R*uZ5Y6`Z+^7^)%CpC;A+mZ23mF6vrb6Vkt(K-BPqD^0ov~8}m3FAyHUcID z#g&9!Y2rm#6O><*X8a)@pq1b%JF7XEK&S*41#42pJE){H=XUQTr}ofCi!7or&c`BS z_!lnvVABJ*V9LlJ*T|qS~`Am+&O=d*=s`VwPTb>wQI82 zhb+gST0pLO7BM^buvCpEf7K3GzC&|D1Ku?y_ z8qE|K{N3V?pw6ol( z)S}$zsM7nUarZY%#8)Yx&$|CaiSea39!7WHl4_yK+kBPNK5Qdj!F`!ND?)y$8`qEU zsVAOjy)bdZel2XW@XLazgX}Qgp`hAh_0zs8ZC?15Qpdv3J8-FNkt&->g%?aAXA?RMQ<(P%__b@KnwpCtuMK3wxF_^z5 z8n8*+tftbpCE;>6z!tw`6Ep7I2&0k>_CAsqfOnariP8)$>CP?Qu7=Z6=eUl$jQiHrnX5(ETvL z2}Xe%!YE1_!6e8)5F!C^2w-NwdG)(0D_>Rm|NiG3caOMnZ{EzR?itLqXWsDhKF2*g zJlw!`I11t5iYi+w8D%QZ+AgmkOwP zP$XTl!D4%&l>V+*eAFH4Om<#qL6Ww>MNN^XyV_So^qf~YYo(GY6pO&M+qfXWe0fRKrabojJwZ9=chfY)&q zCx#wpEWYN1OZ%CLB9pIW&cw?5UOSmdIDhquXlznu`~!0&AKbe)9Y1;nzV+DY}12SYL(+niGM+ux;cOZ-}|-%PwEB{m;zpR|B;V*dKr1(%vyw z$Ff?$dF$J#4-Tx-2UhYnVH4m7G5GKj4=|20Glva4t6E6Mn$_3<>!*vq&W#J!!5dH0 z2EWOr{0t`m({Y&cK%&j$(srk*qmhV{ibX#S>RKvY;T1T zvM*-4aR=KZiv zj%xO+J>V$*vEby|!o;;{P;B-}Y2Xz}c{A(421bJBZ{dXq64YC(&D30E5-SPYG{Q#M z$cx6C%E2GE4mi~;l=9RicFDJ;P_xuf@Q5q-cB+OaQWotnHHx# zzL7ZJ7d?KU&za~oudyH^Q<6E-w~3=MV*1YX`~T$so__cPzWIAFees>k=|B08|75y< z|AJzAz`?=-i^Zo;?o9vn-};-=haW^ga-}gA3r~!`zAs%Cf}r8+{nJyAKVH`bUKYzA z;a9JP{;&Sg|1`b*;PLdA-}#!1i-8j|LxH<2Y|PL>o_qjmyr;$xHFP_#L*}`{I;}x6 z*DM0i!H{{|H#3zwRwTi3BWhC^oC0FY%0VB%ncyfhV}NW? zBHXpK)7Gf4#qKDw3*Ot$Xk;F=&zV&|PDW!A%Bko`qxCy_jE>ht-`A_)AKt$|y>@n{ zr-IL>Q@-b|n?>T=!rT-b2KX5@j_MC-j?sQRN-olZBU%n&G6M?|Is+wQpUQkR!lT@+p9wYdu*bQAnysHHAWGP&WIjgIQfNgy zC4*^Ok{GZ*7oeQ-hko+KEZ?SxS@s;a_~Y)jE_Q4syr9<-0xRUkzXmA#l$SOYvFUSC zHY$P!W}iQ}=fz-X>_PS?iERzripKc@I*Y!fuxGICm-6ZQmw^3BKK9?i^o~B;#pk;| zzN7Ea>sp7-c#1A+AT0HEhcC|6IOS1=SrU!<=SPZ&LIPh-$Rww?C^#8^%EdksE!7-5 zX0@{*v5h*6Yb=zT_RqYW>rlt~F<0l0r>3EE9H3A6iN}YB>W_0bwMeO{S9HMbE_0c8 ziju{)g3Ay~#Ci=803VH#i}r?>pb>k(y-gHNEbCI!5l_dtVL*qlV}7o}@C5sn?iRbF zane`@+sb<7dK_iP-vRqcFm{n~5{ZR(?XkeW>N{sMz(zlEKI;&#@9p2PpuWeG%;Mj@Qxt-rE zuZuMHj~bwk^RQeES#`5Vyy_#<_WE)~wvLpc^(e2sgF($;w|> zOYkYeHo0CrLHZx%IM;Wf98w z$R7=Lxa)Tskk71T&#bU%pRJLzbUWBHnIVP(ubI1GrFk-$A%k;(r9O(%$p$+E5p zOdo2>RNsN4PN?OInuWxeSY%zhpy8$Jqx>0fm5NN%Tk+?SnQc<=!&+}W()Ucm4)v{{ z3q`FvU7u?zq`O7wl<5z>C~Tj40hBJHGC6`_YlNWvN=77ACi~0I6xbIuG=(^N!5z0u zw)heb(=)iL4P_zT+n;S6<* z?R~!cXIM{qbD>5s_yg^0>Vrjm%80#KMDCNwaiZp>bqUoz;A>R(^z=CQRzJV1mv+ep z@-f*`=~OXPy(grm;~`?RGh;!EtqHRY^lkMt3U1Rcnd|r^_gVf~4Xo8bwZWb3$jmxA z=o3n7usG5GW*|UETq9*V>z+H;OWoE{2F^V2ls;6=~e5vaq& zX2d0i{YihBU@d6u7i{{?7E9(Ri@z$zNC$@3(ttFu0j*4pQe`at!nc;8X?C}z(`*0? za>X}^wg)@-ZX=DZIur~#x~E#|>>m6SvW;kGK31)m_FdELld4oRBPtsaoqyS2A>!|S zE6(jaU3)3(^!|L+niaS>X+>iCUV-fUwT^$ z!SCz)z}TZuqJR4j-<|&DKmW%bf$%CyMj}2&B}0@>g1Mm&I!cVw{GCtPKnk+h`o)5Z z7lB2K3$7XyC{PxASVTF}cnYm|e(~A#`fD-X#fQkIvvB<{{_y^Ea`*o9;y$u*;g)#u z!9{1ku3E<;7o|Vc=7IYVY$z7hC$W8e_H_E)@BPX2%kTUg=3Uk~5T&E~ZCEiS5Mphc zat&Vr6d18>q=DGL0?1`LcZ1tn(=QnaBisZMSnwRFX~AgiP4y8KkP6DYD>0v>RY#qP z%; z(Nn;xYx)PCM!%<5Lzf1#BZ`g4Bg*@gJfx~`g4o};PCuO;5I~IDGzw;|TaI`^LmY(-3!N@3f9IotC9amdNVws4q z67cwgj_z1rc9U`q7EnGYGc_1?q${3d#EJqVZojb&+t#xaZKD1o9xPW0k&|^9fl9J{ z(ePDm4tnvi0UWmAy!uqWUbW?=-KfX?yexICH6vEd>}PK&#eQU;-6YLDZYpn5$~u~) zL1Jz!*txZIsmwTm>>vB!Z^h0&qVUf!s=W8NkA3p-Ztt-yNuG>Gg*DK8RWdQ#cXub7$^+JoL$GVWmGZjn{nhwTR zQuyCwKwt8%v$bhuKMH=zHhIC+!v}g5^jj+Hfi3_%;4W(M&sEkV~QUN5~9EMZcU!wZVPZ>uuLsQoPhE^?dpps(MFe!zaklJ>8k_LY#I^tG%kDA&J!l$iP$ zlc>qJPjT;FYWn=a$My#kd3Yf=q~g_J;EiIyJ-<)aX-s{oNJ)=-L@Fl z_V+f~Pn%BctMQ4rq}REF7^`0ip^#k4yVDtof;mzkanUpEC;}Z|Tm-==@%Tv?jz2`4 z#{!fU*rc6`om}t8$Ed{P0u7gtd|^d4`iLKjeG`OSuz*VKWIkvxA3vk*?at^D}*tLN`Herorwe zQKx^;*y%EHGr|w9$tByY8qrFqBl2%BVBfsd9Ke&S3Z$$=Ha% zuGzSztzY}6>KI*)BHOUjP_zBS(eDX|g%zMhSbbNMbKh6>R*auH*20PQ>F?^T81HKV zg74P7sW+4S%EJ@G9LwBLc&Nn?p-~drsL}<>dFyoLy_Ki{rPl!Pops7RW{I& ztw?$Y(8R|Iy{~$CLpXAzdwTNlj%|ST@`BA$ z1=V-PjE$~iOS=oEV-DID0Wqs=Gu;$-rp>C%sIXyvB#dw<&F#VG2bF52PtJ0gGM8T2 zfuU|$Tfj%#u&FLfM}M!?I2)nqGYJ{G|!+YzE&V^LpMmmx-CQ$W!0C z#S@JLt?~qI%(P(b+!E%en&fb&&ujSBT{BR$Rtfu+3h|kW5KJY_H;w3+aL z!0EU4gQzVfEn2F~BB~8f;~nb9cg7#`dVIk&JNvRuIOny~?Ej})2(HCoXmss75llQR zc=4+0&mW&mU(@U5SuFm+(Hdw(PH}Uw%RPP^dbc*wuOCzI~#G-Qm zhc}D-d`63#3b-KvpU_C30i<@2m8e%k3C~upN&)4SqfSzT>E^j z82AjAe>y+c!Y_5rd7ba%a$F$GTt9rsgY@c#3fdRPKs@mq^-bh~XPMG3Si~nnrXE=k zmUzjHwNbET*&#~AL`}voVF`e9t;s*h__I=OM{$!n$9a4Mm<8}CD}6?@op!Mgt>uQP zk^U3tWZgnuL5{sD^L6Hs+vR_otzA0Xd`2&EgW$Fq+Cf*fx0JiO;nxG3r7d&Y>vL0Q ztDkE`EB4)SUmwv{|6*(}$1bf~@@D0&xNm7|r`jH+x~`#%KMQxOzs+)#_uv$^)xd(W zX>TF$iqKc<=jPU=!MH>zvg<6Y)Z=w3uc)S8g_)J;XJ(gt@U`MCAv9?q^;7I(}(&xfs9}z30RoQe$bV+;bXQgB=~k z)D?pTEIbp=#Ork}0z-Lz^;C<%XVy}08}0xAAOJ~3K~yLoSXid=(PQlrQOousV(pX8 zzb#Zg(J#N`&?_$IvZD z`-xx4_%CxJbc}ry6gmiK_yo?>E{F{@SS4;H>j_GkSnQJ!wn!~EVp5}p)6ro1FJq;@ z#4(dJ+Yk&o^Hr$g$WROzPFlg3OQF^xu$A^KX8RV5jV_Ruj-6L!4IobQgwU@vpHl0 z`XE7K^Z}kpc52^59*%vSAX0vis+bBWJb54MmBuXSeoe1T{WsotZQ}cN-`8UNd)lWb zTIA(C{B7a)o;{oX)sqvCA-NFE_=;e866Wko7khJY)yJ?{xO?!ZF4bn499jlI851OA zCul8orl~@!N=wxvI1>lG0wwQyOnYyAL9eOSK%rbvhvwM8^*QwiO^&O*7F! zh|52G1eH69S70kIj3NpQdddy-ux%@`f#)EUTP}s|uiEh_FMh_7B7@(~8;E7N=T*Ti zVCmu3aR89gNg(1E9l{8&;fNrk-?B~Hhgb{qSaB-)(nayfOUAa?=;xgzB~KDY09pWN#)mciN;YW;>`8C%VA_lIFgvJpiFLfT;@ICyv? zUg|OC@Vs%3hYjvgv#KEYmQ|T}LkDe#_BAHz5fU-752BnwTgqaK6#gR*O6)7>t`8GK znr(RuN@&!!XtiJJ`U3lb#a`zLb3KCN+HWfp>~H^aoNMgF6aU5YjqTEH^BSCqk1xhh zG0up-1=s;9TgGBFHm@+@qv~Uu*%rq(fd#$f7vvkFva)8VHM|>|+ac~M-%$zctTDJ1 z3D}L?fF8w+-^n+D*5h9BbpxZD+SgOYn!wej#*P3sgh#^C@(w$%h=uoEUdQNe>oR=o z@^V|tKRUfnwKN_Z{OHR1Dm-7;j`rnK@7Ku^?>3oE4`^HWx-r&VRKm#bHs?aKx$c~` z1ykvAUoYcY^Rc8Yahxn^OS}Tvqz7e_E{$ybBX1jA_Q#wej`Hx&KdCeE8yAPiSZXSPQAg zM5|XHKlRitUYHamsQnQ&#AKXhaIVC;oWjS+-Q3q$t0PD1YI8MdFvlGi(Z@a^&X_h+ zQ~ZK%St#6T3|(aGcLRkr#S=&OmHR@8VSUp}I1{LtcnOwu zbX-R1Ga+^P>?bB!ebOi5B2_E|8Bt&ZINAl(U2v(ET;ZSPKOHqd8-JDQN7jzgab!IT zLo;5q{W>GX*h~F|Wau^Om@mCh)zOkRs4Fhq#qksUp=nmsMuKqFmDwhXr2H^k3$`ru z8rE@tR~J&e*vk`#!Vfa%RryU``mxB1EO7h;nC|@tY#=s5m6Fo3h_BO&G3b_Fv1T^1 z*P+vk|0v`_r`aFk2~hq~B&(XXZg5>`<i_zL7oC z)4#`ekEX9{arg7b4|SfsJ6-5|gP%J()A{(yPyYV)M^C2j>6^YBr+kmHUgua5Jv%*^ z9>1oG%e=#qq>LIk(8&EuU%i;V^QT-kjTGZ50+LXbwV28sDtQ5>2}u=NidhJ_jxv)u z>edk;fNhl@{0sX2@7rHw0oYuIPj-Jt_#ge=@$?bj{*`2s#f-#0<4|UIGs1Wx_1Cqq z^OhEEc+E5n7J%Q-t7X5ZZ*~6R55CjlbdZvFQwg^bTf%M!V)6<}{d?oX2_$788!S9? zm#Sz@2q2SqjopCGGt=$To=Yq8ly}y21&lC~Gl68P01H(7a|)u8UAkqnHwuJB|R9a^<5vxb;TW~95JZgJ+FFJbE`vu%_`NZ%on`u1z% zO~(~jc9Qk#v!RU5cn00@HDIYHd`6lf3*MT&S4_iwR_%u6S!f;UO+qx2gV*PSI{J#9 zxp^auqRwghB=Pi6eFF z^|iGK>AfL6cRMPS%nN3LY)iF5my-3W@S;@$EFR?vS$dW_Q_<(qCk9S;k;5A0jK#X~ zGRvawsmjSLmbl`=U3tM@z#$KueYv1YC1X(q6*zLz!lx2hQUL5PIPfH?0@a+k?Dkw1 zB}}=HIZ~mxnTG{C=9uoKs0`WQ{K=E5>^IMoq2a%N0P-K@2|6(3N(Gk=^rDrF%OE0j z-z+Jgajif!f|cKgx~6gQ;z;$H^(%>3kfyHj8s|Dn5V{eS>rLFavfwKU%`HI19(mZ9 z2?(ipDLsGeSI&oSi`126%$ZJJ+|vcScuUuzuEF@V?9!<#Ohiwjt)S_j>s<&zh(K`w ziJ8PUYChr%s#z&fa7Bnj#FZoRhBu#~;%!JKK}eR;$0$7ZKX!Z#B6DCCePiKQPyBMN zLce3tc=fv%f;sj@i<=6tk?lt^q_K@w44%7~t2k5Z$N$-uNpHie#CY zV7F4_E)!!&BswkLuwt#=fO23I)DRy^2)B$|B(XVdvr?A)Iu#72!`#Ap$t81^^&&yu z=3!0;Tb6(c3)G5bu7T}M>m}oQ6Ti~Kq4qhpXj{k^Ju?%ud@X8M2 zJaGWU)+1m~F2aAr6a@%M-=ZB;q8{0tTlAVZ78k4aa}0$$u+TCnIvzS4JSIE-B@eh> zw?$jzPGKffTwIPT;w{?C|}Qa)+UX zX4sq`f99}}F)pgnciFBs@eM68`Ij;mm7=d8=jIUTu=9JN>ieMUO?ZmXmaGSXwToc9DKz%#w`PGfudFWL^={QLHuHqRgJHtHPD0-oBr&*?@n*uKbhVzdQZhgY)V4pS(BSIl8aUFq~>p;&S>UJq7$w7dKzi4TNL*?spEgz}jEoO)NTH z>vfdV^b5aqK7Hp;v;drCaS^SIP{-On6RD2G$~_(vJ;p?(ll=&aX(ui%XJn>DS>O56 z)$~XU)Ri>UaJBG?)ZhQz`&nbfjoeYXDN3;0GP@hd`gMsMgf*WY`3 zmWml)W@EVm4u-eHIQ9Xx-&42HWF; zuuvK4BV1xj+7d6hee*r^Dfg^GWxHt3!S%BY`+MOVx@k*B$z=@Q$0=K3p;B;(lh5cW zFr$sauL>UHUkhrRpX>C*x4B(5ck#CQUD9{hsJdUO6u#X51l-I89B9$!IlWM|p*Cle zO~xp&xS^H#iU%^H(|1R$l^p^JVLpfO=;%l{Xg}5>(xJPCGre^{A4rfX>1wcat{-oT zV!nH!d3-GbR&m01o)3zc9_S~_JI6h;{Aw=bc~IiOgpIt%TjcOE{=PUIzRK=n-5{fq zO-~i~Q^y3wzBr%ZNyaZEQFu`xs)iZgA6#WAoc#q|H3CEsV-17D-__;EInj zQ4Zh4q=NB1=KIRSR%&2F0W(JQYqzEILU+%LEWeybc-k4F#*t(&lmt3e4gy?1Q8#F>pS(Qx>^5Rb$d_OG-ykw3g<#MYRzs0h;UrzwcuJe5)gE< zZ4(#N2`P(VxX01UWrm}Po3P{4QkswJCVM`-743+9sbB7JMg_EA?DZc|#9==;CMc65 zI+r;kjktQ;l1vWJTFQ1r9Qv^(MT_t9jwcImSS)g+sar-l{5XDjQ=DICt+v8-3a(4A zxLemMjx{FWR|~)QxS>F8%f~+URESnYaQ(*AaM>Nxh>h?lQ|)i0t-&#F>{Y##!G6^K zlCz1AW!dCzmTygFMq4R&^RYFkt&ExJ5m~sIwfRwQ36FI@Z;4CEP24_*PzP{cQDPw5 z_@h(IHb(fUvY0#`yqh7sB&D~E4t0}pv_)`h{4SZ$q8uCiA2nfF@1IaSRKus_>Juu# zirHHiXiKBmu(w5SC6s+hFKh8-^@;O38^vE%2lO@CwzALqE-9DYk{|I7&jpKKIb+GO z`zdzTAel^EHo`Q^03Lis+wyv;G~ST+m9JdRWzyK zfT2cR=VHR=^-Y*7IumhU_!P~dXu=gw{J0Q^HdzG1qNX;!2oN%NJV{GGCPmyaU8?9) zRvB@@!*=O^@DFe z0W96R6FK~ZuMSIaTaplRp)nT<`keL|_LEfu>|@&Tw)8S>V3*xBf5>l(=eBW-F|64b zX&j&6{TE!Q(X*?rL~18z!EsEdPT|-{n4DC$Z5)CZX%!v+>WkvSRph$L=8K%}XQb~w zLxybAxs690!nybclRxLm?w&mGYgn(IsyEknzQb?vQ6Q14G#EAn1sNgGD6HY4gU4_5 zWg++1>XFn>@$+kq>C|eKiJlQ#WxotVBAJ)HX~`ACcoRz5#2Zg|_T$dXPG*)b0#Jnu z_c_94$rfT*O3Fei(r|KSQPo*uhMKdCr_up z!nc6+z2AzB{5#(|nttV1=ZpDvDc;Zj;`#Ise)A!bIT1qjDM`uU)WcZsAY8EJDWxmDG3Q+H zN9s%T_0Q?6$GUA&7k25J@X2N3zoa_(r>D=RA3pg|hH9LaUcxN_Myfo~&RFnEu5#Gh z;BB^|vKw~qF>nQkKGL%EMThk-smgd}clIb-qYjr+&yW0()A z@6+$DUbBCww{@NCO#|oZi+K(IU2^?UpY?yXhwYy1N>b(0=X0?+rPmLhV|E_nui(Wz zjqwsP^u?Cd2H3+La_FKlYT$dvkClI{_~<|BOG)(E_MsTDZP;5Q-FDhi=K5ig7g-kH zI8Tw{hTwzgkrti5s``3cpE00rzV+;M`oZ~`K37n;`4L-|C;ivW!^|Tw=Y=}+Y}$+K zvNg6;31EYV^@m|id+_@=c!`8q&UyS zTsI87ad>Y!)7vd9a#j3$9sC}xb1Jp zqc*AQDY5vgdAY{(wGZtt1{ql&RS^+;^QnSEi63zA*>()RC=M<-Vk?Dgz-+q@IOq^j zk4hBPAyUvtAs0FIOWRP$81YFLcLp4Xld2@t& z^HknSb7LnYV<~r?eDQCRZ~CBOHY0NR7lubE>Z@!qN#M@R2ihaN{^;b+kuSD!S8?c! znqhRaUe_p#0B(s^oJ)1+M8u+Zx#eI6ZuG`l4f>#6Z;AKJiBkHtj$yVpA_J zb%{n7U|#6Er4zsOUzu^+RR5+t>;@dN_$j9?JW&uHM<5M|7i#%KnhAAH0AgmVj5~C_eGKp37#`gCBko z%N1R@(29%m%y>#O1466PK?xcO(rPND5?l%ue?c#C*GVBMQ|MNok}H{o*%95Q-swOX zqJ=02RXh&KRBgz!vbrABly`=WP#^25)`zek5=@0&;E}p;c zS6zk`y{=Tp+FSaT?E|&#Z=an_uj|}OEm!zvGj* zG!9B4qJj%2uT;E%4Vr4%&4C{g5L~m0K@ODn2NV8!dBRA0t0=+ z@%23K*YFYA+Ez$;p!!^|vLRJ047-Q-Id0HFO8Yi0o~1PVA9?mUq{Oi>;s=`h;DyDf z*YC5Cq`9lUCH(zoPp5a!o=s2mJ>h3s1b(Kz=1gsm1>ktPGwkD|FZ4vz&?@GZ6QAe@ zj)QoKO+OK#^BWh%u*4tVLJug03BdfvcrZCKL?24Icp{SX$w%r-8I47XJ}-I<2@!*B z*qRsOkYf(&c*IM~o&&NF$Aa5K+5Q>bkn^(-9{5$;5~CQ?m$eZ5zQ%svJbgO7ulk}d z_u`)UNJZ?#%-j;5`ITFOL!0vsdxP?5aaDEA0`Msdz`7ymnfFCJiA@=iVeTFp5eue> ziCq+2Pu^_Z zC!TVS*YM4a^W0EPy&vd$36}Ydf6)C&7U|p-%ucpVZJo&EmpT{|I4u7fOMv1fdB`a) z`-Bv^co}O`fvJLl*N+>>u@jc?kv5fc<3OZnyIebngp;`-p>1~DTrxqExLU?t?6y`H8A$EJ&4~5ylreVXL}jB zZE0?+H;b?#`&ipYrZoy#4*9(*p~W!*aaLLJnxv6~mxlY?*e#6_G#S_{c1HdhJoY0a zzswbXjAxWHoCA;zdWJmGlT@J=>b%QE3ESAB3M_#xgG!T_*$E^hXYysIq?dToNAgU6 zhJ^4adyUy*_uR^1Va-k#oI^`l!eTr_0tO0fA(`lsXMD!PQW6BUk(EeMLr#y2va5r&5_p873K3G(aXC985(H2gbs{Ew^JxFK_MoAR_KfxuO$K z#Zj@1G&GA|awt$g#k&xGR|hByYi}Mr^i#lBHZnhWMl5WNl(6?Q+lupg8zD)fBLZSs z>O$jA*zdhKo!)uzz)u0csqfL8sGMKaE1}O`Jk`st^)0(}RwZ$nr$Xpgc?DFY zk}526>y)A+$;pA(^m{zrRud64%9^7WVpYj$%;tD-$7G)Y6=mdg-J!=MuUd7`pm0p! zr!FG1b1MQ%X@mdz3ydu(VhasPST^GojDO@pRypNCO^I@)B$#-L*JTwZA@3jT84la% zQZDRyf+d(qrYF0M8WsQmAOJ~3K~zj?e?0Abtce&GoXJ@L_N$cyQ%+>P=&RgoE25FY zV!&+eCxNJckSawo$TCq5(l&{ao+_VZKjIo-A1~9N%l$;qKE|sRE=zSYe5?b^c6<#I zKgncW0-wWCRWiz}-q9oCcC5|d!IlJ&bsr-jO$E&e8w9YHTz6;{P|}3br&y$do{4lh z?7YyEzn7GsE83;`M7eRw42Ly+pf1vDegQQ1V=wqTH5S9>&0p#k> zT0w<-lB~QfzRF`d5G3;sma^ z$`AI^rYp;FW?6A>9)OZys>3wbBTNWN)&od;yZ9=b zkJxlY`;J0Wx_~>a&XwV-BpX!+D(-`u^@kM`%3AVE2x-TRB0<1VUga7x5AbZ$PF zzV$8LK38Gk$Vs+jOxMbX6nz~LSHj(x;5p6>Vi3$v-col|8Kqx;BZHucXTr{tk3~@6 z@zhjYpuf^9a=4g(p@m;x^p}%6x+(9=Cy%DPdQ%QJsWFD(Sk9`_#d5yysi)mepXg>i zU4Ew@s6@q764)@&qc&Xqu}NlRqp%DluY8utqBmRsGTzSYnHZd;TS~%Xh$ZD?xe(=p zN>E!MJ+M|I)drEwPGQt<@tGgy*t*4AFpYiJ4h6-OB-?^*woIw zFWXL%ymYOOtpMC*$N2#l>CdLMF^U}&m8*k&U2#3u0`S|%52h!2@{`41zZP2k3{L^` zW(IPU?SjHo?7&LU`FZX|E}I_P$lsOh@s@*U7rH$fJ?pBpIh4tkE-h?eWwaLvPbvpJ z>W8{w!4Z2G`ms>`y6%wSiQF^cxZq7>@!Dpq&Q4e1DN19XQsBJAVlC&L$9g?BZ({g) zeYc)BMulYBQO5b>bGm`)4gH?zeD%j#2pAD>^v1Km*nUnM!l+U$3P*fV2edJ2 zB-(`*F}0w}lf8vU&K`(Aa1wcFfyWO@rFLwn5a9u-kf07ISK*^JyhF|XyCv#@GL&?9 zpf0f+ZB@A|Dr~Y3u@n21h1po}J>jWb!Qgm!pf(ccS-NIOwQE!C1bcbTU zcDzI4v=~S0UE-z?$JooJO%t1xbsxPZ+{RnkN_x&O>aN_LOKsmUwisNm8;plxwr$J~JpU)5=#^stm=ZFM*+_X_FZxoC z^YR9*gq4px$k*cw384$hU>)B285bQmp*y!Q$7beMk=fp#A?vY?A~RnzBwd-7j8SnG z$$A+_kx_Moo6JBQK=1b^qcAp3O=8A4I$~gNhyGX?QAV^3rX!zU5E*0`*Tvq8wg(H6 z-mpRzsAYtaVsI7|2D~JK@m-iALkb7;25G@tZYq*B^$cN+wHIyKaJShDxz4RRS>_u~ zQOSCtcFtAfEW$lFIGXN1Kl0tgyaI5UI;BHPnd|V1ZM)oNgKjzvkhVjBuo+7<#5$pj!l}gMw3XBou;M6s#lm1PJaZutJZL3Fjv5m>j*DpD5l#7_9QRb3dz!Lvmu^hh zYRaaZGA~kH(5#S3q?alvY|BrXAO;_zNq~<}-yN%*$q_j9!Q{GLoy6peNj8&sXtYHp zVl4jFL@M@0Trj8?c$a_nA8@NtA%QD*xTRf@vOjtWy#K8qdPqe%%0t&PZ;pP3{j}A< zO0$@g3UlLg?ex|LTKuTEU2QES`gX3F`eY*`osFc{*Q6=?%<#g0H!;I8BDq+M2?e$s zaqd6Fuj9`CQn~sO$Hf_)t0t8sV_D<$5A~}{CGf85M_p*=uBjW zAV8tFr7Z^5RMtdmM{F~H4c~5t_U1(Z%3ZX|IU%`T#UqY_+0O|_o043{?hACIY}1i| z_gU#;FYF^ivI*FB21Ywf83b%M1RwK(yCH!-)qwi7Lp|9lovXv6>4BbneQ|j)J%0Uj z)8j{vw6J?IT?+qL-vz#WS5F`5N!ml6vK^Ao!G2GB6)B<#44)zI=n|br(v5BG1_@fP zS&1TrMi`6HfxeyiMm+yy9(q#LaAW%L177Q?1z%mf=d$i|Ro=ss$I}Cq_mN(;c~1)n zf8j6wC5<8PO;11g;q(Xp`2W;oM58Oo`A|_MvdBRkd>i>xPlWxm?|p0f)i3^q2!k!m zmV}HrVJcOefs6vC%ymRcwO|h7132T&i?`?d?T-ZGlqb5$B@K|qYfZX3iLA>fip$LkEi$aL@>YFcjTnDC@3FZV3u>f@y=Yd>{DJ|%YCJR@45CjOQh7-bCu^( z3(MSe&f+ii!Ou&C$}4$yCsNePqntf z4}EYazeO+cn&+pbsOzwrW+`L*vB+FC8kDI24#z%;b6@J9t9k*oRB>pq_)M66!ik;eVNqCN(vnQ zS{h~6__v}B_1j~;m8A_O%CU^uW!qLjEKpw=Qx{X+2^mA(aCR-BTf0_tA#h_&VqMti zXmZF@)=jyA-<4+2Rvn~PD}1KD6B(+1A%|hw@U|5EZQM<|D`1DcO^tmiQ9o;uZr0ph zHrGt8Dc;ijXlh?qqs}XVU$Ns&b0Z}x>J?Pi-bKgzP5f;}yRWNJvvjWUES0ssZK<`y zcUd203wEB!jFyIqMlcN)&u}}BL0I80ZS097Hu?ga<6$Ub=tkFMHf^Q6vMwL{r{i5_ zKWMw=a?eL^+2v<^_W3P)zix3e;^NJGEyYp@nUePjw#mhqX4WQk0`@uBakG!W=jShM z%_+^G9XTeoBVQkCo(q?V1T2$khYaROBQbf-2#~uSnM`P0ZaGg@gfqzFX@>}?H>y_P z(a0!rWgS60Fi*1fMNf==e+P)JYAT)dvI@hs6qah zv;_QAcg)t^ux@E+xlmeAmHd7E&LCjKEDlfhhlRx5l_Dl2kjMZ0e%7D|pDjs}m=1UL z;sdPtq&&J`SQ8fF#RJJXii#7MAHJBJ^1a-|V|5819mF)24CghwsZu_APy zBoO*R24=E_HEiGq?V3Q5#{?|ys;(z~nP_oLv*>Htlp|j3k*L2*m7(8|5b;qr61Pu8 z;}`p=<3*1=t5+5)b;vr})G=ZElEg=(0N8e|;)VT=eFp8SfmWrvgnpcP)c}TqKpN1D zz9`XV*NRjUBd^f}G#CMJ9ShC}h3XBOEFvLhDd?frB<6O*bhB7(z8{0-!LGBPk}Vaw zjzP=f)3oRZe3J__?6V=y;1i8F#4OxZOW$qjUaRpmLFgBEv}bW|q*=xQY$EL^JuC=y< z_ul=!UZecc^hCd_tN(2}JgiZ7g{1OgSHE=J{UZ_uwQw(I)e+^4Og?2 zc-VGv<@@BJ7J##GgyQLhLVfRp!|C3`*QU4M{DK#GPaZy=zVOAbPA6IfKG2x>b8o)w zI%5v;XW#t&>DNDgI{nh4d(%5w7%o5Lc;_{eFBn^DQ9!F35jfk7a{$<#ky5!WoRqNm zC6bZ@VZm9TO&(wiZzN~6%+xkiM}-YZ2x(=Tv6S%cMtrEAri+a9=dR`$s!olJ!-gbt z-z@c3)r%_u~~6z!UL^hTl$2aw2CoFar_QE?>{m57fk;_ za{G1%Em`ICbRO3sW83s!g3u3PWzsd@=4{7tq`MXq&Stdm848U-6lsI3{0L-hAU}`v zEnQ+!H)pFg*g^{iNbSl0J)=mGiL;4 zSQ8S!8b^xHJn?}Rz`v;e_KSM0^V|3C=fZDEN@+);r0HsUQ;WweAoB`m67>on@61Di zE1^?*rb(8%@$0f-sE_A$(Ec=l@(UJU#iv_?y_QD%BfsRU9^erf<%d>tY4rW33i)}V zx@5uk_(}`a+8_93A(Q3p6MdlJQs3&}DhK#eKO4-Vv>%I@bi0#6I9vxP3CcxkLs`L)ieI^jmJETSJ5L)0lUKqg z`@-B z?TBr~fjlK53X;b_D2Y(@9~_vLa8~k-SL}hXlqsKs$gM$+i>3WCHq!CQ8ww8f`3oxJ z>P*+$bkoSTH0o}3Fe-ch1p!~y*JfsClpo-Y`W<+CgZntz!&vQ`X08FDyiwl^K2j^B z!SinJAb4Yt=8E%857GW@aDyMxRqmzJOtuXhI5SBmms; zjx?Hp+KW{qjaPvWc{M2(YCX5H_3#uU4_UDR8@9~hv9H+lKn8o3Wm4f`JuO=v7!Wg9 zZ`T04iYoVwcxGz(X~rX41hn%z$Gb z!WqCOc=6(D`cR9&R@bcMg%*Kd(*XZtddn#B9lZxz_CrgS=qkRVa#6-L$ z6;Kw)Mmi@-2CjCfjEO*S!$$E(_aPk|o0E zEuI8IC-sEjgGmqvvwdaGqzIgE zHL)Pg#EK`9{q(OVSv-9%n&o04m<3{zC$uUTugQv3QAK^SPkJ2qCJy~l+-0&#)p^L5 zHS)6P*qN=SJmn!#t?+07P|8wpVMH2jK`9@}o@Gnj8S|$AS=P;;+xl1(q_+VzCEg%|p`# zspHMDHCbV);yBZ9)CWR!1YyETKEA>yih?j;0x`zo3E)@_xSPMyVAriD@UlRR5ZI0DIS*)l2t z{YM0fvE&6r-N0Y@>BJQSG#N2py&)&FFpxQTFOl0iKJ%Pp_iU_hKyc;g7Mvi2fmUq+ zbB%?HQ^^iEp!JKkAT(YB2Kk~zO_?z}c8i}rTzQf;xp+gM2}T6)_2WP5x^n8qRZ6bE z8gry!)Rj^<>)*Pyf6!}mi8eTN!u|+jF7UtqTYuLJmpr{n!apsA@igb+GdEi6JmyDSA zwV(etr(gRo{|l^cB*t85Tq$Pa``f?se@uV)>|C#oJoADCF~X;${Qb=Fz3E$L7t?Qj z^Y^Cz^y`0Z!(Jn_f;5V>UroA=o&9v!D|@7w*nkv>Ghp_cfwWotL_2F_>=$WN<{q++ zp&XKDOdIrt%xD@}o$?y zX>d>*>=xCk+w^<=mUz!gXS7)~q@sU_^B*{UOZIzIkkz!I-?1Aug6aS0u#}sgCdmes zeu&T}Y(sjsi&W_2H99|Qnrxcs4HA&@DP~S{ILNKgAXPfnTM;PXea+~4ig+&c_5&{l zOM!)9UX{ydrtS&;Pzyu6V}bcF37bAmxyIt0SHUxHCB&ZNxm`D39z_HE!9sVtC6Bgz=G*un`vh=m-S zs(rj85i!Cc1vOcg7ZoEJi*f(P+P~P-mD^kEM<>$c%)5O10z0eN1dPGiJ z^-mJsH}X+AeEhNR1ooU`o#^04c+R7AP==JgmBqdoSb(N4Xd?=LObhEH>sq+3H6cjs zOWUJ?JA9(+>7U zzE-~@e^)WLS3nQ>)+?2j$Muy;#*I8BO zIoH^nw4uLXCtuWo0XRR0X*4tNdmOu=HjdaWX6~B#je1NwYqHHn2D($G311Iv*vWkv znw{IBZZl{xj%iegYn3@R#3nrGjt;C}1oEsYfh|1Av?qW|6uSX4kky@$5S((*C1$>P z&J7(|em37MhlVF*W2;H>n1!#PG&`ff7I@Svk*c4{t0cki)RNzwyF{xZW1O2-=>X#3 zp#FFYSaYoD%XiD$zw5a0cYJ3q3&Bry$MUJZ<94Ev<5v$(rjPXcLUi-8qv|5s4JBrRcVBUz zY1G4FD|gls0zY)BPUyN^4l!Jp;zhFaLcEyH-J~RQB)l93!PcBjO;Hg6*qfx~pN_gN zM%spiYl4#&HR<3k)O_++x=aF(RFa^@9j*9a+UAK0h9Y`Hv56q7OAbsN9WOzPeaRMo zbgbmqi%C)}_yT+4DtayU@>*x;_nF8$P8O(TLk5Voe8pY6VhqV%*%zW&E-O90I~*}_ zLAZ{0R2{EqWjCaRi@?5e5)2=7o(Bb*_e7JA7}&xaQ;CeUHMo4O@qSup%ewnXDR*lF z0(u!6b#b_Lx}j8{Wf?EF>CxhX#5UWXc;$zD<3fY^C1JJFOdHjXWzz;kw)xO0&4vl^ zagQ*t83~7ZsmrEGWjk=O)3lX9+i^(TBx@Ag2WcY8N+Japb!n>oCKMUlW+H*&L}j|p zOls@~q$GF~PLTRiw8YrhMDGq<@*=tt#yoVax53Ai_PhG}W*4unm+Ea&Us=q?kqy15 zSYVQg0VZyW^_Dydn2w+T;KC6tICiw~EMM*~ml0K$HTA(=FEXG-Gbg*%CdY^hT-|uQHaZd{pceOz9_@TbftI9n((v!;Ke_l`Ve*T@G^cZ{v4sf=V&-LT56C z49o!xt_U;Qh{I5vvmKT;m$brNhBTOPyP#6MmSYQl>66^}ijOpz9A%2DRq+P1ixsqo zNQwSv^D2}A25fN`y`qD$q!o``{H6aOV?+6QMY2BKbEsLJ=qGw}1i&*b3Vm>KrZ;L$dQw%3kz%X6*ZC?IAnA!Q zLyhnzibv{e-`1kYk^5FLbWr8_dA{ zn2stznsWvZ9}ub+9W%scH*sX6?4j$eh%pEn`y!*b{A7iE{d|ke?`D(6|nO9A#pmmpXzL`-B<@ zeYRe-7LV%=c)XIoOYDorc!Fybl(D}WI_%UwhR024wHQnt)Q@s8gkqm5i*}(rFuX&J z1O&xN_B_rjyvUh%t%bm=M&+pLs+(SVSJc#G%f1?{Ji5$P@WFKP2htXBMR|+l zr$Mf0w#8q3$6{ng*%IPlZ2(KSTj)@Ttq7OWK6#njW~TVEHGp$$&al^Q=H`ubso1rE zmRuWNZc1e@;id9!JWOgk*e-Y5G`pxI2jKzSraGf{J2NvgnL%NXUl)OD{rFJ;U_Kug_z z%Ih4r)>gmaquM;NA=z#>1u6SsB1B_Y$0gX{mdvaLmu_c@vR_*I#YE8}jF12v# zfwZL1TJwpGZ7FP*hiy_l1|%3fQ8(3Q(|3i(Vk?sxZX)QNsuzIWC|MA$Xqa%#CoCObPU(C5AYxwK#3TVKQPqLa+C3bx z8AxC1LMyL)uEeW}tV0}Dz>d<8G0EZQ1y?~wEVycN$CQuw`74X5mIlWCL-~Wt)^o4a zLmPd{fFCdTF7lCvXI}f|1!$FpySIa{BUOfZU3*NT;;!SU8#!1>)Yv$QLWKRrU&$xn+A82_vuVWf7y@MBfmtRW#8<9)UPIeepyvZF$yy5zLCNV;B1- zX_G9wY%uf?4o8hq@(2{1)*2qdaf}5K*ii<{zCw#*Es2$dN)<3^XPUpprOHed$)0A^ABxJ{?cpR?H*?8DQp7JXX zKN2WdAT)=VxuiR8K1J0cr{0M2#^IysFW!4ouYqRNqt_z8cp@ejL!bM?=hq(GpZ>)M zAM4zD;6>mF4kPn)aru@ASmpz`QmW;%FljX`SaU{%NAR6SW@2!5$&*1#`|qg*wL z87;zSjRX^%yxa+;Ju>UC5u*RY*G}}BOD&(AJ_}~EoyH3fMahuTUL6~zrA@>8Zqf(h zWpZCt%iT)pMjmc1oMm!#ti?B!d9~2uk0P@GmiAI`N#3e68XlDBtST1H-@uI>I`rT^ zciJ{g(fKdYgrU`V4pEv9i@M;GTWO!XmYxFhRnl3aKk8J=mF&6u-^i~Y&hZs2@oa@KghWm$U7ig`5i`{$gmCCH!Eyp0x!oA^ZxQ1MSf z`i1I$)C<{=sA~tz%v9WbpYa| zdXaF%Q#5pfXnB$GPBoFcjtzyLuN#QxS9fPQ@l7JWxT+Ctv0`GBaqvQm>O2K3n6U;I zASo|xl{cADWBB6dYZ2ySGs5HA1axA=E<-b4Kac>iMznCT?`^=^nu;Nkcu~87vV~)n zPWoh^3}Nm}#H5q))bIHR9|eg!J4$CIqHQebv+`8gMYj&j73I>QIn4PR1PQFCW@E+v zy2dM@#tz?Zs0FnqvJ&VDX-)H{w58c)*h~IR?f!gbd}eo_Ju|>vyzMqjBPMGp`fM8zA;!Xjo3ySD!Vtblfq*xyX{DF z5FWs65@?Uqp(=*H47Vk<+h52nWl9%2ab^dK)OZ5MaZ`;q;a8NEJD7A*w91=R43Ly@ zZYGs2Lj&JTZBnDq0bh&+Dn!LM_A!G|>vjEdlL!rl^q)3Kf25{8~{E&%l8?=j#&1#mk z@oH3KjOMF6+y%-)_Q!e^^mkOackUi*!ggo+8GR||Lp=q2sumLif9^8S6T`xoMsQy& z-vYkSuO~P$@Gl*B6ugR80qGz8!VuoS!`Gr>U&Vy*HMZ zJOhEXwj`7mXsQ}+9m5<$H869dlu^rg6CMh$b{m$W4bzTGujK=2$wuBfFf!SG5`p<~ z+>&PU3&l95bc8^sKNv@9)*TcEa3g||H^MDaM@Ts92{x(es&+*Sv=M#rwq&9=kPdCqz8;Y$o)>EOruyXCghd1#K#5iY*$5a`Cd? zEivcN8z2j|B_j4)*(4x5o;(tajCU{|krjeCb{sQ+k_d5W4LQ}1d4fSxuF8RU(JX+B zQ_4G*qAl~3De@S@XruVv7lCZVyws%(Ef%B`K~Def-yvBqX@Xn1a#7a8x^T!-)P537 z7Z}48Ir<3D9oSvNik|}7rTE(5v4ud(amj# zJQ=2i0+KJb%2e$OkD<(o&EegT6(S4CvUkwGQHT7+#TN$2Ir!iI!{40Vdi=)pAN}k9 z_Vl;@$N$b3_utVX#hGu8yb#Xou^G=COpopyPoKN1h4kac)B74%US6JSVOk3wD&QSo z`NekBzr9dSDq@zRf1i2yk9e+?9&8`$;kbD*3+?y@VNHe56Y~%(6&*(s_ za(jPx(`}fi%^=>GOFJ7vsbm|{8f`4x`0y$IlGhv#K*_+pjQm&#yPMNY+Tq2*%Wr$W#^J&h-t}*2###!vw8gD(<367iB`QET!?JVJTZ3{)o zVhb8$YIX*B{KYv1YPCXv#-Oo3xK`$fLW%#+C65I*iB?<*p~9y`W5+6W{*%I z-e7nC0N@m|2yR~oZLv?zkaoLT048avx`4~sDxyBp>E$7Cd znz}}IQ1d<+@!P&gVb9d~Ox zWv?=p;udekwy!i;{ix7&t%z)sS<=b}8#~+HUS$ZO3bnkmeY z=;UL)V{o2Rfd<5m^UTm*5HTN5*1 z$4bf3^bT1ds#Gi}z+U(j!T_8B9RuzdAcv$i2ZLqjRpo1iDBJDiAwrZOwxtso(oi}E zrBc^e%RE9L+JN zj(2F61qStH0gds;;G3spSCa&31?L*x-__GDPwrgkRaN(=_cf6Jye`^(SM7oedL-`a zyK^`eGGa7JzTVTmTr;5x9@^@<-_ogOwl zF_S!Z<8o)Jzpv|PV!9SVGQp#4>gZ*FF+o|29G_t?I6=iWbzU;|tqrmv&K4>XOq`@) zL!~D!{`iw9$7S3%8#<#$;IJ9_C;`1a*rjV?9@Z$BM-QE0Dclgl2va2 zK7Q4>(f3cAT3?{8lcJ3WT=tx!Z-Kbb0a*NssE!YKrln5ne`Pjwa^N?}1t@`VZPdrV z2wW&xOVMWp$9*3Mt__st++G>qVs6bv*pq@yr}Yg%4{+D4W(80&$(~Drl?<^5TD3$e z`V-cwGux4lL|t~i?{0(iP3ona@u0i+sh#4Tk3i~}F5Le?k02Aae8odxi$ps@w44fY zd=#VErffJcG0h8yMul2mXBamSHqhYV%bT7Xwr5qo7*b?mcJoRxi{QR5QMkX}e<9OK1d z>_)X#vD?LdYxriak~`3=mVfQ9|A&$reBw9L)pLCdPATdlh%UdzT=(z)@$^&+z<40>6tG)@ zH*o>kRmQ@u3rwuKpzf!w;_2V>vs1GUv|w;0xd+D&3EAUSUoaP}L&))m7d)x&xhp;D z#lj}RaJsx2p8(E!%ou;`pZt#ct%K>`{guBuedBk(;l1|D4PLr3 zl9U=yG&AH)3eEtVu-u4W@nCg#LRbRyfup_eW^RVa<0a&Yg2MZ0xv}4aA6^o z+rSx1Ajz#$t>QIYUO5%9-#9P;>ex@Dl7?-2@GRb5e4!l|-|oiY$VlE0IvgxU6(I{SAzmPrZUo?o`McyCWl*YpYQFlkGbJ{!mgSVi?9*8pI3j4kugG1TD z9QrYjix@K`agbLMAuiS%gVOc|aHoRJQ`y=jGuIffrW8P-QI3!++Mu-^%wQ^}?Sj30 z``HhRR4IwRG15MsBw6Ap?V+-VNOzCz(SC3`f5f*q@BT(ZojNnI1G%}z4r5zcyS$9? zZ#D2^#h}mhT>Yh@+EphjhKFiuV48@mQJXT9=uH}_18eR#O?3HNLlMO;^$KOf{Z>X= z+fWF4sqON46W-Fz%i3=>Qk@gQWWRr%?WTK80mhg|ouJ29gE1E8vf>xdriB!L)s@dx z!72T@Tv%gZL75m|I8Pzq)(09%#>ht_c}tNcK5E~VH`)N+w3B5T1fz7T!j{^!F_&HC z5B34~kr`Ex-;8vW=SKVB!)i0vKtnnWYSx!5=J^!EQ$)NX=xDTNa~AOQme89#fZr z?z!MQ8sWd8Z{@!C{Hg9f|>?N5X-2~zUKtZLnC3G zy!(O74Fr0jpT2E;IlVPKn9enWI?-j$lNV6YjZ^1+*}0G$yG;67!(yPqm{COgho`ZL&P@1AhB&;$~S;&XDw2+Ns4c{@*j0I*25tC6SzZn}gsZYm*O)h=&7ZW8W zXiQ|`aDH*Z7fHA$Z34;h=Nw!xR;?>VPx8>oy|K5+H-Vo*V6C2hlB;3X280+_B^*6GQJc{Pu~U6JQWuYwa?3iQ-WXUR=n1Yz zSvvldqs#F~isLwF0gG0~l>@qsCo$BJ=R6=RWdbN}=|x^LWft5Pl7Lo#+L|YB_Wux~ z?;_evjzuzKpv7|@cEaY2u|P^9;;twV3e!a|wURG<$Y-q58;AyzPR7qW2peL$F6n2Z zZbP8tqOPOZl9e78o!AG~&3)^OK6Vi@_;59vh96S)<<<#`%>X*4q*+mC%hCmR5`jR- zj7Q8y%GsDBlV!8G@!DV^3`JQ&w8^=^-HSaEkLxYyO_l%}NdS!ozeS84+QpahO&66J z(oCS-+nli(56bo=o6T$hRp!z$m5}|@hCC0{xJ=C1CoV5?W@YT*MGqe!+7D^pi@&I= z{4B82qCD`>IE`0FTaGgNhj(DI$Q_r!uqRCPfA+mU(?$71J-N!QW5Gn65HB?Sjb<0ZrUI9UM1=h8+6FsT=B#GKl5HU|DxO_=U(| zp^{|zZt-T40i};mPpA8OCF$S$#y^-o5d28>@Xr6w-kUC4l3n+GS+{P@-RMRGAUH!L zNJl{n1d(~ph$ou05-bO z-8I)O|9}6r*4``g}=s%iivvF|;(*YID%-Z|~eeKL=JpEA~QJe75>FAMU=82N=h zZ)rl{uAY?k7Y7y2rB-6HGl>EW#kC0b(khcG$rb8o<`sa~fLxZyWqLv#U`X^p*pfP- zcN?>ztba_+fo$BC6AdcW z%KeI&K584psn)%ZC6dJ#uOgP+X`9HSylwG@d`@h@*O9k!jji!;Lz{Y2o76Vi$vP27 zb#Sw2%YJo?pJsr2ZcMuIx@0E9upNG2ICpi^4V}?9(qK>Nb`4Gl%h$~95R8uBoxiKL zoT%BJ+ zSD3iY20ykCNj-XyUQ@CIvCxBOg#JVitD!?hG3?lgP6pm{y^Zsg+QV_RVb2E8DgB{`hJjyi`laZduim?SQV8+Z`7snI`{dce%muoOH^x@mb{ro#Te^o*KKRV2Do8uT|Qy<^gYC7`eWE0qhp}2 z<8y0!9ex|9=Y(#nU->?&WF)2{XXi<-JTb(j#Pzdik5Z@+TIGe=)NK<3P_kw+WayC> z2L5EJBk?hi9i_L`9)v71=y`;jlGNZloo^CjNA*DRNbDG1ma@m1j-a?u;3DSpH{Mc-!NE-3JO>N32%o~j*XhB^hkmd+Ol4F7e|sYzfQ5ULk`)9#6GCVY7Dc=_V_{pIn^ zm&>~^?zz2>{2O&~0d!9n3Xg?lu>C+@@)u6D4d78*VzxmWrJwwTDXN4IWYz%76kTtTLv<2dh&`UZky`zT4;Z-)Go>nCTM)|S2Y^qODjK- zX~^n=la%<_J_#is_~U{tF5KcZ+R%J>GCAs)tmQS;WIFWV#FtM;v-^m_MOLg^ zE(*ybE(Xz(cTFC1@mGbxLv^LwYrE=$@DcVUn=LONp_$wh}9p4{%WkZ$-c8F4!895?MA zdgWrg1!33X%{&{fY{6}4w`0UlwM;q7cv<-5NB=q|sTe@8H4V>+pwISiQbY5fm!f!?4 z%_vVbUgErs{d3*qK9i0%)p5jUTVe=sL*vAk7a9rO+>C@2_w4KmLERiilH8njTabEq zDPA|#9Z2nu$zE<+>-eZa-OZaC-{{MT{9fUi9<8Cx(UrqDJUrAB$9FXW{F{1G`k8L({@lI0nv~XfP)|>P^^*^lpVe=KeEHr3 zy`q}w@n_O4{vF^y&~F9*i*Nq^@{_;!ub037v%jPUMsLlnE%K`@ol53#P-Wk)<-_u% z>DuNMIAZrQ!;XH7eY!vbY;Br~?J!nw30vKKH|cS_K{DF4+Z8r!*H=!eEl%Blh*-%> zU-F$46S8iHy2ha@p4<+y464Rbv^JZwyBZ^KQKLzwF%z?OJos)ugg>~%X#Y0FYzO-> z$Ho1XyfxbJui6*uExMeBw^)+)Zt?MRPqUZHo~&&1xTT#bwvosQi{52h4_m&xMcuVQ zcgY${kM~HTd)vfvt+`q+hNn$d_Q^({$73J=x*xYsSvZkyG_zUdIG7*?3w*^)`>Rky zrc{lqqOI607%Sh_mwayBI$Q4Pw~HU%df~UFJ=6p+=gVh0AMoWRCJNbleQw2LI>mpb zTXgZ@DFKZyGo9l{-!kVX?0pOgh$j=d2Il&gdtrR=bNj|QXQSnj7^b6rew0VHsp`obb`nt3dAd}`SUk_atUd>K0TSFx?Dz+BfmU z8_bY9A6ukX^ma3O+C$-fPe_x;PXB(B4kEV;LMYp?h4y$lS zABGR?BYt+D&?Sqp2@JZk|RFsC-$yhPXZ}sF1*E0@jmo(Gx*##Xq9d^X3KY(--fSuoUaTI`J z*8;aH(#J-98W!M_o)Ypss(ORJM>F?0nkPITwlPzlNt>oa*11h0H?;l_<(Wc(Hm{l^7eP52glt~<44>!*LE zuL(dH@^f#;1d_N_JF%9qjNvC8DbHSHeHv zO!X)Icir+THrI{uI{0c^`8bxZJv+39WQ>T~fQ{_9pf6iuTrmzDoiG-5z#+&VKiniz&4FdCh;kD) zZfPB>EDHPT93RK5M=A8c7A~R{-gROE8+MUj(wSkdXeZ=W<5I?UqMONZRQRfW;#~trpH8EhpJj<3W+L!ceD)Qr`!Q|U zWUWf9;{XzGTIal|i*L10aEH84aOuPG9WW9R+L2jAbH!VfwJPtM$SjgEv`XduCm(;f zd`nL+ee1=e<+nb$uj9hA<#V_Ax*JcnK3_i2Wa~repX-3}o^En;et+`(xh6xuy8K7K z{Hw!Xc-2z=pTBrZo4-blkKe zrP-unhcC3WuiA=#J`|AU3d%7osO%yxwp9vWb#qXVYuEUqR9?YdWm$P%*HU;)DzHOU zi+X)Jhcd^N-LXhID3*nql1Zh(6bO9^-+)`wN;@H_J7jFHM_lYiEeB1BsIkpklkV6x zpvlW1$Kz~0{rTeEZ`FBjI{m&9Ol~bc(ox4i@+;MWR^qm%4}5|@sZWP{+v9<=*A{Ft zsm5%?mxU>_lejB^PI@@0yh_TKrGWmJpRzsBw{uqA%OlY(uI#H3o!`TTEY4|cWbk35 zBcK?cV~4DC2ohX@5;J4qWpcnu61A56D@esGw9lk~q^WU3w-3YV4;{tV@^VssLT1&F z;g(Ow6mBa+UNWbHAWO-Mk2=OkL$@)iwv1KT^v-D*uDxEyb+hJjn05USZiuU3HYO|f zn7!MzLSD`s^R;KG3E*gQ8O^$eY8v2Xk29ELl8KGi&l=>$hfUe-1wpshv0zKyYc2qa z?-=N9!MATYWiDjmeB=Nh=oq+DD#z~I3KmV+$f0IX?Ry48vPaCkE7nBCMF2i{z~tQ< z_m?L(^sQDs2aD`=3N4)fNty#CJ4jSF+FoUw8W*guF3yZK0JUa6V`B*nN-+%Gg z6O>F^-c+aE)rA#L{Zcp>a&g1v#D$hGl=Q4`^lNwp$%k(y@VraqFn*TT9&wi0XZO z;)8GQdSX|!`%iUzgO^EPKJamI%mpNqzThn@Iki5{Q#zv4*66j!fLLxT3sHfM9As*p zRROmxLaa(o9qpFfy0lLl^d0N{Fm+TzpSIz>*4hN-^6eb zdPrCLQ0*>p?*SJZJVk=Kv0~l{#J+#V`3Riqkx1@^u}!m2;)m%LWnf?U$7lF9BQUIA zN1f*}pJ{R%aI4QgMGKmoK75YfQsUWTxscx{a!MV#IO7Q0E>dWrgVKcTniwt`% zqB{oL@`Jpf$m%1ZA!R2f$i(0SNtc_qB6U)a&QngATivvxza0aNy*olV$U5V~jf4`{ zc|^r`+IFe4zHnJPHX!nAIz)vxJr)p=u5xxJa}hc@!j(btG2Iv#m_ZIAeU@Fpq&H++ zON`us^4wUltWaDAVf@3JCYM7xaH$*k^lx9;H_@m}O!%N2BNzZUi2W_p*bZb_WM41K zlc!Jhgpl@W-Aw+*)9)-FKmTyKr&n5XuDq|C*>}!0;meI?ZaQny^R3%=^hH2T*xu2E zr$=rYVRH~@<;BHY8YAgOc&0N|ngD+I*UYloJ*h*@9|8tend*z@Jgs{}uV#Mco7jFG zcJ-@kxdDs4>_#`?g7)JsApn8i@CZ!`Ck8OdP(}{Wl+ua((RV+;eE9GqeKAlsuy5U2 z&eSje=v&{^m{4!WIlrUd{JmJ-fBMPt_~My9&zEmMd$hc-KKp}bpJ=>%V|l=r4IQJL z%PH-xc0f~F%n;cf#m!NhQfzB7>9Q@o zr42CLS!P#Sgv$xr@~Ii(K^!;nxvLy2tsRqLJjRkpIL?g~ zsp9|#XB$gi=Z?mkEZ+8JWJ6zInmlZhwcdu#$hjD>DKgdNMOVFn4t5&@JRj~4oa;P) zt~~k4s7lV~wzQtoz^B;u=(c+|BWB{!ecaFBJY18$jw@MBEXU++M#Vr5dD#Wm>3k`j zV=zDB!2O)~V!ZA{kgxPyzsFm|!k#a}`vD3eInP;24p3TWas4k_eCqxKK8O?d0aQy) zfA}|ub=^-4Eo4YZXEiUE4~(FBJVU$2Hr2!iRmPFZhE(pJWMYL@crDSi1!U z!FKO;AeuH1sQQ{sJ2qjEtW(w%-s5fqeGnzif5m~oCqo{FhLI2Li&z9fR(O1D`9lGy ztC#Nk>Q)oU`iWLfSy7SeCPFmQX&0_qNV}^SrtXk(*Cw=vwP73B4AH!mr29IQZ8F{D zSXoXV!-EXBwuP!~sQA4)o3f{xj@{6??RW5@RGC#mBgt+NbU_X^)4c0WxazR!{8|Qw zE`HD?x!WI2%l&z(Q;%A172V0Y6Va?CVe3PT6vy;E0@ytt9rNn+r{{S$r`}b&fU60Q zW_@G_24A6VJC5;Ji&v=Y#>KAULYMuXY>O@Y7CU)S@vrk)oCAlA+6S(Vx167+9jM&) z3YYror(QD_w6BIKd%Vp3EOMyfA(-+5O>q{Pb4b>G;y9^@e51z{+9hN`r)adR_%uIK z#ksosDWL78i1TB3V_8_!$y7erc76HU)`i*1;Um(X=JjQ#e3KLUQ<%zNjahSr*{>O2 zqfxX77+t}pQiFilG-L3j-j4yRmJC$caQBkzDHI)^XBu06Y9@6GQ+_>Y62p^L4F2*t z2Ri{%J^~+-pf_=vaO{{{dz@LBJJWQLRP%tm?3upC|15nyRfbiA>exMg zdJ3xBLc2dyZ~biTuEX~j*Rk8f-hTUmJNVhhkN(U}09Sk8WZ#$1%W7h>o{p94=Cq67 z2w_8{W&Dru$j5QpARQ%?ppRLJvUo*zi8m8#OS-omhHNe|h@)y)vA?l*M_kd`pUYn) zy|x8SPsTAJbm0#%evnPtzK~1A#7x*n4rPsrkE8-Sx_BQ4#M38)bd6t?n#4xs(uwj> zx=U*rT&W!5oU6sv14@L0qe`R{{nXvl&y=XLUqa+1b_sD`#o8z%>iR$?ZM7B|d(?Jj zrG2|sV?{@Yf-lT~H9uHcK9tF)yV5sxPj5xrM8QUm2#QzjJW^(CsMqlm)Z$ft+N9(b zg5{&7D=BN+45zsipzI)$j+@3`bej-j`DD z{9|EEExa$09>Iu5IaY@@^_93-k+*N%Ue0gdUH*f={huyRzW(o)kG}m!%j2hymWTQh z(z!<5clBf~6R`ZYAvcsC>xtl}{0^_qrrhj|zM4KA>LstWXY1|qI{PYarA+OKU+wXl z=;Aj&ne-(dpJ#fF@}0Z)!=-rKG3KG1>Ghiz`cfioCW?z$R2CQ=PT$5-Z z5tNYHDT=TRCWJLn@wvA@v%Ie-r9al#m#3+I{oCJO-q%ympVt%7Kcm+_f8&!sS$c}3D;Ny0r{4vvEZhN=MXO8SM4vjjJ(j#iz*kEDSYK2grI+&}QH|}< zOo9b)4wVQ7&{-eY#4)VUwUrpnf-;rCccFC~KyKp|xfu;I{O=$#=8k4|8!$=iYA?Mz@h6cxnJmQ?JpMl?BE`Ru8t8%ULDZk6i zd&HQGbmwKx{Pcp~BIICo-5wLa#Nc|~*Zn<7T&To7g-AGiz;awUhF6jkaV}Pt3WRXw zmNPzfD_*AIt1OA7wl`tnL2%c~dYDa_I53f2L{sL(mAFPP3`6_{SNvf}rDT1CN}lT( z?gfzxukJq2Z5LGZMV%9Ikw(Hpv8Zb$-;9_4I0B#yj6^QjZgnV1AE>!JCZC8S6oyXj zFc&Pk--HPc747VL@UyHj!G*T`Osu@gQCq!MMV!c?`l9+}&&SL*w5MY3<-NsMj4hU2 zd)ek)x(%$vvo>I&Djt9-UH1!ew%M+q4wI6j?(0C`1ZzK6uu6lI$dk$$d>wnrKP_sc z)dJUcwHveHcJ)^lj>ywOq8;hb6Z+V8H9$$6^0URh8t-h5=NoFfej{B*gRbD{WV=sv z-YL7T>*w{$(&=`u*2inBZM@EJV{LVv$LrwRK{mz_Go~@A$3Ofw&h9~agT=4y)&Jdo z`pZ2|g3>#-xWN~Z>A?nO=2d(^GG-H&i{U#34dQrPK0_+r)RZqWp3*%e`L%W=xNnMO zKYf;;!@6V2Zj0&|bX(k3zqLQbZ+)G@uKK10g*@pemHL9Es5FG6)DXx{w5XFmIv_7R zbYtkdU((IK@=Z&fUo?Sy$(5R7z8FiknT4`8uc0j)2^u*%H2SABcI*WbeDLYokWUE* zIRECFke}77pr7eRAg@J!)e@eSRa=+%s_VSzcbf^huKUY&l2u<+jog#Kt!1-C(Oxdh z^vlM}$K1SAc_#j|x~X@rn=QP0kXSK|dSkgK?y;~p)$R*jFzK>xc`Aps{)o$~vOVa> znMz!kMeqB~r$vvdDu&lhgq@de{=J^ertCSIfq2OQcJH$mg@!}7K! zu-V-VB5!Ik zm|VD^j7eWGe!^FFdV2 zTq$Hu%=9D}5;U^eb7w zrX}%G2I>7OWd=#NVsl$y-`yS?iNgmxRMFH?LSscNa#{LytSL>o4;bCAJTpQeCtQy} zIsz)WA(k$3)v-gwDsQKR52DEiEPvu1DS0~sVY~>-u?bVsh$N^bOMhm{hnY(jGW7YR z;_SfZ060OeoUqUYBe?2FB4v?XXfP0!RYBbbHPC$|1Q76c32SDWq2)|MZIuC{^pAYz ziH{6so#^ObDYBGawQUhsex}8&5=bQ#CAW=Ww6xk;r3kwCEuD~bX|Cmy+G!qu)&?1l z_UzEBhRArt8H7Dnb|W77rf}7l4QNtsd~*(WRVx45V5M`kJb^o1>Eg+2dGUMJW8bK! ze|?ixeeTUkb*$dx9V?wGCTopkou}M|Z6<>uGFV7EGG{&%iPcH&?wxzf+js8!Nua;; zSN_&=>u>z(@{Oi<|i`tW@}`FcUVGGx4TN8=P;Mf;Vn|NC(`2ycNQ$jgh{ zLd&_v0e*7V0Ns4P&}?ZIcUdvQVRxZi`BL14CYN9630j_ZWC9r7ElpCpJzCIbw2Mz% zd`J7hfR`CLI{e&ewYy4e?qD`mp3N@3_g-MrNk(M)sv@Ws^ZBwlFnIL#N>NtSHTlb1GI&jMP5Q13k}12cL)PU*(?W(7Tr2nuT6&Al zITOp|sq-K|3yzMn3&RaQzDMS+(N@5?Lwfw7<4t&sF=#SRt8yQK>vO&^9#8Rdy&pdK zUEX*DTFCHXy!2I~>(XZm#|`n;uf%s51YG3CdL&(%l$7)Jst_I&|6r=%hJK+wRj>hL zy!%3QGwMFOpUP}4gHvxhvFOvXk8L>PI9TM%b`T%+WrD5N!ehOv<+=Mx7m>H45@E(f zPjMe;5&af2mSsOBK@GdD;u5~>_F&{)@wPZJj&@b+!b9O{wfiA`ptX;!qc98I+LbgR zSery&rP-0HGV>O;i&^^&2v#LONM+Yc+6mmZy%W%rs*33xDv`8^?I7AyxTDSlxD>PT zAHJs5uDS)B$R;fEq_RMtUVSV)^2^$_%1U7HJ}j&hmoZm}qGa}tb3N9cejE7;k+vqU z$j>9uj5(=tx|O)kk90iZqoo`j0hRiweRZUE%*(Lodzd}^Rb}L}hdm|lvB6QcvMnE| z>o4h+I&zmaoO z9Iky8reeu=0;ZMn5i|L98+z#JJE-EZIJ9r=aB7Nk5IgfrJe zzI6NT!O#Ys0k{VhQ*upWvS{E3O znSlqbr0h)sWT}n;s`|jMI+B!_5tjpV#K$)mjJI`@mC0T%9QpY5PfCg>g28a{$iz1n znE0n3_)wzHw5>@1X2iD^R7ui?{%Z#tw!QFb11;7z6>n;{_|i?C?2inc`mRVTmfD`}c4mN4$)HY>~p7twz z>~}a2fCG&FXPJBD$ioLAA+ROs@MJ$_j0-fq?8(sk=2Bk?mSwb6F6C`cn0ct;m|b~{ zjUZ*~9MX@fYFji-oK-9mqt-yNO+f_SgqXy*MwTA~r_Pgl&VzoNW_Fw~(_qY34|Z@m zaPI;t4Dyj&fXZiZZJ9Vr%6<#p$ZKaJu}EhagF?cw zW2Cd;v*%K+mu%oGC|i51Kj-TF!?xCmw?X+Gt~0sVOQsZxtmuO=Nvn846PtaON(-F? zr#vtidoz)moFbrVdj+G2-hR*m4wY?)D;~7v)K$Q#5c~Z0Z9UEVZ25&B`RV1Ydpv3T za`~Ar|KjpfU;2gRU;NYmarxtKe0BLyPrp8V{Lts>&)&J^Sl{~2pJ?2ouU6_@zb?u} zPyafycaYNSsoWQz9Z=^rxFF*Eu9j#5^`&z1*hlMuXSa%@|w$#LB ze{+9%$#XxE!`V&!NJqAPgf?F}4(W>c=#knk-*4TzwS4k~-(9@W_~*v*vAziTlX^Y$ zXFl`U<;Q;N=a*mjtH0uL%}q@hpKBcUH-F|YEx-58KhzV}F=?)JR3bC2Jmn%m{Hx9$ z$;!AvXF6lWuF~5u+Xj}poE_1x#4Dy8sNVNc=<~PlEicq37mxTc6iR7=TP=rb5G(a5 z)0sz_R9a?N%=BsTj;{J$NVYrQr5DUU%fR4tTS#|D?0k{CIjv2`Ymw{P>)ks&LHI~# z9=|w1rmAYo;Hy}f47PjnlKm;DNB(~bay^;iWet&@ZGqC)Y03HqRNIR7cSyDoAM3Hx zhhyOlUH{GP1(}X}sh1-72nOp<9C`2|-p7)V7&aCp1fUArSR7G9G7@g6lx1aW$0#3i zQ7*x3bR{yn;{dXMj8aMo_Kt-czrzdyyv@VMDrV_=sAk-v4(X7MhDC^RjVfPWcMi>Y zUKWZI=dBobRycfhdIU*=30*#1Py3#M&Vx_*628t!oQs%zcCF(T6TEn%Ni3-S6td); z9XW%>)2k8lT)wzgugPC%$C4Yr*-Q2zlVK~g!;z$~F7R1bLPAFt)VYn7KsvT2G__U5 zjbd<;`#%umYo6`D{2&`8Jm7j=@ZXC)OAv8ulQK%iWxus54{ibbKmwvg!IaKkB#O+# z=Y`e>zj{;a=cT?#$Ipz>pX9*y!N`Lz2Hq4y&3zH#n3fEG;377eMqF}(vP28#fzPH# zS7lm-q;y+(;Y(lq=p+fe4OeHtC#dR?SJQzSCIUuW)@v^<8@D}lUsxAI$j zkFiJhUfa_nTl;F69y8dLk3QJdPT@M*l=n28LngAuv(2m}&BOJ`OB#BK`g*axS7>z& zz4L~8Xk<;7Uv>S4QSZGY*+|?qwkWeybp1$XLtt_h+{Wy+*h;hZUdMMLhnaBg8)Zi) zMQL{vI;q^XI24ZfQf>B~o>8X{olMCduFFifI9*p>wz9ouj`2ns?P1E_thb(X+ek58 z5#+?-cY8TBwS{l>PTThIfWCE^UUjg79(>(Je%)6tHpFF)8+0lz0lkG%UsR)U_FJ{F zVd$D0*7kjsGj6kxO~le0XAV-GI7Uh;tW$TK=(r_h>Cp~ASlK%1001BWNklb+!)O@NzX!I8`gcUo;N6KofZI9HjVnwfcpq|dprW`7FFH%%GHQr=L!#5NeoX7g})2wnp#$0GIkmunTF36bETKoz*K_yn&1IN`rsGf1GtMz;I6elrRQ~*- zo>KaATwcEi*PYk5gWTCa`K7~diTac$9N}7?|XD?MALt?NIW71%+QUHVhAT~kruUq zIahon7QTw<@|`x-hpquipE91xj*!@h&UU!%;=Rq6Z<_`#`eynUrBXhUw&S9yDMIG@ zwVG|*ou8qBkVE_n!l;%w5&?y)en1wYSf)ONp{eDI^P9`R{DZIQrlh{ibyHs))6HPU zGK^hrivQ)m{hus<{D;4{{K>bzzI^p}|IPBXKmPji8BK!T()j34KKV#b2!F6V*Q=tR zK7G90zyJ2~K(9)^dyk(m@U2_Nf5{i=$XosP{P_c={8;Q=cPjwWql>BMO#n1ee4|<8 zFmh(>bLL~5ZglG@Vef0%K93jG2Q?Y&eS|(Gl`|%YIX03Aj`Z1-8#m<76W5`5tV!Pw z-v5>-pZ`$xGkqcJ{#$P^-+K75eSG2Wo#j`4;g^;l`-#7>{M=vuTY5_PT%qvK>mG0F ziRJUyiH^&7CI1 zC}4vdY#1DKXV@v_PQ2mzO2nS??lkolL3dpSkT}jE45HBUiFI$*G{+IHu%z=jA!=`} z9PjF&GHPq=&*K=^@T(o7WiynTg0NqdP6IMUUgA|*mDlOCDASY zjFf+)m&2gWgRCj;n{b`V^(t-0vSQ)`I=z`T4uwj^b`0^i^oFwgtpD4L0+g`~b#^h9 zH<-Q9d4@MmK=TS}&gI4)-L0V8@~S#J4|O?^@6K3Fkh+si!3 zj4d*jg%(%GdM5%xJuh|OGIx2!qO9rY3ynXX=?2<8jkmN){2R>t7IWPj@mo*ma~U#9 z!Jc)>{)HdfPQTc1ZqR6gM-HW8Of^`qDWWw{(DSv?Xa#pMPqaAc5YT+o#(o*PM?Zjx}L+8 z>Cs2wrQ0Flc)J=aRIt~rw}CePLak-uI=tv@jf*`Q(oHiRt+1QWgGGOA9h5ElUP``_ zZPvAQnb02IQHNt8c0ltyIQ2WQo`&hY_SE_N0K65noQ9t(1O+loo6l}~ptqn&2N`GG zax=swpze;lywO|tJ;QSkJjzjvP;&c6Zh}PvwIH7+xs6!qP{&8BRY&dE&T17$3(A&( zrAyVxR&_*N>QOV$r?8!S0PBtk>l}XNI$^*G(D16PL(D}4qg|#L-@b8gd3^SK`R0r7 z`U0c+J}h5j*&5}G%XCFQIW_AmTJ>A5YOn(G8bL0)s$fzdWccX?o`dL9O=xpz^o5)E zJem6NrG6b)a$V2ao~LTT@=aOaloZGB2jAE8whw*tFfO+6P5kP2c-yIFz|WwVe&z|< z&z#*}-qGidEV%LdOiv=;Kfmj~=E>U6oZVW!c>ZAdal)6M>(bs?W-*h;!0py28)Y%#g-5eIu;!>1VW5sG%(wEA#P@0 zexi=;4u9diK^+83Yr~(6g2OJ4d+opyH-%>`jM5De4hs7Khw&=*jd{xIhF;triZ;;{ zAolA;99KNyB!@n3P;;!{ukH}R(?QY^7cWsmhtIXlAP0)ctmN%i28x}MVBn@;#K8Be zw4eniQwmFGEuy!tbks(bVc88n)P^}h9O=Ubq;)Z1*>4eqSkeKtp)>IMHjBB4(Akan zTqE*5ebS$7gE&fgwbh_NhGTHAaveU#3I@j;uF-sp* zX)h|}RXdpo1;#ipKxPV=hbt|r?)s8ZWA2iEV&{~k*@~cxDoVDSuEd9V;yH2F6>F4Iw1Jiy!?((8CzNWo7vo`zR*iKXD8gU)v}>5iFDNaE z6Iqznx%!EI{(}78d;1+vuJV+MX7O|*8KalW=YQlUmv_JLW6NiMRdE#+^hBPYlosJaxO<_#~ zX9kh6_XSB~l)ywSIm$wKwt7$aN_JC|)9C!WzdDGWc@hNAx(L?OP-lATmdRgep5(M# zztbxxrf>RpjALXNeHd}1R2K?=fKmMcNUmkw^T^-NP^!jQ2K!_UfM3ce1 z0{Ztpc%Q_UpMCEO%Rl_(UtNCjm;at`fW~XQy4Rj%>~no`A~TZ@fRpQ_6xS=t>sUFi2@CX2`Iv*$KL2j~*73C38Zh z@FN+?2S&mn?>-Z=t82L7XAn&(lH&u_bJZ8x7T8u|2e7>K0qQ=W6+G<^>o5<|odLSrd)|csD55BR!9y{7qM9a0#y+b4n z|M1#><5wCTB8duL+pmug*b9`gOxtRJLvKG;ObW=@ zhckwbdCtvjp09*U*19+>A&gcKyG0wjR74ZTaVqw#%jc9FQh2V+LaUrsf>q>02Z?nG zk$AcBm&EVt9OP^BGkrN;=b`>Pz)Z|?KY?G zbiZ|rdjUG%_&$Yd{QEW3I!EFgzmJqlObAC#Pjs)tJQ$tt>-TJlL4WXJ&2bi`a0A@; ztHg&S`i(Wp+9W4Rv_-X8X#CL9+AJh7jyg>&v6R>rrp~tECya;#AM5Z&UdT9(0C@?M z{(A*tUG^m9XN`=#tFmxg6e#vUq|cpmv?}rB0{Y6k*DJd#GL={L!J%1bSk7@5sP#Fr((iuCH|S&XuIqT@lx`Q2 z%`yRHdw^dFR*W5K0yv9wQ$3_oCM~5YwUhyuZY@n+`M6fSZ$EQ5?X0Xlh;#2Vpwqx# zxkbi>IPNEKq3<-3TA`)`;$_coYtvvR(bHEHS82@P+5<}o*{I;((^J47>Q&GWUp`gO zM($~f`SnXnbbDZ%&SK|sG&Pub%`E$o{N}|Aw!VznW-$ph;I>#K{=DJDLQJXMmZ4jhuK1BKJOt7cqHam{&xL)6GmK zeVP3A1hC?<9enuw>2g<-zIPr=wo6S z%s6Gquh*Y!C@h1b-d<3!9pwd~?50H=JdBqfSF8!*(59I9jY;1-x>|8=YU3>d(b4~o zs|D+fV&2P&v#!Bm1&)PlXqB)ndTJ&Wy7d8Y<3r%U_htE{p57)E`X4S|zXxhNIOge? z{&m&`wg-MC+{(P&AVin-VO%M416%3r%nLWox&c_9gsbh|$_FN-u+z(=%4XDg;E$u> zkS4MAQd+XugtH1+9wt&RoP}N#zeNV%N(wh5{CM+79Zpz(5iopJROcX(C*R4bd>bYnca`h5 zwlcz!OC)Q;cH~rUQUC~mOSCoITM(%Y+k}aqHeuNK(owsO!)i@*92(#(>}uAA#Ugfd zXnmqBkzl16jT47nA5Rn;kN>b6HFxul$gr!)#Fd|Ff!Y;cK1;t|M<^q&0aFNa!iP&% z2aM$Z>B zy)pb0A`Is$BOY&srZTC zAdU%RI*8wDJmZP27mt=-`)~iNBTIacJbu(S#FP`T8Ku`VhG}Ue8@QXk8 z)60MPcmK2H!CUX@X|G$#kRvbaC2rQzWweR>;}hc_uMj}1vf(>>fW@$SW#wc!yRCQA z@M>q4j%u=7P%E#JdO$y)7P#P1dwoVpdH$%oyZY$!LxUPo>q-&eLZ_Ef43cI|Xu$M)L6 zju}+rl#I#Z3r~{BszzRCZO)u|++_Qz<9$gn0bMS~HYkB;s}mDIFKr!4TbD3uFPl*# zC$RF(+&CCJ3DunAR=K8IM#`mvfunr$Kx@wanYz zi0$Ye>j}-EAFIsCY9oST8TV}>kI3A;5`MJw+Ei|Vi2j1++&%x&QVO;n=V5yGp<~I0 z+P(x@Z#z<`ARO@lphVjj16QPd+=Q*A+FFE7M#ZO*V6BLX-4I9^1_>GIRD%VO5u*3y+=#Y`hn++t7_;aCP&r*#HnX>3T~ zJorwms#h%GYiqnO-J&K>cK+6$HWCldB&b2;7(8YxF7u7vm|X1P4`tauGo?c+A%(0O zU(m(Bdv;I1Me|&P#~9`!-^MHKVUUnyFB}@~7;u5X0J-m9J)Yy!ueBqtd`KIBm2}vP z_*lPd{K1Q-`W@cedd>A+J&k*&-+6ng3p1Wvk+~MJ{oPpJ(nXaX8Sv|T_~P}2F1VOH zjpv9XR82NhW6zS;NZ-G4S2VvNtlx^0NB)TLP#0j|eD-*G>-@HQR55ge@$0%d$%PuX z6nR|}PuB9iQS#;@F8p$nmWxk)i&T=pqKTaz``8BpU%3b%4_pXFe!d8x|B$nAiLXvD ziszyvVulCPT&xI(gbP#J#|`6n0+@@CxIhhG>m@d^=bErGJO{4RNP?fzNd zA?wSnRbWQ*57j@Ed>?z@b=J$Ctp}sW+LH$C3wyRD-EL>c+=YA(t^IO8z-d>PXxaO5 zOT={@$AikGYF~Q@$UbTOxU!bSPEf}2x1IZAKpej1nwfjC-K8^!5> zi95&jfyT~5fPE{*h>w<_2wOv%nfZf7^g#JIP&&nKeVPxEak1}ljy~ZlU)`##wU7|CK3lYom*)>~P=b^i=z1W3U?H0j9xK>Wc zla9M_;=NIa+|46K_33DY`hVDoX7#WyAkzsnCU_;#4e7v%MxJ^Ri6Ni*h$Iy4cT5v3 z))?b0l-%0TCpoIrac*`zDG*sK87cE76$@f$=OWSEYw*3D4 z-(G(F!9DHg8ae33_M$JXF(LaxHyO$H<#TyK&h<*^2XDWt$>O`qt=o5&pZuwxiPt;J;LAV%SJX8+e#mD%2}~#O8^F(=Jt2g3 zysnxjga5yO`F}+pY5CQ!{FZW9jQdbe?lS4{5C4m=Enoif(}iF7aG^s z)@@B*-@QFh88%XY5k8Lp#PYuuRunU9Tdfy2MkZFZHCA+EI z$>Od%LgRPjXJ!>ItePzluMjP|UCGc>x-KMtik5B+jo8UKb({8;MRd-d-4S;?5#Ef5 z9A;LBK9A(M+h(k{_~LuLrhPnfKS531l&4>*LRMKO)>YZH3^wwzihAOQg}XtEp&Eot zCLOCZc~wobq8(?WU+0jV&e?o1#RF133HwrCSh{S#a7-;o8QRBpr*2I+Ze&JEtni#W zRe_`;19h8TcGUEgTHFF(R@ejJp=Zc}NH73G_doUEfXlAnb5ThAXx*R-&Ttopz zXCZJc8d>QRMum7)?3no2N<%IQVm*Z$Ev1h0{d7%F(c8RwyMCjY`-Ip%6PR>7=__2x z*|hvS&614?;i6^t0(;rU^;b;t@&y3;5q~5?6<-R4Q$AY68rf-|^w{o|Z04TIj&iMp zo)`qWVmawMeMH}qf3%5?-?!VB+KoHqgnpIp7Pr@)EoSB5D03|U8SAVLU8D#+KYbc|1$oV&yY`Rwvj&0+S8Y> z%j)U%GUU{+Y@Ca9M>gCQcDgv|n^M(!EWX!UUt7Lop{+lX*U)c`lE-$NOKt^6EM8H( za=Ky;9G)||M6;^l)V0BdOga&kEB!)-RSazcci{U|7gSu=t!FDMc5I6^I4W$eLi5oz zp<%#iDuEM!m1cBw4w%X;b7-t{B6fUYLXT%8?(_QMi*x-Ru%0@I%ySvmk#BiAUdM?r z&^@y~3)b}};{hvMFn&tS*@U|CFH9L(t_3!H6ZV7U>GDEX6Y&(VeydJ5_&(AHJ%jO> z0A4hSd!}#Ao_XT-iM};^|D|qz>1&=3^}EPiyv6p$I*PR$1LqqHuV1>O&t3K1N4ns9 zOE)7K(4T9azmT7Y(!J1=z~s+snjY$@WZl;D03T00lkB2~aEr}1NF`%(I4%Z7(I^kF zWBd2TqB4mu7*LZ}`~j^jgNCbhZKYcfl9H2&zJaVh;2Y1kbo2GDKKv%}ZC#b}iFFj) zF?r&<{NojxIAj0J3j$;=0t`A63i}~#KD+02oZ&7Z>8ivBb$O~9z>K)>`@qQ$1>g4` z=#|-R5#}P)f z-J~DehF`Y<9`>LpR~=)!)r82P6f4^%FEIK%euYSe`nMRB{>BXt`_kf|wm|Y;2M$S{ zU-6#^$KcTd`rdYiCv9LN?bAx6SyERlH6q%qI^sdwd-xZ7kRP%tm3uiUdDW$_+IgeQ zz*-lBE*saGYgU12fZ-3BK!sbmgF#)&!f6XaWO;16w%0j~n@Mckoa?-i$A&CnmM(ERqV`$T~+G|70AoBJx{T{W-o_3=hBx{sUi+$h!j zuEthco1`STpLEtuZ>5>2sf7{^C#m>~c@9ygt9B z30K9b4r1N-71XR(b5#Xp0*~Dq9pyRWYdP^LgdEVTM$fi_e^pt`nIAf70$Vj_ zJ%nKt+lzegSN_bE3~$T87XTvx|F;S_wI&a<3Ii7R>FbGQUxrakB zCX0#EY-8Hc)=b?I@#K)U4+@tVq1`7Uo6y3z001BWNklObpXfuxusV?eV4|5MvknHO+PtZ)Y=Bii=MkE@%40 zeIT&zc`cz7D*Mi~@Wg>`3pkhB?qI+;t~GOE+sPhM8KW!0Mj5%$sTqz2(M<+@kOMwy z8yct`0>gu{iM3*I~7tmwiNU--_)msUbT7Zj#yH1?_fE7>4gpRIfn zxRuhCXv>$p>aBkA%D_p)d3V)N85`&IEd4aH+YMWxj?|~ou_>)FE6yFZcD>TCRmwZH zr$8H<&TiXUx&wEceV}l?#%8Q%ZxDks?7*j_E7`GRT96gK$%`y~)yUUbY+{z-b?dED zx8y)Lyq+`RL@Fd!9|mZq)o^MCK>h}$7}qj!Kia14M8bjpUX){TXbrl^YUUFyJj{&K zM)=zExF?&PNsK^D*@z%fmqJ%grnBGaTP6~Df`f01KG4&w&zQ7yuUA`UJBI&Dh_E2i zx(&tk+`vX|6>sev8wRRz6K?7}U{*WoLZ*Cre-VRRQ?H9&_@@ck`^!CDkUiBap?NLR zW53WD&vA2)4Bpo3nfXRBld?>RzonNgz0kJ!Sh6T}l8~2%ZH0bULhS9 zdPpeImh!^HjxR(?EkxvNu+QCf0l~!Y9bKsP4;Qa~9hKS<7YSNR__DvaNQr#IFJA56 z+ZA*KM&{D;*z%QE^lI8lShk^O*|wAP7t&ZSh%&rGR2JnYg|3VhRTn^en2x^+{U&@| zCC;BW%wE54WwkzYv-qBOk@pQpy?O?t4I>vcZjuE!6>8H~Ah0-GAj>1A^O7p_GicZe z*Y#E+;FFczHs7{Qy+P=T-_YK+n#?d3l6jkHHPYyOQEdHcHKtmO8ZoC?o$I`AKq*Fj zi69~g??-G@b7xMUn(Pf;wzAi(Wax12*+=A};r*eSv}N8X6jZsnX`+Of3p4OVpj?;g zDI1D;`1J8|TW=cSEg=<-lN=sch2DeGA5Yrex^;K?yMOIhmjC*H`A5sQHIYloYJj=~ z`{*ksSzQR00bjnjv3&PC@#QprEAfu{5tYZ2x?}rH6Rb}pd7??(i)W0f)&(p-sX^Ua zccBU43=ug?&u{D9QTN`~#5QjwVFH-(>hq@>AMtu(z4qCY)0#{_za4Klaogp=zFDw} zw2yv6Pc!oyi=Vl1Yx&t9`_l66XFr#HFVMx4$kQu>{ZW~)e~VXdc-(bgPd0z|xnd~3 z4e2Af_rXu1_+p6cB=<2bj|+*)wuRr=W@T#!IEixcOruYIM%n1M_<=i0goEnWOhV`( znU*cqOP;W+p)c|V4^qO0x08kmrxGN_yQqZ+0{2&}2z1z}_IgllQ97ny%LjVagGzmo z3EFz=FhqdFPR!25jx3x{$ch)U!%tCCQy@Q$Y2->yw3TjGfbg)`F57viZITL5ebQ7W zOTU$WT6~MwNTSsmcI1t2Kbs9`!-mbSaNpf4OOM3x_E%1YF^oF#)TZH+79Yotl-X#? ztQ%OY$_K8np&%=2(nA=kWXlG2?iY1l3_pRH$aFB`mBVt`k>poN>V&Z=)PT-C%?7B*23tTp5aK@ zbG+ok1Sn$?x50k2&=+$!r?Rf&gMUc`CXSyJcGT1x8+gvq6sCD;16+I}a`AzQC99+4BV~RCQP{e-gPAU#*ODg`_%v;)7V@o{2r#TUs;jh(iBS z%3t+a$h_uqo@PTBP94#J}0$8nCKBtPPB*q<=nQysI*uC&Q9 zO!s#c%vc}Y`G{~JwC0>iCl3^|V}KEiK`-A3n4@fyeO2e$u852CVIf zz_Hvta&oE|iR1 z=uOnMwfkbp?UQWS#a3A6RbyKPsJkj{%3qyIhAZLr=*pw~U8nB;u4DH@?BzXB>$vxE z$-4EPtm`kM@xSMz8nJ<7ClUmgNF!2eZav4Mk4x}9c-T5*aM|BzuKs$~} z_I(i^WQt(l@&1fVIBu|TUiNXzia1vAPFQYSfT6fb+5*{k*0Qlsl-$vs1&JIKtk(*- z?$f*$fr=$=EQh#iISe(N#00n6S^bqht3R(6A~LEly$x{yD=(Qj2Q~MPYKvq+O+j9= z5O|5O{3k$i9mQEeR#59RY@v|}=DP8K9M8(6!P$7k3u7=UrLvtDQ$Ca(80waE2u42T zBWo&$s+?4_;UeT8F$+FAL5;~;Pt@uR!;_Uv{1(r-TmN>UcGV;>=OTS)OKwErOZf6- zd!KAe7V+W<;2FQR?Z`*+Do!$T9%S{6Ttyj#*=&6&qi(`a9zR~*d;2qE`($16CA15D zG3|x+QJ?>5pDg{h5w-i4o__uOdq1Mz^!>V;q_zm>RVxg+ztCha<>IMsGx~{TF)#FH z5dCDXUg5Jm*90*LZ#K$>uH;K>jGuU-={bXiS14E!p9$bwdNP>bNc1Zb<(~*oAMr|R z<#etw(K89zyh%cR_}MS$NqW6C+U>MVv>@;Eq_gsRaOdvwcmDdXDp!rX6zGDGy0-$xbDlx($T&wkj)j z#Z1@{aR5##)u)%}XOwGD8=r$sV#E}$f45mOZ_g6=yaT3vd^Bo&DU_NuUR%XE9tO}b__NNVFx^kEe}#bEB)?aKoR;_%(42gMAp(YWs!dS zhfV0~X*Oo&1$OjyS<@}PgDuZ{yKp8mqiD3Uop*Vrgitv8Q#RJ%3O zQM8svJiZXX7%$z*^=!GXV~AUYL{z{~oRg_oAZ_SGg|5pjk-)cXL%p)ID06jVM-D@{ zYc;fNM~R4xD&r86_g2paG3=+(;aMDR4dE+nFc{X2Y_gHhYZ5Itd)LCzo4lv;n$cd* zJe&V1^up`q^(k9l*50i?R^9#z^rkO^t<9(0gyZgennG<@+pT0R@kSo^-!$M?zMAg1 zqJ#G6^mxRv#g*v5l;B80LtO?b*kMC63`T-IZfU9G7#qj0a>vGCI*(%=KO7!O6}!TB z8oS!opgX4cieI{@ivtyTS+W5a8>mD7CBI(1^*XJmMtwJ#)n?;7GyMip+dCKiGFzEC zRVAC~lFU5zsDT>9L?QBdH$~>BdQdy2Lw8l;sy?oYoBgoP;8+{hsNnW|oWHA^PmDbn zxG=TFzyY2i{&U@k;wj3PXSxkTEd?taeU%#UAe%$40Q8|ind~J|zOGZ_r~C9U!h`9O zhPN8X%?l9h0z=MF4AGE5m)}5yj~S`+*%DPrxh@(c?GHYdTu79hyx=>A->|){r+}FR zex6_bXA-!+X~?ay%gP$jTQu|B^O30yRausx{BCjZB`XXzA&d5ZR}-+`x_G+0rzc~W z?0i?h3CyV0Vd2j1d?5=K7 z-qDBO7siSwkALUsN4nXl8=#ufeP~}7o?w-kG2UL?(8!kUfv0<)=XQiAuP3#~I;j%AR>Rl$#q3ZM&d`h>) z{*Zt3JwX50Hvi_muRT_*k`lK{Z3l(9tj4bL?zR0%VEYWfJ`VZ-XK*bNT`QiO?(6O0kMvZf}hl-Z$Z)v=WZ&hRiwTg=iX z5|F?~A$MSGvxEaNX=5>T@kIx(rM$(mpkb>_5u?+&j1!$FV?~dNUQhVy%t!6XTyW@R zW8?HoTgj6mkzecNe2CHfn+{vc6XWzm<82oD0IVeCdn!Y|u@KPzhS_xOvECPli{@Seu z-rxSFp2)o=&10MdmgYGY9;M2V)*oBoJ3QtDte@=Ak!VLqvmwozywL9^&p@|cDNreqYS*~qghSZVlRn|$jdVSg*aOkEdQnXV9AGt>7 zm3_!+JEl3KYYHymG)1V7by-hk%1Ns*mEsPcus~cvU#_-xU4D#~`*msSKN_=EzftZW z_#5<|zIQ{ss*dz_91hVSW;=#x5L0(;Dt)Y6HO6G|s*BHhZp&=92*D%`za!&#XgO8U zSQ<+MtVkU^MKYGIg0{fIq}pb-L6kWj3_j3zX(}gXQfVH!W!S3ra%+|WQ;u8Q3L^%7 zHbp(;gG7uNP_FRFtz~j>fFrzn8)BnR>)|AETOa5%7cyiVmsy3w^lJ=_bVI`zW;%`g zJm%?d>%&VV6F+a@-}j~QnTzf4>nrDo=6h_y;HO?i3_QQ*CEMt|YVEea@s{o(lSUGD zF+N2T;~$oFAEDcUpoDDpSqTeU`iV87V5?k)ru6~#!Gf0Qorh!)5ogNLn_ z#)tRn7t1Q34Eq`d!{ocaOpiM{Q7Z#~qd$}99%dA@HHFN$4K^}IPT>-ZFW`C|sjlA` z_V~szq)HzIW9&!Yb3dni6vY?xdg+lOUo0XnIM9=umcz>+rVi?uol%<{re!)K?~UKd zs-+v}aSW_1CvqlUx{B1dRzm5|G0V29K#fL)>sYnAf|px8FB^O*6ynO(eA&h zgFmad%liB>efCSi=GIbFXiERR=*Eg%v9_^SdMT}63Cl9;rkiB*T0S;r#TIhfO0!}L zd6oJS!wQD06?DaH>1u^%N!l%Ox8_q+wQmq&r$HliO?Vu2C?dd{?xu~W<23w-4 zNp{da?&Fj5UHD-Va-MV0;bT~sFW+YN7HhZ>JEA?yld@>%Nk~)nvr`j`bS^7rkzFjy zuFIx9>w0Bs)uAM;rybNlCD9`cU7BZNWm5c4-2^{54dve-CDQ9AVsgB$-z#|gijf*2D*CA4!fo8Ii|qOaQtdpil?B2x$U zV5?*y>C1>1!|<>}!iV;gGBHY)<8TQhW8{^45O^ArMhR#v+VEBb@IptAhQH|Buwf$b zjwUS6{S+{^>V1#0qVJJJ#wHFH<$o%|V)FY`p$_dQo^2s6=0a9jw~`#w2?OUdwv}u> zPx}7mi|;O;PW@CO%< z6#}nOcv_Z8^LOR*ZTa*Qw$d`K{E>b~`LW`DtZkYnaOlI>j&mJroidQ;DO}bs!~S>$ zkn(ZPAClS|T3i?=NLsAPD7rqHcbLYDn$yNN?uHsGO)C&uKU zw_M2jvTRFMd2HpS|6%=u(*w1Rs@`UHOuof!dA5PAZShraZ8{I8d|ai*wzfOyZeRRf zjqIvryKnS%m`*`dxu1%GU+ue=NuRnAUk%V9!=>7Sty@+nEDlhkgm$nZhBk>fM>PZ{ z=vJm;Hs|zakz^TV-SDKgN~;@ZyiCWM5QQITI)d|0Lc`krIbTOV8jZ{=A#9toXphzM zk~rFKufU-k0FeGi(g?%cL|=reX-g2bpI()_S~VuD(n9})b@mR7tbbsWcR~clDEooh zc8I54*tj(q$btlHCMJ^++%^V~L1Z%hgnq==`HHJ1KYg2MQo#)cYiuhvkHW;{uMnEt zji+);R=!k|Hxs~Ikrje>)b6hXK)8}9OT%B-N+Mh6*(C4qvp6*HuQ6FlRw|&v6@AbSFe&W54(QCI z{8^8zl`F}5PM6p=^#NIV94NZrN+22R;cCOd-=4n5d6RU;ItbYWE3z?4W9&xToCjTzi@_M3lk=hhRW0O0zgG43O;_SKhlQ>2e@;mpl|s$sSdHvTfTaHrdf3*D9nN z;}jD|KEyV`kBPM{V#>q}YAr9!#z(TU54*|7Avcb@lKK!Ols7ZwCJ|UZ@l~tHJ0x*E z&KJWeOxkfiiw~28@$tP8L9nk+_>-?NwSAmR$k2BjeBY`1%7B5bR#>WqlXi|Jp$=(C zJU*twRjTg+FgEfh+Yo44w~o<$6~?t1urVcqa~bKTL52^mIb7kADRt@KT}mJZao{je2bY{0vCMeo_I0LK_7RmzG~eAYOp zq&j;rWGvASOb|e!XdC$ACE6*cwPDaP(DGj~NAN&ic{%K_Y;g#@#7EEi(D(|HXzFR; zB{`fn{yu2{h(LG0PqmBooYHSnUPEQv`eUtI8#dTl@e17B7LOb6#@h-{C2ZFXAhJL4 zcsz1yn(3w3s{%&Duj9P1t?^9+d2qxC;b=%4X%CYe=ZlSM$TQ^1o#TZ;UEaX8>_WM- z++w!;^ivHCCoA0O!`SRsx)yWop(!@x>)OY@cRJdk_E17=JZ9PCSNry{Jb|Oz^SE^t z*g}TK(VY?(&3%&YFs=cnx0y@%3f-E^ZK9k`^8*UI>GME+DA)v=?4%BjB-vF@p}t#B z$sq;xPR8%Qc((lJjgObl-PZHEx-0%blfg_3ztEGxF~K@} zg@f^Zef$kfCU9kcSFdK~_0f;@)G+=)^OWr!P5izi`JD?*vC5FAWcZEY-+Ja^T=e-k6MzCw-aR)pWFf z!}peS@JtSqpMOJ7Iv#l9sbKt}LZyi0o7PY6vPnC#X+z;y?lpfeyZ`<6ig4x=1{&nr~RX(m- z_xRm@D}NQ<+qD*Tyolr?v$36vKoY!=VszM)td1#h2C^)5Ok(+IVJxLU=VP6YpS&6u zUzFG{AtHu_YbHdi<<3xfI1C{9M#jOr0ZB$AwWAJPna%KOV=d%!-7n=JbSwX>XuXfh zgPjE`bFF?HwX}8o94SayzX@ZRJwVAxR&zia=dD;P1nIn3N;&DYWF9l2EWK+jyn+PI zW4i$)**>-{o|B8#FZv-TRu%lIgnKQGCu3|v0q0&DP2{{%O4X1oEb4WOnfcg`Zyz`x z%!C(zrmqpc)C3*B3kb&RfODJFF9%+B`XBAdT#K*V$%E~kZ5$oBuL?T-IR*-X=mRfH z7H*13blFE%OzmX1{+s3~xk;&Tzww9vetD{=RKNKrf3*D0SN_fN&Rg#+@4Wr)^7!#1 zy{=hb@uEGXD|=ix#SMMME&vfT`^=8Cz~dNW0E~ZC`huJWD!2G~3Vry38pj>BD9TgK z#qw(AmwM-=pG>B4a)b*%pvyW|VSIzdA3Wx#JYFvM^cv@%&?~R27mV_D9wO4?hWnGp z50^&|KVHu7-d#Ta_`A#dAAhji&;&d2e&^d?U;gG#d|568b~?%yN219vg{p(E?Z{Bn z*^dKf6Kic#F36=W2JLs{y5YlWwH(?(tkkC&+pK~af8c5*2&UHcI)HQ?+d)P58hXRq zykyzS1EXNkPZ^}_!)Wb`#D*Ve3s}r@Rasede@AntUU#2jR|fg!+-jN=sqlO zvccz}v^J}fD${l!{W`*wJ>g~{{*7+!Up zA2U8oixOVCXL=K(#HSloE-@~0pp@W2HciyX>13c8#R#Dg^dnfl#EH~H5r@{o!((u) z8&{(p;Jogri4G$gpHb7VaoWDKfdBv?07*naR6mKf_|1s$a^!U=5Ss_I?Xi`te3mPu z6!%9E=7|&cR%{sKU<*;l+6>@alA24HM6M;- zn3r0$*511>Y|`p^&Z;>s-?+?Kv#RE@heb zE*}Rlh72(V@_^MfR9iWG=s~WL&sCsX`Hk(kOh3c`+D%32*xW38#GBY_3j0{xHLS2b z#~D-lS$b7&?e&1SQmsv{8fwJ(gf|MVPFEUzuXV}ng|kCDgIZOo$Ju{n2itZ;*Og6k z&{cD|;$*PhyfF0XD1D5+9)O$Qbr4Qqy%h+Dd4=fTW{n1whN+n6wM1BNFv`H*;ga2U;qZSX-$h1N{Rg|u(CQre!@M5Nkf zg(>@zchB#S!XNFevd-M`v~jblp%#V(qGF5gr=(d^dUE%vOP%E#`SujO9P=#f0Yb+WCK9t+ujaq)2Z z%Eb%Imv7$jg6_SWdOfq+$8Yq4cz9l-=N zt`6x6<=&D?$JqkKIbhVxe?O4{rLLmk2$?A>wK0?DlQ6KAdt{0&4A+;`nxH`h#ja}f z<;OBCLJ)9bah;OX=Wpo-x-T+DUxqd3df~%Jw&WtSa*aK4RS?zI0D}-o(>~%c5Fa;^ zs{QGu;ljq()ROrGAJ>e@A9`HY)(M8B+Xo=7(Zp^Bvg3-Ok_)rl_d3>)lLxT)%qeVi zRRW^lhCRBgh08NtrS+jy9@IfcpNfmbRfTczWz1Gf~lJ=|OH~!qcmKVe7kZ{!ojPdh+*2f3^JK|NXkUD;7_AwKEIkxAYSj z$H&LZi!XmhzmfaJBh|@4us`iyyafdvj)5wlhV;U z6%*F@5W~7yPYYGp6sBr}`X<7SPP^_()D=v3AbSKmVkaQ!sF?akfRSI*@S`jnl%s4@ zXZ)7kh94(3=GHoFm2;CPVVh0E031-wuJ-KI8I&B@ePv(3ve~EK=Wmejn63n7OIF9X zc<%%JAVc3}9^Jz}>iUWccAz)N0bp&lG~$#2b#s*Dz>hi(G*rG|l|5b)-^?0OAVEgi zetbU<;5Km47q~K&;iU8b#JCC?yQJ)+(RLBsmMkK$&9cgwYZ{*S*_Ijggc%i$z8uk@ zqd%L?IfN+umDlRW;(K2zH?F;Eo3H)!71tDE4DD@pBmstcRSwFmob6I1FI`SZVpAMG zQnN5}N*(&lqRYdQy+T{~ZD31uZL=?%DuAv#TzayR!P{FdJ_f|sPv@9A=7jK$$Chz# zN5qT2?WZ^Zg$r4D3JKdP2DMypN5AuX##OpyNdj)pcy0Kf!DC#a4IlA_jcl`|#1QAU z6a|t`j0F*?<$ey>V2wzx800vSa*WBmW1VwYb}3ZMQbd@BcO>^acuKo}B09PxG^Hny z=M$=FXUw>4+BU?ZYogu6Q7H$iqZI`Y1vZgQ2e;#aM6$1EXW_%g5q%R0OGt1&p-)sY z+7Eo?Neg{&oOr{M(Dwq_&9 z2N12ZS-aZOUpcR}@l^~9v$kC)w!^1k+3)Dzk6`7DoHj)Eyrb&^pVO!CU1za;j&4V~ z%<}3lc1sIt<+BW1o%#*fj%YmBH~XI+VqXt@&HTlYurrG+`lujC)(x)h$h31IZR#6hzA6+um~1I+Y>HLe*6@oWOM-& zq4=j8J;p`q>o9HHk~N(MU|%bx8cX>CUUWnsQAJtUZZp1= zjbUzJ##6ULZCNb(`i7_cGxq6sV)I7=#{liJLpaF*^uH%zzOwNUA1 zFQ)XL)IS?NP~&V}zn|>4#u9!?zOL6X*7|+?Xtxh@U3ncwV?XGSb@rpLqSrZqMMv%H z?O0nE=aZ%j=RV&epr+W1ihEi{wwIDGk{5cW-mkNT7?b?ZA~sPA-LayU7s&JBeB!-s#xa~$x}K~tdf z({d|$`G~{~$LVve$nlz9Mr|v)3*~u0?sH7$5n1shCnp(t9tA=Cj8Wus_m8C9-O^h` zT=Y6&o(7!?ruH^TKLC?iw|*X6NybF|xmH5Y^?C2{L(OTH<;zF9ZazCxZ|Esp)wiFY zEccFXYvO#dJkl$k-+p|5dFzeuE`Ry$KVCllnJ+BA@@v1PjJ0^GdC+G*_vPjG>D%^u zcKX!8ZtM4SpYfzEO{M+hq6J|;iIQDj>Cxw8>@RTUlS=MN+4%;xI+VGUz9+|evgR+$ ze4@~G{%GSGr`mt`ykJL&U|xfku&DjJ#D2TA_P2h-5S|iGvDksoil_Z|hbNqGKJe?Y z@k#mSpZ>r4{C~@X`)}#@g!P3-z2ez(DY>~&{`Md+x!=;~uD;fHdV02e@5et_e)z*T zmQUY#Q47o2hIH!6{v&q>%K4-F&jM{C)#9Q-;vzLiPA=P&$k2DQ4@9kV*mQOPG^r+L zZr_x2GOn~~^_qr{k0IoieH_kHDw(Oox(WN}$;ar=R);q&_6DpaxS_jLwCcAU0hgM6 z6o7;6SSh2^dludg5+ZkBG5+D>6E_tGdPk0{)SDFD3i4tak%ED5WFv$T-Pj~tHDUT; zKa8?94@~+Il9t=@0hr{CTXDkV3px5@(bm(=mh{&w-H+>#(#HQ5eMB_dRiZocYTi)q zV1@`IStg@wra@e#^oSkZy<4kIp$_r3(sd#(`EmW{as`jwr1e$WhabhE^=V^4iOHyhH(vMUJmX^v@eZf zsNE;7;rTn8BtpR#7KuZS>q4$ogl@%iwZ_Fv3|U;MOEL9U2_wqjcOV<4h|oo3ws@o_ zQs+Zo`J(~FoFFjT=03nOO4ui(Dzk9atg`QdY32p3Z7v=znCPAGKTzhQrbEaKID z8}vcPR2Yo0Qc&C0_W0ZNgFPO>1|2brmb%GJATW_*ha__xS%ns3Fe1D!%_E6(Son#y zdg~4GMTBv=iW*l^0joZ0_bzQa!{IXIuA(IPOuD&fM1fXy>bFu{A+N_Cj2lXFJqWvA z#KY(z&_EuxxsLWDaeAEuegfFb+PI~!0jcx`awFN5@d#e2HjFr8SoAipJ&7_6E(+3LAo2g20co$r5R_` zK$l+=qjHLV9j1Ad%kAs;b-Y~{yW514^t`U>vn;QQzcy|o08^^XlJb4((Z(2#8~NXd zuh4-Vt+$Vi3BTnv0~OA7F|+&qNv(0ok8W;p!-`1&LO#5nmkBAq!Ri60TK9EwGONFt zgyAL-e>;H(MXr1((-19T)zU+T9q5fBWx?aX<=~$!W^TjB6-D7EqBt)JxH*R0p8%v} z?G$BZ%B);{*z@k#k|C*cFG%G6gsBaT)rRREzX|(_ZWl$$;+=ku9H||}-lI{GH52bzMCK0!e&08q=#9R_0mlpN^|28ioC~i3A}7a^ zZL}!t;OJ)%l?A!r!>^`JpJMkGEbFruG$|s3p2?)#WWr)o^@;GWVGq=J=*LZr!8QLu zyQbn)UH;Z_uEUp)kFqA8vBY^$H-g-dXw8HX<2G=vup<7v=gi%je8)_Ix|h{i1%(Xa443{=79PiQpCsK;3vYPeguHNB z+Y7V23}N5WmB{AgVF-Oko{6XP{E7IMv%{*Cu5eh&By3EWo@9yTy3ujr(0h*D6a(v~ z&&A*Eh2IfZF=ZMqy>-UkXrw4^EvVujapVFKdJjfoYEVvjIuBe{?pt)qjEUWLp@mo% z2Dt-fObb(Bv&@>lF;667iD~^6v=PRI-g%ZL;AL)na>UP3(7k-=>}dJ)@k{!dio2SF@SYO= z9LD*><;}AP%X{zsczOKf;qs229RBg`d&`S@)b|JPzPbF?m%gYcfFJAi%X+Jcd>@}^ zR-mVApX;^HPD^(_FElAv7aKk=(s1+{6pLdVm<=!^itaYWKI=bS??=8lEoxgWtWo{LXJb(0)*E{01<8D2T?-y%#mxBZm7yU$E1= zs#zR9ljxqt*((};|NB4x@0SPfy|p}4A3WDjgzz?%+j{z#ea$(Kr-&I(Jc+}X1kcr= zU%7jC`P##$%m4Q6KXQBi*>C=1W84A-B&4@Yq->0XAdy6=<04HJhD2SNO1TZu;RCNi z6bSLbasW80I5AyX6n_Vn0@_wZ{nU%}Bij_Cu;{7*iDt)n=amt$65}zEaxm=dLuK+K z;F>>VJLxk1BpaAY;}Y0lv4_la^B(Pf@m2yQ!>Z_2f-82v|MIamz;BHELQoefv`Dg` z@F$2mVm!WWq)ppL(EPVzkmD<5jU4#WHBs3&FocTag>jv(@*Yn2WL zVF(jBMBao*Lsg#3aZZ$s>#a2cf{nHziPl;NLRd>7O<5E{*vhcQ3N}%@I{Z{0W}238 z7Gp%AuP9w_;k+p)C9O6VpLO{Nzdd&GE4W#*K#xnV?Uh%AERSRv{z8(+LszG^SKPm$ z;IT^0^YMlp4Kd>j{>)usUdH?ao%sP*d^{L1;>#}L6)yaj41C6P+>jdsuMan!gz~tF zL8eUHF({4jB{giqm)inHjWa@Cjbd z#(Vju=k-0HrHN6V=GU(L z8^GNK;q#*-#fO)I5|?m%m~?S(g$Ytj9@cFD70tjyaKTIAf^1zHqLdPlSI7rp8Wz4Z zYk!CMvIRpM;AxZZ86nfB%1DY7-IQ(sgba}5_04k+(G5vIk{mqk_Eq5kWE8r?L!rQh`BmDm!w zBNa^jgL7_dK9nVkzr5!8xfX|6wB-q7emmH|$E%x;zNwfw(k{8ey+2Ioz4$B+w;^Y$ z9+P^^2+KWAzw!~eJfH_lpYy?zo51*v0BB=uRbR4S@a2n?YTXyL58D_`jIb$LJ*NX7 z9us&;wZ@t+VL2~;@>SV}kUp8qj$l$>CC{s1Ca0e;*Y1InPw7SKdNu30Zg^d#9Nw!r zuG3KspMCXJ;=LctzId0(-%qR$Vnbh6PTU;wc_lm8r!diGsio)qj{upEzNGQOnb_wI z>Fi52=d3EkDW9gT2!Q?ZWGD+~TC96^918BOA-PZ$9B>t!P#vANB!`8xq@4kFf zru z(z}wKcpk!BWLaLhg)uF{ zC}vGr95RGFMofn=iQy^b8~`VJY8k5mcKJS>HF}Uf$Brh}^mH-tt%rgHA;{kImp>>$ay4O8_NrU+J)H8rz7Bd5B-@a5l(_ zb=XlZL1P<{nZS>Ernst9nJv2N!cfyzeXMf3hd7Y*Pty;Ewj24R#~34xdd&~!K@PEZ zbc3M5E^#PzgWCKO{176@J@`@V3-Zcv)UQ-CI{*iA>L|%`?|47h-uuG}%i`P^$5Gp# z-alY)oHb<8u7fuO-UV#PQ;tNNZbi zHR46z8KK=jREFLF#3ZZz-6eR3SMz186(bx7~va|Wa7VS3lDy9-?*qD?)| z!j%MmOUAJjK4QD($uBfPl)p(1lV!VaOB?kVZ`4@cf}s)PgFUWsCQ~2PxUH)qCPMO` z{i1VS`(hpLB*RZ!c@gMJ5^l7cg@x9Ks|z$<11s8Y16E`oR@7C>yLlzy zevJmUd}te;>NbkBe_?>NPjtE^_^8)d+rP1KpC|73U$D?HGg? z*2$-!yKq~E$ffDEL$Xl>e4C$RcW|cy7rghOJvhDSzvzH&kkn|mqdXvRTG<*85@SOe z+cFlHf-P;KraI@nlk5}b{rA9X816W_Ouu6=3g*2%YCa5l$NP@pLx{3!|B9Ug91K4x z%S#uQ#11EB3bDiNIdqNd-eEcEpTy_oO8CA6=#E^TiS zx|?^|N=Ys&(O`90SHNb!aRO|*0)N2zI{x-!_h@Rz3^|TSXs#X~MOnvbF-AobZWGRL zUwZrG>B?a$R@TLCM?<=W=vV&US6jGUuVae76@>uPFxRD+0hYr08V zBkW_FB3C`ZzGHj(fgF=U=j&-tV{|vs>u95&37E`?hmMc7qoNGuEZSewljxRG(;?Ni zio0EB-^maP40A2l>cgoz4vqzizj6LQRlEwiXqlaQYlPTW6?L7 zgOo`hlU;E1YrIYx`P^W*42!FVHl_{RDD<%>sm^*g_D zbM!=uwx{|F>RhjMCR-MLZLPMlNDR%Zmd|+dSM6cx03^Qnpyl~oCetkS^0duu^&hX1 z=3kWBkMWA7YL9E@%EUhM#y@SKzmAjx7$)*8FyqZMc}hX963<04es_n=$UfQ=`#CU=X2~~R8vu?ndg%SwEw^aMG-&6`D9;SwWs#u+OZ>|&dqf|m5!%9<7^b?6HY2zYf8^~ z$i;O({{VpFSgjIgfZ>!N1^baLFw;6w9o@OTTs+Y)rt^A_sSM60c`^y7^7&#ABMa+1 zwDrL*P2pc#FcPcwcvvM8z;cXkeaehVL5x&R%Ju_qj`pi=LC(M%Vtc zM}8ueMPOb%UAlB=m$r6*$b~j!3oHng9VQ?umf+~^14Gv)EEx8Lx*;7dBj z?&{4gFX_X)B^G}5ySSpck?1qA{P7l%W6kZ(^knN}Eg-+~NKgE#k5~}Bb@F%gl=GeC z#*;@{1lO0@G=adjUaw4jp(lb_%b<`dUxFj?N}K)5&0ppzzU4~N(zAc-soxsE60b_^ zE8Js-j~Fkp`@z%aUhLIQd(LnFo+?S@#qR*4zkNqrPGYvzSx|GaliU25@r~t)7P`Nn z1>f)g`1R!_{U$R0@7=t;eE!zU%d59uTJGxSLHzWu_APH$xyf5#)HfIUYlZpWSMR>C z{ORKd%R?=YJ%nZE~=H9#lAKo*C(rnCx3Pro#2v~VmIpqHyc1= z8ejCf29}_zZQ2aGK3z7ab~X6h&?A}(ZLKy}9UYSWKwI-;LmPA##ww=k6c@f^`|9#i z`rb$L+Tw{`et;XqfK)$3cr^=_1g$DU^2AUl68MIo@3F5 z5mOBRYX8Og5e%S^Z^^>R%2#Uyb{WH!8K^9!hh6Dfo&&Z>!?E4oD~2_9jTo(y-q5W? zuzu=SwSPKbrN4QHxw4KbeYwPQq}0!_>L0>(Ku`nHy5b zQ!{duo7To-M=JJ0)F&XMc?{+Gt8B|jS(bbp7A5NuM{3S_qI3}GG+>Vp9uxmWUf!VStEYaUiSp_$2QkxE+^o)j&hBCCOI-+HiYN;$u-hH$ADf9 zW`WdLcw5F4EbCT^NA}i76A;I8{kVy><<1CsXb80^cQByl&t$g zvIUt9f{QFN&Zbdh(X-w1(q-W(9p!+jaZ~Q8cl=36pVs9&UdIiPUX6W36gc)5y+c2- z&-lqOc;vo+q`KbvW;u53U*tJHVy+~CV&aFff{ao*kT=75*PYfyurGA~~~`|&rb3`!Q^ z`Y~Ongz_0@%;AWaqI5$jyIIS*evh(<)wkBIFe84X9jlV-E)M#)&4B%&)xj#SEMWPI{+jew@i+a{3vmFBRzfIp1m8*l87F~Am*k@X@GE?Z0*SU$mB+d+ z4~1OoM;=Vzv>lFIWaY;IF@b9ac2hFy{t0Q96+WsA=8E!(Q}}atLiich9Jg zkG+torC-rZK)D%M1;0GGiUoLXII1zGhqwzRVrgwR##9#aAoJf&b^Zni{CDFJO5 z3oHi;2F4RxED!PA*Fx{_oxQdEgX2#xFR6WZ^jpAZ`aM4{>M~{a1loT>x!w5YN#Un@ z9X9Q|P;NXmd?qYU{@!@5n=7)RFlnbBu%Y$6H_%28QwP_#;FvJG$JiGwZ_qSGwJSLO zKnNez{-LjDZ&!0Eg9y-4yikm^r;iu;a(I&QY=)+i}wd(HrHEOIR! zbv{o^$BhEcVVu=C*Ax#n&L?5l|ESONfcw<>AhLNCAXtC`F4SZ^_DH-KrM3Qr8HQOi4z_2k*nd&^h< z*01X+*+cgv%{fcCD2FHQhDHYzq!u#ek0!y>6 zVOPcbN9lM$SvtCxFPAa*VE@#d$3J_4t>Qh?tEo+D%%4BdJnS=1mb>=|hK2IswcT3$ z{q5iQ510Sx+uvLsXkq(*`M2L*{-c*(@Hs8=)0Z3lgy}Z zJ^i4^uf6cX@^$r%e-~PhM|-cjZGzIiqTRp6uWI@{;Wl8RR)YFF2T}8ZePZ0H@M#h! z<}^>C{S`oU^IvgOS9xGP(&>7VmEJDWPm}HA?YO+{sg+Bn)B3X7XoY;kdvNq_Xh!y$ zKE^&Oc||3~jAK!zTx!>4KM5~qGPO&9L-2tNqaDHE>yU1MP2{f4%@e+?prLS~YjFK` z`2_1sbVKq@9K@_ESz%QRQ2Q~?o9HCLFh8c*8O0Y(g2>=0rcI2-CDPk;;RZ*`m1f_Z}2kEo^)|`OE&1WBZN(Qy8lTiAnc%_({Gw#Zkhu zl4=m>_^q)UUdB%7(8*tCu0-{?GrY+~R0~SxVPSY`jG1x9raZ6M8KAs1He1}~6{j+q z_+%zo0bPe?zrOWwC)CN{SH0WxJ+rvxRTylVPR14UCU0+1C&krP*G1u;`Pv&8E+L%q zxlVEgi^bpY#A4*RKKu)LV#PC0K*#hkbhTidex-{>j4godqNn%llXWamTYfD|MYRcATE~2a)^Ta(T*u#3yuFP( zWoYO|3clGtwvr6~H0_{o>I-M|;Vo*($^BRxWZZ{?N6s9MF@QWi@dW^AzI@;*0(eK# z#zg`BKct~m4z-U9CM(h%&l6ZskXJ!pe9Yr%PaT;tRslq`1lv&=k}KZSM>I@zRPvEH z=V;n$JBz=yqF=)xV&JKG)6*tmI?Cv;FiOOK)0xks%(+S6q=*rM+LvXzw-&tmxVbVo z{S1Z?A|u#tP-fgw;!Z^%Z26w_9~V=7Tk(HNl51%-q7t0z+|?Ftr9SFs%R?MNbG)u$ zp=#1g(rdV_+?p~8`#Rw8GX2`$n!id8Yn%Q2zC z=PRH?8WY->tRV5SqHe-4x#72g`Q{_PGZr_nV$w?UDlii*=;A{c9Ftk7s^Q?dAV13m z%R2Z&BPE5_2pC>^ZQX%Q_?`jfqolrVrMAT%!yzRH+DFOIJA1Y|n7Tfm=$WTQObF2h zk_A5|fM95WdejrGy2)%*+eGZR?G=+#zDsyduf#j&=~wlmzg@`9K6!J&w_!()gM&S)^j%c>|SlQo}vA;*z`bNL6ryGHf`AuZq3_KO)RL(DSn=pDHzP-us z{W3Wx0r$JKo~%no9=Nkh)#Mg`qOrH=+tBc&Z_I|1$CiBb;d}f+hu`?a0N?S4fL{S= zJU4gao1pd*u4FwHB_J$WF!t&gA`kX(X|dqGgmWTinJ`9pvetRSTLMQ&RHW$9?!WX}< zF5Fm8STQ~qQ)hzcT|_{e*D+?gWXbzRf#^7=#Q6vu$E5K%f>3E^hd2!LXe?dSwdIEM zv*9)1xETAdaMZJIM9rFR!gBPuR!pBkvOP+m|x;i<7F)**&LPpW`fph-) z_kW*rgVBAJ$iY83xkNhh>x|?+1*o~OrH8muq>UC7Juq2d;{w8fbD@q;i(4`6Dsi-{ z@Fq)+P<>JA09jUKsc;vmN}~ThPLzk%|Dt3JH=(dF`i~DtdL2JNohEAJ2>DbggW{W0 z1Xh+NYh>3e^w<5@ZNHE z^L%-z-?QX*dOeQl2lhe%Fx2&- zx7>DZ*rD22O~)5F_z=7Bqu%~j_T+21%+__=GnLlR4(!H~JgG&~Q}3$N(VN|{UOQtO9oE#)XY(b{#s>aJh2lqc-;|Z!u_fXC0tluLZLHi&VkM+v^RWUX#HEw81pGC9d)(IG|@z`|My`?pKAmtXtr*W4Q9JQ zu~kWjnP~rQCX1&6)5q*XzX8rQ z=)m}%kCI}Z7dBC2C0;TUgK>^kKo3vFx}cdgitK#3Ua=-U{(iEfUGS01n} zI>>=-X&SMkh&EPJz%Z7YYj_*73F)Y_sskGGV<&zJa%%n5h^zIA;pD%^?lS#ml-3`6 zoMNu8Fz$L=baJ*FRy_=4Y6#uc;6p?1-;zH?VccAIVLI-YLv!~#Q% z$B8B5v4=_&j$$wAIG zYM7#<#y^w3sM8L-1D98|qm#`Clhr5!>%V?k&L0+cd%u$@`z-#b08eCYJMyY%BIBBH z^r-9XW3Y4SN$gVc(}h7tTFnLfW}Nt;s0lYTv8&*Ueao{j-@ACEiS*6o3pej*GObCq zo&&09=q{h5|y{gP$m(jTk!OuXGz>G>myUSKr) zo0yWt-pSD_ApR)CVc)=#A2)BYjSqHV8?Ow-OHAlZ$%uda2k+ksR$cqXSo@5;!FWQe zonPO=;ExH~L>~SlPj!vOwl9UJFIb@FiE*BU=75SEXm#YMP;N&^kah}0j0WU^FRi>8 zIoD{B#8%;&Z#cUmc`694B16b_yNCBuDCWYA`j-@DdewGgz`${PrpOb8>V_boJLqRs}`a>X< z`h&l&C6P~f9_f(GXM>UzuBDU;?dxIg zkZ_}|8zQtw>skF|4kldi*t6Gl<{$i3mq|MpTuMR)p@Ty(APLrr;Nd2AWHJRR`<2c$dqd6Cg6T6R ztf(aj%AB99g(p^ZPgvOjpeqz-y1b(&T5rk;KT+{F@7(q4jPK|*#w-An2v78!=}LXZ z0;gvrimUzYn}JG#W13;|RM-oC4_J|zPyN!b{@vwo{pxQlU;6xix14?Vn`#glODpgN zPXueia8pm#9v_`AC;H;tQ=af=OyfXf^N24I*gxYb&LzD4g(sDQkNg3V!FP%JJ?kE{vvH4W}bE>)D>5X&soyIfmP&xB&088%PV{Uju z3+c=9=v)gne4&9xX1@fbErffL+Duk~Xe!hcLkgF5bX({TZL{AdNQRkY;P}v)YVTg! z`oxw^#h~_1RdUppgHSr}NnN7wRB-xF+NE(<<8$YX3Ys@D%U*^pO|L%eKz|C?7j|BpHu zxys|+%CyI}`mWL7N*;CdZEWc<6&=B%CSl7UC}4vch}dsUUV7EFKM`%|3(5h%S3f8Q zvP}2a9o(rIy&n4<4Pze7&V;ptKD41~$aR2;pHW0t2Mxl3ob28&GxMLKVtUtQ~5&9yrE zL#=|ADZEd?0zK0!^1Qg2GNyGb>f(XRwy&MCihCH`j}R>kzbDJz@Wz9coUiQSmn?h- zLf2yE7vL|1hZgCAf9`QmV?v((rQ3a{r2ZIR0&5VV>R49+iyyGyci2Rtuv(im^l_wV*m&9P@v2 zth@+pI*4qS0AONg%=v?-t+vx9Eqa@5YH9DeE;D7@kkuG~!y8*QC1?xsn2@ky7)25r z1(Q(|K9MDrZK`OyE(U87sUk8s=?j8@yapKX#)31`Bw;(S;H%KWmS+i9^&Zm|>I1UX zzN@;q3ceEGhb{e8V+yxt2wcfSPoq=QanihWeG^T@M&g6XKu%U$OdO_%EH+|oIr@OI z%_!@%HbMQ+AcZ}UYh_nHrtlN9;m-QQpwe#o-*E|A$OKcBeS?;xCV&Xxu1bhoyrCzrqoPc!cui*Dgk8p)lDlfc~!3a6}-v~c|8Ck zQn9&F#Z-$0Vt6K8OqSWo2Ra2QU&ts`2L~S#a#-sM6Lo%@PYjdSN*|r`SKaMLEeLcq zRg+Ht-JOzqGOwDp@ti7?MNdpb(@E`SE8fG@aonf)k&repq2#yGctXMxe(CsaG6!Y7UgFOnMj1Kbk1<{OGPYuTN+Kn;EJi!7HcZ&PIISDH@vTpuFs6^gm*CC; zkJu80iN9-skb8uCe}`To5&V%B;~Qu3>Yt2jK={X=&!JMeVC}pGt{N&@4i$8u@CvG9 z%ihA(CXg%PC+xpdJ#c6r*JvqB)jx?2_({gPPJ8y{wU$qOF{&XOn|#GbUVUD&HD7Yq z>8Sjb4jal^9@4%o+!~9#;*OZYm8|?17QN|ItZ}6;Kb2tM;+j?%t`&Bp&HTq;L~Fi9 z=(OrT{98>HoFENiqqCg+ajxdVRAQ)z;jML*6Ho(FWxh7yvbdp^!b!w6z-=I&KCO_1 z7hvU>ix#jRy68{PaEe0U7rBWp={LCOSXJ5#q>;)YntP3zeUXhvm-{o zm21~tfubGx8PQEfepR58H#zVHsXAfBZq)^0{87eZCU}db9UD1nLchB$&nwN?KX$3j z*sr6$nGU`NGSn-9*e>Z*b7f+d_m<7_*=Be^sTnprpQqi_?MjkH2Jg&sLl2xM*nVWd*+i=ZL1T${Dbj>~&N*F1Km+f#3j zfxzxH-BEPG7S$rBvSTt%69myyYKm-z_%3R0w}jnC!8Q#`d1<}ZIu%ik+sbN?nVgS$ z@+?Up!_LER%u0eBC9Mmhjf4LIU%m#B$$j!QZp}BlMg(GF#fYM-F2B zg?Dn~UtA{@EK9@>M$kBwQ0w2u0UoCtG;%Ku6lHCu9ZJ}{-m ziJq(`&2{(2*4Uf(r((^5RlH(H&{lqSjBXPfI(}S#U7M03C5Ve(9D0 zu%#bdO(e}2Oq*^kANeiX=QlYjUDY@&x@rfRm=^XL#O$Ej(4|3@9LJs3`FHHFNf#+} zZ1CgukgkFp#Ei~1=*w&`({H%k5z#w!z;m7aNtF2vvoEGI+e~M*%LYvO+OSPkLu^1o zw4uldYfbq=%^WQFQJRKX@qn)j6GtxM{`Q{mnDEUxCaSS`rdJD#z7R*vEiUkUD~@kE zQrMbOZ_uIUo#DJ211+$0bX;|Q$vrvJWYRa31Z#`G_|?aGsP-Z;F`@A#nhhZxu>>JT z8*9l+v zX#w(Bzjccrr2dAf{xG26k{C>OnPlRcr%v3LqGRDa{KkYZ7V)v=Pm99AS1;isT4AB( zP{^ZnswC0!;;NPxpzfFMokek8d&na2>lcrg3%$?yE+bI=MXR0)|AeQ*v6F*X%8j-# z=|0oqFNJSfYU$W9z*fITJ7aV)&SM-$i`WO%K5GBrWM3@y#&7w>H#_yTNiO`d_)8oN z!*}?QS^5e;;Wy%;BcGB{SL~3>hlJ$EWZyO30jluL;Mg}2t9%uXy8MA?aYTfR+D47f zK+RO+1gm|B1vLG3sE}Xx8OZXnWmkR=VYci(k$v<%@Uyy4I9~EJafME*5qNl9U%^p> zlt+%oRwOKWMWU`_rOEPOZ+vr5$8ZS3)(!?l_lK~2On_wAw_9b)W(&I|8~w%D(N^s# zEWSq?d|ZXXvSQa90BM)WvWz9QU5Yve3t5A6+@O681S=pq)UlO71I2s|no<#=WYlXK zE6Xvc>nu1}@(Y^txOvs6Ofxu%>%iVbEHL18VvnbQ!G*oSsf#CcC6~@V>KSM_ege&=Sadl z(|q*i?HFYj=P@=}sAjf%`{cFd^y$w>QgU&wrf+vUpdmh2j#y0=d4n7h-E2Bsq` zv9buwT3TAy&A1U=jcDpyREbj+RBYR|tNLEGHK7(bd8F~b$FU%<0mduiw96{uRxYBh z;< zYPAnUmvviY6NU(uC1IAc1Ri2*Y6k;83i=_rlx~We?lQtY6Xf_sj|#~~w$UPruDasI zu@HK$OMScvA%_0(SYaL~5etB~e0w5#t^84&b|=TNX_XT%zv44@7N8aa%r+-;dGw3dvsqvTDG(pZ4$9edBKJVH!)TXr0}$>MB#) z`gL{_swo>`PcwI=FcWAy#ss;XQ4*7%wZ)j^25=N@L4BRd7^TN%O_!`{(l9*=N=7aD zxZewAIeG;cV@Na?46>AM@vci>PEu)h7|iB}L{{*Y!{l4c8n@OT;;(9ZRotOiTRQu_ zhV!Ajw%i?*_1$olfcr3UwT(Gbd91L-Z`p=!oqt)>kz>9K%kk!MRj`T%PjV^8Q5)qZT#>6nsA=+q-sV$pHND~GV_ zI`Z;OSsH<<_@0w=;+Y85Bp04#Pk1`kH_1eYEG9-^?2Al96m9o}K%O-+N_>+#=y@Bt zA|uymqr1HIBR9D0)%nCCyYXx!%a-lLM2#I0Xd`}J&~MA})CR8-^pnxLF;}f&Qp=O7 zgv;B&LgfumIbpw5Ec7g>g7qtk+$Z4)88KbNFcFPj!K$Jm7Y%q-N`zJUvCMt|cMZO| zar&m7{$L-yeDg%Vfuk%X<7wwp)w~qZ`%#vR7y9|Ja_8A#?t%HqU(t*~?@-a)L_|kj zANq%Xv?4MH4Dwj)jfLN1-JryV*Q2xOYdvE z+SLBTnQsi!wDeJN3+sJg9s4GH(G`%jzk}-g4%FaoA>B)q*i^Xv)~0(w8m}-b!Sx;GyLlG?X+cZ>4F+r1a=2 zZ)i#!=W(8@el3jkb;Oo|t=|78)7)_|x?f{TH_DNj&l3_km%iyT%4{z#{##o%J)yOA z_Y0JrYW6?X5QD zT6Kun2F@lnOJ}Mall(Jp=L$_Os&r*B>He~-xK`o8G6?+Z+UpCq+njX9>V2J9s>_OE zxs|G!>9TLg)qO#{+#g)`ICe?H>A^v`aP1E!s}!qOmEw;dzipmf_tbN=n3?NK za&K#{7r!atoah?9czJR2)yMmrI1hIah zm}A0rj2Liy&?V$MfaUv#07`z3N)8e*T3!FE01h z`Ct3tcb4Dy?9V&b*n63!$Da0C>~O0*4iwjWl1_wDTfI*aB61O7It5gAHS$S=w=XdE zY%F4z0cKobtF{Rn0$`D~eL=52?6Z;qm!CL(6sW}?Fvj8*=cDhE;UiSqb{}R|8*;7~ zE7d{vsy3v!Rjz2iZN4pyz9!fn{Z1Y;ZrrT_o%M|~p^-P9INXgsNHR)8YhQ>q8+DN0 zwp{6m(M_N~WNj?0i@D@s7``t%rE9bxm0EZ0;j$#9iFPC2BGnZeiTanu{UQT2oDxE@bwl4RxW~uo`9d#wJj0 z2scRpX4{Z`(CuaI4L#e~gKK=#izr>yZ+4p;B*>?R9NWzXD=uv36?1jY# zAK#aQPML+;G~T%25wZ`!)V>hc;-acf_OwMHvJGFN1@L?goaBrL3UcqpV39aL%yZ!a zP&vVupW4S|N}H;5N1F9MLA#?ls`$G=%6LnW@8u!_lKNMEKOu|W?z zdZonI-hI1Qv2yZ0*wJ;*Zj{O?Y*PkNh$g;j>@wWK=kbr~5Nylz!;+2dsT?e0Q-W16 z#8zwLS^{deafJ*3UgLfjRifULf?8-->^r#s|pBqOhjw4F)jYe%CEI?9gD>1nS`=n z=LJg9*w#d&;#5rV&@s8~HBzbKW}qrS{-UOO$d}2Yjg;OAI zn6XOt@cF5xzV%Jfc!rlKcww@S2NpHicbtmw&7X|5AJIoVxkHn$jCNa;r&IMdaQ*{A z_92gqOpj+sIu{2+0aI-WaY-Tr@`(jr7J*N7lkb^cb6G{FBgFl=^s1 zkihTj3DfvZF@0G|*TlEZpDgcc5s@z{{rmS`S^mb!J;&-c_)s?VzY5n_T*bA298aM) zs5VX_nChxh*@+qahi%2A4VHP~t?0QO0)(ryZGMM73?FIV?B{a^?Gwb%b*`IPp>6Lr{&dPfMaegwlc`31@E>IvBgdc(=P zPaiF(S`dD!H=dkpA@em3-5t$Oj@z#jN(Tr80D{V(m!$MuZ)63Fr$aCH#&aw;RF~u~#)10^&Z!#~>@~a;(}}!P^J;az-8U zkU^);8pfT7@K7lu2v@Wr^-(uXXKe*2!G&*73*cN@ZY9{P%hznX32nl(X*oygb-v51 zY)f;1r3d$XoC?b)AeHE{&__3~@|sxhjWAqqCtP;zh*{}FH3;=~gj+Aa=*8cQM~|0h zdX0XS0aYT`m3s*b*XkS(@LdMFw`0;ZRNy^+vNLnqF?i}e!z0_>QgPRsee%n2*s;Ie zwA_bT&Djfh)fnrT+4@~^og=efvuo<;P#qG~P?cAToliX2kc+p5GxnH+aJ-6=3^7+% zuJnE*oKD%)@X>A>$NiEFM5eWa1n|o!z#>ja?eVy`fPspg1zFq58QYPz9)WDo^|Hl< z%*a{Y&5|0u6_k00W2eAjGaHV1-(OP}$m0PBQSm=fIFJ4;ITCsVo7hiCqKzR7I_{YW z=kqgOqMLkwMtw{-r^-5?R3yu37HHgNr0`h=#EAkX_78kJ&TJbf$C0k>B8z1crkJ@c zCX$O>X=CP@#?{BwCL%|cJ)F1n6rYG1&4re#XYhMhIIx$!ma-T8FMVt=OUsic82~(f1 zq~IDo>VwWms(fynTDW4=m+kM!mFg;N#l8x*Fqhd}rY}F2)mwh(nfF!p7>0Pi(tmd! z3^-huMx0!dfAh@2?SX`3(hQ)H49jMZZ!r@;`cKVTkJ+IDK4vsC>ejvCY_v+ZA!{PY zQ~)P_?XxH^_G)Ca*vnI#Jk4+_t9FxB7;Yi>rj~1xhzSKU`iY4tw~nZNpF@-_R5jS)y%h z%U4r1H2%n*c+{fgfZc$NKQ@-WWFlw>g%in%Zit;eXGv7P@&+4=!REb%zeTH4C@2$N5STxrle8B4@kE4gRWUdpjM$h)mi3%1&YI*LjuDl3hF0 zGp-q!z(0CEl!_PJC)=OK9=Ps4Dtzs0+H`14{4}=tDmi%!Yvc0*25NA$IgjBGHCG&x zaVD7+^@q2QV;yYx;5wC29S6S$ZpXV0k8Dbbqnfo;mrp;95wM$2h&#OuFZ6X%p z@}0?u7a%eJ*SoJRfAr|hDtXa>%JBXSzxSdGGAE2 z$vyq%E3d=-#k(&r|Mi!DeYvYQgoJywBV$AkooV@?khuC2whuBh)>|Gx0P(RqVhntv zaf;W{V`77}&x%CSk0_NC6t?`K8gV0yj#4%Ntxs8Dr4I=D>>C96DVTM3*s{s2Kqx=k zh8?Ex-@mU#+U(R9^kmj!y$1T0>Zelk1xw0fy>6K|nw)DNV4^AS7+gQ*WFsj~_f(-hTUsUbkdn8o$i#zJB^_`L*MtYI{Wa<#yK7rTis=Ey0&4yba(gZwCh2_<)qM6| zluns1cAtyVPvCUrYRm&c90x6@?Dsg93kwEXAB&P7v4gJmoz-!%ZIPXx6uxexukvXS zn+lV37uY~-)&e#%oP>)m4F2G@d=+TTmwc{`N@yLP**OM|`mpSNOGjUXG;H9FVD?|nOYJ|nr&z*mrYd@uI)#Dq%j!z%jt0pw{TPcuq&#}{@`Rk z0xSu1>&uni1{x5Ls|ZBm(d^0(ib} z!ejYq_Gy9K$A;m7?Ugb4b(A&yws}*J1pR3^$$u23C0NdP1f>}2k0_TR!bd_X z?Sq-4Jkb0Ds*fbyeNNkPn~f>H@Wo$u$VB_X>E3?Y*9m(KDyys46@v3`6ge+af+F|n z5AWn|zm-unqhf$YX5O1bxaz2!aOD6ixj+LMOxoj9x;iJ(79urm*^#7#buK|~RqDrU zI-<~r(qHOACSmEsPBi>jM%*a>Flcf+RA&9mWvdUFU#csQ(L0yI4~C4HLHdxx@;S#S zY3-Meujn07lBg&DgDS4a;Scd_-#JsA6>eb4ZWcMphRE`L8}M#(HC(*jw060h80z5S z0K=YxfJG=4uo&=usx=WbpuE<~Is+R&Ou)iE>|pTfxfBda6>fSmDFq$27F!)z#AFpr zE$)_Y-!Bm|7L+q4d4>x-_WUG^TtmwizUrF9R7{km>$uW}55g1%dY+h7Y)`oz3qSLR zNj$RbM>#_uC7x!zb3;#>=qX@(lk&n(Sw#G3U*L}QJGt<+%v*hgXP*3J0XRx5IPz*~ zPm(39y+~~SsEEa4#bVDWR79iZU(`Gq3$EpEKVgpy9R6s%A7Uscd4_dfYRfbE2*2b< zE0wJbpQ}A&&C|`!NA}?YuSrW#i@sP#?$H{4yUx7gl{^+$l($@fx|KB^Z6z!j#7$lT zR>bfbIIyvAk&ZGLe`DAFz>!n0>5D4lK!e}SgR*>CU1CZc^f z+ZvAPPs#F-CEvAg;CXwT~KQ26v7+&&1ITIL;|nYvWUb z#c}+{Q;W?UPd~9jPGfO9Bxv$HU$zcNF#5uleb_{skTo9zwrQnw|D+SDIG4tGxP@&| znq{8C=jd>;7#4Xsb|w(WZg0exoNOt+!lhfXh#Wc))ep}eF8}L0-(9}(_?_j=^T*4} z8UR19*WTXI7rRchpmj%!hDZ8$mwoP!jO^luzWBxaGH&PMrJP0usT7sHU>v2dM=m-AQw=An&M9#*dtFv@%Z<|~0Q`@qp#59I>if@Y?7yov{=vg1 z%U5n6FQ3+{us@}ojG2ed(>h=?>RS%wM>TOK%%FqZ%A@dGx|R9$*mUSo4y``(YtX54A>MnOzC=cL z(3Gkz3(>T#q^q^!L(~+jwlZcZ4Vdma-iK96!&~NpjMS{F{7UGod%mq5U2m$|l?vyE>>*tu|H{ zG}x$@FxWx3Lk@!G1Ut#oIfx0h6Lc`#AnA9;>%KB+VDxIWXHPW`(0G2PPlQX9stGT6 z@WVC%g{wVeUYjl_qu{o6=%b*oQGHYMmm4SCpO7@aoD*IO-EC&cVfj_CeSAjdl@na$ z(9hwc$I?nRke6m8ES~4%c<`IPc3c7(gpg*{XGITcJES{9CJc0IT-q?+@smF47zbAK z7k?>U0>&KJ`pK}eVUAR^)W-Pdw~!}~oZ|Cpkk&a)je^P{^-wEBPC_HjL+_&mh5@d-uv9+ilOa%!C;>urF?5B*S-#I`(?1D=IwDJ+eXudxo zHhW-Cm+ukpxcG2~MGS`6ZjJJt@FAGS&>qZH8_OQhHHWFe z(eOIncx~^62DD!XEuMQqJd0Y3yELDJ5PKGrZ)t>|r(f=$6pqPi{Bc^7nK;~hvz_?) zAvYF-tBKW68cm@tS@G6kl7hhIw<{$Jn`~R4Jc)$Fj2uRv$g7lFCe-u^&fI^tG!r-d znp`)yMB}rb`WhGL@yCaA#EEW5zq| zXk+|Qj26#~DbZROuEk##fU$O5f}#f=l<{Ed717RJ1GoPRBqpt|u{9>z%Q&}Fa--ui z06rqiz6}}pxs+9=HYwR}986$%CWsc1CwzS9Q#^+bVe%oJg3h-zG}f&jfug$e7`zNP7R!!vR~+4gKb>ddRgW0x{3<@aJR(N_IX{I= zdQMQ5Q3Z~m<3tnwCtZ|ME7dKQ(E+P6O2Dr9vd4^eMNd(y$RGcjQJ%M~(xz;UftMct zCC3oj+b&F*6j=gOT-lGAq6-I;R10;z+*tmf_g-86k9WVfyrubi+5d| z=tEK^eAMjM^W6ADI_QSI$%Xc2X zx%{_(_15yDeErJ3SC@bG#lN$>ET7RZIU!Xp-r2Beyhs**3}rAHkT|zxAKiKuJ3uP2 z!&JfR zsl|Fdf2&2{i{Sd*9Bt4)wS_0J>|b)sSxDx0n*Du2;j^{j7rj7bhmd2VzcN~RlB0aw(0HY|*X&pd z=12luJkiV{Qx(Ad!Bfrey!pfB{Or_kIN_%}h{HVfZB1N%^Um?|ozrtKivRKBC(Au8 zlK^EbnQ|fBx>LNX8lU-_%49IrW4>1W(#g zz!Xir=11K?Pc|98)N0>K?e1xTnz9jPxxZ!%52bVIW3Rp&ZAB|t_t)`IrJtoUcNNTN zaV31;L8Iwmx^}ryM2U}&0c0MlESgE4AMYtAgv_9-(jM8KQk`bI4NU0=)rM%$ZjeJi zM0%@Wsdt;oyxAl+4Ew%pE;zz<6vH$3z<$u#-7JiLvtj_RFu^uQ4PDOHni#rW+R`5^ z%XShK(@jIN?&P&zs4fC5t_#Ym>T=YTzO1oP(rsMHxFKjvV{kPwJFF2E<_d7GJE!m6 zPp|Tw?pIMH?h;d-ZMqVbzVk(;d$C=zO{1q77kV{6e|KK!?G{x=+mcc5laH8v^xAgh zi>|u)kRa|Ygk;p4PQfTI+f5k_9u$xR8yzwUcD;@2k>;R;kIzV_Op18;q4RieHj{nG zLl0u)&3fZu=B9&bXfRcJ zW^`|Hg}_lELtpouZt}O3{?+{+P{D^uc?x;?h<23Ea!p;f^bc=sROua4@rAgjz& zi&m*ladvG|GMI%Vy{hW|%bGfJ#f(p3x|>m2sdOzKs@S&rMhvLQdN3QvGCx>{?|?Mh zMjSM~T#27*xX}}{VSgwvwukf^?*6)q#_s;ex^CC;uH+-$5o0^YP#cNFStmi#`#d(- zto4KHLnX(QE6pxT%GZEA*7H1xChqU&(U5Yccu2yR&XVagob?f)%&&gjmRP@gktj7Kb_^xDj zGvt%xx?STnkMr(eVOJwhG)l;3@Q4dkY-f4r7$0+)GN~XFWXELEc824#a^+#isT5!J zs0^bxAUv=oV8O~awR9tg8!s%{9?N|!{Kmo-3&36krk0KmdhS6|>ZTYq{``!KbaVoX zn)v00TH)M!X75ctBe|KbK_j0^gh68X@cz!sjm^|5I9Q3qYNB25R+F(s}4kA2bY z!S%MLR~yIv4nKJ9Hf!3-Pc}bOJ&=3)L(7?QLa92qdCY8$rOKn~vZF?}wpsfh@gFu_ zv8v{L3|)&4)w-t71ULu#Pjxk5Y=dp3^EFBe+a)GVr}mbt*LYJ|*@W=p+gAJ68DzGT zc*K@|ltrgZlF6RVL)&emGa66lwvtj;k`JmlyCtxUo83Ml9E7{Lo)z+c_|cy)fBN7@ zdX4j$7G?Fjy~oGPSMJ=&Ym|QHRA1z}qs7`!-MX{f(?Ttaz$^g!YAm;$^W(}KZHu`8 zF&Hn;m#6wU2kLhvigfAytbUp}W8 zV_V5FvL*B0^7{L(W`qh@tm+!pyqvZ|pcV+sr4(z8| zgx3nGuI)FM7v=Ac7HVI6_H_9X=$R5^WGp;#;cKfj?xeKJ;VjET9(m*gx6djXeM{;I@c zuKHg2*&lYwDf*&3ge`KPue3PM{0n@{{KC}!o@;?t?ugZ-Ok(u^^y!o3FTV9B%j@5J zeR<;tf29S1Gq;;e`H;)aTSv=})Gw#9|Ek*fxo0d0^K&xG^3K_N%eNk$FE8J^w|q`d z_}koMvUU@yz?+V{wGNu3CxArcIlvKR?V-o@kwIPYbOp2Avb4cyK z=UUKU@nv7J*=URZq3q}f-A@BKrv72&Gj_q2|53jaQ)4s6)sE({!22~l=OFNPSqU%< z;y0>2Xtnzh%ALorx$td%9cH5i8=}do`R>x$Wab*m;*~CClXRWuz;~Re#z2g{PMcF^ zOarFP$Pcs=6~7i$0}ja7s`aUBXhL~YJzH&K)Us^aKKd*Es;|b5Z?Tg&cH2ZKQ38S(F<^oiGh)b$0TU!92oM7# zhD?|tAt59rfMnQJ<=pT5fB)xs)_V4S_xpX{IdyS$ z`>b=`y`IbexvaI<-g|v}y?ejIH~MJv&_P6Udud0z)+wz_iy3{eO}GHmXYkYE&qt38 zHfEL3G5rSql0EE!>OwRp>_d*3Jf$A`*p+n00hs5|lVk0=`vis2>>NX4wtt6i^`BrW zE7#S7eYb?Hos0AM#*p<0ux^Ru*&^+@It!W2ye*ZyVW7f6r(A$)Kxkc(45SB1Qj{CXhoWBKob` zHZ&m+9LX##lE}sxvgU&uvOcz^!yUU)`U+IcsvbT|x)E&HLY-Kb&FTr@6Dk20pkyzJKhFXm`0i53)V}Q%QWL(%$rP_Mv9R8-5l`yIE>_oM1 z*icK0JvZ0_AC_Sh+me6{RM&PowA{9g$wuT#6l~)pU*6IV1*OEwslEj`gyaoGRs2?q zS+zaeA!GZOK9SZz^Moz0c#cKa%u8Tw$&=RtlO6kpmrClzg!aYn#g3eW!=4+=oKP-k zftBBU9W^CI?64>Z3JW;ZZ1|kcd7%@54 z!mlFn+ixuHB99IiQ~>jm`DrPM$i@GFC12yHyi=pZ7MgMEI`QP^_@zVXeh?A=6PYm* z4~&9+WRZGg^=Ud{@Y?5yRqX{CK1_@a3HY>cNuWX*@gfG2p%VdJe0T^OH%Dab|3Fxu zV-Hl>g+*)&89la->G+rQ%O2S4ff|3M+wvvf)-@)pMt@e@t*_!=#C|V6=f@~P7^8!; z#PHBu@8ViuE{`+LWpO-#^Os~q)VYLnVaSoi(Fe~3)is+Q2;FD2oR((kN#AYDc651f z+Ab!qOWkI6QA(-kU=@=|4I2^LKWcg`!?h_{*v0m*{qXmef1sy+zpsVZYg)1U(^s!7 zZ(q8+eBttIzTUj5Cw{N!Ny;nw-CnL;yzZ83++|_8&Uw*|`1qGTu3-_$+uU5#9Dr-} zb^R{tn^$fu54EuNM6ZT?q{Xtoc=IdE-@oR-2yihpv9cl6uLPnVlIIPX8zR~z-p%Lm$j z@dg&&fcbR!>cxx87xcNvL7xr!7kY&!dDfZXd-rZRC?VLF=d{TA`1U_uZvF6`<;u-- z%Z<0a;u{!9{qFNqebq8l?7|Lx^B|JK#z!9#rs@giSnh_>-omix+{G0j|+ zFNc1p&+F%&>Nl;=>sVn98Ohvwa$k$R_w}mu+sl`(zOG~Aq8EYxK(9W(tp(*L;`MyA zV&grUU}7`|Ka|MQ;}u$BpMx#$m`;Z!zR&CR-SyOWO7|KZw0-sqNV<<~H>){L01}EJ{ zl6I0FD4HP2sG58y#LCftCefN<+|chhTIn)PD!0G*U<|cyZCd+7UIqq?o?N;2c~U-` z(EHC}QW)kDc;ML2C+RECs;84-S1Q-X^=QZmJI-Tqz6@hzBc<+d2nR8=F*GaQp?&~6 z5lIY5w=&%XJ)=YnG5NR`|MF+=3b zcm(F&i#==pfgUUfo*4FhA+<}tl{fA^#Y`hEBm7MU55DH;*!UwkHDUO|9b=^S38GbT zj**xBkP^A5c58|!pbFdg5EnXX3lqVVI6Ah_D57oPLQ1XM!Ag+k=q4F~5JU$SVT47Ajr|u4{kvCorOq|bj=Ksjxr}!0q}s)Y zNjP-pLwfI7Hhc{tpwGRC(9L2fkMNV89OCikY#jmyW(3*if&wYaLu= z0xYy^%rsxgSIo2>=ybb+t(bv4m3XcN;EFMuH7~d5xQSV>H-WE-5wC>_Th+qUH}250 zP>DYf+)C2Dt>viz{w-NypXlZquZ`wdV4;c|M#jq_2MqRT_{~`2!1EpbiVt6LB8TuZ zkEp=THpxH*EV8okEDMDSha@NTj&U9m#^fpOZxKR&1>AA<1dEqIM)RQ8wHg3|Kx z7n4c)TZy7+7W*Q8c>|Nr8;R2X(M`1{{-=Ib|Hopy&?6sV zg!8_V1$D$yboBu@@9<4Of#V+qOl(7j-ztF*4jX^ui@Y!K)Gv#_io}F^6w$${HXS^& z`UI9ZWtTQ$OEUb4=t#>8l&SXcg+^8|Y@mq}b@3@nAeHw`;_DBI=r8F6*xC!~Qg&b| z6PqzZ>^?-FEaaeVD+Rjp2klSx>)_L>w=;Wj_`~^3 z@l)sdI+i%WK(ncDqR%$yEGRjrS)V_+78ET*%cb}6o^l_%0*MtCr{S%gT8C`LIXi{l zVQ!B5V}8QfIJ|Nlt1mf49(ATAMoA*G zo`-KVNx&@VGAC*+%w3hmbuBLcJ8xWH{=%zYT7Kih?=1h%55KW|WGJ{S;W{tk}e;zBx=wD#(~AqvP;PD+4-%$^Sd-YrN9Szsz#?IDs)h6>SJF0 zi;wLGU6!!(wnPK}?c4A936lp}gkNsFwp`Wk121~b@zrau_^H&3EdE})vRuA=d3kVO zzkjQP`0~|j%OAe;&hi!EzVYt&H3pt8_x(h1#t??z1-^de18E*D5A;;*`HMQnHCTLJ zxcFqbd;iw*zx)sXwS8Tm&f`&-#_=Wzq|azO&RKc^gZ)O&Dr$?*!>TG zxIDUZLu=+5^UCop^$p{l1z*Y){Z`}+JqiC;|NLKAe({=qANhm#mk0N5+xC)v0~pvN zUUjZx=&_!>z4urG^~-%#Ke+vHc~|}S^um+nm)`tpoD}V~Z3v?e=UK>A@wt*CD(CFg zPC%yFP-H3lrw{eCv0rIg^3Wb^4+3ovLqCWO;3exG$T1SVp+4Vs`$~Vp7lBsMSR(?UGpw64! zsB|S8wu4Ab;|IBSj0Jo^%)-sg*Sd7ysB7{;LlEp_{&osu}d5J`T(9LLd1JcAympo^mT}6hi4PAK#dehCvEh^dLh|@Kr z!v=A>&8nC7;2%d~dwxGzS?%e)D7m}$RG*5hj?H7ij_FStOEJF7V~*Nm!{AfcrN=^7 zhNX{G#0|mOk~OoJOWe7Jr6GSzYtZb)E*zeb+ z17Bsvl*E9Q#4tj$7B;<>^^4bdqwM8`{Ns&=$0*0*m7cnCE7`C~qV(QN>YS0Q^rhpP zUR>F)ci})*nCOflj_dzmL9H0^BVJv%wt(q+P`i+s>%fKk$&Of4bQbEl7J$QHbg1*x zhJIvH#UzS}D&vrJnfx&2iQfX|2~-yIbo0j_mLj!KD=go_tBGaQ@d{@agLzdnx2$*; z6&;5Zzkg`jXLn)}?Se2&&mt}hz{EB#cXaR?66C0Vl%j*P$aZ~Cx_yo;sYVD`rL7O! zS>W)?)3rgT&iQ3LiAtAgO$SM>y@s&oM*`-vCK|sMNN-so2jh<$$77*31|YYYAFHQ^ z5A>PPB@sN$i*Ir}uLajA(Obq@7Yo1aPyDfO>h?8wXiDu5@(Wq@I{NqoGSZIIW%M1B z-*|;HPeif!%WdtLc$ZCiv9Ij&E+b$3pdWGwx3Hw}v=yE&9~hw6VH@)JBZ_@reZU|$ zFI()Gd}A5gunlb55<~@k_=E5AbbPAp z(a8LVMp~79+2X70$h*pvMsGG%L0;BB20ifOv|m51wm8lR7Q|pRCOF0@T~60->n>Fp66ZV#;Lm!h{-^qt{#65^T#RpWkTjje!?&-Si27W5bYtVe6)S}h1xcjwh z(_`%AfKkV6ozQ>Qvl;!kwJ8rX0#r$BB3au1^}XL;e&_Z(TClpKr#>$&zx4W-mtTD4 zE6X*#)|qo{T_5Xe=*2lMxcv8B97(qTmd*}K-@Fg`R+b*hU-#djBOWra zLnj8CE;~vWHUTn=r|L6@Ua^03AGr4JE#y|D5zvw>pBCu{|Vt1b7%&Apmhaa1N@lXGucf}vQ`yD!VdGEb< z{Tk;7dg__iJ73U3@|WMbv;4%XdKI($qnU;VjXTz>YoHVcBZ1>7G-x+P7B=!mx~d@?4a*bM_xY>h zi~x#2b-!i5JI`qRX~B9M_Y&^y)8b>)Fdhr( zh;LHhko^qpngH;Lab*Td;-cl#_IRKEOS`g9%V9bRYi7J;3*TAj;e4%Fi^=7*QWmsf zi#-rz_wC5HrpeFVI08V7y8`Z|oZ)t(o}lA=S#8?2Js~Blno%PUtgKrB6xZ#Mu+BG# zG^T(JDC*&Dj;0df!sq?bIiZ<0h1{ukK~1<%DxayCRL}D`y_3bKD(d-0;EHto$>$9+=Qa7ez=E?r{KQ4vg8~GK!d8(qsq&tx zek6Ekgb2o4b_|3*VOhCY8#c<_J1_zW3NKai333h=O78x$A~v2++hzI9e234qyJkAb z9u8rQW$dPAQp3!|#HrjIuKT3`L;5OUxyAgjnY-`_c zz^(p|HQC(^_k`Q5_b@*SvKTkdo9P_sb8k(m9V(|gZf2)}x6tiA*y^Xh)U2zi78R;P z4~LS7I_07!Gkk7Eah?oy*A*SLQ3w7CGn|{4STfqfluzJ&KNogg%bx^YX4`dE99$v;Z0Zo6$;>0(5z+gkIkc`PK#PP7p_@?AMb7spqLjf1gG z5XpvecC97bH-3Uv02ydE0vhqCC9GASn0`PQJ-4hd07X28!F%a1@d2k0g zGja5X^h}cC+l+I1!oqG%B;wm_SjWVbg}MBbeM}<3`#{OQaOK*c{rza7^NBOeD^ea0V5-03K zH@7%L6MpG0I2LaCoYO08JOK^F$d&%%^^#=!NC`dSRX2(0eRN)vTRh=aFBeqP&wIh1 z8*lU%t)M;rW~q_{N#FR167jUJ{t%}pSiq+cYvu(X{Smzw2y#P1KeGRM;`fsNakCIx z=j-;8JND56sg*8VMZgPujG3Z=RY`A-<^3bS=<#JQ;`veo{cHc|>f;W;Q^W{gXa!aw ze{7Hs8)W>mynF@EzHys{iN#;>7^)zrBSk^Zg zFrZDbmFrqrgA!kOx8pP^+BF+}j8{!gh$5jio#s&qu$O1;<7}VZ&`~8%A3em%t(gkG z*4)=`&)(B(pKs{t)?e3Ctgl_a;cGbVnLqgHku(_|ba8*{i(l36);?K&`KNzj`Fp?n z_0c9UB;j)dgAxa zt@ng|x_tLLzqkAo$?2Bg_?!QSGr6EA!_R3PT+o*jcv|?ee!uv_CCwhSz#&dcVv!173e&(xx zYWXMM{r2*To^ZeW^r2pVu0>#iV@rX?)CnP|(gYqa@RX{zG^(yc|KnE9*uE{S`ntMf zt1mhANxF{v7-`ZYY@HTrcT+PiIYvCryniJeHA!&1Ma|Yl<5vb!anw=dqk@=cW23B+ z9=ff*EB3HmzojFGX*H>dj4Ve^L$QY)%0>ux(7vV?dD#BYM}&18u1h|?fyl4s<1>XO$mst_fIZ*HtMuMIU_&EMIrON==% zlGJv4im*6pw^f9nCQU(?quuhyWZ~)4-MW7d5)8q?_+;m_G2PA5B9do(cI6qH)Lah> zWE%Lv?>gl=N4yv*I!fH%Eb0PhUPda+(U|eMO_HFic?R;jr=~L$;IU9#G(Kt(3}gH_ zmg$TM20pRWzV5>3$Ni^`&!^-ed1y_zE!En&); zASlNye*!l$Oq-xAP&Dz_RV8EJM1=O;WIySxB;EtMmib{A$y@*eaRxCKoQW@fHno=kIT<5s zgBL!YLZuCDv3q<|G86+Lp`5+ z)-P(e=byg$IQ{L#*vfjm8qPx|B613%#_mW`J2&Q4cn#~gCl*n{w&c+^e;HqDu1tA} zw7Y)ZA%0j1Cn7!AX~_p5Lai_Ets&eA4wleP&7A##sCjf^L&fWe+*?zcdGPWpi>Xj?*vQjI83@M6VIfWNo>{Z zAUeMyRl5l1$!^nGW_jR6xMZ z<&#W+F)3uibwx|DkMz57X_|d!ggyBNohX)zDbct2M}v6W;wuJ3pt;${lfK-7k3OrI zO2PY0I2m%2F4Gb+e9`vH`qVzuG}byi_>UEHU~MT*2$A4eRKB2pzUgRv_@qaxebCrq zO`$)6mP|=aIc+TaDX&G(>X-35yuu=b=Vm*;eA68#D%e4>k2&bwesKOr9Q{KlOni{c zQn?_dM`D3HYW7U@LEwo?nf}68`L0~bKib0D4qJcH&+rv~CT8-;qN&pc*~{{>2Wp)C zsPsgg{az&BW43kv+1A9UNr3+#9zo}^RbRGoKWf7Sql!_;>?hB&Qpfpyp6fWi>)dBs zTu7FcMKFd1r|lGgn`NRV6}~2B>#J){r%&>G)S4%MwLr!-=0yvZJvM$i4?Xr5bXNja zIS^Gksp$Iu>N~%+yz}t=<)<#5U%qF1;G_0_|z}sr;x}hwz+A zM7$oF-$ms&eCY$d23Pexy$YAYjUo!Tw=TbG98VWt(VH^BA?K+9V)CUh3ZsdIH+($M zhgUH_KjV2P3SwWoud_m{a)YN- z%SL_87ZTY6>q6XU0U^2J7txqc*W5-mi=Wzuujdj>H?Hbc+vyKrWTie3yxK+%a^@`Ee)Cw=7*x$$C47wO$!?Ahk1cSC4Zg=JUm6D!D8nAOU~^D!p`JV6yP+*d(@<>;)kwHTCEemh>Dh>)MqR{kO%E#@$(>WvH*&wh!^i1FZ*TW&d0ngOyd-zXjq~+O zbn1N9NJ?KtCFAXKTuZr*bG_#w2%hfsBCtF#=ioBNH4xf*d|R#v@!$HM7xdAOVy$#G zlz-V!YRr-{?eMW+Ioj|WRJ6lwvyafm9>G#rs-d&!44br-A(Xl1qsZ!Z{3D}}YQ91c zWOKG$XR4Tc(AO-k$9#x+QD7q;Uf3^zWiH}>QpUUld1aApG$Qm~;AOvRPQ}l0xK;ps z^Ec2_{tgoDxts{kZxE=%{r4js4`0QGh(b=gQHMurGqnkS$PPMRImwW}C$Poey1$Zh zYLhD0&x_VinV^tZ5%eQdm71P-aX8|&tpVN`k-UVQ^>S!%0?D!SaUkt zD@VlL?aFM64_@2&Kd>FwkNEvOIwG6o^JX<~dMm2x5m1C>P0`5K9>q$GX?uImrfHm7Z_OKFPY`ZF4X$r5`xWlXhXN^L?jYa3%{CB{v%xm+Z1+B24ilIctC8(K(V2c`BlMSt1qX zVVW!|UdY2|I7Ay>b1-Bae6aIri`%cgyKYZR!dXH@9(`2^;wXa%6pXfg0L*p{wTZw) zz6j_AFBbBeJWbfh#S<;^krVuYj)`pa*&|R69)8Fw79%wYbvwcfwxr0bqp9N)Nn;aJ z-)KLc*R3Ou@E9|~2HvzDObBX0>DOa5ZWTQ#qhch? zyzBU*-s&dmvqx3lmDx7;;!mr~{-k=u%1*-PkR@F*?gXKf_sRVS%fjac%GMVy zkd=H}m!A5t6ndk{@D}qY z7JBdLNz%J4&gyAr>W6x&^r03f9_R~Q_w+O-Jaa9sJHElBn(NcI@BPrRSOC7Jg-G7= zK@T&};A+hR@#ijGw+*sK^7-DQdyesn^zX{=-?{a@p- zT?Z^d$~=h0&>g0glZ)C@H$9P$FGh&AEj4!Di#9foBudHZ%4W4JY9_=kNLoDq7=~#|_=92}v#Eh)Kk(5%{CaMvy6EZ~{XDOo&vr(zXZJNi)wa2d zC0E{WYT@>Q61t<`e|e~e+)-QKzk6%>>Klwf&Hq>g#-)x6&U-wi%o8wzsb$ z`l5a&gmF)yl~ipO>I9JYk3lJu=fbD?NE#TW8WG&bux*{a=j{~rp2@DP+Owa*6>=<-=&b`n_ji}8rT*%BrS7?(kmpw%boPPcB3&Oj3D zBMzoLbGco$!kFxwl}<8sw6Sc&dUqHP%dy_{&Q*Ns^MoAsC8O2#N3DH!1hhO7Rs2Pci?J z9m<)O$(RYXElv$nZ93W+_hVuofndr~f3q1_L$}bDVZ}h8&5{_zf&uKEoMiF4hOg zJcwfLc4ZctnMwHAahr{2%%2cD*253}RZ2FC6gNP9#)0+qg6T!#4UNL>dRip<=fZF^v#>_+(up4?K^GD4qwjCn~El5^Xa5~x!zH%VJC9C3&4b>`P58W z_;5p!=S#iltGX65$!y?7K-bn}^3}&ZU3W|v1a#PgiVg}2wW#W}K#x8tbWDiDA(L8) zC$^%IRw(BpH9NW{XVqRK*-2q88}i7Bi)FEcOfrMRsq*qu&9FFEjovENHR*n;8*~26 zV@F`9Z<(WGfx=+-07K*U|;VG?Hw^@F}Q*3icOE)P2j43<6R$5u{ZWLghg z&?{>>Nj|N+;Z66WMjqSOC9nENtzDJx{*e*dy|%@ftgO#g+eRB-U-D?2*ONL5!&kp9 zf^iPA^--+j93NiZsEZbWq?t6}E%MH7RCeCToijpeN!Hr+S!3Ed8T*SXvdN4IJ&~a~ zc?;Sh8*Iy?T6ry|I;+`k$?{buU5|`UVbBd+7Y;=i4kX%9{@+{QT`noFfB%iIEML}d z!7^8Rs0H22TA1>6OT721YUWT(Hd*xLiQETT)%)SYJIjZU?=9~?y6Y!+AL}L%ue9Y_ zL!w0GhS5boff-+rVvqAXvn(`U*W&M0y#|+fe0hp%IX>|Hy$2sI-?{((^3|)K^Ka7L z(*iS?S1(*y?(jtB!$->pT42uMq)6mf{ZsADBu0yakkr_sxvP^}G(! zum8a}mv6rN&hoGS*6HuhfO<(_U zG1HcAzt~4pnU}riL8|?h6#V&L0QGac%Y%p9)O@;J$|rc;OWe>k=R3>){rCRn^6>86Nk+} z=<)rB50;;M?QIR4hizIsd{G*Y20i0g@OYOa>C79A5?6&`mWoh!=R6X zLl>nz)I@??$9uRfW{=;o+Yt@R?2H3Q7ZjcK?Dz5_NntG7@`1x{oby-s<_GeKZldCx zVt!x;acDkNB0Ls`VB|e65z^1LaDJNDz0|tat}98^UDw3BB-fHCvTBBn+_gKa@FYLa zqq}ffUz$~_pUjtLw>?PfLgp{~a4gd~>>$xI?`b!wv-ZsCxILeiIUl8>e8>gaC?nU= z0$2HX0GboZHe z!i>C``M`;QCL?Y()>FwA*(chti`@}?*aYg>Hjb}~*)8fQkWT;Cn&c(SZnt|dcna*g zEfpU;n8JCEl00+$y07E;QDQBVj(_Y2=Jm|aiY8!aM{x03a{5@T_jxg^R)w&)=Kxko z4@I;!+S`Ol5-Up9Zi6IZX_I>aRbC6@9$necB6Klkl1rPdXW8igPI`D4#h%lBct{Hx zo$>(|LCpGc<&L^T2ko5A$>Owxge$)uhh<#C;WcuBjd@5@d@N)Ic7z>|P2b1~+(~#U zKhqSMN0TPygtJM$77xrRP1)_6vXN3g>-Z{YhH-?Fm4#~o3e&GLByG78#BLrDc4gC$ zn_O?oVL}_5cB@E|HAG7?;#dD|Lrfb?d@QXzP5q!m3_9ISJ}7Ue(5MZYmfI@r&jvp5 zyERL1fosY}W&*Ki4&~92wcn~+x40GGm_}|JdXReo4s3ET5<7IUoqSowK0dIY>Z4S( zYY(vX*Rd;ISL`|3$WDZ((o`0(s%vJM9B?<$Z2_H8s{ZWv);9DrL ze4nij1F_K_I|1bca~qS;XfhM0n(Q(m3JZ>`1LmJz3H*CXWZ98&}Kh(UG zR1ZA4&u=C&@ICTN{IdRpdw^GFUAlf<-LCVJo)~?qC+a>*@wsQ?ppKV~_(ZmBsN;N= z@I0822PTf%xQ2wRj_G->((x=X_;Fqn<8z1o=)58aoPF^_K&n-d(*v0^%lua0kd+sY zXm0{kek?KrRnktaeK!|&gvC}C5!ODMYbj=&!X7*3x^McbO3!x3TfsKh_V+{!&ySSH73K8#OIMdKXu#ah zpN*&-qTh{T1A<;L9) z^gFyC=r?)qYiFEa?r5R%srDu12lwtS@9I4D2YOq?cQjrYzi8gL_KJMn*VDba&>{f`^$5I(l+)@Ak13B2ATUfnl|j| z9Yo|u%{Vh;;La@%9$Z*%-@CUwe*9FgbH1`%xfJbu^630>?V5U5*hloUexvuQ7R%qf z^vZHa_&<91z2%;MfB5n3_m+S9Pk*?40@v0W=^do2h6T z?2suqfy&q`lVW;aC%Aa2TJJ*lN1l72y+c*!eq|hczh?KkO1i_LtL*NPW`n<7OgW$~ z0Ccy7-!0uB0Ed!8!`AXcKzp8|I>k*p zU>_IJ_g~TBdmR%Z{c|*nuj+)?)2=#K4a0`@ter;+^ZpwgzJyLh)r)vR;KA zHrz#;nog6VcLTMV>1FNBSvV}X;4p|1-e-)hzHrpu zV%UIKF=+xgzA;Fa{Ssy3J2Kjn7*&N{V>-8?_uXzlc-;Z+ z1#6Zk?N{!Vo}`~WHbalDaEv24wfLV&GP{u~$jvOMH4FW!i(3bjyv{$*)7G->Hkp=1 zH8%;p&}~QA7Lk-3YpWvRLCyl$x1pwN0$W&1wOM=XT-s$-F$+=RZ9XM0d_2V5PfYJi+y41G- zxiQHTzmKW)VZs(4&DY7!Nk%>Y=m}qvf^eyC4sz6&+_mg|<63n;K?vp!DlAScQ_T~r z<{jLmH+8~_ehiGABqSCT@e>^y2+`!=E>0WM(GuF| z$*O8@EJI%shDBa(RAU#Ln5c3inJ12@?L`Z-d=Wsm>-=O2a2C!fano5(b_j!?x=Bdn zq7BrBNi%K7Yh+QAWG2!jAxF}QDKd*6^;?GF5Bn(CAPZzjYq6wINXd+ede{@Y=+IT3 zHF>v<{cn3uH9OE37k+RtL&aa8}P?DumzmtMSnWqG0nl_z?dQG4Qrx|H@-yZ7on zrziDM`M{22E%+c-cKq=sjNd|GY=TAm{3<2qneLCBgAe=$MGZdctb(a67tkYR;N=i{ z6-#{S%R|+bNAR&N`yPs`OPrs(H0bhusCf=abi^>Q&(_|Gv8{)}F=8|nz=|22@&^xZ zFE{j#-YdFRUh(xyzk9ER*DHD&m&IP5>ivNheBaYkzWhEfPvt()Ba3rE3cjg za{^`uTx;q&>v*gDyh_5O8NH#_*)sgW!54&_e2Kw23D&0QDlEK7y^PPB7C zx0Pd_Mq67{2j$%IGdDlK{EhE1uB(2g}d@*}t&-dtdwf za_PzctS=DYL6%+w)?(_TCkv;#N18N_ZjoP5l%g)^+~_%q>@TRDF&YXLbJfQhi@pJ` zeRNKFT-3O|$UCQ1@a=h;bTMPqd1~~DAs$Ol)v!DF^i@Jley?4=s4qgwUby#fX}+i& z-u%+dhJqju>(7#Cf@fX)8LnXEpijlFBC&0SwI*Ikh`Rqo%oL0WRvr3(UJ zdQ08L=S(GWQ!s3&C@|%5xZe28fUO!9Ym+<%X4he;#(2!6zfhQQ$=P_LpU;*wcGNjX~5AqSdz1-XgMg zr46+|iDi!H`9ku(hi5u`iS+!H-T+5IR#KC27Q)35Sc`_%hXF<^cp+~UDeHI*LEF+s zmDmOJv4&>wv1EGy5MP?O`HK7xcK6~{EA_|%zYr=A5vWp2-M z5-kc@_#F3+)=7M#T=dmP3(>o+(|A4bKLmp~A^619*eLMSlw{VWt9ojJB1d%W3u<`( z{iK@0{@u1CG~tn<8Fq;ZaX>!8mbg`($7Q!G`(BrRbx3u<=mmuRnhH-+Eipu`l_`d;6am)St!Et4E0=B|PXd5qI(xQ$U9;OAmUG4&&SeKO~jl#fJI*InwZj1 zX92VV90&~TXC&@<4HFX?sREYotOs@@-?9g;WRAe$)EBBA09*;E!fSI95xhc7PL9h*|P*) z7Z^!MEVB#B0^1O~CUdn=$PK+{OY}$F)}6l3yFWmLpL`=8p1c6--|Ll%jH^#G!?Yla zn!H4xa9fzk46);%?Cm~cu+^`o#bUW|@l+DAJ(yKTKZ+2Z$r?GL9&*vqo8bwa zQ!^^@n5P|RV_ZvW-PEIFnb|oA8IyH#584y-q`hD)4BwC_|Aj*mK8P4Gqb9<-#9o`S zXkq6MX?sx~<*jOvMNe(mm)saJ@HNJfah$y@FMHrDJy1iXkEyfRefk(3T_n3RxVPi~ zw6>J~SbdhZkxI9Z>kYD!ZoH&H^*4V6bHkxZkw`306@F`B)wbeOwL0eQC!N$&4?Rcp z6}$BIW1G?hCj3{FFs#^)(>Bu*VO%G|FMRU>`$?2)vwS<66Iy5Wk@AqMZ)suozy0n% zT7E`PHC|F1A8K(`FUasv93%cpb@3XS7 z$CvyEOdUXsXEI8a=O17C9W{Zn22 zd3UpB0eq>>$0#!9Y;JqlrUk|l+exVHFm48-x~&CV7FyrB$gM+;Ps0)wUFm32-c(+% z>-Em?|5Att`h4)<-g4!}4e#44dRq3<#j8q%SdHhJc{`-?znd1ur z%q#hF0E@DWA^-lH#sG!ip#~q8)WK0RKYYeG%6?+B*blEC&o2b>d%T=07=vN0{PP7E zGF6GhZr#^Y@cP5xFaDLkyxe&6-(K!L&?2!uuiv=o-}zdomGce^`nK?OhCChrt zZ`5JXS_Zzc2k@2Pxxg#SHABFY5Ks|(!&(9CE8@2- zHc;A(XpJzZ%~~p0#(v*N5RAz znt1&9%W&z?mSJuK&h7Z)E)a7LW=Pz-gJ+J-;x7+GP{+bBa}zMdgM?4Hyp|t9q;sZ1 zsANu%d*u}Mp2-W#oX-ne|M44=f9=LzlUeDYYn(z?Vef)r|LpZSx?M#%81=>)hubnB zK@4__J0s7b_55Yuh;biB=Dx=nD|_sqc?kA>?|b}sq|Y1i0N(^AeFDvKgFwxSb4=tr z`ynt$S<~oc&2`Ng=nQbIH(R>H*^o6O=j^;T*$B)$W40;u+0@yn^d3h?FpiTz(-KcV zVLC9@p_QbkP=*MzuYnA4#;q#GWYglSv5hQ~t{yUoEtanC?kdfB6$>NVjeR_|q>s*e z0;qHvZt#N$+}`#K5Sz_B!%OjS-A9*q-Buo6V%zPJoP;gAtqoS)?oeNrXY;>q)s~yS zwp7nyr8_}Us><1X3QLEt-olk!Oxezu6AgCgyP?4c0!zV9&9IiEkgoI-IBX#{V(a?m zU;&te1IP8D2^`M8VWWeA$zZtcHS}R2cxdu;A*K?-pAT{!P2ouz5ryv*HcT8NhtSwh z7)lc*p72Egx?x33`fvM3#LNs|0yqFw5XqL<^;qzf1wL8eM1f88Q|2sv@pvac zZd%o=tz&{MnQWc2`k3}opqO4#GqJBch&TTjh&a_oPg3!uzV*aZe#(wM)O|BeY_-w< z^V}dLUzqr>+P!2Mktwu^Cx*#IKl|oCD#$?s{_C@z48tSmhGFCoHQqR9iuTpvdzv)r&C^04(sOTQ2A2wC!z=9$e&Hkk>oMz z<9Mq6Sg2=u^7p}eA1b!a4V%|LZ*$-BB)r$2YFE|Ou;TaX!ce29R2|1rS%t3j+hfe< z7AcW)o*L&G&I<{SIv6ioiNw3FjX2Iy*TCY30}0OSDZTT0O3}Zqso&z{=6L06ysz;Q z-{*J+?`CBTxw{;ZXQ`W>x7!o~RMQ{1gtaXC=xzF4i>JuCF2JUo_PJr{Dhl zp?HXAiE&$Vp>{`g@Dl8t;p!!|e50-nj z=gU<$wODvvzw3KVufv6Bk(k!u?ng=ns8(I=WsNPbb*ey(#YijY?yTLd#U zJIMQbFXK%I##Ow45iPiwcg>rTX{f-U;KH_SB(V^^q9eSeB#t3gSU!iE6CRg_1 zJ_z5w+Ouk}qvx4!@Rbj2pK0F09D>@DJF7KYfG07W>GRc_Z@Yf1W5_CLYp&`kmV+w3 z;LO(^=<}*%UThWihKLWOka)SJ*F!T;`N_|J(Z}X9jj2UXcB6|)tCHY=6z1xUHs67p=bhAkqm0f4tlOSfA3fG@*heOS z=yl1--~A^qYT#4#Bfl%mZ%|*kdTn|8i;tIw59u7m!;xUvMf_*WD>weRM8EEKq51Ob zpVwmY#pTAe>&tDuBKvcCjsJD|#RKhpq*(D~O=f0Tu%#ZEiQ@|wPxW=gXUo^V_%lu~ zLE)s%hU@@)rOI)DKTXqP{x7{Di7T2K1?}czno5l`tBsRW*7Oerc_`fnrb|{ekN~PK zJA5ULtoqy7ws9VfAAU+!J{+uss!N`t&K~&O!neMf+q06m=rOl;Bg7yk-l8VowMDPb zfI;U+!e<-=-f!$X#(-)TgBhskzzk#fSvof{r4Q}IOsWuPsl$p6I?cZH$2t@JF&&wl zrU!Fck&jFxt2CIxt-SM{4ny|GjM+#F;|wHec2DpVAI)uTuE`1zANwYp^VTmwXoGE)~7AG#yKXFFT9Mmx$H^8S4GSk!!&j!pXJMSG8u7W9Bkotl^?V4 zAIULFlCF?l*dh*-Xg!Ry6LneN-cR-3R=(9_t4`R?Jc z9TR`L_dF$!HraCxxN;=nI%4tb{ke|`C!yOS)R#>($w}E-EG_BMY8kSkp#n3}=p~+y>;9 zFtNQ*&W#Y`gc6N?FSBRDm*e>95&TB}#K6mlEse*I1dJWxS9Z2fti`#ZyJB(<(wsHm z;lhq>l$eu|9sgA4k!4=}!;{9bxK2$T{8O#0kdI@&pTF^{ zUg>*PzyJDpxuvIlKYV;YpY-L)-^YISG7EB)7m0IPUR;-m!=B(3&zH5h#w)1fCl$CJ zKhxsyWxWxEYd;@e1^rC9K3ML^?o}2(Jr~djaKC3~REJttS(LE&RyS2#ol{qG%^kQP z=k#S`SmQ`J2wx_q%%mJ245X}i1-yAJBJyObzS*D&517O;ugZl_%k-ovzsU>Ew$OfM zammvU*JH==6+dHEdosJy-@YyvOrxXUn78o-JBs&v?sP?3uFB?$h?+Cu=?&%kU7f-% zT)O0^ZCS*9_rv#>r*Ge0E*eQuwS5+L%na@4$qzF&H=p@Jg65j)_cvd8efj?T z?=5fV6VnQ1AN&R|eZ}0_v9n*%Q}~jk=f=wGbNb!wb6&*D-j@t`^i@dZ!(RLL=5nc>=?7i{2+FMm~|$B8!hpt#1~j77;L-6~_?ld$a& zHXsm>fGOL;Dt@(VtFJwqX%0t)Kc*i*a_GzsJ$!9-GCXRFE|se~Wd3p!#*7d3K|I;6 zzTjI5;N35b3~1tdvrXWTZ?HxRM+dDXhsGyKwjF#Dc29Sj{b_o9?&L3#`)DU*{oOWI ziEM6$Z5~5$9$A!-(kD{w<#1Y{uqn&vGi*xY!xpXt z>9E+UE#|x?gOx1tpLBKc+STQ}=Gc$#-S-^3$J^#pJgw#9J2AQ-b4^A!djT)v5aiez z{OA*3y=}-f6npN4Fb6!Znm6=e&If%IJ2c6BCE`X_V7S&&W={s*e|tGX#Ic1o;P?kB zO3p!$);U0mh`=_G-nL_A+7~w6rGl!gt2;ce8is{PJMc0nDK$gHwYE_Q&);0!H)9UX zr5s(zn49P$!Ma8k4-EiDM`0T=L@74?QgRcy32884*|nb@-Sg;C|2T8%dF;{TR{I}) z90A8#68e=Nphp@Qs_@lgtn7D~!|UQ9=z07dT7Nu}YWB9bCO;`6GL}El()>5lA=jC# zvoN+9oP;gQ+5hugWxHzRa59K8UFWl}USao`mTpr^nu>jWgNmGOnDVl7S|{Xof-28a z)902VMz^n+2$B0dm%_Xv*@f)@3i!p*cLH>_=lXyPRyoa=&=aQLB(W|Nh6ckK-)CwIKYrp zlGMJ@W|=G`K*op3T<0xkL)j)LQ5{_CxJJ)-wg<71Cr?$nNf0iiJ7GJ_G#I+a6L3#> z!yZ}L)8@(-*%fX`sy?q9Om#5dkN4?GN{RlZUzyCuBCcfegB@GP)P`3@M(;EES1$^{ zjkLI#_H?#@$W`R5arRw& z)dfAqcX`p#^0buD@@SHT5Ro^T`VRvkp5*>`s+-{0$2U1?4>u=+$0IuW*$c>YtenNj zU$+H~<6@L$%a?px8<*g%P3PBi=XPRCJrU}F6HDo*MZpgxrFmKZN$G)?W8nGr^yn`U z&~bEybm%1abwTG8PLT)Kl>yZGCeKwo4aX@6mCyGg_ySHXtbFK&HqE1i`N0$Ul8=Yg2+8it*wh{jfnv0RU1Rw1ZzQm?31Z?PDQ4U4%f2PM4Nljo};jV*ofNPv4f zoH#zPqrc;6PB94Bqz*1Ru4)594@of99^F=H<683W#3v|#G9U@piJ=N7s#9MwYGSyE zfW{YpC=rL+HUN?y_!Oa{cmM=xXlznY`igvWpl-nTx= zM#=`Q-l-=H=eURzn^g&-&h3Hzm^Nchb>u$9m2XJA4T#5}wZ%^-rb@RFuh{T9MV&9Y zYPz%NY4Pb$FA}$p#N7OW=-81IOPfav@11%xw_A<2f413nXL^u zypMk!FTO;Gqdg%HnrTe+4LW~P#x<7Xg1;ZQt~-sQrNa*&oefo5PYFmo@RY!yw?}Ww zhWjGu(S{5Lj-uNCiw{|-J?f1rd>jXHMAy71QwZF4n{KI`gEnCuR*qxY0A)a$zcj2& zJpHqs+GI@hN67h`Ebak~r+^cKp7}iaiS)dj{X68TFQ4U)48Zf@i)-{Rvmn}xY_C+V zd%DkptnxdS|EHa!^Pz8B;Ml880I7iicHQ@BRgFrM4V%*Euf`$q{HC9Z1?`L;U_AC7 z%|c1WyBX#V+3Hq&!&J zG=&9S*-y3eFH93BdDzd#u=wB8t>SI~r8|uKVv@7?8<-?$VclnNRF09_A>^C5vWr^V z_&*XYJp$8B&`9gt4T{m_!%^9HLDI+YJJ63TsyjV)RDr2Uo5RI@L`!sZB4@~Rf??w4 zZ}dyb4H+*omR=Zt@mf5^=4m(i=s@g--^3#8xUjcqYyu%xM4?M|Sd(*@ZgohfOcYFY zM3@Zy6j#Oxu#f03o0l8GK-vyPwv-@d5oKY584He~VNtjyoIsG4P3(z~Mkec&=~1xU z=!@k~?!!u^n~J0m(Z%QB>gmm?2V_-a<8oNg{ekV{and+2h(sBBgMyLLoNc^yf(4yk;h-^e4gbTtMd}arSYlb zyaqqcelRNBXz)2s?XyUAo!iZ8LtQs%=myG@hk70C?R$C{N;ky0NxoC;C;i$^j;Ot0GCS{31O8Z7> z<~6wfjnf{S4t0s2bIq)H4EETI#oy8s$!}h~vb?PY>CaufwA|DJ-F3|&`0cW* zdP4P)^iQAZQBxW$U-uM)FYNvNwb$J5_Aa@vp~QlwSD`U-zKj)Qh)buMg*bTEqScUd zwNML~_WAX~n&oJ5@tOMO9IKvsQW=~Vcd2=LSGk_!sZjIKnxaDc>0QyP&$IaJM>N95 z3&6xyEb>y*A|`}*zqUE^n{>=+B5&+4uiRC4J7@r4qVY+?FUxDM^EB%_dL=RAKv>nh zQu!?9&5P=b2eQzj?PJY6u3qAIe|3yLdSB;>^UJkMI!2#pEa9%Z)Nem`)_Ud7>)p?( z5C7b+{pIE7|Lm{n$>0zDI%bl3rl;MXXo2^<`s$*_$dxO4dRhI;6U-OHKjmp@aN5uY zuyE)u@bs$+$It8wZv2-n001BWNkl3C#<*gu5f)ahW@l|#Uyjgu`0II7r4o(k6miWttN`zHXw1@`RH>2*k2Mb zpE3qV!Yeb_5SlpH1P)YLtRXQbj(G_0!!+5ohtAdUAX#A*w#be=PM?H6L8pE?rd?gf zGVs6-qUT9pg<|Y3M7=F(7ggf3q8G|O!yT`N&2dOeF+kW=(!9sPPAR(|aL>AmQX zl)OfWd}n8r#?g-Czrs|mt?nsyx?+`mM$Z^3v6~+wvP% zpBeV?-TMolUQX&Gbk(-9;rbV+|MgK2ezdJ?l?{zHUemNFg2X)~=A&`evaU>B$8{7} zV#hokreitPqo=Tciua``CGDV(YTnJEcE=L?b7l z2^%@}YwDz~K1sLsvgY=}S~fQ;1NV7$e48x|O!@2ige=bGt8rT3&0ZX~LqCUi6Dek9 z;J-~r3d7ro+l(4%gApsukBx_H@(6+-+iFujjVUJejUBcp5!*Nu>u8fbky_734xrDQ z)PaK+5M=t>Rs`R-GzVY;0)z z@OkThr9|f-Rq5W|1@%)w-#h)SeErFii)vH{&un4r%ny z^dx!0!)Gk4BIBlc45F}2SeniT6;*Zl&fTGX!`=yR1Y^H3wZ*#!r3@LWzP-l{P#k42 zSK2V)}ta)mAkRHFpp{~;DlDR&rX!iEC26nFKsQY$C zA|Fa&gNyCDuhxhfS=>~=;NJq(zSOI9{d7ckGU&Da5Q{)lyRXYvbO#l<>J{*_%aHEN zvhIQ7qhgJF9_~ea9<_-RfREd=nk|RW1v#rF32y*RVElX=?>x6M0 z)&Chh^uAi)Df+?&W|I#=JppaknR{=7EA z#+56}6`hZ7YEkYX`$t&L)jSgc-Nonx`B05i*|2Z zy1v}Je0ll#>o>LExE`|L&qq&E>hnlmzIOdh`;;3OiSx1yU%fh045|=po&u}{TR5KP0 zY_3@>WuH?YU`zk9kn1>F4AqW_4-2FCNS;MdFF1?0-0i}#>?y`-0Heo-Ifd>V@})Yb zQaBmB_R6d7Q$!4T?<0ZOQ^?40z{OW#Kll}m60i?h*d~_`?%i=W_$eMO{?Z@zkWM_e zJ{M2my6Y`h$57NRWf=Q{oZSxQIXsQdI7J)nAT#38KK{9l8Xxox#X4#;xqr~%SA}+6 zy8cyB#MAC(7XZV6#bbS*-q-IMYp2kH_@{1EJ0IS^w_I}^WhOlHFU-h}5}ZkIXx&BS ze?iW9g8ib9pSyg+UkK1Z5kB)H0U}XRk`D&Hs6m7PHbNI*)&nX+{>+wNm<%?5-x}PM zXSgjDhiKw&3c~q=AJ1pEcE9A+{4p zCH}J?qBdYc>~CX}knqqL$iiFPbz53|i|f6^ImG>vwflqf9=5svxR9sa^w@$zPDP|R zlFIy6`Y?u!^YDXXw*k23pC|W}8D=oVog__C3&Ee(3Y4>d+N^l78fuM7*s` z{iSnC{asHza4XM09?Z61X%#Zg+qB$=5WEWgFpeXi$B+h&YbkSz8fDB&_}vme7>DNnD#Q>y(nM+q7E z1fu2<;~tMJE~*1q;N{IB)b$29EIca`5%+~ifV)7h_5_+Ey=$r zBzB?Bbm(UH9R!zL3yey6(x0`e+VYvmi%wL@%5={!M(DaftKX}(Q8|%u$jeKdV~QKt zBSatfM<72kVjr(DLf1Ka0QVlB>KfZq(kbnYQ#$fAefI{v%>wsBhO<+4$iQwK@5#HY z(`CAnnF+~CUf`@x(g8WDPsO2rN}$HMDC2dH6FHQFI7v4^8{(8*yFnjk9s7g?dYq!S z@RF~h3}F&7>UJJ3k_?!P>l$0Q(8VdlXtbaH z&50zP#jVO*ZuI%ML3GkH_jQ@C0JwxQ67sy##ApRk1JVb*PtKx#8a_dZ@d%=h`1I?2h4W5PRMl zZbv;#i)eN3a>qG{w-W3)K7)u*AA_4SL^_02GY>T%v!oh{+oDekzSk+pC~4bW6y41_ z9fs>|*{r3*eG`KWZ!4Q(q+-nXc+;Y}X=Ir;Q8lZJlIGZ7cU_OQ*Qck&$1#{VR%bSo z%FsI%=ZcZ+5d+SKz_!phcQ>a3j7dlX7mo7);+3ZsbLsVSFSCe7QEst-MXy9Tv40|=M2ayV?PK8k?IN{crM9v#$>J%m7(S;3?Pt6W z+KFqF6^=z(a4g*BlfbTNKmDQlygtvgxP6{}dn&nVZqNBOul(lTJv|#uKMCjGy4Dl5 z&vc!0dSH3tR=)*(o~MlYO=xOjvAC<)_<4FyuPuJ0nXJ+VbM7*BfsZGVv%St=`|jo| z9!tEUn?TGh{LAFpk=|c<5RwB&4PP2y{>)tHyiPuxe;%XJ_4lH3xvD42pFR13ck&xI z9!SoSC=AzV5wG05x_rP)n?-OJjcNI0W*74x(0no12-;T^;5^Z zC_T<)dQ**DG2)qvxz{oW^?G77B#_DXd-~$TSM{Lu&%OGFa#BCk1WRge&~noAqO-=4 z7ZB)wa;#bmta)lU`F1bUB#KSE3EnbWO}pH$-S5h$^>T>sY|qeJhyRSBn)z3KSz_Rb zi!J-1_JwUVdi-sNOfOS&;%;5~MeRqPJQBqqr;%we+AF?j*To15neahxWrDaEr;T&$ z!Zav9r7EMXy!@c=w0Q*jlsx;;Ur9BMj(r?`dEh8E24HvCd9?XjwP#J;|0|+NcU|9z@01!`wJr#AF-Ptlf|jPOGET zh`B*@7lonTmeOtI&&&6CVaw6<(aNwF0o^_N-2Ktq|43Qaz8ig#*)y{Jg^28<+Mj{v z+7jn9uASKOMh!-;PlZsresHO9-->p>a!mo8&hX*OiLp|I^N~R+6CZkid998E3`FA= zKX$7PR~>MKA|P_>%ts2L*@R47!fX??tkW+%z9_VD(2Yk%PSoVW9HM{dGv;5OcSv{9 z^GRgS;wLh&(HGXv^V1~NR=1Bn7oo;lF52@s;T@1#CE6YF$x+kKxMx~g`<%IV8$&*( z4Q;PnJ|>qRzne2A$i6IS)yOENJ63No@ZqC8!3VwGDxt$OI7vS-|;MV@fIGp!FLU-us`%t`gI=DZYwXoJlVcE zL0)62u+)XGI&_(P3QJdYVY+?DroZC%>N)Nje&jlcJ=2d(c5;-HwKIvh{*RqG6$e!G zUHMHrqe^yQGTnBF9GTSypIub~WTo?&PJ+Tw@5v6MhfUlgDQ(Pq>iidND&34RB~XQ` z436O>pOCeSGjc@Yp35lZkDA|vWkSQZ2dR0Ih0jB3CCMa@g~X_XmP(Sq*Wrwe0w4e2 zD$?wDV48Eeu)9HkFJ$nN2~!PEc(_x~Z*9Wc*|*MNz~wFecZo8pqU@XtQKL*2sG(sqRwv?jwoS|MPVzq z(6CK^qB8BwFa%}iXxhOQ+m>d$2{}UhD^Hc%@AP_HP&N}}%m@&u&e^myZ1h!RTZv{7{rCrNQA9eSlcoLSrtk;N= z&U%ZVy_ykp-%0HqKcTIj(>Xwb^0UgZgcx)>9IQmxasGI*lDSmyWF2(nawtXy zmS{t5s5aZlNL^TlejI2m+w_5xdG2aw8uWJ1Y>G_B=*eSMBrCI#qY0!3=rGNTP1$X0 zKqc#RmzDgS7WSUqd!$$Ea(z=oErjw)+_)mmd4`oIY{>MThqwI%;+@BLm+$IxN56B* zQ@=h*XU;5Wy`#y|Hy=FmZ}(z%O^agJw2*mO^_5(djH@m4Cyg8KM5#rLpX!lbqb>Xs zAGi^cYZqbp2?t)Md{O81|DU~gYt|)6&x2~My-xekdw1{M$LSf(XhzZq2@7;EGR7g< zI4}@6906f&2ncTB+P>un_=X=q;43b05W$5Z2#5e|LJ$%l3CSamWQ{b^%t&+S>E3#}D7bOmAzt zr{8uxoxX8=q$h@d;kno0u@%S4{ij9R2H8yMAd5CsAC?sX^E<~Hqkd~Pd$R%Cg7ycC zZMDxd3@PUU%Ra-+IX>C?>`m% z=3aaL-t=4evH};$`J&7nnBgVUSOkvtqe3?$Z~8!-n72hu9T&pyY~#uH7e6c30CxOB0gL(y!SJ7>jM+wETqwC;S*YM#m2KojSUZsl=qiCs6|GtJxRSWsAFuVKBkQA zrJZrbHLFM|Cs~x82n_8lvmt9<^i&Aw3&)mnw77%NE(sFZ$!)7TK-y~K*d6G~ObxC6 zY34Or1yEO|AUj1f% zF7;v?lg|{Grwp<*$$py0l0=FT5;+mssD|w+dyYEr9B1o=eHv%jbqqCQ-)}}QYng{L zG=jW~^K`c|Ch00S5VdrP|3M{l`#wmHW53at_L~&3cluc1Byb1DUgotcz8FRa{Blv8 ziFBO>l$QpM7)og#e`SnN&%h`eRRF8z@j?Z6RPj&WasC4WJF%*1%u-CkQ((NOiOt2l zYwHxQFw~jXF~)|Jf*DO|SER|TDbu1a=5jl@j_%>hfd^RV-Nl#1uHnmld_dwFbe!+- z*ySIK9>XAyXxqFVGY&s9ASmar8n66PUchBfQ}abE3FW#9L+N>5=o?yoA(UUljJDBV zv?=hhr9X9oDsjOE8KAV~sA0QS)Cu`9kRL%3qf7IwTMtLuvMh8)Q$M1^W^K!T^hqeS zA9S3T7H#MXsaEvqaQuPj8m1Zh+*CUbauax*@iv7lVJEn{c15>gRrFm;o=@Qj=j_CEWNw;nV&0sjNooUyknsW!~nc}SX z39fV0n~>{9_74;GA#g$j|E=ph>HoPX$VT8j>UCw z-cmYGQR4$DY620IeaK=o18+G`0$e?&Gs{P}_s z(KBW#pVj=JppMT=u#a*y`e9+6qgfUja*+{hW*Wz0&PWargHcL#>IikiGED7Dd&C7wzx}qncxFc zZu4p)&L>Pb@n`M(x}Km%O>fcWmJI}@R2hgsS`#&8x{1hkvm{)#4YA^6FVQYpX|v?t z+U(1+v2K`1=Gifx7JG#K#1jZU&}fV}&(Zip=4+Ui6e2XHQ5OfUzBWMVkGSf0Fp{n+ z=Z*rNj6lk!`0Xr8usFt&rkJmVsW;qdQv9>7coRM@z)R#BW`;B(WF@qc@qKP$C9g)w zUdYXxWEOrBJnNEpmE44P?ioXxf7E3;1I*<{*%ML8P6p7Sjx$x@jUN4nb>0So+l#Ty zuEUDKhINEjEwTWePxD|ZG}f#3;48LtRzHO?_sb8=dAj3*NHWamN)YI?=tn!mXAV&a5nHs8bIFQ44x zq8X1}-oSZ)1)#TZlju8m%2iKJ|bd1XZp&UqZ)>B=;mb#b+$t_qNVPQ<~8jqSh z>4s-mbDXKUM3V-duaAVen!1JGn?8SbgmEXY10iJfh_Ab^%Ul7d?EI<9)k4^t0 z+Rop){zH60;x&Abc>xRSd&u_|#_~3D=#3Z>}yHfNC z)~T7RbRD2E(agq&G5GkOd>O-|6EyPBey9lRtDw4)GjK}?%6KkX(q&IGy#z%{2a#2A z6!Ln=&=DG1(A6y^-py_cF~U`F+$*U@13@3&C8S7K(*ZkYjdV>!rso#ne=}xobu~%$ zo@siS@kOA%RG8=wigUk&VSwG|f)i&T=uJA~uU@AB7Z{K28{wm;i}1GZaB46lMM$3{ z!#Bnd#xr@3Ny2pv#zl@_O4K+5Agwlu0CG(^|9EdCzO;rL zkdV+f|1{5I0wqC`ZDfN3Mlf!LBQ|7FTN|~M#fTCY(n4UvHkvoht9hlN4SRMzB6*!L@Qeizv@MPoB9I|w{q=yYxXc5Ek4!3gm=HHk$!UY0M) zI$>iPl|2M~8QogWi?$HP6{3%|hy`R#-diu^nhX;lt_aWBg>;I1qdIBFFeU5BLo>WztflFLInXa`H## zaSIJKmB3T4zj8*k4a87W6M7NgYDg;hId%kdL5Z+fM4%H;bNX z5qtT?96VR&l_+NBU0>|Y2(v+P1EV3S^v&?9&%|;zrxx%Wy9r286>w<5Svb z6MiiP7lTS;fqNkI+-@%Rz@$VMS0Rs_NbBaeT=Ax5VELiM6aSEbFEV55L0se!B>ITi z(OyG50!m#-MdPOO6;ma`>>TXlxACsygT%>n`uGr^AMk+!5Xa6wXc^W`8(6vOY(iqZ zx%Xc`!_!jy`&dfuqG1>`)u6a?V$G9HvxNP+sW|!tu+D{TER?NW_V|M4V-e8*>-c z^i$302>H()H0U-Ks1CQ!rgyOL`xvi?-pA9C|M}}b zMw8fb001BWNkl<>0kZAPfh3V{eRQL7k+X2*5284 zaQ^P}^6^(-3rp;y>eDPxoi@?|TdPn$C8_@s_GdBth<;q^| z$3`*(#ya$BEC)FM=n#J#zwHAVWC1F^LoX}`e_jBVJ!SO6c-oLqzlxQv_$1BZdZgJN z^qKzbk4+S=)UND`74|E+j58gz`duLJ z19~WSMc(|)sn$J>8c~a>XHWu^?20yVi45hc5!6LD*d&YECE*KWsFcp6os^*sO|Q3A z)SZqZ2^Q=w(uF%Y2p7!!;xdarm~7Io>M#a69T^?Ftv5$~=7Wy$BpMsm{$tMv%`MMI zrQ66z6mqi+9R)shd{|?7s|jscHhHFu$+8cNuBl$Zp=_#Q>U+p24psE0-Nxvp2Ip}g zcuWV*h*s;6Zfr+oU3lx%mt@u=_vW$dHjnGedFuU=vsc@*SNK18UQdE1F0NrvS0jEw zEb!5nz(6Tl__(z2G*3CF0s5j9I*ut=x?O94uRH=nD3fZuwG+>yUfFjM$pS~x=I%KFp@Ie5+6=xqczht+~ z`2dpBqBUw_`O_3!49B!V9x1E-M28%t@T^^kV@p^{=7qK-bP`GgJVi2NKOq|Pd!*KP_?*@xCpXmkN=sOX3L>Ic0z&)n|Ioi#y==uvV^UoHwQ}; zOlT$h8lVBIPND^Xp$-j5Mg?u9bxoSFZFKtT9nO1<1J3J=i@Yg`E0J~cuFF@dxzCz; zC0dqq^hYQ`1K2AmjT&s;CaR2t6-aXKgQf#jb-ce38e;j!t@V`;arItM)%Wb2v78*u zP{M1_IX_GKI)6r>X8-zi{qYH4-v8l2)O+mhH*q_7VV)+C1i2CHu=-bafSqu%6CD~` zCdUb0E=;FQ?5N3uv8756#)Y@dogoZ2%>|veV!5436GCU*z;nvxbIm4+t=PssIcusl z1tm8lImb=nfLcke;6s6J0kc{xR=_UYgaZu`>?}@lLt@~fmm~}vx7=5(o24mxjJg^7 zLW>%zd`yHTC-70Mqda8gpof6Ez(-9D`H(dnCCUIB-Or?J1m^hUK^{*t#|I*Q0O1E1 zzG#p)Uj>yt^f{n3j++>eC9;Ihj|^Wq$X5&LhBOq$8Pn>ZxE({@xxGGkgWIh zhtrhJ!D7#r{xh={xVX9qmd(fLtF}pzZIZaTO#tf2x^AFiSsjFtaouNU2$M^>Xnb|h zFhwK`Hmv2h`YF~4Cq2ZBE4n2riZXpjALM3>N3*r2-2PlwWg#eMS@RLvw)HuuN^+1Y zoD=fD8pPSTZuYAt4HDPj1>k~6R+O*l!fojlcMgQJ%y1yaVq0es47ce(O>UZg@aTL3 zn=PQpEE$1Ed2*d%Q%ZA+bVca~Hx&g@+&YxRROJ$%I6@-8A}U+V=;yEPPj4KaOi!>H z^#We!{4LOLgT}qE=>dX2D^C;N#KJEZf8CEQ+lDL{?$rAdYm`uu% zc8IHeB@D(H`Xt_j!D}=!=0dKFV)0Q=Z?fO8Z*|?oO8Pk#>n1$KsV7(QO5pmsVq9Nw zk;Na5WVBm1;5azANQ^#U1c0?DsoxhaxY!R&j(X->uCk>PSfX~-SgeQV`@UrBu@BgjoGpGM(dTIZw(;E-}U8TmI6mQ^R zA0bz|=M7D^9WfwPyZ9vV85UUCM3%U1N-h4O9b6RUlS5}%7-w7AfAq$FS6!@Fv42^J z;>}$CzjknQdWPS>-q}Z->H2hk?`NiOedZUZNBciM?VLTG?wo&9PwGB-`0LZ@lYcxN zA3dA?y`RSKP~-j2%>NI*zcn4>25dw{K6nBcUrn37#f4#bt1UA=jd_Lo=9(S-hy^jw}cp_NiNP6P=hsYd{rERUFpmV1Q z7w)xaD?DxRhkP`iA=8t+km;54>?-2;M?ci#mF%*So$Xn(FVUm)MICKp_Qe} zGi)`MM1qo^MhRP7uo-eYI*_p0G>SlSEQ^+q_h>=$W~NU5OcL+o0CBPj z+plw3%~9YMq4P25$QHf(vl$j0{6@NLN6D>2Je{lS`%)&wyB+|u|YP0 zshXYz@Ri8onQ@oP5_TCmmsX#p&&6ZIn*HKFprvF*z?f`%kCAoYXz&3`c>91(V7}Bp z(TuA{sHellv>Yk?nqvl(1dpwVf+;ER$QP*q>Q(eTWV)u~`iU>HQO_@rajfzl2*)tn z!6Sk8tofucp9%$Fca<{6zKZRKfqg&mH9l*%RAOT~?LuwZt84|#g^QSsPjth2Z-%nT8(8-? z8ao4O|JPAMb$E%9XhX-b&M50M-)A99h&U2`ED}*Y7AEqbzYtj8A~YMzmM}&w>tMO6 zu-BD3jR_&(XWdm?bBSYX2n;N?5J*OGk@NZ*79k*(ylQU5hs-pUMJ0XS_z0fsTVBQo z#uk=FJ-2VU3sC|5vOa&(D;{oma)_sYA3f6ig*dl2yk2h0pWmt_PGe2t2?-_nk6c9| zInC>;m(Viju;I2HxJ?#%8dqN?Y+M>Han_|+GA=lZ+xVe@6*kU>AC$K5@Dp5-m2h#= zN^w#ewr1b4m=6xygsn0YGjJ#1qzPhL2*zD*i&in}i9ayd;BI-cc)G zB+Q3`wvlxF-ZJvT&ck7*4+eCjetyojEZQtN zUx?RSFM28YE$f=?GNlyM3B5k=^X!?>oOagr9vVkX7Xs(II2(7;W}uUJc=kEADecR) zErUiG9dXR5R`Rx`WUylFK~(LN+%UBRa=ER*=0BMvw^%IJ48i=k%TH|1sXrv#%SOhtu8Z+0M(; z!@GZf`ug_awEOtx^c-d$FP)!E`=#&LCN_bMV$GWku?VW5dIARPrRrZcInw8NiPs?V zcXYSW7VZ!Io-%Si!yR3kgj3Fj@H%H0a_+;u7S|X^@nwRe=RQ0A(aV2ldb;--T89O3 zS+akQru*OhN7K%`|0NcQp@AWH0dwRU?BD$2*7PnOR{!(&VlG8n>e)lgoQuDVNBKLt zc?$u35QHx}#G!&)%1j7Fc|oPohMF$|=R&p?fw|Dl4^UVTW_&Gt(+IQ-xuGK}SyaV1 zDGVxNpd-#fxxgDjt=$G)FwB#KkPQMpZUO;MAC4zF#v7$^3@C_LbX?Tq);>o0rTEgu z8CFgqUDG!MBPm%zXMOD}fk!lu9XMiWlr6|Z%k7dK`?wgfzXjgtq`8|>ABA1<$u5|= z-=r(aE!quwEDG_T{8NGuBaQT z8j4tx8?{LvI&2M!lUiY!3l&9~VDueQkFhxC`<{vQ#WH!}__Qr;h_DaDE7uB29i6^d z)H8M%qHar9K6P1<=N^`^mai-*biZE)0Q@^V<0$n4aSI4AhPC7tRBXi0?GpqJvyAY; zw0O8;l@nbtb)2<+ky+_nV^>^t;*I`*+??84q`AEAcM;_%0xXcs0)O~VUNX@zZs=EE*aqK_$I+pHPus_{A427Rbcx%bfn>T7p+u@6?GEqToRV31HI zJx0ubQfnTY(N_1*=Dun855Gs8!II~yV*(cxwm_&tSIW1gWkzm>O=7kw7rMck@IrwmxUD0aXbG^oapdhk$=dIw#W_tKuT{tg4PZd>6?vsPDKCsAtOd=>`6T}3>g=Hi3sn+L~Pb)PmZQj z{N^IusRT0U$fMA(&!y+G<_DB6?Yne#sezX2IUW3Lx8LdLAk=cHXXiY@4@T^`+y)(!M69vjda)&?gB<`K`{wpL3wH zse&@^+8Kx+gl5-j*;;8wsCyAP=iFZyY|Je*fv=^yTXZ(=jx7urcO6W%9&t>RrR@qIt$S<06q9w&-#O>{=XWNnCDc zEQA&-RJ@+?HNW(sQtER!@aw5{qn>jb-Q2`7BjR$-%e|oA7*<YmUAHe%A zo(Dddj<#I$NO2B(7XGI3yRZKH)1%$H)7kC|K<%g> zU<&Z@bnWE(c>4G8v<)DiGUjW_@7#Vi?L50Sz5UMCbQ|B1_-l8sPk#!#BRuu}1bKd+ zuga!#6*VBpUIfm90yQeyoRmxirH)hktPl{yR9UhQP5fQ{E#4`vmoiNL^5so;c>vRGb=@(@v)*pZ=a;b*bU%Bz4xs}n?V!(%-py}SaP98vLK zs^}|VnQEcvvgM_M}1W0qKhu25^9d${xO zrJFf=_FjtnLxH!9+~uN&UAG-~KvG`C=O%1^TTXJnk<`3lBcdsDKTukE5y4eiF{^wf z*oTEFmB$!O)V?}LpajPTPSmo29G88e$a5-WPSc{IVOP_F`;gze<{Qgb6I^khBJwqAwNr;bJxY#go3_x6^?rQY6Bu{>RF@k5i)c>FBWVFYc}E8USJ2(5Y|=Sr%*L^ zl;mXpxsh)F2FpvlC4`=BUihuNx}+TCoYTLgj>>C z#`Iap*QQ9ays@3MHZDxwSGLZ0U&W|XEE%+@rrf=C>_TBb#IOV(=T35#hqfUa|9+?x zxSIFlql!nOG@|BJ2jS5N6HI%57@MfRQm-F7}cL>wP zvV(-N$T{@Bp1DL(MYI{&IG9vg4!6JDqOS#2pho4D8|tFWwy{gWk|=;b7q zrOk7rHu;8b051Do_EDOx<}V@uko)Yk#9I)}Tr6RRbk}Y231C2ZI-o-@=^W27ToWRl z0pO{tEQpHD2U5YIszo>(g0WqkD=JLqoW_wN0)~uLjLM~}z{-M$kPKkYMZG9#y30`V zICm>kH)-^<1Yg1~;YME{2Jf>xeQ6wY$$;q+>6kve>^fuVM~loa(UMu=TDkS9gUtx5AeIX*YT>^Z9egfR{-;77;SIkx8OOr;?QAF z<*4u}MK7y^G35bQwFsS#MP6t1^k!Ma;zBcDp}dC#sN2N?^mABryoKKld5l-;{^s#p z(-(GbPCtF^cJ*l@x7V^<*Lj15?k?t24GhYf_=`6bpW-oY`nYxSC)4To{@dy4-M==SJohux`R;3Y!uvKBm-#|u%ssY_r}G^= zEqwF8o?e=Md)m2nhTpKef#15lrS_kle;y0HFHE}_3&+zhpiQq}0XarrUG&sqC}uN= z$G@1BxdWmtaXjOxS@w@{>SHV(^B?ZyKE}%W;ob|l$@?7QV8(@=v$K6P?Vh|bU3>Di z>EPk-On1)y*|c{TPsHy6|7e;XKH!+;mlfFUSOkX8*I~=oHBbAPeciZ$g=M}jd22ev zYRNGe0K6EnXXq1?*ieM001BU8emgL?CsHwLyWL!ZR3A;*2FeiZFv-Y%v}#iN$K!mwk5i6`-BnMa%$i zK#;#B{Tf#LV(@GIAg*k-Tf%xj*~_1acOG7Y(Rnmq?BYokwh*bcxJE zr*~dKl?Z)hE79ATgPQR43TJ(TkzB2XdaR>xT} z%^o;+i5*goL@1dXk4zq)JK%XP)jWVS@)Td3(4Ng>j7sC;#DBa;#6mfzTEvM)eY%Y= zxv|C{U4?DT9pn!}W>mt+KYdjJNY1ak_#3Zyh717a?|U<>%l~>^w^#Wt{mz)=P)GmIKVh{7e{r&6H7JsG!`e&H)d>Bvlw5&ea zl=fk6ViC;b31gk>r23Rx=m8xY=>Q0R0r(d!Dmn7_^Ks^sF51`YdTPSk=yT*5tI8@7 zXPaPSn`2RudHQGq*a8q%6!-1o=M*Zf=N)zy^Y%M_R`IM$IP?{9wvhuHih-^un>eU! zlOxhbi`yqT?834T3rrS+axY4kane4-&9ynsDC}ojM!a2;AAE@TN4Sz0H z+TdB^j%6#6Mx1JN;1f}E3xhzXmKSrw+)D~B{PV@91Zm#K4*0Z+G9yY3*0+xFv_hHZS} zh~5gkb+K1Csc#Fpj6uDSaLT>t3lgW}JaoJ>IVKoau}Q;__{tYQwBeH~swoqIcJNJF z3Dv05Q|!N>04oE}CjM|hKUD@I@`7(TSH6s2Vlh9D9LnP6E&xMuj#*qU=#mVw2O9h|i&$;Ppgb zKsI+s@=LUR_WJ%<9ergR)AnuN^(g-1;cl{`G?7@^ZjkV%E|g$qe;S3--Vj(;q?k;JEtv7V@L{`xB~V-tag&;S4+ z07*naRDtnDJQ;CqI>qAj*WY+^`k&9RgA!ntpvD%pz3FB34^L9 zo)|ePo~W#R(NR`>X&iADPK<2P=dAG;i@@xCl(IhvjFF&Qf?#1N2&A>G1*14n${#E2 zQ_KnYl&GE*1%HUM$u}OoH9a_fir-Z}n*Qw3JJYMUk+%bG&F+u-(0d*DCL!ox9V$^WVTLjoD88-+73|Q~V+SYv?A+e^U#Am1 zp8o6zeS^?!B_=s|4f5`E{rYX#zls}>c*^+X3wp|U+P(u@eu-gsdV2J)t6!Zn`-)Ev zpW&6nXIPNsQ^mIrehq#2^N9HX>#%3j&7HTW+t0o>y}13m)5Eua55M=z%=d6o)x2+8-%Z7W`8j_3cWe402J|7~zlTNV z@0H(H{_5lV=;xj30DW--^&Px2o9)(9zdSkDlU4LNUs8FFg=S=+egZfO_c``y{DvX) z*!M)q7q)Sp4jR}G4w^D5YkfB>?|(^s;F&Sb|uauNO_z5RR~^`>0h{8D>p}SN4*EP^NiLiC-+M+MLob3cw!IzIRR#}W2NErveRYMe&PIj$2c z;galQ@27Ua)zIVEAfJclsIP__h-@#qZDf`8qnk~-5zCWI%@5}@=Wdx!aWIlRKBP1} z|{lFt`*Tx4QP|J{1- z)^r_TN`Lt9;dFX7)$q|u=rhuSTm*}iG$+-%_U@kthdlgQmm|}f#`6J@kq{oeNwRuJV;9Qp+YqHBBPv0 z{&AyPWKjI(Ls7{{k`n#ZdGngAX2kJTm;67EzBH?458yfL|XuI9H5gg`^!m$jG%PxDar8~ z$--^5l>|HlITxK%e5t-Hj<$8bB}ct|y9N^?T@NUh^pq4`<2xor zS|C?0;Ph-SOLUcWog5k2&K;eytO*#iq^qDr@GTI3_k}O(?;pPLmFb_KyocXu#S#`S z5}af4w^ENWiQ`SN-EA&RmHf-jRvb;nlG6>O^XnkRSLomo1m|CbncPOooWukM)7JO-pnw7>xHH8YE)^?s9+ zxu+V41k`O*B~QgRs^)`pM|1pbUgn^i62%vDjD_Doo%4xM_KhdIAmev?`7w)f9{91) z$5$(B{sBBhDvWW?R~ExD{nD3kh{FZR|LuE!H2voNKhxsx4a^Y!`i*m2RE@72H`=S}El?Gn;>^Pys%9m6;D`#Tu3yIA4n6U5Ag z`v(8GAgq1DeFKwQ=(2lQIR3&O^1*n!|K$GkHSFVqt)1yMUUB}VgXgEuVNqKjQfL5t zSb|_do7lf9*auwj%}+OnU5uS)jOl?#yW%g5!FasOUGYgJIUtOdDMn-Z`!Ta6c-gQ7>Wh(kLmq zjYj+mKw=*&omDXPJU-~cj>6t?;ecwoO#Qn95%_tp!vaNne*5_X6v>r>FPQ6f@axAhRysH zK|b4h=!}_F+e&25Mz1J)=q0#$_BzMda;`=KxfKMCJY`|XZFZrovGKKz$3!lDt8nE( zEPlD4W1RQ!NYg^+Bnaq-vn;(or!$0A%ac(jS>q-h!`lU3*h^V`u zjUmN9X0Cv&$v}9DxAAOYo^)`)pJU-`u{meNymRP(n*7j}+USoUbNHtFPs_*K1NBH@_9~- ztur^w*c;iJW^E{lqf7bBI0=iK^qQ{9D`Cscb%sY4qa^I9i<0%0p+llGR}kt>$RO-+`Br`+^oCj{r6t@B|hMw;!e$J(nx@OIrAv|rf1ftO`HZ{l)RbWC>q>_=2 z*ZeRBZ-@ps@GUNR9%!mTvpCPdhVK~Tg%+YEuWFxP6{-=BWtt#3^yc=Gq(zIA7Meed>k zclRb1A@}5i`}Bm1yj=VR&8Nahb5Z!X)Ti*R8>mbWX&gNN?sVt#-@%i;@f&c8i{Ha# zPJ39m<$^F@mwfxq*7VBj)AZb3whQUukM*X)_VBMXM?TpV{3O6RkrpHDi;ke!Yc?|{b_PW8GZ#=}F#(;n7%&ra~_W-RU!V>0g<4N?W6WP^?< zo5C$U3nGF{D!};zZjyGS%x1PB;1+wO!w18jETs|_l$;8?Y~8SpT5!~qg&Hs;i+vCu zmS=_#a18Wv=cc;s57L$sUFk}MkAV$gw_QO<9J-9q_@R9o7g^t2L%OV>@q#XaJ9Uyb z=goDeULFNu#!l_P$y?E+Hf3eC5>dIq8{|c`hLB!6w;>!yl1?1VTy6{08=6$Di_cQ^ zCTT3ut1-G?0Ugzp>5qKH@C)uy8m9DpwF!HovVAeTbVXYh*TMaeZP7_Sq?f)FVx3yW z4!xidA)B_Tyw7-6nWxL~ymCR9ORL9}-JbQ9ENePxX{0V+7iF^0ureBDDZicb=1{nz zGsHDfoY#1alP6wtTEt|{Ycug7k8w&H&U^S}xLEXsJav*};Q8gQunjx+8-KBb^H~1z zy38kj>+k*|mgLyuajysal@p}+uW`VAZeOaUvjh&7NW`q?c0d+Ov9mdISD`Hk&C^h~ z=%J3S5bOxGIcq+#bnT!kwh&##-okEYcYRv^f_lKm1NTENBcF92gkIa#RlYJ9sy+p$ zY)HF1?nWEC4td_fQ320vtVnT5j<`h`K*V|8-`Qy3(~6~O8Woye+hm*McGrA0${ywt zYjQRVvSQfm7tVDZ2J-^6wc$&jKoGLLMZ7AH*q!%)CSOHR((F0g7v)fm*vyMgf*@ml zlf>{CqmMGTu-ChdL-4{1n+(RWY%9spht{)Rl=+~=Ko31V^mdVJc;Q?a7nrU;O@8t37kd z@ZhnH|8gLG+4wvXo@1Ns>5Z{odF55yA32`B^X)&M-h1!83}2;tKg%%w^p~Fg9n?FX zEQOpM$EFkxp6NXPI9&0MGC)XkGS~E+-UUwp^(w^3WtCVga6tvu+iFt=t>vhRr#r@8 zF4P*8>t%FEmEb0TbZe+3`I3xIE-P<1Q+@x9$+kl_G`7k(_eLJ1S>Naui+-yeDV+eq zJGcJhJ~mB1yvNAmym+DrJ+~}Tb1VM@U~pAC@VseG`&j%9Pt1lC?V8VsBU$lG9erh) zZU#b-zeP%bF@TF^&74@MV{y#jKHb)iS?LP*+lu;<;;VbPy2XZ6MrYth(FW^^_3?9= zTK*WsV31}V%RI-p3TnXIB}uCQNYmw0sD z76mv$S!`lHq`jSGm#uTmWt*1Ynx68D{VZEoTR8Aor?0V%wzkgkj5BXs_Fzoal|XZw zK=gQ^@c+L$`s3*oPbU7v-PfjXeD@8#9+!)L*YJoWU;jKSjKKq>)&&9H3s$wkP<1h# zAM7osXdAD1-a)KW406VP`S$JUFaP8hG52CiVm@~7_AM+(1C0Mzrmp+Ner9>D2}%x~ z8nWu=B7N8Pu<}g>w_AMm1K-toi3+~1;W0J==`ZtK{ENGS1%t`3^ymvM3^Q}e$OB6^ zTrkCs)P4esvNio*Z~n>j>u-Hy`X#JnzIc6q+DD&r0O(vt*Z9X9lk9PFyiLj#P(FRk zxy&^H`5V6Uuek|NNO&aW=9y(b;lcFe z!A8MDn60+>SV3k7cPdk8L zxv0igR3992YsIaNaCuuSirb}Tt@*6-(uPu1aVGLYMwTzq%w^`R2s&L4YQwXaJ4S0; zukX1)6B}K^UIm5!#DxrWHL8RRJFbD|&51Db*k(BvMij-vMn2(7=VU-6FLiS)RPkp& zu3H3pPH7p?*XYP*5h~riaEOE^j{dC5zPZms9^2BBAuAmj=M>n3*O3!MM5y*D;1x*c zbOn|MwdZkJWr#>EJkn25-07gL1$0Sk4P6&HZgDgtWE&hB(~%mo<<%0G)?vz9+vP% z$u5j7s&y6zO@HP3SCrA-j0DDsS24$W*fq*w!lyae!mgSoDlm3lErhU_tfdd~ybU3_ z2Y4~9$8zCy*cUns%-ECp&2>drVw%42r7z+B3Vw16rYBgC{TF}m`!xh%ED2t8K*#?8 zXXeCfqsy32m-eyq=NlV-%RZNqN>*Qtx_*}?oKUoM`o zS<0Fpp2TCLDI07;-{irEr%LCHsxU=^%<+;`i@!8oGU=rb;Ck7j*%+6j4fFuX>>6zk zSx;H*Z74>aZCYIrwFw}yky*-!u@1C$A$W=`rr#Q$Oe&ssm-BGZgr)86ix|@c^5Bj8 zh~d5Y;LU9m;j!TuDKza>L=-y+XdAv_VVD~IlO1*8GjN5boovGo{f3W_llMswpB-vR zq-3^LW zJk6K9kF8w7Yz|#5iYxKhRCzL&j5rK}C4E49P0p~_B*%%&cxLgf{iErv^V8|I=bxYc z#?SuD^iQyW_11$2(-B_r#tAEb=j#A}re5h)pX*2DqNSK@GO zS94GFC-dOb-M@py-(SX~xOcHXV-b-HkIbyZuMJ{KUXo(VfswPwV;fJo#=Ke$kk#=6 zybcnj7?^ru*QSX zS{Ocjf`wnKT3^Fr>X>G3KOE$M}!qM^737q%T}x5qTG@ClGd+)Q?Oww>u+?Pv z(Eep(L^Cpo(g|_gk*CtPkinwE%WeZ4I;v|aOqEq4uoVY_wq415raKTA=;HsV5U;is zjq)UoSPZBARCLh^21Y!NL{Xg+IZ#ZYv#zM9T(p%z_^ty*GH#lqnpf%*9rwo4MT3X5 z@XWYGFj{qO2Z-uFxv4fqZ{sR&URv8B>-Dy}sHWA}fXmnvObxow*3@T2S7>$LB#o*{ z81z0H22^31EbMk}-M~}+I7<1=4T45MNK+7!0UFXRm|mCN#c@qZ8JoqTRVDvy1Z8DG z@Lq&_UveJfA}Xr7s}c~EE?V)Dw-H4dk2BS&ag0b=AW20Lk8=uZ0(>tea3N%Rji*d# z619xidn$;^Naa*5e!z&-SF_9poqNx1i}QZ7vYfTC)=CDUPU}TzJlQO_P1HQ2U0hnc zMs2cU(?-7|Py6O=N$Us=Wr=EtS2P{W*d876xV4W=hXaglT^AduWeE!Z`EwPVo5V=B z2MXez4E@yo7$&&tv%~^1Ep!|J&&6F_f+zfHh2~Z#m_#r)&bPS8yN9^~7kznU=RB5+ zz$_3!f?P{O=!S-@R3HeX1x4Jmm*yNt1`2|6Q@IF}eTF`p$16##MA@ueG5R4DtIL>s zX>{3bS89#+@g*&~{dGy3PhrbFpz|8`o3BfG{+9dsD*I}CkW5N=7nejiLJ|)?8e4O1qP{;$8`u)>(*&K7 zYVS-Mf|^ey`qr4EntnQ8+Gk;y^#tW{m0Y);O2QyJ&wZQ{H!?2$n`G`^dSJ2Z8D9jW zKCH?XO6qxiGH%qbOvF+ z@ej|fl$|FCT~ZQ70SbWhDLRDbIZpOsS{C2fht+0n3z2a-Nw%$jyh3)4OjEwJ2iN8a*WGc)0|X?gbYVv!w!Cfh6m zQ*$aNxyt60n~%C#a#Bv2{>s^f67F?lV`3iOEo04blqU`v3&kJNoZ$1DoiXv}w?=uB zTb~UiqYv7shMgzdYK+4wGMFu8pT z>Q1znQ-@e!E-<3n`5H>z^n%AKTC$@u`>fzZNN;1vO=|3AKG~RD%ga78jxy&`uVKZ( z+>g;0w_Ub?tIm!}5^M)9!QDj5-UAZnIng0-+BM%!P??K!OV9-}CmZUygz_ONL6?!? zrQco(xd|j4b65uXxay;B;BayKwY|5dt&{EPSAX`)(=UJdC#I*zr_&41-I)IGKls}8 zjql&bqVFm87oKXwq9G@FwFj^>d2Q=H*&r14+{Z47v?$Vtf;g^aaw4n`Zt%xR^Db5| zfANbyjzvQ}Q;7k(a}DngM&Tmadyk(^dw4SWi`TGPxKfsTCxID{xueXm=tN!HnYfx4 z^8pQ7H6~_+oFfQO9K>88`IMTxWd=f$;sXHJ(D6nfYCgrQSl~mRbi#pWr@=2na9$x> ziLms^$t?cscTw2E*k}Ab*x$u#pP$1@=8O2ICZGJ>-`>SyJATIv|F~D#xAe#DDSppQ zuYm^54-s6pB<7S9bEn_ZE)esA1>(bZ?oQwMt-HtvGa>B5=U=-&-TvGo{2uR9_&UUI zIzO8ZPq4s>&kBe5!`q7D)ynVSH>dF%yKK(xKITyPz1%arrkTIjdy3yR<{~YB=a=>M zTL58aJ!yRce~;%}brfZ~$t4x1vKq5uFO07*naRD$fD<0)v& z{J8iVzXMEH%tTAU=(~85nqfj7yPEzGRddEY?3<_OC)4+j9!;M)z^kCCMA0V|xFXNj zR%?uamYxgD90u6whYT5or{JR1Wswx8@psn zT^^c)>tb4tZ#ycr;>qberwrA(Aqzl9&M?;TIVdZu2$fqTm@wTGr7eQ@h-sD;C!o>2 zelBhLb&6K@zJQuJB^JUWuj)$B$B@5t0q9^gT+uBnh3ZsdIL?s^{#V@|4t%ctN?4^$ zU*nM|dQ=T*K$CckTBDl6+6~Bqv;?SV%86EUL8XdB#i7+91Drm1vx0^`5P%IFkMN+v zQ*jTG#>VFv?8DN@oBI0w_LIlQ;`m2E>*+sZBzHnQH!bKhex6^`HY!k=XNcgD zOI5^7BIj1)Ct)JxB(g+|PEj(0@2VFhg4K`(ma9#=S%}sUxfu11wk%I67Xa}Y>)iRW zD(9s$CMP*1qHL^`3|3HwDE770x)(r<&4n+UasjH?f-zqc$To5n=kOM>0cg7vsv!mn z;1N&0=1`PzJ+0EtiKWd?qdH(>GQv6A4`I}2KIlMF$Isa8TlThS@L`erKlWyztQGKs zZIlf6IWpm2Dv@CkK<9H0CDDe^WxAkM71vo*X+HJ)Jibk@81VgP-~8tE)|=lC9w;Bz z)%TEF3()6M0~Dg#C&d|VpghL!3$L{&K|d7IIqbyE6#ERZZc~C}GMuRKG{#97wUk9& zcyU3uEfM1ov(~W|Ax+uu_nDk({&@m912jQFc7iK0OZz!HaH_7YV=wU5l}cY_QRpw& z(wzRh6;p&ub6-IVJnW*sD2i0Pk1A3`?A=~QuB4ATUg5*jfcqs*34x)W2ksbyJn^bQ z>(r5W^^*YS{F`sfv zJC2ic zy?XD?bOYZW{LlXOzcu}X|L%X79zH#U4HpGD(^@EbFfFLFs7niWd@|BK&xKFEY8bcG zrq93n3TnJY@AOnR)poD3OIUd}7 z6Myea+xt(aLo5za}D^yc@F7Wk0kH+u0qz0^l^*Boj1Q+r5}FNGIGf-%JT6wKK%US)KIYw8gee;?nP zo_yyOp^4|sTlc?xI1cr^1ieV*`y3=}t6d*J-sd(Mpnr0o~n&qT>|rn{=(Dsivs`=i3I?T3hW_1?Mc zx#pv4&nL~V`jZ2z4D63$jAftR<5{+;PwSVK%Z|_XOLQEZ@Gj;2xUR8mye_C35*zb{ za+5yhNEebw;> zMAnJs29qbxJFTaUy*UPX>p>=_OQN-3px7u(;hP_OYwaS0A3H;{FqUNOc(yN&XVpb| z$8lRr9x&tO*E!HFY3JRdLmHr{400X=pY4m8koIS@rP{Vl2Z<)Vb8AY3?+0`<-9+WY z67JqhFHN`cb7?nk-J16Bn^oudtaE&HG=25=zEV-n#N&lout#UJ>k?xr)RK$=82b@! z#5}_dnDx)mHI+*deAr}XXJJ1#0aM}BgFAM${XL`}CQMxWQND2>kpoR*pILx zV@E2OT@oI_!_Wr3o5~rg`J|bm9oTAfRl<|kCA*yVvOXa|CQk5?U-FSYA z<=~L4Y(V%!r2RE`^J-n#wf#=sA1F!dJ}M<(;#OM=O&PH~(Ww^C6CY$yMjiNw9GP(7 z)0PJqM-Xl4J3b6Rh~jU31{Xd^`!A@>%S;>kX0dH>+_v`5bq&>1wz<4TZ~w{WX1$UH znf^$-A;wVbDF%&kwifbSKWGS4n;on{tK1iZ_uHgAiZWdTY$9w>Fs+4=O>HgM(1ihy ztG<{=4T$UlT8|7N49ms^S4HMg6Hb=(%ycHG9s;{T-;fJ_vyyQKKLb0U8%vyXr!>>% zYv({P#vz8qeNB57*TI!Fh@zOqKoXY8ZY6n(n{Q_yQOLC=LPw6e*?=#M{Rz=AEuY>? za07G!(nYKK-md2=s1Qs2JhK=C13S8$@y4&sFUMAFV*&W-caNq!w{F50t3UFUD1#=Pv?Z@)8L#}CNf#Z#=GIl2Ka0GAZv zjLEDw@9RL6t!#?}h+-d^cU>H^Li=*58TJ#_k{BPmu-}{G;r!QaU>xuWL8`}q%kHl-B znJjI&SM)@8bb{J>^V$LI+rr7qd$;61#@93b#+?>>C1pq~&f?w4Pw{Qgr?@6@fj>Hf z?I|R&V4l8xcY5+RexnAt@7#Dief#MFGGKpU@p&JM+-G=NW*2Se!Y_y0&gpdHg_G&p z9$u4t{TRq+)14QdPCL6);t6Fe`r<9+(=ndrWh^chD<;CScu(+&wrz|z>P{Z-PsdO3 zgdm?-e*3v;3s3t_r+d>De#3YRi_&LLF~-i&Q}hQP`*;#vPh5lJ6VoSnbvmA}mjBow zCjY@Xudh6J(T;WeVGA8?`HvvhIZyThpDDhH{J(Yh&h)wKc;dJKxX7)^@ELb3dzNuP zQ;$C`H0$VsO#2l6b-Z!^Lcnb5)8{au7v@JzP~6G`_@NNOqR?hSr0s$zX_ra)3RUid z3Qqbe%LHQ<%;I?`>9ZM|D-~>Kc11_Oi{X>4`;5q~otWWo;n8&NYZlro&dgJc3xT)^ zcx6qjh^>xVZ6I0Ds)APjAcKpoVKOeA9wQ^%WqC;4iegWp$i_D+ES9!wm@Myl1&XYz zVdXqD-1@WOh>aW|J;EdYE<7m4(iwKlh!kHDm0+HUDOT*-*8lk&QQF0eB?`B;&VD4v z#=6)Gf$$!olIIy0V>PDD6#v;b@m8xY3@iJKp%G^Wp4WZ;q%8|2eq}8ANW)$!K^fQ( zE^lj_q%MXKQm!*n8LPP`Bj()S6~a1kT`#jI`pEvP&q`$Um6{rU<-DD1BNnzfXdgn| zS=EWCWWrmvlx{EUIl34nrR$UTAT!S6%W-FZ5}268&ir0h5I!8acRKp-cr?g)Iv3va z;hR!eH0pUEP*@C&6F``_r=xpFVP@5=mbyz|29e+bH#4K9)7cDETRPWd$=JT!ZsKzK z&eL`Fvqoq8HOwf#ivQ8}lgzIjkDuf=f7ops`!J3rjMDgzqb9C>U0e*v4|7be`C5|m z_^EOvD?T;Cx{Nc;I?ihCyk}ieg+DRug76l0Mfd@$NOiMEw_z5lQv}nAYTl`jR-7mU zp4S(ObY;VeG1@qgLj4rdbWUXB@E3@1oN0%uvVo|qfwhkL0X;Jp;(X5M+$;JZ;^zL~ zrK{tMKgmik$ILjwf^TDgUGGuS`a!wDannR#`f$9Ey#KAnk&-Hzx!=Jm26(HThj=P& z(n#fMm1|~4sQe{tF|TssY}4?zqIRW}o!EbNiEM2>i&X?%7(F;Rn6BTrG2OlQ;&lD` z4df6HHJ;&N04~OU{g3_#`FkJQV{JZ?3R%m!-5O z)0^M_zFsvwewMb)*b9T}PR;ui_t37BlM~z{#61?&o661+K>Sd^&ZJ`{4{9DHx}?e7 zL3Tg#mPb7{raQ=*(`J+n+NhPjQ#Ff9WxWmP!UsQP;%#AroQGw`tkltJpG*Q2Tyh4I zH=44`q^+JW(pMk|*^f@hXD7*ERCWB28_n#7S+n2B^Dh>FS@Tw7psXW~6M8S+@^w9R z!C3Z0##1Pa&qJ0qOU@^BEr+tK)UNnYwRYO z&8#Y>5~VBP#D21Urmf$Ui}A*qXKh&uUHi~F*I}2D*+XbA-j4Qb7A-0*%!$TD-Cigc zZGhZ`)Dy>Q+=c247B!B+2v{$h_AsgR$A~*vaJ{*|uZ5AH`s}OI-REvi|I`2b+tc^) z`yRLPdx~e6ke%Q?x^W{G*FxOL=02kR85jK!o)baNPjaE`7;`mV?{=|Jc@2MOSkcrbWshfBD5}|M_dvfAdd&4GW4`{KJCa%g6Cb zXy&gELTWNIh_(<=>v>0 z*s~|yo6KVyZRZohTmZfG!UNgz>EWI0@Xmy>z)J_ujxnxJ;S-C?(-~vn|1q8<=k=8} zz=Z1)h4xXHLxlXcr&~J*cy)H<#1=fk6Vgwf9cw|C7%uD{;|O zz80E(7-a`~hK&VTq`+L@gHOW8i=wf1g;#dJarj_*c^`|@P|_~O2BU>d^h~iAhCRa= zz|+5K_7SbYaWY!=mjY_Pgl}l5#2@3(zR;3~FR2U9iU=0Q5y!D#;ufJRA=Wm`^=hR= zR07T-dr11?yM+jf=PoA~5^m`WH7a=xMS&HjpmMZR{>ChAw6GU`WG}3#u&7)mk|*^! zU1@Jc4oN*HIqreCFQu6CEDG)v7W$9>(RSN~RyvbW8_Xklp_IT)XMD8=(X=9&FV#s* zrpl;Kx(>u zEXk|ew9~t+A@BGFCk~x+BFy|n_PK3Lqvlk6EQEYtBKa*F)2wy0gOH3|5H&_+D^XSN zlUVK%OC2WdlEpZIw^j7Ff%YN3W86+7OI_SFZ-XA}7*B`=gB)%_UB`tZX#AtGVFwEu z4TjW7gq>4qJGewWxT_X9*DAaOanZgB7i&@DUKlY%IEQFiSaJ+nm)mPBt)y27ZNl&h z+ve*EMxPky<@)S$`}q^oDSsgiaUc7eUw9SI-E7QOXu*zq7&@H2^gFBT@Rv62grP0gvGLF(H>^b{nBc)l0W&Hc8 zTQpeHcljJseU*5`iNq#8zY-DF>U-D;!_TSI6kZq!h%ZGx%y@iwj*v0}NmG_8l^~?t zR=H4R(+Ptao8`XceV=Q%Pq&YIW%~!XN5?0A@uoh$*@%mzPaZ#-zV(f7fOjU2*#%MH zhHzUVpC*TGGRyLx_|i{I2e?PLzkh%+k2@t8_s4ipBZbW^T%?ohnSKWkFP!3={9JcC zMY}RK=V8O0_;zaB0U6YWB@g<>(YWCn#bAAxM3{yMUPECNcB!HRp>N4IDm*Ov&AN`Z zuN1TMnB>)NNd}{A7j%|5uP~;Dlunr->OF)i54^WaA+2NG^mLXrNlE#TQf7NPILlnq zf%i5CGV|wsFWv;>_w==>3tBSjM6-_jW5UZWZ0VOe`sDba9q;onRo-ai(L&mV_WW_` zxami{dJyUuUGxW0m3GF(30$TUakI!C2?}}EIvdvwm7M-alU>h{$=&w>dZu@iqbxb? z(G>wPHPw0rR`DB%O{QzQMfsv|L*VzJS__fK`ulL(nRL6lc5vzIl>}DA7Y~^(SW83x zR&+*dzq|A7vi+qksFc-08X=i5zV%>?Emqr*A&Q zQ;m52?&CuZjx8*r@##qZ4k^n`Je9kJ#j{`f$uCa-%WwZK9;PZ2GB|v6e1z9RH`wt&a zH!#7a*>C;vpG@yOcrx9=)4r$APBgLo@fTj4ZeBZ`{>CHxwk&S1YcUj5UIbR+*u)ps zQe&-HsfBb$v4%jCY1Xts-oj{;oD{4;TzEwr)j|&H(pGw~>u?-6xy45P!~vqGT^WFQ z)^S@tB;3j+L&R^sG9InbziKbzaS@qfOrGC8ems5ko$pMyF&X_V7Jl#Icav}LT*usm z5x3=?4-&%y|C}Le{C7^)M0950VvSk^ArSm9g@M3DPA>MMQcE~jqAvd7_jvJM=b(4+ zg#qkIEC_S_aG$cz&e#{oku}s5Y2HSwSon>aa?Zv0>Tu%t0sQohS4(TSG^$o8H|FKi zsA3OAjCkfi88{NL(RLRLzdSDZTfZudT^4hRW3K!%1wM`yHJB2J3%_jh9)5S3C7vP< zHJ`+0miq1IW}ha_aCSsQB^Z7wdO)o79QW#3a0{e;oy zHYT0gs^H7E9Aq^&K?;Y8uV(KHkIC>;Z2*uYxtC1^kl-KVxE7+@jOLv(F+9dv!d5UZ z&{Uxh^jqO^fQB$KG`PqTOVWKOv7(fQ1y1?3P4y^|?CB$jDhpG&p39P?k|5lWnhzV+ zr6P{KSwqn$51J`duTT>`Xr`BWp+)B?0VtdE(*fC!%A)xOnuS7%|Sm2^h zWKonElWFI=gX=MKJ9~0CogCua9G9VSw@2PK(wJKEX25#wwvUL*dShsxu8=)C)r6dti(0 zTt@vS-Zo41Xy>Nzcq2`lh|Vz-<0f~6=IlW5S{XkvC4;aj0oU4Or0dJ#jQ=Fo>__i| z%eHUr+<000PjQ#)fwo^_q&7b6NB(kNKN{5Pv4kY4^SQv$b%iLxHXkU*KaXt#7i{g% z5M!M~l(YzT7`^3%SwW#Js~|7Y*bem%>wGocfA zzBlHGoGOQMRoQ75*lq*H-EG{ogiO<7eBux27Z5KzAtVqI&ph)6s0C8`|LCP z&OSr&9VeUF#!=e42Nwp#P9Qc@!WQZr^u6y4@6E}}Uylp-t1ENRLUIgKW08FmO?iVO z1|VPKfi8d`Seaeyn~f*d6@G1r>(%)hGqxlX_lCwR-$-P@nr-<<$*K#jlKw-}<>6U#QM6u%I7{F+auh?iN~Ld?xRCVa15yFT%C z(|kQMue)(`xbyk#>CeCaJ;QK*ta>of>V>wagre_L{EohV=MEkY;nkbAWM1vUH-JTY z1KC~8Ms7YT#$7sw^jzbJUfv_=K_z1;tr|!4yzonM`TgQ+&!Eqvk6Q*rB(D7DElrl$ zX*CFdub~VnmJnvSXw}4#?p;dH+SUySUL54s;7|1ODGpqmgqF2W`bI49tvwCH4>Y{w z$MH&k#My;K?xaf+VU3Cu|9J6^c9uhAOF1_b)+~01O4^f4?%H9J6Yy(nFhr`5cIHEXEi?M)HxY`dY26xJuEYDM|1Y z7k9sgiPvx4zB&E3|HuD1{oB9(>l42LtaCFQ7VYWaUwHfN>0f<(H2v;3zdapdV)66@ zPdegtGrTU$2T|>qh6V3Xyn@%$Ji-a;ecTmjV`bByn8Xb5w7-q-yzXql9#8V(bEii?5&J$)g9DSpMBV{qFS1?K{&0JXLpi`e3?(?`wYL{FUk7J$ik5 z%E@XJYepn$XA>sCkx?BD9YsD#Y$l0^MmsjC@sBsi`GlPBU36aL)5H$4i;y6hm%TnbLb9#)AAQAm?lY8z_ZU1`<0NpK zp96$ePGN@1J@QP><41V%cn9aMKKaZ%c~b=(01ghMPjHitKBNmPd>)u? zX_eQ38Cfc{w~g8G5J^Q77V23%l-sbC(HG3$)}L^Iy3DL-#%7h0-J%Iz7WBnvNYF?Q zMu6lr)E3Xga~&a7?*`3?;rMCHIOb@?1*i|cHO>G4AOJ~3K~zphXJN{Sn)6Ggpr+$dYo*cm4bQX+F`*r zl`*}Y;+otT-*#BT&&B4)vZh`pLpt~y7%E%r6V zMma+>^6v)A%d*cQB#n>c){KcWnFUT-km6LAXeCJy2^S6-utFuZ#z$YJj!*|D(K=+i zuBwIBQfh{Z9ZbgmWz+povvctf_Bua@_lz~BbOh1nZ8a8>(}#3sS(vIJ zwTYXz`Gnw;baP}M-|QhYOZqXwq|Ks)2x-r^VAmE58@99()#%2-ddxYyQ64wS;d(|} zN@NpfF4I)nDS8rm^SNYKc#kV}9?#10KCJ=Q!v=oxe3&^gKcd?8=20St3Yk&*86mtv zD{USBWk{TKl2Ic2xvrv&60j4CT~fF5E~`)~3$iA{!iEQU=5>z0iO`|Ee&UnoUZ|GvC}+%C)^2T>u$XZ5lsF;uLRmmmgt{`zs!dr>MLm~LHI^2mvk9c$XV1)vOdZ&GsslfZGnBp9_#seE zBWbSZnm^FwArMUCfEfNsPFE}@qmYC}W6g_dD3DXd9LV!`tL1~eBwwRP9iK|FKhqOO z1aR=j+7_VAJy_PJr_MNRc%V4Y*;7|DW)41s~dpJ zUDu#YAxTEnmPks6LaLUI^+=ZWmEJnPKW%JpO((cB{7HN#vT9#pDw?=;us@yRn_xBp zoYPgGFLcEjYIqVNQy#!aTLi1H((MZ&b9O_zu}e%Mhjv*w-(O|z^V7^hP4#@x3m|Mi z9tm=@5QdRV9J(AiiwvKQ0!R$Sv595#hR(jI==la5jQIsU2wUJ8)BEi0*lu3X>v84` zy1osxmyelE5(q;-No;O?p?wndb40dJMn)1Xz3MV{pp=Z@x#vz6fHQFxxh@!EWFv%f zFpL-~J0qz&vD~0B+;h*&s=lY_2nO=os275)>wjHb6Vn*aW|&g~`7-}m5v{WpI7uT6jJm%nZkyZgI4(>5l1 zzxVN{I0kM^$2ckENgBT${EZJjG~FfaYrl-wH~;B}Kd`&`xa~j0#PA_r@ABHki__P> z^rh*8n>VK4c>m|k?jQZ(ALBUf=N$C=@y%O!1D2Y9lS!Wtqo=x(`1Eqw{`$_dgS-t7w+P-C^iMelfIy~xt`La? z#yNkd+95WL!Gz5ZLD9JgXLjMTkj^pf0lGDXR?3v>wfH$A|+plX@?}(9=6;H zNb|uyjAW1ank7sqZ`(v2&;{;rV!v zl6nK!uE3$z4^RcfgkZQ`xjV&_C4EGJ4MR1>VuWO*Z@@F_MmzA{>T|4C<6P1g(n5m6 ze_vk-nsi0WHW1#V>V4yu)eB<~Ms1ZkYVD;vi2U4&epPHelSx96IV;m!&RD1}cFHuo znuD-z=&q-apzi^JusnU>MY`&TfLNx@)f_@Dr+NX zZBSMgnm2RudxLzv=_y_X-)wIM^)q5+52&jHqzl?*0If8hE49w&nx9FYw+Gm#bsO>( zR{5-Z-UzRTT^WiUQCOx)2K}*j>GHIR>%9D?=rMkC^NBs)LyFoqkD$=2! zs`WnfV-Th6EZ2I4B}Du^+{6ZxdG$$-FIkS&+hkri+KuGY&vlC8$K~Fx;Il#|3dnd_ zpX4M9ybu8ZZ)R9n?*vbo|1J(31lBLy0T@lWMzqJKYx$7I{7}&p7xf>xY+rI7BYnZIIFqbCBHx@;Rk|w+;@R}^T4-=dsCJi} zKvWr8T6|Z8Qjr_4eNwleAf()ftNY}SC-S_o=}-B_L@X; z&)Y9C`h~g{S8SpIo{xpL4NrQiIdJpc64LqFM=JmdH;7%eo|P|MDpc02LqD%w_09N8 zxmDCFLJhi*6W6m>^$l=KEnp8mdy!QN6e3FMkI3~r%Zt2ns7SWtp>BUI!q+7|o#mn0 ztwLr`BV3aQ01c)zsK)9k!}oRoDK7P*dt322OcP&#t`4`5VS`EX&gGa5Jok^h z$zuEB!Nd!3PaZwCkVAJ6&g3PDJ`9nrl+7ZvAbTJ1u*wMV8YQ9;9|38b^>go4;$hAR zR^iV~E%rg=yKbIrkog*=svyd4fKePlBYYWVl2fqWzE@`x3OcGi5nJATIQ_lrKR^BV zJKve^KYTcSeB-m}Hok58Pyg)u7LTt8zKrkk9^%K~MSlAOCzDF+&%sn!oqSC)3BbZclq#+xX`11-#<<$@K2)_y+Ku zyVJwNN7F|*(LBPF#@9A>r+@RpyVI}kUn_CcUuqTipKM3zC(wSBugChVC(Xj`%;nj# z${m%L8J9dtjM~XKN6?1iCp-$~7#!^FVi0ZYoQ;;a;I446?N4;&z+;fZE0U20TWQaU zsbTa1`@g{C?;f=8>|pX2KMOgLX~E4#f#Mt#EYDp^vE0>*E-gReVb7^ge!uyc-||KK z>^B0WtaSh`fZr*v#*V>Et7@)^7GW5z+VHObm%1U~5|# znL5=5;bKLhH$LTif;RK6Z};W~76<)>w|ArPwnO^%9IY=L7BSXeaiEE1_ZxxTsT+Hy?k|kx!_s%nP@h$mmNg|2uPQ-heWQ3WhM~fBA9bPo zOT2QZ!0jLl5l&oNa__>$bOA zUFE8uN>!~>)My<@XK3~xbw%&{9%8AHjbUXNefa3^J?qYLJd%E)*6MA1EntgS2^4`7 z=0odJx@U4Mqi3u8kYzm0+{};-qR|E;8Ee~5n!u&8Tb8DbW7#N=vfnnO7O2lC#m^Zy zSC7%Qe_Lt)#jc>C_fFWc-p@ArwGE?f(Y)MBZHZhDR^W(z-TEUhWZMzMWh~wB+)n#P zq3wLHFe0K>>>|z{i?AU|zSbz>XHFXYoEhUOl{a4O<#`^T`Wcnp!`WGny!>>?n)Sa% zlNWZ6Ygqma@*+J@w<~VPFXHJHwZ%qiW0Cu)n80MFyZ98-1xyfa;}cAqcvA56@Njx` z_bw)X4{gt4zYn_(vF+XZ2n!5Y^4bR&jmcx)sJqQrosI(SQDwtC@@{Oj4K!FYs4;_` zRU;b%Eh<_Ugl*vMWNa#5QF~Syxou?8XSsb&p^KAK}( zYh<84Hu+N0Z6P<4w~WWq#&6?Y~li!P2>m0 zZe7PG&2+w{t1{%7v!zHn99hLE{INnnDdEtqOzK;~JkS1IfnZsOVZ)m)VjUcupDtbD zTl??;2Hv`N`1lYHWZ=mTf*@nXH>N$pb>v-4@^0W}_6>f14K+XA#?L%#?`-3XVR*v_ zeWuQ)Pkvwcvl}t*KC>4oylZ2bVw{#LGi#%&G@Ty-1K$GBNmvKzrIk$E;*Qp`b+Ha_UyrRgMu z6Zuh20tC9|m$+>^U zL2ZFu&MD=hmpnSf*y>v02epvBO1<05Grwe;F+YLyUvje;USsund#^Ns1E#D>>>M!5 zLQVWCR3A6<>)P4`@Fh%);f94%9JrsmM511;Ze1TkZB*Us$+J&KdXseu`vEa>vLJKw z&dCCn;({#13UH`KP?uqu2gcd195He@uS*F|j$YzuZy3_L%-Xk%|{`jd?Z)7uX= zr~hUD=5*uaAx`x0jaFRz;e_6Ae*OLF-};Sz3Ei@yV?xDAL4GfI3qP9J0$zIN$t3-- z8K2_&CExgqkEZu9>HGdWZ$tiMI>HaD|N0;P@6&DERd@$up5Ijc&oBP+^w#!4?Ss_3 z(j6hoJn766((quMZ=~U=R!iE(Hb6X&V`=s?CMXMP@i*^3T^uqW+Ni)3BxGhuLB#VK z^6WBjcTbO|-@pH(=`JSn-^U62HqMUt@6zV}bimg@+pDXX36Cr8kP-Alq~zmK*#Iks zL|&X2;NA=IuKAW{M$(heY16D5KD@xoZ;!% zYO}X43Ci3VP1wsTBX7~^7G$J9D|)gCGD%s&T-tSBvK;l z?4g{9Y-|>uY{7SW?I+kCVjLG}lZ7Ni7Q*~GRqR71_XZF9+Fd57F^W$T>bN2-66MAa zJ*uLad*wtapGa?j@HW>Rfed5$kS*&R!}+XTrboWa9tv(p$}{7PhJv;IVL{I2yqSY` zZAPY38geTBtU4!h7IvU-Vh{A5_(%a+zhVO>aj`N%l~&4qIG>gYkjM-!p-YSfqO}iD z5jw%8QAO^!s%`B$SSZKUvtVZ)&RjV&i%ziG!D?;iY84xf*nwp89JF0G%c zqP5ZXl=So{w#1Sk!WrwycmN8tLK0S@Fe_EwwDNJ&0dh=E9&&)L{fxrQ`)Y)m%U(w8xmTC0lhYR&e<`n@c6nVd zJntU&#*%!De)&@SJ%%J~8+_400zZ7ZpA)?ss5kH%pHKU4f#1c`fs{>ntI>nopG^;L z-I@;Zd;D3-IZO_5-@(^DFFhfveGF@Fj!UwfF^$JU``2D?7zqoC(z+jWuH(a|n3lbs z&@FxwH@)v&xQHjBkEf$Y4{=T8bYM|!N%gC##&Vq6l&yM*a?uYBj$ajj zCeMi)O=Sq#!P0vzuDa|c-hI8axO7AI6CjRS#&R>txn^1!$a84i=q#Rv&&rPC8-fP3uQGj}S{H+LsJ$ z^i(v0-ZJU4lL71}O>|bXzu@L7yy{W+os~kd0Vh0+odG!_9q3f0 zM>#IZW^R{&Nj|b^WDT>>#^jG=YI3J(*&&X?h?(^z4bvA+(AII{Dl!RIkWU_;Okc;B zV!3bl_aDDL{WlvQ;CsA}r}Ow>cn^2@-NzllEcC0_LGftJ@u?FxpVW$rMYzk5Pxj_K zoZgtebp7gd?b1cODjJh%5OR`@C!f4ik*|H`ja(P;ebu+N&%-{B`M?=vo#Q{wiD>6Qg$!gEC#AA%w;XeUN~h;?~r%@LiumuzDa6JTNbtc_q0`Polofi_q(II*UJ ze(`-aFccFCfo(elMj_9Trs=znZcmRfaZdy%f2rYXnQtB6pKikL+V1)3;2fUhX2A(L zzx86Ihed!2Goet?JR)cu}AGK=*H0#179lf&DmeMP~ z-@9QGzx;l$zXICQv-Lz9UJl3?Na@3UA#;0GboI$L`F4URXruku0vck_>k~p-rK!s&Me22sK;Yu3hBcf+S9w%m!U!g^J|M3V^29NM7TMDJ@X)* z#nuCB{5QF6^``Pz)Cuj|DmnHWC-|v?3oGv5t(I;GlBY0n!{L$$p+|sK9#-i_zOt;3 z>3vl_O79YKMuCu~c&kPxvOY6vhAbw}MueZU+;IhQ8??ftFh+u_au?)rUNC`n7cMRC z%$uC0Fp^g%Md=wZizv}gw*3b!72{|tFL+u4M=1Zwz9$(~tc0jTNE_)@J4)-?rCjol zcrJ3ADXPT~U{k+V<&awPrF^nJ=gTCNm)F`mBaG6pOt_G@c?wIKCKg?;@IkLje&!K7 z$(n{`*JEv~4XhOWf^j~Up^VA^+DGLqiXKFv4bXD3Su2x%k%aK4*5@wN zQ`6K_*BA32!m6(nRhbj5cy0=*DWXl`PgTx6JCiTrRGWODoQtYtM9H7(ijf3qLpYKX z(d1oCmZ@+w^0#46{o%S1o??~fIWF}ol{h|g;+Qu;a8jQ)D==Z(u2ApcTGufqQ#bIP zT$U%GSH8Q@+26l+Z~FZ9ZOgL^a3%{UwtZ_y#@c>(bGwHg3-;c<2luUC@Om-pk8@A? z;0BA5Q8pBTMhD!)MDNWTKbl^9<4ya9FZUh%+d&&A6Z@y%bnZ2+GqvnP+? zliv!jJv_D^N$nNTYzvED>LTS5f4!bJ!zKEuNK7rVr(}*$<15MsvOK~F5MTM#r~9hB zyhuW8lY!8Mm8=szvXd^?mN&tXrd2^xCXzO!1yxPC7iq<}wesoxwGqOmcMjg|xzUmK zp3D)liL@5We#QI1<>1wZX6M|#uy6H>=PUW_VjZ0u-ZNC*TF>O&pKFYFlWrOIw&get zK-iL^OkM*^nYne}y6B}C%!|k@r=%@tshbxuS?|XXb$XAU5Q%hMarM(hH2u&uU7b4X z%MSN~Y@5P3SR*xqENMM39g|?evDRz3oynTpla0p!_1L~?vg_rv8|g-}1{i<_*D%Si zDc_Mp*)Q2j--REtOW2WI@nZLq{Eg5_{gTLaqZC{r>X?&AZBc6F z0xT577|s^j!_x;(qg3dja*~ef^-v?rDsvxWPh)AdeHm2WU)g8Y<%_NPm@vvwy*bil z|08-2&t-mT>tOos>7D7;{rk3p@8eFxL;Mi36K@!CoZ3xXm^|9V$vD?BU-fhfo-xbo zJ+T9_e`tuWZ63LCvTaWu0LUMMIHBCYo0Tr$JFAbMY)o%#9!ys^kcB1hM@L%O@zqYe zb*2YT%p-jBWS9Fp7RE4h(5g)VOv4-2G&8y30<6i$W_`F>EU9Tdmvcf}S+aCYL4$RT zw@-PSOeW@+4F720ZL_C$!CLz zJ%@4*AL`?HkE~$F2-!O&w5Y`p5GWUFq#wy_6hT3qS|B`adH%@n?(So(@(Ey$FU-Zd zPXoF!`#1+JJ|O0k>{RB7Gx}z+{GsNy!<#DX`^mQExIN)V5huveBh2sQ$;tGC!-qBj zTw4td?7Uat2tRJi2EY{;Ns&}vJ>?H)2IRUUgct@O1ztT&5p!n0m?zUYZ(z#l!-(-XDq-F-aEvieHt4;|PpphT~B8B8Cwc+a;o zuAh17W%S<5O6S`;UC?tS!LryIAMqe8^2Wc90oUba*rh6Yc3+Ld?8l9U?MVJaW;Z2E z2r1`K&&9FY+Np6#ZfeH&wC5C=!E{xQ?%6#kZsz2Bo!Hrz>{LrJ=O4sI8w|O3e$(jAV1H7GQ8#iEX<9z+Zz8QFgS3o{_;umh! ziu`+H7Hf49Gx)14=(o!k$<_9)v%bk|;YGZ2Uxo4b^4z^xGC!f#b@lkRB3`vM>lNx~ zuI_w{dZBK|;NfeG`FD&rZTStTI46%Af%){{vkb3-jX}xZl1Gmp*%QDyPvI_IyKXV> zefC+2qdk@|w3Dpy5keBS@16hvAOJ~3K~(+v&pM;wz~5+<&omuXd>6+~@OKwW(US>G zmL1{Sq}=dqY7ApTI@J^yjUPQlR{Xld2<68R#z{!p5aqU@f~hj%sn6bB)-Q{%4%)G; zw_eG>gVMl)X=Jc@o}3k`_)=#7@-X(dynyO z!}aUer|Wnn@itz4ejDrg0c1z`m3k_4Z@N-lg1cr)C|F|BAiE7$SF@b%ZHcR*cx6;2qRxbT1gbv#OexaBh;>toQbixtvK;Mu!P8*%eZtK zS-Kx(LMdtGN_;M|%Cb!7c4#Fp*<`tB)zzmms}fPtm`yOGEr)P4^9P*l=*RolCH!%o zbS@LedeBmFAbNawzCX7b+VTcxCyJ@p#3BS#QMI(if>UG6O3 zSNi_S_JIXN%UVWa?z?j7*rGCdPO@kcLC{&41n)_jYQIUHxx&I?V_|hN@=(5XU5`j$ zk%YL3Buy>#vZriZQCZqJ?3uNJonZ}y{Ie4%vJPg{#v!F~Vsevo1`X=jnBO|NGTq!i zoW6JO*0h7Otn)Yl4(-ru%J8I!}3x6AjC({8YfX_qsE+(MaAEiYYKz=Ot z?ZI2aOjv+R$6DKNa#s@4bzJdFT~``ibgr9+rddxgt}CGNWckv>%o?v%1Y7!MOZ`}e z+7I~QE9~rKMDB?RI@)PZ@xtz7yq5VG>xq-E+u?T;6TrCd)nBuWU}gd=r)7&9YXcVi z5Bs{k;x1c-O(BnY2P%FXw8vkr4@Yaw(1eqjwkF|M=YL*P3(At9U9vT-XXn14^NuPw z`c(er2O5q8^UVol@GA5yp0%GBa&nwMh|m-GYrQ$1ljkmHZ@GW@>}${7T3S^8SrUG? z*G0@td9b;Z+qQ%C!Pj7O@}1imhXC(Z)(_p+w$4o-V!Qh8!@JX0_b<`NxrsH&``<%46e z@tqAAvr)QL2a&7BPsPAL81g2o3Q0Tm=tZ;k{^I1ik>Te z#5bM?eWG~sLq5~e_cb?_Q9eCx#48QeBTSJY$S9wYtk}FP;w1-Rd#!XtVW|Wo-u7UX zaXC7kX;Cbdh{98s8SuF*t6ELpe8rWox)+s%b?ZZHC(Q;kx{oshED8FA3vN+S5F(cH zln3e8$x$})y;hx!5@|PvFt*2ajqd^3wbnhC zqp9bJQ6@dU@|^hH!xO*Tc=BlzuYG0V4Q6b?F(!jf@WvSBs@gz5mWA5#_5zrgOjW^~hWJoqB}VAFuPx*KGSm(0uBb z*{?HVh{>ZZ^RnN+cxl?l8@L{Peh063#tq&mwkP1Z!5V|i{4C(?_X=<7PDOF|&R>|W zy!Dn%4&TM3k&5)}1nkW3xrl`U)@^J%`@w{F| zWNSlCEfccV*~XF7fhtV*+XPyFO>y-xr{Falv(i3*(nr`3;U-k+6 zjONxJv*q;?dS?64P7HvD=r?Zr-ezAqVwx^pzC6A4&O6gC{MzvlKJMZz1D~Tkx6^)r z_-8GCCIc&l^mcMtDR4VOz97vT~kz(TA3@tvSXZh#f|iyS*&kM<+93r%9}OUK!=s z-09d|7!YzWa)-29DUU1B!w_wyXbV8&2%w>kp0-}Qd$m$z}9CmYzfcL zt;#+#LFCWYS(5jpaH?}&%ib5f$VpNUL`l1X%#F`UajkYvIR^YN&;YHE9qP-hm5U-< zHIP!8?>yO?4l!waj3)$kr=4kUdvoGbz`O(T!&{$E-~8x@(=WgK_H^a^fu;G6{`i~I zKls1@aq-|6KAhE$O6IVEnIPUkxP$%pS6_Q=dgscu=_-C0^8UfYN5>PNKHfo}{KoDz zA3R*K>LWOyuRIQ{eP~nO0y&wdcDs|7V^)-uKA|8Lp^M(Y$%6hZ4;T?dRgVb~Dl5eo z4a_F|NdcC9Mrko9j46|XWGKy-^PC*Kd+M+1eiIXh_VnqwQ@qL#-*SuB0^1~JSknVS zS~{$qs?DK<9C7|5fZyABIvwFP#dl5~;rqXOVnmazbfR@(4$YbpPDI*ynR&#*qS|E# z)AJL9k$ykYT*|GwDJ)Mn@}hY?F->K$yM%bDWl3AN7yY z)}L^yUF%EhTT@h*eww&DP! zIRo(GOPXwTr&KwB5Zg8x&lm`_eUT)NP=k{;0s_~$n1-bI7Z9U7j@`gu5uwL_M{@!_ zc;w7=Y6Y-YHjPHR;SZ7NcYvfS9?5EXlMio~4$3zaAu)udJ8s3$ObmUP3@$ z)7gvgg~KryPYvy2@^=dpzgzsiCkkJ;$jRTwho{rMdv|b=*WbHh%CyKHllX;5 zWjJ=ST06FBrCO)0^lVOjt@Tj*@@!j2sLxw`-rw5!Jpw3Ji(JjsyjJ6Wnzi1qK8A81 zXZo!E*~9lR4=!K9B+;=w9e5UgUHy1;RBO|BE4kP#$*Xxo6}v`?Pc7lbk8M1uw{!I> z?zqOsf%cE4Q%nHc7{%}UX5Tg16q92olc0+=Vz1zvpZw-9zZdFnMru*?rm$yuZuEsI zMAMWit?`C32=_5r#qSsMTfg@0^J-$0**U?^V+#c473Z)^TPRy-1(@6Vzg) zKyDcrfr=X!%)~_>Z2*8XL~mSw1Fs*xKAp#RXm@Z-q#gU>2;Tv|fyqdIkCsmbdk#Ej zjOY-QlwyZc_!NsE$t5;EgeA{H2vyr(B|KK+IE}H$zkx}CRvjn}Bxs8~?*zI2L&tN1 z^SFk$kMDn9z>Oj2`5kazAE6KU&Fd4p7Vlm(PC0LOf~P$+hPb_y0$V;k%qNG5=RDk- znEd5;f4NV+d-v}2!S}vb;Pc)}sx?SHIO2^#Fnw2+cBSFP2_?upDq++SR=)J+J+)y^aAJ#%1S#AbAWBJKt@1 zyDh&IocZPAyrQ|rT44=wUN)+u6HV!`QS=;zbPUvRLQZW^{#HZJLCbH;aSTw#Q(Avg zoi^Sl#CX>AhaY>-WLQW?Nv4?zOO=rk#^aeEi|vjYtXaD~<;;icS`*NrUaq434gjMo zW_JDk4mN_knlkKQ@Z{O)Q%wA-lV8n5U!APDt{3_$4}%4WwZm{39IbQLSa!w* z8idr2&s~G<2nUSqi|29Bz&Akg#Na8P><&n_qsaJBHv3Bfv+EVK;EJQV1P+04<|;9X zgsNB%A_^&t_zv2M%ib~MvhJ+l;^_fS z3~%D~I(%x;4sJNcZSwUs_@T+~f^0#@Z>;>%FMNIa&A5iu!e6X3qI)29a606RknIeUQysLdbwT8Lg% z&eSsjD@sQGSxXlXR3^=09Q?H^{QShnpQlS8{jy?R4Q(p`kC$c}#*ito@ezH{tBFZ4q9u5-O@2dj07zSp?vbIfnp}pCBF^4&gPJ!rQgDEk{owTRbmL@ey1M1xDQdX*tY-80xEH;H7U2Sq}*epNY3 zzsh!%F8nUIZ^TU11ch+c#4c;_7S`KWwnDJJy+hJ~eakMm2xXgIgJUWe?qke(N$R?kMEOWl+87GSh08T{y`QWv z%2iH^!AegBH78a(U#)#sZ!O+4_9eGiKf3Y2S!JyS`U|R@6OrWIA~Vv^gR~7Yg9*}M z&gcYqwc?JFN?m7i}v&(lHtE-3%}2|@gp;wxYWrC-a& zrxhl>YP!g@xr88}Da`Z{cS+v(9D>~Y!IdkxzP33%#>9(%{^iN^08cja3CepnZz74I zag#6+OQX9t-@vtko&7!E&)})RE4az~3ZAsw#oNBPzWBC*8=rnM9olb|Xe6pp7LBZ7 zgs;L%E&J?qtu{^_T)8?u!BdJ{?}wZKV~$W&9O=w0$Eq5qidC0{xPacbY7; z-*bO{Gz-wI^6f^E8P~U`9!M#5#5+C4)@apdp*q(lA1GZ^6yD2V`HR-q03AUP{wlH! zFz%;mdi&jXr%TutF5+q5O(+D&li~bbPMrC`!o~^wlvbHc0LN|Z#6A>nD?7n?2K#aceZo)2{j)#( zgN1SIZFrvL7TcvHc`bvL1f|B1P0I3j? z8efx;xT#BgzxvbYmKf&6{!oH;!3n(OYeB=(fXqH7f+4nn3JhQ3$H`X0wQlrd$)Emk zA6!>*NvhCc8`crf{b@;IwW$6I*z}dt%?g%w5i4R5I6<*BxXL@WDoWN8C1fI{{Yk5N z;&S>J->cyrYuyg^m2b7^bmr#D7Ce^%Ld>xG)g6zkTx5t{qC zk(}O;ZBmge`3J!&%M+XqW<~Z5u3@T)utm}cs*zLmbgAGAAw$Ph%K|8bkVWte#K_iV zHDaZzW7*Ag5LB7(YmKkM>ZGIOvx@6!&d8j2$$MLq_rmJfsBD{kb+A{2jcj>9k9N(P z2LVx%*Y-)Wy1#6Hfa9JWn_;5!3-WjG;I6|>{9weS-{1eg{vRAqpW+pAThmv*^8WM> zf9HQg)D3$j%^&>X@7cFNw((RikD-6(U;n#x9l?)%UkGvr;oLE1i}B_LJn4_`jy=VR z;?dv!*QVQeqWHi1FaHbNaR>~c_Ym{qrk|+$%BbxTMVD%P$=hVyen1$IRJ-Reu{#|u z&(gO>fzHXa0ON|!w6Y}gb;dk7$t@|&iqCKem1Eg7QIz4y(33-({Jn@1oqhcA)mDDa zLx23f>?tOK`79~Viuej|JOzRo$HRE~L!lmFqF1i(#nZ$dU47_%tMew+$|z-TX1VWm zF3feMy`Z83)!!a(R>3@pd+SyXz$pZ_-upKezErUk>- zG25%Ik@Ti+ZeV~^_#?*(DyMu&A1sRMoJ(yP3s$@%o`3$Nb}SK_6Z%+FmaTn78SCsm z)-`R|pH_qRbAGmw3jA3?E1}phA`z*Q6!sw!LUuGh-W>)@;kNr-y8rHB~jDC)rQF*i0zaSfu-&}3Sst&IL%!exzC z<&~0$ab0jJK#`eAQbep)GWIJe$2*H{3Qj6@af>zMSS)sGB;_)0`>h+wBa{bAUQOpK zCP|&7?o}z4e{DobtB5E8w{wSw<%Fz$Xz78$yq1ypE<6mZHaW!zeIL2G9jvhY7Q>qUsun>6_EztyOyE3C# zWV~Uraskr~A)xGxd|+8cienE`a1!dm#cA)-B|LGvX|KEGcX^L7x%C8-BoFW1tA>dh zk5%`~rD7zLhNPaW?8=*OO_vax$5@^VbKk?hd5oLBKl{(?8-Q1V^YvsPzNrtW3 zIBKNcyCUz`;Q9F{gN%EmZ9-I z0__7lG@Z94_d3VWMLa>yiPd}e@MJy4QeQH@*E!!JT5fJJ)Q52Q;sxt0KF!XzYW9WK zJGRj7P5eE;Q~5`D;`i~ryLkHjv5yt#>58kK*G{-T*aPgdQW9x>g+AEA8%H)U$$pFp z;4gpmYxbn|A?R($xoyqMuoZLIK!O+D`GBxY35bL&aZlgPOb~$zU9-=F(Od6kLPS@% zFv5hlBC7;63WeHyV3BtOI#>{<7{xw1o4o778F*3E#wC)Q53Z?FvcAfN&v{5D)1H@{ zwRDwN5r)VE1y3F1ar{t#$ylFI%!!TDxZVT)dDN7&iLK^vF?O z72Q(3ZPu>xLp${iYhiifCYrwFKg%c|6=9`Y$A(zLtqYcO*#+OnPOzpuS-y&1cG3-e{)c@bZ8`F30eU4W~ZBN@cXukgozc}se z?M{FHzxxL`k=q8=0#6q%T$ujWZ~g7A3I2nR1A*WF^%6e`_?ROPbdd9PP*3mIqbDNx{9{(O=VwYceJH|vXzJOy>ioC;_lZ(7@l0OFM(-);O0p*^dc{G3Y$v*X| zNsz|555{)95r%h!uLUiMqL<-XK~Tn}-V0IOe|rpHQsan<3wUVC*uW$xyOhOS?Y+*g zYi$B_BBdd`bw;9x@KxoIx+E`a9#wk4@yfjLe+Ofn4PjeYyai5CYX6|*1U>tb=i^6D zv3_``1nkW}^c?3q8+Z~Q7jTc5kF8g$+%FpnS&0L@7kU6=lfaeGbGcYE#n#;Sgr?X+yI9_c)uqBRKmvU8m(ldB%m_C zu_SU_95vQadX|1*xo9$1w35n|_R9TCux4to^QW)bF+tlr9fGQDaN<4nfA$%sdci0s;xF@5^0{jFKtbF3*gK*MZY^=zv-0*dGB>e=C#F0+ge7H_*#if9zs@qJBr<+q9C51 zi1;4evnwKc1!KD-Yc=*Y;O*WWB#l!G6yNXVYZq#|+A5ytFQO>UdcGIX5bH>#_V??4 zRv1Dj{x?(I82R#vny?BAI;YGQ9??qa=;W%Ki!=IBjW+}E~9d-PRo{*cR0y}9 zzK5&!uM~x5=3aR2R>N=|+uW^nJ#Z|Jdo|<7h*w`)+lDQyYiG~D%+~blqwwfd(NFmV zAb%6_;gVFOmuR#-^cZ4CvPND2g(x=s4ZDj^BR#=n6rV_a8aY*@vT18h`0^>-bEx@{ z3}0i+39myu;mBeS&YD6cgr_VK|1Q2^ z`Z=CBt~QmT)0U&eOD`Yg>zE!X4+B2|%@(}=z$EV7!kftWSwSkh@tHjq+d^b*-yS*| z15MhgGD})%WVuIkNiXktWhS|5$ys|0KTlLV>B%>L2Ix^jqmGqC#3&Y#S)OU?yzmHI zw@pb|E3#_o_RUZb+>RLGm#o!vNv zo2M*GnCo0Xc-G39-o4kbZQ*8mzB-xP)iL5#6fJtrWviBoF~f93K(Kx#f*d zU0_M_;+HzS>heioS%Vfp?oh9cR|jPE>b5jf$#m&5orxN#MaZt!(Fh3oIKnjUB<$N_ z@-9|!z1)_im>x!2-z>x_g&d6=f|U|eDAtHSZiFA0Y^ceB*V>rL`5y)w2u|*D(w7%M zaSb^pe|_S!VP{GJ03ZNKL_t({4**U8+Y>Rgqv4rl)T%6_lgy7Ca`&Y|>g>QgvCxJj z%jd5ZuVyj!CEQs1GwBQTfQHGBp^LSamqUdHz@=?q*>=U~U1hYQ>y$4cJV||myDnK) zx}%bYD?#)!E;*(U#Z^)!Qm|5MmsRYFW=>>`e3~p6$;>i?lPijeTTmBd#2Z(cS4& zeB<>P-mX2xt7b8w^`HJH|Cvn!pW+4$-r;zT2ijS|Q>MJr5Gp<`$=Hl#-vhx!+U7a` z2AP?$LHN(@$v)j+C!`yAN)=UnaY@-rEpVuFN;ZeFY<(Nyk(!vEq$?~b7Z}Mb`5z8x<1#{%2MUdK!j|3v z(;KAr2=3q5ZasZPd4#O?4YgX^Kwk>ew9GuVIYMvkWnSzT_F!AoHc7cYXriU$ zrREBS7jr8V9S=&5)ga6VjghUVW{D~He1UUj2SM31sD!;^ynWt6&^e!mLGG3qgdmEF zY~{k58M%Km3A)-lOg@Au3CcL^ng|BQ!i*K!$5%Cz91aZc@o3{QB~%8Xe~wBXtmYzI z7rurDCA16KAGTi%aMqgKU{$KD!(~^wwxW|-lf#Q{i`Um&zi1N!>u6=IQmw8iX}e#eO2k&-jv}`n8pd93y|a_k?4?FpCku~EJoUP z+0~+{OkHnu))nJdgs8cC>nraG_WT!-cHg&!kB%#R1kXIjHh#d)*EK<9y;O@z)t0Q3 z6{Qn}9prNPjW?zpysq{TPtEda#K-sV&GV{Z3uTkne5=;sXExc}K2Xud9gU?vr{cIH zW;h7W^BbZU@DwF(5I?~UCm((9`_sKUpW89^gp;Z(%FJKFj`F11ZCcBg3rrD`Xt&G@ z_#P}L#<=cJ4mlAPfw{he%$3PTiUb;~8MoDpe6@(0Z7=t5bDt@VwaMHgnU;eb+af~X zzgLBxpL=8*`sw*4nPPg)qfxc2R7LR^#G4+j;i>a|JdB{v9dIYgNngI^`A0wep?%Yt zR-7-I6=09?>fqC5lT&u+W)$b}EcP2k$UtSNW?^XX8x_lJMWzwK|B1=BLJxR=Q2K9P%~=A)-a(}%|o zrayRe3zJO#eUOtAo~TXJdtd$e>1#jtbB5;+JAT)flZT!GCT;O_slDcjt`Hk@jriV> zPdxGjkh$}LM%;^R$6-u6T3(nLw!3XldEyOQJC@_F&2yL$_TxPK;SR!2@fzy?_t6gx zgK6aH=XWnpU)sS5CQ)_91Yi_vt5vq`u#M~vYb*5&7q*ek5hZpcV0~^h z*JtEp`BR7vlaTCEF?-l@y{fU0-NU-_$s`*U)_?57ZJc;-@`+$z$e&t6eLT^JKMTxY zzVg@{%Nq-SeW3adHa0m)EMt3;^ht!BZ=vQt*Selsh!Ed(&JshhV<=-WtdpSSC!!%& zUYa>QhYOnNX<74t1@}*8&ps?gS$f;q54^kA`@@ooTp0s*3DbdzxnTR*Dw6n@@;70~ zYXp}vJl)v7h+S%f#ARiPTsi4(e%bHrblNZrwxj6Wf;f|-zPPzN-NsV^{3bJ>^!CiL zgc~0ZSTYHwj+*TvYx{4u34AToMnS@AOT|Ej{QYJU`e#wD%+q;IUVEcm?{u}X;|M#2 z|Cta9m!2CaGG@xwI>YW$-?)qdm9r#~hv20yfr?~Ic&=ler1aGn??sQUrDWmL%-lBj z1wAz$V_Z;5xp|9q+G88Lz-MQ@UiMsvuG5n1JYq#YvASr2;<;phE`bVmj%B8hdPSp> zilS6|`Gds&80QZp=oj8K&2+{kO2$uSh4zKcyb zv||w!skkZtlqWL5ek|nP-aejs+Q;{O@%_p}e7}+tS(Z;ERlBmyr_0&0dOMR1)&ppz0SwgKKlLHI4;3V%Vxjkooh4(K^)$UWg5v|Na zk7Qq1QsH=^3w<+89oOS}KIb{pL15cNQY3P=$!A?v*1b)RCAzVJ@WN}?r-Q54Y=6$z z%09tF)+0;+uPWRg_wkL>Ej$7F==0Apx#E*7vgu<;uKJnvox$#g zF7`$5edVjupMC3_xWW4geoJAp36pVs>D=_{;rOpMm6D-tTVhlfp^x9~1HA4RlhqsB zxVhbQSU;FB<0ROrJ-O+I#Y}!sn+JE}Ql!vlk=4m`hBIA&({RluYtTHJw&QCl{<5?7 zh|FzSKJ>eqy!}x*D?AQR$e!TwfoE4|mys*$%ceuwIxoFXZYR6=cI`ICygifv*fEZK zN0?aT_Hv)!u?<^39H?ScWhLfSDcj+m;C0BnX4OmESVa@!D7$P9EG*%ekz@2QCQ<8ODtdTytZeTtzOIF!6g4PXlv&`F;!p z`iM{ap5R6ijrYbr+Q+J#!>1M~c3yuj!*vb#=F`6C(0}(a`TYp5eBMLf?4XZMaNUCA ziR+4G_u%|=;o3FWV84I_Pw`nezNz3S-d3PE2F9Z2DKC$dXcJIFGMF;SX_R%&XDubQ zR840^1w_(IE53TD@v@G1<=kU4F6(+)FAa4m0ka1Blb*|hkGT`J%;c(tL#HQl?8hy>(>iW zyl@Aax2|kHa9c0p2pDruPiLj~|Us zkMSB~oIL*0FMWM_3wKgJ!kYmueei>654I2SYTVoS=*OSqciU(8?@qshiC`A?Rp}Wv z6@R|(;5mo)mH~}+DleNp%nH%geO#z$gn{Qa5+S_%osV4?6LCG0vVxpQLhNrq2}Tov z2CFRsD(q4PpS5M4Jx=BE8e?4aQ#b_R1TLR?b%ft2M=$;gWP7F-H2!g2#Xm-)1%I+| zVviR-8H>}e#LyR~d-;!rJ>et3qi{R)bzy2O;H@+PMC9(;+79oe0G5hzJwHzVGVfE2 z0bWqBS0Fy0FWT>^tIpU*eO^YA>De z^`X3Z!J`<|7T$8UsP=(9O&ks9`p%ON>~9rP>IG{pbl#t?ai8!@Io9PiC$Z5Fw=v;= zeq)#EMj}oy1B-?2#Tp)!^+Q1Ihb`o^EqHLGji-V%7;geIbDb%OGJCi2j-w_FNzxID zJuOT*I=W00QyzdKlc~8z4})iXmZ-9KSHx2KM!3kVi$(&mn@dVqF8{6mhPVHwlb~lC|qV zgK(O5k~-b;*{2)PlVWijp|yMwO?!E?x>35nW|`K7kr`h+H5SGY%fDO{Im>c#`d#XJ zjc(`4Z@Cn|_bqiKLBpZO9>{ z1#xDn1~&!^emYEb(knW?27@Byn_)`4Q=1rzt_j)lndvUX3j30{VG6gF1MEYGIC!C> zA7dG&5%HT;BHITy=d91byzCLyrPh9TeNxw_T`2bHVZ(=fxt;WwX6#Q=E6NMN+oY=7& z!6DU{9_2wb+oG($8T{= zYVw*GUwzI=O+J0h9y!Lu>V13z_#vJu=8Xl>oRo_s?y%+Bj5F8bA{hvYk&ZWv99+6Q zefi5@o-U!kc&&~TtdH;}flojEbovqga$(yaF1gkvo&g%^;xXDXYb`86&!FRJE8JFIGDwW9tE&sGgbW($<5pLC$@pR4blDw1PIc; zQ>s4w!Vxu)F^6zVeC^#Di_-Oq?@YL)HQlv!E3dI?ZXU;TQ%q&jN@0x^MOnFcpnwtA z>|rc>`D-M}#`SY_wd*senx8uAC!i~yKgD(oRL(u>plDnKVO4QH8nT{}Uhk-W>`Ur( zV*`fUXqAnq)}CCXI9HftwRXX%h?T)wUIY$nV+V!BYjH%Qh?%Ofg zsZpO&#W@=m-wyaI3Q_|6Kxix{1{{0_K2Y=_+rhod!hjwS<4o+Ia{qlQ1 zHys`wPQUi6|AL)x@|8RYG=1}1e_~H0m}4v$@uLs_0(b3kGIC?OgcJF9-+X)e>U&?F zUO#_%`bA9oe*B&9PUmq{|C@jFU$HwEKl%2zr|l0v!wLU1?O}rR_#D1xvVVShwEtxK z^9Lu>SD*MjfNBqW)mqDLFoMx*TgmlB&|co~1eF5DT!vriD27Pu)Wxx+4)&S|bPR-C z&2bV#87CR7Z>=4%9hH?SA9RGj2oGvH!mGD!ij;CHP?w7WpgHMBm0h?)&=dSh=O1m% zgl4c~L`hh4;un__L&x(ntUD}iVi}2A3T!mJ;J@>JA)xG+OfLx6PuS5QijT z(vuk(fdze{^0DNMpGWeCE3r(7*%Jj8aVX}3x%i-j*3}SeeMuj9=1;i%0B2oI2^ENA zp`f>1D0;$u2kqU`dls|-U1pgXMkpAfxYp^+weq=Ml4q`y<3u)Y)Nd3LV|+nGzsVSF z64@gu_x=t9DwCN{c;&j0bwC&wE|${qen?gVLS%py)&?7FBH~(d=p;#mgKY{w|2L2u*F#c z{*E6!g1cgAIA+^Q8uRC7_|3!pz4LgwW*5hG+?a-gJ8Ay$^_M;g{JidS#;L!vJ3t(T z{v!dHpJxOJGHzFf>G~wQd6j5u=|XdJp5E?u-{3MeIHMDdefApelR-~n)IO^N;Gfl` zkNTI*tG}1>DEe-k6*&wuEk8T>4SI0pvOTe96Tk*)k>XU#w(yB4q(BRCsUBf3;K^TZ z%l2Cizv({t&Y#UZWjlUjli&H~M9Cw*au(m(&H7|q$e})jb6rR<==8+nr8nNh>z*&# zQ+<50kNdqXesdUk@DowDG5N#EuN$9yVy*Nu6!)`#>5{#2`3T<{J$zUvb=tTs$HeE7 zxvX3DrM)6J`Fp_0U+$+d+5Z5OQk?iN1wl%jH8vPwRTn=EQMGbeCGB=8`B~d{ZfEvM zT0WW-RxoCdg^q>f?Js1^g*<=riYDJ??wpRlu6ES3XM|W7OPd&1oKW4t)1zE(o7?=J zFRnX4wv7qHT}%{if#)}OPw{Qp<41U%FrPMsY*cc;c>h6y6tmpzJnt%xcEc~n_BGs` zvCo?bFuBU(>t{D_*jRte?GH~KfAszDRiALex6}4TXB%0b<7GMNqANs_L9dLraWlqy zxR!R2ljP{XQ%s!lmDIQJB=k+>$Q-*O)smwQgjxMyB<`isg%i24&90bfp)wSJFC> zad{nBJ+B-qo;#EHU(#|EF}^F}iKKaQsMFH18PIc6r!RjEw0q$58Qkc$(@cv%g`j;%H&MBoWqJd)M>%yKX6sOTbDbTSQwcnRVPGJsY!zR8U(1g2 zf-OX#&*HOFIP7!CYSAN1kriU#E9pGpIOaj_(^NR7@j!%}ZNF}GGyvjkZkB}VfP|AM zZgiYLG$bl*JK-TNfH`L|gw0F3`$3ycfIr0Y$y5tXXD<9_6|@Lf<%=XGM-; z-&5x641EOt7}L3r@w#vIk^I^DAM)amB#mcnVe5(bnHbNvNMUJXkhE*)%x_BY?uI!q z?u*{o3;g5KYtK-$shR~f%&bR{XDn#h7W5lm2hCy=(!Bef2rP)P0-7>Td@^tSvHdoA zj5@m8A`;E#g58{!EY5jLtfvemIT256ou;6Wxiy#G?o;pd$d7X1Q85o&PiPM(N9o0% z-o}q!&}Q$>EdPD{2+!KR~i}6Gkz##Up1rEPNm1TKe^j zm`5$d%M-lgpO%cpAjp8e7=!WgkN>T=k&~rG50pvI^+Q`18Qv@*S1eOL?;=t#cOxI6 zk3>g^nar~Fl-UexZvk09F!unYitS=4`*UMVWQ%|X4bJ}uplUTHWoeq|L(}5+ZJC*4`x_zQHC4b8E}8q|?|&1=}KaLfxLdZWfG7 zo3yVA4#^edSgiL zr>Y0(R5xK>fMLGt`D~HKaluj?2;+*b+Z>yg#VpBQB~r~>J0}@L!*cu77hKyJ=I5hC zO3G-y?iE)f!~6*bM*cZYcucdm6yU^S`vP8Zhzr6`al!TU5ndl@PsZX*i5IK4ck#zb zl5^7@K3l@L{4OD%(&f`RET?!0J|`JG)p-N!=D{Np4ne`k7W-lDf;7sG zZInXHQ&JvltTwnA7+wonGp>7)G}o@_^_kB!p9bC8!&9|*vX)PT+8D<;XC5q1aZQMa z7;dlUaP!7xymom5Z@=Kp2i%UYzx}pN%pPKF@dsyd}~G3okNrfYAPB6!}@Ve*TyqVb<%`$?&Q(Op;BI;96lqDDx!xX(ppPcCTKt z0d|7djh^Bl@}AH6|3#k(kjMcXS|nL8X$%f?FTm<5@4xfmNcMiQy5il1 zv{gQrRNc#>O8SLpJ(nB`(dtK>puJ1-(v9p^$>dA5urq%d5CJ8cVdVt1FiAAawZR1A zJ}cvt@4w|M+b!jwU0%_HFgw&H%TDAtYO0DIX!3%q=7CGJYMK|?h>D?ZUKqtKO1wCp zdIF)BjCBBYtycE*ZQDWk^W!SPZleig?@8npehlsq%Y~=yHmQV-j#GqBBBsHyc!)>x zzIAPPdi!7e=cfCAbUfYs^z-S;gjeez&h;CQreDQf(SMBKoM_^c1{Mc*8(-qx(wH>m z#jks~UnVSVfEccypVd3SpI%kNE> z-*|m`{o3osKfRATgE2Y#;qU#EY5T-|pCSgoS9|4aU!8vGSAKQ+bG+*3yWjoJ^sR?? zroVw_hPRL)k@U^KGO+?X7A`3_iuswuvNq}JgsZG5YZPVjg@N;W=BX{4dH<6 z($AqH_efG0t}~5~dRA2;#k$9@A>dB%-DLbUvh$>xAJ;oFffK%hiyd$Xl$Gcg6P7$V z5y?qNAfV?sWmC4BQ3|tdMh{#&alu^F9$z z6xT2R@kW5hc!jt<1q-?RWahAn_{3SUxbBN*p6o}PD#t9lZzDuOkL1aF6sxpA?J*2v zonsauEf$93f^k^5^xV94wsJzoXr2$2h;4WA1FSwig$!>xx56fc2k=kr3G8F*bhI&j z*PCFro9jlAeE_v><92HPJUO$fcv5sggtvp}q6fudJ!&hQF znv@?Yd{kRMhe#+lcYQ^RVhvr4-B~Y2Y>sbBEX?GsNzIr>l7kFswt^NuhTUsvStwmE zT$6_Nf+EUS4wP-P+-Mt*C7OwB?9PCUsVGn;asVBQiiyT>K^0Ar6auMvb~VRJ6_h|p zu!?jKb)0+rSz0p}Ttma?1vzd>Ym+(RZ69DBvIbq;vWD>O0g4FZ_P%Zi=QiPH4$vOk zw-t{hx3-@N#_Y@)*K+s(Z~LQ?ql1e*BPjvP?(79^Wx~2I^4-hl{MkrfzoRJ6<85y9 zMM>7ncp-Xk9IL3HP0vLgb*77r!F#pY(!*3X5g;lmoviC)3pXup;=(H@UHLf^j;0M< zhDua4laPwmKSO{5qumIzoeUOH02OUdL=o| z>7L+RobPD4{{T1j;et0OkZl`k4Ax}imvA*#2W)LjlFwXbV^^}Rwym*I=>Ivwaf>b^ z2JOzm1axI3AC?CgPA;(6>n4|yTj_DERGe7lwcQb;?w7~*tE6?C$4FD4RR+(fJC7%~ zE?j@jp1R|=7&(?~(&QQayiEABu9}P=(cCuq%GP7NwTe%r-NoOkt{nOBl{y~N8Lxhj z|B;Ruu1mg}coTW~S@${oCVp$W^48nXVmrdN&dD)8IeTo^C@~?zSEgbNbGtVmwwy2e zn98LfJAturaF#9O`-BcAV{kp--siWc2YA|;6K%u&4V?HS4xZ*jn>b0ueE@&w@Y|yt zTYMU@7DiPx-`*=%QJL!XYDOz}zl?Q)Cq-EvAa_n^b6es*iYwnxtziyjwEPp?KpUnt zbDI@_7H&CpqGw?5|J}4ucg|*}+h((r( z_G4s1Nns-VzQ?-a^@=S{Wa0@{P9m0qK-a(YrRf4Ddb$7Rwj5@5Ol2M%kDRzAy}b+l zu0!_lpuu^3bN1e6H|-m^E^U{2i{`7%-}(R9dzWY5lI*@~pZB@vKI`6kbiMkmZdQ;BVrS7V( zuIhT-s=DuU&+8t(pYO_*nS1~C@4V{X?kb5q=eIL+y>n&m=h~V3YhUxZo{nKW^UQ%I zo*!#Jy#4l19ccAE-&jnov0tZW7;}7^muF|W+LiL4SEMs|O1%VIt^pb@d!@1qd zO$&BOZ6Vmr66_mlD+dtzgKLUM+9y9&;Fo2S*Le|J319KOU-n`Af*SI^(_9BuQZ+^O zEN9=*E@1IPx1Qm6ab%|ravcyiQC8SAl92B3* z4)o6OX$k20v#k(3L2|1dIx zz`VtrGk*yJ^QHhpj67u(3l=hDo}SJ`bh?;NL4gayiZj@fBUM@V1h@$gpZ}p z)xuEDSjfn8nNNN~<;xA^`Aj9GbQ(1H;Dg6dixdn{HoQED;Ud>($2_@~feRn-xXh!> zP1o4oUCk{0f3<}2+Vj_jR}@e^y7}Djga7Wo9v&a@2BY4Uy|FX=8~@3FIDGl5 zUmHHUb5BbQ>n2lgN^uzv#!~Sr0b$|Hf zfA8PX8^?#kS8v@IR&HDye*3ro$?(q)_lDoxxMe@V?7&iObo2`z2;b;|&)voE{q%Us z<1}$#_C-fDrYHmks-NVS99OUua2W?NT0&Gvalg8s1ugwrxReEr$AgNd71 z;1IFt#Ye&mY_W%j1pdaaH1l{9ySY|nd!TOs@9IWo?^ri8Flx(qqR+!u8O9C0(4>{3 zaEeeQJmR+O+*^QzN7+JO_A=LKd&)>S0uxFbvP~|F*!rczaQd>!Xw=B$x|Oywh*t>e zmIo8a4`y&_Ra~ohT$u+Og3kR;Ia4TBoY)1+;<}j>FCeI36l0?lk>)ZRkoZ{Mw|?sK zXn<8N3DRJTF=T@9yrsH578>g8>hzZl2tnpcp&dLypEA$BLQHD!MfUg}zEBP~1X#_= zWQ(<#_CvI!XR=pA_{TXqTh>kMO;2ef*2qBSX9LLC79AKk7;Lf4|qhHGN7 z9~&h3yEZm0k}oOx&#{(Ta=(mGg*1;Mi%pvJLDmzQ^~kdpGEAdQ?}aSe29c-kq&24= zMy+e6%F(_aRx$&mq_iRPgg=cuWrk0SU43)#S`s}Cg`YykMa&pAMYB`3Ee2#@YrUll+^9Ldu!XX0?TL$z z-HZj=1eEq=wd6o)-?B8%HKslb&6s0Sn+Tx#+^es8MxvL^^-{3mzX|74sit~XP{OZ1 z$DQDl)074)K4om3MtwFs-`BkH@++RH>Hd-u##nrd@oX}l1=aGA6WWX~zC4W4P`kupoHn_@}Vag=Ke^|4op4eb_YDB`If$&(_fSLED`=pIagZDv}=_!l4r89UxoR57brH>S&4 zr7r;JXJJ!d3RsfoOP!oKrfH<3liL-G4bg)+guur+DxZ%Z2uX;H5) z=`**D+9WN(U!DzJxuxeh((^?9bxC9Xxffm>uCRPKFFbUH?yDbn^)kUD1!N-;K-QU6 zG=-Js9(M=U&ua|UdK=N75kg)WM6w-foovM-q$m>`?CFgeSYmwFOQ_& zW^j0a5#IU|^T7LuzQXKR-U`mKHtp*?)AQ}UXjq9CJ4h?CZ#qNTh)=O$vS%GUr^%Vp z(u^=|hI5K2^(naLOx$9g5U3Y*_Slp+h0#UPO-a$!L_DQWs%f5F95@(a{AFsTge>OJ z^t$@;h#G{5M>2hM*G?^*(W>)M$tS!Nl)2g21@vcn4m#mGpCk)B0>2!bSo)bja2%*S z7>hw={FT~8vQaBis`7+)MjO`GFQV@xp3v#78fHz!jJV`an%{vI zQtN?*c1l+PMNniZwF;8^f+1U}^CkQLYTn-`*WQ`pzHg;!$rsayh5quU_RHRyWu6 zmfx;!mUy#QOFZdf7|8Ct=q6Ku%y$hN$+g|SP(mj|1N3iOh*L>Rmo zqCM2uI?$iTq%ajHA*-U-V|k6SxIsk^*NWVL#A^rPAA3dP-od3}A+*>*H-QhIPzgBs z3TtzVk6sB3w98VCL$TP$NFZ<NdmcIUoG%B)*bFO- z!xU^me(I$jBvriug7?YCn;4`$_?eZ{CM$3yj2^+ys-3nhVVpGctP%^|>D+S^bFfrA zi%Z*uT*S{nl77@*jSh5>6oDOGvZg%{8dlg%YFMG9EL^FDfyP$}71lvq^f^V#)iLA3 z0-A|a(x+C(PSn(WZb7on2DLFgQhQV1&K~uQ%ClxH(M6j)TZ|X62^i=FznY3)OEzg= z(UQo@6ooir;OE2*l_ivYJx~rvd0a|bX5Bh`tLqKUk%zi&J*-KGMMhZ|b` ziog>=A&z|{KeLu?(3)O(m{zX%bPs-2~whVA2_ zk3KC~ujO@jZYU_G7yAGBTAYIT^0At?>=zDvuWVE9|+SaybFh42*U|6apm{Fc~PunHMlN5GiKRnD(CVAqSY)rqiWV+j`eVTUCXl4y>?_Ac{z2@2X;16{T z@=$?jmc(WizD-scL8b*A%V(EtE62BO$~wmEKe#!3^!|GeXrtSuatQ0zdJri60^KsVvQ+Wk=!EEUa;5m8GN#o|s(M?)xlJY2SmYgQd zNwsgqk$G`bs~1FMfz5%CJiWp>7-lP*579{-n0QBvjY0>U&y_I%Bznmg^M%z5- zX~~&NzeuyNWsYwSHq}Rcwk?I(nFx|5Wv0%W7XsHs^lA53^z?g65kGEc8Z&A`Qqr`A$>iKXcd6H&%Ubs6U$fp`PHmI%*vKxH4#3_b=2||#AfE>HXLU21b#fXe^VH=&P zKZJx&%qw=cw;Cl)MYy@qWtHWUUUg=M#@P|&3jQj1d-=;>8vfpI{nl`gC7cyd+rDvg zcQ@^#MP;&bgt7uW=ZbyLb)lO*3* zap9^9K0nan0hyA60peRHi0p*53hCwfOL8;NxTlNk4?eg({O*7I-wc0y^|CBk^=!}G zjVHs4e_6JKSBJ;@yTgZvyTjZ1?LXNY{-@QW;jbTS_OOzBP_n}p26^NDC{?K(r5@KK z&PvzwxXb{;VOXJmnNuw9a={2};+62!m@a1Jh6rs<=Yfe_i&sCBTTg5~lN4#1#hqhf zowr6;HDg<21^VKB>n6zRKjnv7TA7)({FrHLO2PB$3ci?;N4s289%D^~QOe*dl+Z?s zvFtHh`loq=5fP+Fj-p42ZdkC8C9a?7`^8#5jPD)eP$yZZHm&hcM|CgnruMFDR=J%H zjY+i;AwFOyvW_C7wh8}~jed@@4O^alZ4aBK1}dD7vdW;Gm<8lE~d^0Q0A#J>p} zT>#ez%tBWXktM&zjF85gTboizD-4#sYH(11SLeItjru|`)2qNf>hBn%P#4S|lk$aU zt(Yt1@UmR)#UU86rS%Lhg5=1MY*fZJcv0B=l-wl`Vhp-qf-!~6iC89h8GKGgft|#n zwl7-I7#gmX(pNxm9jRjLI0u$;D%NyB8zfvvSCGnZF8BbZl%Qz#COl;I5}`~irQAb{ zF0cg+7vn1R_krLT7r~qKAwf))QDr5c6Ojo#eV}@Ns}&khiA(DYv#n8rWRz0o2>5g= zX+xD}KnLwj5;!m&zA#ouEmVnTFG$yvy;r}8?L|Ww$BHpePxEQYi&7UMz5H=Ys&y4y z3u0<}NlM7EmQKOfCtupuLv95JGz$hz>4PfKGOEN1e%b{zqM0($bc=&N;KxQwVkBw_rB3xJzBN zD^{}Xqg=9+YdW7NXubXu-${J>MJeH7dMMLzLf3MXS!UGNeNSKGtVCvYkunfG9j~)Y z&k%S+ORDlcX~y(B-}~M()btEQch2+BoKdk+zFEsLh9DoyKC?XPW8MFfazF2OVnOGn z(R1?{BrQp~LntR8a_yy;9H3lx(1tM>SJb{AR(n>|58PvW=ArCmg+jmN;Q$XqHY`s1 zC0Y$W$=1$w3nI4Uvum1l$+?6Va(L;*-ytoO*`!{6!ctgX12Pjgf~*Q=IdHb;d|%&7 z=fxO~QQrTGLC9Q?m3k)#s=>D6nW8(IU73NvkRoYSF4qRSPvquFFK=-y@Hf=$Yn{h+ z%;x@(J6@7y&-8ZRX49ojC9n8eusCl*W~*ljQgCzlllo~q8jArbbdvjAH%k)ZNlh;{ zsID@j5=^qR=E#rg+*Y3`nyL1*t=vjI3oqpml)a{aCvhLf29pR_UGCjC-!$o?vP^K# zN155eBxZSE*UJ*@H+)0)5&QazUN95R?a{bn0)u8N_?V#YoM~C|hkjAvv1Y2XkKN}R z++x_*{>Zt4?-H-bt^>_B=KI2F{WP}$GaK6Q;m_U~?&$l|>v|!A)%4bM48TSl?iKQ6 zonIbPTe;V+=PTO5%NM$y!k+`Zpm98_B1P+na|g>+QE+Y z4R=|J zn(r>3JcxVtbCu(jrBhhi5MEBmfS*f%qsepF21^G9z2HmaHIA{|B=6<)w3L%(3P;jh znrpW&2xo|^-4oor%L(Db&UBkN-uVkiLv@1Hj0Ig^(MdDKbd3~u_S276Tou3fjl z!SMhvmVNd?t8^wi@v_8tJORCo?F{f`9$Rk98HAby3F+%)T1K*Zl_Q3fGNS(TQR&-! z))tL?b5^FH`+0hDYG#gyvsm1_Wh!Tmzo!R(7M_%ov>_vFi49=^4GQ){>b@aV8EBp_ zf}+(^%0>3wl$A10%A3`#l=KUb1wd&-VMx8svr>+7wJO@aoVreGXHSm_eLeXzKM6lI z|0Fpnk9>}94wkwz?`2R<{lObl3G4C62OSq57fW&O=`UW=t~hUT0ap4?I;=~IQk`jp z@9m2k#0_CBDF|v9)R`-y$#V}NU%a^?sh1E@Xyanb`vIaw1HIdgIQ@KnQz7VeZk2r9 z#>fmPp(PimiHG6$j_wX0Z>|pi!QcNkMY}rO(DzV|brHPxcz?L|?Oz=p{LlXkHtS*r z;uXCi`_u3K!SK?r{<=hPgQT-CQw{Xb1$xlZCM=a2Y4=SjWpvsO;kf9O89eZai&dSg z6{OSpFnZX>QcS=h$9i-O!?*70VU3ofCNbZ0?=QVFeCcoetFE*8;SYZ}e5?!UeP%p} z|Bk*1`;YeDAO7u4E$?G%avSY|2OFnJs+{Iq$wT zmVJz9dlA`_iMnWE8KnT5td8qqRl3I6NW z$g^oWjl1_XR%(6^$$SG!d9J$L3%(l=p1FQp0q{9`y zxZDz!<2zD>qR|O278Lg=w|?be1p31s^g_o5j_m)Uy66(Uls?v*Mb+gD001BWNklT;EvJW^y}iaG;2efS zI&YJY1gSFeLX3W{jJ*7_n0pzF8j?L8#Zq@x&Fyv8aU!m`VhGwf%ToRvh0oO-19>i{ zoa=6abz7U;TB7n&Jj529nag}jm~RUgt5V#!F%5cZskI?Vvm-huuut_>NbQIipZziC z+STVgE9pS9pm!A*_cxC%viDr-dIq`n17?fy0H2^QFR6a=_S?@u(GrpAzJks`FjaO@ zZhyMHdWnz#$1bfS*Mjp;WLrRf;Tzvn5JKOFlwaQY{^uO_i{{^>B52in0z1+I`qpk|sZf{k<^>b$YW z>_qL$fLQeaxh&uM@!LNgeV>$>joVkQYT4JTo-xc4#stDnOWh&ABefN^KCT5gVXK;j z$@fl=_l}0!KY4RGPcl@B@Oi6>Ku+bj>Q%vXP9nf}NwajXzp~?F2djY{$!~YGtZqO4 z=i3mHLv2%j{R=N^S#K@ftIh%HYfY7o2wp2##|{SEfoKtV6$gz880b;x4rIfn>oMqpIP;|ZDQ)tHoxV!4 zn5>8In!JER(n`JFW#y#4u4SJuYk6bXInVJt=s;uR{kPs4K31^vEa{Ps>m>HWEuAN? zK6k^*4zDXXx~JgjV+DDSweN9G4!s&9+V2h&P~Ov0%a89XSV>BwqBgC1+~)WsFub9A zB=$|l(Kw}+@Dnd}94R=v$#~RnMf*1t_?|k!YTC`d!pkD8rf0bP!1r`{d1W_k6b~;{ zu&h1D6ZfAs660rWEZP3i`|l68i$Sr{z@%a5E%?(irmGO-11O zF$O(@w4wr1SMe_I}XY^aH5?T^a%D@tz;YQs}nkA^QvY|aY3g8;Gqs^e)vwKQb0D) zJLMFZ$X`(2o0DzqVKZhWI>~29WgU*l}!aq>X0RCutbd@ zN5YdO?21}EBu-492V>Y@gcMtH7F1M4;in={#u>VhS(vXgR0GAVTaMVG!@m2y;mNP*8@?)XK}X=0i*siFvK-F39yD@c>5Ey>uPSKAMJ!9ftmq<^ z#AHk!cDM<;^mf2VJX_od?r7GBZkYL&2{|`|Z~fjsAHK12#pnGe3OL_8-W#6(wZC2( z6B#$b=!vB7q)6`fR(6MfP$8wDY~qcEI0ZK%EEQyBqCImd+Nt(d#mN=T$>Z@NCOpl>FgF+kP7ejUtZzoG;rvPBdg_UEGRvWLvS#?Zdg&k=9Yo*DQnsuY}D>L0>c5o`k$4;sIS; zze1_MA{SUB$q)^)NNlOG&>DaI1LV4xW0RN027s}J+Evv^9W($QNz&oQi333-WtJbc zsEdYv^SBipKU*I5VS{{1o(UW_WeOkRPwa&!k(n3W$?#P3UPqRD1qpkKHrP4gN2I5Q z%#BVb7E{tCX+_djOFIC?qzin96d-HPwIP?=8(aX}5X=Fe5*t^TtF{=8)~)06ijLDO zda%JbWzTf#1q)zWq?uw8-po!&bg$_fNY&P}3C?lhx&%2- zWT((N1fQa^-fZZYtZ`gFe=Q}arjQWOF^qEtiLGZR-`9gquD|ktW9<1iX~BpSV6T3b zXvA@91zV5waMP)meJbaKK(;J1Cyz-J4p&)5Q3tuDyb#%}BAl!@v(?Ai$F&I)LP?W8 z3c0c6_{P$_{^>Zpsqcg`bI{ienkoI{NY@u!f9se?(4yItBf<*8*ac%aelGXdxP`W~ z+cZrR^9xPj)92T(JvUstqS;vj9~>z7rFK2iOe?PLPIP*w@o5wZbh5-TzjJ@zwl(=_ zm@<;Vp)oGi<66sIRr;%4M>Uo_ls3ruN?!K)l~)uHW69B#;m&*So=?EffqG`RE@~}~ z$d`-yE`pyrGgluf_?tMdPNi|c{Q>(IDRGpidUFheBaQIlCjhjm8Hap+hhs1Iv17vE zuszbbqo5SmG{>SP;6z}D@z@7;LV)g-WaqZ!4w61w3DA`Yx4EuqwSx4E3?hx z)40FEa+XH#Q%a~lSOA3F)?(FV3;|c#c}bsl+E)OKX9*tHyx1b2Fe8$0A+u!u z?%jJ1ruBNOzOnZue03oByRO-WIEJ=zAHu%<;P!3F)w6ItCtwycFPso;hsQSQczIp3 zvAyiBo?~ol_9*ykFMq*-w)P-8~1#E zmh$FwU>NwM@%ZRqFRig>SbIYP|Oz|W;6;5pI`HZQ9qcxJ_Ant}KIm37|yUDd<=BYhLGcx=(O%9vhV zBzY!~C5@Q{&jO=KbEt&XrahAe6rri?f;ukBe(tuNQ<3*zu1vdhZk-+PS&JTp+Gk@a zNpX!$h=D$ZomKefgs%55{GSfb>$|&z4YyWwan3SLTE=DV z^;dOqx;|`cnZC{K%?SSTU`pqkHC?n~?|r>#{eS)5{}E=%&OiOLKh^yzfjs>8#4~oe zB4z35EnWB{>xwR%H>BIk)abz$-!=KQ|MQP@5vk>D#P`XQN5c=lteFG%9u9B(kN?B) z`s=R^SM@gMhaY}0JSa=`;6u*$_q4Rr?;hS6eq&uX*s{O6L1pTs9u|<3aY-|mr_2Q$ zeI_JhCKRjUj#j3N94=t}-~nS&h;AfwS6oF=ihxMaKnA&IkSj-cjD~>kvShPnf$Y$i z(!X;o|LWn|p_WYc%@gvKkV9V($T^geE^|Y~pO6G_s5y|_c?&)y%=u4X3xsH%FF5GiKoW7-`JH{t`(4>aYXTC%Q87p^`!KSQ&CK6*mW0L-^|MFlE(<#aczF&fHLyfs_X3gI$k5k(pY@PmZG`wz1!+ETmhnyxJlH2RVYg z@=!q5-t9Y`b|9o6mX@dj@y=bUovca#jeeCwmHHA_Sk-W*O&v(6TvVDp$S_2kT1ddf z@)SdE3#y|oCa-Ztd#Lv+~xKzaKF9P<*%+6A~ z9g$revg>j{e-?Wy zf$}+jC*38@Qryx#DBlz&AiFOgGTZLpNP(B`B@AD)SY}wtQm-txy{(z5?9<5GVaB8O z>Ai=ShkXTs7iONS?_<{Lv4Wy|4x)BudRV4iJ^VanTPHoVYezF+54EZm!OsT@-jKjg zbwrDd_NKKphy$-xycD!v+hElKy+o+z4YZo`(>>k449>ieeeBYOV1#fVZEj| zsCk~Ts(U$Ja_63l;QN`AOtYO+hIHO($LA?usVDmqw870QCsAcT_7Zh;SGDyYR}y1s z)Owi9h!~Tds2I|!Rh3ownPBghjzeCGSy<}a_p=1^LoM0-@S~68rHINnwxd^=<}_0E zo%ZpE`lj=Hn!$cUf!!Sic(?Qd72n4_<~fNH0mMy>A;!l&%^oJG$T#A*wQMp=Hgk+1 z7)(G@1JXRBjqb(wcOU5+y*rkBRWsXPeD&4go{pzK)AO%PaIzHofoORq7D;;p_gAH^ zIlf75XKB5&Qt!PFD2^TWhU}&v@KyiK_8Chp%ln(!$Tx%8zxLHGevLj#brevQ{E~%c z28;elSaRdJo5L*~*9hoCNZ|d0H{bBS?d$3weJb0Xm-H;~lJqF;>zSbXuUJyV$EAv_ zC`K1>p`samO5T9e=xAzBljWdcXPN3uoEM)46 zrR{;q9o^Pw6CE7`3ZB$CCnsU#NozT-C#2j=m9}D^ZSf}C5?a&Vsm^YERh0}R9-1PC z2Ta`5lNYg-t}l4s5CJqN(e*rw<%@GJ$~qh5Od3TrYQ3CjJ`N~2R2xRy)VH<(!ivbk z8MHnPk|N^_qR!^53Ds0?wr)c93$0?))XryR5PH%FsWar|^wc*P7Og9LeD13pX03lE*gxDz@i5?ffBa{|pKj|d-M!7> z>dGaFJRWWyNXXrfhxc~kn<+nfZX@88#3mf!iq;RP+(^?}|7-P}?D zS#J#Ql^G+s|KHOM_#do39DZZSZvltGuqeuDMGs4}PQoS4sX1+>@98jmuy6pEQm$jT zv1Ar(&OY<^RMg`!F2q%gLk1&&DuEDgQtF*6Vr_6({qf=6a6=!=VT|zoSZ4mh$2VV& z*Ay;fUlV{ZDnY~pz9XX=!B1ca%{5#gELi+tpCN0Fj5G$VyJ`A@-b(d(Q1cKuT0ViSNkQv80G|(bRQIR%~hvJkURl|fL)wZha z@di+gmMy^q&e2^2QJ6_66PUK6)8&#w-NUGV%4Bn9WT1w$3?JC}ZRIIK@MOv}$EdPg zN0oyWSt(=v45ly1{Rv2Wb0C4WGt1UCAV^x$U_bU2|al5 zaL}7J=CR%=)os$*ppLH+6iL`yQ!Up*MPWgVUwKC8^p7pm#^+UJx*Tjsu}dpG_0nF^ zp&PtyDCO)-#3MvP@ifHl&PYjcdsdG<##BU7gu5!bx@2F1Fb13cnG7Wouo~ zAU(i_1$F8^J@4tO+|$`AMe-LDDx3niNOPrzYS^TYd@3__jj5)!Dc2a^>&o_?%rWM7 zqt3-J;XiY=S(@$k@c{m!zt)S)#&OP;HO3~q$gIj#uXdyXwTICcMsbZqi2(4bu6sEV z`x-~rZx0{c^$a0q*E#tmzotBnE5bBTiVgaOZRkueHCWr89Qa;b($3`sec73~w)b_M zW+)wM`R5Nle9uc;A}#l|IsVTKZ0we2W)|bmzMVQ)`Z=!Uea=M5)ZEwc6$ z9QokKZ%Eu!;YBt4V)(LqYAbLgiR*L)J3KQ^)rzOAu~=uoF-Ap4V&+{C=6R`cZRnnp zKq1QnBbR#s{0PrOBGoQjY@$p1+6@DQ2{ZxUqbOE*ZRzgU07< z<1XJtHBNmmeNR?(cdHj=7z3;_QI3>VGzGo|&F_kW&|C5e_dPt5AXs>Ga78#~VJ@a> zO)V_aGzgx}lt7n59M|U| zDYuJu1SGa;f%=?%M!`^4-guxu?Itt0wNGvBTpk`M=sul!-rKjVyx6zRnol$voL{Er z6y&|4S;qv0Ju6mizOH?nZ*M=;bEVBI`fl#=j$XLf^Ef^(&zh3I&-b;2^ld#4WA^&X zU;c_;cDVK8i^DYqgKukPg?;VYj4Srt2O9T`bv)6m3u(;$^{OrIfnLLW`9Lp8;Hwn{ zvzaNJ@-nZ0j-6|TRqYD|;CU(I`mLJ^25)L#KlF1vUMgc{4uapAJQh^R>uJUZeNP*n zf9VUu3krBsX7=-49i#Z}FULmq?e+{Ij#(-5BKeEI`t{+)*I!lNTpAvIsF~q^_D;+I z4q;(YZM=Y#F^rV(%oCdUtVhl^DSIiv;Yb|yNfHW2k;bxtoWKW~1iv`pZTu>=ipkgn zjTlC_wp$0jlDhy5E9gY{+D;sFDJp0tqJzX+@FY$ak>WzNS*|*RKq+Nr85&RtC-<)a zqFyA4Fzc0HfPhKA@IGNxx`2Vt>j3isxKN^{7iPYY#*>)bt~qmz&`x+)Co7kuhvrC; zpJVhST|KVKq2p$fq4TI2YCt)HD9P%nGvx(k2TIgp-Vvo~VXmx^P|jlb4BLVU;f(HeDMpzkN)gU z*>OC4^WXo6!~6fme?DB+w_~~3zqYzH{LcUK+r#gy>-#CX;N(X1P#2KUp5=i=(&Rqc zI}RK_FUcjDq`xs-8uqvK=H<%v@WcIghyVNF?(m~`c88Upy*+H`J13X)-LvOkcz*ci zH~x|X(71$@dfw4;(JX(gSZMeMoPPMdPlas(4$VopUdFUcKlp-IZ9;I^q&}dEJ<6GJ z>T52P5ZP3n0Bi&{JW7IIFh+$RG9XvvioKcMdQ)hz_JEsP-9XSUH`ca?Yim2hrh=1j z9&q!m*`$0!_wKQ7w)GOgqbGXnQ-&atBr`mdH6Ba=@01DYzA8{~SlW+S3&{<_ESLh1 zD|!4!U{>F9R#0|d_Shx|Fw=r;TJTT{|3yGIW-ALS@{w)Q0E`Vf2)`c52T$a1#uYI3 z;~XFK1N_|7kf^hxks7_sY=S1s54#K##kzx=3!$w zxe3*2Uf@d2qoc5!JgHnsIf04Mo&=GDseFvXQumOlh%k%&BJkQKVc}-~MO!>OjB>~B zA#Gm(gqKWt@1H6%&`^|8NQ!+MdyC{Tx>8s64l*Wj3?c(O7_N0hr z-y;8Mkfrix5UFoY=9GL|pW`_%Y^r}+Un=j+gi9qf#7x7+pjOLL<`z;aX;R{%o;4_Q z1UA*Yet@C3SQB&$s79K?~~2dVedf8vg!;=K;yAy{2cI2 zc8-^lzpd+Hu2=STjXs)1*qc8#*0nLZ)n<;KUF)+!wW%Y?FFgP9a7h6f?iC*E#ZYGD z?dyT^?$PdW@4i-CD8Zl9)})QZJhci-Ws)4+a|b;&(N9ef=OFtdosyDq&Ju%hFe@mePwSyn0tn_j)RM8bp&7E+Wy0}|U;MtS{o3EgBK#d>D?A1f#qorO%jer> zV^%av@iHrw8JrwT7*E)NJ=QrEnJ)W&-6wL4?(O3A4@6~cX@OO9BHwP;7NdxZh*TjDRqubu6 zcu`{6e%qukmKH5oqyh4=X1DVrF+2DLmJ!!6K=agxO}(hGr(*{J(zT5zTBf-LSIy9E zm?2C$*17JE&dL0~{wu%Y7b}?2`~|&qv#arWSNkl_BM5lor{2!XH*adD@p>!=f7Hfs zs_AJHmN_dKRNpTlY~Uyn+`V__&TvIzn{O^}E9kzXXGhm%2ZP>A=4-sa^`jrT-%?kO zksKE{UwlEconKK`tquD+4iRAI)1!WYo{`gyn><&gjFfrS{7ZlDuMPx&w{BdOjyUG+ z-oB@2E|%CFN)uB_=Dm_RSaVQMnR1dNc8W2@OfAWU>TT&MI}(E{-RL1nI57Eoo-AkH zkEU|FEw*N_eN-A5D%zniz|b!G5c!2I&9HB)y%kC!tO=a9t~Nc5BIsf(G8M*NohP3=wV5h_>*&5b=K5tIV;bYE_^tKWz9IL$Oo7SciyYc1}>N$ zfJWL%DI+1t>Usj}h^T;(31_dI#(xTa7M&J%R?L8ASvwYrGi(!z<<+yupK^a1eN$P> z>L=-ly?@d2lX#ZtIS;(oNVz<>aR+z^rvXVwJgCd5`nYe&XS%97&5}r^ug3F9(GT4agjKiIzozm zP%hdEE^G_j3W^=`oh%*vdmL&iZ&8@|%xCRb3QR7fN|&o)A4SHrEy&ISR^SC$h;$YX z5f09|qI%mmK@wmQOoRcKaLKi{_oqc$=Hu)s5l(qdUWQl)G7$ry!G8+I-(9(B8&hMow~@NE3=R@p@|*b7O;8g6BS7Y)&hKU9jbB{FK#~2}mmW0KC1XWx8bte@9%PE9iUwaCdlctea?2VqN}V zCpp9@VA^I|J+@G(2anRv@Az0ZMxrO&$=HkFwMAGmeTfF<78AH+RxyFh1A@Q0v0{dC z&OCM#EHmsuO6rerD)8o`&;m_IZwEue&?bNyHieH`Sj}V>&`KeX@hlj|kO^oC3a*jq z23Al)zTlXJi^fCgT2to`5N4lLb(BIx@PtsI3r*}rq0Myi7)bU}ji4ech>!3Q`sB+; zx{+L6In<3;;Mm%arU>;8!b+&^QO@`Q7Jq2tS6<(wDES7N-4X%17CA(b`cejaqb)%n zw)E6fd5JqYPd%BZHOZCmtUuL!s;n0-+*Eh&*F9O5lXgL*5aG9^R9*%UJjvIv0r57G zMJRG8CYU}L)tiuxO8bk5MqLjbLI9SORp){wCXd;WB`(UUB~j8BJL5oBT3u;Mp|Djj z!b&oXMs-LRWv4}VsMc;qd&eMIxYrPEvYdI6HvZJUn1|%CY^Z?Pp31TaNtEfv#6Ff9 z-}yi3pL$-$8m$?*_6({P+g_PUo6`3oJ+LFLQKfRrmarz#=_12BV8Q`~uHegkDDlok z?@G;TvD~ zlF!U^+tW9l_uqbdxc}DABEV}w(SV&DeY^1ba}IbteDuIeLVHFbdTWDwgIdFZ7IPY~ z!lpdqde3|H%C+H=9whUECJ%(Y!|3F)uHXp|hp~&La_NVWJ}P6eBRkGiIf4JOmZ!XO z>z0FTEal0}v(HkZ8|{ygQ;LPXgFB;hTz8<^B4huOX1NhSWa($bF+=k1`|r=ve^!BW zu1Q-*I2_aM7hIDu(>H16+zF0-gq)xufhT?hYk)Fqm+#XO7+zEGkENdPDR9L7P@gQD zjg!t)A-LPQ1kg;tgNH}MRgFgiJ}U|U6ZEWX$*vq2V-?#7OmP5VcI-`kxB0R9l5ZLl zAR}0VE!Gd;j4)=iUeioHFZ+!S+9%oj3YhL|b(aiygTi1$^kQhrG>!185Ts=WFE6LC zoVfiXyNHG)#piAne8y2#;IZF z5%Q^N@j~g7bOI^<+lye?n_P4*ktntZy zgNj_E>QLtczVpl&ArP#N6s!21hb(`i7kic^(KDXcH#dfd3T9>s>#}yX{Eh;b{9gXj zmxgN^SBDB>?rKK(^RK)*T-Wl@H*Q=X-v7y43huTU#7Ji5Fe?HOz$OsPOC+@WzQ*G{ zy-4wbUL@Gk=h7}~-`G{1Z&K6Ve%#@2{Kt~x_91fhn{)~4mL?ykz|J%tITg%9fRdPL zeD9MxnuYy%cu6yOc@boNP2*cLgL%;e-_nmi_|A89ER&SNN_JT87|vBLkA~l$Z6&4*+B#C_boY3R9kN4Lh4KDcBr>6yoH`JOySw z^IrNaZzGg0cKkF{5+_ASN9Lr`lBcMoNqWNzGHD`jTiS|!K$xY&Lq2jIDDw6NCkhhJ zw!l&I0froeQsz<9R)#RP1KzNdvX*)BcuY@$i6qa)^{_LQld%)t70)E1s9(kww$o^& z1yyQ2RetgBf@}dsu&KbTSE2;WX{E1E1K{lg??LkSECn+05Qsl=7D4 zOVlqTe`av@v^iT&^TX3Lh;g0$=cA$>85bkETJUio^`%`?n>kk0G(}cK6z0&$J%^jH zyBc&I^|aX4VVG3sM0P}Rl*Xo>FYD7hg=HJ4m$Qowrh3a&K|lvYby1e7r%hPPd#w#h zsq$qZNwYpCcWsJFmY#GcX7gB*7QFWo&i$(`0s}GsWbl73w=> z8AL-N4?jxGMtG3mBhT|OHz{7~x!_};Fk$G^_-+s0qulmfO3|j={#1e6WA*)YJ)k+% zjSPw4X$HQxn9}Yj! zH+*CXO{uBbQb8`n5>7p3;79xCn8meQx@vs)NZ+H9sn{9q;hI4Y@^pj1Oak8Q=H|l> zlfpsflcM5-$E`0(U+-JHNiM6^}1WR?x9VTk?_%O z<>F;Zx82B@`?| z&(bxOnam5nHL8$hT4)=Liw$iHeAKZUA0-|8oV{f^xhE8?2rW_cE}51};FVc=^{i2) zkE{dV>pC@5TLxp3{*9g~h+?6^1%#c{t-^{D3xsmiLpL?wLb+YuZ-UVh9%u>3>@b53 z6@UC&M@pq-zQGoawTH3AW&^b;jN~aWQO*-T0-979`Gj#1yy4#>$FSmCsOcyeE|6x; zx`3Qu!H6Xid;9wG3A&Kfq(#Zcc6f@61)7No=JI%)C=y-D#Pd$Lyk6_I zfP}H)ce2WeH4wKB$x`)G{Sk0+R5|d)XmNZRn5;pH7%60dQM8y6_10 zEHH$(1h(8HL~)iSrz?U{0@5ikY;lu(4YLSoxW!W4J#4q|3+!pb+3Z==&>$nfHt-os zQ^V4(IrhX&cqY{`r$%*WV3kmK$STZ?DQub-sR@=t;j7hx?z1^u>gwqz&(Th4ruEZ! zrub#LE%#i+V@rD0IURGbv4rtn(aW3CUC2=jLJHt4hKZCQ3$u89ZOhD?Zak&vv8b$# zTVg1i1SeSvIV~4oWl0(ERC_prhl1z6_GJYuZ))k+t6uSjr5XuL@!h*MEtAPZ=i~1F zjfck9uRSN)Ewwey^UMM!*yPjv%<(VH4Xu5{T7P0@wK*9kId}rTSFY;Yp_i`IAb{Hi zlHiDJWl2e91C!86TT^!24`j_Gi<{nOi`bqO z-z}eO{!E+GSM7RpYFz8JtD4nzRiDgZ7AZjq&fCnw{JaH!r!Ab;dpFsQ<$5#e(zTgS z;naO!sQ`_aaaLe-Lo0_7fFh`~O3+XHAc@(w`x?vIAvK0iNrixK1@9;bPd}_HXh;B& zYjI{nK2flYWnuTa{TZpft#>qIcufIl&w>?>{eO!9jbstHJpB(_M00T1RHD;(AsH@1=qIe9?;Whi7u-uLCvfi>>OKc7SY$cRYLo2_Z>R32 z4Tz7^DsTtN@rFEJATD*am6v2NHEViPW7X{yJ?*58e(vP9(|kP{&~n53 z+TVD=;h2{qe_H!$G9(kzvwgS z1n2MG{zx-k^-=;hl$1W8njZLA`x;9=^P-Efw_PqA>uWPyJ%fq`r`ALfK z`HmUk^fUWqJnLH>ZfJkskbfAHD{3$8;Je>1>RfbNaP~XfQjB<{S;Hi%(2~+7SG;NG z%m#~6PusT(Y~lYhPrnY^uHL0MEjY^OagA`7Coy!e5LXzfd9gngaQ&>w?MG z2&Ybf_m$uHmxe2^Kkx5^=h0#Fvc4Jqk|ub_x9k1>(>FexS#7q`+<;5k^vOIW94RTd z-EfL3G~U2X0SowGtHgm%s*)?4Kun)7u&vx^A*u&K%H~?!7_Ln`oKV}+5#neqZI1{l zdLqiYgiLGHhf0l_Zq8cT;(;JI^@OQt89vAqAhM8ax;*$$H#~5&GzE`tct;MQK1m)s zg7tozkbH`2X?+;-DdfzvVta2l&lA(%BM$2?{t%+)ndc}BBOzU7R!N6<@k~ThrgPM% z@~8E4h`J!@DPFQvteT@s_|M1&tlkI!_FXnO0rx`IpN8cG^c+cWXFP75RlYU zO|3qn7*!h0X(ia=MsmS`F>6JS6?y+1Q`U9{cuYSgMd(TRF*P+F6s)rxvQFBE`*Aa# zRMo@;oHO?^r8CF%dZ6hL$fcU*PZcL_s=pJ_Se6NyGM~NPWS^ZUDH|{6DH*K)fN9%Z zq(r~#Tx%NPK@uCV*x;W^!i zJm9TFU9fQh9=ZwJ4a0Zz;OsTc*8IW2JFfHaW?TGgGCpsj(6B6FWB-OUb;cj(_-V?w z9-+CVo6{@008FagXhLPlw)1Twzu7Gw495$;w$MevhHgska33}v;#I~oEyy11z$_b< z4N0Y~b7~udlItyy{PHHHBNi0DM=%2pQA!DvP)TWh`IH$bH<^)4h@jvpSVs>m}n&*OCv$7AHamV3|4T<3RJlT1hJ6l2~r#fZ4DLxF+4XZ zF6%$vylAf`)k2stsV=iETNTpAEvh5e`-0qOnPZwJx51;-8IUNAmo`!xXMOw!U13WW zQ>oJGt<)qGyv9hRrn|PGV3MNeP2p2o4Z1lp!^Rka1TaiI4X1LckOjUM8OS^@^cc#< zsws0pVAFzAf!&Z{9?}39Ye0-!iV37#DLbaZvyfSXp{*1|uBWIfzDRdHjy1iy*f zWlDhZ6xf3nVT+KC{uvcVe(U_XRGm8|EDd+aA2~h*DBc-0Iop+<3BJ~)s0EhzR#PFJ>bs;M5XJ4Eh79cZCArz2r=x)PRo()NNAXINL6v$5wJl{>x>yi^v^ zV@SOCq@yNa{l?goIE9vxx(H5&PR@jgs+?h;r&A^*RY)xy4_9A(dAR!8EBcnDW|rw1 z)(_EjVB#U`ksgxoYPKNDWAZ7R-hVqg`fjGK*SU^H=M!Cr9qBu}b%fi7Fofe=G0%CJ z6?;*Xn}2#-HM11JF*A>c+E*@L_43ns9gh*r%-hw{&mVpKfyz)b!wcr(5M`wl_M~!1 zNQsQvg|^pTdTF?(z!xt*;+Ku>Z3m~8ohvS+5Tx_czo#^*cOm@D?tD%& z;np=y90bzLxB~?=xX(P4zmU5u^btGaH8G3*vSy@mTyRob3F_X|ti=Z(edM4L0cHo?)Yq8^z!4}#*Fy!t`fr6M&1t#s zBbE`#V3x4;{g9p`+?OqG-$Fwc0G2opT~v1Eg%`_G(B*ig8(M<%^m)HehrDG{%T83p z=NKrL=e`bH)GUaPVY>HKz@49^-@mW@iJagh*>QHfyM>&@CjXDT$oAUjp_LVCN z6!M~kXGiNiL|d5=$~oXM-_KQ@;}7+RAAjQS{sYNF8c=i;JSi~9RIj}zoMn@pXWIjFFk0+J@-p2-R|#PYu`|(`Q;dnksp8XezoJ> zAOA=%FFhPy(LS~z*)P2Mn!gi$S2VnQ@rlMdf$ZmBcxl)o5Ud}v{89kA)iA!fOVIPW zUiP4$uju&uSTY~Wo`)Jk_q9*5kCIyJT(v`*Pw1IxYS=6-(gY9iq?roxOl*xq60@Hl z-@i9}q`v*qSH7wl%-de(`KCU*_OZV0`^ks574*F~eDDsdkga;@b!5}eM+bTirJVM1 z9m9ElbyLSHJ#<(jxT`)|)ojldy_7=WmjEy?xH)%SaGw8(_PKAoK0N=euMRuUYsq?j zy3XDy&ym))^*l>5X-|ZUOUrT~30_idvg*w>t(0^#c_B*L%#lbr>zU6;Fevc-7VxBA zgp|zK)Dv>Yoo_mAl0In0+hw?v%Yz_pjJee109ZYxLf-6xT_z{(vb;(}AtY6Ky;&ws z&afXl_^slgm`npv8I-LA3x{Dqxw^Ugo5%3$P>2hCSBX zcOyL$vXiRI%;}F8rop@saH28I&%9SU2kY<+ou$l!Xrig(JiR!UbUOW%B6WK|D#Bu) z0;7wevWFQ~h!soIVBmPHk>^1p#?c9xaTKF6ShOv^^^KXUX?f&X!@i&CTdzm@9xUUH zFt6S_mUx0g$HV=-T`kFLi0X{h2rz*AK=qe2`xh8Nz7-kz1zjZmRBz_l+P;5L)FsX_ zT%eP45ll{^%rDD67Zn^A>(^w<#s+6}yfqAevZ@P2`677?C-|krcZe&0h%}rFe_hfK z-_=sbf91)xVQBA2WdFEsq7g+vayw6-*e<87NJp9b5Kh|d%o`x|bHaF_O}Qf}_F2*h zp6B|I3Xk-uZ|rBu-PL*hzLxvGrX`>^B(R2yV4#i?Z3q%Sw{}VNT2A{YW&%(3+qZ5F z^7Rl>cJl4n$66x%v6ho25M1tyC6sG8uFK+wENlyzk%!H(Wqk1q9dHY-e|nb7nV22E$ewA@1nc&{?zqwJPQ+Kx#Mz)i@5Z^>K#=)`a~~kV=V+ zWS}aAoMQ-m#g73Dxa`W5^v~EdRP{_S2o~rBeg<;cgsG>d@Nu-(%`gWpXf;sPn(0J+fqz}Oc&H_Nh6T~ zTG*OK8;%7nl``-K996KX@=WQ(lYC8Vb3)?Mbl2G!kOk$1#d!2Bv1JZC5@p`9kMzVU zr?v@L)wHf)N_7Gq+ho$7qFC(xuxV&M0XAw?Bl-+EtS8EH;+6;ny#%Fk5HpZs=1)+ixD?Nbnv=odbE({9p5}$2 zwr@_r)BwrY(9EKpmu|%@Uj-3hJJJdt$9hrsp=ND9{NVQR@O^#zQ^DUbstMs3=xc3V zj8VSJGRO783`sifq+P|{saZi)kdtgmn`mZW<#o9~yTSQh`X4;Fr%$x7JgqpJnZf3I zNTgW(ltRg;JU#9VWo91jJa@x^&L_H`I69PFx^}v!8BEOZ{6!|(>(+-07EQ^vPw|3- z((`uvyq@>71$w=sp*Q9wC|R_3_<8vaiI2+ zg3+F(sy+ZtfAK@!ipHV?fU@(WpT1RPpH?8q%kS3fU)1UVS4@t1jBS4Ozk|aHh;hvy z2?Az*-}AD}sUxvj$HtQq^h;@k0DKXt7M`jdDV;q1m$QF;Wh@{s3vjHBz+>3RJ#pLziBU#+9O$^DgERo{ z!njqkt#O4Yz)V7CYgrIfJ1TubGOvh*LQ+I7%_>ml=lgh-h_evT%a{wRX>4g(U;@AN zhiAxh-qAj?r@$fKW9H=vaGaBvT|QkNyL_{?+B0oaMNA8_WkjpWV+EAo({ke&e@&}B zaLgkx$jd$eTtK70J6b`5AUqACJ=jbzb6Wve&%RgSn!Y&nEN=D1%P+_Gq@@?TSuKGe z@dE{W-%^nH^i|%EA*%BWQ&2(zkE}hYY*Qe%O=lAmJQ5yrpzqq zO)VRJ?fQ-3<=0;KO8~n%H?dO2J?-Np%azDJQ4M_woe(7WY2@n9pZ?(cS{D1u!&Ui; z7h_)04Cd=v{`vMh`c#|(>1f|nd(0jfnI{XB_O<_ zfS++02v&ai<>!aze(BZW(k*>|TdP+3#3z69)FiIf1S-yG<4FMdf0CeDo-AZJdW1nV zJL}03gJqE>4NFWmBLo5sioi#iZKJp3tag}2V~QzR1D29S6gjj%g23pH!Q9^%Asf=P zenHp-&|4fTl7D=F0hb4t4H>baK|}yJ4>o}h-aPn_Cm$us*q`NIw~?J~(Dvy({oeDP zuRPT%?q!agAx&MQb|tXO8T0XA7~rBH-csTl3asz$^0z%Y+PEmy8c+Xf>w^ z{`la|a8Jv^UDC|&13gfBq6?TkjRTJJNIBB-IO}?Qb6*$kyuq82vFeX>cKFv6*79f- zjwNkg-rpU5s&fgZos@i&CMB6en`Lrt5Xk$)4a2rBkTbKuU_Toi&L65;h9#$7PrlPMpgTNXQ zeAfs>92HzJJ#-{|;qik%(>PdEq2lek=>PyA07*naREl^KHI`bsbEJU({wKo=YgdNn zHZ(f~Od+yKq9i63WB{gc6Ido2+5(n`d@SkA3{+sDwkS6~BqRh|Z67l9 ztI{ihfWVE2J%Kh%$AxLMNjB=sQmneqsjo zW6hS=B735dSJiNQOOTx}B|}3UUNgDhQZm};SM0&p$fgu{yo~SN2l!n!&<}g+=WE&@ zgRbySI2kPAkJyeiVoLBy$S5_sQmOzI+*#>mtOEu+B?>VvD7*i2%u?yoq}rpNRv9Zv zC#o`18}gnonJpnV4H&Hi-ZLd#<^@+t8h=vMywV8b@qs71)Z-!PP?YU&V4@3LPa*iE z3h6>Z#|d<~&ocyiGREwAQqpIRv|a>d*R>hJOU2ZTE0p#G#fStod_oqj59ea4&{{|u^=O(6uEQs|QMPtHj3F& z5t-bx5~|2rD7u=&9#f$y)PS+=S@U5^_~ftfb9zKqp5p`E z!_%IQ?bKrOq@2uq*-5ih*hvJvz$F5v?66E>Q`V_ijxBNiXp~c$#PqTkX&QtQ&pVFv zP0CCSn~=z7;i+gAIp(h|E<9vrTgD4K<*T@*?+C8x!7>jznJL8*nIHf0ztC)@yX{)5 z9WaaX5U{7^Dj(_lx;#|g+t;kc13r0^ibbPhJDzn)i6^_;ZyYIX++|{>g z35Hw|oS-3oAz;d^HG(z2NS~C3eCq7li~0^EGcCDMlA}-h#`Dy*C{Ng-zRk%DS!Vb3 zDe(!L))RhB%ckz=`=QK4WGq7G)hf8(=BNGTfWVRhmidj@?9G&6o~$g%KQ2MzTVMQ= z1HMo6Qa1PTw4IsC5e!ad?x%!e79yjFe~lprq;ykBz|6sN5iM(1N;)aWZ?u_l<#8(F zu{6nq5{nUl zyG)k+WjSEZF`lid26LVwkjj$3tV+Qc`Q|pCRIo5@u$$u|58JjCi1qi472H17z~Y(G)ahB`CDSw8;0#w_2g zW_1SA*7hZ@6tE^;Tl!tsiz6?;`nrx0clBb!1CRL!`eea*6D=p5>boGD-Ny5dVYv79 zPyKu0%U{+$E+6T7Lq}UZOH{vVd@yD_>s|XlpRU-@^Sk?>e5hH#8atZI0geDLvwlS# zy5tm(7kyA{<%#^QV>jOpU)7JL)z=g>UY8Hyr5k-0BSk(26cI6@QJ*(su;OeI#ys8B z1X4=J&gp2BC($7xC~HY~i42ljN4Q9E7O+g_>H!6jRK5P>NnH!LUQR`(#smaWPnvR* zf;xEWnWs*0q~uQ?at0RxUjo0IDw8wwHwPVj95%3sK82_KDD`z$jgQiJoBU(wd1|5W zJRIkyZO)rzo%(P}#Q2G%8>wn;@sj}S+HqMX2(n`>50ocUu9=|s{!?Y7tjMdlG5F7A zZQ9m!3GghRr{T$y`FVJuo$@WKPvP)R+X5`pY3(_QH)Uj=x|i`JKIuPCd9!_{bpp*m zYx5d!1yy?Z=I}u|Cv^%-?kT+K`gxUXL1#ubB5y>7zU@^WfM#?Z9qn>02I`WeP2-_Yblyb#?gt{f~#cH#Ua-Rb8x08v)ZpMHb0@ zzbyS*Ixp-VFq^hW)CmE*h@IXR@K%w#t~d6!^wRjtx{!Ta7tORG?M++y99)m@%ROCR z-qJ-hiPmAy8=RbE3-L4qC%psS>6PXZEd8n8;*bSx9fu1Y6}66?%KXOaMy z1WDTNP7_VaChthiF|DVZv*alk+Vm@pk84cnk}>va5%x&q?H)I@rOuMtylJ|n?;JnR zQbmIE5QT(Y^aD$*Yow|M9NE&U{~VtJhQDVT;=UC;P{@H%?D);TqaOPKbMhZZ&DYm9 z1uAq1pCtQMJo=9$d0}^W-7gq~!U^Z{Dx!iL8ZmeL;j0F)>23tH!Aa@onVK~-S`$g0 zWysQB6P8)9{ogZ3nXTzN6n+aCv0qPBb)=!W17vY(L-a*~7NVpb$)5mQA2wBO?^|?1 zqnEBUVpd;B0hMGUJ3?KDD_V=#%2Vo<*YyN8o+7TwGr#)8c_J6`g3XLREF3+b+uQ?0 zGpa7gZGfZ;KZK)-yBg7nCF$Y-DM5Arg?=O?w4^SOtvn+fB>c)pVmi|K7M>`z<6bQG zdWz~s)FT@-x}p#-@Q4n#w1mZ@(HW@H*6@h7v{{afJx>)bu;M=suUT$_M?OlG!z`gi!X|d9W8ab zsz417$Dh+|t*crF`+gyE zU(3!vWQL{Ev=4ecEE_vb3-swY2ulNd5E=jzJYyUa2=Yu?*~GDh0D2$z?e$q#=d`ih zq#Q%dlc+8~FT7(tXEE9vO!M~yCkY(42FgW9@*C5kDaKFNPAX)XSQ=&GFx)G~9d2|N z$5jHo9P=IIWxvxi8Q>>k;dE7yu&7RVO{M!d)_;|n;; ztkWiz$zRcV?GgdnYuC)eixPX96}+oJbFOZ|ezW)BzE@n}#hPusWaFi$C6gdAmJ|3r zlrjV5(g zq?DcY(}Xv=X({U7HdNJv+zwpT%)yc}aVOab4R{7tuYiY8$>$5PqA_Kb>O!^*Zyl(x zBIy(%{lpt48T@7TuV?)hAzmV*@PrK-91`SRMFn^{8AQ-uP~)gCvqE~IS&m+4PXkeP9{dFVvOXQ*16 za}Jv>!gCJspCi)N+fi!Ud{`2`nt6C+(#B7tIUlyva8>Gr=iw7A*Q{lbuU&sWR(_Cx zBb|Vs=)&uO2R8cST<}Ea1eW$CajwRuJZJyYVPp8M!^b{vGrN?Rw65tPRi>oNdgjQ@ zHfEkU>yVx)9Q+k7@}vW6(9+Y`)*{yzj?f-9Kcw6>T}=PAZ~yx6=udy5wy+pG$HO%Rd~XYKD5mSHmlUkjo9OhMF4)bdP4MeRPVDPjUvu$Va3y|r1yqqRhcTTt0HaOs>A}s9 zb;AdqS-o7N@}r-=e!Mk&op1e^QavCzf3Ax@m*fVNtq=J~&QkPv;SyX4Ui}3{01_YY zsIkD?o(#LWu5avcK`lOGlF@2ZQ6~VJ?xP8#*OLWpXHAGdEiKYqMAKRCAk0&YllhP)}thP3D%-$Wmm@Ekm_>PJz+J0;^=T zko1Kl)mMBLIxz-OXSXC-ZX9&QACgj@@uq?>3dU7}02WjbxRU)}37deR>b4U3`mWq(72*@!WIX)UqvHZc-T(x^FXtH z_Y}PPd8ag`dY~3&Ea_acfE5n(V*f8t8bI)FLo>*@)@QaJ*CK224H(V7+R(DkcYUvS zU%}wdTkyAUF|%F?&JbkSRhu4b8Pa?2z2^Wdv-*z8a=`FRT|ccu!;;B-H`pO-Qo-2O;2u=$XZ5=1sYh4^1I(1fu` znH{JU5t70pKUN?vt~W}(P$pHCAppjN#lyO`X-Xl6lTL!W{|kSRi-^-V3$dsY2V`j?d}*|*V45IO^R zy~mNAGG+RF^2PBmJonAl9q^8sgX(+D8sENkJ$TTQ{1#Z+(h1+Zrsaf536mdT@%1Fi zbLSV7>fSwlTB*RSQ-@01sLg|SbbQaG`tApJh6nH7PRJ+^v#bfp_Fce&jB?aNZ!%A5 zfcN~wUJO&7w4=O(n^61Lfqs4R%=RAeIV@)%VLC4ik+^4O9P$l$0=oo!`HnWf!#xFb zHRC>JIqRFg&%aRiCB49vuH!k!s9$s%T}v>&J!s;^kvp0(%|6Wct=(YSt6wD1`kz(@9AB^>uJ35p zFE7?>rttcuEeC;FBHAkz=mCxQABpkmZE}hyimvOWmCcAHE?g9LD(C&hPCP@DpgAU3 zNV7COFbRV^ju*oBHyuF|-Jj$kqTl*-f~$(8`HUO;Dan*0>oqThUUn`+$3saCH>JEC zZ+g@2z)DDw6XT%Ag3@0hfebqt&&;IY;KR({T=E%ta2IjmGk_&c;XbY=P&DZ&$N}4) z9-mGI-@&0@o_dRxQ+;a88P#-6sD3(4H-6v^ISx4NO!1~BT~b76zjVH_k7pHh zL=${(;{^3gs!vzn)0I|6;-ua9?rG^+-VYO{wfeL)SAl=d3+L`F9PDoC`{uLf_1?O( zbYV1Uo@*Z3q-N`v(IvidoLuTJ*iNSW^jM!Cml?iHd^TtqpYchwOvtB)|K9G0!%JWL zs+PXFJba=hlen-XwHJUm<||-WF6z^-JUHspcNH!Cs%Dn13%(^8S7+Wb?&-6f^7?wa z7!2KsBfrJcbvjS^@Tez5`jSjV!-u^5#cT=c$kELlH?rmTn}6%?41e|8e{J~3KmKtb ztCYFIVn0~xB6yB@1cQ&@FAZSa`24AM7^01Hnr9kVF}^9H6xWF0svDwGw@KxZDG90v zXt<(JJmhuNr4?NqTTl4SMeEjsLIv=5_067-j`XcIeg8L;`^F9xq=-#iEJv+3+J*2k z(8~M%Ehf0lE~{Nq=QgJda&+JalJine7$dK}USP6QH|Qg!jHoSc!K0smFSZdx#V>v6k{vbhKq%4Q+ zz+;?PkjstMe&lUg`4l@2wLh}_^R{Lq$4i@N2pK9kd02^-@nlJ5!>&EvyMz9-ye&=Y zymzv-Ne@-?V#iZ~rI2+o_Pia(0^BTx7!S|!0ZY*#YfR#%d`uI^#ta5kQj~DsAcv8*)D? z#LiCJEXeF+!<)7&$m!@P@^jM`2m{cO#~~eJy}|B%jk1n0WGq$5+wMNr0w`^E31cj% zN&ElUd$U+glI*@OtL}d5)~&AUuIg>Nr+Ze;a5$v6cqoFfxtSs%$f67glmQu*Z5S}% z7sCP!8-CD}V1uv?2!0X#AOnT~L9ZexinMGCvP4-!&J0PJ`|Q2fbnR7lU;O|5Pn^ie z{PMf^*3vyaL&m*dM#R};$;`+&8If^~EmsSH`Bs(%p*EOQhNM@_f6bBzK&7cj1VCGA z2zY~wWD#VXu6f!Kp)i$b$P>uvBa$$eP^3m?aBMM24M9n__7y&3eCRc_Qc@Wt%x@se zY51!=LE;~1vN+8F`l&F`GeIzqZ-R7EhvlE9WJ=fw_UIy}Ij5nawDz+(HsGkD-kJE* zq=dHtoX3+Q2Ktm4)+^WEpcv34^B_*nj1$>&_9@}UWClP1LUHvNq@3B<)QucZcxr61 z#A>0-n;qMnu4}an*8?rC>b7ottGn~%Z`hGJD-B5MC!K<4Yk)C4t78}+@Gap()%m=7 zM&jwArOI@#f5WfuqY&pv|-}EWJbgGy3 z_zvv*8S*kxi(C`)t#BDdH%02(f><+drG&1Y3&#Kx=Zo5r2}duho#A6^QNB;QC5I@E zGk??ajL&VYz7I;;-}%+IU~yV9kBOt7Z*<~VQ8D$c?Ah-bQ^$Qx^?i&ATF|Q51y)K+ z7S|-`I6s&xZJ&>UU)0vlY^}{|Kk7DQrgUP0`k!7JWsBz>wZXmX;rNXw?x3ihJhR!r zDI(z|o{o}u94B?cGe3+uZ&)$MGtiQrWi%Agw@BpxmJ=Lju&>L)l@UiUmk#c7D}AJI ztsbZ?*lv19s~>r(AVTPl`Y9kq<9uRTI1cz#t+d1$&9#eXWb9$P+*@zHVV0$M*h+TA zvJ#jCLBFWaTwVTzzES$>^L8THVJrC3I$QmUDES5JLtK?S9urM#QxrQOq?0RY$m684 z>?%`G|3{1-Wcz2*sM&L$`?O84UNNk!%L%4_NPnb2d-wG%>N4Cy^n${nb7fOIuh~4+R8*q0i$_P-FyQj+jk9#`o}7iQ zV3a}xferQnn*9fQq34dik^7Eb1h}s6OyAea|81PG4?9~>Rq!8U&6e(*S zx$s66d?iz&rc;KsqFsfof_u844@UGSf5xr7z{aI8T^YPOos5F4vssi%>&=##lRPL}c@=IQYVbo<5j# zMDZxlU*?4Y`3ZFM_#YYG>Y6cm22kt#Bz>IJD;gMbL*3TEM5kvVAIU4a9gR?CXl*-5 z;deZ4s_>6ns41CKu*cOC{Db}r=)F_*WDNcQNjb5bpNKrI5L1nCl0fKB!k?z^bo^NQ zl!YnfQE@&0Si(?yx$-CZY&>GmLGCQ!G-Rl4n&u?vNc|jAX-P#bL!OZBO~?2kN)`q{ zPdaRC;^)J!ex&=%XTGodKmM;@@9t{bFAuO(%xRL%Au4{#^wl zns^WbFGS+1c}OuusXyv1NG%Y$GFHnG7h*Ov83di)->z+CIc400#2q>E-#xe^=Wl$g zEe7CXMrF~dC{qBHDF!OeI&a$*64+@=9yLp``?`=c;|l~lA)+E%dB&Z31oq?v&{T_) zDAPSP60oxmZ91Vvm37g7nfTb!!{?p^qHlu0bO;^VgyQ6HQ`yI> zAx?-=^5~MpM9JG;7qB7t6Dztt89d|#OmK}$BJ)<82LTg4h#TPvPnJIJF?}kqZJz3C z^H4P6gJIs0dl(aAOq}@_6K70l>hsP3((HM(qoqJl^nr|8a9 z*DiP*f`r3w-R`#EeAnA-hVWVKL%ZRcreRcbo)^Rz-PmOc;<$SuYtvJ(Rm)D?- zTdD6wdgdHIu@1t5=n+F}qE{4HG*#1whP07u6w%rAPnp@_kGVd^nRn%od%*WFzZ-(e z!*KSUNezkF_eB^YE^|oqV@AzTq7QILGHF zb<4M@S=G%;48C6J{NB}EMShEUg=b^kxmo`Y9*#^2SD(E_+=eu|*3{pwt=0YS^u4}%w$%%JVb{Si}AlW!Svu(?@6&_%r zC&v{j2vwvN@$e~P`i)_V91JdHB<-NBh%GZn&wc6@%jcT=k)QZMq?qbQ{_|f@tb3rG zp#{|K+`6mZJvm8tx?6wpn(9=taoFl-2fysLGq>ca^K-1W^fg`S7S8pU{%;ufa@|uz zYv(81`7)*z-m5i*BOs6Mx+yb7&49)I{i+t!P}4xK%8&XLrRzx;J+B|?``r6m`qsVf zk$1lKW_R<;ugMX7vpe3Bb5?DY{8tBy`Re71-7}wlRja}`U7w4qOMXd< zvcLKH-|v=o^{rqzVp*we)6_l(auBo4yY*6}4Gwzg%2CW8)V3DP?WPyF9halWKq>+( z(B8W-yApf~2KnOzw>NFCc8h0|-rMLlaO3G9o7@*w&%ETqfF;^U+9?wbS^5V*Xf0EH zM12Fu^q)mHVM>ybB zU*3jWD--CBvc%R7>SGqtQcYol-AbJ7Q>|bXvCR(CBe5-|>ZXQBN>W4LqZ1p*tn41| zdb2EUM`=%suNwvk!vFvv07*naREmW4#7{vc%{Vr_2$81qO|b?QDMW_nMYMuSqO}bk z-Z-S3$d8}&JFmf=VA#ShR!?ACSPu=MElV#apee71hmIj<<`7nd2Ix#jUvwUg^-S{5 zL`1Vcyy-KdnSfZ=Uh*64%dV63-COT=54PgN;xokWH$ZLUo6!jq2=l7o302P%FL9i$ zPh9LAfxR}@lMZ?A%wc$FFb}DmL;Lr&mB~Xss6Vu_4;n*Xy=S*|W5IfUjCV!_WuVEJk#WYM2GK{_ z;+kqTkK)TuUFrVjfB9eQes{rQZ|NIq|8(zL-Ont?8Gq~JR3$qXt?GzWE_+MZp~7FAofw7OTHdZ2xT zKs zGI?qogF5v2$u}kdoh#Q7fA;#I-8m9Z}mZ!_vUC zC8bmbOY8Y79Bo6xTX{hi$5utd-pj1Iqfca62Ue>SzzlEk zRc9np9J!DY$C^)G6Xw|$ym3r|wzLf%a4)h!*!+reyUn2+Fim8vS=X7^z8}Zwf+i8A zR`L#Zbk7nG_cA{S103ifBMRWUF7!CnpRz~#4wz>@8oh7?ol}8nl19Tk6)Jeps*T>l z1b7rB^wS-w2FsY-4hWpl!33lFEw};iATvuag-#Wx#uLmfs7+@L^d+3NrPaqI9V^=x z)-{RGYAfITRL?v!dZtd1`j01SIWIIe@%D+p^s9B;3LT`g#{0VW)~#AC284+~wkVwn z$yx4lm4xz6w@4*%BKe2VVJ_=#JZ4U+kP%e$H$G9ax}+ELwX4Um91QHhbEwJsdv9Ow z?%loR^E`N4?WrZDCPh!vmnU{spq^PF%1T+Et3%dD&QVU}5^KcXos%Bx#zf2+nc9{g zrAg*=F`wwXR{AWd58*uEoIT!WmzCr0>PJ7;t!pb<0&_-eLCK^t-+N`t-loD#^IjZe zhC?k{O`M`F%XbpJXiS#zDIzPnoImIF{oBo}*Sw7}jySfyrfr^Nn^&FhV}ezwm!5qt z90e-tmR2&~dh4wdEubD<)!Zveqg7bpq+a;O?FBh=SXm6mqE<|Ed-GP=Iv?5kbx|vX zd0w?BcqN$gbx$uJv`$}8JZF4Y1l7&0H{R%Ob+PI;%XIn07rQmB&}9o+J7qwq$bKnY z*Z(E`o_^`&?#hQ=>b6;RE+>}j5=USO)KFd{saKrKY+H`w*DrAEygu61?o?XY&3T2;7XT0h)R%DJTOI`+e^(tepameOVJ7$vm3M)*xSFw%0 z`xEV~pSQs!=`m5<$MV_-DdP-c`i$j4N1jZPk@FS+!}*F)N@IiQO%APfC~_P)5!fEj zp^Ix-t9X$O--YL|_@2o9_NAZr0Xu{5z4lJGbMu~^a_F}{wX3F{T0 zl6$Os{N<0n*j@Ynk7Y6F1FY(6ndU-%~xU7}be1kT32k_&&Z2joZ|9R_SYv z5?eNF#W`a?R{b6wXwG6+--?#Qe)sl0w-we|w`dD4ulUfJyol7>P+=H)DjKkoSgAZJTF=&lfIAGD0^Q6 z?~&@Pv#KZoC+LIr3}h!r_`srSu?A(V(1*7B(K$z|YWs}fQ`sk^^h7b`e3>yzaNon` z;Yar7{SNS0R@^Ix3}YIw_f|D<(%-5cvOf2@&vlocy43y8f9HSf_O2hu7Jb*1!KCi= zIZ;5I=~gXfkb8_Wd`1^S|p}{?N-l1sRZE)uhN5e)o^NpI&;pRpWG8 zHm){xa{Rxxd#n5Sng;5YiStuiEy)4At!<5{Ps@T2+2Rfr9Ag9sl)!_pSD>n{ndX~n z^(ssBJPPKR%mT{cy87A;{hrao1wX454qjH{?(26;_t5=CBEXeh4TKS637z5W>Zl%(hsK%CGWro(2m$LJkQkqXnMNxTr zdxy57Vn`QC8!BXk%0LB&(-z<8s02wKsfRJN=c4duR$tljY{3WwR79E;@az{tLouVrz}h2> zcaIj_S3wvgn}}c-JWWVk1B&Ea#E5bvZ-jlQW*PH7e*Ub5(EVO>3rq~MTEikqnS;lCg*jzF zbWZKbi{^~^yYolgGjjZ{X>}ks`g8`RoE>cqyLJ1vx7@XYCwOQsAHCF6+(S-IW%@UCBeO1pA!z0y|B7F2qFd0@dov96WIOY7?~XDXUF z-?U?p`WxR)#yOgy>Pf(Nacrk>Q}#>GKi{oyUed~4IfQZ2@W;hSzx7KvidDy|`+Iy- zHBYEgKfY&h-{1uv(fhN6>Yq4$asHOZIk`5)M}J?xcG;^1aT<9Qqu}o8gT^VX?dKjn zq3U@qsIa$DBi=!t7ijbhr#E%{_OQ#B54Vs)uTY{QNU{ykd8u;|V`^U4e;$q*wy@nT z0h?7(Awzt2%$YxIF)wPsVKuxG1Dtz+9fg(zjgSQR!!$CgpAD^!e%g-UotxSP4kxK~ zblyrC+Q>!%+1TN2sCBQ()xlhwX;ZIcK9UhfdcAppr&>MT!ov$qJgA~u_x)^k`?>sV zpo8e*-i7Va3RtbA1NRb~jf)yjEa6o2D$p|bqd5$=d|%RP(N(Pw#U5m(9&{GvAxuYb zoY(xop~u%tm4oq$o!V*xJ0|HD`LjVTh-GED7FPtjs9ihMe~;ux;XX?rv<}(x^e12T zxCB!^_7{KL=CFNrwNcVo#cVs&kX+mDee-SGMqgo!bnI2ObXM&a!uHy7xbm_?b-t=? z_zv;T%{%&*^mVO-zR?}Z*?OdVJr=KD)yn`SkS82#?4Dx=^7NZ1EB#RCQgH&G)61$j zgXxzSUw+PYgfo_QXN*UiEchF}+8IFbWwir41h_w|P;OJ&Mg4$!#;pxW6GxL326TsRF=}PBjhzo5GAK$NW8yOfqpm z=u`wca!(Vm+2fE`I>ZvvLLYTfQj!)EKdMGc28D)<$#K31Oi*P=w*h@UePRk#CFU)@ z2uJ|TPfb{$(-CrO5b4R(g%UHBR1?Qf1tv|o!%~ivIHYq5kc6frjq?RGKvJBXA=`A| zm<21LPbH*@PeNKwL;GGP+X_6%riZZMP!p=VyF1;Izg-dM2(VKdtF`4J^gRrzZ(hDg z@D_>Q=G<8K8$Acx3|1dMv`v@QNwG4GhO-ni>CZxYn$=@j zxdG3&vwXct@0%54mDGi=dBuV${5<2vwA?VW36f`qMu^)u`}D`#wY<&uy`TQx?&p8* zFLwXnAN)hT2(;HNEowlmhaCEKIA`mObsa1+w&HhR_mG3_2b!EAuLlPW%+jHoHe{SU z~K#b7cqV4r4M(1;b(r{tDM;m z+SfAwDj-_~1`eQl+V9)gI3o^VevL(A1)4SHywqKqjOC@q%bEF)AO)CFTe z<2jc|hxaZ>S{Yey5P^+<*DrcJ+!5;2YnQrzrf=%p(bhz-@80O1Uw*1vKCf@bsLr;v zVtQW>30`?(ewEz%=p~HB822$Al%ZKZQ`fY7jag%;l3Uka1!6t4=KN^Ev_ zkgta&(c!yT5q_+4J1p7G$8)k7YK1wgM(5<*6%L80Rm4OH5)4d3a9c zQQIzX4lwk!J~d$1B!8sG9hk>VkY*1 z!7>R&?jy=G2~FtRQurV-eEMLC0~C@ofGwI5B>N+@xG_y79wqv^XtcO25QZ(4rZugS z*M#kYtA~&qhv?%Ks>*_%$qPc&BdGFKYci+}lPvg5 z<|ObW1JKj;sS1R!0Yl%0&=S&|7A?JUtlc7t;njW#O1i+Otky&sn{pIPOWT*BPgMakXO^yoO!(>kzOQfKF)??f z$;n!eg>jx<(50%2Hm_)$rG&;?7hibRPCGp? zR6^>Bm3XYay!Wl^nwXZuNA*WN^y8RHe&&QP8HKtQqbANQX6A&->&>YW+G<8`o1b8g zS{x!S$l=R2x=hrwYWB#hsE_n5+6Qu6ZplghWaiX{THm|e`X!BR;^< z)ic#RQ*dBQlC!EEp;+m=%qm~?8TT6v>iKRbb;QM=@Ae+ZVSeHA6*->yo@zL|c7=cQ z4}L$@|5;pW;Eq;e^CLVZXYd-%U^&`x22-DYL0k8Qal3?*N8Q{jN!5}%QTBJY^^NK+ zrS*KZq;p`0d0@6QLmu z9$CU;Th$#}TqV&r)CbguSQW}Iob@P2zUt4bWn<3DtkgAf9dKq2L!bgq`_;D5eFoXN zEw2>UtQ_$e)CO#Cs`Lw z>p~V1pL+GhkX_`n+S$brZvEO7J7!(q+&lC#hrekp+c-aQICBpM#@rpBufaL&Ho<<$ zbRUG2}z#G`?smLUJ%Ugo1R%RH~k?fNW#xp~47R=qNz|le4ue)0E!z z5$yd@f{RF(CFmJU_GOEjOFDAkMbR?$5+_sGPgiw0N@0jxb|r|(bNVvKqb*7EM>_E$ zaXMn9VG<;dr2Nw%p`1p9$SZat^abXWW0rG7MtzP$$R0zVU_J}+ghVn?en)SWZp#V0 zroqpyzHZ6R|TKdPO7bKuB^t4$8w+rmwji9pURJA zAtU9qx~F&(Hm1vb#z{v!1xtM5!ltohN%f~C9@au$&)%ET4{QFt(edq*`p`Xz>JU>z z)7)8OlxmtH%3DN5=1Ck+QuZX|Psy0NX%xEC%$bL8>#tSW(ofOcIN0g*PGI+mkAK1y zpAQ~?<=^`&-S7Y2A9Y{+(iioX^J=$$pj84AyrPG<2YT4edt4o8373vuRwJ@@6Mgwc zerr>kPX3Hr9O)^z-V5wj%0O>Hb@|~}Ug>_|FaOo<%U}L-_od(Yk{!W(*5Jmw-|`^% z+{*dxr59iA{>ESb&$<_%e?c!hY2s0Q>w17E{Or&CYJlvr_kMRhNw6M8wINx6D-1UTfZgIVPerZik z!tHML{9d=be_sw@zL9*c+tKP#oVdu>Mn~PAoRc|T${K-=hpYp=ZOb;&sRL&u&dqRe zTK&uc+tLY4`({1jbY0f(Mcvy!p$Cn&4A9`1eNH%jZ?VOx0;`2trHkYBrp5{I-`B$g zTdl3>ha(uiv^#Z~xjCSV-?IAEy!(C9Ffz(lAgBl6JE||fxvPy7t(yloR`V_j#+F<- z>>2yY#q6?EUyFXY10GvI>(NQ|uMsZ-XF^)uBb_oh#>cb*4&VoBzq>-dy8433A5Pq` zQuC&?S~+)^6vuH%pUNFT+^)*wC_b-o7LDT-T6)l|4K-ui2>{7z16fQSflZRIjFWGi zPk0|^@9QCv5@%tim$~n|zD|~y*o;$Z+b+Gvpz;eDA|&VTR+v2bkpj{f@*;$mK0(Mj zi8y2?4YAD@oy%a3{t(oKr-1VXkueqdmNLtf*O8t+Q&1NTg)z(C$}zP7i6h_QTf2c9 zR|s;FC$hbSq@(W^(h}!YvadJm_d&EGPWm1`3men)TGGIldpe!%(qhMQYvZ*<{ElGd(%xmO}(p1_|ZiVJfh~3v=e% zzHF2biEC4ZZ4kxzK437fn=*`T+N<0fXW#>oqAvsqRu+2_+S`@{r^m^Y@eGF$)3}79 zopi*9+^^-BJ1v-72TuY+oZ<@OC_5uA%bWwH`KVDGTIr{~BA+E)5d{Rh1( zT5)`!InrHy@{D=~e^1|2{!R*rEuwB@%K>k{Bz%NZQXQ~OA+8OQd8luO^1#D0knJvo zFLaixmArQPrE|#+Ks`AT%jxLzuFzvbTyw2PnG%;%roUzv0BGIZ&aqk;V#$ef7ep}k zd0@j3XZR2{&e^muEKtSPG2I}KDd>0EW1ju!U{%*_-5GEe=0&jxr(9uY*lbxzL)}V0 zyxcQA7r^tQ&Q*9YjW#9V7-se7zP{1h@BD!=fwv9_>4#ROSnUFwzPg}Qz?B9%LfQcX zJj4kz!6}F2D`ZxiEF}X8vRmE0hstcj)ZKZWKc{&NoU(@p%YMPeyPT*7xVG3X3qcm; zLZG-PtA6AW z>8^b8Rj>Ny+{?ZlcEO590=ksOMuT+lTjefn&;iGG>~#AmhS)r2iag@l03P|KRgC?| z;fOC<17{nQO!?A3)Ki2ahd{lQHqSUl3xN)rCOws`1{5TDLdK*~S5yifRhD`15ylWG z+tBAiLXYb)r5*}uNZ02E^p%!`Fa35T2LiZ%458kibbodiOvN9GaHm;uGKIiPnDKjGLo~fdE@g@K&t9 z|6;p`Ej@>|g2yGv{8&onW5`n3OTX{)r=^gSKWJ0#Sa0TA8qy~Pc#xO88K1;+R$SUy z4L&R5cMx5FRXEw`tmk=Dll49coFk!D_8j~N41AiollTHWOPx>hH+66tz9BtZvTds; zE_{v&lQ)6Zkd`lvnu9Okq-r_aG-OjWf3&ZMXC_Z{J>>ywseCW(rnUh3#lQL=bbs&% zf6yK89BcdJRSo205^7a13GMIi>R!zKyZ`aMuLTXzboa0}j!)}bK%e`OAMM`d4Q;(( z#OlKhJ!IR_#XwPi&+`2y; z(h{Zm{!f0o`n7{usKiI9Utjl@5B?s}ooxgl8 z44s!QUG9G9M}DOH`mcSVdu2Jck}K8fDje2ZpPN^wW_pA}tFvC&1qAM2A)sDV6|SG5 znizrdtyt>b#{8ZK2sap2HY8(?7V1_qV%y>hF8U z%iXDwbejMGAOJ~3K~&Fe>aE_HkflK{NY1GsazBxb*rrSJm?*(sJ*-n_Pby4_Dkk*B zmon<94@r@b23L{|B#9IQ-eCFN&~^mwvMLBW%`(4N$ROV#9( zu3#Kx-$`8NsSscZhd9#}4h@-7Y}bJb04!Gk)q$fQwRZJ~3 z)7s;DArcc)s+ydYJrvj!JQ346LQv9-b4?o#NoMt*Bz{Ew5Tql{Hk(q?u*~-~i6NfF z_H==3=UbAq(1?Js2Xt}ld0WcB7hFMv?4I7KF|f%u$;yNs z%^T1q^#rhjj=M`6m%4R5FD!3f)B=%|@t%s^+Z?HEv9?Y^m?0v1_Num# z)t0*&EOqBM*jiFAZu%w`&IMJJRtD~N-}=f|V)q|C$L#OzbnDvvWJxQL7d6+#IX(`J zDZ}FSCXQK7&Esrc*C%vXNy@X!^{;)cE>f@wX~x6o5F_J6c4YCYL!6&>M5&)>QlGgx zwvlCC&#~yx&4fPoFi~!&vE6&5E-#gL{YVoiKU= zWWFqC3VFgYHe)AFj@H)b7gE+X?u2f>-Ah>2_i9;@3Lkaq7cC^ypPN%ZVrBG>wsg)< z&!HFRFAkbLEkN;B#1r!0Z;%~EJnQ@ai4KDMPP9r)BdTj~?~UMZN_pUC0d`>XSvc zojBOYyn*|o9J+Gm?%sXS?Q4fB9J+P_t34^2omip``@;^lncvqo`8&7nb`RdT(cSsl zoBH&a(7#%K0qyWqS$vLh zUWnGuP{H71Cfz-gpYs-C-MG0%CrxFr&Z2ngd@Cr6s7y*!V_V=bO*sc5;i0aX%TfEa zAsoR##9^iqqdy){hO#K6{*l77sh=fzXyKXCd0oE`RkvDkOkcqXj6+zIJZN+5gV?go z0Mc*iJ0XU?F)BxLj>IJR#2BHq?&AIwW2)e)D6*x#oU{$_mYkb1`l?~)R=Y#l%*zeu z^oDi06hmw=zV~Z_!si6nZ?5C27xK)BVHTC+om8kN9KizGLe&>@6Q1m`MCC;jFGOfp zHTh2V^*hoxcR9B&e(2fm>F;?}-^9MEZ}PI^fs7p#%tCyq=Lk7yTxLbgGGP;}QRv8< z>y$&Ii@N1Sv8XonmQw%D7cp@@im0@^*>$LTqt^s)!$Xoff*wC&zE}_>%3Bvi0V&03 zRTqRPfI^qpjFW;c7*q+#xRsu1aJ~7x)HbE`Sc$npZlW>{i7if;_^&nxwx@wN__|;>@MA;OUPHLSo`e&8W2Uj@^xvjtMCy1DS|xoxeFj*xJ&|9j4NX zg!cJ9mAH)0A~$ItH!gkq@x)LR8~tdOuWC}BN$(ZDtE<7z{Rj8D2l}?m0fQ-Rm&pak zCmIt-^Q-Og%J7KXT-5lux@|mzan#VfBAirvQ@APE!xkf(E^TV_C&^Fxq?s3EPs)sR zn`^910S$;`1=qxg;7?ihv}#Cvw$DRX&zLa&;VP>#q{T%~Rk{r#tf z4$>)eTxUs?__=3%63&kYgPr+gkANvg&$GQh^XAB|g&X20z_Ti*M_=YxNcWRJ@l#&q%e~=r24}Y<{_4O~SM7ob_0_eZ^ul`#-SnK5?y}Yxl?X!0Dmi_^6ed@u@ zJ5A_1&Z=An^_v&<9hwb&FGTVe^$^KK#sv*f_w*pRph2(>em0HgrTRV5c0i5?0 z754PHoM-@S(~mHX4cz#cwB{|Dl!L?o>F5zNIgK~Zag&ZTrQ5gAB2m0Y@TnFpn)g<7tV8XDlF9-LF*{D7v400t`)ag2N!|1N2DuD;wu?YaK^kYm+h zO|_{e5Ux!8hiqrGJ(~LYt^F;1_g79}JzW0K1-(>JY_Z7kp_Q39?3R5FiVrmTmFWr( zNI6oywigcn8FhrD`duB;XlE{&lXAKBXa_O3KsBbcPOR_@U zMy-?Y)PMQxDCt_g`~iageY72=`U4jSWmxcDEc&fLI#z<*=~>%svyZM*M~sB zm#Nt}P}ngfN<9@?5;Z>(H3^sE9^R)0tOZys=imoDo2o~zx8_K;aqe(8mmx?A0w-97Czmx~UDtg{Nw zX)O5Chd&}`YOMA}_c6}^8o;^v#lpS(#_O-EuCzEnFQxL#;^zVp;GDaEm-ncE)S0sD8CA=jpC~S6_X#TamMxA9cBX=Z>7|+NNDE z$=2|w^@N%5V$h??s77e~rsp{VTYOVCzFk~H(LvoX&Rf!Us`P!no6R|82c-Jus-7>| z7Mymf&Nc}VsRK@~-QBJ3#%r%ddyTF$b^uE+&z#@3K)EQB9dv4Q(stPD>1`&~^93s< z^*zmS#;WY%V+AlyRKAJpG%ph9=aqu278DM-IC*gjdj+EEj296&|M=!8l?F}JWl5(k ziAy{&l}tT@BSE?ZcM~0OYH^)fxw7F^y{y_lVl^+`vUVJcEZRmtoUFVkvwB7I268qZ z=@U3d>g)UWcB0$q8JUGc-f~#&8?tzgi{P%A2W;c|B04`?JCCCg0`v)wYTHge&NCi% z!`Vw-q~MJXngE7AABDHWkABE@z^WfJ>6_+(C(pP9WuQ0^!-wz^3fQ?YDiDyEuh30I z133*o;VMZ3m0sH@5MT-^JK|caq*e}-ZY&c`8J9!LWPn0`=a=?pF@PYJ$7=80JNNDM z_rfzNaXq3;bjugDqk;OQ1LYU&a6PV3QFnoYiTev}?H3AglG@;cKTDK#=O)2E*#NAq z_mmSxIyb2&`NYdL=$La+HrYeGD+Ih;I0NE$w?CCWXdE_KloHw0OZ2Gmm4bgL8E4HlO*#U))Xa|IVAh7%{Rn%^rl*cuNfFfe|zl94_g#Q-L$bdem2^sxe9=3F z2J}g$pM+~gKT^{a0jVSVTE?wyNt5wdH}EmvNj9~#eZ`C$zV>wJhi zG4~x->1Q@KJF^)EnaS#i`(}}Tf)d{igr6L2NpgQjnN-sQPteg5oi&x^JBfaxY-T$P z?@4lpxM^wg3wxJmJ3UzM$pQGU{`GHkzw!V6%kCfllV9n6{@?w}-PLQ?x*z-VKQ8C! zrS9{;^{?b)((VwNj9S)pWoolPwPD+F8 z|K~UUdH4VQ{=YHLm*ouS@hfZV9OY5q7_c}F>Np?F20*w9Z3+W)LTJfIdweRHyfjA| zHGQ9Fuq+~UD$(j7i!(63gSh5 zS7$#TPEnzNs?@~T4V(1nq6doQPU|(a8dYzevenVRb~r_tjAWYt_-VEAJ+&2EIj_oA z9Kn8jv!NR&%VV?0_S6&OM#@VXnf$Pqt)htuj&=A3-{(>MuKHo@LZgXA;kTuKPYC)E z+ekm92RH(G`UW-6iF~p z&K<^Q)~|}+(#|dPlXo=1du`!z_hakN8gDU!gCwP}0bH_WR~uZE0*YcqT{of~?!8Z#0TiFf>hiDw)zNof6Tb z0>Uv`G2uw*``lOom{wM=a~^ysuP;VujuP}%CN#PF9@c9L+%P}RA*b5eq{ehpsNgHy z!>D0z$~(|i`kDGgy@t7ugdmqkNlFZ)h&Ld=TaJ?GxdQhU2DpTw?u2G7X1+W&>(xJ zyb}sdGXbCCZ*`~aj3-3&`U_FgR^tj&^5(Up)kFF$eXGi@iI8I1I!wwaii0Js5FdcS z*dk<^PKTfe7AcN!_i%7$2!&xDUt^JF*V{wGKv!((rnEwyG^CkKX57o_mvg$8vi&RD z2S08|9RoR&zyZY|vxoyrj;kZR^yoPnNse zMnz^8C$7jn2RJ6M7q4t~3mbZ|QUE(ecJ$Jv7L;zRZ|E67t2W!EPd&Q@BO5t{Yu8@v zR^&`wkW)tw1a`=6$!WQ)mo}-62e)o&YuIqc;k2~VhRJXRV-Z;y z1?pt<@=yNRO8A(#Nz;g93eI-^_YHX>o>Y+aC z;^!>UjJGI$_G2IGE@>4keU0%f&tdSg3Ye8=wUNi=Jt@yanaiz8q4;gxP#10fBst(* zcclUgFSgq8!83)*J|jU;d>~((8@9%u&t?t2f*{T<*?W|>WuEx0Gyv4~Ij$Bp);{e9dd*OL~ z&r|(`KFW7q&uKhN-7Kx^`=g3kY3P-@I9V7kt37#Hn(-5kws;9aILW{fT=ROKVZ2RW zvO`WWY10swU>NBhWK4a&MJD$hU!UdVl4h3&b+Qk8t4`VKvhY%fJDZ+;e&{(}H$S2} z(e*&r8TV^!Kd)>3+9maOUI5@*t17GP@-qU>X?r-7jN6zFT|ksqMA*-H7vvt1I$!&W z*#(E6v}|y)^cnd5vpC8Ug9qU#YumU_%Ci^ibH3runR3~XDI ztRS)u1-5fgc^8NJQ?ck*Sq~j^3X*knD5vCyH}nDkFIMP0)Jj#9935%3tp3>I+xHSw zsK1lv>qh7GqQ`k{B~Cv>PSiWsGJHx>wj9?!jOagiQpbZD{g7h3~=f0yoz2LKbMg3p<^Xc4Qy}YimkFFQ`mNqm} zZdP%R0s;|CAl*kb4+vE0%WhlOkAOnheq!1v19{Rq@PaaD68r>fD@e<2WSF4XW4Q*T ztVTZYnvKNbsub)=x^AJK;9&xs1jS?+;lO^cnSr#3pa-Y{cWJJ zQzI4Od;!q45=V*(3>`fb26Dh#$yssW`d@HYokFxcz%vA;ctwNekfGRl;7W_3(xFEg z@ao2!;q(!Q>z(kC3Fn~-tjzJ15Ge#cf&Z#A^(3Osv)wqcT-t$-LX zGC*WvoVTtRnAh!8n)W`s^zRPJtYTuSA*&+uS;~|0DI;l9M#c%xIAx9Fq#wu0H!n^( zGx)J#V}jH0WBTv9eAe_-!RFSgi36+ScWE7-wOG_(rOoOr7qJ1ZsbcO_Gd$ocupuT{ z<&NNI%|0&wK+ilQlPHyCzKtpON%)rb^mJNsR*5?r05X7l{f*akUp}wZw(H$nZ@<<3 zZ~yz>>wfUh{ZRLl|ISbQzVNkge5HHm`r8`P#umR1^!+35A9wHE?l##=SqeQ6m5JZ` zGe6(`^56bjG3eKg|K``fq6g2H?C53t<@@5r>B|pC)`8yEeCHi~LrHyPdrRN?krRu- zFq0U$5_nk;uj`ul+0?djFa5v|cVD1CNhc48TQ_fXYjQL{edQUiV&3JuX-Dy$-#tAn zeDot9cNy5qc9C(3st^0`c%pwv~@^&s-4>VHgz9#h$-A< zaGC7_W-7G0z$ZO*%Ge1pjwLsBFa|Vb5(pD~qER9S)m{`j+c-muGZt9#Dd})W6I=gU+ptjj0qePwu#Q?66CL|PhV2s+f=-vK5{`wRw2Kr{ukvHL*eafNH$s@ z2R$_ENboqAyvwQntTc{n!xi%xC{57_AHTvC5v6Sl>~vfs*UvA@kEux=5%3IiSKslz zvb52?xuB`3M~Con}?p@QG($$m_yf ze1qV*p$)@aj|sSrGA>l3KU$>njAR|MVq{Nr>Nn6-x?b!c6%ru~${~H<`q3)XIDyB0 zrG~_Y2eu|nLSIN?vlKp}ULu?kQY>5qw+%oeYQi`lL}*J3BioM8*k+mmOBOi=8(Bp3 zgj1>?U2Vp~&!UTQGxIv!d-wHnn4L1JKyPtduaB+h6QqJFg>9*7@6h-K$1y{Db@?p?p`>RQqZshlqdWyR}^+r4=83c6rpRoSt`N`?j_`u0i%M@}dMQYQbHb6Y~6Lr<~#g%_nYY#kHLt;t9pA_9}5YAs*k$HQr7~PY@Ov)FWk2k?5d+vOoDE z)>)nEO{`vOCmd(H=KWbtC#gTBZZ|6?T5s3sHT7iML8=aEf(&^r z@F}i?+XAH0G?~lmc8LZY+#`^qA3U@TFS%kXFF$uH@zSmF*za}^I>U+`e#SsF1`vR2 zCnWl(VR~`mVE2}Ox5cJ@tLv3lHRA}D15wnfTU{^pJFj+#n~e<7_ejq#@{$BE4hW8; z%mv3_Y}Su@CKRJKn-NQgEK{c2tLb9&Ww9m37H$8L|Uq(VpP|zIMS+Pk@M0xFK%dcfw>p8%YU>RvIt1$$7}#kp)n7|%)s$J ztI=r}u4mw5B8PhSwL}m?e0NxFfqsleoW!&0JVNLSoTzLg1VQJ4OC^0W&aITRSzx$2s;Jn}- zM?eqPJ!D~;6sR1^@8a21QYN#>2TpM6cR}aSf}FjJ8;jlYE)H`cv?`vR{CMF5JIxfu zN5Lo*goPKBX$m1#M3Qkadbmj|UJZ=BRTq7gZ4}Q+QP=mQC4w zZmPVl2W9g-L)0L6z?f}&r1ERhWKRvkDu8{(hZ2SnJg}Qg3>GUm<={6CsdNm_yo%{$ z9245dt;~?6V*&QKA-4-H5yVOBrP8&wLO!~a(+m~2$PG@VHP)Q4(`7#C zQpdb}(${!QSP&`aR70zvQKAYM!N23O(*>d00y7`)qGtWhEB7?}Jn9b=Jd1XgBFxbG zA{Ly!FRNr@IWs(zegv%dUzowo!wc2lxs;g~k{|ropm{uJfDc8rxkh0H*TfklpN-@! z5^r?--GOe()ai~UQMfnoo!*Pua_yWZqCWpypSR=gr+(t6JsIQrEOmZY5Bu9%HE~-p z4q#;9NToqMxRU`M)Cux?|Kyju@B3^2iQfL-_A20g-FtBILhn_;(#r!m^m}sTav$P8 zcceo+@bd6~;4Pe)ta$1v*~fs8!M^O-)uhX(KmBPtac|zbVVQUIu(zuLF{6ne{=px{ z7|TD_1Ke+Z@i)6a{Nvy0?%u!MZF%ds1JUkwE7}eVc})wsva>Gd!L#4+I6xTF&4Z;} zGtE7Sst`u)h63wQ6*$%j#j|qiCj~9eG!64Bf69p#7gaIz6LJ7=>7nGSyLY->)#=;8W;9-vvFx+5Koy&<44 zp<_wyNKD(qAAi^`Cvq_zr|osM|J!or6IhL_XBTf1eN+8tU$oXO+}olX2OOoCxGNj= z9oq+bVGlc@piL}x8h>R++m>t9|h zRZdY=5FW6Q$%9>td(X=`u1Pf}9|WhYt~8~cbh*uJL7V5-^*!WO)5|)alZVHLdX_ot zwhni-LRv5KslgwpAAD~8`R-*ogQ-V?L^(tbfFLzPKJXm-{zFc-K&#M_5Ap>;WXElx zhsHsOv?D=nJeKQoR0K264$0)clNsX1K5#BtNNtK`2D7r29EhqoO3X1p6=9zCkk>N9 zEIb5-Nxe>&w}`3IvR*2nH=%wntWlQt$8mA9F40WCbf|4KY`uc*6&WBVt`!9tB7g;; zM9x+kfSD&1Y1_8+6Lyp@^%j zNiN$G28A7yR8__}F)B)5%p@EWB>Xfr+4iRIg}_FR`z0art+1XpQyC{!$_NQ@Ok4{) zF`Yt1TrbKdDDnbtU2IDLTFCr6^}5Ry%pkjmF#T;#~8kJ8}R3AOJ~3 zK~!v2lBqTiFqMjORZKMi^lT}Ls3NnRduARmR@rT$^0q*<;8c-A(c2y}?$B6piAiUD zh(T*qyG=QR?%aNNa7`JB=nbq#afkhhcw8_ld`wvt%ZpM4i0QX2M%-kkDvXTI>X6X2FtyDC@iw9 zM$a#72fnZV&I(|3g9eAqyAK{%ZZBXqg(G$*6d^cl3E10)CB0N)n9C94{3U%_DIBVl zO?9a24|(b=R=6t9cFeve>7~v!ec#$Ie^9S-*zod0;larW-_j;8ujo3qw$xqu-j}=Q ze)N;pOZof^#yPHxR|m=&b*yJO>XlG!mg$zy_RrFh?dgXk)wjpriYtK5b^@I+k|xwL)YaY%@7XHt{;zmZ^~ZBrteB7XIj0wE?Od{9=w^gS%un|To`VHTdnvY^ zXQlk+#ZHF=78^}0L=P^R%HVPYev&xEW~G(fnW9ET(g&zV^eO3fWf#iE-X`hsHT}h( zmnqD3+~Pt6(EY&;qCo6Ru16W8J1A$(K*ySJ!hn(Hd>;l!&mHKRT&iEYR)~NBC0; zTpiEnwVjqacMf&$+Q;W||DL{6t$C??_q!E+dmQKM3ZDwlHGmhUmb6O*yOQ|3?s8%u zdu)Pk9Lb!soIpwxGZysi2RO}Cg6mOjH52nDo>{PiM1*LU$Q#T- zb>Q|*vW#5^;>&hW+tkWZKUv(+4d6f>jL98V036^1788?FJWwA>a5#jiMjF_%!V(`{ zx>QqyhYHXbUgiO*-`5{>y&1X)?K|_Yn=AsIOL_tbnBNC3vG`5fF>HvWw zL&cMh;NZSR3hIbU9ytXEj{^z8)IB^=)dM5N5gDGuA~s#bOn8k0kp35wa^?{<9ll{- z*f!?>v%K0d&u{8-P{p;?N;M6T!>SW$>2h`Ae@O71kvpM;PrLx=YHPUFT~3q7(#fDR z2D}oZ0ZR^`P7@k7^_KOi*20mL6Hp_{vuCZi2%eJ9MaXA=A3db-5qYbmFZGD%5wp|s zD1vWDgPzc+7_hbW&7%=~4q3x7nH;E^qa5MJ?AWckDKH_1??so3FRK! zgZk8@e1Pc4a4LCAoJ@UuGPb8XRZUOY4G^q`z$4|Q&?IXGqSXjSj}+J;ukcHM7( z>5JXw#>MXCmtO9^_O-8QLW-?-&dZVeKwC3E=x%913yu)=9peZlaJZf!{LI{YQ^IX(Q2@=bvM2>ivAT%0OXsGzQ0jH`f=XD4GqpQMcRQNby!-Ixn()W-^Rkkt0`4|IXH)C@}RUhL;Z6@TpwQM2n z=rv!o0@U!efo#>88OdTu@yg1@?ygqq?&#IgT@9Q!^x&Y!XgzN66S2#r2?#w1>m648 zVglIXWCqXJ8IjVxHK~71D}oo*Cw4Vi2Pf)T4GWAhcT^bz;^62^fH-B7OMO;vd^DkgannYlG$JqW^ zge4#!tKp;J7_Tpj_Nj#p>0Gn(7t{d{HL`TLy|K zR%xt335x=wMS+OKCyer&On_9;I+Kx1sPvHyTGwj>;2a~QAaTv|RbKJZL-vXcx>s^t}Jd&o*7 z!Qk1se^>RQRdQNMgJb)`g^L>d-f&sbbXu@EClRF~C((>>tCufnTT3}*G~PMC%P1sE zJR%%rar$1=IDJ*)cCK^#`W`MTCRqiXzm}!6Q~?cYypp+|xL=fZ1%X`)j9+j7Vk7m- z0TNu|Frnj&^{-A$Xuk`*RmpyVdTpoO8Q&Cbe=yX}Pb9Z%=&t+LdSd zoL**=!}oZ5Ut^{P?ND^F+uN0sUXDKaSWd|z{TMDi>)hXK@zx9WIR5+$1&v#Hz{rc;P zQsf!)(g!SGqh!P6m{)#jb*)?1r-L@1ex|$e#_QeA-BJ(r#BU0w+LfgfwEOxN{GEWXAZXfw5=01B8S@;_PHNGgdBAd>g&9|z3WrLj$TVZI7B6r zFxU#r{WoX=QaT~{LSn8qjZv9*jG+n0BzgU0tBth~4$$(;FygaaDKBwj8So~qO_%F! ziY{@ht!1kcvW^5$3z^H;V5OqZ30ChJ;3ZK!{tNP&wl2{YD$y1KOC{Z7`gGDz_jnh1 zV&^)+PeJHG83H;uYC(4m-tbJhV>xb_39z|bDqT+XqVnQ7yIJ7OMLv$#Lw&cHa`Hml zIh`x`?^rtn z=*2e~0Z^=2uaO-b(Ss;R_+^@y3o$`X-2E+H>`FQC@RNnQpBrj^4sx7p*Ex3gIM&>o zua~-RKy*$E2K*TU?9%lQAm#V9z;+1catnoi2NLL_PxwD3ag66Y=Nc*@e2WVh6DUjo zF&V{0BI3w{i|!;^WQGRCk;n@oWFGRs8R}=A-RK|%Tvk*gN$4fo$}z0?cun9 ziKY}R!Dsz;d;-~i8$L!^6H z3ok596m$tNZD#%y#lD#_2#^ENg94@5sz?>?n-~vhyyeLD1^&~GnD0NZbxB@yr>d)e zGh`NPdFu4stY-(|v-BTSNcL0gdzk){{rX|b)#`#T1}DRoP4aBSDc5F6x0tR>&;H9Z8fgQ`+%=g62m=VYx{nu9o=+KTIjy`+h6QH`j^wvN69;_K_in+Oe{&9wXA8PgKO&7zwy=Xo3FjD zoh>ww){4K+eD7z?x39OyfA!aXrTf;m-s*1NdB-b$F`F`sUJ$x zn_7|jq2+b0puOWh!RpdAH!NeyxTl5FS&v8unsn9M0jxsRD8)J!#gBdJQQZNP1qJTf zD(2wyT$ZS;L7OYPqyMN3@Td)W8I-a|4ah#xZ0O-&Bk!#7aa{2|__27pwRwCmNXB5u^ zpjPV3L4WUXTh8di?%sjEsg1*4=jDApM7^?n#jAlW3XwBGI#81#?I}W4n#S;N%Q( zLDs{`C#j*fy+|g)u#)Y$D#*ry4$>fuV^BNYA50f`v(|&FvM3_$@n+#m`izr_Jm(6% z1q;yVkO}qkD0Se*{Du07MFaV1LnGbz+BX7Wm}v*xg{ufDs40pR&v^jRZg0d z>MNZn#&VMuX4)b`fx4p>P{k!h%UNg?wPZD|L|80>(swJau%@$`tZ{{|p!+BpqfkBk z38fH=ij2=HHqA=cGlOGVvT4nz=7|JOPn@-u@Nk1s>xF zR>&~PD7@~AlrvZTl7@U7+Onh!Xp%PL3zm%Sei@K^ zeW6W_9@nWpmbI1gs+>_PTIs?zw%vU>Ft)Yh%k8_~8hPP@UYrt*2Df%>KJ)bR9wT~Z zhGJ~mMw}sS%>3iVSqH2Ha)HaaUHj!61*@yt9Yl^_UfA^fk;WOcFWYHSSL4vz-KSh< zZB|Un`cCGi9C+K>YI$dOTVpy+(&k^W&8<^u4^(EoikQ zW9o1UXau7%9OEB5ry9eM%fFq=ng?UmCaol~0~GpT$|lf|NO-xV+Mp`1~< zeQ_ghn9OozJj9-!Ya6{#8#DnwUD$kzWv!rAO~t&PJN z5e$Cyz0Cu?6nkIaxV``Gjd@}QaIPKu>I3|EiG)dbp0if8JvR$zxx@hjp<70W_~&69O)M}N#%}&$}2LHaxRl{9~4ybm`lb^RxBRM zxr`k8D!euyvZBb(Zj3XjQ}J^BD%92?HRgjKOync-QF4&w>u(ubc`h4W5OC1XdY#8= z1?wlRe#6TqY;TK~Pj*CIV?S*yIqy8cL5`6*(y zg7Os_TZd576n^R`tS)h}Rk;Yz0ZTga3XT$2V1XGOg&Uxg2N^9wY1ujmIK82%@W9h5 z4o!>j zc50_mxE|3L{bGXdxA;SqKS%x?_dwz3+uFx0?6iQ91!u{^r@1p%w5|&{f$6ud+u+v{ z*;zr+Fnv|0dY>C2SAKB~AcSnK--qFhA8^f|Y(hudpnI-(pTlvHC4n zC<2&cR)d?5T>ii+zy^%#kperl`J^T5`WBLl9TPCbp12W?IMeAc=K4aH#I*jWlz72K zrxsE{ApNo?H4Cx&g6 zk{%bS#TTUm&>-`0Ry_vm>55Jhep-bKf0~G~5$|d{UwNf;xnYbE*m#grwdx+Tr>(eR zV1C@at?#4lur-$|oRzhF$M?RRzc+5YTiPH5a7|;|C01zg1~-9t^U_6MBU$0QuSrGd zeEpLil@ZwGDit4gFfnzc0q}L!wt^Ui zQav-3T;UDq8m#ngv#)^?>#MsX$fr(dW9T*gA+(Tlb;_9N_W|aoEhu+qAm(OXUkeLbosy)~t z1>6CVNjm<}tCa0@3EZBv0|wD;j_{tHk>KrAus=9FE_cdPu#k`!9}Oo(HffN*r=|Jan0`OX)4q(=XXJ zn&1_~PU&FA;D<*42BrNWS2{?5CrVz&=+`PGwFO%*;RL>Ou&u49wa%9(LsiPMwk*RY zR#mU-DfJ`T(kafVfuQLO24%nq=fe(63j0VT4*LRHafQFO4+)TsXh>3(w+k~5H9HKg z%%o4676(`2Q<3Yih=a!_6rdfaW-0`YX46)Ci#GB3d=lK{H8^k<$w66a%GXAv-E##` zQ5mO38*JvZSUg#Xq6eNf810HRflxsaH8-Lz*|0!5U``TDSGwX*Qu0aCR47=ASJ@4i zI6!k+I8jcikFkuDTWxCyfEizik~U7FAWXiD4W&N#uRtYgx=Jw(U_%=FDk->z-0<4@ zK{k|4(l#`QMnr`|?tTO$c}>_;2RM3w8Ryt&9BfQ1^y~)D98%W|;&i}6v!28-$Ig>j zPPb4LO&v|q_wqSIWJCf=Of+a#0p^%GC4L5$;z6|OB*cl!jc-v--bGE?FUt|;Rd#%X zQwzXIrvY-x1Q%s>T0q}dq2Wid^sMhKJmC?{X>bZS(kSCW*~ZYoc?ZcFlphfQ zLR4@yC&_@e$V}2HT*GSWHg5+Z^&`gfx(Bk@t;$eYxL(^FFASJ4 zR;C{;;=I<@vO5p9VgkJp#h4w(_Qj1$j{W^amp-gu%zgXz&AxAl*LCCgWJ@n<8|lqU zPs`V&5wv!0VN(D8mR4n|PWXA1q52UE2?%_bc28UGdSL-IqxwJhO{2QCYx>@-%Cn-E z?pCz2=fbg8GHyQ89q6+o+dB`syZ7|nSjogGwXmuc#Omh@dh_(DXRdV@HlK1E@gnE( zwmt(RecRh|GME0&ZbYdr5Ll({IcOjBDhx5O6Ix88W8m-YxY_uF>MeXyl(FlRXTrcOxJ zkNV5zwX1UIZglHhOaI3z)~*y_==wMu$j5DJ?+MHPtTGMZr@6&eGHH7 zRe}ow{fjadhc9`*SgDs^fG;SH)wp_YWP4T4Cp&53fkym}MW@*O}MR@5l*|e>wzf&VesZ4s-Xc1m z?}~KJ9qC2wz582Qxu?Cdgs1-fl7aNuHtN`Q7xikpsYm^27uv9|lYvQ+$BRa~rW|O_ zK=&$a#7gY;^+a-AU($7~=S(`BtDpL%Z1CW~ThMc>zIp1^m+%Vh(u&V=O5KDbSTM^) zL{f?&I21F0Qb-3^E8C1$^#3bcx0`?B2_-Y zODn7XoB46Ig{Aceu_6RO^RvUU$yWv6zJy;WDeAd?gd-DYrV71AKDLnes$%zB`h2u8 z=d-(^%c?mty|9BL*6kxi^wA>xu_JWu_(u)C{~_BA&CwT!-Hc9>oksnUmoQir?K%@m z{Wtm!^&+P_Hy{gW`YO(1>eLv016Z*G0MsLkK4q2?>$+wfgwXKIH~S+mwIdp6-8V@n zSfK$l9eFr2SX;?pyiB*efG1_hD7GO*bVy?u%e<(!kdqW&YLw4QPC0c$KAlFX{3R`U zpb2-@kT|sX#1RL)h5T9iacjUgT1`409B7HWmi`|u^5zI{w?t3ijlDj&qx4x)kWDlU zeS0c!5y=6wZ-}}9=Jp{2`s|3O0|yi*XXY4nGE>Dq4)>$-!k1N?RYL4K)Wf8MqP#eJ zpcBwIR>eGg(ync&NCdWsx#@;uKoi_)?Ep2MX#_RNhIRxUWgEippya$loK*L5ourU) z!-2MyGsc(dXi2L0ni$C_JmVTwr?qNZcR`RWJW6Jf$vrrXnxy zT?64&c0)XqYye~C!k?2f6X>x0BoPz13DA`24=C&`ZPc57TieE-TVB+*YU}=fuHU?F zu0y&j=^J8t@YBQDSHAiup5S3D#MW{}AV4R)(yutaYFIYL(}mp-3+X`r!}}VE=+8DRcOop6x>z1?SZF?5@C-G-coF3T1-HD9JGNS zPz?!Og>lsg*&Iy*lM?6k7Wbl7Rd{PmO=PlyB7$NWX)@8J3{|xPIO1q~Pok9q;Y@Jh z6j3X_ZWS23`Y$l}p(UOTeZLpZOdNvTFG3(&KSPZVeM5Ocfemd4*<(nkL12`+$HN`k zl^Dr_s^XgS19*nio^i^kd=oO0my;{`D!q`vrr_0?o&x48HQU4h03ZNKL_t*W!)$)~ zUnELC7||N?rM1|H{vhow$&}&2P&8NWU`oQYtFN^RNzgz{!A8~22rGem60mT(B5Lx7d+`PW-4FBCv%CjK1Sd(W%C7aR`v3oTH*y(-7#rR z{pdPHxtSBdq00-y>;%T-cc})iw2L~^{R_H*X61%}0d`!bGnIvQ84=D?kz~YUnv*UE zVI*Z&Ik|`P+^tD7ZxgJ0FrV*e!=n1vk{rLpc0RP{GUHIbi>KT5-h%@>rtZk;bm`I+ zjd`M1u&Ql@u}|qgL~cG?Yk17vPj5Z)F9dOVBm=~--f zY>+Q(GZ-5iA-F&o2?-(bFL1#P;sy(eD`3PhSB#A%OUPiB3oK-NJecv!Fm3nVGw!{* zws&97e)xXAPdt&4`ODuq=Y8v~t>?r!zl?}yk0&BCBO@{*Z@&I|x20{8U5iq}w#@h6 zeK*?p8D_J}mxPk_54OhUTe=629@Xy=pCRrUpwPYGN!XktT>A-Mt&%NDlMem?FtJpFoQb9Fuwesqd=^Qa3(T3^2bm%y~>6 zuSy5kNp2MjdNx_$0YEq=ESb#ZyV%Nhr|QG=;xcfyMqb&`YHCf=uIUBQ)m?2JuSr=? zA`6dP{xi6*g*^Zy41SX!PjX2w>Ny)6x)^Vb7jSe+>Dhyc%vkvki3oJ=5wN8QRb2cB z2tSIqM!L@qX{^mhVep=bo{a<>c4)t7*kFd&S zQ69nUFN4bgTS~!{TGZCp!+_8D$@in+u?E^7b(BsS(adH=|HOd;&_1xug((t{mHCt# zv94}~CZe49hT0VMQ1~4I4F1YI$fmBuW}di=S*JbnN3fQAC?t8#nJsz8vdE9?09Z?3 z(gQilNGG7sTWI18HO`npd61hS5#u=VAJ;hT4f|qpcs8BZyUnJP?6UMzQvA5b_^avH z`E8Ff7nU6|w;)}s&TvJZ?x&}GMvG=AX08RelT#07L=baoFt1F>{@T6%#8 zA)0l_ggBJP3D#C0Y2-xAMM*gTB_wU&1Hom*mpB1E2`pLOEI z^{d{#=b=_%9qJ9QcwiXGeJ0tak9WL?c0SD%-qb0+70XR%5T=L< z0i&NhXMfh+(b~ zGEQEQaN2{@(6NfP4={tX{xcdv+IOC+LU;FA-+N_pY7&tmq!ZmeSw)#`kpJIqtslwcpk%-{tP@cixg}efw2!li$%diSf;2P5hBq)hgfn^C0Q|nALf##=gky!^abdH;ty|+ ztGxOBpr%yG13Q&t7jUo3rsO=-#O`|e zU=HP@ey^?UXv=85txm5~JjENc}pmiO01Eb6^voz;pq zk(i7F7r9gES?sQ8U|~nU*EE^O*3j40Cb;*Z;T^Tn`)X%=WB7^&Qy!{LS=~$6R-OT~ z9X(L&t9(Dw1n}?ZjrNx`2=ScG2b>{tBKLzrXZQ=*8JI+VMU&0nl7IfC-s;Du*VUE@ zT-saOsEv*Nzi2~oZ zWCXPQkxwa+E5`(?-KZ0+fo;94fc$cuOB-n8abF4B!wCTcf{PfKjKLa&@)NhB{(e+o zs8)rwgK*a4MgmPAdQSx$l3r$57rgL@+W1zFp*}~$SIQ4n1UN+5{uUkJfN*rGB|z;s zH0@`Mn##B0NEcIr)CHR2YGC2~u&wa7GEFI(lBFonUi|mR}qE*+X#Z<`>YEGH#Nj(AHuW zk!CKykYvcP`~lK2D5{K>xza?Um6fO=UqX>OMNJ9f>PYM$GRjRK>)^inS(@BEQJ;is z$Dy{@^|qKI97rqv>9vL2Ha{;t&o1c4Wf|xk;4ykgJd zc*I1Owzbxz@BIgN{heG^KQrkUz$cpLRoolgew9e_(mv44UTJ^Zk zPB4Qga%kNK3B`%doZB|_Dc`fU$XraSsJGxd-4)qd&g(?X3yv2P4MGfzPY*=ACK zz`eL(s<9$?FL2zsd9&NRcCFjI8mpYSaxv+?|4=U;l)ma%469|=^_^T+NkhvoL!JwK zLzl_^@={FDbiJamzYW4m2I_0y|}WfZ+yeMx|J*Sw4=gSyco-5@JAKgwrasYC@a#j zTn(Zw?9XV7Qi^Z&qs|>NRz@!-WPqDcu@+l%!lWLPm4jeY;Fe@`k8V+Bh95Om)s#T& z9K+jun?^&M&$P}ZR%R-zmR8k8i&eWzo@~3B9~hU0R%222V-=#!sz~X!AFI+mO=0pJ zNryaP-7n}920k^#2P<6^I*5qn1@Kr<4259mfJi4V5eKW)AyCd$93+GWT60GD5ZKIz z9CFej`RK`Cq;v!zC?^Vm8w{sNo`zgocnC6HBv9p#RB*u;aLeFOLd7?LfF&jom+^<~ z0qVY91D`}WZDvmOF_^xity%cy4R5?2@fNMNC0Js+DZOz_2j||Qw#ZZm{G$tQ^k=9a z7VbRiDM2aW3|CFDJrQhd7dpqVClWX!4q5XgW(h}3nN7BH$dY^zzaQR#ppP<>g?Jhp z&U4xjKg^-8=$=6gZHj9@^o4MU2Jr!e8KY8rHKSEJOD*iUc+Ev@OyA$3LTW==)l{CE zs3_ZJbrZOrYMdH6a+n*_Hu;9INj3x*Pd+)n?(v0bx*y-;&$Xh+`O@QC-Qo5^_s2f} zM)wOp|4ZFhzxEZc=zZs%w=IH)!}!I-Sq!>qWvvD$7{oc$wl(j)`%d?^wk-R>n?LM6 z^{G#J0+}tC@9K?iz8#iZwb5bu-+uj9yYKO^F8!FWr)|Ng|04}t5%g&3K>=jDI?t$6 z`ax`IcA|$(&J%3<2Y>f(b#H1iZ$qnz_x7|!l@NdSm;YS%&%gZtb$9RI)&SJJ$=^jy zGV5b5(#J&bk+$9W?rE%CwqX}N6u-v9_k82$V^CCuG^ySIdZTfU;5kW3VQLgHWC+Mq zmW4Fv9b1g}8K_tA8>aQaUw|SD-@d%M-Q9ky?>uXT_@>^%^cG_bxJb{cw%gHTzhyA4 z;vgPYp{{BIU`uacGq}30RW@%O-RbTfY2dm(5Q`eKB`2+fKkcjbx;*I(*=!|ofaVPi z%)Ftu?DHBK_)~4)eAKsBFu91JU|-WK==sM7#(`5p^U8cl-rjr1SLMjCSB$;4hu3z45xmo zDC&xu4oFH2pR{~Yr?gmzOB_jagD)kjG$fJ|bd)n7eVNS&bLC4Hmzptx=TwJ826ez1 zdjgi};8PhJ6BZd=l2I!?L!~gH!PcZGYFderoXU^Li854H@Duj) ztjLz1OfvZ!iCi=Fi@d%u2wrlt#q*8O(wMy^X^52;{j*vvbf6W>0^UTLe2RVuw#MBK zGU$ha`+gfNu>tAUQbHtZHo=O`L*B@SxzJ4UfSRQ&40EFX`VgE@|iNaa!Y(6a4tLWnDGNzk4iJ$mS^o|z=`Qdc9-CSe{TO4m~#K@XgR9b3U*lKI^74S6GkY}7*)}-mOws&5?rj?x9 z(PouzIjg_o)rzw1M0WGi7vIfY(+)jXKmBTV=k$BpKK7BfUG*w)z5KSX^XksKKlC?v zY5S~tj+M{!6U49Ys@lHd8@hah(_Q%+H=g%)*{sB0eePn-hB<(6H3DMo3wS$?S9kXY^ekp-2VZJigqGPCrBnLNZToK~_oU&gYH_OVjL zgI~FN;ddG<%v`jo0MU73MD4{}hOcRhe8w$ZL8?bDveh$+&MSPx>RZ|?lauS(S<0(a zSC_ggpL@C6(B$vVE6;hAFS}qtA0cDuw$hACwou8aK-c`d1pE`hyN&0|Q)KD+zS`yFj+L7RdwySH=?hQ@)UXwU| zPDfi-BY#yBz<+cDPR4n>X%P1hWx^ePXaPnju~A6}?^GDq)D%q%OC1TDkUM^WN>azI zZ3Dyyn(6yut(r}|DPN`!^2Gt5{J1a3*9*khop2>D!yf?;xOF^LIlVN5>!NQ@$f1pK zK~zUr59&V_EIH zDC5-a@+39wotM;N@|w>#tCMHt*owZ0(MVa1BBPL)AuMnZPQrV1NnJ)CmIvH4+e*2p z;%Im?)U>x{eba@lPEPc2u&&P9&b6!EiQeM6ed|4UB)vEN4CluQK;g~`=R2&G(573d z=Syj+&rfHSTqK?+Ep3`-^E|#ucnX_D&H+9R&m2)7EqGo*o{4AADcU^ULpHA6aliR6 zY#Qnw=JKvFgw~wwoGFovXVArgix@vbC7h6HTqOv49pMaLR8UP=>MV8@VA-u?Uk-rq3# zAO7Qi*!>T`{%hS^n$%^`g;fRlP#Ap`9yS>?(*&9ZWFKn4fmOiY`Ode!CG_9^JHO$9 zw|BLL*%!5Pg?i5-@~z-I8hC5NK(<$l3M=D)=dY!2)5ns{YT{I|uI-RAmu6&Qe7*A{BnNNe3t`jO=Rh=G(?NIb=sDl2Z>KC{eIbpX!rny6v~ zpW-+hZ(U-O*$$D{(Fy!Nl*yooX*Edd0i+aP_#xlaWbS9Q%J<8AN1cYF)h9jdb~T~9 ztaF;xz6<uOC>@qpaq^aKJw+(yhY%>YWH+!$C4g7)z zjJ~8*zN-F3p(B-BnTSzbf{P5ONXoe4NfaeLSCNVALg?$KGg-qR#V7?y12ro+fIuHX zH1S{P5?;_XYT+0Zx=B?HEr}_bLyIf=27YKr2g$Z_gb2+8in*DQ%1OE^PkLJVBpwVZ z7a(+bElRp5%Y=lYp!fGg8A=%~w+d9E*3kgiW+Gh+L3WU-xoX*@%vq5E5!X=MY~F-D zQJ;$TVRWy&DuS+pM|BL5@6WVd>}3K&6HyG#(=Q0TzW*o~GOQC?W12%#))`!qjS-fU zz_v8WFpLM~0F|stkgVB;t@41ZD*C%~@>EpA+tUYdlBT6UBTYYs5Z8{>8VpY*H|w#8 z8Wbc#ehJ^xBkOGRruP51jP zO+eB|;Zr7@!`OAGRj&J*Y~>|DR$$VPWVP`J5!hmy7w#9ey3j97&=xrt)KB4it-S2u z>zDc=D;lq1JL}cwv_-8*-uo^)<)}ZyWU&VRj@1XCbCcyn4&`D(Q9XF~$79Eys4vQj zDsn68BeCjteLeiK%vQHIb~QGnonN%-mi{&L*!1|_JKcjHy`y_)Z2gRc(8&?|^<1Ed zqMR=Dn~T#xr3d6hTiuwN`S z`a{@W%$HsD`} zs%uvK-_}k_ZD4|!iQoK2uG>R7Ihd5APS`&Ap`O1!$dGzj;q7fp)fc7BUi-o;-KJg^ zSiP!OKGlC_yJWU7zx~bct2}y9Shk&LH8`KyI8}!^U*O5Dh1t%YwhMgg<>&Nb!(Mmz zQ0MG@)xFXu>W6!0M786bSVJ$*FRRoe;lyA5;!swO2x`wdwSFP1MQ!gy;NQj_^ia1B5^J3$0c1}Vo5i34}V+=c3F;(*aIHY z%Tp&$vCRAYRfdaXTu7DB#gWS+TYYgldwT_9{W(vn2uOL95qy;kK)Gno9D|3h5;Eun zFahiVO<+YJcCbwxt16h}<+?AlR%39v)=zncxS0G!S9WJ0E7$v?QvhHk2R=hhD^b&x zGO1cz54%i#I3CFMHPBWnE9-fHJ0o-V-W_lMysdAsEbBq&RC^Ha|KQzjX?LsJIM#r< zI$yDU&ly5K_Nd{R_vGe=bI+5~pD!2JkTNqKbIya0=~B0^Dr9IRZDVK!CGl9u)8td` zvy}NXc06;QEZ8#_{5}PK^p2jfpa6#OK1a&;8g5VoO}4msMy?#w-{r1U*%MywIc=M6 z_$#?!Jx5Q_;(O>YHN}?{@Xx~=H=|&hdh*(xN{DCVG)ReTrN*=XJcX$slg5J*nJHql z@X!-=IXo2T$i1^6IqF+{@lSp+sFnS~=l@vupZ%x*dH1Wo_TOkb_GzqZm1biv;w!=9xp%iSM7 zc-Vb*S%WoGp;SSl@aqU<6mY@-r_3Z=bo1aAA}M1$d1Tw?9;_&u=q$QS!8tglkO8pI zzy|vbZ3X?p@<#WE8pL_5Z$P8znpUJ9G4P-teb%VqVug694f>&2!Q?6{SNUG>qtpFj zdnk815lz+^&}=uvw50>6Un}bOXK-pq?O>`Tw zkv8e_qfamzCM%s46Kzqc33y@+0V{Rf-O|AH z*R^W-mv>(3u4zRL>cXdaE?CsuLue8@mCvONL@_Ze%(8(h{NSrhQe^lEKj0O}h@RMx z0(H8Th4>Uz36-caGtnYRSNZAHmY}rSDp>We25%NC4;~+j{Z5M@rQrgMFpmy!yAA{^ zB5Xv`L72P{`dKbZ;X+!Hg_1%BA)sa!Pk;V{OB&J+W(;WX6QvWK>OJ@ow4)ACJ8E|v{Y9{d#~uQP3#(4F||bsIFas^vj=)FY`rxOENLdSpq} zw$Naz?3xH6`S|J}3MOnjqDRT;1~B zzeNGpF7zOi3102d>J`JR8crN#x~nap@7}+o?Vs1(ZlZ61Wf9<~PsQqJe8S6~OINRT z%bL*J*NbI*KbXniBaH{W{pGJ~0x!<-wu~tY7%zI99LJ}_nBb!hX!DCID>}Bc>)h2F z&vh?<_H*&lCi*d7lXY@9Mf8p_`$wwJl}$|)Yn$)E`=`_e6%u&&cI<$*XFMKi974WdQYynf!a< z=ibm3$eKjeR^ZEJJ7gy9mzYr1FTPREO7^vGMKp{0J^%A>cmkLYgxlBi*8W|c2X`JQexS+V$67(I=MBBs$z(Do`tIv5$w#yn z_2u;f#m=kGbvv&;ukF*dni`wryG2b_((X7>Tt2lg`@d8IQNmg2O4)s7Z|c)0*~o9% zN=D!dXRYJH)FVRfW!dmDHlSP&@}5(k0Zo#0E;sxE;20pz|1z&2SxcVe6&)8;5%}{a zlIL@INiRz-9ty@Yy6~5w@j&_`V?3PchO8!AT$`>0qr^pMMl6@vOAlOnV8#P=O$VoF zb_}_&`ywY;n}$2DonTC_3nJHIPDw5Z{Jqcs03ZNKL_t*O3?ebO#Gq)v;EE8J+q@LS zMImY6A&p#dyYoh#RZ|R{F;KOx--`1L2Vt*lkQicUxDC<)4tUr{S|A-GP@XnqF5|>S zeoUP*lIk-4*m%H=MQtk@(TrKNfqCJ*Tkm%7-F~;bx_hm=dgYoQG7fLw(`v4V-hRge zBrX3O9rNUW^5N$dIGl4H)p>qEO3KK%g`LL_-t=Y;n`(nNs{xDzPoMQ8qH#729>d8O zQ>IWZ@LBjtrVj&{Mx9l#r?ulenW_6}<$thzSU<3^6ekBi1J_fL;>Y)62ziZyejrCV z=ZC;TGebP$wdi^niKy_i5@VjQw&wsphJl@el{2w2XPGPDX%Zs?LvI6YlD&9*%0pWq z`TiLpAmw3Es6*Aw)y*wUENMdN{)6sBE8-ZOdcgPJHGuOU{s;e2_xJvn|GE3EfBKvH zcJ4dwpKNSsYaYpaq}8zukl~0U9^g;)rnd%Qm{9c~RJrzOEJrV|$(mw=HtZeX(`FC0 zX#mLsZj$N29X*)h)A+7aQV!!i$zIdoGbKgkdReWUlg518n1LbQKxZpFdR%D>IyTnz z#=7+2EBCuJPyp}l?iFue{rk7>%%1=bw}wF&ppc-*k}HS?2c3+tz2K9_@Iaa?YN~~j z4r-*fc%c4quu3ITwch|>3Nv&8_FMJvP={^6i4Gx%KISW{o84_~1O1~zwF^x>uF5|s zdnDMBe7C5{O7hUcMR3nnCwuX%zahs&CV^UwV5(Xl780EL?wclm_2cq^On!`Opdr3J z2S6)+)n;#LAnAbyFL(7O`|BE@dfDHh6S@=y-rEdB$>(e8Jnxrl62qDF-5*I0Z8U79 zeRSQ+8bsp70@4ITg*eeQa=~p1K-p6tFsQMU$zER8Y$tx1+8q(QfNP6daqJb=F(8X~ zIDd|`()YH$M;&Ef>>hOo-CYf$eS80?`^ohiD)X)J(u77yGzc2w;DjxXRD_TR`JzWHB=QBXQzIEg`Q*PU}$N05X$_#%_!)8j3AMQU5J# z()8DhJ_X%HL&|}^n$=ryQ8DMzwR+AaegcBl&n?@uz9=EytllcVZ+S_lFDxfBEuv*; zl=Us3C7`J_L{y$yW|?!?bZ zGIkn#A?WPc68($*I!LcCwa^0zyvFR*XIS9H#?l{18g`0VEH`=gan0Qy#`W4`n&w%6 zNlTkr(-zNbyPBjDaO?UF<#*fE@x4*5)F}S6+Nk zpX|~^m?r)9?`d*O6U1IkDLa`&OCGaZHPNB*9f5O(m7=E)_PXuWjc)74T6bmpO854=KhhS|e2N9TWw`{?PhVbShaaux z6hG$&=lQX=sgC^-WdS}E9U&)$ozcPfUQqBAAodcRFMPdE(Hj)zNTy(^$1HOzlr64l zUwe89HQU)SbtwDx^$d0J?Y?fy;@f~{rn@?i@*2d$8eER1PF25vvRy?nn*u1wi%68u{X!9d<(!FCy-`q~SEbC6mRwB)GbgdYDql_b zE-vWYT4X1LMt|YCjL!4GrO(du&?WxT10R+LmS^sZ&G{K`ZVJG|zbxW17%P4YQA3Nt z&@&0kg;SSJrg8O0;E04iM2>+bVRSL(s~qq|H-wcgx_2rU14psy7uoOuBWCc33q3Lz zu=2oDNe4Xb7O)B6B1EEQ6Rda&)}SwwA14o7pt5G#dBfvYswR5-?k&A3dZ)XoH#2$D z^#1+3?)c9w>Ztug*SD?UYW0qBbLD>G5EG6Vl%a9<06xr2NdX3T#zT(CP4OAiI)93B zE-WQp%6-k?FpR$<-$)Y|%Ri`ajTA(z+hx zS5B9@zx>O8zB{^ex4Wx1u8;3)yB$41^Np{6^RN81?hpRuA9T0x=+gk&o_Sw`4_7of z%9hW^Jj|EtjkjTz4kmyJ3GXe8)K*!+(&9<8vSt53-}BYL0D=C|(n)OBwJckj5*lYB z9T>YiDg$_)=vE$HCULQaK{E!5JRz)49e9-hgAdZlXD_ut#WPK>Q1GX?OTaD?xf7uzfXFIS>*yW#WR3a=DK!GAaOY3-B zgG%4jpy^%JBQHsAYw+slwl=#LG-wZxU&It`%BJtklfThtr|e$UYai=5LG(LI`VO8Zd{;H` zOTXT_i~ab>6XvvS5wpt=i(7yl>6zp1(V|v5U+I2wLo0T`>0BhZ%+^utl04hx0z|E1 zrc+_Cn3MxQ2xfrW(72ZLL{4E_87LQF6MDMPB~*h)cav@Suq#61BQ92uX$(!;6iz<* ziWox-n?(c;dBTBCcfecyV_eUi>amD6#4{M&NfBiWdrc#Z2j6H;GhBxx{SY$ijE2!v97{x)MM3MQBj;S-s|71$@oIi`}Jh?M6 zTEEQ^TxHh8h|o?gur@s+Bb&9Ftz&|ufTEqXc+}7JUm{wDv(imjo|HA|YZ-jvBy_^Y zqRUr?Le{A7eUc|bxn{LAZBeqydW}7HYErnRbN@m8fkpKVmH|fE;O(5z2`#HFpp=$qrlU*r0nwqwnnN>kEzE(52_^_dxJY~3u|eUmsOIRH}qXyzU8VH z@|Z|NDwAl(dE=pBDO6d?AL(VxJL;3){qFaTBgjAc4*;~ z3o-d8IX;gyv7~+%G-T1i_PyzO#-sRFGtUJOq~)BSn8PHVVdRxw)&%qMl2*tI$jVtJ zC%yeV{eAUAd03#$c=A!OnGnLnk8u8rXW?;y#6u-G0DwrbaRIe$vSsJybN0fhuf3oNT=`S&(5rTtRKuB>SKIN9dSL>&oT6(VdZxIJTa{2 zMFz3)yZKkO^9_zG6TVE&)<7BD-b-Pe7f7^z5kh>(VFH>L5m*t-3VE-1mq^+T6TREo zHu~CUKjn#ECW0vwHreK?EE3d>>$bo{rP|e$LyK7h5m{ja;FD%(5rjsV0Cq)+D!PMG zbOT#TMhun!T6I)|f#MV>Cb<>+oI(u9pe@{$4R}oU;t#;O4j9|oYvB#gWpcg;E`2rM zHH#g!ZrxS8fUo^-(6Au^o~3Ymw>JP<3S+{j%X|44Y?Defdg=WTa{{806TvQw_lt41!#vv4EQk9oG7Y#)-9Sp^xl+7o6|5@BG$7?z0n2G3H= zLgsTn31(oi7{_|X_(t{=>OA%_z7aP}UYKym_Dpk6V#Aa(ri?j{?mYaI%&;>#C#@Ee z=i?ri)N#9wyI(IGY%7&V{GK=HLS9dq+$p)|?>UFK!jZrf@P1-c6?sjvk=WZ3KuXq! zfhp4hdg2SDxbAYDwGPLjfk~$HsPWM0FJZUzfWET4+FjH4-;ecOF2a4Scx5H;;;Gi^ z!gRXa{i$F4)7_W9@-Mo5-dtzfF$Oa~qYV!&h+ zpk;-w2S!E%Gs`D>pqE@s@gNjsP$nPR%MgtvGGKD3K@URGunjbmyi5eM;sZ+a{yI#crSxf|zKtkb_?~8~4xh_IO9L?F&z-jh{?nSN2xTO`p zhX?xJt^D`);bVR8Rz6ivbpMzENo1dDCGB#zt!<+>7B#3P-R~aW@9rEwH2g@^)Z3!k z*Wqb?8#-*Fz6cC*yLO}(^FqH-whJocuBx;ASq%hnE&NPr zRjrO*)xeootQ1OCzg*L{;+u;aj1wKYY_aH8GF1z=O`m0ZV4=C5a;++5)4a|I=52<4D=vPK6KehBd(# zYRzStkq_Gu7@iAg@ulT(2)UstWkL^}ybc7XBN;rAE+sKl%5a>S!qP^TIKq4!I_o`fwzgKv*_6Vz#BI7^ zto7W$&Q6BELR>GjPo2$uE;g&T8{FFLLTQl{&?L-t)n*y^Y?1lXUUkQ3hJ@!+V*;eI86(o zxf(@Hvf)tmH#ul#^w3t-U*?;p%j$=!BirrWyRUw+R)%WFwfDaDFYAshV_u7v-?5yZyCqb&oW0=@%I!KKs*QNm$w1 z+NROl=R*stR^R;kH@aJI{ixg4Hq$p>dsVBUcXS$Sr6&Dy^s29Ya{sYyz&&F^F)y2{ z-&fCJ8y!~j(g(^HSjkFBl;?AR$YW5LmptmlfVyGeRhf#bF*z%_ zb)_y7xw=;6ieF2_$)#*;(Tt4a0~J_czL&eA@9ZwBf4!{LyG;HrYo%?j3I+}hldeo6 zFEA-gj6bA@81WW1HlOMOM@*3a9K?W)%NsgR?OXL1`mZ9_;L94TLhG$HeYc#KRt2Sj87;dVk+;wx!QfQS&XJhehbD)a8oj zHlCd?!=(oLY zO2k<>cVwoRK31?e>wA-Y!uHt@C^e~N3TRl1NPAmYZ{!d<%=J{yB9(Tetg)^!UUXxU zWStj3DZS-971KNmo*M24vYf!sgQ>Umnk(%rnt7*t~hDkRel|FC2&bhP(kZ$%bH@Yz?SZ6}v?{ zM30%DERQT3r3A4f=`4Mi^cmOOhpS87w%*Eq<0ro0NvH)4jvVlvCNVDPP4wspopita zr~XX$zyF_qzx(<(zoLm+J&-e?qQR5udFhF5mSgoV29NJ0`QY8xJX8^&WdfKVfqd9Y z-%P!(a`Rw^#ukUUV*0u8Y#phq_{^o!2U%M;}7Tmsd zTdNILx;4Em&-f1XKl9Uny!&U`cI?(y-|epJySEn(#qZFQjL_Sj5aPhcG0QfKZz02U zFTd7o_$b?f36#<54*Im#VSj>vD1ylh!p;muh#Je9UIch;b*Fov$=*Y4LCnM@TPbg9 zup!S{`p0`(>8qt4-M+pR^*}3s56Mf6hGf*erhTx5vnJ)Wh2No8lppH5!mJWT2K8(^ zIM%wZ5F3R>H#ErfoW2oP0g*C4TSwRSVmV%b(B06W(WkXS;Gbx9JA)b6$~Xyiy`=#o zo&(qt9Sd3gleVCbKpd7hJ4h#llvOP=^$mJi(b z*XnzA0`ep<#io`-L%Z*w>wg--cEV-&oOif1^^1J<-OfUazphW~J+@Z>Ocz zle;0E0bc>k?=o^h_P>S1BT*!y;693=@YOh-&``}JQE*m}9+W$3=-ev8EaBoTfu783CNm_clsVyn%V$6l5Aet>F0(v@U?Db#h7cRp4q?U@--j)s z3mtha5IPk~51Bqhw&m$@nd-3#>EofafDd6~Zsh?DiHg7$Scm{wgbyPH6`4deZm5Ij z86A6#eaa1EEdK%qT!3UObv94qQJ9p4iF3jveXW!R+a%|RIv;$79p^KPqH*<@KHGTP zpyCWk%AUdy+Y$y*G{$LM#4M*`b0j>)D9)aVkY=^*!Qq{5@4Z`^ ztkgEp^g&W=iKp6*Wr9z~v}us$#mDL&-oD$d>eM>c7TBj+jq2wD={dUduse8DTScqi z4c&?QnfrRtG<-ujdd)zBis$E~A zXLT#9kC_Bs)bpDsplvKdpHUbXj?7Z;7H{hXDMU#Nm|x~iOECjszbj2S+=eLom|ifR z2P}d%hm6wZAkJb&ogtf_;6+zPh$avPE&$0-WjURU$Px9aCw}#!?gGEd31B<%@^I;a zOAmaaJ>VrGd9CA8$9!XQcv!^FjRkS-Thcl~=|-Dv zLs)sH0A?QO#a6n#?kM|PN6A#;Ds}`vKN~(epKcz-MflIB;cd-Ty=6-${qVs<4>Ziv z_;G``rOSF4*eC*M1~_M^)o2+e5KYR8$qDko#Y18Z0=3ynRe&_D43SJkLN6K*xaTqr zZE4A})wZxR((?tK!8D6POn<(Ghk1~5P(-Ox)mIPhc59!y-d)k#_*buJU_cF!`vv!a zeFnRZ^!B#~Cjwmg%QU~8Ee(%RakEuBk*-DrE*;%a8YHq2Wu?eg z6K%dwm54GCoJ~O$V3g~&*0(@0377)J3t!2$9Fgvip^1E)h0!Bk=&oti>8q>T-PiZ- zbh=V$Wvf=>>ZDs$-+@2c9#gsd+OpDZNH)7YN+4AU?Qt1Mz>HN*kS=So^Ke0fqnZpp z7M}<8BqRTn;NO82;Is*^1TV0Plt6kfv2}CUoj!x#D}!YZ-~1&UDPmH3U+sNOGQDtJ zI0g#|sneN>e8Qo|CZ>=#Rh|v`Xhm&@axw91dxZ;M;thGTl#}NSo;|1({%oggIFe12 zgI6)qC-_DG^3zH8@MN)jLtAod!#mY6{DicdIIO3>?MD%L1xwPx#6M*XQcLi`C>Vn# z2(T`LaAcB?xR53&DSMuT^l^);d_``L!}_U^*EY-;QdmSIC$XhkOF5de#016r;&XP) zq&#h@w<~NatZw-}*90()4zcnPidMGjK@dZcSBSAD>ao#a;XVXT=a?t!XWRi#&?TzP zRf*|RnoTop0 zbcUzSK%FOhF8+g%d4{q$TT*Gp$3;X<_AQTLVZ+kymO6?wwzTs1O84nM|0lcM*Iv{&bg#!MU#}{bFz8f{EE`)TyZul`8A{qKcN!$y2!%s3%F_G zVE%Fec3NO~@|vvMtqFUa@B?~ZrYlV$w-f{4#{r#LX2gUgL)cjSm}iW?%zykmz}ufp z1T%H$R1@gAT&iEmc}xzbcG`JFOwt9buk` z5Y2;6Ry29|5zfPh1@v;c=uQ z7S#9jVcVUnSGv8UgYJhv`eFA!{oTLaedhC@?_Pf8v)!J)RrTguZ|P0;?e6CDFX;ZU z+Z9C1h--!lpUizR>&VxO~Buo4BIaLzhHkW@m$ zd?@q*DAZiD1yIzzqKU_Kt=|3W<6GUE>NDJwuebHG*_sAyc!`Ydo#j=x1K$Feq!f&R z6efyUf17z=teQR1q&$Nk$67J$$xhRYM>?6jq+K!b%cSaT!03Qyo9c_9l>WKAGR{cw zZh?{1H;mOkQW|bvP6*vScOfg%Gnd+An|N65yRGf8cUH6woqS+#Ngy)AbHv=>kT3m0 zu$43A^@O+bc$zf6+1IM*J#CRqS)gOEkcnR=ulKYn;-@#SX%)1rmhRa8E$ro(gFPa3 zc_=#%F3?3l6AC#hHrPa>7X?WI4?6&)L;p=s#x$jEgn|a&CtFdWXBKBj5|#|vR%J~K zk>$gP0h@Rza~oO;%k%+GB=*FdOEp&#=m|PeiX3+ktONEUBCmILSCL{AJf#$A7jQ!0 zbp+u|M1c*<@Ojz^i9?~ql!V!=QbB2BMHaRXJ!%?EZ);q!N)e)v7*+}rQBc>~P`1*a zQHZ$SpG|2$jim*!srv#rL)X)zkj=RyJ5}#d-rfyu>gjcSQaEc3KcOG8e$soR^12BW znj{%z;YcaTo#$y7BWy#^B#kC-HOcHal?{N(wA^DH`7u7_jNwzfV^~_1GRF8}zBxsQ z2<1XM$Mj63^EwuOnqjM)fw`C+vr^6~dzKNdK7CP5?n9`r;#l`=t{W%%%z`KNB+-2b z-Jl(Fj><{&S5E1GTrh;E<`E-X_kMLod>xRdBc4b9^l<7ouDDo~zmYr{v;ER@nmoMb zRg|k+8{Iqq;%n+3Lmz!K85m5hlQT^W>A4|@;;6oiwpM@l+u!xVgryg*d4h}Q_{Vw) zb9rsO+rEBNlhWJWl2!x0IRFwGWkyiJr z}k2EjbRO)GYtO2@HwFJe_ID~yjd3A{kxl)jjZ^F5qI?JFTubwnG{zsEh0Exh}* zyu7`!)opEG?bh@;8CDsuG?T7wU+TB5U)}8<-qQ+T%SIw%)%F;_P>=86F`q-h-ztR5 z0fiHGzb9$+EVHZc__8(f`ql03r~byjrd7O}aMpKlV-gpkYOj31x5`mU_2)@!pl%eQ z1D_NXAYgW$a-rQ(#<~Ymv7p4-WU-{`dISiaK!lM(l@XJhnECttrNbX~G3`HAedEw1+Ri_x?yyYhDjr zv4}Jvu@MJNrF=rgbS$gjSzf8oqf0yl@lYg+=yWTE`sg*s^P?(}4nE-6+St@Ec;eO# zP9V1M@e`cVTn}9e8i4+p+y&rCULF+mPw)c@>HHZw=U{<>E9?Wp20eg3yUdi(&R1OAd}(TI%3 z7|2=N*c(ANdkjgyothFf%XDD~GFibGV)Fr!oG?6W>)gxW1F3zkBaackAA5 zZMSyVedSwU*LJ)ri@poIwY%H>i7)b?gee?0~q2G=!no0xFSh zIZ(90@Z%iu(Z)?vC@m}`!qcZl5>N-S62MQWfXGflD(XUskXYop4rvpG)oN2WutWrY zm@7OPorz4Mk563NYBA|a%!f9;RDCzEXcK}bKm+c;H|Ns;+h>~FRS$IPJPjlAK{iV^ z0G^S7KJ`V~*ZMO!dQ|F4{vOk(f+l^^!<7;+IaAUAZ(y9a1Ni&Sq*eq?S~k$Iva_X? zpqhkIU(eruRlkrI-H-G_JblDNz5K{$K}hp*JlAOYrsUaLcK60jZ;Q-*_Ws>F`X=uE zc#frfX-Ybv$-8|t`AS=@(^*g&aK=WpasiC;ZPxv&<|N45li5VbXDryZmC5FKsjcVc z`pS98gy!mGmSarfNrnkF*0JYl=_{Ecq;{-Jin(qyW)^i^+3le>r1k3P+^aCNI&f?Z`oMwTf2 zt@@+Psw+>_7UiB`6s33M5So`lm-P~WW<@1pQT@TvPPrE&keG1>2LqHssnX~ypcS>D zHLXrwU*GIj^+_4FK_<|D^9zgW*twrezb?Ne4zpzEvk-Of>mjR*B_H1|X@ZySkJ+Yq zT`PP4_<#IYyB)27UDLOXmzdl|2LCoh3LR61;dLv~HVTHxAcX`M4;uN9$iB4_$+v}2 z2~Ll+57mYi2$_ELZ@tAe{acN3P*!gz-I_vyv734$q#VKBuPJdL%dzE8gkgb*Cy+!a zo}q66p+BfodBY+nx{S$UdqquMCCo;bHk4}pJe8S>{#)F5ZNatNL{MlFa_exyv) zcK!=(o$Fm&?fQ?%6Qr76{vBu~Z`W|w^YS&%8F z^OOmH^f(I&pizF-2M9_hPKeVC`Ar}(&}E^6t# zdY!2^2^`97D29k|LF@De-z1B`0py9@SGjAVS6@M`Eps*S*cPGkCG7x^REbm!s5)|p zH>(ajpN1GE=)=&LQRGQqM3jEbEe(9#-Fw)r>ASZF8UQ=cgZ+`N@sBk)wyu@3r)7)U z?|k>$-T(7D|Frw|cm7b5s1JQ_*wmZukF`~qSN|5X6h*2ri-8vI8+R064+0oUAW79#tb!V2d>#L_-M8>~Z& zUyuVR!rJZvME<5$pkCFaCo56EfB3L_SHJ6ek!M9X>Md4KB9lo`@l}KHwbs?tK@zrw zj!8^Qhpx~U3qmRFz=9$>KKj}&2H35tiJ=8{sJ;yL(bkt0@9EmREFKn__`AO&p5!AQ z*i!P#>M!kT5O7O_rmP$fx}b~}1z-GOJFetqyVV8lx}p`&Y%zHt8?cR|{l?%Df+S9- zq40cXd9!H4hzF=%aCnS~% zNleCL?OCphuZhs_GD*h}9A%DUZ)aZr0-hX57-Ev6@+WCU0I1l6K5^`NRlO6(xsx&l zvrgqn03O(onWR5MHKZ3Ho0O1hCXp8aUQlme$J7LMk&Gh)D!3+wMig*jhscyAY(tRA zjE6k4IoH)J*pQ3Ln8Q8-r@erYd=cp_4}5K&c2=4hs51k);BEQOWSEPbw7LM#(&86` zO&7#ilJs+xoqzP_BFBccJLX^o)85~CKG*6cE5=$iT>0_ zI?^XZuyaNI(PeG(%xYYAz{4`0v3UWV7XdoyT-0w>FYO(#>%{=^FC1ySOMet1wn|n) z`ec+kho%2YRui+H9G0W`UhbUmVq@0 z5tUXdrXqqgvou)P>`*+Zpabo&27tylu!5}DN;6gtCoD}YyxbNq9y6BM6S}Q(pp)wi zk@8luE+s>87@6=>48fRTzWvS(l;S) zH31+UoiJiuOm#8OdnET$Ut&e%ShNXCarORHUSNl5Tq9xpvG z&jW0kvZ4;@y0*|^duJNw!^aN>1SisjI;vi;eF~!HO}P}Vj4FM zeNw$M^tC;>@y(#06fl-D(}{L5g38A+L!kseU>sGZQ;74zLzx&>s z+NMo|7l%jt8c{ww90fo^S4${-A~rm;$@|L z$cDym>wB=IcVgmuNS~tk{4yXT29Punt^pW!y!gUTe4%^g&;N;^_n_d0 z1`C&07BwiO@3(3alWpM`RN{X4-LHM4d;Os%ll`WYB-@{k!riH?iPMH*EJiyapxLj4 zt@RE0sg)5Fb+c>8G4^+Xhn6ZbtIlth46vu_lnK~e?v|T_+_eXA`3a;A#(U9 zba~4>7z+$Sil1@IgM|3QM)@8d|KStaC;y}#>fu0gx0ZLiH`cXHq7VWpE(#Pg+!K~@ z49_AUWpF-62)Q1>wID&Iu!<^F*$!;KV37wYD_sylEL@V%FIj*o1OKTFjy5Db;})0c zF|Ov7$h1umgY!CIQ>If6andKuHfKgym%HTChn1%$Bu6gA2b>EoppNiT50jxNsw;Za zk>-Oj<;8U}WgwkE+arzm3R5c6&^WXOFaSriT!n7NPUs4bXa?Wlnq(_^%wln++~S=Xfwhb&F5atnr*3@toiZG0ZSrOoSa3!6%}`ls+0hdnz z$tS0XkF_HQFPIamH|n_}Sh>#m{xV@YZ7FfsyYtFR+S2$1Pt?(Wqkpohe#repz2KK=nZLaM~f|)}8KD+bw$| zpXQ!N-y{`R9fnOG(vM))^q|ZsW#P6^qraqE?+9X;Sd?k?M&FUr)fQzd?UR zeRz6~^mGn1as6nYZ|0U~7bfZ1ep&Utpe?LVm$lM6>q-vtmd(Pc0r-u-CH48Y^~|xU z_IE6O3z~dg)b2p|mv+ZQ|H6j8p{zE_%cA6Y9-urdv{>*bOY~Bqwyi$aCp)3R&wvJ*1njmf>1$*L^744;flCiu zdf?In7xBPg0(gpnOEDLF-vktMvxv)f+{7ZSqX_eI9+z*p46b5BM$I}AR6|(iLQdvB z+3{4_=ancsF7xo0@bJJqpR&4lQ`^yO@huW{lxdjH-*`d&=Xl$2O`Xb>7oUr7g!pNI zK1HHCjapYZC&-2 zl`GREvbkza;(ICYCl#Wfje=H6UcqN=Yp9y!EZs#Q)OjCjt|oe1n|j}BTVWqUy4vd| zUUSww%uN_$9^jFv*#r?+Ap+gib0^)j2vRgEO9Mxl#vm(xN6hA8Tu}Exj}p=SB>Acq`fm48AOT zVr)tGij58J7IC7jXRqJr{_?N<8{Oahul~#KwkD6cH?T4SMGQFbd4U|L;Crx45b@1c z!!S~z4$8n)4emN7fZIH@tl;JMBq8o-!NFk0p6+X_n&e*73r|;euXJy}^P}$mJ#FQu zk(sZ5{mb1KH3|H${Mmn1Te*owzF5&@rY8;L!y~O2_`&b|e)l?qQ+A*t`E*_zn`&Z( ztuF%15>jP|X@;gy+hs-Qlz&5#13l>C39fsDvWm_{Af7W7h@{#MndSgpIK z!8LvvN)xK(0B##}U|i1@DqSbwl2LJ3PkRg?D{EPOyQ;nt1H-u`bk70@R?iQ#S62Sg z#)&Jn>bK`cf{k+fCKqMqSnOAVVemuRoCYJ=ruu;fF}Ig?yHBlbs6FC2f_Px6p`7Q= z56=_YX>DinZTP>JgYvLf2{&r!5fpZr*MKOC2jdGzy!;V-Oyq}c@XiK{oCO;)gDZd; zc;OGfNn6s*5HMwF^vyS;sxMNKAz;0<@to^aL~}s=)`YiU;J7+>vXqL4`n3DP<|2 z>pjbAY)?6r3JpD`SW*CEY){vw=2J;p6)37g7!inBPD~#|^IT|klD34gm?8jhD`_m# z=+Pl~dLTS`&INy?EGxt3;;i(BvKM$>YHYw1eXFWXLwgbal$o?+83jMQN+fYISE3#u zIf#n$1hCp=`iSgUPo6a3N@z*ibc?qo6TB@=ribyY#5hf|Y#9%^rgGWuiCCTzD=Rly z0mm*KOl)fm;7(j-Mg4hqFXMCET27a(cLC)12g_|py= zuV8j8u9Q)LVH=T2;m|Wo>n)-`%f#)*&bGhD$|UBYCT<_Rb4Q7?+l%h2$q^dW?I;j? zLH^!+?s~VS@8YiLWyd2;>@9IVay{1swNLiBwe-^+rK4q2s z7@X)D%a7cLa&9fl&W+~r+wXNp4ycIfd)2J!ChqrD!gOM;Vi5Ld@$NVu;+FNz zVO}g{W$v2BuF%bnJf}<+>fX7i1-r3=S<+O8C;Vh16RrD?AB#rys)elrA;FVpaHRiRvsa;c|atCFwMJhj&ujoA9KkN=3KJNClAmUJy;>X(c=Roa;XMiJp z7VTKNnFw}Yj1|*r6NhRaOaSw;fq%$TyAhFf+J{P$#Rl%rOa!Bw6~8N6>)mrd^}5f! zU-(b{8U#K!iqmW__2!T+bYTQ3U~qZfjEk9YXoDQTT8%~ahrpWOzE{ebF-4zm^;c*) zUyVbjWU#9s!eWv)u5Hn_s&!*kRopm%Nly|uCo^ycI544F{1K(@{o($T-+mCSCt3B4 zXuXu$@k{;?60-7G`eK2Ka-l8d1CM;Mp<*%*arO?Oo(Qe53G^lC(gT+sxb(oK2hR7v zxf8%CBCol=q-Q3P^&(yYmx;y$*%xR)XC}|1cPHvh2|s?w^L&ye=0SvZ#rtH>XExvQ-wGYfAw^s@8FM-t1GSobjn!3-TfurJUVkn0~8Z{3uIOh>A@wvviOj=@Mm0ns> z(@0?qFk(PISCnw4$xfu3f#_{lptT(f#Xx@mIRv z_&dMhx5XKlWa5{B8U}N?4|(ENJPhb;=w9MMCFJV2q+d?z66d{(czs=iCrz*%4a&8F zdmCFi=XcxSBlM+I`30kmK*w))XUDR!@AjQr-JOLy-IbkP^Zn!h_aAh>{ky*@nk(I_ zpL)6b#V`I+_wzsZMNJCIH=5+${h{9IC-e$5aT!@!0eV2;?>5-~1<>L|?%=^7HFENe z=suJ1mKn|gamYINIOah%_kZj!BIBGAVbSNvbkK;B6Vh@D0ZL1fD%jQ}@avic{?5UJ z?k&Agc5P*$+oJur`i}kWTW{&cY?=b#SObfYUMAO)6|LI2zP8gn(%{-1$$O}8(y@Ib zbgpiZCkOG72H1hlxg$|)%j ztClrbtSzuN7PSqaRxm?WJf#$UDn~xJjmv)l(lLZsr+QjC=deKo`x;Q(*WluT2F7nJ zZ*|XW@^_7u=d#r-I#6e>H3M3W_@`Je6}|>QFF(YpVKZ0`{k>s8YRHa6;NeKcVZ9+{ ztt%^w-wh1QBH13XADiakMcYem86zE~4pjm2_001BWNklYQ@!ix(6D8Lb2ZpZ1VKpO$~j zHzlukU9`8t(}2fPT)?3yQ6~cke$I1H#uvN*2848kWEOd%DrhtozxcOwA{(PF3EE2Kt5cL)rS* zFCS{<=KlBI?oRGK?3Q#9y&oz}S4wk5%HaTQ;XPF9g(-~MAwj4o&b@u5Der4^@a zCA>_1sIR-B7wy;Ax5TGO)W;9IN80Y!t4wV$vfJ87U7@GPo|g}QPf4F zH(rhUsC|KC!aahksbo$y(YdNV$IjYzcf54e?RDCLrM!3-76wn{Ei#IvLCy^%357vV zlQr67QCfk!s_*D-U%jSrDUDg_4_i<5?d8M!+Lrq6BW+Ku$=;M+451%*q#cR41FmUu zmr38{ZGDUP`gXVRqPFb5d8J#`m1DChZONh_;QPt<-XBeJkjai)ov_2Mbv`scOt zo+hSgLswpZp?l#^d`??PtG()_(*?%sO8KHEW)}O(lafveCTBwCP!lCDoJ&>@BLY`M z=|2~i6q{K(X};}5r=zMF_KB;hm2LW*r_YyH7L4lc$y`D*-wS-Ql#2{YO_YrC;Xk~J zHpQOc1(DjJoe1u*B5;as1e=gGFhx?v`3a4epi2*2df?Inmmc_lJuou?OoyB8{}@E# z4axrATPLns|p&IA9{>E=5z?QqoCV)E(w zi&{TLhYa8;3%OHaig$|c>0v_+*_BOsLu^3DHfLGd@+4ovh{x%3b%=pB)Y^oM>5x`{ zWiUxx=AEVPWkjmai?(K3t+O)5kn`Jma8&WFfH83F;4$930rYW9-^x~c$Ucu4D*Yxp z`5|s71=v7RgHCu4iuwpSpWLI%(-&%@Ac34DX@E_#$e4xT-M&pt;R~yrjlXk(FbA~H z;0VTZ2`rT7{85+z4BNpJ^(@PXO4$q0q%HP~GCaG&=V2^eyWP-{1A*{=Y+zdRQf!>Bc(h5%a+16}D12o=3Sp$&hz=xmv+~>6o^ov>`tZ$-e1@VF2 zj%V;~SKro+Z|Q1KPm{&yXJBPV6I;uQPc*=UtYuBYzM)BEwqy2N;n<69HHcRCr6UGe zWCQ&%UP$8p78Ad+i9Y;@jQte(9fepa1L|-QoA&?q2=Yo8iAuFt}#;?8T?y>_XvO zr5hAY6hVzM^^ec}53~g3LqY-?+#J-1A{qPGGL;n}NlZ?k$G}MV&148`Y=AC@og!Ui zL;>hh7$6UKSM)91pIp4!eQWQ2_uk>7ZclA*V>$X8YidIq-bOpEjX_q{028>Y(C%Jb zzS><|-u497{l!PV>|!sIz^qQ^{*{6D$jaSA{g4u7W3XrhquxE1r8I%`n%d$OO#r{8 z{ty$Rd+OIPflRPu@l*{;Bn-S)W2qdg>K|<_uW9A;O1H+~ov2a*^r$B!Z^At2ElPS) zO!~6gmsP*FHJ}-GO3vv@cVlI<`_%HLU28!Wt}&?5xD6}f>9N#Wt3t-@soFGG;e>#TX21Kg0fen;>=Tdl34d)zP;b~NQH z=&^)!QROy4P*qwb65_Zb#N`(s;SOIxSY^^)O1Yt^aQlsGT?i`GRdm2$_tv;b7Cse= zM!e*>H29iqrZ^a0^CX4=9@}Mbp9#$kZI5#4Dn{^%nqjI`O#&h~GDN3N6*u17`rkQuc%wPgT2MLH@9^ilE{J<4joKv-$_} zD%D4mh+02GcUJDm=mf(#LJfpfx|%5T&KIBu>|x86KuS^vf*S$82BLUCQ1k|@p`N+E z^*E)R>Gc*NHR@?As3zcwKR`puuwSiK?ZFtC<<+zF$J|DSwkLPSBXI+rH8UqMd*03= zY?Txy^rvOjmShK^ei`En+-G+5;vK6$m-S87=%eX=u0G|7`g{j^k!%=3+KfzybU#15 ztF4T+OHHoEJkkA?$=Q8PCi}jYw$2o;mwURWzUDoBxAmd=8~SeWiSEbj3d4lop;lgV zpIgxc@cNooobve;^=X*M+|Xq3o<6yCAR79tZ9DAC&{*!I4(TX}(k@^PY4T5i64l2o zk^4)5!tOvNfs{C@{?P9AZbJ(IXk~{?ysLw;zo$Bq|0YA>v+?!3YbaAi0g+wTmfEY@ z;&^#m-}}|XXLq0p)FZuIsuu_O#`4LbCSKW&`W6%EvW-qo@dM8T*u;u#e9O0Rm$leo zRl5eQUES`sUVEh>8Nj7DhX*3s5fjYg@A-mt_V(Nvl;S2n8da&@)b-X z;l)L2%l18eADy2--4|4<4Ml1TQabLgL#ZQ@lI^tyV4QEcTs8=*(wYdel8x3aLKyVF zs7i@zB(H=bplFdVb@_~PTEa+PNR48fRTzcRW>4BLEV7~3K ztN}%C>TL7zL4Zs50l=Fwe2!Jg)Qbv*P2np76Xy&-ZguB*!r3;e*bPJ3vF! zGtNDENiSjm-z7O<@LsW3)@WqTZ=_lsTm9VXHnio;qE>s+S>jv4f!71T8?SY@zxkc+ zSZ{*L1*OAT`cmSjgX@mx*)F8t_0%CnrwrmuKef;giSb-JMSu^-1#0;+opF+fUlQ7j zFr){MM5i~y0XeFL44KPh6I@x3DsXRjmp&Kfg z%AH4i9zJAZ&DoU2UPr~FVmPA|Q^tOzu(Qi|0n>_rCzEr&hZtB`)P0olvZeLcJKY*O>INSy(U)K694g^ zeOX&XU+;EzcfHjz_m{1$tKHr|`MG^r`@~9sv{Bd7QTi>HR-SVflx5Z1E&i-_r~3& zjqb&jYg+Ld-E+0TZfj9}loj#nC4$o>^_B=g#xpa$8mX`GGWMc zeM9FfwCO_zEjI$yi=4vNcq0i)Of>3r_MQ{22#Bf~U@X9_mf>vBH)O#VLeiE};9xMV zyeDMCR)jTCX&Y6BQ1j^vm7^h5V0tNis?k*>b6w~|Ne`nQ{RF9$ie=eutTGWP%cc+Q z?@L`*;%YGBwa6+BV;&xyDb0X=qQGY_!P*O}NoF;aQ%0T3lP>g*fCu!vq+y zFXaPkdYR)?>KMcOd~ao+>amllhLHZ@x^^C0(IN`^Z(a?n``T=XiLMn*_HJq7mxp^;f&)9c}Nd$?}+dOaHC6ea~0iqw{>Nm7$XZc&+W$<_#Je&}!*5DqdG?`vQhP#i!x`VbO( zTZ)zxN7nk3C@|`|N82M+9Ja;1TX434{{Pu~vmeWn{J!sG=FPn_D{JlQy?bUj6v?5v zit>OkMTxQi*@7V0fB+k?1%tL=_`xrJG5q2O{{e;#!-oAgSO&boh6LLnWf7uCS|mrL z$RRm1?4IuGu08iX)8EhU7r%%&%e{HCs;6hWQI$6$etX1;b55N2#WFi@H`mQ9F{^=D z4a{ob`@IH6#6-neG|Z!!tsyBUV9oX(;>Z9}xL6;bPK1Fe~rY^h1vM%Iy?YYzVO zqh|5;Ml;&H(JZVl+hF;cb#yf#s;yBNSSQ$4jdX+Pc*&rcQ5zl6>8$Bcm1faFc(zyW z9$=8|I|3XubxM0OSyxC#44Vu(x}~rNdBio$BnZKWP{7lrvb;aQx(2`%(n@!^e%2MN zX%KZ6;_xD=kN4rLC`lh*Bvh#ZGCrtn>odhTeTGbNwgKi!^p#1mwCCWAHpN7?jh^YxZj!J%(9k#6aRCk;A1KfF_WAoDZO*y~M}+7^^0kl5z0< z`-|^3|HbK_$T5dAREubtoz9?^1}k{Z^YPD$UCv`=i^7$a)#g9=)xW2@y=)#mdupp| zLm&>?wYBx;-~PA$o#tnM`e&OxZQ=If`GMZ2=gn{b(|_C?NG=0ZoV&_a(eJ{xN30U}m*n6p@eME~TQf6{E*drNng z44>Eg?m~kz$6B3y#I}99{(Jj-&8^$FY+#ATfIgm`Cpt&$xt=Yr-F;2IGxh(p>iEg? zht1yhi{|M0i{?jnHB*0S%ZnM;L~$fZkhU`DhrtTla*TAU9B_4-yodZGuxw2i_(a%= zLRtq*wg@+*Wyg^7Yr7zDUDit5qw{0icKKYRKi+CY zDsqNz2$vBO%0=8#5JZZ2fV8jUK0m%62x}V zl!&s>md_dJ7Y^HXY_jOIs#uQiyV~;kwj9h_6C*nQ8CP{(M4LiXW3fZ@0@~G-0esDv zv({wD82!gTjOT#w9P-HbRT3C$oFU#~pgB+|v)Rk8DzJe09)?mirr=>ES0GNuZx=>A zd7w;Ywq@%y0LL1t{3PB%T%l^EyygXxky&+%!ZW5HGqw zmtX;EaR3a3MhiA1x^#yGFv*W>MtZ{AYOM))kz@Ga2{NHu@QOZ2>&h$A61E1YEYX&N zH`GMFCJ$JYxa7yD%2nt}hDTRC>T|q^jOj@j;BC>gGFePc^wGnm%?wf3L00SU3oC5B z6vRnL@I~CCEu=%JD`Au5Udeo&EA7H^)hJ8a)EiJgWE5Eza^-WHyn@p^w2N!yQ^Pfw zF=g>Cs6`B@0CGxv(btOilQX~EZ}(p6OF?rocF3MS!<7);i7cXER~Nq9$cKh5GY-=A z8*&@zGcjaVL-_KTNo;CZQ z=&asrjOE~99Ida*`Kz%J^*I;SCz(6e?VV4=sr6=wpGQHQ-dhxF!jEy z?8os<;e~>pRiCO9ts12~QP}=7Cx34iqAKNlnccFbj&0{QU}j_Vh@7YWTWXHJ{`ze> zPBj5?bdy!NY?;h?xaZBui}Pkl&UC)97PM7!*@{~h=p_cN_1U*~nxiMrn@df^tiz(} zkn6FiaVDIdHl7r!C1RvD&}i%Av)%3H;?Q~N)1l||MAQ6^_pF}zrdzi0DSbciZK8Ty zd2pv$lCyeV$C)j&?eiOVnw5K6MXr^=3tHf?pw+f)scaJqxjvy61FH%I)q3&hTAgXq zC~fXkTTj!DF7#n^uJ01g13uL^#i_m*&a?uUbAg#)YLkok)>OTl9`)mFwLVT?*=k!n ztNs?XP4%L-t6p4VHL%9rv;vrVH776*W0ljsyQJHKZ1WWDEfqkKrOa?_ha%x%s>(*T z6(9qzKYXV>(jGusrN_qsT}P}2&+kg~SN57d5V`wG7%p$?O*BmMLkW!+{gj1QHKupM$L)N%{#Z7yKlW^ z12cP%o-{j8blzX;=z}Lj?77eO_p@$6e54R|_I50u+btSyYQ`NqqqrkEf6X1wZ7U`;=Y&O_k*5QFB=t+fT#$Y)hHHES*P{BFR zRllJDU6HPNTEc5YZAN8LAz@2?W{7ic=iz~7-)d0cRl{KEdS*LSrtRYGLUe&{nephy zu)`#|tV8Im)5NuNSC##G)J0miT@}pdml|h#)X}mA6c*Rl>_gi>oP7Yo-q(Dn^AS$W z3Q~QbGn1Wf#d-j!lryA`FP{w{$S4LwA`Ehg#%xDd5Kf3~z=)51{=q0`XtqlU@XQJ) zKx2=Q1a}}%$MVZP7n5@+u&4D7P#=at3HwvMxMRFMFoeB-?PRn0-$&22I`_0W(tz8R z&iKWdYg;*MFe7f#mDSbeXMXx;EPtde^*(+6MCo=o7C$S1*<$%jTe?Mk?0oPicFvoM zZ2_C0@!;i|V@0Ll`*PSa7y>`xRI5nWHE4pvZDC1U2(RkQ)wLz9To~!upj}%uc=Crj z%Xd$8Mj3IlEou;OUV}3)Uc4|F)G5y3Wvx0n(h3e}{2zlMN~w}}IO}&^XU}QU)c($n zc7N5@(R&BYPcMJLFRX0GWQodw_9b?6;sFN7^)M3BsfdG!@NP>j}pj}ldaiwiqVj|p_E18c<94|>r-8(W#zpr7i26-FWGRLnnICfn+jP3iKYjlAl znn@Iy89Eo_ve1!If`iJTQtt2;*2wx0x3RuLLo^wd6GgYTys$#K9!&v|ivGSs+qfuD zZ4a=Z%DPguptaT)ltE8Dw)MeL2U)icEWjT)dk<>Zd0{# z{Yo!l22w3v@Lg2{JUtLPket3dY(w#sI*`ix@q1dQcZcSA-$H2`n{vou0rl zh=O;pqyY@!mJgtdYUc)EiDx2R4_N>uHE8-&z_`p)5%+4M|6H0VXN8sZO-bo zU;9P_ojOuB$zHV9e-{JJHdZ#DXbf&&V;BC8Ocy9cF4wIL5V_@BH??Z_mTmXT1Cjpa z!NVub;ipecmvapKhVcnyePlT@&ov2fWrOo+b@s2E)Q!$0W~Z5Rz6HdCZg!>F-F?yQ zYIQJTI4T9lH;!1!<`Wck+=(22OE_57hdp}yOshzBT#0NPej?YU8nD+uZKKKAL}?tJ zO7lMQBTmqfLQ2FH$I*xbcSZf?MXhwU?TA&j3mTNlektcCTXN5-pUqjlOt8h7X#z!K zaujpDk#(WI_56XH#3C`rxwd#7NiL2~&fv8(naw`+PNe62d%rn-{HfIgwaG5K(a*tA zzNlkp))(cF*0>Z-->skhk>=(v{8%$5NBX&JJ3o+fRt{M33mdD=@|_K>URF7@puwEj zcGxpLdj+dfZ)a9HRt&EY+8E!BT#vJ3&h^EiEBo~QbD@4Jj$h(Swaar&0YqnZX zPjb8+*tepW!epnyM4^;LC)v_JFgfvqX~Mg-0KQBd_PCwMv|x4$2Rhl25Q+dgUqU9L zfQkYBAaTa>8?p@&3JZE-D#^6!vFjs1OCH>zm^()3Smis%WCX$HVi(Y$GqTywtOjN^ zFsp%C4Sb*1K+ge8XP~?C)81(l3mPwnYrdc+%KRZhrfQ4Yi}*9Ifl6>(F?1|zp!nwf zdzv}Oz^`U#%5ku(l}*;25>K#M-ys=Q^M{>7u)vLrL-sg)hEGkHIa-OjYxqJREZh2E zA+WOYjk))l<@@?@(uxzpq6X17?%pv+!0Mf?X6p-YH+v5sH`^b4WcXM9smns8)%jNz zJ}jWCqMPq=*~Ju9ebH;8z}K)=LAn~c`NSwWJxm24S$)E_w6z#TXdj;Xpx~pTduCD= zX^EVZJpUZ@4{gs)dr4|3#V}brjIfdvy5ZE2ZnhI!*NkjFs#!HyJAlWk8W!J%PQ`2& z+W0J0vgO+$q$01zC-?v;I9lTtESD|c_(hy01o0AuSf1}^F_ zjTY!@IxC;;f2(^>?;E>cWQu+0D`R)0V!J1albJ-w@mO#{B#$e9Z;^o7 z|3r-fCrI*Kl1LQ3y8fW~jqPX6<7EwaES>9}$XRA=Imp&)S{p2O-jla(-D>{5zx%5; zIp|{hpn3AN?*KkLIIw{-V3{yE-@S zP}h3*xh4VP0GIrmS^>hgc-)D;`*}<5Mza0DD37Q%BsnyQb132(uV!d+p*ghRANYBO-|o69JwkNa&0?L#W;ZB zK`bRh?y>$>(#qdk;-j8`*I~|X3h`hZxD*pbCY8V-+#5lbl!;Fe$@cA=lNi$jT$Kdc z4*&ol07*naRBSY56X#M5n37gPr2}uV=MpeSroa2+^bRGB*nmYGJSFcbe(SE7K@)%| z*GZC#99l%y0FCAS$7-emMABDECwal0kU>*ln0Wqx%Xm^W6a&PQASq85wR>$LHgf%> zl<^x3*@+?QjMxa`*8v7CKS2#-kibYo$9Re&kyOx^L>uq9po+Lyz;zj?t5COP2K^u& zWI|NQNYJHz+If zylSE?y`38)djioolr5mp#K05v#m}{Ma7;w+YJi{fT-iz)2O{bHyW;c%{V2xUd$kq1-j!k>FiQZbjF)FjV z(QMwmZR;=}NJK9pWO8QfonQK~X6vWkX*Ry{ zo~=segTPkW9_SlSe;2wgwi;P_*y?#fPHI;D&f`o?-&WKII?Mq2HI`TDCEq3rGXXAr zL(-SWv5%vdNeJfr)i;JsCN{YAsSQvk<}8+Aws^i!eatUX*Ir)gmesO2%j2BiC7l0q zP_NzHlJi$9fc0HV%z3|7m$|2ck<>t{6tg|qt#YP{N<4u?hUl$+;Z4ab!w`;6ELTO& z(WXMK2e9p2=r+xU7T&HsnE`3R9;k>bxu(lx6m@=w8ODC7Cuc=q`yTf?6xMX9zfF6b z_bu~bp3|yc#1qf9cDCxA{mg1$Rs*vd_@SzSo&&fpJ+D*iNa;mECv`Z)+iV!yg|4oy z**3fkY+7fsOYp;(=Pj;kBqBsiI)>Otf0iMx8iVe1?2k3*yK<^C0M&8hOu-XAB)SR{ zAemdRwZR2Cn5s#8@&`Et>=1UcN2D^zoBs`N7?0Ufbr-DQ1-m z1L*cKp*q=m_l;&*A4O09_#4(i4&ilq0(PzVvnb4f!p}ymN>>-KC$vUlM2}#=vI3fh z8V%hKf-E7a4=a|JR^_zOY}3(Fv#Tw@5A-444SXw<;1=W$wm|6GJ6W=@9R=0+s%hy+ zm$wf$@byS0ED&Y)V~0n%E~~* z*q|-1n=`FSU=V@X>zbvm8-6T#t$!TRFD~9`{>PnfX`9~5W?QRff9YTO%eHm$lc$fH zBMs^THqgV$1Ju&O zoXoq&;)ER$|cDkr=pkCS05v__2)3@}VrHQ+d4gina=7 zy6{6~sEd_ERGi{TxglJeFj0mfEo6}s;P(3=y$1{^IT(tZBr=BAg0~wdG6##76|k?f zy|emTM;cr^)GGaDH38PFEXnD6d$iu%u$8aAYGdB&Qv-ieNq_1|y_o?4CNu(`%L&>{TB zpTiTNLZ?~@5u8DC59|E$3gaPERC<)EUA(`B0q02NtI#iuMTHUmw3iqp}Ch6%^vpzf z=*BU7sAH-^O;KDuwNiQO$5{J0QMhob9&6{eGaVaptSyPp_SKU`@1UW8c{lOwb^_9T zcdWjq#Q>W4zN%eI8l6ka+nv5f-io@YY^8c?(u6JGXWB&uC-4O;YxU>qe-E*y0wIE?mk5rc&{a_l=l6J$np>4Re@sC!w9yAyFzEWXD ztMMP*Q}dYmT$4-Bv>JO;6E-AF}tSOkkr#0+&=Pyj-xf9raA0tT^l zas!a^e4L$2hsPOdD|ERt<9VMkqEBtV0!6acS*HU(i)S@3tASY!%xd6=qXs5AfO*Mp zXwY+ATfgwK;2gZ8qXX;QvJJ>VIwy77s=9OMZgXSpMjq7M)r?2$piV2``<|}b5l98f z9feZB0FB`&ggNCL!I!~TC8U7P@{wjd&VBm0*?s!7Io{c`4xDx91_t4KIuf7VJ`exwBeV5b3xQ8Gt8r;l zXZLAUik-nhhnF*4=zLdoa(yfMc748(DJ`Bv#x=VNKcP^QSYfjdmljbglO-FpLM_WF zbYop-;^0KnUpRm(lFaLg)cD#_Mbk#4T!r@}&&D=xK%;-vq-q<$cPg}&x3{NrJ8#{S zG7a|VqjPifR`Wuu6$$ZiGbGUn?5B_ILke{_<)5-$Xvt5q!S66H%_N<5d5h%ly_A)q zTaeGtcw2#`k7+w^iLJMA6g_>R?Y`vbZRwTLq_+j0P-TBHQD+TUy6igV>fskcDAX?qr>qY|8NddCJYHv7c|1}%SG4`! z5)N+_mO&WaT_d)AlgtGMVHia+-pnk2xXv%z-EH87D{*B|Tw8~RLeKHbfE$6|_#@BCUsl`J!${-_{+r5R5ZAXR2lT2Y31Djk zoWdIm>-y7xpB&wA+e(w9*X$I%?gHVo!srqjTAjvL^>cS|rMV#|I1;T+L0Ba)5|;wC@1fM6fh98pt4>lnXcNnD1e-#Ns+1rFnA(O*G_Y*82`*S<|0_Ey zzFKw-w)a6>n{vrwWW!j6R(=Ri9d<%UaTKxz>5v(XU^O^@yNSi%37=`Qen$k{HJ~OS zmA-@w3^X}ymg&c?o8lZ`YKK0gjsH&M#_0_E$Kfa0LKUUkaT1wuq2&s)gbwPiP5F|H z6%(9=z-92;$3;^u)ZX2NqDQVCidk2tM z9qJkXRo_C-VUCC4!E<_gq>0=9d`&C{j~5aA8J^7G?y~oq@*S;-VjO%Nb!O}73O$A5 zB~mItyk;}^m8Nt{?KM%}664C4G{By8v{kipVUIx*YNY-%=d>4J2;eWf@4dbb+JrRTaQ5YAS^P$bG|Ol#?xJm zOY)7RI=~rellNhBndBl_T>k+ntOlsE6we{ z^ktnhtT9#`xq{mmllAG*B<*s-Vh$^A8}tFTpaiz+I@uq10(kWktqo8gIDqvXX{&d` z!HZqt05%7%#=)%a#HZ)5y<*i4&~J`kXqBGl+fmjzZ9<}dv)J{-;1r@FR@_BadDXACAZ+JZNInI~s%(I-ila5d z8sBQcp2%4kPL^5# zFTxu*+2k~XXH|ot^Kx9QtteK<27Xpq?(00um?>HF|DdG%HQR>_m32C*Ax^p$*9&ws z=rkYf?&!=vo#UcG_09J+IIPa>zRqen&>x}LR8rGux{|sgsFKr&o{FZfk6X8HYqsZx ztw1+8on%R&<9epvn5}40+g&)I)2cIgw8C!n_LjE(S+dUisXj2y)sfDXY#r5F!&D}9 zh*GKR!nX!O2JjsTpL@2pbx3)Q?^I8X8e%nAi>Q^!EL43runGzXDJae@@~(83YB)b6 zFDSVjlkh<|P3+a-zwIKlb6r_Dk9eM9%Zi?(%?r_|0c>bpqH|4_SO|Ji@8(H?Dqr!%*hkg@yi zkDFir$N$I#g`*l-+@tKC@xcdwZjRSQt!iA7bL-Y^t;E$moP!juXv?+YTUXWe99hupia- zcjqd14pf%N{h3Iq0eG*f&mt-)rSb6?y1e_hD*- zCdaBm%x9x0~(r6FFcts7G~xBv$Y!ewn1^XXkF8 z?Kg+#tjh5~4+a%%tL(!{fk}cYx;8`z0Wg!k&$%upa`FuHmu}wnT$JMii%&v*P=Jp zwncy@%9x0(Z0Sfr3#`^e24w_LPl8AqL&%I49g-5f)8@MEC`uP1BOg+)6NhGxhb0X| zix#sZ1R2;l;%RLY-bCcZ;#ukSQL~t1E7fm25fSCpb(IChmUhay+c3|W%_Jj{RFu1U zNN0yw>_b#0Hb}`RaQ)-5I%M205`(#}i81t*0asEd+F*$o=Oims?fh8A!_%T`SkQ8axlXDVEyLSrhB%w*f4U*NtIZ^p^u5a*en|DWHr)GQVSYO zNdCAQ{w(yoW%ZL{NX7(Pos0~tS0{2S zLUv+IBou+l@L264*#os(NF9@l;8v0g6$M+k?C2SK(m@pLvv^hmvl^Jyz^n#lHSmfx z;7e$dkn$38059?dbqai|LS9Wqeu{+e_B|! z`YE+l0mmd0?O2wp@MFZ*;A>T0#W>cciiWzLMAx~Lkaj?oFi(a!r;A)76L6?~fIX4J z#I}tU4QYz)9dDPEBn(Ea{<$dXDvNYY6R@_hj;(DZQd^KVwddLtg?w*sM-H320%-LV z0||Ugnn4vuO4f2KY!X&uhc2CS^!bV{o@&dfu{Cc{#U~HAA^bT08csUob>WlpSMk*L zOp-Geca;J$_DH5wT9cWK8Zg$ND-g&)7=J_ZGG5O}IWsS{EgZybH$6}iFWZnD$B1W$ zYaGzXD^AaMe|^xXf`-i%=z2*P@RKXIb-wC(^J{w#nWci)`2-}=^{sZS**--Wi))p=RJ|A+si z*}8eZIo7t*XBv#r2u$uYOv zp0Ewd$cCqn9&7vI1)C_tmTsJRe137FZJ|$f^f0S`8Sv3rWEYF&T0|XNL!=z&0jQ8* zK>{dYa-2vi3{-@`@MMp)WBfNH)v#Ad59vtq63QZfff&Ny^E}1U+ov)q%51iWXp4(5 z&w8FgFP`5^aO!iwV{}G4{BjF6YwGsyF*;XBduC-aE0nc)inV#{vMrva zMZ=KBkE8lb1EfaFAfdpw7qrugC}O*4BTR#6CS5c(xCXI_q2zU-J`)O=pakHb)A5TW zlV)&FdLHtZ4Yh=96Ly+@x5)-Mu)`1MmlofRJ$+ifBK}kU?5+F zVVUy)2uQ(&zRx4Zj$%R5=*Br>kl-rIdJ>JHFLs!&mOe}ol4?q&hlx8xS7(cK3A9Xs zT+Ka95fZqSa%kD>x&qxo88GgBxD%Er7>MgUWD1EjI5K%lzLOUEly{m!8Mjra%xtYf zIdlM&$?HUs<$7?uu!@rYkjGt$Bwr<>M*My(HrBGc=|QUN+dt7kl4dLOBSrwQfyHq|aH=CE%G54&1G zWkPz?g3|@G;JbW*5oICv;@A0#4M*bIgZsAa^N8JkWbf&Y7H7!0dA_ez<-2<-f+irV zj~VSW#`IhaQ@@IeY%wMTLii<(7cSr!Wn55*C2?sziB=Zl1de)W8)l@Aa&S5jJZJOzE z!4ajgmA6(1hoYYV#YofGMwc9w7PianC`aA%m(jw8f1v};~%IVAd{l@)UT1de}2x&Hve8=d&r4epoJoZ942wUxX6{>#B1j#h{p7+Kr`^Z|o8@DoMs>S}3;8JJhhn~V1pCIrm@7W^5 z* z!~L5o-}()yCgOTT=b&3bz^4fzr%TIq;rg+C6ob@9nhD9@@(s;~)JFiFW6ppazDyx? zS}VHRugW98$R4u6v4tiivO01@E1p)ha-HrVZIx~ovlgwQ1NPhX0txJ(cE}f+m~zg)&A4x&7KCS{G%o6A}k>8+f`#f z*Up@oGGt>|B!WrkAR8B7#XEox&|obM0xRXZN#L*B1P&Gg?f6hT6M*N8@$yj_8lk#M z0W_+Tn#Dn;GvE;?ltpgG0AnTsH(7shcd2Nr1lLhxgG0zF85LB6Oh89}`H*sK27Pi(Np&s_EE z;4|*IEDSX0p9XVmc0ZM1dc3xH?=cX=Hqh)|!K&VKoxRG|vd^>%_|4ZIm@{#%(RS0q zA!9)W((ADqX{)}!yZ#Oh!2@wBPlDvgNWi7R4-f&9s*25s0t;CcjHBqwm;_h8q%!h5 zlCWZ8IKfONO-(CKMJNy->~T00DQ~>WOODASp8`X7x969de{u4nxivazb{BNUbfc}l zFLmy>+K+42YFS-~137&U2|*ZNFtWKp1>dRK&ypqwvhA}6wJCAyL|=8AVvA~4_NvdN0n+1( zQ@bZPznIm-&`>Uh^jHD>Kr761-P-#dOQH_2#`7LW+DP<65G*>+7-=NHgbH@2ve%-c zC13S5zO=}lE+DTLR4#+dt~pzQ6SW$#bGUicb?XTNP;039Yy0~$YKYt7?a4lnyODZMzrx=hkCr6VN6(+u%>Dn zeejK=t7QgF4J*0=+p=vC*rFJ(I<+&`=D&y=(B2UkG=;~Q#xPGKucu%DKwp7lxjalR zc)8aH1a&}zlDO{`25~h!(Lo#K?DO;?&|eiQ(XHw&aO4hYZI&`2^8f%K07*naRO^Gn zAZ@T<9l(G=lPN+sW?VEUI)|54sUtntI8tr(!96*GHPLQc$DgSW==y?ZNOHg;?if^o z$JuTqR8U20QX(()>^h{5p%Q8(Jis-nfHQ>8Y!@J{V~q+u3Sbck%ucy)1RTAki8o_G!r_Wz#_ZqD%)o~JMkGAD(Tosu9 zP<_;jXvI&ToMPcjq@I?v$YK4xckH^1t~u4hJj8t6XT3<-Ep`Mr(3}tBqV< zs5i*jy`dA@C@ZmDJ7{>f;%F76zBTM!jX}A7l;J;R)q7PGCIx~^=+)WddBHb-8BmZb=Whkw@D(7@;6p0+)#wiJ9R)4xBMc$G)pUTN_Faq0?8WUb}b zX_&hCA_xb*I^*g~TYJ;qDe){~0%FVfo+J*>P@M`Dh zav&VZX}G8X_$AFyT~fWcb&??2Bc1cIcw?nG(LgC%7;&b}k!HreTzL6XUt8a#OLT2v zp94c`6s3kr3hnJ2mxh_F^E#>s=lz`RM!<*m!2#E%Oa1Eh^8s0}n7O{hp$pQtvrEOf z)e(HAf8@r*=^oD5j*3n;lTDrI8kiWzfLmgxp=mK(m3igDT&3VUjDJP@GkaCB+!s8{ zc)s)8J2}x#2lj>EFH7bJ#dA~+!+AXe8T{G*K#*J+71*S(he?1Q zyp|G39KPD7KSF@}_k6(wEpe;Nf7|__d2(>lte+h= zkG8+w{KLa%&5l;z!ozHN99hVtu6cJbaqgT!7QKH6HaGxr4sH|gr&H0^;qcrCbC0$1 z`uN0G!JW&2M&O!8jLb-*+_rZU3~;#RunQ_{3wqbXv#QBm$Ffa(2*~!Pd9H2q-n@HX zgJ|w>TNKQk#2TdfSC{S^zv(e;`Z0ki4g@fiGUAaqN=ovevp~x0Bmr`Si0`G4?MVgk zGNi&+b?*Z|I1^>PF*&E7V@sO0A*BApMlDBMdwp@O`Stya=B?$^=J}bfy9l;MtIdj> zyqpOPpN8u!#`()?THLHL;KoW|xyv-Tr#{Jv^G82B>e4OnoR@*LNzkCKR^RBEaG<|A z>0>MCS26lmWXu zR_94ywo*h!7kpTn7`yygSEhAgnJy(dXq~C9GZOV~VVg(>qtA~{`1n+%6w3NaWqHZg zaZ%xJQ@{@{Vz9N$nlIDTKp46q@Lj=~E)W@z62aJoPtN=OGMOf@FQ*~6+i_h_j`6#z zU4v~NazlK5s(=hxJOm5+&n|9jY3GJYF-~(XZ%&M(oDS|i3}`EXmTcQtVLO6@ZX8A6 zoh_&`G$nGrlAdAteie60)5jo$JkL$|?dX9o%kQwobKUWU3V7%%&>=z5b~}P23v&n> zVh_3$ccsm%Ke!@i7?WFY059lREuOLF{M7`P^CNe_bxRo6y4W5@IHbTk21GU!L=8Ej z0%wb@fO?pm?;U6onEDt?a{6j)Ci)zI>(gfah8B+;?lxzqa=xbbR2Bw*C9AGuY(8n8HH!}xo8>p|sVJJr_N{N~ zxYRO+W$F{ZH%ayFwa8)p-M5-W?TW)OcZ7L%dlLaQZFJ(vZ*9rNow#yA|E0P*bfAph zV;sFVe*R0%=2w5LS$TcS7E)Mo)Nf;FGFE_lA091Uw=Tf*G>+1b1S7cqn{>8%Hc$dc zu=OzwC>$c_W9b*TjZ;t%*~pg5V3?*yN1Zw}X^59Y*b0n;7!l%OWw5rR@$W@sXhNu+ zKMY<{f{w(>t(*4kvH6zj9{@-S4Ik+U*10gGLn@q4#B(;gL98snNJf1D^(~o5=K&ah z`ihYg+Mud9EUPpmTFg*gSx&!}P+sz~eU&YlX_|!bAy9Rv@>!h^+2G23e%l4&Ygs)xfLb97ob{bm> zwWm_oG=u3!cEb&A*|W8E+iX{}QpZbN5NbfwJJ>$ifI^;WMySttp zK)T+v9Z!}NqH``KxQ0Aem_M1D&0ozGTLm*~MUT6)YPHD)_`?N5(|j&k%W~ z+A9f?G1o2cm@>Sym?;^%&%iNeOa#wsg&te~jz-IR-yYjG!QN(~viQ(rc1f-C}XRzL)PLC=@Jz431IksNg2I@xWW$O*isv&(Sq+JrVSGogs*5R;FX zOvODK##mZ1BMv=2(o^8^E+XcS=Lgq~5V%O!vg&j^9P7&zWn%>gTRq>2Rqn z;aKg7BY5xGb8W?U)B0vO`q?t>D~mUqpIFukAo)GRL_w! z4O(r@t(xO^X-*RiWxw3O&7uCH9**S{KGFTNuQsletdqWE6%`W}C&RNn%3Cut8>3VK z#0*g?YwZ!K_8*x32(XxZ%lVI!Re@gtPgz2@zi2 zoXZS-h*gE*hj3j)rinx<3flb|W>sSog|%)^&K)?IZB>*eyBt1yp~*&%bpEfNtvsx` zcqx#opJ@T_#)YF|>=G#-bQb3}GeB6;W^6ELz(8Uw%~*s932ek6xtnhh2T?b!E4hn% z>AXMHUq-&(Eg@armP6Fjz+81PprnFZkOZu8^;0KP)&v1e@esYChIlGil@z(>ywvJj zY5Uwo?QXDqOU^(|s#NDt{p%I=%U7HE{gY<@?5UidX#!vfQni&@6A-v{8i=!sD6#;< zp)OB|9%gdN3!S@u#N>YkCekl0t?8Mo_qiRb#1`ZAwQcJRvm$nE)~c-Y@~l78q{egg zb4Kb%EUd3IORwK34JD zUr_&Sagn~g5cbWaZ>Q@0P4ZMbw_I*%F~Wm8&63XaU64(4TIK7tpb53qpB&%GTWKZ4 zt~vF|vnX{8*-F`%peGSdX64OMsxq3L2)6#FYjB>r2Z2-4$7D^8l*G4%$&p<8>~nJT zaz?N+t~cJj!c$%*1`@DwS&JYnh-Ot28%%Rj?+D2-e#K@!Kl~9Cn**0vf2I$&x`Ogn zTq6sC#Ly`=KBnYSpDLqZ){_v*`0bYrb%c-z-nNTu;Qmx?(*^y@#7Uu<>S?#hWx1U# zqs)fDdI`AhIOkdI%U^p^u+z?dXEiXZfgk!B;5qX-Rzf_v&>3k{ADJHFb2M(I%4;Cn zM5kfcC5r1brmo89(ij53bX2+>K%5?&v$=Y~mWK>YNxN+wr~xW{oOJ0~g>-mcR_shr z_XCNV`aYSOuvAm$x@QCf{2S}qSWw#{)A>8p!1dn#o~=-V2#rc9( z>WucZmD4SKi0dQn#%uSQ<*m(T|Ka0i`_DfLQM33OH4ya-i?tT}DFOl?*ELbKUVu1C zaOSV-qnc;Zv79DsW$qzK2tf(jQDbeVLsE=Tsz;w7&f_c5IcpjxFl~+JAJ02JLP^us zXk)(X!6Z#BwN}mz9g@U$<^=9fCeG~azAzlHzHLCK444u()-)_xSyhHAiHJ_NBejdo z0ux;q-(i2%Y>4lwy{6m{(`UOvuo$nPFaoagP#DkK$1nkcRj8v8AD8-U*1*XHv!0U$ zyc^i{fwtw7fKHob&B|Y7BEzP(&zB>Zi3|(J7tNz@|G6yE8vr%KrX_Rxc4US?P2}&F zI+N#w({!?#(aNeE&kSqYrdNY;ii0QKDV|TYt&Gv@flnOo2@|aRn_8{;=4ie7`#ayT zcYi8W1ADgA4CO@7)MN7kQsR0;LBAhI~LK zASDjoBVFTlUE;zeJ4A*Z0J-K2T-kQea=Of^eGqVN?(3+JMYRVUiLcMEG{17=P1_NW zLizL8DkV1oMEW3E(q~HbV`N^3O8UE*7)8b%zXtFhM^=Dt@=Ag(!)KHC;<&76G*&3e z!*EoTJ=vGdv`X-TQc>ddNd;Oxt3iC)4wKc+HQ4#aXs!8Etz=)HKW*0LmYPMK!FIxZ zDkmwEDH-yjJsoHel5L<_O^XxQ`X)9BK@$Z8W4*9^$JS4?F*wn1?Pwd&M(`Ac@PK)= zf&a2*A`3?voj8m&Y$})rYE>S-5^M-haYBY4-43z|sPRX25-ozvcAt`0sQH$SE zCI$}qa}lc-v?-l_u#?3s}$OC+9_GSAqGBN5To zO1luw(1{@#n1_239q&Kd1ivsV2BxXp&0MCJDuilnQ)C^Z;NIa1iI5 z*4&biAVX)Q6DmjJ;F;h%kw{9X)@_7isK-_4Si7T@ySy<{TinAc1RX}Sc)wRNt#Y<9 zT?@w{Clt0qRmm)viDV0MYSABC!}-g%g&OMd(Vs@DLZE0C|2kiRG??CN2vcs3N*razbPEjTVGV$+1PT)n31=CJ8jQz07$ni0&fm2-; zb(Shs6WXIyMeJ=8o&4>8_(`*vo}H2Fix|YKZ}1guy?w54=LI=_NBXv5 zmoR@@NhfVb+c7V`eNRWp=(q~CpE-`Lkj^>nPO)&Yp+8US=2Jn`AG^@PiHnhXG?Ys9 zBzZS(s$4fU4#7%qE3bY@5G>XYb)Nb*v<-O4TGD!yMje2ZfnPS#;nel8t$VDZoY88H zzK(TB1*1b}X|+AUFYG$IZYBuw&z!%&_06Eq0+~U-O}s8r044&SJxSv;$OAIus^ z&!iMhQO3eBJ^g8Sbr#pTi2y3vBC8- zsopd^JWXg_QG20sPAVS;*1?sAb9ENg)v_6?oD00FnUBZnOx7>oBRL>xIBpp98Zc7l zKIhdzXr;*;%;RY+{ehsN653V%QpKWfH#g-#k^`8qs?IN~T@N&a7-tmQPg1|kDy{=F zDG#5%XqL29&at*RKGt?X1iLnhYtsT|1g)PTOwCz{hl)!}@GhFu$;{l4*&dUDR66_@ z>a4Sp87KCNwp!w&&ozCggEYqD2A9lsg^3&EpT!7(b(w0)u;Mib0a6Sfa-@Id!941}p zo|@D~+6q!mdV;=(2a)W+2A*|@B96as+VBvz)#GD@^`tjz>+81C9T~9URDSfSCL2ge zRs25V5M(UFH4K_U?x32i!m&9kdDKg(;6C0})*M4dTmv>};5GOMNv9WjWl1W6uG9+U z^_Fd^F%IOp$D{)Wm}oa_OH3$~+%wv4R(~T+pqO9v4`T-T&g~p5z037nWwq!?Thbn% z#iWY16cak}$J=hDI8zr}N~$N_P!sTCpbc@~F@!(~t=_l?m1da1Ex=Kg-YSW~abC-e zHDIHmkl{iyuUR12AD?Q62xV|?p^@`{ah&gKOTUqf@MAJ??;3~Xn4r|q#Zm>Qr~oNx z&R-c9c&;Ub20RBS&A0&lh4d{@8C5VFl5G@>=gPST_>K>>Z7}ak>B51?P8qk<7XHr7 zFR4CL36d<|^}ubi_p;z&iNz^H-JqR1_i-9hI7=0a2C}d&v6LbOBHP{rWX$K4=vhz! zXg{Si#iCp;m6pM32C!{F-_kz#$l&xL+dpe!!EYXZqOG5`5?c=5b-hP)rM05u)XwHT zS0x_G`O8+y@!Vg~U>)0npX!fuc5wjvju(*7=4E8MZkSt{T#Qr-I}g>bf#5{(I;)fv zYWgS(*KdV#r1nhYcNp|Rh2vL8bE_Pz{+-h<1hhAt!fTB?Fiz#%=Dca_Wf1a9%Qq#! z+Zs~1pKz9&9hMdvguyJ~h8vJ8pmqh$?D96|1t{&!gaJe>G98fPl)XA~voc*Lo8d)6 zfMiP~6~}!5s0FWRyu1}&rY^1IJj5s)44)-Gv)0t78sKq(NiJ>LWpRMwD zq-5xxRzVzZ5}hc?XQ0^)PB=2gD^3G>K5Ay`N8WE1*VlB+z+rRrbkrQ^`-2r*7EFmT zON6%-M@;i8W@jBk3^H195PCj8yL+5L*F$8$)fAbumuT@u^;sSCNM8=nQZPY8=$=4Q zqiXUPvaexwAtvfhZ6j!+%xxjHN>A7Hee4z2e~7_hp?*BY5audl6HnNzY$St|c4rgx z^uFMG9S0}x4}!f%H1@)`Z#?r2G2sXK$d2-a9#}$mH%%TSdTe#2y=VNHZ9M*RHzLaq z2nC)W1ISC-YywoungfrAkN#6m67bd7y%M;qDna?|60GxbA>u%$0l%^9zS_*_Rq;NxvYun7dqnOd`HKJh>O0t$xCG! zE9f&uSUZs8Z{s~}gRCulsY4vV?DTW`bX)!`StTOskc9#4j5ZXooj(7fv%dmsU5m!dAPnsSH?P z-^c2BFlk7}$_cD?q}A7|c%i-hEb0iQMfH32Qc=15UgG`2xxI{cG2u=xK@obyecwm}-tm78X+Ena;1_^h0dACDZN?MRt>+Lwc2-Gv{p5sS)0JCVGx^@1E;= zDs9eeI%@i}zLV^jSKrU>DHY5dztOjd7+aG_vn*+l5435rM;2Wht)(7z9r_vE~pk2`u=GB~kcV;8upV=t7;EwB&{J+i0aJDKi^s zUm|mQ__SJF9{3=Nc%t{54CF9uzOlU)1Htashphrc#+-!MczTWws}> zKbDi!R%R+qeHl}+eQyw5v;9zSR4_0 zNZX&YxF>)7O>IM5Rv3rvv-tWo z5SOdf;u0`$v|V4_#%xvw4y0%3f{s%kg2v%H@Jy}*ZH$%lINM0ubItB2AH0lb8TXop z=?%LjXEu{K2*};t-5&fH&-S>2@;eq0Bv%nkZ)->#j5}&N+190nzlYBseAm0IeL;iP z3HYkz9OCblA}b${87h2cYbCPAEG#FCj<$HAi7==7vk)KSNy@q4O#ESGa15ZFXhkAh z(k-ejv#OPy9}e}bg_c1I8z@Qq(?)$e3unt>5e97wZkh5C4^az`IKgZvNC@5=J`kYt z3k7XBBkUb$N?cPd$I=N9?;h$f0v7yFJKvJiLn|fK-_cr$=3MlPs+SE7Mjgs=0sD$p z7aVHUH1}(~kC1Uw&xlJ6<`P)_NQif`Wja4Luqla9+OLGy@`Bv@SCLU%EcUX4;u&&! zuGORT*Hk%cY(ppq@Tn%~@$6Jf&`Q*Gt;Sq!{`JjwCBxS>Sb^-`qbw3+{Wv7nS|aDA zF-|8oD(aByaSp7_hM?ZFnmUY7rvpYj4qnrIH`7*TvlB}hfYboKt^p2F1|NAxQ5`sj z*R{&)xdvZ%bsbjJr@75!3=P6jn`d&QY8{i(=gp0Ic5(5(@}aIJr|P1IZ4PZUuyJTB zLdAK-uawkP9%;AAF9$H*O#HDWIQee zs#BEaG#&X8lJO~@&Nm%HIfYZI~`y(bvU9jjIeQJCi(YOUYm`(P2%|P$0TKAyPo#=FC-WHJxy@ zFAK_ZMdR155!niFN&OHzZ9x|GgBcxsNJ)PtCuudfV?>l_ z+!nG>xziY23RN;dNkYojwU}x!=?VHl5rG_taR7-xcE13hYW(ChO`zYnd0X3wX-tfN zQo;57timMQ>h=)&7WKScWNT_|p)7M6y_B0(R@Z73>(RGAwZ0(@>EuYxYJ1-X=X7!C zM0BL#B!BeuxdE4cTKT5!4ktfD4TNEO6{h5W=!=uA~rVonZR7q2_X6=R^O2UUZNRV*D= z-#QoA?wuea)}P4^nB_v7VlyW4WPn8syiO-NHFT9)DAfmb3YGDYPBe-EQC&zN*f*Oe z_3JhpJP4G@b(QH{A|ydpe=`+&ux?keq2e*ST!K4$i=9?x%kqQWvd!qp({}xyo||ps ztooRRSq=OE)j)a-r0A6j=1-t&iuermUsLl`WqR~O zfLeyVj*RFUMu^_1ug5ZE%C%wFFRj0!cujR})`(QnpQJ`MtQt}VjXQGFKqoK4nh*lZ z)8S$EmP?&qfKD%d4S+I8#rYDvpxNq9!>L9GEwec3z~fi}Z=Jr}DGAFy-?%Q`%V_S_ z>qHsXA|5XZ=lOxoM7?a*HK3xwd~KnFBPu#Y)V0sLRl}gZaa^&QR)g3h4G`07+|X9X z`wt(DSCTO=Z*=C&i7YfF*oI02kQ!*`93&ZQ69Z^uZ@u}h&Sz1lUX-v?zUR+%wvK&V z2?B7a?Nqvk&`Gh?)vlb(gq>Y6J=V99>gKgCzTa$U;A*t4?T5G4Y=GN7=rlWYBzyQc ziFyuMvv{}$s!QS5t4CHSN~#d;?(a5RIPJpq&N>>hb7 zOKI?IH~v&Bz||~s7~iHUqC%Zhk$6+*t1r^l75GSDMfzv@K(%?~blLF47EWwY zO{i~1TK&tj-Zp*HQrcD3nVn&IsV(2DiEG+i&iYKqrSD?{lxVB$ah?21FXJWpX9E=U znaonfsj`AE@^JO*QSWc<0J8SR+s)U$_IrNb94juQlYc83{5xcFmx_F#Rirq7Eo0h5 z5tT!gFgk+*OGAcD?GQFnB!)$zc5yb@xnpAJ^3)JSM<{75En%8;p&m}vGKMK$4O+`5 zP1V`;qRwoPPg@|<*V3RQj`y2dak8WPZ*hTX1^TA}O8RA6i|fsXCR0+=XBu?Gd3vl> zzg#~C%;`6qE>q$)8P4B+J$sqDaL)hb-;(-zw8_Am+*A#~S2aMpDra?;Vud1CI2dGP zZUYY9n+w{ul;t!E+eTaGX>^z#CpHD-?Y;+Aht|WTLW&``8i9?!<}+R|Ht9N81B9Lm%9S)S^p0c^hG;BYSS?KC^pG#72V{OE?GR4BkP_J+-3N ze-mTvp|T>{TkzC^BON%{>bf_)Y!SXD3AUo8jjeNqCZ+n!J(3y__g*b?oCqc}Gx2&^ zt1+pMBkj6%w$E12K51)jR}Qlj;(brqau844C+MhAMgw3hBBVG$mltPQOm5}A4ZO8! z)0_B(2wbEruj>LWmq%S1^=tH$R>rp7g$G2%Y3(6BfUF-Ubl%EYbdd9mAQ-Oze0Re_ z3HW8)gO=#B4VZtNCTFVzc7!FKu8^;mOl{fh!2mtL(O^kk_tEOIb{A7$I@r0N!1cdSwde>1WyYt$0KL< z(hE3!__P_lt|3UAylU?Y>YL)ool{>!vlg|ImOr%`HFmb9zT7!beAJvi-)YWX?74XA zjP@kw@Y$)atUi0TV|{J2or<6>NY?147BxuR*;6ebp!UUQt8Ryp|f&a9KXrIJ3FVhRLLwgtAQVi8b}Wyi_*g;MN<^tDdTZ_C4T~A*?NFta(V6x*2)x`S4ov?GQo(B0?cSrPj8q}PEX#}+*aDgO_4Kp{iIi- z#$|#jC)x$8z(J{kYc`xdP98sT$KdAXmf;rFd1T-!oQ$k8<>ebMUFhcF|qNljCyyL6Fn#X}4&g6n7aFnat{9!tEI zDX?uf*N7F|%*tg@j(@6Tqu>L7R}SB04a{NE(x$edegExd`&-|(>&W0Fp>J-~!Z6mD z^ixw!rVI{mthA+NolV0BicdbcY&dt7EwZqN0izQQAnt5Gx3hmUw<)BPYNgEJIzd^w zcGdVuM?0h)pFi8x7Uyz?D82ITgJyo6nWWOA50N-qG5BWj_!?-nqgH09jg{-vA+@ut zZ*ScZleV^1JGp)9PV@BnlYTqxUg)l%j;WCMNxBfI)V{LpF1{nQmu=JExpQ9=F#Op` zn>&_sd0Xwe$nObg0qT}c%l~}B1U*(SxpK^$I_I-}Ye>1y)7jqUZSe$Zf_W|aD>K&- z6w3QT+n98f+CXPY>Za2=feP6J=z{~TP|%k8Orqh8V4O8HG<(J|u*Tq|9EB?zH|(9j zEb_yBALv-ofaU4okp?-m(m^r19>iH;r6?s;*MdQZQAXB6wKBDoDy_0{ujuwy8T8L? z7TpP{r(**T2KP$f9ziTQiw*3!kXi;Sn&$6sf77=9V%t*&uUPquu5}%&u%k08d6(kU z`{KLrHqVs*_|u2YoCd9!h-3~u`Z{Ul?=hOTtB9?v z(TfutzC8_~-R7Ffz6IIGyYb6E@srK=gSVUi@3());N=~rg%Y~17uxQ7Uhi}btu_DW z?uX6a*my^D=r8&%I{Gi;{PkWK*pYgCB7ud=!!JUnl?}Q zbqi=nh&X7714ez4ju;#v@DV%Ie}`Z-KGH*UtYn;*!}LUxD$dnc_WeK-B@u?`hvZMK z+-m;d_>op=vl3V5;x6CTme6bF=%wm#{z6V)O>0)vY1diJ^W2-_W)_05Q7#iJNYZ3* zWpfBR0Hin77u->wZ&mGgS@O_Fv!a(5D{wjccRB6y3U!xT`MDRZKgyNkr7A6p;yPW^Oq(8~ zqR&1hVc3I!@hrkr$S8{`9U}k-ggJQhUbec)7TOibxp9f2P7`l6*_D-fyu&Wpol9HO zn+-{nwa08=xu3?#t}RHdK&0ND>IPiyfh4IIHBPj|NV+`_oTO&4_vIMQnr;k9>l$=v z>M{kclr2F-)Ys#j<`lIRkecwRGO#lQE{EO?DJ z=QpmEzXS@mr`l56xh`$FVtiMy>X_Xg)Uj#K9=*_WMQuUP7M?Sl|7!OG_c0BMKc(%N zroIa4^J7hvQ@b&#!qa|eFScS>@|ny^d7@0j^XHm$_E`M^y)zshElbZV$wMacF0?(j z)u$dn{xlOk5C?i)NS>Wbt$q_bzp-FKoxN^a6>rSmfM|Rk~_`x^A>1;Ay8U&&_^k zH887zSq=1SfJagvIsxJgQ}bL~{sh%OAgET|wKDwzw%!)4OrQ2uAlZz5q9wLvLdxhZ zd#y%fZ2U-9R@c(f&*VOW_@bxNqC${xWd(4BHH8Dp7*J$8+_jZ8>x3L~rmw>Dv@*>U zB}0Mdjs}^5fHRNah0>sNnw5z0UI35H9{Wi`Ce*?NRAT<@quR8P9(L3?(g6>;adFKz zj%F%&>L3LzTS&3cB7&~~PEAC#=skM2tyN7rXIHaR$=`hIL9?RsfS+q?W44R7!GI9Z zil?)>OBL;ex*2S&f}_(Mzp6o2Sg|^ivx%&ciSh98pn0fOpSj_OT`03kM{=tx7!(#~ zvKF+RVZe#=t=F^?8NFw0Eu>HNiw{1rS;sg44o;8r4COZWEH_jGe$5l6mGR5gZ7U(8 zL)vWbzRJ-GKlA9L^*--VrL6VDVls3M3{%7*Y_;9<#!! zM_gk(U^KYH3R(?|%WTmSB|E&3mAN}#>D}Uv0G!Gwt+EQLL7Hx8m`Q6 zfm~mT!)}SSw#K&8z?P^BX!K+D=?8hNHfFK|f7~~wLo`n9bz}6R^&lGA$63GU^A~ns z&}ukV5J&c@wt_yE6KP-e-?><9&bGC?3OXfZp6>w?`fm;b!7cBW*)s@THkg^TS)_g- zqzvv7j7GonOb(PhYlFx&!78urUC)98?tzI8<%M@S+L`zrL zYKNLTYNk!m&EfRbOd`GRShep?61$@5`a$nfy@vZ5+IkFMgA7n4g#K|g9jskFF2>s$ z>7dKDi1W#g>II&!i;y*+!D~S9V~ol}(VT;_rRR>iD6n)}sZ)k9F)GPr zDwoh}06LyZPH&N2_uzEMtNkJ?v_%{eyZKr#IQq=%Z@=CwrE_-AY_g=Bk$O$3%h)Wl z4fCdUkg?}%)7<*Xk2cT$`PbD)V_cyGcF9y)BS^H_4NnMl2*Wu*zrf#`h4MB4(WRu9n^Qgvu9(Uts!oj*y;nl){kJJ2P<~f zzde-WR&eUdSB2{yws)`I#dcpPPWGxJExYx-qHU>9Ph)km-}8K{K*)27^P}fANe&P{ z^r3iv(?)q`NSW?4`U<%e9n zNCGSGB>Z}c+pI^H$*DoNBS3{Xu6AG~$V3vON9AQwkO{Ap7)`}v_>krLOo!3c`JgGh zR>TYXRn)cX0A|iy+IJOl&YrzaYX*xU-u?E35TU8Ac)4QE&o2a#^Vng2|IFz?6btkF zm4sPxRs*vdnAN~b)PNo_@sydKTTd{a!HMxoe#pDRr{(SPeUIfSSCoI6^vjqZ@{PC3 zwCXgJw}3CB?P{LNgi`oa3t9bGdz`{#sJqdURjF>tso*3_52uYVS^9AgY#Wy~(PfAL z0}kM|<<(|IAK!F_*5qIz+?KP2z-nH?sb=024z-1hiIAA*FUmGXhSblg29B-ckN_Go z3RF85f2$zHELBRoS}Igq2DvtAKc6_dWL-g5;e#GquB06xYL}s%3)!Dl9M`PKlRg=} z{o%vr<~wgT3!0TVVym0G+U7=1;1_@XQM2>01~gwXL}?v(NW>tZ)d&J6G-+z`p9j~_O#-+$A#d!lhH=~;D0+d{7> ze)8;bv$nQwe_Sh^^~c(}8OIls8sfvF);Of2#z%Tux}cvFv(i0kgLccnCQjj)5kJIB zTjs;pw@Mph&Go=TYCc<7>Jg1GOI6@^;W&K%9_>@+@5?JK?@POqrAP2GGWs_6!~z&Y zR%>*U8lp43Vb&6!sF zGT>~3Q5wAD9ATV1_DmkIw>)`Gy#2JE!3Av3;*za}rShRi_pmn+mmGr|yfci7n8H?ork=lRlhiK$!kao)@EIb?}_G8+tEM$ zgWqj7^gjB9U;O3fKl%^<<7QKRBS@HQ2^` zmV2Gm4JYawo$5G-lj8&1*@AZ;MW zf+x|SGE-Qq9pXd;DkV$B38svp!Z^_cS;SCfpk?|$E!u?c!s>jT&eAF%Nd^ho;v6UX ziSCVa4MuvPj0&j&Dz=2bI>H$FEs z$>DeVQo99d<&E9D62cAwW<+fRY4Mv8X1f5&#(iwdl+%5T9(PEJko#5FxC9fVtm+*& zS(Te8f~_W2femK&i7?7U9R^*^W3T{VmleRpo1K{;1}@F~40V|W=lKK;xyq81_#7;4 z*V;i9sQ`sCNPt*186j4xoJu=fiKs*9ke~{-7Hag~R!x=|oEt(zD&e7>b68lCapK8o zkzD8*hht<;edkl1{cFyzB#(F3qW-v7>C25+L8ogRgZ)g7!4~@92l{hYQfN#p$_L6g8D_<8bn23$2MVYa~P)GBQWouE68eoMS4&Mtocx{_f>Qe6#oV2u2CSvhE zwtgVr;y4v6+x^Oh+M=~*as{A{&ox2F9Fy!^VeExBr1fjX+YInZTq;y>wJ~w;1eQ2c zkdWG|G#g&DJvsncScQ-J35JR$^am>P#5p9S-z#nAb}n;Nb|eZtYnX6-`1nb4u3bZH z)uqV&+7&6Jczh0g6RvI@qT z9B*uih{udcCLUx=&#ENKC3wd861+~=S|dFqx|S7mLvfdv{DS(2R0lTm&fz(>_xxG2 zzNmA61v}H0#*5lH>{9(Q01LXuH^2N|v-|aLnxhjv9KCYmy*I=^(rRJtl)$;S+Ai4} zL0E@2LdgSRYw6WDU(@!+Iz|E~rIGN=;8~$nuez`4^N&t7S?WOd`I#ot(3jV9276a@ zUh#q+tDL=ic(ki;<_Y5&6ao1PVTI=cn&5g?&FgWptg%DeVT6mzf7x-aEl|$s4>Jh@ zHq{C3kGg`4ANpzM>OXK`#R)Bx|t`+tJJ=OS~Vh|1s7!ZmGU7r zu!*Q2L6F|j8EH(0$e^(auLMJv=j=GGUgjbz@>pB{L7@UuPJs=R`w=eNRul{Gcc{lk zZ`5tu?HXn{IQqdzt%8X~nf`Q9^!680fAi`)v}ikgm55n#Rs*vdnAO0wYT%_GCxx-3 zrqrAmuFW^4_|KcHE=Qfl4u4yCBB#HT27WF|CKn*rK_nDsvn&yaT27|Oz)Y1Bpq$S7 zO^MPV9d->nb|6`7J7FK)fapl%;OXeha84^BR`#+2kAPjbba= z*}mC=dYM+ADGn#m7&UFBSL6;pecBv7e%{>s%9opYeS|RZ$96Yc@4wZo+`ifDfBK|3 zcszV2=@p`_-lOX3>z84v0Gl_rw2E`hRynb%CfXTQ1PPsT1}0DR@$8*-XN>x^&ZB6O zxT4o!0Zm$!?OoqaK`zw6w;86YZ)EeG!ZucHaK&}t9>F=xK)#<#ylw+DIH++r(#Fqh z_O3p_^r3aV5cURFvOBV+lo|5fPGE7@%G#z@iCUTJnq8w@IC7u9c-m~;yd@{R94cxv zm->)hTU~E%ZE0YP0djo+(vG+mY=;hyJ&!6&F=csq#T+m;m{uG89ZP!!@NrIi8R>(c zZz=Np)%Qu5zyRrr>|9WrqkZkm`7}+t>Qr@zYsYaDwV^pTEMwBu&a5dhETK?M#&@x< zIq6T)6-DS=@uHd3Ond*W<5%QBX#3@kw1p# z{t*5U9(d}B2ZmtSh9MX*Wl|KyVv$w#s$O^dyxIHr`>%+-W1l>EZ{Dg`4e5-`vm;`~ z>S9Ig*s-JAEFNMZiW7!A2vIlNokRLhes6w{0V@|h?d=^B-(5Z8vkV`6$YP}TIEez< zlm*WdPoy|}_;B^*k2wj0=ZphV$4{Ry`TGSsJb6yS_lo@gYG1QsbtOJCxM0m5C{ zm>qUa{MpsZ)qlFGlRu&;5|p76zhL@3Oo*UqecRgOoi))cs2us&kHDJY- zu!((eOzT|6u!&AA9o_T9h&={6FIP{$_z89|>^JcYrk+wKPMFAd7qFB6*5_0?%G5ou z*%55tkg{}Gtac68v#zT==FR+mO`SQ#cMQ5a^{^f*+n}FjdBtJ^B|hK?%dsC;88Ih1 zupyRGeP3R@UcCf#jLz0G7hw1dCYhtBS?Gjc1B8%v7NZ|UObcSlr*sot&7eomk_$}n zfz~C9Q-*jC)(HkZHv3)l3?T{8TQ>jzAOJ~3K~y9|6Gp}hgk{=-2a)Ir?E=1$VUUY+ zY*<0dK;fmvfK$m0A8!y48sd}6u{-gGW4T*KmX)RrZES3$lr7Zx8eUNXSZCaTp$emg z8bK=#%B~X2F0ax$d@h*KIC=6kM-8uDv$%$Z6Hb&k+3P6@_WScQ?5KK|-FRdNKXoek zSx@Y8ZsD)7ohf=9?DFQ6Db({QU_##jR7SuAEQ=9kVm1b>2fRz{a>~ZuL%%V}d9lE@ z)3$Sm)4pe?Fa1RqPh7s{=i~?Xzizru6BE{QxhD8p-T_p-3l}2Xvlqyv44kNWlbc!3 zT<6e8Iq1{DGjWG>jct0~>^f~1)_tjZ+Q_5B8rKQE1x!wGN+`ru%^TIsB%!JBNp4By zc^w!L3?K3PeM6b{_xC>5QYW`aOKJ3X07!Z^nuw;$>{V+q$EQ$JVN-gNTDtfP9N?8S zAWTd*1V*$WJo4xk>3QgAQ@h@62|~ZOgA;;A)o}*fc0RFxi|A?QP<4dHV$vS?2GEpj zpp!0uZ-`vdwr$gQ%Y8`yEcYmj%`UfiXR{Ph>X_5RR-ZgzVI}=^?=#AIm;Tt)e!Em?l4wJE0U%X(! z;ZxcgKH2bqiBaxz%ip8<4?jGJ-sc>jY}+!o3)e(;?h89D>Jb<_EHd2PqPOC^LNL*p zf6LubmF_YLY!qEBJ7vE+!yr6t|4xPU^UY)-J7CqHNv3z#yk3L-; z@!j7Y>~#P8A7`Tc=sO(o%?|1Fib4?bzGs^gWXZ?z$6{&W%d6 z#HsFgy@)+w;@w98`U?PK;yktFl#_ncbCs zIiqay$1;}#US?l2$zoXvx1_r5tJG$@_-$#wM|etkzkbcPO&wJGWxG_&RgQhNKA*DN z&zI%nOd3$D1{-(}*5nX7;h6w-aNsp~PH4NM`Iq4a@o!*%8?3dPYU0*uZ%UsKHwKEj z@#w6sVcwqi#9|}Kl$!hfnwWLKMjivw%x(bA!6|tP^t1x_Ju2I7>%t)mX7>HY7K26G z)So>j5U*Icb9U+=5HIVrU8be(-}Ins?5~My_})MHmRFwNw8IRb_^n&{=2(6vq&)o~ zlRn&Uvn!6?eQ`}dH&0JZS_A3{4-Ems?p5sLA$2E*qOf|Nidj!6-!%T`q!MCWei(%d zEk}&mGEu4^7IBN6}vTt=MfAsT{H^f`LI{>Jb~)vw5EhfO;O+ z^LHmZg)0}fXQ$Zu|NWDHyZXTo{$}+v7G-5uSnSS%7bYV!Ndh{DKr`95T0Lj?#}Rc# zLnv#XJXuz#w)%|S6`mMZmOvN&N>a7Cb4-lp66E0h6*0cE)jEa{A24D4NQ_+lY^Z+sf}(3SE)BrjMOn^vVtf#U5n^Y7E`|* z)7Xs#o3wxG*kLj%b()Z7ZD~6sxN|w0?Z|JkCOq*+y2J(X9C2cc0e2eIwCjiYyo%2* z^!8mbj=UhtKl5$B*#&RjSI5UMa>7Mp*|3YM%CExn6|GcsgUd712^-o37dH8w%59#V z?o!W!8tx}|Xy#rl=~h#5vTsEdWTZhGL`ep8Ff?z=GG( z{IhME++N5Fi*~yeqcwI5%yr{TX6{B>C+_gU?>cqV9v@KF#U#o0W1mIx_dor1+7R!x zO#agE+UC>|+p_clZO7=Jz525+R`dVzBpH#YF%*P$Xo1B`cp7!2kFJW736p^=iqGMZaE8j(~ z$yVBU+J32%2imC9Ht}mb^dy^iWo+%)=h<3)^dJ8H)yMzr4^|Jq_X&$-+<3x$!t>#r z30+T^IDf@L%X93BFO`gcte=* z1QF@?ZKEi!OB#_o42&TdzPYi*?FokKS!AIH3Md#vj8|(#Ag%!?dV#>?YyViBQmXFpjN2h>C{W{LiBjZ;{v#`-3vRR2mwic1i_nduGWs|!;0ldItl9z#@NB3Ew$Wf|(ldg7L)+ECT-(S)_XOPpE@rO*_>W&y#)A{{C z+3nEbyY%~7y$?F*YH$>3hsr_C3s&rHzG>wA%XOnZw~{mv7#y;<%p7T^FAHNJUKchQ zrvlPxLi@)yD#rcxpA!I1D&D7@oTTh4iPzbUaqaAcnG;=^P-bAjvUZ}(Nnks~-Cg|X zi`DLj@2~bgq?e~Klx)O1w3|%N#w7euAcnx zM;YA7!(kS&2=!bAxQL(v{1>1_WWnZF8X48-W*QZ^mc9n)(UG>lBn6g>C0rO)kJ)j} z%_+p3?jdzQD;}oO0V>Y|R5%lcjDRqgxdtCsi);%X!GLdz#MVrSY&e{ZU zNtXHSy52%IrO%i*gc<{L_KJlSuegVL-RSxyujDh|Ic8$P`et5SF}uSKvLPE0;zYJD z`%cE0|ITOB^#*OYO_o^8*aoVfE7K#Nw@R3iH=u3+&G>|tFQSX2UntVE{YLp6>F1O* z@ty+75Esjyp$O{hy+@B$_aDKk~?1j<7%3dPTkWIU&Q& zbd!=jO~vPQ>z(bh_lk=SyziVy%TBE}c;h!`eXh83#eTw*r(fmSB&U&A#rt)Tr??^N zBo_0^kkUWE&nj`ryh+G!k`@Fe;@0>i+F;tQlVofI^o)~)zZ0>m)t4N({Fnu5m*m%p zUYe5CF}?$8P6D5@L%@l;Jtp0sV2{6Ir{wQKg8Yk z1ryF+tu9|YwdlUwp@-n zSvyf&76_>6Ls%ht>Pyf8Yi;2(BqwP&2@E7yEmKyt)MNZYrVa;!gvMu!_W*P9aPM;U zr+oAJJNrkgN9-z&D*=r{Im!=kPHwCP^j?5E_^acxLzK8U-O1&h9CEj~Uu@TWx5;Fm zLU8>#TCojRY&4FyHnKsdIZtJ$(%*2Ubc%J}!h24t&6_cb#xk8TOzn7;o~!zGLIaJ! ze3kr=bqq6H_}Ju4c?Yc#b`540G9E-F;=&i}tGmIjsQ0#SF0k<&%}YAaSJZLa$y0ov zW8%Kzl#}9AUe8I|@`$TER1k^KES0z*c}DxXLp!^}^K|#1bDP<2cBS#TlCF3|-pJ!xerL|w-)~@Q(|o$7 z?{1q>Hgb0I*VAVF?y^VGdS7^Imkm}X#;qR?;OjOhHJAICDD=9k(zy;FAy$#NR$r@( zXDJI@B3;rXy$8DA5hN5wd@^IlY4Bc;JF5ODp`#UidF`we(nWTd@gCN90?Gc94T&|{ z3(VGJ7|UGeOk#}vXHJPIGcg}uh1(_CZK6Ph+-G!JF-u+&tPHPI8-1!grY z^oi&PQU7#VJe@jMg1mN-2`m_dB$o+i2EB9WZ9J^QwjWW!ejF0)BXi6F&-v4w1i}&% zp!ALXd=&m`7SXTRSRwW{eaRi#nce$GEFxn9mcFzP!!z0#+anjA+a}-Wnu4}VE*QDY zrxgH7BAxdwZP(WJ5q(AARQ9yJc^@EZMQdRcLV2Fqmuxg(tZAQT^~n_rlj&oaY{;Pkndi1+Y(z4Szld%wF*RSJ!e)l^r+hm&d8dzref-#s z#|S&&xXrhZclgfv2mkT+R`>t$?=jx>Fbja3u*N`h1*@!<8vUm1N|}aU_SnqHtkH`0w*4ZqYwGfUVX{kzJ8cY$&KyCT8u zc=|pw`QdNv@|?@t2=KUdzkw%P_V}HDXMsBl+*#n)V1eF5HPOA9GrE>U8@Hxk5XRo_ zHHwMg#*`ZqCeo!IBmNLhv)oArcn9gLeotD2iFEq(nMGR9s|f>DEOeJ-H~1&uMb%PP~pIYz$9K zKysom6Y9L^`3>M*2aZ_1yUTH%^)d+Mee(F|a&`YhR+aK?p0EDhU#(tzwsxe`B%s%$ zrb$=0MfDb-MPxv_AvlS-A$^(An~*lcr{XYqgP=wF1{ReS3D+{U9)(frJOd@(8~3>% zjyUdlcc{OaG~#}E|M7=;5iOn!rGs-o8TozG?qqNK@#^J^ET-@qoF2`(CbpwbzW1P$ zU%${dpRWn=j%lu?WdewS1$W82Si^h3d???+qK`lNn7DUi!E;lAnFTl`;BPYYpt}sx4L8?$|H%lSY17~qt|ulQkE%H zsnmDxCGR^2w+8i(FJlvd&!B2bGMNQDc}%*` zNdKB6pnj7Z!(e#~ZEh?HL~M;w=UeRq`jPe*r_Wbs;5+#y+-DwLm`p@FVV4PD0EbM5 zxd7#ofwC{i`zgOaW`Nw|obB%@;vVsnciP z8f*|NWWq~`L|tc2F!TX-a4$2ELfjIAJBPD)jS6_dk7;)98*2r9Y5HWZImsvs^`zl1 z;zk8$HVKV7ERx9Eq^fnRB~~4)NQdR!lHI=e7;sMf6)+-)ilQffMuX8H3x_yXk(z7MUYy;|bZZjlxI?N>SNjAIA!rHUU@rc#%2av(V z^JZo_>D?Efb+Xhj1vWs3OImsi+9YT>w0orSpYP8GZ~;Uoqb+h#M0D%;opajR2E54| z^pfSMUq~jv6rjD>zzpI7x5Q02>)eCWsX9T=Sm(Dv)&weC^|6oQyN-5o5mKeh*Ur5q zz+r+kZiU-fS1DY_>ghN6olCecMED6P-~A6(_xA47CuG3{weON|+nzFZa{iq6FZybz z&Pf`yGqxizOa1X#%;^GKPLMKLYJcy58c3D{F1bDS#YB30JLB|>nKK@{J z^zn!3hi9QmPB1vn$sJBSrwzz4H7LTrZI=r*tF~J22zxBDrw!2NZE*^M6~c*A@3I3n zgX};0R>Q~B4Hc$(0rntJ3iy@_8=XXT=Pdo#EjAsbJxLb8woL`ssN;4okH032T=09l zz774S|M@><(s+0E_z!;vJJ2s;_pir1yW`i-lX)UR76>Slwkb}gaFfsF?>GtkboJuj z|8#Zo1)m*wh^-ilIr!)?-&*FxE#9Mi=F8ii#U6=WyOhygn{062nv0}Fls_O3#WdP! z#?Vg2u)<)+IsK*(L|v`W=dy;}5d@n)#@A5a6rEU0-+sxfVeduCiwBf`9PLu-wYcK> z@XCa*KJT8Ks-$17pg2VakbsfV?`irI;t0G8-&x?!0(Tbp)mmU`6A{~*rCYa73)-0~ zp)n2CX*y>Sa~>PsOg$&{(8TIZNY{`%VChf1058Ie$dcx7ODyIYY?Lf{5jN)Umyn@B zY~*#Zn?#i=)mPe-KEbRs17mt5bJ7&f*e1J3*(s(I<&fRGz0+l1#ED-gv@#$c>Pi?*VvDM(rkqE+7uWU^~;|CZKvm75SAK0VvyL$ z@$6FcWgMps{PVkWFW6jR51%5yJ(if;c>Fb2AN4+_LY@Rk*Gr1wr^l30K@m?!h8qw6ymPS?vXCgP%#HYz> zNX5I$AIR2%nTYe{0bBawbjogM^SQc@1#8_uVu!|uk32TqUD!Yr zO4-%RR1FN31qM5SlU3P+cvHQfPMC1HxO_U*y8-1|(DL=@)(7`l6hYV>>Q1!2c+n=n zHss?PlMR4PWH$TWiyoPu2|r$PgO}`*?@M<9YY|=dE1z$Bu^cQDYON-($!$_-N)&HK zm_rl7Hy#)?n|UjEW5SHGG4!qqzX|_c<-_Yu>^AB9;Qpi4AqyScmE&MV2CkiGrJcMW zu7Ap^`Yi`+Tvb2Zgod;8%7F{g-dT7|e3@Onc_#3}@Ap)q9l*0H`7UJ9z|PMJEuWtb(>clRkj7Ic0sj@x zwSU6S=ifq44|3FL`#su!pSky0v*z>9V|ve@Jzc%z*!utDfB5f33SYT*-2v4^ay?jnzT&nZc>N&do$-%wVF}iKBphX>&+x6G4jF(*FCp@FSWK!}Y zCXF?(Fm;JOMbJou6hIy2plwBT0M4NBq$EAT;0e`LdWEMe^iJlL>-HcPadW#?3IU&R z8%`vz!Hx1Or!rUA{0Ywt7AH`Db-VO^-Q{+6(iX}{(A5aW^5TL3C#|w$kn*;l<0SB9 z`as%PIkgbZe5R@{StRzSoJ8?Gj$GVhpmf)rwcxrRyZ7y^k2ST; zx~H~ITPx3>lh*Py577sn``grerhl#f-T9s{Ir!v09Lu&P_Q|#q*?5L?=~6O49@tHM zZyBg#cB_wS``TS+X}&VyPrvSrg*NN1G+BcJlupgid$?3J;gR} z+ECFTX{oc9e){OTYgN7y7Lf*OBwfyR4!46$vI$Iifi&iX_ELT))M|(fma- zQ#7=NH)>w(Y)furQ~H_$iHb8J%sTgWZ%!&^U6V*4qTNQFgFg{9Y~qHBXC->Cl+7!p z^Na7L^YFgnUUTtjxtZrIw~%}G6xOi9r?YAdCa>qQ1H_9qogk5(+I+lr1R_PE&@Ax@A2x$oxCo@{rVNVTT8bs+B92emm_59pzU*Sqk((M)FtnY`@Bo; z0N?uQ*R(xM1b_T|-Q*+y03ZNKL_t(OZ6h}D#;}d2tt@$U&4NqpQF)<$fs+YL@$yW7 zY@e~7Z5E=#A`4d-o3MV#GT-!um3axQO#}N@C{8Wtc%_9K* z>=7FTu1@;=%)j%1mz7azF;=NH7cq6Uc%z`bH^_G)>_Gh(Gpy%*?vXk#r0%SSw670>^Mq z>v%z4UPPagdjQ|Mn#M<1ue%kt-qe#43#4egSO^q!XxwQnjt|u;=Ww=i#jX1SJ8V51 zg1gI|1@0_xXMx`g3k*$FZ*2$A+jaEW*j#_NwUwNpX+x`3-^8~ihr_1yBuvb@q&xpj z7Kk0YF}n}J!i5Laudd-qEkB+_BuWqixt@(x(NPa6V4xL;*=n=@~ zz@4nugcK$(57M_h=(li7{${*plWxuKYwT#IPk`?0)Yt5G^xHpvpU%NZCqzYburcWq zBh*Y5I2wq7W+#6S@;#K+@xDziruL;un`$cuY|iPlTNfNa z7IyW;=k)8K!`2QCTsmQ~3Mv5w@gG?Q9GFbjjJZJYd@w^E6GK386 zql*t=MGZs(DKS8c_jJ;NSlD$9n}!VyvWt>DB;X5{WDVNG$O)vtb9%8GnI`PO)hk}& zw2j|r^+o68C!bTo4h%E+|NbNF#7ff#M@c_mVC5b=y}tbqesA^sXJ4+q{eMC)iE z1-(ce@2#FQ3H+Ri zo!hwKaX+DZ?>pIRTj0^Y;<(e$7gk@aLNh)6TOOe{-)gRJK5P>+s5)`3z{Y%;M1l)V zyyu-{Ouf#IoSMuyrM6jnUNb^;m=y%i1=;^Ya-X8x8Sv; zu+6s~SigK8SS~)lJTAC5kePg;4LyHx%yG|5UZwo;9L#AMbYX(WK6)JU$!m^511FM} z;+FbJ`-b#O2Ix=tc9;Af@3Tws(vu+|n(8F<4$i>C$zgXR?D6fdD+YZI+wpV<_wHra zzW0d>f2!^-)iCC8!sG^>GWcRbboDY~wmhOhC38=NmUw)i{2Nr|f>rz{XM9_d{GBpt zX1dQphcKLP+WU;>)%4^genGkYU$jx?=eyv2gn*C9zXvPl`4_;uwn zJ#D7DIW*yRTL73~kd5J+xl~Hk0@@4f^yE4Rwd>(I=(kLdSakg0gAdsS&9SZS++(4N zyW?Cib#=&2;L8I}65t(`MPBwTd`=$oNvKq=NsioS{&T1yG{6!*$L7$2VIqsPZe&t4 zS#rgtgS#2$_M`YMcnl)SCf#zC(Ce77&UZmVJ|lMt%>6Vel{BSp=1`=wR>7L1jcSda z=xF0L@l$lN%LJ)hPSHWm1Ve$@b`$iCfo_BD-;7)Wuj2_RCq@=qx!8s0p8b|guu|8Y zBzMt^V+n6_o3b|3kUAg?!5Jl?>nVHhJ>nT~e|3-d()6iZO~tNX1~sb4lNCF9G^O;z zy$5ZN9rqB}TNj_H=Euob7c*bJz$do+PUyFc?OWb)SxC6+cY}2?L$&Ze zi_D@Y&~$ikyfh|Gv>trIr{q3hS2N=uU;M9s#wW4tL6@_B*=IPTPq5AN;DdkoJ$}Et zI{X-$9=09GEnk-&7mZ8bzgJA!BW2tE)Uy!;nMcnG`&{%J?%tuhk2%%w0r~ORXda4} z?94Vdws|3vt{Y%d5*RKll{Y%#{#D-de2cnf|V z?(MBu8 z0R`ah&Xjom(P^ZUHOEb>xK{AnbO&@y9i*<^y*}`-^PeQW(OBtHO{nq@x|i1B+q52F{2}$M)h^@bN<*wDe4jM`MXII$@CJ!jYN%a>21|IR)gR||PUYXM<# z#tDxq6Fy_0@|2%D3jGdOUaYW{`e+v?(zV;GSICi9V^NHXagz-Hw# zxW24;%(T0Evr-l1sxF`l|J$w-1kd`jO?@M)i96|(0Ys4O%%1|ctR@#*iQMXLvRXDR z9GOqpld2O$Qk`|&K}q8ARVv}A5tPQd^loqefhCnoi^$TvyqM<0E-I%XpH1>Xa5;?8ewdknFYH|jXL zR$V60dis>`YYHrEbb}5z;Z)w{R9|=>zxO_NWDv@Q5Z)Ie@$XP(c3flo>>$cZ6ZI_h ziV~qxIiUZ7Z$4U&pRwz!r^%q-cQ>f`R?R%O z^!3m>zxDL>c;UY*RSdt*>KBa*$w11ue;RLt&y1a1Fh64w)>kGYvlse10HK|Bo&YifX2;~06vsuUjwa(gP67mQV zMtV%znEZ$d(4U;WTAdtG20kM|$&d#8`UJ2?IXh{VO_)A22|FR230+wd*ZmE8{Eg2V z^7tuS-iI5TGFFeE-=qJrFK2NZe(kucJh;QsE}H79UsJCFEuvmN9X*Ki6>a0^*!czW zj=?{Mr|Ht$=ds-VB`?4_KPP@|OPzr9*z1=ZUtAN_&_*xmu!96L^I|y?H>z&_G^pSt z3p0jqKf+`$`eXeI+_X4ty@V*EN&t9MxZ)64hK;h@PYGqpo}z5S#W&@XBre*Ad&hRp zbe|=YZWDPAD6b1^x=`-te6zO_s2jA0)sZPY>s>QUNGEc^{5^3JnhD_VdW0b`cah6$ zpUGhE{2V{-LWEcak@C~d9`oG`*4rvOfn)00`5n8Ew}^+MTt}xR9PU*IZR757<&vG` zKT+ifOT_++^@9O;1%^s4gKL@VvP>=Rg=5${=Hdvuw3*;0L*k`{Sk$k^w+twwU=_5> zg=5cPl8KNMUR)bdk^H>ZmiKjX`^irJ+Rho?<6Fijub!=r>0elK|y=#t`pGw7I1ZF>$;oCuo+p;Y0$<`yC*S9WV&J zZ4(?vLQ&MU)NVW)%05S!K6?BCi`dw4-}2?){@!EWb?`l&{^Z}k(VCDHl^IHApYoMP*AH~-W{10W=wBZX-)!Eb*jsg5BWkL~(?Fx@W4I?__cidf_ymC8I?FCVxNhRr1D0>fwkUgX z7k;NI+IEA4%Xt4(IX2vQow@o9JX&yWQ)j#;VGy(-4N&LSeF0+f7@hMrG7F;jd+}@4 zc*M9C?!5JjYD7^`$0)cs>v&V$?)F8nR8E@u{+Gw33sWp#`xZ^VQPM9Ztoq2zQOh5_ zpQF&DKevLPeJDN96g@A`wHti`-sR7Dmw(OJfbVIQlk3`vOUs^je-|HJxS*chv2>(! zTFxaqiha%;FcG^=f5kBs-}xAFS#3X{-DiP@-z3+)+{_4>``gC>g zTaQ=U_x4ub{V)G1x~L3!X0rU^)oVVLamtU=7U)3S`!+{2fBcx|D+`~=SF$juH_M`? zATsp@noy-w(b!*psKfm)!$>qBU$f{7a)Mt+J+b|r<&rKB->EVoYZ~#mk)L(O zG=DhplaUc838~M9N;XQUd;JGoa7!Z!29}T)U1vE53VwIJv%sAN?kwOM-okNT;7dIvMnsVVyUF zI@REDbw2DICtvtZF6zW_5HlS<;C8sTUH!K0S z9PV(dog(VuE=|6vi;PnSXD#c#a=q7urbg;uSx$Rb{z~;J15Ie75G-1J>y6fvD?YFs zJ&7-`$Py11tRPf;{aTU>YTbLlcO7>a7`(?WuSV3u>1`T)*F}*B>v47^Qr30!c&po_IS4MjSv{fcxyLTS2M?%gZI`e4&Mhqu z0yZ7y(U)hBW3-+6?28`*nYFvF$DG#HyAJ6oH~UU7Kj-_pPVl<3#a**b;-<#%vT6Cd zi`Q=uTZiHXK~*hG8GswbSyyH2z2JRQN27axJZ1O4PF~mZS@0mN$=E0nCf5CaPitA_ zwmT#f@R!`vF5bB0NUh*fUfN-Lfh=LSx^^AB|2DbJ&`p?cf!%`9j53F=bKR6?-f!!m zUq>HVYJV5Zur)Ljq)ejbh%%mowz<|TCuFWHf7;tq268N)EM{^+6VLCy!(i0Ny7Bfp zHd4G>_<|#+U(seAfA)EHC^*=^%OLX6ha3fs_ycaEsQycscV4vlB7^$^+dgw3h8+*= zFX6A8U4;wV9ip6vk)JT_?+yq>_IuFqy899N{c+cm0h{+Z&R5>-73Q0-bqDP=J`d30 zUK&yL;(jB32<-{=K$%Zy_US8ZoP48MKRoN~1kO_f%kH|;$Z9JLhm`N}*W_G-l=i0qsR}pY- z<9g1-E!E9G|H|OGQ1F5!0=!J7UBuDAgS`bdPCZnMK8mMWSK*jCx+a6n<=!?aye4l% zPMxWH6?>$-*opOkN%Z#~ME6Xp@GLlB@zeWP9|tA_@7U7ZoO_3qOUp^dd}cg-@Q0qG@oKb#a-Bv=R)twxBm4$jQ@iUmV?jb$nKC?sPr>;@Rr**>NUFx4HKYnf%>4V64E?#5h&w(0&|zPhY)c!WbID zmwfa09-l`%(Bpi;=O$NRr1iwXRbN3LeWuzb=MN|-rnx%YC9O)(>9EESdU5? z#PBe_eL!D$C{id1x>P=3?Q_p)s5R(7W)yV zPW6DBaW;j*yy;egz%uR+#X0Te>dJ9A>oxC4T-7tw$^yOgV=JBU^*ZA?o{lZ zR=>Tw?#}6S`AtpT)(f;z`Ua(fFkHUl1eI%df!x~3zUUSA7W zhbg+YG+z`liR$W1VD;iKcbL-2REMTtJUTYrx1ZQMy!x5+1!&)=)A}AA1`@Tr_Ox`C zdPj+LRTs^RVbRsgZ`$lKFxF9>q;zm6Qh2#`_eZ`rbMz=L*Y50bh3UzOdw{OHrbZ=n zx#4#mcL53X=vbc;bo) zS#Y7rfNUAEwQ}NGV4~^p0z`df zPWYzxv}LeU-r8UA9H>10*l(12jCpLTK<_o|>&_pY<*-Zs02`sW!0Gl6h9+@A!R6}3 zHoK`!8y)eiV&*0JHH#pQ`FYH-uIp80E?tKtdE;fqSd+66doxgZPQ*TA63cIOKV-+Z zgZjO?Ibfc;y_tN1b`8|YurIB)tKK{2@#)jACtL%)ZdcgroEu}hX7-8<*Dh-S#n!eb zPo8|q&X3B^pUa_y+E`2i<~E znuBn>1@i4BFEAY*nKL-%w4;$86rV4&x7wPzb;ShGB@+q`zNE~7`~0#TPIyi2n(4tp{?JbGWWA)W5Y<P66|YW9}T9bQ0MQXgpvb??>mytKVf%vnGH`w-P6hn4(?gu(r%L_jv(UQ=2KF`FtMQ&;smdNpAYaP z728*NoE|@Gde7yT%rwy>d6!wmAp*bTm5@LTkg_+W3NYGK9VzrD3=n_pIp8|*)2ECk zCD5mayLgo4A1!X-0u!426N=J}hy9=Kv`4f4d>;ryR(k8&j>_HZc<83JWFlVANALtR zCqJFnph{*y$c!f78+EUE-usN-qaUntmWYdXQerHG+hq~V5hr~3Y_#1zJ2_?mo(T)` z7WLHTmimoo19jzx#F(urV#_1Cgs89+1W+IiG?7v_3FrP2rZq_najRcM=QgwGN`LXD zoK!*y?d)YYx$K0aP010aOadJ6eMc7r)xsuPA^LmT&u?h^nCQC>OTB>+95aC&qto_6 zQ!2MiO%mTVu%sVj39G^gB)TYzq!+@7Hfi1hJzjUUEa5T`q&|n&EUwx)F`G-EVu3ch z_hkK!+cla+^c47~y{eSMPd;27e)19TT`b;o!uL6g%lO2DO^#K|F@loCgbwYddG~pF z<+pBHown|TTd!;O9Sbt5*1{>-3eU<-nI1tCi>`W04DVj=wEGL31Y z20>_mo8S|Z5m_!(;VOBJcr98uqh3MSh&4#rlrED7k5^19NE=H1^Lx}g@9{lbKc&Qi z>GwZ+ygL5k%hjtNeU^9Q2pDxK?WXIL)a%NWQh_}dq3f?w$L5Vv2r4CN^D=p^@xkfOGHudyK)LFZ~+h)+xt_ULJdjTWZ=Q zIdyl6RbaAFFN?MGG3tGG{QAXe|GP{`vkUmqcfN(ln!r`(od+xgeaL6Pe(QaXUB)I( z^m2s!maD*Y)H6egGp=Nr+9YL?m_D`o=cwn@$xr|aMQD|gDCxx!?foa4dCu~F6o;Np zDEldz2q3I2iwMdho_&dmF##F!>o{Rp;2ta=oFM7zT3p&VqK1FcgWi22Nnb!XPx#}nU96+A<}i5lzf{~ouK;?&K-dT_0)9{3fj~Kspy2e8(v^% zv!9m$03ZNKL_t*N&kjPE7GGcP>}=#kJUuF+a^hcnyCfd(+rJ&wU%cdAowg=EBj9seweL_M#(%Fk{bd&I%oCq8msrv+lcwLwEvKpx@jWKB(sIT>8LgCUx=4G-e@VZn9W@mg9{Hhc+T*4$!JlU}?N08ZAQU$9$(K>}Y`BAhyt z31tV%81&&Vz11$qe|D{$&{*wKX8SBKpsXGA+_s)EC}BDJ(i3|aX0YhO@9j{omwfNW zRkI!`I^=ykLPY6)R-`%6ivtE>Jqpa-iA8p_6UMz>un3iTm_N5r>n zeK3$M$%+YnO;cP9c)u}}N}Y3(_vAH`Uks``Df!it&toT9o8_W0Hf4>_2u;#-xt1~k zroe>zra)m=JJ|71hx^xKtlS~bH-;SG1ZFu@IWA?`hUu)=)&twF6X>6@t9ad|?OFq- z?OB7pEgE~@gfyskeEfnF9mYi^=I**vhiPSTk_RT&(KkYFOL1GgjY8f5INmpJCHn=G z8cDUIgGOmTs4Wg`r{2(pxhTlGVm&eJgu>|FR1ZcOGtFk`oPPUII1TI^9D99?e#hR% z>?q1$7K1zF#|aZ*?)o)vK2vOGD{r=aG8&kTYUExY>R`M1?E?vwZ>P+&l8E=r%#l$2 z<4a)+?OiDb4tgDy=J@BA+`sJZ1LiZq-h_8*=O;YR52+zDUxA4u6XeD>j0;_-Q74I- z>uEjS{a0Nt0gc)E0G_nn^*&CIuluP_gIu3SF+(X#uFWUM2eJdtDX5r&9dSW;Fsy48?QX=M~|}?xvYX7P0lg{Bs9~+oBzr^_oy26`q|o zKFUU4Y}0I%#h62;tSjCY^11XVzm^xD6}qS#9hD}4=ZSU9@ZgLW8qZaTKIU|RXJqJ% zzDRbDL(|jaL!fUTM&0_|QUaA*WmfuB>7-mE(>T=OQIdv#&{Nm^L7xhCK-oRmnHea1bSv5~3#ON; zp0wIYTFhw@SZ1Y{TZO9>tPAE(oXPcKXnKJp1bN)%NdxZ}srEooHl{APt1| z-Ok@RC*AbPj;^be@=+(9^)TV^RXG#PkGc-J1p5}3#=J{uHB$wOS^{B0pz)7 zK&lQNIa%%<-s-?qCe>&awm6N~ja6lo)npWF>zCvp)PGWoCD%eKiiwBt(qB+-FFUHR z13nMr0%C3dn&*%wJzZYXCi2eOU9bC-@(W=d3%@fSKn4r!HClAQ8dgPT7IUa0PBs;g zN=}pIiLqn2Cg(kq>zd@trLdu6sY?wvfg8Xt?!yX81FrLZ}tB7zPCDl z`gHaD2R~e$Qvap~W0V1_u1cR&>|+56J$#SF+e|3$b3fQ#yK~*$v`z$H*hiHb9rB*W z_|plC8;?J))0d>b&p5yV_lFa(_Tl?6_V(A$SyXtVBcEL_alGH^)Ucw+^Q;lu@9+d2 z`+?r6-Wz+{EWKya@RUj4J?9VUyCSgRv8ay;+S(jY?MGv!q&aA4E!qrQ2Orby<+?#R^xjoTXb@AGF*7she3NMVSUG; z|Km5{_nFjBmGPd@CV3Z-pu)NLjKW*QsB0ZD(0zh&bUJhDv5DFY5@k^^!Oy}M>GB|x zUx!O=!t5!lK;pHuAgslWiaR;N9i8&>4dTk(y%*F^H#9^qpZ(^y^U?>m<s-&x?!0(TbpjkAF5S8J})lx=9wI_TD|S`Z8SRx}OiR=B@$ z2E4A&A|EZ%Z7B94{W|%t3^MApQD|56t%&Q?8wjuQ=r~K--W8x%W~ahVLv&<%k$NHZZkgE%S7Q)u(lwLS;Upvue`WGu^M40i#DH zS@K}+lnOc>COV?}J+2l4^m3_i0K!a@(d39X{34hVs&lzO9V6h$+MnQbMDe>LUni$@ z+)tf=5s4QRCWQC*YEas5LMpejFg#BN9|qS+f|ti%gJX`HIPmOTM&+mjhhiTYhE*k< zb35q%M7DptmsgHV-d^rtQ%82)rOV{347dGO3qdDq(|NaZ?@CWpy+ZA)hwNUyf5=fl z_g04-VRZQ6d#gQGv#MWS1juvWDRaSbq8ZRuN9~Os$6vAgF&$&xk9q0%`p`~ z+4EPc)29qLP|utYzH%~{7bSlct_ilhob(A{aPzHb=rchqZ$h)N!=uSopy=S zVoP9=d~?dJt3Z5~yGe9YU_o~?-U96#h)`Atd$YVZr@DB@w#M&9?|F2xgRAZg!KSr( z|1^sr^1UygWw^A-H)+2R=Up-1_R1*64-XBx1(CW z@&X> z(torMgq`e@L1dT530NnAQ~lBh09M%tr!;UPjvm139!QLtHr1-PEr$7Y2=yG@P8m4l z3whz&)1sjHfuEDOS?ESonoJIB^p*+Hx)Z!hzv3U$_xckSn*GfFMN2GpW#PVCKK0gg zXuKDkgw|JZ)rs7N#9Is|^06lQoHuoz&j5-cJOPBKBrKzCqfAyp*+WEHyh00jltqu^ zlXUw^qE*G}1i!eioEx3H#`#1C^+I>xCm=Yc(-V58&nSdG%ElgKes#b=?g4%I2TTaN zsO{;~&(r_w!#9V77d3+ekFFZ|)7s@HzLfQo;?;=b2E{bF_Y_4BZ?@8t8Z7OYr* zX6HLi7C#|Kv9EZJRBf%cHMlA<=rY1)PA!x~FA~}El^t5@Mz66CMW^hDJ>LDz@K!z~ zc3vHC@@25mLAxNDdG)fK$waK8Ir!)Uvggh`PHo~o$+5O9;LXCN;DB3&9N$T%lh41* zgpSXGefzcaP28F2WToF5tp&lfU3?$(lH+FSxNyo33rb!xImY*}FPS78w3~D(t(szi zE-#gJ^#Lw&0L96&o}V*Ix&NgrBcI`w2AZoLtjs5<0Wn1e!81>)Es=BlWH& zO3R$VWTI<2=V%UzT|80}AstiYQE{&mCXqpkl4jTNJ9g0*WrcZGP**K)`^P>@9^7N% z_mXi0?3!=UJN96o(JzYm?B?b;`)k@#cIw7OMrkA;`-(2wwtY6!sY^UNGu8l~T^H@T z@qoH~#S!SNSy`RCo0f&;+xR?a`FxqXZyEcdPvEcgy#D zUC8VwEBJGKg+_sI`@UZ79P>bc%%UsHuRB3#NG9KDaFTS|^0z#jP=yf3Bb=T0=!NsIOQ=Vu?pUsyHclAaF z_00TkF<~EoI;q2`Q&?1=Daa;IN_y`KaG7TN$uq8W&U;&sMC4~)l2N?aTD>~w4#N*l z5N35GEszMsrPB`ZB;Ig|_?9+jv&n&%A{MUkO>tDtD|tk0I9P8YwJyYscvI?K;LZYf z7Pzy(uh{}~bG1}N_|R^xMVGh}-V_)~m$>V(#`ul=*J=Ki#b>Mh<|zI)oh*+y5vNFl z-O3v!TxT$*c6PzyvU}Q(ziXWqdk6m2?gBdtbdKR*Cn^I$^tJqEuEV1CeYbfzJUD#7 zw_m~K1?K4ehjiE&%zpe}b@0ezdRW~`=k2xMGyVM8>gCVA4zH(w$&o$Cy2$Z1sI``P zC&!+?c!E88hL#BFcthq6R6C9Lj_$9H7^ur+WO7ip43+wW>m=Lx853_FrAdB-cJAr* zpil2$c4_*$ZZPdrfQhoj^+*e0Pa`rBnr=iGzIff)e+^yvQ!;4%Wz8~q?S!zasv8@3 zoZLHnl);i3XlvqN<78!iJ0J0F#^=0H@IusjVCgUSusRS<)Qi0Foy^^0psJ4R;T2?` z7k)bL+IQ!Ojy#?C(>>|{om{`&wd2Z9I{WExHy$-yXy)k9QU}CyQGk=ce&Z$nJqHw! z#fws$I$+~H(xZ&_j&dA{`3c|5C2IbyJ0Jh?A4H~g)5+4a7Y@!+#!Mcc^8)Aq#H*iv zl{z*b;{@z;j$igDYG|Bvbr9;AFO81EGE(W{N{_a7BG?tJcE?>%u-j}}ozv~rV~+ZD z^4WnZb0qDl88T>8FS5!Y zuPI1g))~+{=KDnsz(0M#V4gOx%$u9SGYA_*(~h#)Zz#9G+)NL&TlPkT;4rAkfPvpP z-(^6+3504xO5xgB=Ab1n#6!M%7Upc-Dpzk(Wn{f;|E#KvhJ|cHTZ9T(^)YjQnUN-qrE|~!I zfdFl1PjabYU~psJ7Ht7IW7s%{EqMdU0m(h;m$gV-C*a%(n&+D^8JQLS ztcQQe;NidA|CG#{v(81NmeV1_+Pb^G&}XD67LlB1-q^3{bdwMAz^QaW%3o@r*?>R8(yJ2}`7r_0cNe`D0u@LZ2z@XLM3D|w=t#LN!WH`~VzwWH-;+lsz6ttYr&}*CTzgu_g7llqCCiU0vt@E_AIt zPguBm!lJ&Y&t;zpVIzA^EO;z5KNps4AFz{$_arA4ydyp7=fu-CCf$cj_u!}(Fv}-9 zhhlpoz*5)rlZH<~GA$h2=SDSk>56rGzBD<-gR6l~()0^ThgFAo$uO~EWPjk0d&)Lv z|M6qKll(CGSF@`fYB7E7o%cSV|LuYs>YQy9za8rv_1yd5VLu+1BI`3M7zc;W-?{vjFYi}5Qq^{h``+gO7wU?ARhh%l_DYYPeCJQu!ONm;-+gTV?5AvdpX2Lt zn?sXHv%2XjjTIyL^b2);b)Qo}p7X9R@4+o&L&6XgCw7{U%K}q$zyhblr z0$lu&39x?0O%kTMVoC7lW&_?EJ!x#4-M$A8AFhtr?Q6Zh!d7P-QSNtew~v^xr9SV0 z>*t3~AMl*sbG)MoCe60TzXDbsQa2-${88A}%bntloEUIsHDJR46JiB0W zJQKCl<83wy(8E}5-{+kNoBEjzC*&=!UB&}<*)-xfQ6KZM`c&9}vdxI^K#Y&L`HuXCU8@5Dt~8K_-V1U)agK+i?P0-ta*!0%9C2+(9heY%(z-tyB=x>z zdFl~8Bc%FNE>}{tTH)CCmXk>f2gyreUrP^wv?jMa@-yMfrzh$UKk7i?X#|2T794dC zZkJpB1P*fX%?XgL4kg{RTe>OB9lxoX=)`OWc5OQPb+&amPeny?r@wM|S@!(HY&`w+=sGTo^cy4nL9j{&}E9@#kJ9tk1 z-usy2bo^G!!OrU8cR$QdOnPwXXr)ug%O<1U*){CMofC*({rQjR^i?OyfrE%e{r6aT zxb1+66Lc**zCcL#glD5P-QUP)h=*Ll7KkN!SfAe|ldmt_;VWN$ zPP85Dxhm5RVmXf#Jz(eX83T4XK2V#|`3_&gS)J-cuQ21-c#GqBw0+`)8Ief`eTPY3 zVd7?jm^u(y&|eAz&%w>`FqzFx3pzy(mz4E~zW#yDZZyj_Fc| z$N=?vP7_?N1*Uk14}Q`n%MJ-WI1mrPp1SToVE{;%`ibx0=RF384ymV-YnNB-oO#8- z=R)U&3N5nfCAR6XKv&=!-3{1l;I-&Rjt*4rIjHN)sDqa6&w(*_{CX60jx%qC(Ctu# zx@379c}t4xu{ZI!_wDzoZy1cavCq+6dEuolrmb|b2lt$HKleuNi@I0x4Jz-M3^H7o zIYP47hxR=8-X@w!!6^`ZCLR-b3QS33;EkzoOdPpf5C7bxIppvw%bW87QEThu*l)>*X z?;w<96>(*tw9tT^W%a zLy(NwpW?4rHdxr_a!Epxase;TFOsym41kACb@OJzf)4Qt26u!85Kbf1rfqVHo-v|G zAcatfUiX=p+G975gQPotYJ+>!N;6|fQS{!cPJ}r1TPNa})-dUF((2cuE(R(4H@T(M z8nKlMhE>rRcHol|p**Cg4?{Wlt;1)RwWHKB_1n^lxngCSl;%r*-YaMJEyj$S9yz@X zT3(bDUAS%R!$}XGs6G}fidv#V09SGfZu~WQa?;ooY1Ac1VH#%PNsA_W%je`(Ao7ZH zj;O}wcF~!xnrKYz&fCwpy6WbB4}b=185xn#Ef$BOBZa&!8$fgFD1C;$HPqUPSwPvy zj@fG_EiJ3#WBskwqxU{s9qq9&j_2gIi(@$%$Kx*@uy-+#6P+>eD75RWJqV{n1LG1v z)rUe8q4JSy0UNg-sk#9bysB>I7;PKW2~%qEbzax{vE;ew-9g`sLOiw?L_g@#ED#u*fj=cWti`DC&{48Z= zxz&VkY3D-PvuDqlz83 zzfAWVl-@H|m%5AaC%qcefpJd?Px;&TqaF5?hauPQ%=+J8^YEvj|o@aK5gaW zKl*MhBFbbcHsM(2OOIY>tiefV@vJvb|F{1e+Qw60R9M%e3&bZ${IuP)8!o~>`s961 zYjeR4?FoOL_;>HyAFK{Opx?woe%qB@+8&RF&Snnu&WUBdL)s^DC$m0nKz``aG(sS< z@-D<3mYdA`A|}t|t(!cyIAXe-R8g>O-rt*I-j+ABCfbzOB9W;{lUqc9_PD%yy`GhX zB@ubzYFDp#+`Amro+_pC;ZclcY0`A&RbS?#p5>-%>7&kqn>+%MC1`fiXfU6zrYooa zk_qDYwlV41bsYdt{KOYtX_b#k?kbrkmhs9{VnUW~WG`~i8g3`)0>tewf6F>4DDlY`_`JWYdXFyeQa+fek=YcVbEs; zzjJt#(4N6}X7(FMFywCtzE#nfV9gGp=TeW%b#7|~BA!y#ctr3>x<=O1cb~D#cG1Bh z#Yw;>J&Z5-4vPH|JHL6EbhiQw`_4^$-NAc&6NHJdBRb@V>;Se?nD4}9f&m0*{HCX! zZFiG~SMSJ?>;UZV{LBAXdh#bf z;wWG~J_rvx0_n(G<+Y|SpmxaRyU8HJaF^g#a^oSe;fLqI01Q)l#l$8603ZNKL_t&= ze*=xVA`>%SuDvVt=yku5MtWl#B*W_OzkXh32vZ&aT|lD0fngi{GX_V__g>N|=li2) zygWJKoe5ngCpoIw7b|ycOK*9GW#bXiz*8Lft|UMD*pB|A)zJr!vvc>1Z$ddC^ztWP zq%(i^lCKmxicERhvCYo#)CH8eN9XgN9Z1rd4019Ag&4n~{8BdRYzLLUC<0A$hO}#R zO4#hRbb;%x)q@a_UN6`1Hmhbd=?r@F0%yf#2>_zuc#1u!j}DkP`L#N5m(O|fp6~Da zQuwWhS>3u~a(L@C_2&ft1UM7OSNOgF`7K+&g|qkgUS5oLIU31H;7o}9{&!G|KVE|B zcd`2RKl?)_$#_x27S_)kpH8|Xu`fAxEiX<<;|SrOa(@E1-X4GE_lC+2zUV#q(a-Y2 z8FOeC^V+=@E}IN+0Tm5yrzye$P1nw20$eYHnbjPc$_hH6Nr9KUqn|Rs`OM>An@jyj z^@aD$q9+f2lRZH|ek1-QV4_$LEIBS?Z^pHbIlyV1Zfy+Zb50%dc*2ttCihAsTu;78k3x^!DXxY|Idg~wer*$gzu>7in)JqpckY+pYcedl7 z(x$&+&<^J-M(@J*i~MyE0&C16x`O?w?GKw`W1d zG@3k3m4P|zq07;q8~7x#U3Pc&TAN7i%00NQTvLd;>~mgu!Jw`8ajE-jb^t$Pf8`D% zhadaA(C-1B zvY_XTpDZmCPpvR-KCj)S7%rA~m^3>Ou2vK1po>B4(moR=r%bdPbD}pp%Hf9>j56@7KkhPedb#?VXVq(L_U$8%KV?G0ewPaqJb9(Jk(xj!pU%6f z7;Z|bd&BgmH9A(f=c0Igf;N)l7p%Bm5MSkcz$mC3S=j8tC{{6?R zd-oot{cG`T(n`ic zQrP6u=|fTA9e3yP*^m7LJ`2PojmJ0BsFzR#_V*N(H+(_ABF8%))-JB-#N~=f29JkM zpPb1|^P+0Lb6n8%-8rG(cnV}RXsNKgw*2*cE)z?w5vKepw+4I(icNAEQ4zSHuen_bDk3rVB>2@bHa5l@^K;L5%t&I?6t7X zXFC(nE)L)b={#`I%|0mC(CJy{b(Xfzco)j*UcchgQQBftc`H|VSD^Dt4oa!io&=Ru zuw0=L5(gj_HKFk;%qiJ~h8pDLHTI=0XA)Qy8+j|bIWD}3H_b`REl<*d)`gO%oLc1q zV;6s1+HdB*uf<5%%y!X(bWbSg_ikg-s}xjWioeKt({uJ*te;bXtRE;MKR>zl=np%Pk+d% ze7s{+W~aQWiKnzZ`0Y&242OUwLkW|(#?5lX=+FsKpWyM3M>%R6Fc^FprHCT(MS`c1OUc(NLscKJU(y<2WF<(77 z{*4JYV|BJ~BJDVhOEysuE|ND9F2vqN?ksR;fjbNQYAs;f^~NS@PMkw;P;rglTJ#Ns zEorSSeLKPb4>1NCCAgtrHh`*_*An_Oxp&RFHHF)c= zWvdg{PS8D$C92hycKlrJ>tu(6`%c>K)0sPXj|oO5`}UalO2?C~f-42@fAZey=%Yt` z!;~Y>avT*M5+@-Qo<39U6b%f(*vYfgc+Ej5t!WOlIa!fTKBx{QX+b9!ouF79?Jy8$ zhn!WQ;ueO~^pO~L;^oShSaEc|0QVk_-KTWkBTUNb9HmPb#HL5LzC3l}cb9Mh!X|J+ zSUrX(9=~^Njreb8GCmj6dWTrw$#~K`o%Rn7X!<#BXJ8(ClIDP&JhxB5=ZrrmKg-te zgk^O|WrD*?$SlFj)t>i$>!a0szxUg#N5B1@)dA(|#Jw*`cJNPFd3*AVZ_CiJKYw+c z$Vato`_A>^sb{?%xSV`_`^&RAR9G)__+>NDEk#w#Tql}u4 z$xjP6FGbMPFkPp~1l>sZh*RxIBqo2Yb8972b6F0of!6SpT%G?E4zE1cM^>{Xg zSg#LQRjX=-os@q6``?YW2J zBB7pniMTFlB%Z^!!)vmD$VzZ_&@m8l#?fR~&t9#z zk>~M(S69Rd>(;GN*(~UK+AQG>p*Iqt@22z#)&f(!6s#!M4sU+(8sMsxw1V~Eq;0_1 zk9K97oldnAs)*d(C;r7Hr(fXCv0L3=SfrOd{?>t&YgT2t2PNuwhMS8HJ)*w`z#?Pn zGQ3DyL<+Bg^s4>bS$+6Vem`~39U43I13X#5XG7XJ>gDJE`@cz>WIu%Peg)py^U=!SD0`4h0 zH$FRmwR+Bdz18{&?uhMp`u-f8lY0hMxqr-3bS9KAab2ATP&=*;82r7-rSH)ar5Rnf z=?L2tE*s4$>RCIi8AR09YR=%01He3;$Uk;$znTOp-Q^H$^7Z0^dP;^;WG!cv^TO)6 z)$cq^v8+<222~^;T?P+v}f&C3OK!5uiKubGI*16(+{=f@?tWKr@whbDu8jdN#hdaE5GRDDqf&b4!Y z@8H4eFPT*Kw3<^E@a@>nTK7dL=CNb=khye4mERIw)R#%qzzW(^N9&rbUCnXw8T%Va zH;LWeSF0oYL5&Y7!8Kpqo$@Ssj}vAN`P6}&a(|krz`-deB^ICl3Tbt}@JwP*H9MT? z54xlH_wRq3?6wJ!%eHvKe&cixP_LlR;tb@Zd@D1NINA39WA9C3ZA-HAynXMv-Rqlt z?`25IiyLiD5&4 z0b8^H*_0)VmPipKi^WP-mz9-S*}nev{=R=j?6c3g=f1A8l2y`;d(YkxE7n@EVnwrK z$BKw;sG6|YiCeyePk=ps4jFNKQ~*8m0vG+gy^iSWv!Mv9pLL|*(Fbz7!`I!A7am^c zbR_B{NA)_kOJ#ye-PM8^zZ1-J6&k+{@BN(l=6A@XwBtX=d44KK9c1j$(r>q_E0ug@ zPZ@O`p+c!&&3huQ;B$ho7&9#|w5!}JhlJ^wqpy^}` zZLBh&*9x1_d1mF(Lt|BgS;3Gmo=IASD-RGhXS)&2tN!kaN5?mIgn&{MRiIsl7EgW9 zFp-_4`_QrYaED`XH#|<;@f${-y>(78qJJru%%ak&Yilg#KH9i|-g$4vFs#8b?-#z~ z;J4mQ^WF0^N=|$^?$Mj&(>u$;DuX_K2G5;i3{iQ$buv+Wc6;Mz-PiDEw8mufrVQ2@ zbAEu)&LnsFJVDn)Q4&mYl_sG8y1W&fXdJXjDA6OI7CL!r?YTwdohyFf1@xx8DR}a= z!Pv;-gxB1O%~;8AFnc1^o;yu%V}QGZ@p0qsu3v2!DIYq#|}p6qw*lOXxKf^_pY5+lG&K|R`FJI9oiuJdly50;dNykE`ERUf=TAMBjN=|+56}|C-Cvv0`9lp_}=iqPqaaIk$24tFWq47hlM@N_hr5UnP$8{>YNkI ziBYu6!w0@s(tmiOA20pzK5GH&Gon2kPsE*;T6KIC3$tlZ-~#{Cc$~o(HGtASHoZ+4O}t4jWyQrg zs2-Pl4~Rwlv`jPYFpbBb_zv?9VB?iv`I+Inzr$p0t5B}KbmyW2x2;R8==NAC4RsDK zd4cz3&f|YIM0y;L136a%YA8OB;dh&tca0XCtRmF7mlt_o{7s#U#xaLWjCki`oi0>x z%+16#xg^OTi;+`|e8T;AB94~=zx(>&&h6n2$IkBEnzQC$YRxNuhn1g-rEZgHFCTUC$lEc|v>VzxBW6YGT zFEPHXaW|dKa~_S%1e%B27X~=#&FWE5x15V@%0k3hT&EjrM1k&ad)J$unz;Rk#}@*>`rFN zkhzhRqc4HGOpwo*5Ivgh4%-@axgQfgb~Qb_(VV=3W6C?qCFDyj@1)44?4}LONkH?d z9*`sXMr2 zOJDuz;mYf;WKm5POtf-x(ZvC~@(=tb6#ZF_zXw)Fnp20^?XMA-S&!O%y_$eqsV*cAi~r)B!fPCB2oIYdTyR*MKLqa|&PtkDfVKo794v0LG}3o~pkRg1;&{ zZ8h-?HAq}WdxWeGtV!4@S`Xk!6ck}7)p!4hqc;PSq>~Q(>uVg`jaQnpQ zq3J073c`3l`VW7z`V-p5J_}H+clW=`ch;#dAO8Lu*%fg2n{Ow-PN>+HYGOr}`uTaR zp&D$HV~HPe#~h8hpp&G(qzXELlfHE+?_*BoS!8vqu>KDpFmc7*6EK`w)b)D;T*S+K z4W6Q}30gBFh5e|`Jk$g$&rRCkLl#GEGENfqC?{R#u?p{T@l%>SGg@XND}J9x{sLCk ziWte19u4wb_nG4(5d`k$xs04Xm2{3j>aW59n(=sykyNM5Jsm*}MW4~D-3r+j5$CDK z$E9;idQHmExMP)LB^?h|;VHXQeccshu9ZQCa+MUrbuRnO$48u$^#w?_dnF^We zxvwr&)jTg1mQg2@WjFk0Tr8kDhBL!G5U+DLZD~4Puc_{Mr&(kCWn8auj<9toPT|aq z;dUbf@v5El2cc(jSOYMO9+1~-yhB`opOdXeW)kCHDu(@z3y*-yP+4@zXSlZH@RtPO zAj23cV01FCXVAc?;}^$poqJaVEA8Uk{R&j|Ymrpu;+V!*KZ>Z-6LfZLv8dp~_ud)? ze)jL%?9lYc(+$RrE*i4UuDP(riiexADA4x>cMke&KB6D-yNK?5+rUU?#-#D5@y;=2 zjI4o8YeiEGJmk3o3b_)=>85M@iwxxR+hVd^>p4K}BrM(s7YN zJftrX0pAUjJG;*{{A%z_lzG6X>b#H66ei99(H&NO9Dqh*SlR7uM<5}gMb#;hZ|*Hr zg>7iXjvMNO2KfD5n^zX#(<68J8Zou%_uiV)G|kUC)GJ{4M8+8ZQmElcZuxhwNit?t7Ee zz^lHF)T#T&)_2;12H>5GER6RXvM|)>et-e^5JQ|}1C8$#<{b4P{&Mx4V2_?|^-rHSvw`L5dU=51g_BW|32)uLdJV#2i_AS;W7Ko#} zO?Fdzvcpt@ka1b$JP$c`wvBAlmUEI6)b`oFi@S)%A5jP4W>K_oS^r z;&j14nP;lea>I4Wl5&?d0WRTHcw>4!7-DoahC3$#VNfyXymTO}%gtT*m?ykpM7|qo zg80YoS8j&AFh%RCBzP{tjX;Ult zS>JTG2AwMQR#&E;@Zg4!B$w3IY}bFo=(g?M@_?5_wWM;uO-=S_&|BT5bLReInGB2HZ)NsCE30YPmgFx$ow{n|C;|ouBCC8a(b6MPKT>BxPvHvv zDT&};t@rT>JuPRAtee+3N}Lz#?3T~!>6V)9l*Yb(NS|yymbvA=PfcLKjxXYt*}C_cIoulD>SsxDIi{JiY=XoZDsOwHvZ7YMj(qW(Sw!+|YL^^yA9`GF` zCZ)7zuAjrmg26b(V0O8$?Nom`eLx%b8F~@J@1-w%YS`e@4$4@Lw1aHI66K#u z^$(ffFowx1`-7`rdNuXt`CtC>u*=c*_uX;u#@oX#N84-AIAS4zi*w4!+aD92X<k8P+?m;?((y-(AWNo*lNv1dsv8FsHfBb*vL0YLqja=SCy! z{w<6bPV(-%^M~E~hPx4X%Hy>3emHp53wvsO=!mJSo>^dO(xHMNb&)$)dzl03^$|Y} zew7zEfZ!u0^&{Ap#H2hZ^iazShIUDE)i3|iCD1gCz9N33{Ex12K67|S%3 zp0E?!rfY6&qtsjdNy|E#xW)izPot#45KAVrSgZ-2XIzkqM}^@{o{O4$6x5{z*+w9J zKwgAZQ0W;_4A(apw+x(|(9sBaw7C6y*ePQ2M3^zfF5|d84Q_2>JO*L&V;$r#Ny)1v z7jnWzC`zw$=3is1QSJc7=E|;9#!C{)tK~cNk?DB2v;SbYw#B5iz~-V~`Q}gl#L9wr zhwS-wF_p$TDDDq5cEI}uzP;=&EHlnXCHT^qXJOH$Ji!$n7mpWU;E`*5(nNq#x6&B| zZBAFZEG80^Z_Zg?@f{-@vV6j?h4m-ZmPQ1?FS%kEm)%(OMRX)%y)@GPwe(st`u$d) z6$h5J2L#aVXbg7opm4|C8jxb7F+IkF2k)>#%zs_Au}DQhee zb6l-aK!fp&XPfUr>d-NKRRnH~GuHUVrEP_eU?K(xAg!q{?+ZV0rWxq+M)=7^`A0e_ ztnb{dcb;+|L_Z=#xpctif4ifpldge)Ycd#t$kVE zdr@Q`O9VG~bjJ-CO_lQD^I2jiEgGHAFqCHucF>nW@k$2#BxXs>OEVyoU|uAr>NwVxn0(qF z`JTRWo<)0n%Xa27pPxOQ@8iCIxe({rMQ+Hf(f5E|sSnVE4{_uW{ zQ6|!vY6Z);90;^$(ZDvw-yQ0d;3X*%yuLcj2)rbir~qia4)ET9hn# zEqzALBw<`a(MRw)j@cYVuoS5ez4CQ79BZE9st%+Wjbzo~ne@nJ#1KiST-_1PHG-PyxT7H ztDg>=#@oXZ?#zvvxG{Lr6RZ(D4XxtU%ck@0I6drLW{V7`v8VeNcr66xG|#}d_v&*d zXTCEHoN3@p1Ak5$uxnfD$5w!jlA=_`K-X3%n22&@%Xq5x5O}ebLVPS#y768N|Dj+ z?71CYCde1xN0CjwXF?vr6?q&`>(9}azOZJ%Ed*yiOy+xHyChRyRB9;h36X;qHOaHVsR1bSL2 zfReLhD3s|nwF$Y4hcU_#;2_%+}@c+c-$Szw35o$tS!-R@lU<>b*^>Lo@q89^H#+8Po8^mv36^ zW;xEhxq!hF6>5UYKBDy3%LJ4VlrEV>1^?=6FR}ZU_Q+xf>!Opw@{BS6(3fi_2U16= zm)6ZzC$l5iZ~D@A9bptcX13Uc%^TDm%OLd%`7Xcw%CJe_X&>)VU$%GUkx%Lq-zPJz z7!#eucSkYt_FFk_3?5lDqgeKb9z%#f24M`DbNxjP;M6_WRdQ#oT4tKl)5~v3vG028ij5x!Iy9Yf@)l@B~0-Stl)VnfgV@LNzVz)7(| zi+NIlmUJr{_&}fMkj$ERhGU>0uis-A=|gy3qJBzm*BvzTs-KHK`T_zHZ^w5z)f9?t$olLrGe&2(VzjRU+nW(TaQ9U?rNy%V`1r8K_ zX6GMmC+|DHKPXr36F&u(IttwP7UQ$Cn;o2V($qyYif$|!l0NpG<$$`GovRpA6^viT zf+950d{>aKpDBs#L_N-l(#VTunV?4s*AHV2I0kZZlsgzPT-&et?N>5G42bA6#zl_r z-Q~NkSuFD*65CEgYdND6{Mn(1Pk%BT9svLW=D$%o^_hSGf5pS7(Jkj&G+;4UP|zBd z+yPuWFd*!%16{=MI&-J&;l zfLm{1So$zO<_xA*8U9k1^W+m7q;{#6I)yYp=|>gP>TxXB`ntV`7-ccccX>ofahUEx zTE#0MF5xFALRFks<*!pr7`MPEyRWIojt#arLY@tD$)7vk?Qtpz+vl9e=o`}?JxO>p zoGC^6n+dU~%3x<$g)_2?2h?yIS&p8HSZ0-WiJaVhSF~-fvp~=HM2~kqWI^BFdmju( zEQZu=V%YZk^4URYduQ>2zr!_mpqiF4+c&poBMqc~XLO7HaEozXzI)NIxvg{)F%#d* zPk8($Q!x|Ws^|13l#TVwU&pItMs0)`IRT_ENdbjBxfroRJgwKoMIodsylswO?*0vQ zBiKH|o!yz|u>Wg>#`&%JwHXUSNHhI5umk$O!^8P5-o|=NZrM|LFKFj&DAi>IjGj69 zDiCFV;pOYYjW2(i)0kdjgFW*MA2?n=93F7u9QO2aUcd#l_IJMH&Mr8AKwGnq$=Ke- z(v&xJd>4zp(1(p}k$#;vc=1!WhRa`Ju_fbRPx`4jFm&L2M)Z$xtz4=u&BdPj#O?a- z@Pwl@2xD(f8Ii8*MdZp{y9WRsNc{V$ zFi%(Dh&Lh}b7^?3=bY~({TXyj*(QTg5MYF=^249>OV~=bOC%n#71i(xCQVn*oW2cI zx~@9v91+MI7`9$|JPF0iC25ZEIZg-3MzO~-YvI7#WdXNGjCpB*X?P_;CtPtKX&*uO zh^Q4D&p>AyIMcwH27dfB(EG8m&#P{G5_~q9ml!MspN;3oMYTeh4vIRuPL|VaNRy}N zh*2bsaEZS29+8`;qxE}_KMmjbN5yseQ}3hv9iyk*x%PXHH{5Z!Pv{+E_>8XcIT4~Y z^y!$rkuWF83rr2RIztE?j2q102~_@ft{e>)Fhm@F{-v5!Cfax>s*f}>JmlwqA}|KD zPI5B1&7jlwe8(yg_OqKkByNo3eXTDu?d-5id{ zand-G5DbFW&u`?Iuo$A5sP3!FGwC85jzD#C#Z$!2y}%?hgK~t39FMA zLT+5?MqUlqmq^hpTxrR3CjVP0YT)%HBXQ*C_<(zx{sdu66Rxx4$2}cmLp9=&p`A%I+d$&kjmbm#0RX7~0gi z`Jjv<5DEZN!nT`%3om%sB2HYKN9s!B-!{i&%fmYBQQOf+8{pT383gFEUJS{7FQeQo zGvfVCTrDi1Ekb9S))SBFRR_|WUS3vNWgI!0TpEqSu+zXZ_1AdiJ;L0gGUZ`gG4bG9 zFNhmoS|tQOakLrk_7(E?nEBF~G_ZwFwV7Hy4Kn3YI|dH@)~!Y@XuC^R7xLQzQ`iW? z)8YNz0MT1#8dy)G6B}L|u7B~xBf!lLWS zXV-ZVs1k6@m&sW^_-%*hIHJpA*qsc}_?8{%rr{B{@H=uxjrGG7*iIO8ETWT{)@Kd9 z=WkKhsF$1YupZ>Q?9genHx27T%9OI`{uqBP2kM7?yLdB>hmH}^K2I88sq@6|-=p5S z)12?ft+D%(ja|cV(~J43I*D)8DxkPb)ZZ^Y9XG7|CkL!4iU-&kjG7C!+iKG3f z=7hO;N8b8%|NLH)=!A8lse2PM;N?s5&~Yb`>UitA$7EmPgaVF0)M&5K6j$XxM^63- zrVXiM7YEp8C_l?YS2|%bj6UCEFjM}SAdyfE^TmI|capV>wPsVZ-!;x7RX3QBVzqpp z1$pi{$%ejNosZl5!TV8B@+QD^;AXlrzDexjt@J%zF=PMM^bL9)+bo$4u+}@N4Sq6h8kYc0TaQh8c?y%=4|^`q$w>J;zuqk3ANlc~Z#{6L9zc z^eyW6;c)kBZ)Qi?F$Q!*9gfHcGlf+rNFJ$jUGy~&qRnH6;en?%5an+QZ`k9lm)!_> z0*`rj_pdvFyAe3g+Q-mJw<^7=PfDt~>;4#4OVQ>~-gXh(`8(k54q>OZHi&pg|LzW8 zMioiJqSW7t6D3u;8XEOGscg-aXUSc4EAopQxIBm_ES(&@%ECbWctgCXSl=B44z!AF@+^cY>S)t@?Xl6a5tv7ejBw_k}CrU=S! z+4)yllNR`xGG&rfdio`U$5_9C!QwmAMVIN^`Kmflc~S<)E|E(=ILh}v?e!j>ZFG6TonQ2gsVCs3-hcxuexzpN(gM(! zTNnW|FLB=dCDHPv zT%(`>(+_5`mIgh?)BKVr{Sh9#mZyY!e(8@5`?--?ghxx{(=}LCheMy~^qa>YencGY zlcY^OlHoCB%Q_3O;9Z7yq5MYNpmQk~`eFh=5A^U3vj!1U*~?f{M%x(pl9$Stc}yJu zPuwcMN;mW{EQ1sIi?Pu@hGzhdYJ9@k*2eKJY|2<@UToXmeOI&Q@|X0gek5JuJoRVl zJU*9<)$U1n%=2A&Eso}WPSuhrT)@Gh9%peer$PB`&Wo?y7_R;7XNGHE`84A+jhoar z5QFO_9+RFh4w&aK^^qal@cQ5Q^{)Edk%CVo?B==bcz5rk2g67I;yc6rZ@)i$@CR?w zU&*WSYYCa7=B?*_+9Z7hP!|n6xXZUat^b{_`AQRuvJrK<19il1d7}Up@hy*5?_K4093=y-4$3Ddz(qCrm8XfC*EbF+Hg|VHnJi6er z0iK)QiEB}XYrgooOMk|@ag4thXKP^x^9zp0%@b{Mc9C~D7PMp$(#QnH`dj`geLEG( z-Oigu9Blh#?8Dg4q%sauKP6Dz=7HvG(za0NE%W+Myye>KoYlqLR@fM5Nn}lPKW_sq2gI(-t*!eDKH>%;ioJi z4gZM4rLiua_6O7}$4m33B+==v(~Gsq33Zz+s8x=PhXK}mTRg;R!L{!A49q|I$uQdvoH9mm}c!5h# zgd_)?_MT|HVu~tkbn@u3aTfvJj{A-{4*u|f)8p(L_zRVnP9BDhQG=PADMxW@PQ-T$ z=Oj9jX%%gMHnmX0F;w}Riz|VWEV{61{(JLr&3IlF<^ z{KzX|ICNuh=>d+&H1#jznrhMV(!k4e=M(vy%)v0ALh{|<5qFx7FT$1g4DP{=Oys5W z+WXUc!@-Ap!~XZ#b;WV7J1<@uu5c{p#hW)`@Q$I-S7vpPizTq+RAh7JDXt$gM>(Xj zN()|My`-$+i`T*UIO%Ie01}RUq#2}861RAdNF$7BoG)2@(kEdqd3P}oC-=^0;!i#- zlQJl7UG&?zhr`8}Fcvps*z-U4h4^3pH-9BM%y(`vj6L|kZ(8mT_uhPmiTvZ?{Xcwz zcSj~O*k!G*HR5DtFUh6Mlffnqw>^%rp1Qre^=(~YcfR}mQoVsG9a-=jpz7B}67J5v z_|mP^2kW6bXw~!norf$`;20yFe4b2*f{q}8)#rV~?X^)fg z;8s19dGR;hlC{Ai-6AZqG`uaorR<`HeuSNmEzt zIKI#Xm`fB>LFLisgh&4gv+gUWFUle$AIeuc_653Dw{y&wJJI-d@DayGAMI^IqA}lZ zvqk%LS7=?oO~RIYaC66N#mYaIR6pxh(H8E6PiH9a=0sKK$elcpfp+h8F8QI&dQaZ< z^Gkg0Y*>V z%SwOpdUW^xaQN;Wo_j19>#WPDhOij$<)vYdx(o*kP<8gRKZfCcl*BIy*E? z)k$2Rb++A%KR^kugoCYMV2W%QM|iv^ed~Miu3Pul7Qv&xn zZiC~vM5ORk7WIBS{PdL;UH)z!*gYoj# zDK57p)1-<__%T}~?jP|v21E|cbr3xQdV>a3>2&P6%hGby-DfAK2H;*+WBu)E2g{2R zbeYxD@$j9T@Ub?0>fEK_%NOc2mvj&4VP>Y{)QNxPVmL&u+-H2!g=gNH-{JE;;H!;bOa)L!co)Ilee` zrVLEJc52jV)3&--6rTtS^V*t^G~5*E(#EYnHeU9u=ygXXS*N*#i;YO{1@}4Y zajaXMQsH>~!l!QySAXi$7=`#oXBK+-^jLCZy(xIO1!hYu*ZV(1%CwQsZkQ&=2)}TJ z(?o9asf63SvweMd_jmY=1kW{Pi&QSEw)WZBfu$V6n7)lhntn0wl=c)!Ay-i<{hqsk zlV#y@uY19BErJO^Z*iRip;T|mmvJLRX>-7&M^24-K{2Yg$0p63Px+qzwJ*>|&xT8{ zbE=Nx9R9bS^ArO5MC&R>az8h7NS&;AUq2&6eY?%GpK*`x3CEm<<7r>Ji~}CL!@E51 z4-p_qSR&=jN&M=v`D66@zJY&q| zQ^Ua(E(?tG>Wt%I$6xkc_Ir6}cX18%b$o|6UPbWRVcdE7wdeU3 zFW+%)pFwdh=`%O440pfx?r{6t@9^$!pKLxA*fA2q+CQa$Du)_eH+X(!oaF)n-Va

    O9rv<(=U?i^I3CoX<&3$*?DTDWCd|EF_=~GLL3`R6ef8(T>JGc&P+z7j~y9!;~ZC z1RtLpsnv|<%Ey9HzXgh2S1)Ba*pE`;Zi}6LQbiylc#4v3GM(cvcB?txVV~;}c+S);6FK94R zPE%%ciuh7jmSNK{I!wB`G)brN_$#X4n!FR7iA)8pJj^i~0|7+!QX8Sm=$#M*vlkb- z@^-o&)iB0ej~@Z?OrXs>(vOKOQhcnTN%9{n-!o=s8aUIynFb!Gfw8lD1Y#ZpbHust z5j3q|%WXn1@jin16O2+oh3frqzbnE-*bXjG4~f*>1i6E_7qrJg*SxDZOvpxWryK!4 zjAsS2$T7b}K7)&>4bp%M)q$vxH@Px=f;yv;Nd#ljTCqHrzhZOcl7YID0vVW)(kKBQ zU>TUo0%OVgjxRX8FzASLg`?=cC^>QF;L~s>-P+3pp$xcZ7$j?C`Vq*D(NV7}+`IB~Ucq2;(VQQCmXsE?$}edmKb0rwyg~xn)2NbcSJXdcO`Cg*3#)R zn9rWhFOsgt4Pdwb**m=Ztq&Jpyc%74gmB)hqw7{t)T#7S2WajHI1o48xPB*4qtrls zVI)J7vPw!tlGl%(#)Mv>P5*@JxJFo=dsy7m)+LH5kLC|a`I#!pi^MSolbl^kTrYd` z?n`6W-+5m4jJtBoE_ln*i3Q@1e)Csyl<^_QDc0@4&ji`t@WI!=iM|!5bUq5U zC^FfY$_Q2q<~F|s?hB;5ggyHD951ErRQKgEFSf|zi(X##kneyUBj!QFweI1EOfd83 zed^p5+S62))NKHMhqO;>8^6vZnt72&+NeiScYj`V2_awFx_taOVIx+{lYZrmqwa*8 zk=7$zUp*c=)3j|svBec+jhW%7i6&sl_H7ks$G0^MhFo!y&B)|AcjLUI*~RMWW8U-2Osy`!f% z1$POykOqNdX_~JN62>n#F1A|(7KM2u?7jMCV8#n$VzKUqoj4Mw-P4Emcxk#{&KNQ{ zQr~a)`i#<$8LK2{CtPn7C@qtM(L3UhRXIg2h+<@|YD)mPbPZQb|NDI{vXD9CU!(I$ z`>@=SVPMeLP8KJhcqaSH^OHQZK0A{u5rW+hE;LXdBvKQ#mV;qrRt|$LA8CSybv6~y zz)G-R>_5eGC+ya*{Q`Xz^@#;!wrgdvo~y5V2DbW_vLN2RT6)u?3(1@n-t3n18RYKt z?pVN4WeAVY!e1Uv@Ok{KM^9rIIbz4~{`c7R%#Px{Z@)bpymx0r1q*umk_>o(DHkYCSJc=z~z4~ERZZNg+{W9n#^reto> z$y4JTx+ETnZS2StJu4GG`~Ez$N=6V)cV?zJ$8{d%txeGctN+7~5XlevP+sMT-1@;w zzZyOO8oQK36y?ZrHeBR;m=AVu=X<nDeUr)cH8joDy1VK2M1~7|8Na|E8t7<2XIo$baxuL;L zPU1*{^l=jMTw2GdAwOMe2!S3Bj662ACtjH8NG_{#g!s3NdR|iJTWrCKPY}TEq~RkT z0R3z9J#pUYgQl`nL{YRVH3h+fG*U+Nek_o=;1Q&M;q$`|pSzh|iV>0=#QO3Gz58eq-Z0A^XGLY7^nUr^EqC8&a%c-F@zW&y?NKsuWlr#Ee2aN4@gb8S+AB%=~|J=LXVgE*C9 z8F`v~J?EQfD~P&Skv)teMfnm*7#STmW^qsq=}5u2amMk;8(G}KVosIY@gv>QaP4Pa z9;)%?U7?c(rZ>ql&3wlDHB>^i0r z6W4BG7TIiX{4n|!r|M6F-*HDW0QD~?Tp{EtynDjDKEMRBH>~k!@@Ki0w+u~~c^)xTv4>bVi=w@FE4bPN zD4A~Y!5I-lRm;&t4R*jih99j@Mdt~GGiM=BFE#b88UNOokN zWS3+%9YD5a%P54h>u41{XK!5GC`bpC%qPJ`+p(++xD#j#fHC)-YI2_-PP_{OcWm>} za8iF8{6u>er{`CkslU-Y0z6_Ykd3lUpz)3oBi$;`N~{K)a9l+?!h$aHN@fkMGkX%8 zk@GWn9>xC|*qxD_Y2Zu)|MF>|cSlc@vkCIV`$VLlDAH+tpYSIZ{4^%3bMnM&SCgNF z_IH(&F%wA1=rz8n$d44LMK=6CERwOwE|ZE@b7-bRi2sc>j)iov8EglVLUoRq>b;AX z9S4ZQ_?b#L%fLaq$oipNXLU74f!5?rgL{kX6DbB9s5#iLv}WUMnqhvOCoha+I0GOe zDyfWHGjI*AJf$Vj!`|DV$=GrLg_*ACL5`=zw;TD&C`C-2m?^nxm;qrbFUn2rsoc4h=qesRh>;-F`%xbt@BO@DDyTlG(O=ku9TfrBPx1 z%2Gd-()E<-ZYFt;JwDCZ$W%NsA`UDKciaGsM~Sd11bGIpF2S|K%A}M+A(K1C2)j7I zokmz*q4mYRGm%ye>iT`^Uxu}?g&9G5ymxu_@RUbS3z;&(XZ!SLSUjbHZe{zJ@)K7# zO)CuM;M5f3{aI_cr{d}7rvca_uX3-+-4bFtp$p1Sf-{S8c*t5N6NPnnHMmlP?aeU1 z7(w+4i;)$Y(J!pwz;lgBvo(%^Tj$v1HLaAXqZ6I?vgjaC0^;rqcZyrpk3a%GE}d9s zw~25kpAtXH7GiLmu&OBA5(A;rl)wpI?CFI|uS+|R$}Y~%3!|HCnkfBSc<9Oeok zk&nlXeG}|70%vy$_325Bz)CQkka?U$s!69>^f&bg8lCD?g}UH#u}evq$PMbUiy54V zADo=bXD^`8Sja-WP*cD2E$3D@EQ-S)aLNUIQdjWo^JxXkE@==p-3&%6sg}66!YE$} zGQtwYg>?GF>WDs}jO^hnf%tub-!SEFpN?B|8*kjAX2co=iq;B(g$o*v#M}fwW7a}b zzF=^v@*%9h{Z(Y8;gq@hRp;69k~${8Vfe-CuMB_xtv?!Ac107VZlhP1J(yp2ruz-x z`SHvlDb^%r7eme}%)L_cuCGE~Z8pEh2_fHLa-3;ypK!w-^zYGcyv!#ZH2%(L+c}L# ze)1-L4ZzBgb_RS8qs~^011;|@4F%vo?vQcD0ndzm+M0%-w>XAZKELwZ3*niQVL;9a zL9j2qC?zmuNRo~jZ0Ce?r!R0uSF|*KQ$w2~$4lAz9wNv>&>1Iz3u5pg3XXE%dPH2s z8sbR$HOFXZ9iaIRK9^v1Smz7WZqT5=@KM2Iyy+C5^0lkti`IhDJ=Q_s$uAnOX6$;? z7`#rn`r=OAIQe|CZ&zp3oAiOuCqEqds%~6pXW2Sd&9jR#O23IzE*k0!pt6gY#f%z& z{YHHZ!Q?b`n{n6?yReUD-1+>&v8Mv~Y{4jUnydCvI#2$)5*k4T+jSCWdQlj+BgSLq z&l6Be>(kV#zV`B{n9@u7wdr`?{D*H#FGdg`68ppH-@JBlc>Y&@dbsh`FR&Ak=L3tK z<6xUQrW~t82?H*be38gnfDKl-$xt4qr+jnNAOa9ri0am7n#M18v#xaV>&_%d$MN_1 zi#+FmJAMuy+vUN%><$;*xT@`jdYUb1LEXu(OF2gyZvE=dX2F35RX@?>VptanY_D_d zF302M(@uLB=VFMX&ae=x9@%iCx@(TW> z0AH<#&`&n-OE`$Mdvr?2$@s<7cdYM`l(hOzUlySRw=T&7kh(YCDc6P+WG)k;=vk2c z9+^(qcQM;obz;NyuYNhYlJLUo&j;7B;>H#FK#iF$l11m)QEvTFH-ycX3q%wYfzOj( zJ_}~w>v%Qg0UPosw;8maK)1z$>GOOh&F=y~G<>6FY_cI zLL*36{7y8Xjkn;I+34_2!)ccdS1ehU>mJie%=|XxCvry(;Us`}5=!jCrO96@tkRL# zNNBxTaE)tc-r`3rJz<(l{EhpZ%ZNM&E&HMy@D^x$njp`0*CCeWb{smC*G0d6Za^@DBLHW`VXC8bePLD6RS1b$4z7G3A)q7ImvtE zv4Uh7+ehk#6QYcKC$$GOLHRK#cA(<>jZO|3R3#LDp3AegeLfm0BBOx! zDw_d7LmdaNg$YmPGSW9c2$R0#`dc`-L}UQNU7YT^KWPeV@xnW7>hG{lFTO8YlR;Kk zNb?iqPGn2jDaWlFyu30oo)?ZNq-Tsgr<{AZWww_=qi@jC`B=`R2JMM7PXI>hcrrjF zxy2Oa^*F-z_HqJm%IOpyqWCiz^Q%j~EB_9fYggQySA1dTrHE7Y#*j>Kyxcmu?{QA& zU%1LQq;E4Za);H(OrrTxOMF%yJ5eW_y!aKJpFF>lGq7*1B?QCS-4#244ypP}I5BuC&RcXY&&X7Un; zBmU~;*g7T5yoIXp6Yk{&NRD|S7e{=UN! z3-v-^k4UTt?N>Uh&dz=h*&~c_aTF|4aqq74YJ4L@Ph)x)pYSM)aotVRx1%*}^T$2? zPLCJA`#U{hK?|+{M2UBT8@x`?;8`B6-^n1#HTuEO7{6ik9i2O~^W)=su9T?f=!v8o zk*PVVx>L*0-$ZA6d$lTXOSR(?naN_Sq<-3TIe23%8jjgry5~Xy>XK2Zx){xa27XW7 zuyu@CvFx(WESmU6m_}|?Nd=B1;MKy75?I=XW7VROVY58hOX41Q)r$PEbr6!^t@Q(m@0>*kh*)-EQa<1HzxCr1XE}I zR0Pkjbw5AAj>C;>Oz5+FJBxcTLb($Piedl#+nHR=!XN5Hc8vCC8yIv%v5( zS6>>wefxV1eO(kFwds`s)qMG<9+n+!leG>PqiBUxPb1D-7zO?*6Yj>p$gZH9)cfCK zfy6)O$kZDwD!FBMVY%5)*jCIScXxTa6Fi1sIPWq+et}Q0n4czPc$OF#dZ0O=Y&BS8 zh8X_QM|b$f@GyM!+Ku5CpL-RW%7a~swK7E$ft4E%m9W0~NQi#XE=;-Bc_&z3yAN-V zptiG9o4Q6Ee?%@mV~l;AZJhc9YK}3L(lQFEI$~$(OyfcEQrF5Ne{n{&12Eq}0!#Nv zXevW!3nek*MOf=@^(L=lyxV8s)B$ zBdv*YckzP;o%HeMh5pb?s+-DaFcsV*e-;{?hhTj;ctS=gu zEt0X1F1fgtE0*Oaxwxd){2fMc;;qOIXgrROG1{g564B!(-o`PUti$H(Xsu4L5#MK6 z@*83RDNm4$DS*#}a{p(wv;^b9l^QkfmS0cxkx!ndgVg?4Uf) z4n}EnVoBp+pO*S!euSYj>qF{P5+wz78YCPTM_~DDMzclRJ zxWaoN3*YPyQkTJ1W@s%RfTb(TMg{uQanm@Tu_~}Vj>JwsVE+B5Uk|Q&qnhpCV{wP& z6h7)mX?=G^k@lsswwBm`(0{u78qvvr(0%;^u@?! z-OjPiz$}xTVu0U1r61>QiaK??bqT&#FJOFSXD+%h#!rMDas2ZkeV)cx@0*NO`mW%8 z>Y_UHlVBJ4j`udQx!52lEZJ{bF0E{mj%k_eN>0+G_sqeb@I;;y zygJT_h#wz-;y;;~8F{S0elqGY$4`Ln=sjbj=(a{Ayxr$5+NdUR(|j0)gg8c0qB&S} zgw#-Sm!pQ-83R{;8Wg%42XOLkzfLRv?iWAC-cHzXRUxZ~lV%2ZEp2Ia;UR834UiZv zGH-}Ioet{Z9zP}Namgq2%H`^IcZ=w+(PgLjvA;JB%;lT{%qtUK!{BOiU;F_0_L`A1 z_xPJax?YGa*BC`lQ=A%BcdTUoX>d*pV`Gp~V5|F)JH!?l(3O@=l=A zX;ja4lX*`-rahnfO~-JDn@3?z%ymb5Dq+T3dAeT2lRtS)J9FmLo!tIxd-Cq-@l3x>mYVN1@^y^CG392yf4tmNY9zvU4J-u4A|G4G zyuJl-xjayf@R3>baMR~5x~eDK1bA`cn!D{fkIIHy)r&rW38He=3s6;mt8o^3;hyf2jk)g^_Mqz7wvrS|Z`u1Y+`L98fyJ=!Bk=gz^%v309M$ z4MubnQUcHUr!E_3Msy87$SoXrMOD0VFtO+)pr;e0KS6$t5z?6#<+7@#4GE4Gz_p*~ zX#rQ>K2d}>MBwEQ z`p96HV~UibLIG++zb=0ASLw3DEgCG{d9_w~6!4l01w3le;}tnNbH)Vp8oLkInQUEi z_o0R*^qTKAQx;AnYap0mNQ|L?u#%^oMUF0VBX`H#Ldg+qI>o3gzxdo*ISrd zVEe;4cf4EWFboGrqrJG4lM}u1()M){?i`Om2&DTDcU#bIDxG4Tx(*Q*%=JY*3cH7 zfq!_!w;t&Sk9^<2X_N{N8A2<^c)1vgGs^S?G(3%_8}^%{fDJV`4Hy5&WAp(Tc@aNH zCEHG~^m)@u2sBPW*m?0v`n2(pP>F|caW|DF zlrqJMv?z};1;K|n(RFkW)QCo!zBz~hh<7*b!AJLo-FG=&meUtzTNt+JOM`A-mGqV` z%g{>M?|l1-lda2JF>1T3dFv8K&~mJ`I}ykFlxJY^tR~`|MHxQJNjT;IlR;;>keSkPgGKi|rgI z!@Rnfk_Cbz$Hst7A2T*y15HNn@{tZsxtBL^u?n>WE`QNf9M54E@oi8iHz}V@4V~;T zow;Mxg&7*k-90K7@>%>5&}Xjc+ApL(YYC|jQ8A9HBb`Rsxg)<>2+|?sk2abnl?p&n z^PCN>ixlNAAL>&K^Wdm!pTWB<2=hD3GoB}YTBnS^=a9D+5cCvsw|-Mcd>3|+&*2_5 zz~{XD(m!Yn*6$8u5=eU?S#USlVZ6y$#9g>Cx~psI@bQ-88l3X@XI=DJNBky6=!}n> z&U$~<)KmF_&D@o;0wV1NXQfF57yKq~dVZfI;Ghc+GSzFNWnh8(nWz$*tM!C`Hx;b2 zK+6`c-&}ScEg`s@R^fYEh%Jcbn0i~!4Ehb-5?tsqP6BeFN4KJ%Vw;7kKQNg6nyd@;x=dqnJHo+*F3s`m-s{GbZy%l9`RU$a9}EWIVJW%p&$e)RP1tcPRBZ7Zffv zym0n-+riS0$c@J3)A=jVY2}^SA&;Nd2%O2CjN(dqR{&0R7XOsfD$ddfcfhDjO%wX_ zf+wswm%oa;$;;owO;ebFe=NP`^wACsC)STS>bFgv6@JU5qwyH+I7YOW(%SUcSMb(& z&2ms{jmn*}>bRo-%PEK%NdN#K07*naR9YiUT-cjn8vyr#vY=`?G90#N7|np`{5GGx9Xxr0TWMwDDcN_1VOej&@@4(o94-CGRm z8kqT6;TB{vUR_#u(6h!xCVgrK%zWsGPnnpOWucoU+WnT5H2(C9+vD)245wjXPvfiu z@@;qZocgJJT~-aErfVL=`?#Gvm-7JZiC^$0GA*zH9@gHGKYd}x6_HwAcX1%huIf>qLCl4<0hIz&V!vWiwJjZHPv;zXH!B6YpjxA>v)E~AL##fdp4 zZL;OXG-X6Dt_YPNeH(qIavNudAKADDw}OEsFNC|(AS8~vHIFz-Z{MAt!1l;HJ1o}E zU8CE>h!~cQnYW~iCm<#gTevW|5>DDpO;HyU!_gCqbk>+$brQ)*ObwZ*xl9&~nUF1$ znCMUg)zi3=Z;_%u7drGwa5}EEtMF4KL28PQDlBt*v1R3RBqwFMe}J*@d3GHA+)EsT z%7nRwU5rqCz`34dE(!q8@27hlv^!{Gn99y;5 z0iPgH*Y({|c8mJGdf`k6>kk~dgX~md0+<~=8n86{dW`6ihJzRwHp{=yv5ybn2aWU7 z8XPQ>7{B0a`dMV5o}BDX{iy1q-qNkB6lhfoka!%h`#yOC)Ez0S;$l(;} z<%<`Fo11&X57?RKQP6(~&imlJ$fW)2=XNlDXq?t4Q_da0$|65y*{2*fn^C7p5uK5< z;Rk#d_KgP|?@3y(!0SKw;$KvOrE=(D5c$&fph_16Sl%)8nwAsf{0t}U7&njxoSOXQ zC1%5Z$^NPd=?y&`VC*^M-C>`dsc9FPhz2dsK1&p1fQvgpU#GvEF=?*>IDDEO$1az! z?9HR{g^1hSwZs>1^JsnYoYJ;5ilI@BSlo`6#0aYc6m-n-x&yl`kFQXd&|mHTTcVR* zZZ-g2hG;Czz`%0Mv98C5^lS2>oOP-5y$%uH;HXmwObL@Zp_@ zsjD%n*e0pR8jDi6*7NWugYtD@1|{u|&lq;V^V`Hu`In(5NmQQkcHOFb_1(ipm0n75 zT}5+3eCn&~H3W@@n^GKP(IkEsGMK+>*N4qlUl_JNbt~W3b&S4s>nc2wa(MX-V0ZpT z*S#e))n=!4cBA#gOs@-|EZyJY4GW^|)Qie@;fmiWHS7_$i34x%2lNTR57{w$#LmbE zZ+|pAc++<^>Vk$p#@Gkyd?~}~Al1faeDq<0<<#jBw3{rX+Qc}w>*pJ0X>-<@ zJj0X?KmT5mPv8kwtA!CbzR!rC1RKHg^srq5~dTfBaU0>cFid>pgB_wd7E>$wYg zcI@0_7v@dBgG!zA-NpZ&hvtv;^K2wo!UzN@aa=l1^bTAZ11vmuruwYfxa5(FI z*xa~~9m4fIsa>P{ej3NTaO6LBT^a@V-U%jQd-{oM`OmHC?L<5>rG8E#PK03@n5@+S z<+A3d7A$Y-VTMr3F{URoeuOKB5|(c~eMVKgK9u3(1?L6iJy9lMbf|@pv z^fevAG0iXCN}tgCn6w?MiAof$l~Y=o`IKI`e(oOcKE4K~Po^As?rd0ZFS8IuBye2d zvhIl_)M0g%^ekhaNsV9R#h>~pUGoRtFSJ?F<4o8<2jt!aZYZ|Vd3@=+N14Q!KkFgk zPz#q1m(n7fb_GGzgDIi@NjOZU>}mD;98Fz@PbDGp+`+2#Xo01RlD)3ubIdZ)_ zi_?;QDmFo$@H&-vn#ie0OA(##68Q0~9*?oaGQm@lOPm}Z6@P+XBj`18C2bRPS=zDb zpI~|hIMcwH2L7efz;Xvb23LSi09WEXN;yjeOTkA`{^;UXb&N}bEd_scviy*oPm{Ao zGt10R!(PT)5q=g@Xe9IP{?FB|D(_Js2jYIC*l93Ff*F}Xq2&4<2YQd|xnlxt+4ZPnCM&y}`a5iL4@svJzNYbb>PR@d z3n>Yc9OcmCfZehd-wVGn-XN31k9EEQta4MKrhajk!+?(b{w?kp$Fl+1gVDJJ6hwGWBoVg-iXe$pqUDlPm7B0i^~LJ{!9> zfXJqIgRX98MkSm@3lr*io|TO#Hzq<3=}$Dc@~zI}1CQ9GFHSp9oSM|n4jyL-H4I3H zKa+Q3xaA~<0}iP>;9Gc^RRq~6p4V&a8m!}6l@ngZx4xmKU}TMq9@}=vj;9&&fTByh z3(MSEq1$KKGwZ}1uTYM*O`KAN7z30O<&@jT&Q5kNu4Ck|JT<_Y zMhvkrSixU8Ovij_w9@aSe={l{xx?7+pK6$Khw*5@#ZY+l@^I~!e`>h!rBCrG4R!~* z8;cxTF7nBDFz9R zvA=0^9z>~#=G~-exp>~jko~p$?EHo2%j`b=cV7Jx^4lIXD1*nZu#bm_@R7$Bi>=tZ zMFQ3z04)!Y5oR2PF7kb1`wZ}e`8T?WR~V+>VRv7HIsFY`7s*6D8j+g}2YmM!PGPZ* zU=JOZOk6F%0Z;;$9Q2*%ws(<5shg8U@>Jp8?xwI&)FnAPi}Bw1WJhh|OZtcGq`vq2 z-(Uy*d&9+_|Lm~+>aAgeUHLh-SDl!tE|T){%g#BMsAZ(;)L5>^JLM;zi80>9VVAzmI{5 zvNq|C6c*RZx#MDS;Ir_=*=J~|w0=}&Gjp9alq8})b?F0pqV3MD+J2#=%v)4w8@O)8 z*XLP%qJZ7~9HqWaeu)UBvq7@CH+_A058V*h}7ijX;`H#j^G%L{ zHed3xKH1Nt%%V&48AVsJ$`#pK{=F#^{B^l%Os7FuC)4j+_g!?u;v*O3q+UUj`krHs z$p>=^M=S)HZBv&K!~T4o-K1+AnVm6}g%SOb7XGvW@!HN=bziBMPrrE(I!5Wo1s0F- z;x*Vr=UMooPARkbVi@{Dbd&`QmX{(~Z#ysP3FjFcruu;?`zkjIvLcf5ow@}Uq2to- zJ(zYBJyG8FOO0rft&wGNPB~i!9?h+R+4^Lr=6NC*=3`Qe0P|k|m0m;6v)K09_0#$z z0X!9;G4)P3id5xnFuLoWNxU?pT0lx(jR)Ru(&DDZNyBbvwXB1iGBJI^BR{daObt&^ zSA3Fa%)`ex{)KzzFM94M(&83_@^1uP=3s?+k}rZ5HbD9=aC9M^ZAqi8M{9=*aq0Ji zrk@`$%g+TvejC|uBHMljdsN79RPtUGQL0pNu z5_meRN5*vFS0O!RI*aHnv*B~R?(Q_*5 zQ%A_sVbUjR04^1jtWTXMC#{T{=xMp!45vd;lLGtzjCZycTAhrKtx zIigoyHMv$j`$Thn_x6I(+ISUgSJ3>j2yv(Fcfq99UmkmYg8w8J-^iTAvfXOv*NAP{ zGBfUnah<;D;;C3k%~1;{EEOh+ z3+xr=g%T*6bFv%78p}+)Vmp&fJNgu;ac5e?`g!E&N-ZT;mz;_bX4xl`{6HM@De)>yn zaNQhk-?=+%bL{CB29eWTCb?SqI8p0vPTfpn!jj8Ty5!TznnzC9G&=FSdmO%U==yyb zzr#DfDee?D^_!P{452T*^aAU(`of}#?m*r+M?U8pf*N_pnR3G)u=;i+autvyjRBLyWlUG9~JhTTKHPw5e)sifpx<2IGCCOk3TqKwdq>te1gjAoa<@_7s!7~t5E z?y;LmKa-#An8nyJ^EhmdT0KTKzk&JITla=P{?0dt|Lgzz{ox<~@t+J2F#4Wjx6%vO zX2UPP_J!f6uDv?k*giL0zIK_ad4KrQ3$G3T^v$pFo!(}EMOzxIta69SM!uXTwP#2* zv>s6J%Rmeg{|CU{A}@c20ox(~G;Cq~`Hf%y%fsLKum5w5Ks&?V`LF(q;XnGDe{1-& zuYY5B$j;=4mPOmu_{Q$;aBa3ZTw?P4Gw71mOuFpWA!Y9e{Atup((tw{{}{vfThO_4 z_y!Zdf9=y>9$ve`jxgdrz5?f)OX{oUa%MyDGu-9WV*ZHjT}0>a%y{?{>7USyF- zc64#Vz=3@myH?lOy^7@{hAPvG%UuoNG0VL@64pRlM^QS;sN5HNut7F2=#w~QOLr7D zfs6^H{Zlv(MuVnzMEY8Sra`by4n}IH(lC;N7f3@u40d$1-{`OetAr3SfnpL|AklJPdjCS zhKoD)_(to&ecCv?g<}-PsCf~iLkxQECWiOk`+PfGS(Hn|G~q1hKqfy68=MdBm5j-l zKs@NwqiHo#`Yq6$V!#f|7#_vz<!&gG@|Rv34({v@@6o3{c_P0`D)a3cT z&N$qK0q%6QEY+*!k+P07FzUP`8notH6!}nQ9X-!mj^p*)!pX}TpH%=c@=MSfmuYNX z-5GXXVgU?gZ2hZar|D7XE3;U(KRwOh~6p`XjT8O30rN75a61 zsu=y~$2QKb4OPr4AHHV2sk)@x`H_V!ce-krr)uVSW259t8sZ=F{Mmh%`sv~x zpHI|1^VaMB?guO!wqC+ew!0tj&3odL3B{F{8RECW?(*#$SBG;i+@L;Q7`8o@xz!!@ zr(QDt!Ec?)0;@K5@mZ9PqVa-Z(-UA_C4qU}=@fNuG9&%536z1?aS`>@{*d0F=n4BQcd?EJV86wjMLX2{jBD*b zM5PaL@s~-9Z=d2qg>~{X+hAcOVNH}6C%j#ZLI0%Dcipz=c*6FrydWg{EJ|wO}oqy+y1VzxW=C_6)W*ypabL;WOm6RRp ziSH}PCP2K?R7Sp2-~@e)Z=N0%^eGMT)1dy2yTD^5Z~~nbfT#T zFo({4OF}P2ECm;ld)gp95^s@eb?6Bh`1oFMOLR-Y1=JpR5}bK5OV~@n$Mp0)$rJYz zY#PRxZbL9U$L+C;kc4`aeCE-O>oeTo*IBL|fAoKR94wzfipqn~vh|CMsqllF_A)wL6{8nW;QW;`x0 z{f|)m_}$)yztFQfQKXYzUAMb0#X;vTXu%24D59~?9ha8X38V#zA9Y}wde7z4ra9%Y zK)Wh}M0z^Q(H*|P;}Z@n%hZ!E*}PhhXuBC*>2LK)#K6D_6E2kRF^e*ekEUhaCSp=g z#1&8C)14DRaU}#^>z)P*r&0t~U94#-!cI(vhDj!wXYz=8XFX+NbzwpbXjpU^yqk~Z z$<3K3Ptblg*jYt?mG7pfEtxjI&^2B%G|lMac=&~1{;lC_UwJf^Cg=TbrhRs+L-=$hFZ37zG*Z9u#&?GQ^1u7EvEey@?VWhu~-f#W??7eG@B}sN37WJ;`s(wySKc?rovkxxGC3lzHUB1L6 z*Cdyu$X!`9Ez7V#LpDT9hD_10Ex@or1AYL4Z4i=dSQZ3Ofc!@S3{#+Ng0x7=Bu!eT z7vwI(>>gsw|`TI`9i98V*kvH?!t*V}#%9(pJ;+*e%=fug#d#m%@ z$V7qd>B~>MfAjedyDhBv{Mzar_s?#i$b9)6=GGPWz9;70x%qoC1#YZfcB>DU+{VLI zw~UxSv9*s|Q~MS8yDW&|`w*9hW$wzfk#n^fs~@o+IX_p}l2023CR@8aNHSrcrpEOc{L1LC4!?UqZfeCq#0upk}V=k-Gc|n}TA1QhTLM11Ocu;l`_%{_v z03iz4v5?Cm>cV@jxaDtp*3DnTb9r&60^V+2ijZ3THB_+~@+5=PwhoZFV4;b9R=T)J za+_Sl(KCL|WfZ>T*0?z5q>aBx{JDtpgy#>71Hj21IpKWj3cj;gb-MiQMLg&HoIL;67j>Bs;Fz!Am#OjXpc4UQp&!0~2LFd`Qnhs_t}3k|WB7E>Js zf36hg@lYsF19YX3O@78DO0>;Jm2Bk1Ci#uu8<_i;S3ECv)^XQki&N1M6!;|aE;<%^qg2*Cf< zC^|xeOmOy1ZBqU&Ip?)JN1Lh`H*auFL@eO^uMc))sr*>@Ge)Gvgq~CCq_}Pe9y%pYtk6533 zc4ZEe3Uk(fe*#Z#{{6&bO?#e~I3IR!w-a*kt^#wo!@w+lj3;*hkk5H2;EyZurJ#%- zgz;}@|4e862n3&-{6Qs$(R?rKqtE zt!@`B`1pdDs0s!22Z*I@+Ll4h{)RK7c#;d`{ zwlN4z2KP2e#}?EG#~LqT@06Gs>rv#^=7v6Hvj>@iyzfzCzdyRiz-EL07jbe^yPr$g7A zYX1=Sa@)k{&^zEa4*&5g-#paum}Qtl2&IeCdhg0g4QJ(vpQ<7ZnQ2H2d`D$nu@uZE zDpKDXOG-{Di}!d%04(Hqqo{(F!t#MEKQ|ZDm zLwjx%aBlMg9PJnrF6Qte4~ugok@|yPprf2PsAM$=8{C2)`lN_^Zn&5vec$s6;gN)zJI-r~mkWcHj7IKO`$)cTkMVSM&>;I7SbXuAua`|84~j=XAD@==n}mU6EC{Z~KpY4l=tJT1CfWP#xxk%o1F9+{a29te?Uj z$5$?3@`ny6_VdqL{uqYO`;@s2TVSSnyI&Rp_yRXCK5{QbB7D9{0Sg!B$v4A77Gk4r zk1J2H0@W9i5Yrr1*kg4s3nEe!k&Bu-E(8ir37iELm|lPDru(^{|9kFtfB#S2N5Aa{ z-Q)w+82|tv07*naRP$G7-4kbTx-(1nQ5TtYw;x_~n>$nPqaS?Iy?uY*{f{qx!TrT= z{$_Xf+`M}l#lBzt!VL^#-(A_Ab7yctl{1#b-#sRUF7#qDR~CgdZ6k))vAXYd6lHIr z_;Md(K700z`{jT5Ke%uFzi9mM03hx`Z7`p`>V^~FwzJgo5GA`b#`q?F{tVB*ekLUkB zc6!CVffaXOyM5dJ{L6pnKK`-i+&4b4;8vEl-O~I9og$;I#8;66OaNgt>zA55xxgyCkVHYN`Js13^ z5a%B92_n8&qT{*5)q@Kc7Tx2Y{6^fal%FM>8_Z+42#(dNySPpH&YcHt{j0CbUVPC{ zh)wnyq=bSuiG!W6aR8j}++*X4T|S?78o8CZhoUf7w9$gYktxTIvwRZ{4gjMGV--$` z2XeWnP8Pg4U)ks9Cb?+KmuS7--zpmC7v$4>xI2Q5or&c+!#wau6D)|cFoyGqWYZ{M zGk#ft%rTKaoF>e@91_OFb5l2rkA4`pj1lrF-kO(#g*)Dl%w50_e&`!lAN?4V@elNh||yHccY{ zUWlE1$Ap5f=s7PqM(OzTQu0e1$iN<~ecz8?Wl#zLx(1lGy=Rfd;~Hd=E0~gv?q#K% zenxn)&nGbib1!*kgATDVe&&Fi;P}Qi&T@)_N@SQf9?I`oa{|Zl9&i&I z0(@8A174mrjN4|**vP{dPe1hooy5*Qb==UFvq1Y^+PsS&c>_+sUMKj#K}nb&qLkxD z|K83U;GILr{aA?7QO5I~{=(+x9XtM|4PXqk&%j-a#HDzw}LY@Pk++Qu+#3)m<~BDx{@QQtzat4$j;1J`&|7 zR`{(z2~5yIO$kTqyGBnF2&2RU11|81Q6LJU(Ywf4foA%wt48XzqE=YC9|TTK^Pc+8 z<=WSCK>Im9*Qbe9tA6{OTMt}1+@>dZyosa{k9MYxhS-c|Jwcpg;3NYF&48YpT|5~k z>!y}G#{e{ZY`r@BH7F zRzGGtr2E)c0C$By&Xnlln}jYuh>v27`8e~Kt$vd6M?Y-j#3h*q5)D;Q*ayCxwty^( zy4)8HPJ{z9(BsI+>SF$@mK**7C;!-HpGT+9B%s~N_HN8TX?E0RT#i*-E-&V>1S%1z z%#ajBMtk^88~U(VfR>^#t^&y_Z(c+R7f?ooO`pSj!N3L@`FWKN3SJPEE0_e~rGN3z z2}Qa`vvKT&O~e55x)AY%*^7Uau>j0lRL`IY%&rs+eM>oi=(GQx`|aQToZJF>d3gmK zyvWT9Q_X1ER=E)2jTgUIJf(aNg~Hmlj^Y^gqYA~ew?1opUGh9ei`5H{x~FbqW8E#G z*!Sv}f0xcJ+^0tp3%O4_^hj!KqbqGM<1z7EF3h0lJyJ*Uh$-W3ARij?Ee zV?+*aycj6{{P%)%6cNTw9WQZ%q$jJ+k!i5ftMYLxhFJ3qo z845*m5tD^rUQ9=klYQ|E8(GmfjpKIayqi6J9(87ai)rRbWAjBR*ueJQoqO)T`uTt0 ze&-Kfb|3h_N8QEKyY7iIuer-BZ{oT?ZlJus;MTTQ#K#JXq3c_V?u|Q_+^aX1-1gR+ z?(Us0yA7-We)0N!_XOtYneAD(f{XGC@COgDLm`X>1SSk|q8{hgF@`VUdB1O>0KAG~ z9Di=Hh}(#M_6NVu{ld@xmq;A*;AJWE!PW)$M>oGyj>|U2ym;pg_wV3% z?rqM>Eth4r5#r_?lEcU`$UO0rg~dsKOJkm^;i9n|TO2pusugkha{<$Xa@fzEUvd{e z`2jb7j?bp$h3I{^c=^v}2LfZ1J}XQp`mgyJt( zcS_M$_Bd}?e8t@0vm#|osIc<(&r^6V?5zB70x<{QvY?Yc(Bb@ptT{gs07Bs@%Fh7b zVc*B^i@EGGHpK!g`R6XQIRM#!p^h&O7kYobqAh*yjh=H1;~|cra&;x|A~225MZHr1 zlzvX(JeoO$4`>@G*D{aOF1>?)NkgG;qz%zJmTx##r$4 z?iKYofOd89yEjoMBOjQ7(##riK9}sPA@uz$BI%GIstzZou%X*ATX{KTpyTtyhkq0g zPDL>Yz2b=ioLu+|pyq1Nh_eyb71}&3Fkk7ER{WIJsf5Xj@ri-jUU z8-I#QA%R8Ub@X|APaMHu;xFw&B?px@;U%lO0*74BCofB$*yBeHa*+~hUT~C6!bDr1 zF^4_<^P-|$*JeCG;X*CesNrHd{bQvXG5jAFGo^@#qU6*pE_h>gy4<3g?7-}^fX$UJ zQXFF;dEfn?zx6xrk6*muzV$=j>lWvh-P0Go=&qc;1%6&2IJTH^0ZMWca4Hxv^ z!m--~@q;kGSXf-f99%#F_}J{?pgd@z=hd46v0+;>(ejr){o1xZuvZlVkiPWb_#{^rAuxP z1+pubpTcc+=kN^T&%4$R`SqQq<#xVjPE^4IUG?LHs-6*1=Mo zM}PXviaYy}XWi*y$Iyg@Zx+|o7v2R^>}KD*o~7l8D_8--yUGARf^KZu$J zWfba*O$>zj6ccYC1qL<|y5vEAs0e{zselcOZJ2Me@{>3rz-@))vj`s~gb5zwl8u58 zxZs0Wc9P5>04~5Rq9_w53MN0d&<_PAp92Y|(Fx9UnG?=4-TVhEdVy2E8_|}%g18Sh z%pX2$WRqM5I|C6ej9UuoSlPGFzcr?D&QGJweBv`E--JER>s0GKH;GJOp_9mHo(m*Q zzJbjXdM6wwsU?Td^ZcP+@E+nj)=1^q-a>3!d^YiCR=%6yAwoZjVk1~0?^F1jWgpKs zcDR!S{`!!-%J&t2(1*_>|1ki)j011n^Y>}Y3;yT1$!}$Dq-R^sYMBp>W=ihbK@jcm z0(hS?t^n4!sG_}mei5Jw;G_uv^bt=kZc(Rgk@`1a0;;j2CQ$nwF!^yd6w(ZM@lQb{ zO@aRNEQB68ZJadafB2pct;is`p>4opM?P68jmhQHK_P<)7`6glq!df6{y2yanUe$t zn>ZH8xHVMXR`H@R;K=RGxEfx4lSE>rDnBoM;Nr-S#k%y))r*c*&Lxf=YX3t_G&~ei ze9uTb2>6*vb`b`dNc@}pSjhAZQ6gohZEYY?85>5)CPtwH$u!c1nW$?ROIyQ~c*m7l zf1@~vEyN^$Z;Y~~zF^zO?6@#PQgd7}s$Ux`|Eg*wI{-wZpDl$0BCvoJZgb2`Q{DQL zrKo5iC#{nVoMhmTGhokIsLPR+5^kKt6!OQx!$ z>ykbXiTFOa-0q}*l7W*99A5@TowL;2&w{~`S_dSmeNfcogB?!Jpfq-yi#%l2*&$CZ znu9QDWCe~&uqtj@%7wPTW3I{je`NDJAhVE_s9Wxz{K9|ce)K2*Q(WKXMZWY;C3~Tf zZ7GC=Jy-Tp#v(9RQL=bU8E*}(FZT0WOBY636!pDWlgC&jGeY8baJ%1c`^bmfhd=ZU znD_pIoPqeJ&&3ZA@l41v7Q&TM)aoX?>!vbuQ<^^rTM zJx{s$QyXpu1+@=9zu+!k{(+N)#Y*BExPvi@f%^~P zi_iDnm9bx5`5IO+PrEzom#|uN#eH#q-TnBte}k-iok4M$w=|_w7ImdCi-NPPKILjt z7NS@LhK}d!loXkP-9mwyA{24=wh=A%^G__g)6blD3s?a>g_Xz>Gr?^}_@ehpj5idUz;^>L*+Q36j zeh$f=!Lebt(3iq201Ij7t>H~G0Zi@kh8Am_neek4F+#;u!aMv>L4kb7X&ixrEiWrO2@ zn0QwMIUneUMJ+9q$)0_R5F_nLPMkVnzSx&7HqfIy^c8E>f`@`S<&C7G9Q`J|Bvl8& zB;;S>UBC~D<}n%h*%vkmL*CR*_YlUS9)|_F;KGh={Lmq8h+F=qz}`@ijP1RNdt+*sX9j0kjvZ=KRy@q&AA~z@Q`00_>B3X zGI!kYo)mpmCd%Y3L>KbntyL!D@@$DszfKqr!KP_#+hQ+a6m4BiXc@<77af7er@|A~ zFg8ky32n_^jH-Z%x_3%LPL#^=DU89Uv7kP3k)K=D878N;KTIKVd(7Pvea1N40 z3~o~6ORs7U2&xu<%DLBrF@W|R0sVRy7ssH-Y7$BB#Wf0~i5-RO5xY_-rH)bMwx45E zcd|dpz)1$)nHiY$=Uer|k{>9K*ayfsW7lEm=VRX?jpOUEXH>7)1yn#X0k|g5-S>X? zx47^6#5cLmef~wcn57r)+4Jy-s6H86|7TUZ&%RlnTG!Q$@%3L}TH zsej8|l2K22u48P!{(t-e#&0hCS~4-zH)aVJ{CKfN3M;tiOA#;ra?e|A%Ce1cQIIDJ zuK)^$dSWTVi)|hbTy*4rc*1B9VAo?)N`;cD*M`E6#o9LQTYVOaWWx$J7JYevJmhg2 zMWcAl7_ysp?zoq)-$4QRIT_-$voGNG$y|Mo(Sb%vTvO!O;iX|X<1L(VE8wXm+(P)e zyM2GrT|B>r6|=m(=C-@`*uFcDXX;MldBk75eHOLmZFg>F!R?&dK_uQc=bTW1lNYDg z(0y&~AqxAu?lhjm%EDVb<~TM|fZ;Kbf)#>7+)GP~!0)-!kS$=f^CF9f7$-{#96kTh zz!I2d!tZ$rc*;Hf#Ee^6L4kGUyjwxd=iwSk0khj~XY~%o%=zHlSMPqe`{<=#LVpuA z=N*)UBopZGx|O+`?%HYQXwThVzwGY8&%JBs+>@7ZyKNQ}QQVSSopOaLo^QN|*FJ8y z%-apit%&jLS$VcIRsm0M0n7hz3u&$hW`TH$w}J+C8qboI6`T@0XAfeKbDC`(8JbKc zZ}&_Q!xWfeska;Rh`zj#4PN*LbRUIvz3sL|3u(Y|LdbvOD4UD9`jIE#LLQD>H(DKu;WzVe86$zJeJjeToH>oL>TU_?+e0M zktnO=`NIeLU_kUk9|W?%%Sj{~gu;oA1de$kHuU2W@tvPFBE(*s+E=jH@GW4XF&pqJ zpFtcs+ETm;euNt$IUh)_8+q^&yTGd|-BXNLQ%s?P!mu$v_)iKV5H%XKq@(^2i)@r* zPV2_c3HtX5@_XqA06%N@_>+u~yC9aG@bgW5psBL>BOm$|p_sJZsFHa?j=)7*uKv^< zl0QD1mkjDpW*N+|7g5PiBa>94tA~S3jg~##l;8I)p2o~~+!V@HviQW=-{+5T%*O8> z=5Pnksm62JIY0S~c~8N4!r0Nr=ZeUf3n^?V2iWvHqA0p%BY2Vkqe2b6T@rjy+2h-w z>n-}{=LlZ=`eO^A)uRosPLk%`<9z(B5JjwG(^0bTA05DAJO2g{zxmkFm+wkCXd2#~ z1{|nm1S%5*j}?_XpZxgvIWJqZ@!i(D@~9yI6zO-OH`jOUeG_}m8||WiiN2o8WZ)Qu zCq^Xj_$E4juExKsD8c59(BKH@ERICl6j4fk(HK0$*t{LT6TJ$3$xRI0!}Oi=oP~MZ z9fhBN{xdLO=_JhQ__zg#xN=tz;H3}U!XfYhQb?Q!LdFJi20m}iKK0nkgkV>|Xh7sW zNIP-jB~~kFifJwJgrGRGv9^|3OHickhbo$S;YflqK+{K(CWDP1u_~K3Am%DyQhbMD zhsqF}1CvO7CkZ&|6u{l0PHUT_E}B5%hgN4)O)Ukg?{YO%N6zNFXnR(lqVeG1LN&&t zin{WWa2VT@=1B%lGH_%W;Q6elt2j+MJ;TtC3)q@w-Pkx)yakUFg0-J~Tcb1sq>~V+ z(N5m=Q8Jpuo94tK7`p&$=8FWw;3!kM9)O8OdO|cP1GULgIxZ#IAZGyUaqstOld+p% zg(s33oWVpNs#aZLAXJs;)RcQQXS+Z_@yT|Qfs+gzQwD11Z`XO-=e%zX#}ZOG@WViT zwse*)KUuS?e+Lz^1K zmiCH^I$ue`gg6BeZ$BLV z4Lm3M_FF6N>XTcz#WHTiJpZ;kzqI7$aNFcB|2~Qm2!r!!4#kRP6f~x=a(x}ei!Byf z!Ns!00*ZJGC% zh;j!P^5<~To2!h;o97l{_w2KC?!v`s+$MU_okt97_kr8yExo7Q()r7B4V{Od*<0Iw z%q=dyjuwi=yxli)#9Yi`rQp)sJ>=?DtOCA*6~9aFg@+H^b61}Bw?@YEaK$?chO(-b zx8+7Ln9pbR&uPU)XI`9Vff#!_W5HKeZiiLEEMQLK2N<(wQCR0Km*qCcpbew)W8*vK zA_^%iMzes+71@MLv3QAiWgs+*8#9B=6QIHVw3C_>I2r{r5H`V*4}IiGRsusUMI1PY zR2J@`iG+-P_60F_;FA~_s@%HO=SJd&YJZnMK0rxg2L*SGXL=q&sUPBaNCAm)kpr`p z&uo>|o6-$977~yjLa_PgvZBEv)C}g6+}@cv0Du^Npb8dmCSh;5nY;n9#s(h>2XJmSbvsSXgMssgMn&4K)DxS38gMIyq!5Lmr35 zHe%So4|MkTapwqGz1(2juD`1X?#=JV8jV1{hhH*C;S8)yO>zv(SS3L8Nz1mXxR<^P z2oNFmwyAo^!l~goAg76R`2DHJnlitoxlw6h4`3TBs1@!TMYeqiJaf@&?2&|w>!&Kuv6cmKw3P!ju5dzpC;=0*~l^v$N)vXF}{+}e5% zKSEL+#j?=^aVLLAfkRFY>^Yl~OAX3%Q>}>#p##IQr)wrXdzK#pHf+*6)20=P;qOjg5|AVEDKhd0I;N6}9Jr4(* zW=E1Tjb|e9SrToJGYZ;jVB^>iwCQryr5osG5d0wN8{}wG;5<=w0H)36Klz9Mx%=1u z?f(Wf3$C!jp|1byTJ-v+7Yz0J!73kTuUuWWHB4UQ%{f&6)U}K5Z~WEILTwTdzgaawWY^Th%nt>nO&Ky~D>S6@9+-_FW7K z#Q_=fG@fzGXB+#d{N0vW3`U;?TW)*XZhMb~a_7#z|6ASGom=j$*S1kq-FGYJx82I( zHlCOJ(4D&c!2Q6dpK`zX&)>l6R;;3x;xAX2@1j_{je_rjTjleQQ2^!bl&7%YLvEja z`V!pxqBZ9V3!!q^cxx5UW?hx`%-ksynIM*7K!T7r==QhYW!}Q-N8F~I0dSqP-L&p1 z(xBoqdr^(Iu+VO7`ehx;z z$g^(zp+WGaqV_%{fJMhv;Sn-XBTk0OH|^(bAr_E{P4Q4lywp<`_EKnM?yQVhykye` z@z}IWeB5k13WqmZbHr1W#UYR|FH#JSZk#VR3>@DiZmYwOBba-9kL_>c*rHfGh0mAt zcmzC$EAG*dW5&J8u(!vMa^1v+^Okc$=PR0&s|>$1*`L9uaV+Yq@rZqzfDvG$F4!d^ z7E>9E7Sm-#Fh7MEbQqlGg0#|BejPl7a!LfNaBL(^2I9|W3UY4pDG+!3M z;30U%rg)9BP1;BltCHA{4b^0O=>7khoLysUnmI60C7le}sq0cUJS~*urj#IyEa@B0 z1GPrYk<2xts+}(}j?5;?rD4aFYJ9KJkMu)>PG2d1F4 zdILRao@C%81BaY}>@y(iww$N>v?nKYL8K&^O2y@U0bCHJwk<&X)Jk!tC!awDI|GT$ z7A$HWk%kSh^x%OFbsq8~euaRy{=Jy6@x<2j+Xf=Ud!oe)Qw+pZ&_`P=iYUWYXd(d6J@#A?8KAn$Ex` z-n2gRIOB!I;B^jFzhC;t{{;sz_BG%u9PvP0&T*0{LMA|+Sm znG4-I$B1Zc;W)MA$1K?9?TAriWr=MUmCgAX7J#vZ0t)|m#9J-O^=(n?xx3p>N{hKz zy84t`{pugPo3Bl~v!`+EaNJ6n#oT#3C-^;AZ#nnpzRP{?H~z$J-oEbk*B`(RiNIW& z-Pv&Gu#$FlZqY5^mZd8wxUS;4w;y~zo-NGhLt@**EuLAMlzhTQ@(b+V?gRJm;Tl%w zo^q$Ka-ENP6{ShMU}3q7aquWET$*t|@UL8u)w^3;c=k0yS-XA8b7MZ8`_OlzM$wFt z*RuDJj~%R*T$shmW%>s{i@(vG6x$f7b4$zku>cDj8i=ma;;LWH73{q;6hO>HeYrl! zH+7Bn^c?yeI2_4yn_1N4>P^Rc7Y87NkYnTr%{9-$MX?v5fettBiC2M@Qzkk(W19sW zTzDgfFD8O}9hcxKATEfB!N$vV{wRro$kMkUmz`p0i`-0Oe0a|E6mGfgeQH8d2KLl4 zYP|c{?bVAMp1L*nETcv4%DJpVih6e$=_=w0yFT*(&tVxU$4u!--kSb#>~7kq=Un1#{| ze2UIe1Fv&4iYbfZNrFfRlBuK{Nj!(hVoYdo1E%>ql1eWYMbL|cT%wDB1{wj<@HpdJ zk{(p8oyEyWTL>>ma1|R_7u%G*psN5k9@)3^oA1X)e7ZrG7ZcswB3tX!R7q~D9XeYX>mAN5Lvgvbok=*YUT)k#h@uHj@ZwY zimKC-rPQ|WI}INJCF8W)amLNu=keIs*dFKj<#N- z;Bo;9!N_eovGQ*ZuW2c$uu#13?r)xVJE(-tpg3^)nfJTlLi*U7mBxiwodn z$q5pN-51(uVU|ud*lL zU@P-X-XOpx7ZiOn!kO2|5p;|r9A{YtCWTou$3+)-B}TNRi!o}<=6F#V(4lUvJ@tpN z$d4<~XMvF~LWC^GdK-1ao*>FF4<7Z7`G=nYAU&AZQz))8PjtZIJ;xy{(J4djxk{c& z>g5f3wxfS-=sv&{6!SuT!tDyMH;^~ z6w=SMkil9o-b0)pB#j-KdM|SN#vbL}TapW*2qOtYpta|OQhWx!fHklXk0?BdO_My) zz(9sW6<)rr5^vUe2QbZVKnP)qZs823(@RCE->RO5?}4y{H@-BgwkVTmH|G<%DwWOe zJ+v`sjhQf2=M;HArJh``%TGn;#dz1)Lo|8}CKp`8M4y?vMrm6%=8}QxOFEr1%BR?V zp4IBW`{d&yur;S=$g;$b0R8`EpTxv5lp!b5lMI|>;21I>f9p3NLQSg>OGVidiy)Pz zy#hBy1yDhh7{`y53a}zhI3AS_W94`x=0`km4NqbSR9$Obe^i zag`(faXo-{wCC{>_tD@ChIh=2>iQ0^+WDw|NTGTe5mBHzEq*MR{-Y6N>QuJrs#?CTU3-5x1f$qDx^N+i&8((u@`_i79J9XN(|_~-}_nkT63@d+COr88xLs=bI!wkw}?5wMM`r^ye+g>(I1Px zIv?aN)Pi^J1J7S`FJFIAimiM;E^k-KXW_beJTn)?-%}T^xC@t`bl-mUS@$g$|Hz$R zcm<@WexTs^@ZqAne`{WflCv{&?y>LujC|nvJ6zH^Blp|=tqT~#P3bTnoD4+x7k(Om zV)oY71NWUDxq`YjZ*dJ>oFBLhN}J}2mgwbNY+Q)UzEQ7Z=AIW*<<^#Liyecg5iqiB zqe$W07a)y=0%?ObUxK$rl%X%dQ10VZIJu~%T%F-4#t>8{KdN9+P&OpZxS*wOMyw(W z^)fXmfumL4pidU`}&7Il4Vl1E4Te-HW$IBz(U4an z&um1mGTkfZyL8Vv%okVn&SfjSt0@VeVbsTYSp`=V@c>4B7nSPd<0V?4p$e6?0IC>o z&nTO7r_Dikb|wj41bDNGw&~asUr6H_95x@M@0hl|tAr@2(~ZUx__OlsS zbrw0$P?>U?y?it(Ha|wBgRS=yj1sP-BLF{Ub)dxB5Bo@{_9{rNqhqB}xX?5mRa5NS zRuX(BJLoe=)|He=G`S+-v7IKKU~H9WQ%^?zJy6-IiVRVJGEB#Kx#;GxHgzxay*W;Kb zc}Vi9ah&-|VzHeN)TCll>PPJ}LF1|&-#p%Ujt7HL_ATC=um$K47~4^PN9jAfh>G^c zT@^mWPhZZGvpnx5%yG!<_-($TJT^L_Gl}`c$3E!({@?yt_cwp;AGjC3_LdZZ?H{kY zvQZ1dy4Qjez1Vi{)#7bC$Cdhur_Q#Me_a?IF9OVm+A{e}73f*teQ_<4vcOW?A(heNOSf>_=eKXJy4$xOxTl}Ih&17!U$_nQ z?%tvlcz4m>!-}Hm{Vi&6(FM0mMu8Y>fieDB6mu`bIph*Bp8fm5Z*#YAy@ulImV5hk z^p}_2wW|-nJB6b1CRPFa0`LrekT5s5PuCoj3VjW3|s8~%BKXIt)_eaxM|@{~Jw?Ricxtni(4mrmVs z=N4|ueB-l@w|8dU+i#(qEzh7t(R<~*_~iKgrkVHqMc)1yW1T_{{EBGEQGDIUO2$3J zwYHAusqQ^+v$L_18EBNp$IE!^rel)x04hBn^xTs^E6z-^VR!AX3703(!A3u8Nbm@tSNJfj_fMRaoGDrs(BlS|HP)1f$TG^ zr5_-ORAycdF!xZ}Mxw#iiGiN~Q5dIAY)J7zPPs7ksA=5eEIY_pqT{B~;>)HyyYY8G z5=>*umM@iHWX8^p)3y^!gO74?CZtisMk@yS&hn6G68QL45wjT^LFr9e?-3R>30gWv z!h@j(6x+5k8@P{N6+QQAuiVxwOa_Jc5K6$tNU>gGdZro2;Xla*YSqm^p=u^%<0Nl& zhvd<85O6Y2(C2*eb1Eksqn{3741$8mD9(J`7N6@1^al~?v$?D1Tuxqy$A+83abRTA z@@|4P9o0vB<0t>SD`G}88VYsPNJf~J)k@RSRuw5y-S>p2#wWd#4167CK+g#dZ35?o zrL);0b*f8ynKE>N$zaM^5f|}Qtdb4dH*BrX%qmY~Q-w?-`E~M^M*f-Fl0p#XKsDl$ zBAYiQNXgZBvM`h2q_Y6bAhNhpeGCvO$6oC?r>B&j#XFsYLrp@wk}80Ha1 zHq4dgpH^QF=s3m7C#M@v*h@9OV5{V2Wvt#U$f9Pz3((|LdQ2fA{bGqWhPh`!b4DT( zwMGjUE62HBX)j9Jb}7~_S=knsm*fH#ZZAAD?XF%v=l;fD`>gxPKljNtl@6zs2m{sO z28?zM!Z%9_%5ooFI3+D%R9D(teAie?wqwYc_q%r=y4!cw+{Wg%TbP@5s}Ejx57wS` z3kz4=`ZjLiJiG4Z@C?x1J*<+&b01lMm45`G_{$Z*`NnxP_xLrpbK^C4_pN>RDxT~6 z_$90Y#`A=E)95pESOq-)hP%Ci!ZFCEP}E<#_@vwY=y|vLd%uEW>UQ|5n09LqH{8mp zMdZG@97VirF<1NU+_@FEHG}8wK7P(kJ-Fv)PoH%cp8lX)T3kkP7nhn*Ok2b_t}efV zmCP(Q@mAJz?$(`Y_u7kCoy^6Zz^#1fyJXIBWkKnLSen1%wxPmZqookNgMdDioYnx<96I~A6Ib%g%)>_ z!MF-cpWDf!CgTc}%EP^6JouD8MHm!s&r4q-V?i<7;4i(1DZzUXYzm`*&O1nT>_P5T zXs23F*t`=)L<<$|8|=hdQjiTfk=vGsnD@i8Q03O}8X3K6bhgwHqK?H~_Lla&2=Tj*N(W-&89`ru-S?&CuCOMko}Cc_0;38ya1<8ivF)4GdE7^`$ZO5V!QCE_ye%yV=>1R+QY+9KEjWrWjyMZV%(~fbXBJzk> z1O{LoRKym-w&nD?wj{S1)*qA4#y=*-usBc9CmA?|4A^;GpdX>mEbtc#3sm-eC=e7x z8Bgd6(4(VGY?MtJX#iI6BChC^V}x2^W9&6SH4ioUC|5N*^*73Xpgud)xplQboCDdf zg-+d}gwNpjQ2m_^riXhZBG!2}u_!*Thazz`A&jzh?H8|C64+yf6o8*YO$fvDJs#8%~zs3nM+Y9n5U>SLP+P-TT; z1fNy+rKOFY?z&$RW92D|UMr{O-A{bxyWC&+iSKjY^3Bh8 zBnc)q5tW>gIZ-7YYAc(?*>(v&N?)?cWy*nr%%(kWa_G4I2Wy+|&YcHtYjewOZ}K+I zd+zce>U;mZ+qyjKmhmje85Dl`>|_4|;;3-P><~ch^1K^}6ENG&iE0a!+9e@aFE8+gyIaEuMSaEv}q#vvVj|<3B%#r`-9a zyC?$Vma|CY&fbDsU!Qh2u|gSZgTaFR?1GzKI0ZaoY-jxP@=GWlZ@TSW{1apbh47te zdG_)4E(*XH!)v!!-2K&C?k{}i2c$Tx1zv_Iwcb$hm5{@m&i~%$87D#Dk!K8JMKz1r zadyZgLF_nQersk8S2=TGGam=uNCT|Tt`L7>mK+mkY~MPR+(K_l|bbFNqy*ah~u;1zeG>#oT-kJHaXky%EDrvBa460Y*YEvaunt#$8Y}YAc9# zL1@gAXac1*J!!v7GN5xp_Xinv*L*t&@3^*pUh9vI5M61aCqbj5eZlh03;1!VA9X|G z(eDInlm4wlejixlEub|PHEw-orvNQsvN$Z?m9&eH&@fIIn=d4L{|2lceP}cVL`)-J z19?ZaFlHTX8uzGyS*r%yw7`~hQuf$Wnm$-Hf(SmfMI@n%gIvC6GSl5zKlTS3t z)JfW#pd%h1L(Znm2g)-Yy*ALMMR~Fn>=ON9br6!oPyhKAbQHHf>T;~@>o7~47I)Hq zcVs~4!#JZIHHQNCL0r_sDzFwrYTuz!NVYc?rm3KU$g46%(yjba6fuR*nW$68g?%4P z!EB(YcCd4K-)M5Xf#FOVj&N*5GK#)KkytF)GL0XoW#M0`%?e=ai~JTjzQ2B!^p*Rs zSt>4zkK#;JW0;&=V}vfrr=_>T@Xm5JT^zK4=bgoSjafB<`TTM){yV#uFPIRw1ZK#b$YqVyvZ+ z#bL)r3FT!yAZ246oD%3>(Rn|}RjlR;pY)!7M)}ZKbl)q6LEvUCj*2Dst!{?eKzt+tA$Qx`C{W<}ir@ELAAxAf{pxT0o_qbxTe6yS7Ps1+!L4(ral1ZV;458# zJWw1JWB(8KW~98xsjod0)b>yWJbQY{{iT27Q|>SSTR-fsT)9wTg1DinV^kCJ(z5BB z{87F}={1hNdyTg*z9){w^?Uc$-3C^KZ=>+bLM&xJ_{opCfAQO&cYpGg&$+9oPq`02 z!{ajLws1@6wVf4Ur`@SJ{D1%jV6N!h!3tPkz|;hyB)PbPWx!Yo>(=oc;d%GUjVtcr zxjVQ+@Gg98yScr$VgEGREb{JP_3VbbfA6l_UR-kbQG{K^O4@T*&b!5h`PN}74evwW z^qkC>jm?L$Qh5jCn44Y1ZJ%dQwB-|v_ua))y!G=gp3^($wsz;-n>VK1y*pubD?{G} z3fMhVN&O|?=0GmaZMw5~_U|_AIN5e!wu##74)U_Px#&}a1US6k2RPeyf=Z!L+cM#wu7ugA9SA^2^ZzA?O;g{ke&g~o*O#+q~Ky8u5U%NG0 zD@D7?m*Ui3#+jGC98n3 zlSoL0iPA(x1vbi#XbX9%d83-6k}WpSGj>)SkSDu$X$EvI*u9x56Uhp>C(SuDFn?b7 z_g=O!V9iW8ugvGDLi97g#;bao##~6-ayRYB6GZm=!<^j_rYF3`#qXK$z0-ivGOi>x z8Hf=kV1oywjiMxG!nAXeN2rgS*zW}Yw*lkRaj@;jWhIn08~*~ywo2dLn8s@%9H*(G6S_^oeic0>zocH1H(B&ZIEmNof%}^ z4Bydh8MXvsoJiT}8f*flx&Jws5an+zYy&8&io(W5S~j*m_{{w1x;D_G^EzoyGKw&i z;py(O=*~|~OL>n&olmIKaA@kh4BZAHb(j#UaW)9W9 z>NDnpcL0Gve!mYmk!)Pr)|d|-Tz>}j-QU6^8S5z98*kmkipMQHn{>u~&v$$)p38d5 z{n~GR&VB8bH{8AZYf|{*pYn?fi+C>UJPN`nnuUv({zBoe-xl(opD}-;jTiefya~@J2+gYpt-e1A0 z;0+W^7na=ascR^de$~xm1+ClLbsHNu-G$jNxmVVo!mX#*u?qR7d;N_UQTV;@wzf8a z*>OMo@ekqn`W5QQ$O?&i;>u(0^5ZM+#!bY9A2ZD3*}`*kbMEY!^SG_`qPu+hp4@_Z zo2!bkf_ZIg*}d_`42r?)D2k%si=g*0_t&;oWeUheUKEe#`5asfelu%R%UJc zv;&8pb2O0)k669#3%xA*+D)BW+0nJTymzH4Mwk<5KQ|5rR994y@}yDDfTmWpL-Tl& zd(GVB_x{+JBV?K~<9V=J2P^@Zpqf%45q$A8L_UYvubBk~(Zg2}r!jcaVBvRiNtSwb zN^$7R_Z$@=2;Vn$zA2_cP>RvYB#vgB!CZEPX&6y1LcA$Qj4LAAjewOMmoeH8WrLPb z*pCgPJW$gUcGH%%I?Tqs9ZVxFwn*6~C_>-0!b#>wxax#;O^@u?jLXxe2jS!)6Pa$M z@zlmXbO?b*PydpuKIaQ*^fR~`f`F>p6UC#RfgW=%fh3*w;6|w11}#aOp)G-t3UzX8 zU-+6%(`q?t3r2zgkdw*-^-ckaS<)H91x-e9^n|pX_oFV_od_qLf#Sq1IB8D?Z>jbL zlOQTw@vDI8L-}mG0;ibpc4)?+Q|WOEQP;-WlNS{UYOId>tr~X#qDmW;7^$wPs&0oW zG=x5OjAaPka^`kL!-|`+BylC39+46sf-}t?hN<7u_%xJ~u9t%`K=h@4TjnLj z&_OF{iA!}I`-$cvk6{3LXP#{QnxEX4#pG>^9T1Z>%PEhtUyMVA9FIvJ#rY8PzQi7E zwy^s5#TVZ~VGYk#h4DO!rXTz02jxZFS6_V1{nD@e-|nTC-;ignuCK3o-2A+o#x0`# zZK83J4}5aL&|HyZA+{Zjc*h%WIqPqy>v534zb|${hZUz>{kgrpB?aGQ-0JyTzxh4x zQ-9{8?js+1zmm9z4|m+nx9*b-w<;!n7sb74x4g21XTL6^Xw4$sgf`9jgy{Ox^l}?O z@$Zkmo$xsC1jxYG-FQ4C&kYun4P_qQD8?UO;}cDB~t77CbKcoyzHRzcpqbKNatt~|c7 zgSC@;ZW{&Qjh#h2Z}7CthT#>(csbrh@j-Rp0^ zf>ptr?%df^?ni#`oABd`Z$VD*OktcXvv_Vb&kZ?m&`LHvhv*lZcyf-ERlkNhY(0Z#>&z@r18ZS}3wWmz|t6XqVVc3+wh+`?iFi>rK&jz}tvWhFg^j5z_K_ix=s*M`Jrn`zRtl#%!p0+iybu5(<>>prhrE&h z+*Jdg75Q8jtjE|~dC7=(80g2lGShir_i>OSC${}y7{3?LSFUEv3d*<|U@K5@5#Ho0 z$zrwLvdZ|wcUjm$Sul)aL4$3%Lft0zFxW@D$Fvw*f;Lx_AZdNz;!+^~w&9>Cn#YC#y9Q4q|9)?Uc*ftG-KT@tti$W__2qJ9$PZ z)s4WC&Im)R?g*-+%H1d?m#YiaYyU9!5<@MJlH*!%LpZ=|;Wf&{{V0$nObjcX3SUK> z#9Lu(i~GcsIn25(&QX-s-eRr1MS4Ji^&?a*fpCKVq(5zvW(i<+i*3 z;DJ2fHR?Q-yo)R-zW66ExtCtOfr8vy?yZ}5-1^2QimuykZG8i)Mc2{alGVD#92Y3D zVs~*NK2MkhwT+DptSW6*$*}-DKR<^;;*wilUUUm6E-x+4yGxIsch5X^#XWWHlKZA_ zc+S#d9QY4$(RO8pE0cM9UaUaHDqzZKfAQiO_taAt<@VKTY*P}3rK(4EZ)4UVN5&4o zNQ{zUZ+&oX+`ISCz541c6xcVV5G=)D78|kc0l-2kSBQV%k6&=N?%c!kZ6CTf-n{7^ ztgnmBxs`eM{Chs&9&S$KhXQlB=W+$|IA0+r$6;^_r$de?$V_* z&GEH^kVwNDe0}jtFT20HjQJ~#G@%S|6&N=t&)kXKsPjAayy8U3$ z{mU=jcQ3v2Vl2FJjy-nqs*v%b{>_`$rOgZY?DId~B7F(-{NjaWtTw)Ye9mD0UU1J~ z#q`;>eBxohr;tLG)=8DP1JeFjBfzI0>Wn~fbkf<{ph^QuH*uci&5Z}H^77It3d zC8iC16ILT{8^s74P&$`H9>O=Hi11pNLTn8z(8?pzF*ZzWrg@A3dDq1>QP?-gB0*tT zeffgvKzPC7!9=AL=upRrO>H%*194cg0#QLEZcAg*c#d*!!?%8Gaa)YFCEoU>6G-}S zS>B^=`?!ztGB!f4K9<9E%h@l=vU8501L~N+0=f2BM$Iyl8>E>Mp)4X*IIzrHp^kzAZ zdU7NkOKKEonw|woJJBVb7IZ8@o3btG4A6KjSQ>4=rcLK0`1*MrfT{#l5f31KG@v&B z8qp&&wyr=Bxc$3QW1r-{$qoKmJ=6lQ9jJP>vO^e^x;Y5-$Ph;XN5X{%+tQr7Y@k z(=o88ZM{&L)BVX;UUsj%b^|LhH{DGX1aIHD@9x}PMG@Aof@4vP1+ItC&tkPOHx|D9 z^JM)qWvRb#{){_+?lg*LXWcSZkUst7CHLGjPslS~#Rx~FiASSCd}vAm4h{0Kzsn*e z{^ttI(`T04H+ zDUVg%yZ_L=^71XY4fO8zo*YwM39NV)^LfnIP$XW*j{tb=AL2&=e5SNtwTjilm{+vp z_SKhO^Da2o@IQ6;R@X2;Hc7^U)^MCM?d;P}S?&ht#GAGv_ z;@QIYAIOT}ySJ{(oLM?`)@|<2$hbI9&zxSyoLuBY!}EfDM&J9~lRmeh&v{NAR~j#( z2z=rEX_=2_SC-w`vnx^NWc6>6YX z)?(=?P_CYE!p1Nez+Q)r8tyo8<($fq%WYIeOdo?|%$<$D)-DY}$6B*ddC69F^6^z6 zs)(cMQ8b#^n^tX>GhX?AoKRr=7#6SAwQ`FybZnAJIK>a#d#XT~@g`mE$ZeYaSBHp# zJgVV8$xY!qMg|k@)N)|pfH&WFYTG2KX%&GILV^ht_B)vR;>AyfTrv(Et*>f>WkEh} z+63SDS%_@M+b{zt=FCQCuvRQ>$we2SWzk=7NVNR}m=qEdN9RsXX~$T@Q!ypUlPAbvMu7n1i*S(`^cT0`>4CkRCYl zN7xV}Yu66)-7Sd;?M_2aSU1TLYx{mAJgQ?$;*w4xX=jrI?t=76hzCvWVg+y&KZc`d z(iLEPNC%g|adjL6*jr&!pu{cZ2x7G(%<@#sEW834DIOXk3Ds}SR`oUK(JnT^{51W< zHV}^DRU1n~o7mR|gq>Wul6F?6JnC@BUU@7BWwt+rPqE62zGa+9hhiRTUYF3BWXy^s0O$WeK3hncLW{*o-oZ_B|TnqU2|ktp-uDRbAl7x;}qu zmn$oNd%`N#{lpqla)3vf_6aN!x5;u={ zMK?Q^7H=zW5W?EzMa=NsqX4xaHmhiCJ$h`-I-L*v%dQ`2)O zzAjejUUO7$5$m-;Mj z2hCfP&o9hM;hM!|7FaD-?MLp_$Q-wkHaS4@kqMPo#g;$U5raIa*h0lT6R=CHh(kwh z1z&p00U2k>R&fy&=#rt6yn{k80mMUW?bco4lA1Q^hg zt3tx`A512U-u%X9^36i5olb^FomeEDPDhhb9<{&8L_JxSp@+DS_rRG_r#;e?{)v>+ zkHQFRq>c@tNqaf-Bh+W0L+0WmKCnkTyxs?156MxCXDlDpljDGqtGQ&#cSb)0n7FP{ zP-lp{puLaKaRW<(D9MJzX>wFD8=)?lv}B_~9CauYLM4NdHmR@1X+a55FcN);fbA+# zZk$3}ZUT?Wi?k)BjUj~9_S{3FJeEWK)yyrnhEa~@JLT=_DZd(PzhYAgu>uuwkxqp@eRlEp)v2q#c#G3;DLV*{XL9wF~01N zOLj$v#x}-y9|cSn`ljXCaJZPI3DG^cOtZ^vqe}v4#I@ECcr&iRRtqiyJ+AcZUqWi; zv`Q$F4p(Z=;`ref#VES&A$Kuv-d%1jQeOye7XznQxW(}}y>cpAvyr(By5)$;eUhIm zZCOy>MbUU`Yg&HD@YrK3ZW;w)*|KD>-d}fbym1H59rmlzJttS}^48Q?DIVtN@)B10 z#!cr*lf7Clg)hLgAgnZvjR$ZgG;gWR)y&*B=eAKyUcfPG{HSfOed8d3xAGcrMK5`h z$y5Xe7X_V)ihh&G3e+$v&E06GK>SF7m~OdVFW@br^P>n!8aWQrl6uM@z4x%c2*tm&toj z`|n3T0{tG!$D6pM?C66GsM2E%!tb~ z0*P`Fn8au;m95WS3Hx9zhIz|25u{R$DwSq->;llMXsLuUc*B!8;H|jBVKIEtM{(P$93yLHj>9k1mGuWR@1uhXOVVkCA@$Qmqeg=$M zOfox3Z^&_<@6q(2c{2HT9gKC>G>5El#_#Kre}+$aV?&94*9886p~jO)>v-PMK+_ny zbScvJ6yKz&ggQ3aBOYGwyc|_}$Mz$C%&N6!-42g3)m!=S_H2nhq3QCYI^EN7+}JWZ zQjUx*3H0EdI1F_h1!Hm-29XVOOyaiLSfLi;i_DsXDDVySQ&Ou=khWvnIzcEak!1eZ zwdOH@R#>p9a;sfW-zDm*OgYs@0NSoVte{HPtsq6kU79dUqkeU7b+&ED6{@~0tan>U zdK=V%CbSlaF-BLh(SoIk%W-+XU``QX2g*r>cd)n?Z!QnPMsaNP^JvFPQ`_&y(2XKr z3@J9sHiLYR;G%~?eC3e5bc8RfW_zSx14{BkZzGL;NMpYn-^yX*S6QFEjeXp(3*jWL zTd}nS4P4^UKmtzwv4ghWf|n~gzxowC`xMV=<%-LFT+q=ARBB2_;cBSIYH6sJcPyfc zk@9nl@((ZbFFW~1ngFl@8DqSC=Rq^KP{^d7He<&Y47>ipXTw%M+=s9lwJISoO|Q=d zanOx-b`YiIhyFL2%s=1$5-;9B}tXmMY7}^3I zev7OPr9|P(K{SbtwvDK)9&OeIiaE5nHr1g@=(-rwp?aMR`9ae**0{TlW5}iXsP=Ou zI2z?|l)jWT+7$DkLheh%st-EtmV8i_>+`xHO%*pGctUK=&j) zpaZ2EmnOAqdY)I=L!eaKi66T9eWjO{<@>Io5);LcDc`6QS~SE3W+MNS&4xe$`u_Xd zD_U)9>lwm(Lli7Q6l9GmS`h2z*Wg#MOV zcxn@uIBe=m`Zi0qWYAn1;&2EyglNas6?L6j85#s7O%I)xz<451DUA4C*&LXMB(26) zb8kdG#a1vV!O94u@Ex0)L!WS?V@x7eF-FIx7L>{1zfz5Tuu;><6&l_?mrkHxb7-l} zIIOtZ&hdSGRLLfz7%K#8R2h?nbVVxWIY*blBcSUFcl5ZstU0(*`hE!*eMNzG%FvaUitez+)C!M+g0mJbjHM>mp_caQLToL8ZPPHxMXqd^ zsnL)XRWgnL=xI!SD;UKKVQ2YnWuiKzS6eIBcCT|ZNocez zH>|TE!Is$$CJhPDkV3c4slXayl)h$nnDQaVW}G;5%zgZfINl@F<3#t)vFVe)Y&50$ zTFjvZ>hTI(SvT|WXm@Swc8GnWR{NT*>LXuE5H+0*uJGkEarsQ%>(_7Ld8-dmbi&Ht z%*ys{JA)-%#pTCc@PGY;WIMb1OK$yr``~Y~$9>EdJiYbFO!Hq%~s8xqFG0oVs}49VL8q8enX zLon&@ZLhY24aRZS+sT-~!Gjso&j_<(7!)2w&eTsa2ot!~tBp}lylMR@xy?sOuee8K z&u}M}s)-RDU2=-WCi#aw2NMpU98>-Ffd$06YL}4)lrQL-(8JfOku*)}{8ygmYcx&E z7JBJV@bpcOVV;%ZXFNI$+2-btv-YAubo!RtP#!Jv!B{XKgAknNFy&?hVq)zYrL?>+ z1!PKth?*E&lnid<6zV;f4<}}Ejn^u9ZAkvv$Q1uX%W@HbuPKX|r zPS7DJnYqLD-S^mZ{Dt0}qm>L4eH4WifO10 z&1)E%^uc7*k9=3hlm}{alIuc0NfkOZs+M_gV9T;CFkHTA1OZ+89*d~h2w?qD6}q`f zo!ivZFp53Yy*f`0!~l;aJLMceGcL5ZD+^@IdE7y7VQEYwG}Yoy%98XDLmoz=KcGzty4r0bCNHp_wR>zJ%gWhI|o zx)Q!7v;K(b$xB#nYF*eNS-EZ3?5%AJlL@q23OmM#23PkoVyU}@e}$~B;#SBgiYbSU zZD`wa*mfTt#cSzH`x01bU|pm%4mN(5bmU?xS3qBX?Y4XG`>x2dWJeY4y4gWDpfV@X1H)G7i5I7{X2G-hTVOyL|PmTMD;Urmwqq9=aQN_U}U!h_(J4V?e{x z1=3bln57|^@;QhWq?I_a!=4vI`J7*Nm?r*b9f)H903ZNKL_t(AgYom3$Fedw8Ul0B zO^0+)o<8>KE5xteklZQ*;SpO!9ZVto!HJ%OB}PJQ`eR(VqGVi>!LG|+$z)ua#%kjy zm&%9ms*UARnetej%1V3M^~H)k44AX7Z7?UuBz}1d%(ku0EOALsT#gwLt5VxNOca3cNcnc0*cg{dtCCKsHLM;!mAzb8Ix|MzG8_nZSu%wWI>Y1Yw83WI~BD0 zia67#m>7f&JBoXlMQpJV52{a#6jMjWsb0H)MQ=vvIh4sL1~(@^(}#v|kUR|a)rEgV z;=n{pR3@R#3>?0hfH1 zf=tAX(Z~=d3edq!l+=(}{t1t9EIJz5m_n%LtJwt4<~UyZ+L%CKQnUiZpt9JGt{Y=u zkg?PFr%2*24x+*JY85!*3gCjS%&9>Z3<{!{d^IbRLRvDef)7zqi$e!s^(9#dtwYrc zUa>93P=SqYlx>bJ_4B|KqjK$+d@082GMSiL4(M&yw&U3$|01)bg*FW{Uj@{7qBJPs zh!?O5IszCn5MBBBmvf-3LK_*C*-+0^pe6R@(}W6vm5EP0pHfW#a7#DYXOwih;m)Y-g5PA z=ez~Gnkx-e^(89RCA2D30w`5f#08;X0#HADNujoED<$>&QmFHVCayS)g*)XihGM72 zNf1p(;f>^At%NV>jNr|%@&`F(;i_RW40fQqfBzv?v2LRP%;yhh#kvvhs1|y~X@`4k z+VwsEE~=m}0u-DCtHQ8X`%FA`*96*^dK%B}J%g3C4^}ta4xYOki>?SlikLDH!6xIt zKUZ-uTHN)2F;#}rPKvBt3TRu*Wjs4>*RA3<&@aCDmixf_ugWuh@7-IMqW^={O{{C?`wXgaid*z5W5OAt0XVkNyLNrCLN`sF)0~#6i0Ly+* z4b!4aGOO>?ZgCia&0&>`c;qhZ1Qsb`qiQ{t!qS?Fq zp^M+xyecgKABMyoBGL=d>00_5h-m-zHXRHQlz8XbX_yqO1*1BrUubs5rr*)0cJ#GWRj8 zUyF1Y%hv_EcyO%H=E}-@j9%fELd{gC{cNAAO9Yug?7~vv35owS5)t)@t}%%;huBcp z8fJ{w_|(r=iJArxY(OfbzJ@XIR#O9MDS8OhcMUpDJTz(0bD< z4-9;SBI8~4Q8iNhYOhZ@Xi{|9m( za+wSn9pS7JR~2cnePD^>)V%4{h>S5HEfmxS(a;@5tKvAusQM@vC#be@C;*eat*p5a zbY>E}q+!QwS=VSnQvn)+_7$me?RV@8?mN(473pImGqLfoJ-~@I%~&VWjUmTIpzRxD z7tZP|zioGoqJYzUq^gkARG7^pqcqLdv{fo%)LDoz>vlz6)QLUbqI+#%FU{bfcm!x$z$uS5J)oLGwDcn+MU0zudDvH=xL#};+@ z>_KYNR|`?|7xh8Vl3RaW%0QI!skvO%V_}I!VEnhWxh2mY)eDijSG?>=2A|5Q?pqiN zipm5ztW)E&!Dze0T(c(@x*a?Wm_^Km`FS@p%YR@oLsL?OE74h*xW!vi{4lX}xwbrl z!<#W})Q~GrQQsijEj9fA*?ZG&Nsc2+EKv(qZoP7rqZxIpN9W9uK1%=p2S}ghOzUVg z)6H(ONj7(a0D(enkX>`T=H}++v1I0}Dv%7I!fm0ex>p&`I>oqyDRG{C)8``4B|?Yoh0Ii%b{KgCrz3B_(Y@y zjDFfX<6a6kf$7RZfH~qhq_^Spa86$KcWB+8ZCBR#6 z)CdhCDI2iZ=1hw#K$5^kjQbKq9NLecJi2@!H-5kUoewYXf9OB2YC^{b_QUZQYwqtT z4>+HT8-abI5rqbgxL!f=J|@LcPyT7`4Q0T24};VV_&R0ti}lXxt++9c2B@3k>*jVc z2Za=doixB6T-o9_c-RdRRK%juX5I-!je-{7{a8~g>PKL-iDm2vhuE{@N*i(Xv6V-y z)GKL7UAwVllD<~%I$kW!hN2SJrpgKK9_tXxt!%a#Zmo_`yO8MX26_I&Q%~OXbx4)S zz#Tt+%QxDf>1#o$&FdP^8*OJ%yXAUOw%(tAIeVUlL~v}}e5lx)#z&|eH;E!fQZIj{ z1)-fydq|BKrH=0CU7J48>LkquD{d8=1VUgBZ?*PdR7|%l82;0E^9t~wi%>9+$?gyq z=@`E0W|=k_)%LoUvn{~;xhL0BI+mvk#X#9B(DISI!C1rEyC6`9^&tTbiQTS!FzlMi zyrgr_gARoA7PvWe+PD4&UT&zu41~Afw@^^ih4M#P{` zU`JXEyr6d6)M6X(BRv?M&_nazD0w(l_0A?B@}?Sz$Dr!TCbUlRV^R@{{ckNqo?G;T zhQ7Jn(m9x;yuYvl4|VWQk~SbZZQwGG5gTL8vw%CvASs0pxh#ALT!4(9Ti|*WjE4zx-p)Vyn&EqLgY1hhp6lNM_75D1 z6&;!?16>OQ(-gz7nGCoSCM3CO3o#IFg5tQ-55D~i2yPb2S4Q>M@jjL>10VkNyJ$$L z*FN8(Ha5tZl=`|uQYYL)gEbL`Y~N_crD-Z{qoD_ zm!JIPH<#aj`o-n(?dGi-lQYQJKa|7xiJIq;iC?M~?^gmgT zr%#_;KK$_M<-6beSZ=I;ENhByq+hw^g`wBz zT<}?0Duo4MU1kH}oEax!Vxi1At$=2KA>?K(=|LKs$p)$+byOK_Mn=A71=_bfVd5RI zVI=OLYqUWwIP7IZ{q3hhzhyIfd60mq7N!)uPw*Zkv&QCBdHTf>Q{lWf$@iJ_o(fx= zah$0@Eqr_^@Pa}09BqfG)Sk*kCE=F9$?^wIvpW7 zI5r>H?XhU{2iNjWCmtiWXfyT=8aaKm{Gd~bg&ul+a;=?-W%xt47xi~qi%_%AGx|wR zxvX(y1u}pN~9D*Fug6hhS>25Ub`0m3oEk!`|g3uT~<#~^%SZ@zpElf3sh_ieJ zyJ;dxFu8J4unB#}A4aBTK-|R{<`5k1Np>N$u6GDj(d{v^Qw65A(dnB_psLUsy|AEDy7NNv0SvBR0b`Zi$yF8 zxKJ`uKDi0pT*zb7Yxyn#7kV;4l7EXgT+lqS`Sjcnmgu6NP-&3THnnyLn@>(mGX}KJ zGXjtR2(hq{$I(*~h_OhEamQa{MA4)C$bnrnvj`uma0~ZPfqR0AxgU{_OE^g|i3DvE zov?ewb{2Cd-Rf@?-R1A~w~;T)7Hcv{7%44VhpZB-cxN8A1}Qqy7fiHgEvg=3jBDW5 z9mHAlR;@GqlanBP*(w2hJ*)(ZIM>~;&3Ysn(97xiwMBe{=bXpw<{Q4T=?9M56pTG? z<(h0nuk9@zVR^rW!VYz2RP%6@{F-37QHeKN`fkd^`x`5{J-5L>Gi8=kIh137H8<)I zsw0Vl2Stzf06gpn&lU= zt}o?Vwy)(I*7#e?Skp&xqZ8*HJ}`bJH;P{g2DwZ6P0ZQ`;+#XMIs#O>h7A5;O>pz~qmMqg zeD8Z7UB3VQ@9MXJ0~7E=o0ec52++pJf>dHI`_~kvMi`^~QAuri2fULG9n_}QV9J`r zV_Z$&^(xgo97dfEk4K!@w)WlY7K8$~Cu%G90>lYwEqFGHg5HE1O-0<@Yf-9~6nb`< zFbMKC`Cw{tkJ^g_i}Q*LN+FKS(GPStnIqN{8wNQWkloZt4Zx4INL-YUcJ7P#96#eP z^(%2sf@3UH#bRFUN-{#&%K@oKbGz}urjnQx!}A*+F#K>AkO&RFKCS?TQjik&;3l6q z$VDzb=Vf1oSbtFjX>9Fr?w<4%l^Z5bStHbD!Y&pbHbbw)!yLH~rdtiYl`4BhY-nKO zv)q(Ofvl4K1pmWuk1kG}?G+0{3d_-tvd8S}nYI3&-d?^|-HcuQ(jEAa(yxY$Uh9##yCb$hmFZ0NT*~ldG&}J ztKa+XCzo%3>m&WO%g>*`x_tioXL6HQ)>hUSe`EQtzyF=fXTSUE^56gaPcM(;hY#fb zuQVUJx7PT9^6>sQ&q-)xjvsB;Q$POYrXPyOBRexx^pkvqCkm!tDM04;Io zQ`*9ge}hJD(r_7=}c1Prt6lM@m^KPP51WEAR#1@`pG3zC@~I% zK%Gs3!#py`A#M43cEe z@7a^P`#^RX5Zjjf9kdC$$C!kxUN*`k_6G7#sc8kU)@j>Z&yZ9z@+RS$WX@L&n55kgo?Jl(}u{uqVjyb<(p^POk)cTUKgbqO{m{2M=zl;vxxucoP zZU&;luIYpG97=ArpL5XgLTGof9I374NINUrm{RrNSz2d6?G zi`_})Sg|E)qYF!IAeO3|i35TMAe$wwO|tIx!*T~@>D4)RZEp|3<4i{FIyz#S*S-NP ztHlKab$ETrL}UxdUzjq#Qxh;kIFhQ;48}UiJ^*P&Oqh7qfloV0A9F#jM0eP^E+s&t z&A#Xlk_^WBj1d@fjB%tm{ToLwm3yEr;sVO)+=lBkxa<=n6R5u!Pr?TkuN<2i5X~uT zM2^@crqJ@5Ffu7>1}-@n9w6t;MV&(;Ro_BnkE%h34c}7lNK>qL1Y2R)CvrDxMS7Io zl|HaWSsQ+?fjS?hfVt?0cUyKjw=Akmr-(gJ^PEKN5_jgt^w0 z`+EBKdQ0gtI9I~2fyUp8ef0Q={JLV!l;e!gk>kkDEL%&#NtgL4(R3LmY+P?<1uJIo zdQ*3>aMSbgSUU$tMsEC&uBPU|;-*|5AA$Ln#v zZ)RBA3eMa+A_fRJon-J~;#nMehueDuWTk)L`loLp;|E2`{1G&MAHNmeK z$IWoW;D7tuAL-vD{?2zl)|lQ5mYd{T8&o&9U4XD#YxRV}Jhtkv%oe=Lk+-FNbuJb> zP)OmCV}%h~(WiI@i(g3knos;J?gZZzA`H*G5t^!o~VkW;nCKX zbuaAcncssPeM&ni@!GPo}uL36NZe1>*oDpu1VM*Rx?B zG58I($MbY=_6H`a3%^+XMfiZ~Hy?tfJvslw@Wa6CmXT-01DDa}uBt&28&##j87D4y z&$=-}YHtP)5%e(xf)h+=C$|XH9cXkSZ(!fW6pvTYo2EAM@iDZ96&VW^nX!uj&>ZaB z4|D~nrg}bPn%PoE!&l=b;#&{kFezt<+E!K2-cJ$BDK*L2SIG1Q0b zmcSxctw--L%r6FE=jL;se#9}h8e=nOcq_ds9&1#2i|N|x&Kgl$k{p49z1p^N#)(ob z)FRc?HA79C1KqNPAktI=%5o+X62T1o5N+lp*b$qW9X4B)W)+*6b!4lNt+~}|=c8|; zM(FC6r3x~`=^f*T>@?@{Cza4>+)gyUbx5P+wf0sk*VI16;ks-!VG}#0J1hp6VH3AJ zMgj5=CcEI2?@}YJ+x2VIyGfGmIWIQNiFC@+qE@6&;FQdBc>Dx^p|x-A23Gg)VV#(g zm(xBE5Ooa>;2^A;UZEMdG56D-{Pyzf%a@mrK7Rl5E%|lEAAkIT{uU95ium zb+z4{p3`9)UK&;PGrkjArq6w+a3y|atgoH)AZ77)g1>t9+;4^sH-Aw>J{2yz>&1#6XLV_QBD_-jKo4_Enx8TU3C*-E}jJg{(>X7|Jezo)W{_GRI(fhvK+{Le+ ze*fuH{X5g|%Z*|DV;>um`}5muHY|b`!Li7(t?G4dvt&W3Dps+Ax(=ZUif}yJSfQ@h zK*Xs@O!TFWmOok#+zqTti-G6Q4Jf-gH13pbb3`$3U|&|@Cpl2v?Pb4oLu?7H=D~Pe z*eb?G_j-vs1$Hydx`9`OLiV5uk*&h9$QCY_Baa;V6^ggrnx}GMUTe*0qteCBZw&!c?i0v(Qi+N6iej8h~&IN=5X4E1)mIz)~ z5UV?iNN&o9Y%oDgZV?C#{1KYNnJ_rxVjR212Z3NhDY;!-6ZyH1X*r9TpAO_Gy3`+G z6n^)|V+($I9#}?SD>rJHYRPNl4beppi|~FSAr5^HPNPR{O*7!XQmr8ESDp|mYuc{p zhV{bQHG7I43M@4PJN1FgbOSiRcTMP_F2_vBJr(scrTc*#%$}!}MOR?N1)JefCR2&^ zxEo}pk%Sa}5SO*C?P?kab7B2kC^E;RfjLS6)wYb3@NT!a*2xLDLG&( zrzl&&>KMpr<5HyXw!70rQKr_5Kx>4bUA0S>0OB<);%mhzdIjawLwYL601C&&rOgpj zBX(mv+96X|T%WLDU1!zT zD!w8z9(r9#tm2S}^pzyz6JE~MFTZ>)Yw+yy{Q1kvD_I9@xH0~o{3_nZJh?U6cGO}h z)@N)rDmM!h;M}JkH<>BEC6nvHuO&0m3Qgig19uFei?8I{zn}j03;mnR_)zZO(0ve7DAP!nwiF8?{mgrEs|#K4^z8ar856$sKZZ(1hXew}-#{ z;`!yvk6*~&_x*VO_0CZ*HczcI0zSbcNEtq^l@@?p&NfeE8;RdKQ+&`-e`Cjb8<6v< z(63KuPbG4Qtzyi@k&`%rA21+F0ROMn%;H$@VS~@QCgb^tHErYwcbpkfD(A8vr9Bse zW;3*^>D)ad2+*W9M#fZziL42bR403%{J3vB`b$}!^XU~e} zPS=v5+Bt_mbj0V~UOVYXQMMJ^)u6t)YEhtIDb@&lUWKCCf>1Q_gBTFpSS>6EQye>F z(ivpUiEv8zI3x$QLtyavvjqpzGK54#LOuG8_=m9Xv+C9Z&TCa<6@S21-YMz56HM0U zrX{K#9#;yIMoIdc>nWgym%S7F^{L_##+>?n$FPt6aXvD8+@YJs$QGyv+;F}}++ZpN zk_*%j8XRi;5sh0X(N3)#YZhF^4Oh)!hz-sL$x0(P+$rY z9mb=LWSnR-bhOM7T*Od6bh|bqm?AN@X5N%RDKA5V^`Wc)Cd@~?*nk@J3=`!@BbNSZ zthg)e6u*f)sd<2_L3#QPfKdhq#ON#*WRjTzqYRJ0)A!|9&wgn+G+OZ(<3zI5mam#k zfFC|;4c4MIG_t<<8WId)jTXI@LtL?2y%agz{Da!-S6^Sgl3xY=?5mfT59LNMel0Kl zPICSL;AjnKMyz(swu?SIWTXKqvG?#Pa1?aHXaLf$XpkXv0-^V^Y8}yx@V<$2nJmy;$ks20GqQ)MS4No5AlEm z}8*ZmJ1x1a9pCb~tp!O0QN+n8e!cZ%RXMdq~F08T(%3N|MlBa$z-JP;2 zT~|HbTP>4n{mH#~1s-ah^8rVr2WpY#P`>c9i83BvQx9uEfLtS~)$^A0L^Is&Kz)uH zOj>&Hl2UP7S*9CwXoK6biV3zqF`~$cA9H{4+PN@Jg;y8r-zPZ-!+$N8s zH8-ly?SSezGv`4mqFuaH9nx>ck?Hv(aHHWlHAmh^!{vkL*kWb?Pe8E0>h28cL$A}! zT35||DY8rqWrqF-XMi1W_UbWzQ;`FGG>BGXNey-9&^Lhb;O>;MF5+jV0qja^RDKw5 zuh+Bld6+JP>Z+l=i3Ewm2PkL;bN6^@i@8tna|kU#7jbT}PK)J8_Q~v{YZA(lknA5` z5DHu|#+qTm2>ZGOjK{7h)dd&iP=A3q_aKJImS&h2>ute_S&la?PE##fT9(^NoYAS~ ze1^Z($B?TE1;B&Uq^Q(}xzz%pp{4Q>7&R(REkL+|&f*(W3_Z*0(;s zeD>Lw@+)ea=<0omwlryvjj|V3M7F&*Zhu|3RY1^q9L;Tm6=9Aq%A5?8zx9y0Y&R8Y zkc>V)t;FAjMbO{FOAICP@78UQ7@VLyHPx0U!WAMrjH|88|aZDg@mO_SX)G3gO+0G&j?tw*Ed&dXi zTBH$3!+8VyYk553@BTiMZ$E$byJz}$fANj`vzuyVlGYuACC(s(w?}?L!o78q0z4cm zImT1<@z@Y_Yd=T$=ovWds=B#R)l`OB%iRHppPVa^RZoJiT3yM+ICLzq1ABy1h&7cbhi^wD4zTg5-P3{yg z6!8(lt1vvLglA9Fgf2Eb&tt^=Fv>=)=1qITn9w>o$fS)bnPQW>3t9jcVe0Rs3G;Dh zDvpB@waJUI0sO`sbTW4l&zU#Y%AX3g6_^i)ugpfuF?Ta~l2Y(U@o-@Rof3RrQmIOZ zz~Wp4r@uo~g}xJ>Q#IN>e-GHvZmC{}di<=R60YM$DYKm|DSw#3>iEZ*N`4O#0lV0! z4SP@D1V`N*Y)7-7*E!#cjv8YlTe*&`b$i~dLnqfEP<}vpsi9wY4r;mz3?~oKD!f1r zkNG2*vCy)E3~TT%1=@QF_acWveL; z`h&C4FGT}>^946?!~6$lYYI~?%h8{J421R6kP&uye^iOIK^^b(Vq%V?5hHCYO$P)l|j#5 zXRs(oIg&8r6!9h(-^9g@;75P6`}wcsTbXi9oY#)ez!M!!6BCj&F}4o{ zLs8;GNX%gi5Q#%2L{wZ9Yiq50Nm+oKO!1ZSV|HllCTKG%OcoA7~l!vKXJPl=oZpDw{3Q6{YcwT5tXqMh0#H-&qR0ube*J!#}XoP*^K@d*+>%t9tt zn*1}IhHZN-?PN9*<=bzK=#k-;Y7bvwwVN7v_AKgZNNVHtAoB%`&&9nwo+rVmz(84C zFQDRL?g()WRy2WdBZQO~&#~+SOTO|3Co0k27%5(86d@HNrKyVNfyCH$ho%yA$h~nV zHIv*o-p(IgK`c1WsbcXpRK(xdI&IXhQtcX*9<#Ao&NasH2+v{xhg5K#ImXPBVT?Dp zz8k0#t~MH+#~6jTFX9L{W|bjw6gQB*K~6Zf!E6&K0v>YX;9Ld2M~R<{RA}YziLlB7 zw+J7cL;=J3u_dZGJBc3XTpDD9Gqp7Z@_YhWQ$|2IaD(Xr3#R9zQSoDbvJVngu-sdz zub`_HCdqdzu(blKId9BhLvFYMd_mTJ4m-(wo#OM5~=M_HlxBQiM^^4t{KKNL=A~1A!ZQL3C9vEZGthRCi5p zB^HcDRtgcn!i2cj39&R~&&2Y}GDpa+*o}C-(r7H!Vdt!>$vELEf3AX~vlQEpH?j=Gu)FWc-zI&0`S64HFQ317Cehq|APlD9qNd({YZ9?KkHGsmCpg$qqa(WoIbu{=c3hj7>x|jLH(_y8 z6gNX(>rWcY7)G>)I6TCD3a|+PX$!dOff`wpew1L$C5?K#ym_F^y5Xrcg}47QHAL?F@zQT2)eF zdwkM}gPym>AVFtG@U_8XM1=}xtE@@}fchpM!W!{;94mhewGhqIBrNt<6;NI#SHMNg z`El~D$6$EQS?C}P8W?0Dw%U$hTo5AOlPR(o3qUYqn8V0|8MERMPYv=oGQJwgH#`QG zVroS_70>;!h>7r8vbi>?V3yQ0n~upisiZNurj#B{K$kkGM>tu`zMpM{F zJVaW;<-I9R;eeE=oauIB#cxr9?XymW~_49u4^Bo-&)&W09rZy z^CZVg52%~_7}Wkq94;EiFztA%F^u!1fHHmGu_#o8rkaN_)dWS&9}5str$yYIDk9*l zU=b*}o@UTTURymd8EbNxDT9;fW={qB4<>}=@pHtDG`&?k!Q2)67NwnPYlLRjX)S~F z)}fv0bHw`{j4joW3+6z7i_S2^!8zJgB4LgxM5PCxek@S*P=wf;j?290M(KexI9cHs zYmj(noz-0OoMi$9G@_7x;-Hv0F!_^kSIoSkN5`HrAbhLXgEhB&ES{d?DMAHKb5u9R zXk#sJT~F2zI>FSe`Z-8m9D!kPG4A##61`{-aOlZDmlYsv;yF5J#{k~7vXCc4-|9e) zu#n!Vav)97E$B6q%X+ctXeS&?Z9ozuxkrf`g_ugp&0XoQ;-$!S!LubWkKuEN>&hNt zO>4GlHpVAXD+S0R<-J514<^GgZWv%sJn5Wuv;5Y4Vr%62F*{Q@3XvBIQ=6$F~`y*C>lR_gPLrKr(4kj4yKCgyeC21Fclc>3hYZUTt&QCbu*oxP!=#GYtJ9AkUhQ$C7_t?Mcv>S?;bFi*YgGk)Fpwfya0 zx%(@}&IEmXVi7vU?z-LG@B{eS9NVX)PY$76Q*!; z`!17fFd+m@8PV5|`B0+>h3pL`YMXfOKl`Yn{l;s- zOGTk77W1%KBF9U=wNR#}AceO$z{GsCC&7fR@~c>(%MeDkN_zGgKRvPtiP>j7jR#?g zC2mE`Ydo{Aj%c}}W?a9VrXMj^H{esIDwLvfi^s?IpBUhBnfy1|^Wf91W9(G^>=om&=}lo`sk} zm%i=+7R_NMgA-BFJ_PCnHe+jkhV9g@)-6v$(Vd>(v2N*u-1Aj;ntB(~#iVc!an7q2 znUC~nuXtC*P58m|r773mc>n>&xhu)vXnNGANKMbUL5Kv}{|xx3&*Yvh>tmw}>BB#%h>Da|QIp@bT&s5{c`M6tCN~9{g zls5ywWK(B0e;raPKQ#T)V9jRuRdXmriqLUsAuE46u6su|RxQZKI}l{lA~9-KdE)XI zc{$hpC2B|vPA99i?x}wRSon}o=o+7dZ+B5@tMyYAZV{{IT*YETcWXR~ioG?Dy`GZP zmOEa!{pdG}^>BKMlp&EL8;SmbxeO3$Q_GW4RFcUhd>EY@qKFCChLAXC@?yHBlUpR` zQ157GOMKNXih_4!%MFrqlux{j6Xi@FL1)*zW=(cQ3&6eVObb)g+6mpOm7Oxj(;E%l zVY;o4J)yn)@!2?XV_J?mY#bKL4?>&RQ9kKLJJKI1z&b4kkBD4>iBm#3uYHBqKIPbi z{_a2h+si-w@E87Tp#4KUY0hmFQ#t?Wula)UIjLbaVcYEVn!lKAfPo+z)ifjiNMt`l zba24HFDSHjA!%EJU7pCz-zQHV%eQ~!&aZ6vyRGfu9;NQ^-r*{dSvE!>xjVf>ps0Gn z-qBvBt!WJW{4LG{JZzeWApzhb2H|&VtD5r(Y;?-WZa{8HEsw!1qE~YBRI4T1dn^v6 zv*2p7#PN8Pg@ZEjA(YJnkZCG=Wn+!5&!%G*kA=lAQVvCE4%eYkX4lJHt!qKgNwauv zYTpJHgeUkI?sHIFTp63__}pee=0cY(WHT!#C_%=ZHw8RX8JMGP^5WB4X#U_-%&k~K zmQWELMEII@2)c7_UQRn>cnLGghR5LO9Vx~l=b2gkh{6#})_v#vBa<);S6Al%Cvby# zmno{=y+u!S)=FCg2m2sQ*9ndpcvU{E9aHSbu?!TK9;UL;q}+fGbAtj0#%nkSWWVVU zEDMiuo=dvI4{7JPF{E8JJl$o$_#R-&jsZX07RRy5FIyX>N6$%OxJ}3uU}AT?o=NG& z#F@U!xKU#xrKLUJW~y$QbaMAQcFhj;`y3KFtXJrC#b!mVZFoe2yN%9uX8#s`?j@_s zqv95Mms^WG8Cn<|XTLFHtNeNjH@3G`bWeJZdu`L#@^Zhizi10?bXkz&m{nP%if}IJ z*fMd4Ap7uM*fX_{{i-#hDHl~-nxGS->X=y6+`Y~W-~$EE;4U-;?63i%DKYTP zUwq>iH|JiwcqKRM-qUZZwwra06lJ1(knCmz_o%nO#n--Mw}qkP62nC7BifaK<#h;r zKAuBpxu)O}#}XVr{q)QBw}0hZu)8;Dt6nK2x!e;|Jm=isHCU*1jW^{uqu?3qnS^E`E*f!0|7=scC2-&ec}k;`t15FGn12!v^Ba0>8V2>gwDOmU=~mlZ?LI}bEO za!EThf*b2atr(xgGBE>;OpU0k1&2T;-`8gkP}Q=s(=jHjWDK#z7`tz0Z%B<3smd|O z5g1H3`hge2ab03Oz};Ns8IM{{O2&v8J?Jzo#9?t9Mew=^ug~l$#ixm9EN=a^6C>Lr zpNGdAw&()Iz-_OuhK|)~J=&|UUPQup4jni1l@fX#LBVTyg&Q>_-PF8$d&bo19$}I1 z{Z9aCXro<$Z)YdHhYU>9m;ze8juwrT2jk3q>q=Cpvqc~8YUmyl;9@N1cufiCxUmp_ z3t@l6E_0GdhsoT($K>m)a7@X6?)wwM6drIrS1P^n>W zJsNscvrjf;w!7>U#SLx{3FcC7;4V>P0-SB_?d+(Qy*+NsU(N!aG~4Y$u9@d9W>xR&tPFj^kKV8?FDXDGbvk4?&V7hA`a$uYHc!j>-I1E(qBK_2w_R7HdOebXzM72&$nj&~ooq zH~Is(aB%bY$>YbDM>1kV%kSaFwtQm~e-9Y{Vi&B}z`AdR&0Gxw4QBmBU#h9L9N~l?iU+6a1BJf$@+$V2hx{wP&VE9FuK~^No>Svs;nr(pkVJt1MD220nQBHhJ9mp?i$M_8Kt(zW96? zxsn?JEWPFSkY&s%Gz{O5d&dUVW|A`{QUEv>#29&u$5^6Iu3(2_OaL{gnd9`sNJ?8! zOJsh)yGbI)zzL?qw+u=U13qJCwWzTk`=y)X|FpCE6un#xAl2~6Bgf6sdyA^ z9|rK;*Yhf!43mb@8FwxNtd@PojUT(vRKz10eRA_ikt5j5-SZ1gEDcMp=%h`!93XHZ zq-pGoSJ89KrI6UsckEeXPnUUXj_#o{85}g0bG4~%<&kUBEP#;=u{A8d{NE65kDeXX zLkM5J>FYSKgPuM&tKWjG*{gSW&-K{Qj9vt~PAD_N;EC9vSAhBWE>fw1c57fLVou4e zfEtS(EkW-_Vw%_#nEKpDOq4qX+PWUAA5r;u#N3@)J0tUk%HL8(xwi>$&RUr{Z_%8Ze6L{mfJlO*?Ocb7< zZ2f=&q2o2oqLH6UId3+OBWLclkyXt&gX7x%dNfdag>HrPuK8sCMB%#Tb}QWp!0xV_ z?wy)AD}$!5X_%8my_0;UMm{vM4_SG1sM7Fy&XMO#M; z=tYDHZKwhDgF=rN!o*JF8SF$p8E6f%;`kBzNhuT2L1caECuJPooAQtvCQN<8M$nG8 zA|X!U9f_l9O2(40gvMiXAxxbzeSi;MtXuh|wgoeHg#~VSF_nR-SGq^_v)oNSi&F%C z)yOIiUe=%%$GtppHnRLg3q5$wjU=+=76m*+L->QVJ9bTW{Xp=Tkrye4xu!>&K^{h6 zR=7lS9C`o+zvfB*0P{PNH8YoPJ>N;!x2-q+q>iwvHd z+GEiTd0xd0)F!Uat6J843?PISG!48O&BJu#%|MltRJ%FWjP^HH`*V2Xi!W)Y#OFu& ztmz|Sw&7d9AAIn^<;hd|_0Mt>7&m+ItDv8X|GxZ#4FT05>EPIAK7(Cr1qc*{$c{@F zQf_X^=z8eR;4HpH5@?yWKI&v&W>f;7rQlodtwA2FXTB5jKp#^Q?B`HqAn z`^H#qOe8Vo$&TsBb!bd_Fd_>(SNXC6u_S9RmBf3+T}MT2@#G zX;fcuNQFE1b62^zym2v36rsdO8NDdo?7jTVxLf3orSB-UIXzut*=fB8DVjv-^5C*N z#>EdNvtiuIHqk7NiwLiiE~GJd9X(vL#OayF>iM2=%MGt^ov}5&Gm7kIOOKc{y7$Iz z^>?t=mc*QsNc;bwdVn2xj-Bes8grSeoU2bs&y>bVc&V`)JWynWV5VbatbrU?W6XSW zysH0=Id7z{opaT}zE*C;RL+PkB)oRcdmcrHifdH`Ut`KGN_>e%WgowBqujdQ2ZH7*Qj?PfFte!XRM*p27@pglx3o z>oyA49|&!RxY6GvUy(f18|4=qhIOPP zy~ETgFh-rlNdDFhhKlNSs^nXa`P9ugJGTdGpN;VxqmPj>7H5wBVyvhO=pu~5^6?La za$W0-?Gd&R(`oQS;tHekxdwq!M7xnZ>vcohB(fe?x;6TIH0sm#M$gMBBkEAgVi*{@ zPCc@-8gjk(*YfE+el_j0FP~pN|NPnIsr*gc=U=@D5YxgtVtrRET>0N`)*_}Qr$(0tu`67?S{w3qof%);h~2?`*xdinn!Q534zs zah))keMA`eAw4)FmR?zd$zqI>XSs!(hg3_%U0(w7bTe+A9K-Hu9y^dd+6)V?C5lWD z>Z&Y|LFUVlGo8C_;ki{`he1HfxV=p)vs^=TTRk?%9*;Lo-KyxcGB%Hh^|}+dM9t?m zU@j6l4`ruf$qD08Z|^+|5iw!&l3%W__tmfh9|K3M`j`7T%)0vd5yDG32wKq~1e zb}erb3V}OlR#SrPxGte)GQEXKh#8I`&NjZ8i5qm!pTE3(_`#FQmtV+@Il+zfNkI7?jL>h^zy#k2*%$6-rPdD3CG5)SLU6z3YZQvFD*{N(e9m#M zgMv8i2MQDoXFUC(L;@$C3Nei^AbJgi!Gw%-5yBL8ge{LN{ky*s!1;u4mFp^lkT;M> z^jrZ1#x|OYl3jIuCYDMp5xLO@9zJp8GoBx61X4rs6*&r3HXF1YU5tbF0d9m)C&mVw z02|9SWCO$w0&8c2M;)>0t`zq2&YKFgjD~j~bFSis%emnxHP9DQ>~CccEY%{zGTIws zR?LRTjru*FqLdLpFgyH+Rn%V5PC!=@x5qir&J0(k@Dv>C&)Q${6cUE;O%iR6XuW_Z0qF_+)M7W8jUXk%jId59Hh zVBII4yKclKD1!>{j2n^H?XC1y&J_-U9Q|O%@iqi`7%aei!tTxBh<1Gar1(UN`Mr9c zPa4T}*oJWhWkc;ADd|Yxya%nb$0JbBns2bwvb7U8fT7VZCQHTYC|5JBa7)o55sqCY zUobX9Q#%Y4;zejv`%lRmRshFY=z7gkyRAOHbCl@2@(H}I+ zV6o;T0dF=#+CQ9-fdPE|sePj?~9H7zs{!dw5B zFJI~3Xni3!fWP&vk1oIa?2F6SFWL<|JQuas&?Y1o25|HPMH#svGHsIPjaX>(j~T@3 zRHZfbe&g1!KL%_yTLn;o_ll}50mVvZQVjp$|5mg0i*|9t_x<;uT>is<{7bzl$D6?T zHPHGipz&*<-8b@pGRr)e+h<%bd4In_px z8wx6I)6cuDXMVH1El4{n{1A5vsS1OWQ~nt`6QZvr#IKGeZURFDe`osRPd*eypxa!b z-`Z;!b0jK$wKedN$w>Ny(jQ3TAWlrq(XaA|<#`T5tAbgK4HS5-VNGNjds~f^MP8)` z{qD@Uh2q%;Or}@rx|EvMuS3>L$p=KhuFPDU>*@84Xb)RG5okNt4PzTQ{tN{n;9^b+ z5gR`zgw2>XCpqUyFs*n7dZZiZg6hc;Dh88S56Rs1T9MX(uH#5NGLn1*yTCwVs69B5gf;KUGwT>t zM!V~cap{T$rUzinaX5quND*o!mx-~Xh3pKvIkMl-KH`QZ?jW8e@@bm=jK87#ed?KF z1-6BX#71SFn;VeolpW#cN*WiWzS`XyrC0G0Rd}Pk0<=xpO%K~hFL*IM*(y3kuMXT< zuJ>{ELUxIptb-G)&PRQnSR_<((j5b%XEP{*MX3Fzep|OHpC1?{=B7n^gJf?W6Lx36 zffLXzu|cLd)&qAhZ{V}1{LsTt@LhJ;_11|R7KHF>N(UC~0HjjBKDJZv(8D(v$L`7B&PTe*-qv{i6@Wg$s+JVOhxdK?>4X+eVRn;?nKwpFisC z1%Ty?7ROTnFb{UleXJ}Ti(XqnXJgATzHz%sF}IjS?$L7AysIBRFmT=2G$v?%4m&;? zZ9(t>0nZuIG5UvkkpdgqLbV}hM?dy4X57n%Wsef`nX94^AOUw_lmu^O*SLekW{qp~ zOAdmz@dIZ}9sgR2tR5jgj-D06Z3CzdWiZl?0v5|$K!zA_aib4V+Nv@GByy-T0BVQO zNUxFijcQ#MH|eb&2n8l`d7Ovt2p(5k7ay;U<%^k@*RSM;n2b;5S0dx@`96K}RQ_)3 zS0ZCw2+nSqjR(yd@DJx>VXuqe*B9IeesKUYrb{-R>m2HvX^}Q^> zprw#@%`{UheET~eUHcls$3Oh* zR6lSXh+RG$*pao(dOQ9tuV~yINo|HD6!Wce(^t9AfSC z>j%jbWk|C;XWJ;D@I;|MVDY-GTI{3Cw%fUVUAyHN2_foyGce%1Z09%}XLN%kKYel=%v?%y1_;wHTZ)w{JJx|6YcV&+nIS$+!VfGf65p;h>cv8YrTQVf zG*zq1I}Ras%f)$18@ZFvs#7w?6MIIiwSfg}RiliTgn$g@M%ja@Y7!_Q|2(xQ zn8Wm)H?}ZLi`Wse>rwhjdaZxvd}RZ*(j2{OqqF=fa<78uW8i;9b#GD;- zjkElt_&Bi*&YNmyqlMknsz;4uo*kf8cU8K%T#t|pX6#`RR)~IACir$oUnNC!eU2!Z-!ns=w^Blk|0|73U{WB#*cfHp5}i>a)n(@YlSb@UJMr*K;G()o+BVIiRwH(~7c|?T@Tg4&= z_7P0x&hIQ7&r|AN|-zw27?`ioWet2(JyqLjxb?J(3$!AAI;!574VG zo?kxsLBnJH!!GIRzuo{0476_M)k9i@>uoDiJkb1N;2z%ZnE;FCV=B)Ot`6VWCc> z1l3@w9(|13qZRiax(^89hysrOG#I!M0~|NRmBWCH#11(IE$QLPSvET`sLiHrgi!6^3gtVzHj>itR)%!F}ZtU=y zV0_jxFiUW>u%4?DOJNQ0Iu^_2S+v~5j+D{ffUZ(y{7BF+C3NiSgtwu_i%~m-#iF({ z88$pHt&^b&_1NW*L~sfyvW`;Z#5f4;Hq(U%UJt)JR-OwxJJ$Fy6g79om6*lH^yuv< zFVmCC6i8I$S4-y5JrM_X!zp68{`eX~-%C29;YibKCLLf@!vY>RVHt3J?2s1MYq9IY z5TbJJifr@&vg>$pN6ryXJ(zJ->krn=abaF3Go#1*YO2-UOj%tb2V6-H!C-ct1#yO(3m|wIS;Sq9x z>hOcugD{od{s!=>X;6nMgCof;qSj6PV-#b~^0~YN3uCLbD!0&Hgo}djScr|sxkj7$ zH`TV+YfbR&yN9ih7MJ~yXbzaP+K1qrPz2Lv?)C`|ZypC(bL5p6tKMGCPJ2j;D0H=o z?An`8kDM!IdWT8G`>R0hLVIa*jW0&+sI`Qbpxa-ZNQyy6iJ{V#NNd@+mJ_FS0dk9V z-(+mX<~Zwso443hWOiIca1nqU;vK%URNYF%4-;a%lMN_=DUSe(cSxs6yi6H~)J|Ai z5u4{4b5MZKE$0|tjmnKAvD2y7sM3UD)w7Opl7!}9Dz^g_t**!1Xu5G9v<432k*YQm z5b4PnMP}(sqO*Y9-xP18L3eNp9pqCnxO=p$lq58LRwMSIda043)kUA7vNgv3`tyiI z2$d1fA^5e(Pvr05;_sE>lXKjt!rv^#hmAO`P*5rQsUTOOiQo$Oo?Ne9#|JVYpemeLqm~3caC~t*Gh#zGke%9O0h{}5XZDmGUas28WWTenvAhzXcpDr%dB;s zdq0XH#5q>18i=*paGM6Sn;oaq^9=}JCE6DTRplT5;b(GA3Ez{7P%-`Z1O+6d{SQSX zA#ol?Q`SQ5rmk=lf*mwX2vx<`DydnzU+W*TZhXKSxD8M-GOTE--?X)`2-q11VJ#>F z8#ccsRQ2+!Uwtlld7R|0!jsG57@gnBwgVC3f{8GNM~-S4KH4S+GQ$W(Dj`*D$`NE@ zoIVAa1`iK0__40)ArOHYyltm)y6fUBfpe{IX2+%^L_`dOqjBt*AdpGM;oIgM_~JAQ zfRSuqAGUH1azoLX68)ktCo|`GHw@BxZD%`KMhXKS2JI#jF>P$u^JW8Xl)jdPqb!r% zkRTF6(tH_oV~(Q)Vdl+ZxNgJ^VTZ#A`Cvv$vz=rq@jWEO$c2r^2J;wOKB7#=2cXFC zpoiL8x3gJQ6x#5*w+CE2CIJ!z>oRB%y84)If(zg%wdZZknA|pttu-QojB#X*5yiC% zQ3Hm^D75EYO^m`>MEn>^C#)V%KAAq&kzB(aT{6Jf%Yq!Hm-SnkMtod=}Iu6Ov6P1VW)9 zn(NsSoWgu2;A0^ z^Fk7&uQI(KGyL?j8?h7}`WYO&eAiytt|^h(p6}f2T;e@tMn~k#p5GN)54n>){x$ht zlkDsJj|#M_ajsdR7@JmM3J@7a#n^kk5Qb?fi*~Uwo=C~aMW zRGj+gd%fzMffk!rU2)*^RT@gD4;dWDa1XmP7FLuZ6(AHJ>?$&tYj-0*l{ zDmHUe%eV^HoppJH4@|7dK6b`|BF6DTpAsC2rv~Fk zMsmDW28>+wgVX?1$GR92c`hyKwM+;fC_Z^4H(BM^AwPfg^75YC41OdxMV~%>D&LZo zUjrRAK~@2|63U1au8Fw3_*D{d{gt9dv_WY`Z>1$+Cpd1Lf#2T7;Wz@_w6#ieJsvM- zeuDvZ3kPn;*O~mTT1By7m-HZFo@9B>SAk%6XUF&Hp zrVjz-W2c6fl7MU=N*v$T#ir+<*woV?b{fD={>j0O2t=!+M$C)nFE0Pj-~Z_Hzy0t3 zlRmzvrQcYFb_=LA?9lI_%_at{_GzTn*oFcN5ZKA>^^OTDY{d5Sn_Scudw3AE(!i2E zG}Frs;cFe0n>2C8S#=D|(-t2sXRgjKHbP#I@U+QC?ErTe&yv06UZ?<*~D>7 z!VC)!X3WC&v?Yk~_*Czq0_%#cC%M8%kFo#WN#n-79yXgXuS4xT4+`s&U0SUTAW~uN z01p+EeRKz2kV~|U9t_#)HeBz)EETp2HYlwFQ@tIx;_bKSqWS|v@kvfHdVEYnFQfLH zbVAnkqrun5eob2mh6Vu9@?vN&I$uP^AYVo`r?o(Upx6m*%WpuI3ZWKFmvMu2sxc`G zXVR%?LyU|V48?W9V(ysTj=5l?e6&|Gp)??%q|l0);;k58%Uq`sB-#5U#6-Zp6%&p1 zUU;26)XFrcL#%C(Xzt5)M7OqOhwN3Ppr99pzGid7b%8n>bPF?7N!gZJ<^AWQlYPk_lF;lOT1Wn^O|IwS*aH3xk*lAGGsf&#o$B|uRgX2#`9evCSnqmge=^7gn z&6(ph--Sw}ttqtX)$RF`J_Ls*hfM99#n&ojw2&@BCG{S`H(Bc*{obVUrY2jQpjz7M z59#Ps{l&abJ^~F;;+!x%UU#5QLY1RfCl$u^H-HPVIfNGDg1}|#MQ#>27fGd@oLA~( z=}dRsKN)Xq1=hzPWbF92A)E{WLQ}KYNr17<$@r%XLgEwk29fV!r}KZah$OA2)|GZ? z4F6bP{n0a;y;B<68XS|VVwTDe*SI)7C-7ry;;STx=yW@ILE$pmJ z&sYr$Omj{xOuUqbtC$RwxQp(few26T0uj=eCXFTfaNwTBSJ*Xh6l(Uj&scQ6El8knRjj^GYINk3P>akH<<1uN%MJU{d>Dg{I zqV_G{_Qj3g$B!P%zektPKYJ$M+{9hIb`IcL*uG&JZlp-g=d1vQ>ty)Z7he9*M%M8P z?Q=z@9k~`mk0W+wt3=v?CsUD^U0>@>-S+YeZ`NBQI6v?$=b!xeH9YnOf}UKl|qD zt6zO~`GI^Z`fvZ2@5|#t68K+9{!~sk-6i-q{0Tgm(hKMPF zH%1YeV-16SdyWu`eH&kM%C%jb6GBa*BRHWRIc=%Lpd*eqVu_fCZGC7s=1@KRp(Dz2 z45?;ra94n-2a0nPqQ4FiFz`r)Nvg*=HK*D)7Ec`WD7KikJYMyyfP%*P+)msso?a~Y zW3VH-g@OZsk7}vG);ij(-36T(Q$Vy$en`a_tLR8)Kp${~=f^3)QKwx$+Og{?&YzLk zQOB|!jzq&(Z3fcV)Y>(k+~!eR5LrNgJQhi=cC87@u%{YaM_Zq0g1a4@@rlajTW>A8Y&G`eq|F#Ih>djf@$jqs&aTAg{TpNpAHBejEhk{m*Q_-*h z`fF*+$bdd^Xxcia7A$UZJvjv|)e41)39!H_OejMN4il6MfM8m-7!H97-exE@wTXS0 zkF55{8NGf|rTDsq+cH+>nreqQhd^Npr||xcLLPcp`R)hB zyP5N`wMa+=v(>c=(-cQmf-OE~$7@;7sny*uuQvM-*ffVF<^_0@aj#_A{3t#&H>PIq zfZj~Hf5cvtwASYdtd@92rstF+or(x`d^OwTVLk=MX3XO&)AmcU(^JA%tO_n~cO>SFtqI%$gZvdkX zT8m4E7+0>!A%EvBmp>`b3+VX7cv9p~@atC~9zQu{^kkP<{)k|FFe+-O+22H44uk46 zm>yr$iXY@?ZDWdUADs`n?ucHyXegpf+;7UqwQTI5#W+Kg(qdx%V8k zh83#nNi1J9`B0Bb%9bd>k#q8?F<}9ZQy`3UE=DL62v?cZ5p9)+Z*>r2TB5;hkN`z# zWf>K|ZUbgeAmYj~246^P&XniAB8l8 zK!Gb`ezr6*)6(;Xx+X;zK!k8@(pXG172g9lr6tg=KMq?Ox+PqZoNH zwr5W|9thW5ojjVD)fDcWo-aZ@Ij_>VaJrC>WX@k-e*5Vcmw)+}U&`PAePQb$NfFn# z`uf74eYmRPaiPlw71;RJGoEAH@{b>GEzMr5$kt#vILs1hJH$ zuk9lUtUKb1-TIPVhX++#yWy~#81Y7Ir6i|m!!%twEeFrJjivjJ>cLUWp_@4x*- z|K@Fv!fHo)jCEz`W7TnE6jRmHiv=`kjvgSWFgYq}xQV4i;SM;{TgZZqR6M7Z?i!8Q z&OZdLLkVMEIJaKNH_m_hub*E2=fC;u;ak9}sW@BbMpq46_%z)HaF`p7qJ65F5-sgo ztz!m{kJBM2%7jzfh1r+Zl^tn}6R3G}h=I#^j8z=QP(ZOpAm4?eXe12)B<%V;SWeIy zs_g~Xp$8m1L=1+(;~}ObN=@w=kAg4Nl^IpIahw&((eM)Y= zN>&S!W9jJHMM`hjNs+l;#B0$CRL0`9iogm-0~?-^%Qn3ol-BR z@fFrd@2U|R4`$tM0ccl(8orDcIuW~*j?iQFLU0U^-ZA0ZQA5?ixlMbLngWHsV76h~ z*+Q`lU3JcsN^_8p-F7hu`JUh6BlMvI4H+q^Wz`2Teqg4Vup1c0kKzFubjCuh zxA{Xaa$}8^HnB2l%fboJU@EXFj!~rmZ$Oa0=`K*?dbW3(q0ojIrK6oGQQvbU#Cd!2 z27|hgfF1Px1RBFYPU{$DkPk9&{f7_~my?Rv*j0GOSUCCSYL*bIfRrw=#|f4f{$|>+ z>}fBr^LPCqBQewP6$PR&VKD}~h(ifsD#lX_6wMQa zz?GYpW_{6Py)38obCNuOV-9xAWij(}?amPaNvfpoOpL>%uOL^A&vUUfX%QXs&2Bf_ zUc7vH`Nx0!+2vQi{Ot1l#S6KKYJYuKUNOGX?=JG2wZhVC8hC=S9#t#aeR8QJK&_+R zm&BwF`vpO5*{NjIRT4EU5%Xf}i(F61>WHl_b}B4?hxO&xmoLA3e)-YA{7P;D|6BWe z$Kc9W+lWUawke-Z9x1Nc_%*@+m{St_b7LzeSnF$$Moc!YG0XVUO5kgIT?56{dC*j3 zuX@&yUEtth<+UTpHy;ecHInA_y2K0MgaD^)|Ly<%@#XhlJTrx$BfYYo%G!C<&L_;p zCM+nJz_yyOC4jUBsoCl^)n-$nX_|f7i^dA^FU?YIw#Bq#q z48~)PU@DpYl#X~WV+N=m%e;j@_Ct_758+Q{STE4TdEd@`%;9Vm>Yf-`VptCeM&B^) z9F5PqQU_2xzlYZcsLtciImP zplR#ADB~f0ZgQ_aK0R&Xt-mqc-Ulkcp6_y=oh`?au!Ic><6J`>bWS*Lvet>V?gKqB zxf9U)^!7k1d>r|s&W%t|ChPMp@}7fX`3dHrpzCiC8Jk#4?2l1jWTFf5N_qbVu$LCe zl?pMrD&yq{Fa#H*s@4Kp%HJud$EfP%PWqHNGPP4}41zNgZ%o<~e+TN@;_kAw&9TEn zjUH^L%ygn}O70}3j{L7BLY;w><7`dh>HXO9^c(c(WL?H(L`6HjQMBdpreQHrsm3*> zi9Q9a;wp}G$id|7jM;~P>l{NbNl`z8nqZE$f~}Kwl?7t#EM5=4k{h8v_@|#;e)HQe z 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�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 Date: Mon, 11 Nov 2024 14:16:37 +0000 Subject: [PATCH 043/171] Automatic changelog update --- Resources/Changelog/ChangelogSyndie.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/ChangelogSyndie.yml b/Resources/Changelog/ChangelogSyndie.yml index b5a15e84ea0..85f47b073b1 100644 --- a/Resources/Changelog/ChangelogSyndie.yml +++ b/Resources/Changelog/ChangelogSyndie.yml @@ -1,11 +1,4 @@ Entries: -- author: Morty - changes: - - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0441\u043F\u0440\u0430\ - \u0439\u0442\u044B \u043A\u043E\u0440\u043E\u0431\u043E\u043A" - type: Tweak - id: 193 - time: '2022-07-23T09:50:42.0000000+00:00' - author: Morty changes: - message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u043E \u043E\u043F\ @@ -4516,3 +4509,11 @@ id: 692 time: '2024-11-11T00:35:09.0000000+00:00' url: https://github.com/space-syndicate/space-station-14/pull/2740 +- author: Dezzzix + changes: + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u043D\u043E\u0432\u044B\ + \u0439 \u0430\u0440\u0442 \u0432 \u043B\u043E\u0431\u0431\u0438" + type: Add + id: 693 + time: '2024-11-11T14:13:54.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2762 From a138fede2bda4dcc3901898a5e3cacc415a68c86 Mon Sep 17 00:00:00 2001 From: BramvanZijp <56019239+BramvanZijp@users.noreply.github.com> Date: Mon, 11 Nov 2024 17:12:36 +0100 Subject: [PATCH 044/171] Make the Flare Gun & Security Shell Gun be unbolted by default. (#33248) --- .../Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml index b63036c58b2..224697bc93f 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/flare_gun.yml @@ -27,7 +27,7 @@ gun_chamber: !type:ContainerSlot - type: ChamberMagazineAmmoProvider autoCycle: false - boltClosed: true + boltClosed: false canRack: false soundBoltClosed: /Audio/Weapons/Guns/Cock/revolver_cock.ogg soundBoltOpened: /Audio/Weapons/Guns/Cock/revolver_cock.ogg From b9c2b0c41b16fe46dbd5cb056e1d5a1b0f8d251f Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 11 Nov 2024 16:13:45 +0000 Subject: [PATCH 045/171] 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 9b8052d835a..6abb7cc6a5e 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Ubaser - changes: - - message: Add two gatfruit mutations, one fake and one real capfruit which spawns - cap guns when eaten. - type: Add - id: 7102 - time: '2024-08-13T11:08:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30850 - author: slarticodefast changes: - message: Added new keybindings for rotating and flipping objects. The defaults @@ -3951,3 +3943,10 @@ id: 7601 time: '2024-11-10T04:26:51.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33130 +- author: BramvanZijp + changes: + - message: The Flare Gun & Security Shell Gun now start in their open/unbolted state. + type: Tweak + id: 7602 + time: '2024-11-11T16:12:36.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33248 From d22b02106dcdf91ad3e07f3404f86f06dc13e3e3 Mon Sep 17 00:00:00 2001 From: Kill_Me_I_Noobs <118206719+Vonsant@users.noreply.github.com> Date: Mon, 11 Nov 2024 20:26:13 +0300 Subject: [PATCH 046/171] Remove roundStart: false for Anivia voice prototype (#2764) --- Resources/Prototypes/Corvax/tts-voices.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/Resources/Prototypes/Corvax/tts-voices.yml b/Resources/Prototypes/Corvax/tts-voices.yml index 13092ee2e73..bef2168327c 100644 --- a/Resources/Prototypes/Corvax/tts-voices.yml +++ b/Resources/Prototypes/Corvax/tts-voices.yml @@ -1122,7 +1122,6 @@ name: tts-voice-name-anivia sex: Female speaker: anivia - roundStart: false - type: ttsVoice id: Ahri From e0e46d21a07d7cbef7e539a13f79061d0feed50a Mon Sep 17 00:00:00 2001 From: Halches <130847040+Halches@users.noreply.github.com> Date: Tue, 12 Nov 2024 00:45:59 +0300 Subject: [PATCH 047/171] Zombies able to see infection. --- Resources/Prototypes/StatusIcon/faction.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/StatusIcon/faction.yml b/Resources/Prototypes/StatusIcon/faction.yml index c6b8149fe46..48be246b6fd 100644 --- a/Resources/Prototypes/StatusIcon/faction.yml +++ b/Resources/Prototypes/StatusIcon/faction.yml @@ -17,6 +17,7 @@ components: - ShowAntagIcons - InitialInfected + - Zombie icon: sprite: /Textures/Interface/Misc/job_icons.rsi state: InitialInfected From 1136200dc838a5fd0a5a347025b703b968cdabec Mon Sep 17 00:00:00 2001 From: Andrew Montagne Date: Mon, 11 Nov 2024 22:58:31 +0000 Subject: [PATCH 048/171] BUGFIX: Fix APEs being able to be turned on without power (#32493) Add a check to see the APC is powered before turning the emitter on. --- Content.Server/Singularity/EntitySystems/EmitterSystem.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Server/Singularity/EntitySystems/EmitterSystem.cs b/Content.Server/Singularity/EntitySystems/EmitterSystem.cs index 1ada60e1d64..f828139ed6f 100644 --- a/Content.Server/Singularity/EntitySystems/EmitterSystem.cs +++ b/Content.Server/Singularity/EntitySystems/EmitterSystem.cs @@ -196,7 +196,8 @@ public void SwitchOn(EntityUid uid, EmitterComponent component) if (TryComp(uid, out var apcReceiver)) { apcReceiver.Load = component.PowerUseActive; - PowerOn(uid, component); + if (apcReceiver.Powered) + PowerOn(uid, component); } // Do not directly PowerOn(). // OnReceivedPowerChanged will get fired due to DrawRate change which will turn it on. From 37958378cbec572b0de11676c6962983ff2c58d5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Mon, 11 Nov 2024 22:59:38 +0000 Subject: [PATCH 049/171] 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 6abb7cc6a5e..43c7cad22c6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: slarticodefast - changes: - - message: Added new keybindings for rotating and flipping objects. The defaults - are R for clockwise, Shift+R for counterclockwise and F for flipping. - type: Add - id: 7103 - time: '2024-08-13T13:36:45.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30540 - author: Cojoke-dot changes: - message: Borg's names are now displayed when they make an announcement on the @@ -3950,3 +3942,10 @@ id: 7602 time: '2024-11-11T16:12:36.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33248 +- author: AndrewMontagne + changes: + - message: APEs could be powered on without local power + type: Fix + id: 7603 + time: '2024-11-11T22:58:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32493 From 806e1e46cb1fec598310d46c31e332e0876794c1 Mon Sep 17 00:00:00 2001 From: Simon <63975668+Simyon264@users.noreply.github.com> Date: Tue, 12 Nov 2024 03:10:25 +0100 Subject: [PATCH 050/171] Separate CCVars into separate files --- Content.Shared/CCVar/CCVars.Accessibility.cs | 41 + Content.Shared/CCVar/CCVars.Admin.Ahelp.cs | 39 + Content.Shared/CCVar/CCVars.Admin.Logs.cs | 42 + Content.Shared/CCVar/CCVars.Admin.Rules.cs | 18 + Content.Shared/CCVar/CCVars.Admin.cs | 163 ++ Content.Shared/CCVar/CCVars.Atmos.cs | 153 ++ Content.Shared/CCVar/CCVars.Audio.cs | 61 + Content.Shared/CCVar/CCVars.Chat.Looc.cs | 26 + Content.Shared/CCVar/CCVars.Chat.Ooc.cs | 27 + Content.Shared/CCVar/CCVars.Chat.cs | 68 + Content.Shared/CCVar/CCVars.Config.cs | 35 + Content.Shared/CCVar/CCVars.Console.cs | 15 + Content.Shared/CCVar/CCVars.Crewmanifest.cs | 24 + Content.Shared/CCVar/CCVars.Database.cs | 77 + Content.Shared/CCVar/CCVars.Discord.cs | 61 + Content.Shared/CCVar/CCVars.Events.cs | 12 + Content.Shared/CCVar/CCVars.Explosion.cs | 108 + Content.Shared/CCVar/CCVars.Game.Infolinks.cs | 54 + Content.Shared/CCVar/CCVars.Game.cs | 336 +++ Content.Shared/CCVar/CCVars.Ghost.cs | 24 + Content.Shared/CCVar/CCVars.Hud.cs | 24 + Content.Shared/CCVar/CCVars.Ic.cs | 48 + Content.Shared/CCVar/CCVars.Interactions.cs | 54 + Content.Shared/CCVar/CCVars.Interface.cs | 24 + Content.Shared/CCVar/CCVars.Mapping.cs | 24 + Content.Shared/CCVar/CCVars.Midi.cs | 18 + Content.Shared/CCVar/CCVars.Misc.cs | 97 + Content.Shared/CCVar/CCVars.NPC.cs | 16 + Content.Shared/CCVar/CCVars.Net.cs | 15 + Content.Shared/CCVar/CCVars.Parallax.cs | 15 + Content.Shared/CCVar/CCVars.Physics.cs | 27 + Content.Shared/CCVar/CCVars.Radiation.cs | 32 + Content.Shared/CCVar/CCVars.Replays.cs | 43 + Content.Shared/CCVar/CCVars.Salvage.cs | 18 + Content.Shared/CCVar/CCVars.Server.cs | 43 + Content.Shared/CCVar/CCVars.Shuttle.cs | 176 ++ Content.Shared/CCVar/CCVars.Sounds.cs | 34 + Content.Shared/CCVar/CCVars.Status.cs | 13 + Content.Shared/CCVar/CCVars.Tips.cs | 40 + Content.Shared/CCVar/CCVars.Viewport.cs | 33 + Content.Shared/CCVar/CCVars.Vote.cs | 180 ++ Content.Shared/CCVar/CCVars.Whitelist.cs | 19 + Content.Shared/CCVar/CCVars.Worldgen.cs | 18 + Content.Shared/CCVar/CCVars.cs | 2406 +---------------- 44 files changed, 2418 insertions(+), 2383 deletions(-) create mode 100644 Content.Shared/CCVar/CCVars.Accessibility.cs create mode 100644 Content.Shared/CCVar/CCVars.Admin.Ahelp.cs create mode 100644 Content.Shared/CCVar/CCVars.Admin.Logs.cs create mode 100644 Content.Shared/CCVar/CCVars.Admin.Rules.cs create mode 100644 Content.Shared/CCVar/CCVars.Admin.cs create mode 100644 Content.Shared/CCVar/CCVars.Atmos.cs create mode 100644 Content.Shared/CCVar/CCVars.Audio.cs create mode 100644 Content.Shared/CCVar/CCVars.Chat.Looc.cs create mode 100644 Content.Shared/CCVar/CCVars.Chat.Ooc.cs create mode 100644 Content.Shared/CCVar/CCVars.Chat.cs create mode 100644 Content.Shared/CCVar/CCVars.Config.cs create mode 100644 Content.Shared/CCVar/CCVars.Console.cs create mode 100644 Content.Shared/CCVar/CCVars.Crewmanifest.cs create mode 100644 Content.Shared/CCVar/CCVars.Database.cs create mode 100644 Content.Shared/CCVar/CCVars.Discord.cs create mode 100644 Content.Shared/CCVar/CCVars.Events.cs create mode 100644 Content.Shared/CCVar/CCVars.Explosion.cs create mode 100644 Content.Shared/CCVar/CCVars.Game.Infolinks.cs create mode 100644 Content.Shared/CCVar/CCVars.Game.cs create mode 100644 Content.Shared/CCVar/CCVars.Ghost.cs create mode 100644 Content.Shared/CCVar/CCVars.Hud.cs create mode 100644 Content.Shared/CCVar/CCVars.Ic.cs create mode 100644 Content.Shared/CCVar/CCVars.Interactions.cs create mode 100644 Content.Shared/CCVar/CCVars.Interface.cs create mode 100644 Content.Shared/CCVar/CCVars.Mapping.cs create mode 100644 Content.Shared/CCVar/CCVars.Midi.cs create mode 100644 Content.Shared/CCVar/CCVars.Misc.cs create mode 100644 Content.Shared/CCVar/CCVars.NPC.cs create mode 100644 Content.Shared/CCVar/CCVars.Net.cs create mode 100644 Content.Shared/CCVar/CCVars.Parallax.cs create mode 100644 Content.Shared/CCVar/CCVars.Physics.cs create mode 100644 Content.Shared/CCVar/CCVars.Radiation.cs create mode 100644 Content.Shared/CCVar/CCVars.Replays.cs create mode 100644 Content.Shared/CCVar/CCVars.Salvage.cs create mode 100644 Content.Shared/CCVar/CCVars.Server.cs create mode 100644 Content.Shared/CCVar/CCVars.Shuttle.cs create mode 100644 Content.Shared/CCVar/CCVars.Sounds.cs create mode 100644 Content.Shared/CCVar/CCVars.Status.cs create mode 100644 Content.Shared/CCVar/CCVars.Tips.cs create mode 100644 Content.Shared/CCVar/CCVars.Viewport.cs create mode 100644 Content.Shared/CCVar/CCVars.Vote.cs create mode 100644 Content.Shared/CCVar/CCVars.Whitelist.cs create mode 100644 Content.Shared/CCVar/CCVars.Worldgen.cs diff --git a/Content.Shared/CCVar/CCVars.Accessibility.cs b/Content.Shared/CCVar/CCVars.Accessibility.cs new file mode 100644 index 00000000000..8eb61f0806d --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Accessibility.cs @@ -0,0 +1,41 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + ///

    + /// Chat window opacity slider, controlling the alpha of the chat window background. + /// Goes from to 0 (completely transparent) to 1 (completely opaque) + /// + public static readonly CVarDef ChatWindowOpacity = + CVarDef.Create("accessibility.chat_window_transparency", 0.85f, CVar.CLIENTONLY | CVar.ARCHIVE); + + /// + /// Toggle for visual effects that may potentially cause motion sickness. + /// Where reasonable, effects affected by this CVar should use an alternate effect. + /// Please do not use this CVar as a bandaid for effects that could otherwise be made accessible without issue. + /// + public static readonly CVarDef ReducedMotion = + CVarDef.Create("accessibility.reduced_motion", false, CVar.CLIENTONLY | CVar.ARCHIVE); + + public static readonly CVarDef ChatEnableColorName = + CVarDef.Create("accessibility.enable_color_name", + true, + CVar.CLIENTONLY | CVar.ARCHIVE, + "Toggles displaying names with individual colors."); + + /// + /// Screen shake intensity slider, controlling the intensity of the CameraRecoilSystem. + /// Goes from 0 (no recoil at all) to 1 (regular amounts of recoil) + /// + public static readonly CVarDef ScreenShakeIntensity = + CVarDef.Create("accessibility.screen_shake_intensity", 1f, CVar.CLIENTONLY | CVar.ARCHIVE); + + /// + /// A generic toggle for various visual effects that are color sensitive. + /// As of 2/16/24, only applies to progress bar colors. + /// + public static readonly CVarDef AccessibilityColorblindFriendly = + CVarDef.Create("accessibility.colorblind_friendly", false, CVar.CLIENTONLY | CVar.ARCHIVE); +} diff --git a/Content.Shared/CCVar/CCVars.Admin.Ahelp.cs b/Content.Shared/CCVar/CCVars.Admin.Ahelp.cs new file mode 100644 index 00000000000..48f3965bb5c --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Admin.Ahelp.cs @@ -0,0 +1,39 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Ahelp rate limit values are accounted in periods of this size (seconds). + /// After the period has passed, the count resets. + /// + /// + public static readonly CVarDef AhelpRateLimitPeriod = + CVarDef.Create("ahelp.rate_limit_period", 2f, CVar.SERVERONLY); + + /// + /// How many ahelp messages are allowed in a single rate limit period. + /// + /// + public static readonly CVarDef AhelpRateLimitCount = + CVarDef.Create("ahelp.rate_limit_count", 10, CVar.SERVERONLY); + + /// + /// Should the administrator's position be displayed in ahelp. + /// If it is is false, only the admin's ckey will be displayed in the ahelp. + /// + /// + /// + public static readonly CVarDef AhelpAdminPrefix = + CVarDef.Create("ahelp.admin_prefix", false, CVar.SERVERONLY); + + /// + /// Should the administrator's position be displayed in the webhook. + /// If it is is false, only the admin's ckey will be displayed in webhook. + /// + /// + /// + public static readonly CVarDef AhelpAdminPrefixWebhook = + CVarDef.Create("ahelp.admin_prefix_webhook", false, CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Admin.Logs.cs b/Content.Shared/CCVar/CCVars.Admin.Logs.cs new file mode 100644 index 00000000000..862456ddfdd --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Admin.Logs.cs @@ -0,0 +1,42 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Controls if admin logs are enabled. Highly recommended to shut this off for development. + /// + public static readonly CVarDef AdminLogsEnabled = + CVarDef.Create("adminlogs.enabled", true, CVar.SERVERONLY); + + public static readonly CVarDef AdminLogsQueueSendDelay = + CVarDef.Create("adminlogs.queue_send_delay_seconds", 5f, CVar.SERVERONLY); + + /// + /// When to skip the waiting time to save in-round admin logs, if no admin logs are currently being saved + /// + public static readonly CVarDef AdminLogsQueueMax = + CVarDef.Create("adminlogs.queue_max", 5000, CVar.SERVERONLY); + + /// + /// When to skip the waiting time to save pre-round admin logs, if no admin logs are currently being saved + /// + public static readonly CVarDef AdminLogsPreRoundQueueMax = + CVarDef.Create("adminlogs.pre_round_queue_max", 5000, CVar.SERVERONLY); + + /// + /// When to start dropping logs + /// + public static readonly CVarDef AdminLogsDropThreshold = + CVarDef.Create("adminlogs.drop_threshold", 20000, CVar.SERVERONLY); + + /// + /// How many logs to send to the client at once + /// + public static readonly CVarDef AdminLogsClientBatchSize = + CVarDef.Create("adminlogs.client_batch_size", 1000, CVar.SERVERONLY); + + public static readonly CVarDef AdminLogsServerName = + CVarDef.Create("adminlogs.server_name", "unknown", CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Admin.Rules.cs b/Content.Shared/CCVar/CCVars.Admin.Rules.cs new file mode 100644 index 00000000000..7385104364b --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Admin.Rules.cs @@ -0,0 +1,18 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Time that players have to wait before rules can be accepted. + /// + public static readonly CVarDef RulesWaitTime = + CVarDef.Create("rules.time", 45f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Don't show rules to localhost/loopback interface. + /// + public static readonly CVarDef RulesExemptLocal = + CVarDef.Create("rules.exempt_local", true, CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Admin.cs b/Content.Shared/CCVar/CCVars.Admin.cs new file mode 100644 index 00000000000..28bebfbe8a6 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Admin.cs @@ -0,0 +1,163 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + public static readonly CVarDef AdminAnnounceLogin = + CVarDef.Create("admin.announce_login", true, CVar.SERVERONLY); + + public static readonly CVarDef AdminAnnounceLogout = + CVarDef.Create("admin.announce_logout", true, CVar.SERVERONLY); + + /// + /// The token used to authenticate with the admin API. Leave empty to disable the admin API. This is a secret! Do not share! + /// + public static readonly CVarDef AdminApiToken = + CVarDef.Create("admin.api_token", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); + + /// + /// Should users be able to see their own notes? Admins will be able to see and set notes regardless + /// + public static readonly CVarDef SeeOwnNotes = + CVarDef.Create("admin.see_own_notes", false, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); + + /// + /// Should the server play a quick sound to the active admins whenever a new player joins? + /// + public static readonly CVarDef AdminNewPlayerJoinSound = + CVarDef.Create("admin.new_player_join_sound", false, CVar.SERVERONLY); + + /// + /// The amount of days before the note starts fading. It will slowly lose opacity until it reaches stale. Set to 0 to disable. + /// + public static readonly CVarDef NoteFreshDays = + CVarDef.Create("admin.note_fresh_days", 91.31055, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); + + /// + /// The amount of days before the note completely fades, and can only be seen by admins if they press "see more notes". Set to 0 + /// if you want the note to immediately disappear without fading. + /// + public static readonly CVarDef NoteStaleDays = + CVarDef.Create("admin.note_stale_days", 365.2422, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); + + /// + /// How much time does the user have to wait in seconds before confirming that they saw an admin message? + /// + public static readonly CVarDef MessageWaitTime = + CVarDef.Create("admin.message_wait_time", 3f, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); + + /// + /// Default severity for role bans + /// + public static readonly CVarDef RoleBanDefaultSeverity = + CVarDef.Create("admin.role_ban_default_severity", "medium", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Default severity for department bans + /// + public static readonly CVarDef DepartmentBanDefaultSeverity = + CVarDef.Create("admin.department_ban_default_severity", "medium", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Default severity for server bans + /// + public static readonly CVarDef ServerBanDefaultSeverity = + CVarDef.Create("admin.server_ban_default_severity", "High", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether a server ban will ban the player's ip by default. + /// + public static readonly CVarDef ServerBanIpBanDefault = + CVarDef.Create("admin.server_ban_ip_ban_default", true, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether a server ban will ban the player's hardware id by default. + /// + public static readonly CVarDef ServerBanHwidBanDefault = + CVarDef.Create("admin.server_ban_hwid_ban_default", true, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether to use details from last connection for ip/hwid in the BanPanel. + /// + public static readonly CVarDef ServerBanUseLastDetails = + CVarDef.Create("admin.server_ban_use_last_details", true, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether to erase a player's chat messages and their entity from the game when banned. + /// + public static readonly CVarDef ServerBanErasePlayer = + CVarDef.Create("admin.server_ban_erase_player", false, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Minimum players sharing a connection required to create an alert. -1 to disable the alert. + /// + /// + /// If you set this to 0 or 1 then it will alert on every connection, so probably don't do that. + /// + public static readonly CVarDef AdminAlertMinPlayersSharingConnection = + CVarDef.Create("admin.alert.min_players_sharing_connection", -1, CVar.SERVERONLY); + + /// + /// Minimum explosion intensity to create an admin alert message. -1 to disable the alert. + /// + public static readonly CVarDef AdminAlertExplosionMinIntensity = + CVarDef.Create("admin.alert.explosion_min_intensity", 60, CVar.SERVERONLY); + + /// + /// Minimum particle accelerator strength to create an admin alert message. + /// + public static readonly CVarDef AdminAlertParticleAcceleratorMinPowerState = + CVarDef.Create("admin.alert.particle_accelerator_min_power_state", 5, CVar.SERVERONLY); // strength 4 + + /// + /// Should the ban details in admin channel include PII? (IP, HWID, etc) + /// + public static readonly CVarDef AdminShowPIIOnBan = + 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 + /// de-admin them. + /// + public static readonly CVarDef AdminDeadminOnJoin = + CVarDef.Create("admin.deadmin_on_join", false, CVar.SERVERONLY); + + /// + /// Overrides the name the client sees in ahelps. Set empty to disable. + /// + public static readonly CVarDef AdminAhelpOverrideClientName = + CVarDef.Create("admin.override_adminname_in_client_ahelp", string.Empty, CVar.SERVERONLY); + + /// + /// The threshold of minutes to appear as a "new player" in the ahelp menu + /// If 0, appearing as a new player is disabled. + /// + public static readonly CVarDef NewPlayerThreshold = + CVarDef.Create("admin.new_player_threshold", 0, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); + + /// + /// How long an admin client can go without any input before being considered AFK. + /// + public static readonly CVarDef AdminAfkTime = + CVarDef.Create("admin.afk_time", 600f, CVar.SERVERONLY); + + /// + /// If true, admins are able to connect even if + /// would otherwise block regular players. + /// + public static readonly CVarDef AdminBypassMaxPlayers = + CVarDef.Create("admin.bypass_max_players", true, CVar.SERVERONLY); + + /// + /// Determine if custom rank names are used. + /// If it is false, it'd use the actual rank name regardless of the individual's title. + /// + /// + /// + public static readonly CVarDef AdminUseCustomNamesAdminRank = + CVarDef.Create("admin.use_custom_names_admin_rank", true, CVar.SERVERONLY); + + public static readonly CVarDef BanHardwareIds = + CVarDef.Create("ban.hardware_ids", true, CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Atmos.cs b/Content.Shared/CCVar/CCVars.Atmos.cs new file mode 100644 index 00000000000..cc1069b4fc8 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Atmos.cs @@ -0,0 +1,153 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Whether gas differences will move entities. + /// + public static readonly CVarDef SpaceWind = + CVarDef.Create("atmos.space_wind", false, CVar.SERVERONLY); + + /// + /// Divisor from maxForce (pressureDifference * 2.25f) to force applied on objects. + /// + public static readonly CVarDef SpaceWindPressureForceDivisorThrow = + CVarDef.Create("atmos.space_wind_pressure_force_divisor_throw", 15f, CVar.SERVERONLY); + + /// + /// Divisor from maxForce (pressureDifference * 2.25f) to force applied on objects. + /// + public static readonly CVarDef SpaceWindPressureForceDivisorPush = + CVarDef.Create("atmos.space_wind_pressure_force_divisor_push", 2500f, CVar.SERVERONLY); + + /// + /// The maximum velocity (not force) that may be applied to an object by atmospheric pressure differences. + /// Useful to prevent clipping through objects. + /// + public static readonly CVarDef SpaceWindMaxVelocity = + CVarDef.Create("atmos.space_wind_max_velocity", 30f, CVar.SERVERONLY); + + /// + /// The maximum force that may be applied to an object by pushing (i.e. not throwing) atmospheric pressure differences. + /// A "throwing" atmospheric pressure difference ignores this limit, but not the max. velocity limit. + /// + public static readonly CVarDef SpaceWindMaxPushForce = + CVarDef.Create("atmos.space_wind_max_push_force", 20f, CVar.SERVERONLY); + + /// + /// Whether monstermos tile equalization is enabled. + /// + public static readonly CVarDef MonstermosEqualization = + CVarDef.Create("atmos.monstermos_equalization", true, CVar.SERVERONLY); + + /// + /// Whether monstermos explosive depressurization is enabled. + /// Needs to be enabled to work. + /// + public static readonly CVarDef MonstermosDepressurization = + CVarDef.Create("atmos.monstermos_depressurization", true, CVar.SERVERONLY); + + /// + /// Whether monstermos explosive depressurization will rip tiles.. + /// Needs and to be enabled to work. + /// WARNING: This cvar causes MAJOR contrast issues, and usually tends to make any spaced scene look very cluttered. + /// This not only usually looks strange, but can also reduce playability for people with impaired vision. Please think twice before enabling this on your server. + /// Also looks weird on slow spacing for unrelated reasons. If you do want to enable this, you should probably turn on instaspacing. + /// + public static readonly CVarDef MonstermosRipTiles = + CVarDef.Create("atmos.monstermos_rip_tiles", false, CVar.SERVERONLY); + + /// + /// Whether explosive depressurization will cause the grid to gain an impulse. + /// Needs and to be enabled to work. + /// + public static readonly CVarDef AtmosGridImpulse = + CVarDef.Create("atmos.grid_impulse", false, CVar.SERVERONLY); + + /// + /// What fraction of air from a spaced tile escapes every tick. + /// 1.0 for instant spacing, 0.2 means 20% of remaining air lost each time + /// + public static readonly CVarDef AtmosSpacingEscapeRatio = + CVarDef.Create("atmos.mmos_spacing_speed", 0.15f, CVar.SERVERONLY); + + /// + /// Minimum amount of air allowed on a spaced tile before it is reset to 0 immediately in kPa + /// Since the decay due to SpacingEscapeRatio follows a curve, it would never reach 0.0 exactly + /// unless we truncate it somewhere. + /// + public static readonly CVarDef AtmosSpacingMinGas = + CVarDef.Create("atmos.mmos_min_gas", 2.0f, CVar.SERVERONLY); + + /// + /// How much wind can go through a single tile before that tile doesn't depressurize itself + /// (I.e spacing is limited in large rooms heading into smaller spaces) + /// + public static readonly CVarDef AtmosSpacingMaxWind = + CVarDef.Create("atmos.mmos_max_wind", 500f, CVar.SERVERONLY); + + /// + /// Whether atmos superconduction is enabled. + /// + /// Disabled by default, superconduction is awful. + public static readonly CVarDef Superconduction = + CVarDef.Create("atmos.superconduction", false, CVar.SERVERONLY); + + /// + /// Heat loss per tile due to radiation at 20 degC, in W. + /// + public static readonly CVarDef SuperconductionTileLoss = + CVarDef.Create("atmos.superconduction_tile_loss", 30f, CVar.SERVERONLY); + + /// + /// Whether excited groups will be processed and created. + /// + public static readonly CVarDef ExcitedGroups = + CVarDef.Create("atmos.excited_groups", true, CVar.SERVERONLY); + + /// + /// Whether all tiles in an excited group will clear themselves once being exposed to space. + /// Similar to , without none of the tile ripping or + /// things being thrown around very violently. + /// Needs to be enabled to work. + /// + public static readonly CVarDef ExcitedGroupsSpaceIsAllConsuming = + CVarDef.Create("atmos.excited_groups_space_is_all_consuming", false, CVar.SERVERONLY); + + /// + /// Maximum time in milliseconds that atmos can take processing. + /// + public static readonly CVarDef AtmosMaxProcessTime = + CVarDef.Create("atmos.max_process_time", 3f, CVar.SERVERONLY); + + /// + /// Atmos tickrate in TPS. Atmos processing will happen every 1/TPS seconds. + /// + public static readonly CVarDef AtmosTickRate = + CVarDef.Create("atmos.tickrate", 15f, CVar.SERVERONLY); + + /// + /// Scale factor for how fast things happen in our atmosphere + /// simulation compared to real life. 1x means pumps run at 1x + /// speed. Players typically expect things to happen faster + /// in-game. + /// + public static readonly CVarDef AtmosSpeedup = + CVarDef.Create("atmos.speedup", 8f, CVar.SERVERONLY); + + /// + /// Like atmos.speedup, but only for gas and reaction heat values. 64x means + /// gases heat up and cool down 64x faster than real life. + /// + public static readonly CVarDef AtmosHeatScale = + CVarDef.Create("atmos.heat_scale", 8f, CVar.SERVERONLY); + + /// + /// Maximum explosion radius for explosions caused by bursting a gas tank ("max caps"). + /// Setting this to zero disables the explosion but still allows the tank to burst and leak. + /// + public static readonly CVarDef AtmosTankFragment = + CVarDef.Create("atmos.max_explosion_range", 26f, CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Audio.cs b/Content.Shared/CCVar/CCVars.Audio.cs new file mode 100644 index 00000000000..4d9e7c44315 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Audio.cs @@ -0,0 +1,61 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// How long we'll wait until re-sampling nearby objects for ambience. Should be pretty fast, but doesn't have to match the tick rate. + /// + public static readonly CVarDef AmbientCooldown = + CVarDef.Create("ambience.cooldown", 0.1f, CVar.ARCHIVE | CVar.CLIENTONLY); + + /// + /// How large of a range to sample for ambience. + /// + public static readonly CVarDef AmbientRange = + CVarDef.Create("ambience.range", 8f, CVar.REPLICATED | CVar.SERVER); + + /// + /// Maximum simultaneous ambient sounds. + /// + public static readonly CVarDef MaxAmbientSources = + CVarDef.Create("ambience.max_sounds", 16, CVar.ARCHIVE | CVar.CLIENTONLY); + + /// + /// The minimum value the user can set for ambience.max_sounds + /// + public static readonly CVarDef MinMaxAmbientSourcesConfigured = + CVarDef.Create("ambience.min_max_sounds_configured", 16, CVar.REPLICATED | CVar.SERVER | CVar.CHEAT); + + /// + /// The maximum value the user can set for ambience.max_sounds + /// + public static readonly CVarDef MaxMaxAmbientSourcesConfigured = + CVarDef.Create("ambience.max_max_sounds_configured", 64, CVar.REPLICATED | CVar.SERVER | CVar.CHEAT); + + /// + /// Ambience volume. + /// + public static readonly CVarDef AmbienceVolume = + CVarDef.Create("ambience.volume", 1.5f, CVar.ARCHIVE | CVar.CLIENTONLY); + + /// + /// Ambience music volume. + /// + public static readonly CVarDef AmbientMusicVolume = + CVarDef.Create("ambience.music_volume", 1.5f, CVar.ARCHIVE | CVar.CLIENTONLY); + + /// + /// Lobby / round end music volume. + /// + public static readonly CVarDef LobbyMusicVolume = + CVarDef.Create("ambience.lobby_music_volume", 0.50f, CVar.ARCHIVE | CVar.CLIENTONLY); + + /// + /// UI volume. + /// + public static readonly CVarDef InterfaceVolume = + CVarDef.Create("audio.interface_volume", 0.50f, CVar.ARCHIVE | CVar.CLIENTONLY); + +} diff --git a/Content.Shared/CCVar/CCVars.Chat.Looc.cs b/Content.Shared/CCVar/CCVars.Chat.Looc.cs new file mode 100644 index 00000000000..84ee2c28072 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Chat.Looc.cs @@ -0,0 +1,26 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + public static readonly CVarDef LoocEnabled = + CVarDef.Create("looc.enabled", true, CVar.NOTIFY | CVar.REPLICATED); + + public static readonly CVarDef AdminLoocEnabled = + CVarDef.Create("looc.enabled_admin", true, CVar.NOTIFY); + + /// + /// True: Dead players can use LOOC + /// False: Dead player LOOC gets redirected to dead chat + /// + public static readonly CVarDef DeadLoocEnabled = + CVarDef.Create("looc.enabled_dead", false, CVar.NOTIFY | CVar.REPLICATED); + + /// + /// True: Crit players can use LOOC + /// False: Crit player LOOC gets redirected to dead chat + /// + public static readonly CVarDef CritLoocEnabled = + CVarDef.Create("looc.enabled_crit", false, CVar.NOTIFY | CVar.REPLICATED); +} diff --git a/Content.Shared/CCVar/CCVars.Chat.Ooc.cs b/Content.Shared/CCVar/CCVars.Chat.Ooc.cs new file mode 100644 index 00000000000..ba5e41053b6 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Chat.Ooc.cs @@ -0,0 +1,27 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + public static readonly CVarDef + OocEnabled = CVarDef.Create("ooc.enabled", true, CVar.NOTIFY | CVar.REPLICATED); + + public static readonly CVarDef AdminOocEnabled = + CVarDef.Create("ooc.enabled_admin", true, CVar.NOTIFY); + + /// + /// If true, whenever OOC is disabled the Discord OOC relay will also be disabled. + /// + public static readonly CVarDef DisablingOOCDisablesRelay = + CVarDef.Create("ooc.disabling_ooc_disables_relay", true, CVar.SERVERONLY); + + /// + /// Whether or not OOC chat should be enabled during a round. + /// + public static readonly CVarDef OocEnableDuringRound = + CVarDef.Create("ooc.enable_during_round", false, CVar.NOTIFY | CVar.REPLICATED | CVar.SERVER); + + public static readonly CVarDef ShowOocPatronColor = + CVarDef.Create("ooc.show_ooc_patron_color", true, CVar.ARCHIVE | CVar.REPLICATED | CVar.CLIENT); +} diff --git a/Content.Shared/CCVar/CCVars.Chat.cs b/Content.Shared/CCVar/CCVars.Chat.cs new file mode 100644 index 00000000000..139a82372a2 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Chat.cs @@ -0,0 +1,68 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Chat rate limit values are accounted in periods of this size (seconds). + /// After the period has passed, the count resets. + /// + /// + public static readonly CVarDef ChatRateLimitPeriod = + CVarDef.Create("chat.rate_limit_period", 2f, CVar.SERVERONLY); + + /// + /// How many chat messages are allowed in a single rate limit period. + /// + /// + /// The total rate limit throughput per second is effectively + /// divided by . + /// + /// + public static readonly CVarDef ChatRateLimitCount = + CVarDef.Create("chat.rate_limit_count", 10, CVar.SERVERONLY); + + /// + /// Minimum delay (in seconds) between notifying admins about chat message rate limit violations. + /// A negative value disables admin announcements. + /// + public static readonly CVarDef ChatRateLimitAnnounceAdminsDelay = + CVarDef.Create("chat.rate_limit_announce_admins_delay", 15, CVar.SERVERONLY); + + public static readonly CVarDef ChatMaxMessageLength = + CVarDef.Create("chat.max_message_length", 1000, CVar.SERVER | CVar.REPLICATED); + + public static readonly CVarDef ChatMaxAnnouncementLength = + CVarDef.Create("chat.max_announcement_length", 256, CVar.SERVER | CVar.REPLICATED); + + public static readonly CVarDef ChatSanitizerEnabled = + CVarDef.Create("chat.chat_sanitizer_enabled", true, CVar.SERVERONLY); + + public static readonly CVarDef ChatShowTypingIndicator = + CVarDef.Create("chat.show_typing_indicator", true, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); + + public static readonly CVarDef ChatEnableFancyBubbles = + CVarDef.Create("chat.enable_fancy_bubbles", + true, + CVar.CLIENTONLY | CVar.ARCHIVE, + "Toggles displaying fancy speech bubbles, which display the speaking character's name."); + + public static readonly CVarDef ChatFancyNameBackground = + CVarDef.Create("chat.fancy_name_background", + false, + CVar.CLIENTONLY | CVar.ARCHIVE, + "Toggles displaying a background under the speaking character's name."); + + /// + /// A message broadcast to each player that joins the lobby. + /// May be changed by admins ingame through use of the "set-motd" command. + /// In this case the new value, if not empty, is broadcast to all connected players and saved between rounds. + /// May be requested by any player through use of the "get-motd" command. + /// + public static readonly CVarDef MOTD = + CVarDef.Create("chat.motd", + "", + CVar.SERVER | CVar.SERVERONLY | CVar.ARCHIVE, + "A message broadcast to each player that joins the lobby."); +} diff --git a/Content.Shared/CCVar/CCVars.Config.cs b/Content.Shared/CCVar/CCVars.Config.cs new file mode 100644 index 00000000000..4e11f09ee7c --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Config.cs @@ -0,0 +1,35 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + // These are server-only for now since I don't foresee a client use yet, + // and I don't wanna have to start coming up with like .client suffixes and stuff like that. + + /// + /// Configuration presets to load during startup. + /// Multiple presets can be separated by comma and are loaded in order. + /// + /// + /// Loaded presets must be located under the ConfigPresets/ resource directory and end with the .toml extension. + /// Only the file name (without extension) must be given for this variable. + /// + public static readonly CVarDef ConfigPresets = + CVarDef.Create("config.presets", "", CVar.SERVERONLY); + + /// + /// Whether to load the preset development CVars. + /// This disables some things like lobby to make development easier. + /// Even when true, these are only loaded if the game is compiled with DEVELOPMENT set. + /// + public static readonly CVarDef ConfigPresetDevelopment = + CVarDef.Create("config.preset_development", true, CVar.SERVERONLY); + + /// + /// Whether to load the preset debug CVars. + /// Even when true, these are only loaded if the game is compiled with DEBUG set. + /// + public static readonly CVarDef ConfigPresetDebug = + CVarDef.Create("config.preset_debug", true, CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Console.cs b/Content.Shared/CCVar/CCVars.Console.cs new file mode 100644 index 00000000000..e670b9f836e --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Console.cs @@ -0,0 +1,15 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + public static readonly CVarDef ConsoleLoginLocal = + CVarDef.Create("console.loginlocal", true, CVar.ARCHIVE | CVar.SERVERONLY); + + /// + /// Automatically log in the given user as host, equivalent to the promotehost command. + /// + public static readonly CVarDef ConsoleLoginHostUser = + CVarDef.Create("console.login_host_user", "", CVar.ARCHIVE | CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Crewmanifest.cs b/Content.Shared/CCVar/CCVars.Crewmanifest.cs new file mode 100644 index 00000000000..d6251886b95 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Crewmanifest.cs @@ -0,0 +1,24 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Setting this allows a crew manifest to be opened from any window + /// that has a crew manifest button, and sends the correct message. + /// If this is false, only in-game entities will allow you to see + /// the crew manifest, if the functionality is coded in. + /// Having administrator priveledge ignores this, but will still + /// hide the button in UI windows. + /// + public static readonly CVarDef CrewManifestWithoutEntity = + CVarDef.Create("crewmanifest.no_entity", true, CVar.REPLICATED); + + /// + /// Setting this allows the crew manifest to be viewed from 'unsecure' + /// entities, such as the PDA. + /// + public static readonly CVarDef CrewManifestUnsecure = + CVarDef.Create("crewmanifest.unsecure", true, CVar.REPLICATED); +} diff --git a/Content.Shared/CCVar/CCVars.Database.cs b/Content.Shared/CCVar/CCVars.Database.cs new file mode 100644 index 00000000000..c549bd7e033 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Database.cs @@ -0,0 +1,77 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ +#if DEBUG + private const int DefaultSqliteDelay = 1; +#else + private const int DefaultSqliteDelay = 0; +#endif + + public static readonly CVarDef DatabaseEngine = + CVarDef.Create("database.engine", "sqlite", CVar.SERVERONLY); + + public static readonly CVarDef DatabaseSqliteDbPath = + CVarDef.Create("database.sqlite_dbpath", "preferences.db", CVar.SERVERONLY); + + /// + /// Milliseconds to asynchronously delay all SQLite database acquisitions with. + /// + /// + /// Defaults to 1 on DEBUG, 0 on RELEASE. + /// This is intended to help catch .Result deadlock bugs that only happen on postgres + /// (because SQLite is not actually asynchronous normally) + /// + public static readonly CVarDef DatabaseSqliteDelay = + CVarDef.Create("database.sqlite_delay", DefaultSqliteDelay, CVar.SERVERONLY); + + /// + /// Amount of concurrent SQLite database operations. + /// + /// + /// Note that SQLite is not a properly asynchronous database and also has limited read/write concurrency. + /// Increasing this number may allow more concurrent reads, but it probably won't matter much. + /// SQLite operations are normally ran on the thread pool, which may cause thread pool starvation if the concurrency is too high. + /// + public static readonly CVarDef DatabaseSqliteConcurrency = + CVarDef.Create("database.sqlite_concurrency", 3, CVar.SERVERONLY); + + public static readonly CVarDef DatabasePgHost = + CVarDef.Create("database.pg_host", "localhost", CVar.SERVERONLY); + + public static readonly CVarDef DatabasePgPort = + CVarDef.Create("database.pg_port", 5432, CVar.SERVERONLY); + + public static readonly CVarDef DatabasePgDatabase = + CVarDef.Create("database.pg_database", "ss14", CVar.SERVERONLY); + + public static readonly CVarDef DatabasePgUsername = + CVarDef.Create("database.pg_username", "postgres", CVar.SERVERONLY); + + public static readonly CVarDef DatabasePgPassword = + CVarDef.Create("database.pg_password", "", CVar.SERVERONLY | CVar.CONFIDENTIAL); + + /// + /// Max amount of concurrent Postgres database operations. + /// + public static readonly CVarDef DatabasePgConcurrency = + CVarDef.Create("database.pg_concurrency", 8, CVar.SERVERONLY); + + /// + /// Milliseconds to asynchronously delay all PostgreSQL database operations with. + /// + /// + /// This is intended for performance testing. It works different from , + /// as the lag is applied after acquiring the database lock. + /// + public static readonly CVarDef DatabasePgFakeLag = + CVarDef.Create("database.pg_fake_lag", 0, CVar.SERVERONLY); + + /// + /// Basically only exists for integration tests to avoid race conditions. + /// + public static readonly CVarDef DatabaseSynchronous = + CVarDef.Create("database.sync", false, CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Discord.cs b/Content.Shared/CCVar/CCVars.Discord.cs new file mode 100644 index 00000000000..a6c4ada7454 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Discord.cs @@ -0,0 +1,61 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// The role that will get mentioned if a new SOS ahelp comes in. + /// + public static readonly CVarDef DiscordAhelpMention = + CVarDef.Create("discord.on_call_ping", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); + + /// + /// URL of the discord webhook to relay unanswered ahelp messages. + /// + public static readonly CVarDef DiscordOnCallWebhook = + CVarDef.Create("discord.on_call_webhook", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); + + /// + /// URL of the Discord webhook which will relay all ahelp messages. + /// + public static readonly CVarDef DiscordAHelpWebhook = + CVarDef.Create("discord.ahelp_webhook", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); + + /// + /// The server icon to use in the Discord ahelp embed footer. + /// Valid values are specified at https://discord.com/developers/docs/resources/channel#embed-object-embed-footer-structure. + /// + public static readonly CVarDef DiscordAHelpFooterIcon = + CVarDef.Create("discord.ahelp_footer_icon", string.Empty, CVar.SERVERONLY); + + /// + /// The avatar to use for the webhook. Should be an URL. + /// + public static readonly CVarDef DiscordAHelpAvatar = + CVarDef.Create("discord.ahelp_avatar", string.Empty, CVar.SERVERONLY); + + /// + /// URL of the Discord webhook which will relay all custom votes. If left empty, disables the webhook. + /// + public static readonly CVarDef DiscordVoteWebhook = + CVarDef.Create("discord.vote_webhook", string.Empty, CVar.SERVERONLY); + + /// + /// URL of the Discord webhook which will relay all votekick votes. If left empty, disables the webhook. + /// + public static readonly CVarDef DiscordVotekickWebhook = + CVarDef.Create("discord.votekick_webhook", string.Empty, CVar.SERVERONLY); + + /// + /// URL of the Discord webhook which will relay round restart messages. + /// + public static readonly CVarDef DiscordRoundUpdateWebhook = + CVarDef.Create("discord.round_update_webhook", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); + + /// + /// Role id for the Discord webhook to ping when the round ends. + /// + public static readonly CVarDef DiscordRoundEndRoleWebhook = + CVarDef.Create("discord.round_end_role", string.Empty, CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Events.cs b/Content.Shared/CCVar/CCVars.Events.cs new file mode 100644 index 00000000000..48797b8438c --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Events.cs @@ -0,0 +1,12 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Controls if the game should run station events + /// + public static readonly CVarDef + EventsEnabled = CVarDef.Create("events.enabled", true, CVar.ARCHIVE | CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Explosion.cs b/Content.Shared/CCVar/CCVars.Explosion.cs new file mode 100644 index 00000000000..51d93456b7e --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Explosion.cs @@ -0,0 +1,108 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// How many tiles the explosion system will process per tick + /// + /// + /// Setting this too high will put a large load on a single tick. Setting this too low will lead to + /// unnaturally "slow" explosions. + /// + public static readonly CVarDef ExplosionTilesPerTick = + CVarDef.Create("explosion.tiles_per_tick", 100, CVar.SERVERONLY); + + /// + /// Upper limit on the size of an explosion before physics-throwing is disabled. + /// + /// + /// Large nukes tend to generate a lot of shrapnel that flies through space. This can functionally cripple + /// the server TPS for a while after an explosion (or even during, if the explosion is processed + /// incrementally. + /// + public static readonly CVarDef ExplosionThrowLimit = + CVarDef.Create("explosion.throw_limit", 400, CVar.SERVERONLY); + + /// + /// If this is true, explosion processing will pause the NodeGroupSystem to pause updating. + /// + /// + /// This only takes effect if an explosion needs more than one tick to process (i.e., covers more than tiles). If this is not enabled, the node-system will rebuild its graph + /// every tick as the explosion shreds the station, causing significant slowdown. + /// + public static readonly CVarDef ExplosionSleepNodeSys = + CVarDef.Create("explosion.node_sleep", true, CVar.SERVERONLY); + + /// + /// Upper limit on the total area that an explosion can affect before the neighbor-finding algorithm just + /// stops. Defaults to a 60-rile radius explosion. + /// + /// + /// Actual area may be larger, as it currently doesn't terminate mid neighbor finding. I.e., area may be that of a ~51 tile radius circle instead. + /// + public static readonly CVarDef ExplosionMaxArea = + CVarDef.Create("explosion.max_area", (int)3.14f * 256 * 256, CVar.SERVERONLY); + + /// + /// Upper limit on the number of neighbor finding steps for the explosion system neighbor-finding algorithm. + /// + /// + /// Effectively places an upper limit on the range that any explosion can have. In the vast majority of + /// instances, will likely be hit before this becomes a limiting factor. + /// + public static readonly CVarDef ExplosionMaxIterations = + CVarDef.Create("explosion.max_iterations", 500, CVar.SERVERONLY); + + /// + /// Max Time in milliseconds to spend processing explosions every tick. + /// + /// + /// This time limiting is not perfectly implemented. Firstly, a significant chunk of processing time happens + /// due to queued entity deletions, which happen outside of the system update code. Secondly, explosion + /// spawning cannot currently be interrupted & resumed, and may lead to exceeding this time limit. + /// + public static readonly CVarDef ExplosionMaxProcessingTime = + CVarDef.Create("explosion.max_tick_time", 7f, CVar.SERVERONLY); + + /// + /// If the explosion is being processed incrementally over several ticks, this variable determines whether + /// updating the grid tiles should be done incrementally at the end of every tick, or only once the explosion has finished processing. + /// + /// + /// The most notable consequence of this change is that explosions will only punch a hole in the station & + /// create a vacumm once they have finished exploding. So airlocks will no longer slam shut as the explosion + /// expands, just suddenly at the end. + /// + public static readonly CVarDef ExplosionIncrementalTileBreaking = + CVarDef.Create("explosion.incremental_tile", false, CVar.SERVERONLY); + + /// + /// This determines for how many seconds an explosion should stay visible once it has finished expanding. + /// + public static readonly CVarDef ExplosionPersistence = + CVarDef.Create("explosion.persistence", 1.0f, CVar.SERVERONLY); + + /// + /// If an explosion covers a larger area than this number, the damaging/processing will always start during + /// the next tick, instead of during the same tick that the explosion was generated in. + /// + /// + /// This value can be used to ensure that for large explosions the area/tile calculation and the explosion + /// processing/damaging occurs in separate ticks. This helps reduce the single-tick lag if both and are large. I.e., instead of + /// a single tick explosion, this cvar allows for a configuration that results in a two-tick explosion, + /// though most of the computational cost is still in the second tick. + /// + public static readonly CVarDef ExplosionSingleTickAreaLimit = + CVarDef.Create("explosion.single_tick_area_limit", 400, CVar.SERVERONLY); + + /// + /// Whether or not explosions are allowed to create tiles that have + /// set to true. + /// + public static readonly CVarDef ExplosionCanCreateVacuum = + CVarDef.Create("explosion.can_create_vacuum", true, CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Game.Infolinks.cs b/Content.Shared/CCVar/CCVars.Game.Infolinks.cs new file mode 100644 index 00000000000..fa8332b497e --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Game.Infolinks.cs @@ -0,0 +1,54 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Link to Discord server to show in the launcher. + /// + public static readonly CVarDef InfoLinksDiscord = + CVarDef.Create("infolinks.discord", "", CVar.SERVER | CVar.REPLICATED); + + /// + /// Link to website to show in the launcher. + /// + public static readonly CVarDef InfoLinksForum = + CVarDef.Create("infolinks.forum", "", CVar.SERVER | CVar.REPLICATED); + + /// + /// Link to GitHub page to show in the launcher. + /// + public static readonly CVarDef InfoLinksGithub = + CVarDef.Create("infolinks.github", "", CVar.SERVER | CVar.REPLICATED); + + /// + /// Link to website to show in the launcher. + /// + public static readonly CVarDef InfoLinksWebsite = + CVarDef.Create("infolinks.website", "", CVar.SERVER | CVar.REPLICATED); + + /// + /// Link to wiki to show in the launcher. + /// + public static readonly CVarDef InfoLinksWiki = + CVarDef.Create("infolinks.wiki", "", CVar.SERVER | CVar.REPLICATED); + + /// + /// Link to Patreon. Not shown in the launcher currently. + /// + public static readonly CVarDef InfoLinksPatreon = + CVarDef.Create("infolinks.patreon", "", CVar.SERVER | CVar.REPLICATED); + + /// + /// Link to the bug report form. + /// + public static readonly CVarDef InfoLinksBugReport = + CVarDef.Create("infolinks.bug_report", "", CVar.SERVER | CVar.REPLICATED); + + /// + /// Link to site handling ban appeals. Shown in ban disconnect messages. + /// + public static readonly CVarDef InfoLinksAppeal = + CVarDef.Create("infolinks.appeal", "", CVar.SERVER | CVar.REPLICATED); +} diff --git a/Content.Shared/CCVar/CCVars.Game.cs b/Content.Shared/CCVar/CCVars.Game.cs new file mode 100644 index 00000000000..19092055e39 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Game.cs @@ -0,0 +1,336 @@ +using Content.Shared.Roles; +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Disables most functionality in the GameTicker. + /// + public static readonly CVarDef + GameDummyTicker = CVarDef.Create("game.dummyticker", false, CVar.ARCHIVE | CVar.SERVERONLY); + + /// + /// Controls if the lobby is enabled. If it is not, and there are no available jobs, you may get stuck on a black screen. + /// + public static readonly CVarDef + GameLobbyEnabled = CVarDef.Create("game.lobbyenabled", true, CVar.ARCHIVE); + + /// + /// Controls the duration of the lobby timer in seconds. Defaults to 2 minutes and 30 seconds. + /// + public static readonly CVarDef + GameLobbyDuration = CVarDef.Create("game.lobbyduration", 150, CVar.ARCHIVE); + + /// + /// Controls if players can latejoin at all. + /// + public static readonly CVarDef + GameDisallowLateJoins = CVarDef.Create("game.disallowlatejoins", false, CVar.ARCHIVE | CVar.SERVERONLY); + + /// + /// Controls the default game preset. + /// + public static readonly CVarDef + GameLobbyDefaultPreset = CVarDef.Create("game.defaultpreset", "secret", CVar.ARCHIVE); + + /// + /// Controls if the game can force a different preset if the current preset's criteria are not met. + /// + public static readonly CVarDef + GameLobbyFallbackEnabled = CVarDef.Create("game.fallbackenabled", true, CVar.ARCHIVE); + + /// + /// The preset for the game to fall back to if the selected preset could not be used, and fallback is enabled. + /// + public static readonly CVarDef + GameLobbyFallbackPreset = CVarDef.Create("game.fallbackpreset", "Traitor,Extended", CVar.ARCHIVE); + + /// + /// Controls if people can win the game in Suspicion or Deathmatch. + /// + public static readonly CVarDef + GameLobbyEnableWin = CVarDef.Create("game.enablewin", true, CVar.ARCHIVE); + + /// + /// Controls the maximum number of character slots a player is allowed to have. + /// + public static readonly CVarDef + GameMaxCharacterSlots = CVarDef.Create("game.maxcharacterslots", 30, CVar.ARCHIVE | CVar.SERVERONLY); + + /// + /// Controls the game map prototype to load. SS14 stores these prototypes in Prototypes/Maps. + /// + public static readonly CVarDef + GameMap = CVarDef.Create("game.map", string.Empty, CVar.SERVERONLY); + + /// + /// Controls whether to use world persistence or not. + /// + public static readonly CVarDef + UsePersistence = CVarDef.Create("game.usepersistence", false, CVar.ARCHIVE); + + /// + /// If world persistence is used, what map prototype should be initially loaded. + /// If the save file exists, it replaces MapPath but everything else stays the same (station name and such). + /// + public static readonly CVarDef + PersistenceMap = CVarDef.Create("game.persistencemap", "Empty", CVar.ARCHIVE); + + /// + /// Prototype to use for map pool. + /// + public static readonly CVarDef + GameMapPool = CVarDef.Create("game.map_pool", "DefaultMapPool", CVar.SERVERONLY); + + /// + /// The depth of the queue used to calculate which map is next in rotation. + /// This is how long the game "remembers" that some map was put in play. Default is 16 rounds. + /// + public static readonly CVarDef + GameMapMemoryDepth = CVarDef.Create("game.map_memory_depth", 16, CVar.SERVERONLY); + + /// + /// Is map rotation enabled? + /// + public static readonly CVarDef + GameMapRotation = CVarDef.Create("game.map_rotation", true, CVar.SERVERONLY); + + /// + /// If roles should be restricted based on time. + /// + public static readonly CVarDef + GameRoleTimers = CVarDef.Create("game.role_timers", true, CVar.SERVER | CVar.REPLICATED); + + /// + /// Override default role requirements using a + /// + public static readonly CVarDef + GameRoleTimerOverride = CVarDef.Create("game.role_timer_override", "", CVar.SERVER | CVar.REPLICATED); + + /// + /// If roles should be restricted based on whether or not they are whitelisted. + /// + public static readonly CVarDef + GameRoleWhitelist = CVarDef.Create("game.role_whitelist", true, CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether or not disconnecting inside of a cryopod should remove the character or just store them until they reconnect. + /// + public static readonly CVarDef + GameCryoSleepRejoining = CVarDef.Create("game.cryo_sleep_rejoining", false, CVar.SERVER | CVar.REPLICATED); + + /// + /// When enabled, guests will be assigned permanent UIDs and will have their preferences stored. + /// + public static readonly CVarDef GamePersistGuests = + CVarDef.Create("game.persistguests", true, CVar.ARCHIVE | CVar.SERVERONLY); + + public static readonly CVarDef GameDiagonalMovement = + CVarDef.Create("game.diagonalmovement", true, CVar.ARCHIVE); + + public static readonly CVarDef SoftMaxPlayers = + CVarDef.Create("game.soft_max_players", 30, CVar.SERVERONLY | CVar.ARCHIVE); + + /// + /// If a player gets denied connection to the server, + /// how long they are forced to wait before attempting to reconnect. + /// + public static readonly CVarDef GameServerFullReconnectDelay = + CVarDef.Create("game.server_full_reconnect_delay", 30, CVar.SERVERONLY); + + /// + /// Whether or not panic bunker is currently enabled. + /// + public static readonly CVarDef PanicBunkerEnabled = + CVarDef.Create("game.panic_bunker.enabled", false, CVar.NOTIFY | CVar.REPLICATED | CVar.SERVER); + + /// + /// Whether or not the panic bunker will disable when an admin comes online. + /// + public static readonly CVarDef PanicBunkerDisableWithAdmins = + CVarDef.Create("game.panic_bunker.disable_with_admins", false, CVar.SERVERONLY); + + /// + /// Whether or not the panic bunker will enable when no admins are online. + /// + public static readonly CVarDef PanicBunkerEnableWithoutAdmins = + CVarDef.Create("game.panic_bunker.enable_without_admins", false, CVar.SERVERONLY); + + /// + /// Whether or not the panic bunker will count deadminned admins for + /// and + /// + /// + public static readonly CVarDef PanicBunkerCountDeadminnedAdmins = + CVarDef.Create("game.panic_bunker.count_deadminned_admins", false, CVar.SERVERONLY); + + /// + /// Show reason of disconnect for user or not. + /// + public static readonly CVarDef PanicBunkerShowReason = + CVarDef.Create("game.panic_bunker.show_reason", false, CVar.SERVERONLY); + + /// + /// Minimum age of the account (from server's PoV, so from first-seen date) in minutes. + /// + public static readonly CVarDef PanicBunkerMinAccountAge = + CVarDef.Create("game.panic_bunker.min_account_age", 1440, CVar.SERVERONLY); + + /// + /// Minimal overall played time. + /// + public static readonly CVarDef PanicBunkerMinOverallMinutes = + CVarDef.Create("game.panic_bunker.min_overall_minutes", 600, CVar.SERVERONLY); + + /// + /// A custom message that will be used for connections denied to the panic bunker + /// If not empty, then will overwrite + /// + public static readonly CVarDef PanicBunkerCustomReason = + CVarDef.Create("game.panic_bunker.custom_reason", string.Empty, CVar.SERVERONLY); + + /// + /// Allow bypassing the panic bunker if the user is whitelisted. + /// + 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. + /// + public static readonly CVarDef GameTableBonk = + CVarDef.Create("game.table_bonk", false, CVar.REPLICATED); + + /// + /// Whether or not status icons are rendered for everyone. + /// + public static readonly CVarDef GlobalStatusIconsEnabled = + CVarDef.Create("game.global_status_icons_enabled", true, CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether or not status icons are rendered on this specific client. + /// + public static readonly CVarDef LocalStatusIconsEnabled = + CVarDef.Create("game.local_status_icons_enabled", true, CVar.CLIENTONLY); + + /// + /// Whether or not coordinates on the Debug overlay should only be available to admins. + /// + public static readonly CVarDef DebugCoordinatesAdminOnly = + CVarDef.Create("game.debug_coordinates_admin_only", true, CVar.SERVER | CVar.REPLICATED); + +#if EXCEPTION_TOLERANCE + /// + /// Amount of times round start must fail before the server is shut down. + /// Set to 0 or a negative number to disable. + /// + public static readonly CVarDef RoundStartFailShutdownCount = + CVarDef.Create("game.round_start_fail_shutdown_count", 5, CVar.SERVERONLY | CVar.SERVER); +#endif + + /// + /// Delay between station alert level changes. + /// + public static readonly CVarDef GameAlertLevelChangeDelay = + CVarDef.Create("game.alert_level_change_delay", 30, CVar.SERVERONLY); + + /// + /// The time in seconds that the server should wait before restarting the round. + /// Defaults to 2 minutes. + /// + public static readonly CVarDef RoundRestartTime = + CVarDef.Create("game.round_restart_time", 120f, CVar.SERVERONLY); + + /// + /// The prototype to use for secret weights. + /// + public static readonly CVarDef SecretWeightPrototype = + CVarDef.Create("game.secret_weight_prototype", "Secret", CVar.SERVERONLY); + + /// + /// The id of the sound collection to randomly choose a sound from and play when the round ends. + /// + public static readonly CVarDef RoundEndSoundCollection = + CVarDef.Create("game.round_end_sound_collection", "RoundEnd", CVar.SERVERONLY); + + /// + /// Whether or not to add every player as a global override to PVS at round end. + /// This will allow all players to see their clothing in the round screen player list screen, + /// but may cause lag during round end with very high player counts. + /// + public static readonly CVarDef RoundEndPVSOverrides = + CVarDef.Create("game.round_end_pvs_overrides", true, CVar.SERVERONLY); + + /// + /// If true, players can place objects onto tabletop games like chess boards. + /// + /// + /// This feature is currently highly abusable and can easily be used to crash the server, + /// so it's off by default. + /// + public static readonly CVarDef GameTabletopPlace = + CVarDef.Create("game.tabletop_place", false, CVar.SERVERONLY); + + /// + /// If true, contraband severity can be viewed in the examine menu + /// + public static readonly CVarDef ContrabandExamine = + CVarDef.Create("game.contraband_examine", true, CVar.SERVER | CVar.REPLICATED); + + /// + /// Size of the lookup area for adding entities to the context menu + /// + public static readonly CVarDef GameEntityMenuLookup = + CVarDef.Create("game.entity_menu_lookup", 0.25f, CVar.CLIENTONLY | CVar.ARCHIVE); + + /// + /// Should the clients window show the server hostname in the title? + /// + public static readonly CVarDef GameHostnameInTitlebar = + CVarDef.Create("game.hostname_in_titlebar", true, CVar.SERVER | CVar.REPLICATED); + +} diff --git a/Content.Shared/CCVar/CCVars.Ghost.cs b/Content.Shared/CCVar/CCVars.Ghost.cs new file mode 100644 index 00000000000..39e7a3c4910 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Ghost.cs @@ -0,0 +1,24 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// The time you must spend reading the rules, before the "Request" button is enabled + /// + public static readonly CVarDef GhostRoleTime = + CVarDef.Create("ghost.role_time", 3f, CVar.REPLICATED | CVar.SERVER); + + /// + /// If ghost role lotteries should be made near-instanteous. + /// + public static readonly CVarDef GhostQuickLottery = + CVarDef.Create("ghost.quick_lottery", false, CVar.SERVERONLY); + + /// + /// Whether or not to kill the player's mob on ghosting, when it is in a critical health state. + /// + public static readonly CVarDef GhostKillCrit = + CVarDef.Create("ghost.kill_crit", true, CVar.REPLICATED | CVar.SERVER); +} diff --git a/Content.Shared/CCVar/CCVars.Hud.cs b/Content.Shared/CCVar/CCVars.Hud.cs new file mode 100644 index 00000000000..f96924b3496 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Hud.cs @@ -0,0 +1,24 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + public static readonly CVarDef HudTheme = + CVarDef.Create("hud.theme", 0, CVar.ARCHIVE | CVar.CLIENTONLY); + + public static readonly CVarDef HudHeldItemShow = + CVarDef.Create("hud.held_item_show", true, CVar.ARCHIVE | CVar.CLIENTONLY); + + public static readonly CVarDef CombatModeIndicatorsPointShow = + CVarDef.Create("hud.combat_mode_indicators_point_show", true, CVar.ARCHIVE | CVar.CLIENTONLY); + + public static readonly CVarDef LoocAboveHeadShow = + CVarDef.Create("hud.show_looc_above_head", true, CVar.ARCHIVE | CVar.CLIENTONLY); + + public static readonly CVarDef HudHeldItemOffset = + CVarDef.Create("hud.held_item_offset", 28f, CVar.ARCHIVE | CVar.CLIENTONLY); + + public static readonly CVarDef HudFpsCounterVisible = + CVarDef.Create("hud.fps_counter_visible", false, CVar.CLIENTONLY | CVar.ARCHIVE); +} diff --git a/Content.Shared/CCVar/CCVars.Ic.cs b/Content.Shared/CCVar/CCVars.Ic.cs new file mode 100644 index 00000000000..e149e9f3e1e --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Ic.cs @@ -0,0 +1,48 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Restricts IC character names to alphanumeric chars. + /// + public static readonly CVarDef RestrictedNames = + CVarDef.Create("ic.restricted_names", true, CVar.SERVER | CVar.REPLICATED); + + /// + /// Allows flavor text (character descriptions) + /// + public static readonly CVarDef FlavorText = + CVarDef.Create("ic.flavor_text", false, CVar.SERVER | CVar.REPLICATED); + + /// + /// Adds a period at the end of a sentence if the sentence ends in a letter. + /// + public static readonly CVarDef ChatPunctuation = + CVarDef.Create("ic.punctuation", false, CVar.SERVER); + + /// + /// Enables automatically forcing IC name rules. Uppercases the first letter of the first and last words of the name + /// + public static readonly CVarDef ICNameCase = + CVarDef.Create("ic.name_case", true, CVar.SERVER | CVar.REPLICATED); + + /// + /// Whether or not players' characters are randomly generated rather than using their selected characters in the creator. + /// + public static readonly CVarDef ICRandomCharacters = + CVarDef.Create("ic.random_characters", false, CVar.SERVER); + + /// + /// A weighted random prototype used to determine the species selected for random characters. + /// + public static readonly CVarDef ICRandomSpeciesWeights = + CVarDef.Create("ic.random_species_weights", "SpeciesWeights", CVar.SERVER); + + /// + /// Control displaying SSD indicators near players + /// + public static readonly CVarDef ICShowSSDIndicator = + CVarDef.Create("ic.show_ssd_indicator", true, CVar.CLIENTONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Interactions.cs b/Content.Shared/CCVar/CCVars.Interactions.cs new file mode 100644 index 00000000000..c62f81be0ca --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Interactions.cs @@ -0,0 +1,54 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Deadzone for drag-drop interactions. + /// + public static readonly CVarDef DragDropDeadZone = + CVarDef.Create("control.drag_dead_zone", 12f, CVar.CLIENTONLY | CVar.ARCHIVE); + + /// + /// Toggles whether the walking key is a toggle or a held key. + /// + public static readonly CVarDef ToggleWalk = + CVarDef.Create("control.toggle_walk", false, CVar.CLIENTONLY | CVar.ARCHIVE); + + // The rationale behind the default limit is simply that I can easily get to 7 interactions per second by just + // trying to spam toggle a light switch or lever (though the UseDelay component limits the actual effect of the + // interaction). I don't want to accidentally spam admins with alerts just because somebody is spamming a + // key manually, nor do we want to alert them just because the player is having network issues and the server + // receives multiple interactions at once. But we also want to try catch people with modified clients that spam + // many interactions on the same tick. Hence, a very short period, with a relatively high count. + + /// + /// Maximum number of interactions that a player can perform within seconds + /// + public static readonly CVarDef InteractionRateLimitCount = + CVarDef.Create("interaction.rate_limit_count", 5, CVar.SERVER | CVar.REPLICATED); + + /// + public static readonly CVarDef InteractionRateLimitPeriod = + CVarDef.Create("interaction.rate_limit_period", 0.5f, CVar.SERVER | CVar.REPLICATED); + + /// + /// Minimum delay (in seconds) between notifying admins about interaction rate limit violations. A negative + /// value disables admin announcements. + /// + public static readonly CVarDef InteractionRateLimitAnnounceAdminsDelay = + CVarDef.Create("interaction.rate_limit_announce_admins_delay", 120, CVar.SERVERONLY); + + /// + /// Whether or not the storage UI is static and bound to the hotbar, or unbound and allowed to be dragged anywhere. + /// + public static readonly CVarDef StaticStorageUI = + CVarDef.Create("control.static_storage_ui", true, CVar.CLIENTONLY | CVar.ARCHIVE); + + /// + /// Whether or not the storage window uses a transparent or opaque sprite. + /// + public static readonly CVarDef OpaqueStorageWindow = + CVarDef.Create("control.opaque_storage_background", false, CVar.CLIENTONLY | CVar.ARCHIVE); +} diff --git a/Content.Shared/CCVar/CCVars.Interface.cs b/Content.Shared/CCVar/CCVars.Interface.cs new file mode 100644 index 00000000000..79a28e6b4e6 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Interface.cs @@ -0,0 +1,24 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + public static readonly CVarDef UIClickSound = + CVarDef.Create("interface.click_sound", "/Audio/UserInterface/click.ogg", CVar.REPLICATED); + + public static readonly CVarDef UIHoverSound = + CVarDef.Create("interface.hover_sound", "/Audio/UserInterface/hover.ogg", CVar.REPLICATED); + + public static readonly CVarDef UILayout = + CVarDef.Create("ui.layout", "Default", CVar.CLIENTONLY | CVar.ARCHIVE); + + public static readonly CVarDef DefaultScreenChatSize = + CVarDef.Create("ui.default_chat_size", "", CVar.CLIENTONLY | CVar.ARCHIVE); + + public static readonly CVarDef SeparatedScreenChatSize = + CVarDef.Create("ui.separated_chat_size", "0.6,0", CVar.CLIENTONLY | CVar.ARCHIVE); + + public static readonly CVarDef OutlineEnabled = + CVarDef.Create("outline.enabled", true, CVar.CLIENTONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Mapping.cs b/Content.Shared/CCVar/CCVars.Mapping.cs new file mode 100644 index 00000000000..06cd2870ba2 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Mapping.cs @@ -0,0 +1,24 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Will mapping mode enable autosaves when it's activated? + /// + public static readonly CVarDef + AutosaveEnabled = CVarDef.Create("mapping.autosave", true, CVar.SERVERONLY); + + /// + /// Autosave interval in seconds. + /// + public static readonly CVarDef + AutosaveInterval = CVarDef.Create("mapping.autosave_interval", 600f, CVar.SERVERONLY); + + /// + /// Directory in server user data to save to. Saves will be inside folders in this directory. + /// + public static readonly CVarDef + AutosaveDirectory = CVarDef.Create("mapping.autosave_dir", "Autosaves", CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Midi.cs b/Content.Shared/CCVar/CCVars.Midi.cs new file mode 100644 index 00000000000..4ca4bfd6f86 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Midi.cs @@ -0,0 +1,18 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + public static readonly CVarDef MaxMidiEventsPerSecond = + CVarDef.Create("midi.max_events_per_second", 1000, CVar.REPLICATED | CVar.SERVER); + + public static readonly CVarDef MaxMidiEventsPerBatch = + CVarDef.Create("midi.max_events_per_batch", 60, CVar.REPLICATED | CVar.SERVER); + + public static readonly CVarDef MaxMidiBatchesDropped = + CVarDef.Create("midi.max_batches_dropped", 1, CVar.SERVERONLY); + + public static readonly CVarDef MaxMidiLaggedBatches = + CVarDef.Create("midi.max_lagged_batches", 8, CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Misc.cs b/Content.Shared/CCVar/CCVars.Misc.cs new file mode 100644 index 00000000000..3d597c74274 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Misc.cs @@ -0,0 +1,97 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + public static readonly CVarDef HolidaysEnabled = CVarDef.Create("holidays.enabled", true, CVar.SERVERONLY); + public static readonly CVarDef BrandingSteam = CVarDef.Create("branding.steam", false, CVar.CLIENTONLY); + public static readonly CVarDef EntityMenuGroupingType = CVarDef.Create("entity_menu", 0, CVar.CLIENTONLY); + + /// + /// Should we pre-load all of the procgen atlasses. + /// + public static readonly CVarDef ProcgenPreload = + CVarDef.Create("procgen.preload", true, CVar.SERVERONLY); + + /// + /// Enabled: Cloning has 70% cost and reclaimer will refuse to reclaim corpses with souls. (For LRP). + /// Disabled: Cloning has full biomass cost and reclaimer can reclaim corpses with souls. (Playtested and balanced for MRP+). + /// + public static readonly CVarDef BiomassEasyMode = + CVarDef.Create("biomass.easy_mode", true, CVar.SERVERONLY); + + /// + /// A scale factor applied to a grid's bounds when trying to find a spot to randomly generate an anomaly. + /// + public static readonly CVarDef AnomalyGenerationGridBoundsScale = + CVarDef.Create("anomaly.generation_grid_bounds_scale", 0.6f, CVar.SERVERONLY); + + /// + /// How long a client can go without any input before being considered AFK. + /// + public static readonly CVarDef AfkTime = + CVarDef.Create("afk.time", 60f, CVar.SERVERONLY); + + /// + /// Flavor limit. This is to ensure that having a large mass of flavors in + /// some food object won't spam a user with flavors. + /// + public static readonly CVarDef + FlavorLimit = CVarDef.Create("flavor.limit", 10, CVar.SERVERONLY); + + public static readonly CVarDef DestinationFile = + CVarDef.Create("autogen.destination_file", "", CVar.SERVER | CVar.SERVERONLY); + + /// + /// Whether uploaded files will be stored in the server's database. + /// This is useful to keep "logs" on what files admins have uploaded in the past. + /// + public static readonly CVarDef ResourceUploadingStoreEnabled = + CVarDef.Create("netres.store_enabled", true, CVar.SERVER | CVar.SERVERONLY); + + /// + /// Numbers of days before stored uploaded files are deleted. Set to zero or negative to disable auto-delete. + /// This is useful to free some space automatically. Auto-deletion runs only on server boot. + /// + public static readonly CVarDef ResourceUploadingStoreDeletionDays = + CVarDef.Create("netres.store_deletion_days", 30, CVar.SERVER | CVar.SERVERONLY); + + /// + /// If a server update restart is pending, the delay after the last player leaves before we actually restart. In seconds. + /// + public static readonly CVarDef UpdateRestartDelay = + CVarDef.Create("update.restart_delay", 20f, CVar.SERVERONLY); + + /// + /// If fire alarms should have all access, or if activating/resetting these + /// should be restricted to what is dictated on a player's access card. + /// Defaults to true. + /// + public static readonly CVarDef FireAlarmAllAccess = + CVarDef.Create("firealarm.allaccess", true, CVar.SERVERONLY); + + /// + /// Time between play time autosaves, in seconds. + /// + public static readonly CVarDef + PlayTimeSaveInterval = CVarDef.Create("playtime.save_interval", 900f, CVar.SERVERONLY); + + /// + /// The maximum amount of time the entity GC can process, in ms. + /// + public static readonly CVarDef GCMaximumTimeMs = + CVarDef.Create("entgc.maximum_time_ms", 5, CVar.SERVERONLY); + + public static readonly CVarDef GatewayGeneratorEnabled = + CVarDef.Create("gateway.generator_enabled", true); + + public static readonly CVarDef TippyEntity = + CVarDef.Create("tippy.entity", "Tippy", CVar.SERVER | CVar.REPLICATED); + + /// + /// The number of seconds that must pass for a single entity to be able to point at something again. + /// + public static readonly CVarDef PointingCooldownSeconds = + CVarDef.Create("pointing.cooldown_seconds", 0.5f, CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.NPC.cs b/Content.Shared/CCVar/CCVars.NPC.cs new file mode 100644 index 00000000000..f0d5520195d --- /dev/null +++ b/Content.Shared/CCVar/CCVars.NPC.cs @@ -0,0 +1,16 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + public static readonly CVarDef NPCMaxUpdates = + CVarDef.Create("npc.max_updates", 128); + + public static readonly CVarDef NPCEnabled = CVarDef.Create("npc.enabled", true); + + /// + /// Should NPCs pathfind when steering. For debug purposes. + /// + public static readonly CVarDef NPCPathfinding = CVarDef.Create("npc.pathfinding", true); +} diff --git a/Content.Shared/CCVar/CCVars.Net.cs b/Content.Shared/CCVar/CCVars.Net.cs new file mode 100644 index 00000000000..b7465def2eb --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Net.cs @@ -0,0 +1,15 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + public static readonly CVarDef NetAtmosDebugOverlayTickRate = + CVarDef.Create("net.atmosdbgoverlaytickrate", 3.0f); + + public static readonly CVarDef NetGasOverlayTickRate = + CVarDef.Create("net.gasoverlaytickrate", 3.0f); + + public static readonly CVarDef GasOverlayThresholds = + CVarDef.Create("net.gasoverlaythresholds", 20); +} diff --git a/Content.Shared/CCVar/CCVars.Parallax.cs b/Content.Shared/CCVar/CCVars.Parallax.cs new file mode 100644 index 00000000000..9b19c8f4943 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Parallax.cs @@ -0,0 +1,15 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + public static readonly CVarDef ParallaxEnabled = + CVarDef.Create("parallax.enabled", true, CVar.CLIENTONLY); + + public static readonly CVarDef ParallaxDebug = + CVarDef.Create("parallax.debug", false, CVar.CLIENTONLY); + + public static readonly CVarDef ParallaxLowQuality = + CVarDef.Create("parallax.low_quality", false, CVar.ARCHIVE | CVar.CLIENTONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Physics.cs b/Content.Shared/CCVar/CCVars.Physics.cs new file mode 100644 index 00000000000..379676b5df9 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Physics.cs @@ -0,0 +1,27 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// When a mob is walking should its X / Y movement be relative to its parent (true) or the map (false). + /// + public static readonly CVarDef RelativeMovement = + CVarDef.Create("physics.relative_movement", true, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); + + public static readonly CVarDef TileFrictionModifier = + CVarDef.Create("physics.tile_friction", 40.0f, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); + + public static readonly CVarDef StopSpeed = + CVarDef.Create("physics.stop_speed", 0.1f, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); + + /// + /// Whether mobs can push objects like lockers. + /// + /// + /// Technically client doesn't need to know about it but this may prevent a bug in the distant future so it stays. + /// + public static readonly CVarDef MobPushing = + CVarDef.Create("physics.mob_pushing", false, CVar.REPLICATED | CVar.SERVER); +} diff --git a/Content.Shared/CCVar/CCVars.Radiation.cs b/Content.Shared/CCVar/CCVars.Radiation.cs new file mode 100644 index 00000000000..dfcce15b2f9 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Radiation.cs @@ -0,0 +1,32 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// What is the smallest radiation dose in rads that can be received by object. + /// Extremely small values may impact performance. + /// + public static readonly CVarDef RadiationMinIntensity = + CVarDef.Create("radiation.min_intensity", 0.1f, CVar.SERVERONLY); + + /// + /// Rate of radiation system update in seconds. + /// + public static readonly CVarDef RadiationGridcastUpdateRate = + CVarDef.Create("radiation.gridcast.update_rate", 1.0f, CVar.SERVERONLY); + + /// + /// If both radiation source and receiver are placed on same grid, ignore grids between them. + /// May get inaccurate result in some cases, but greatly boost performance in general. + /// + public static readonly CVarDef RadiationGridcastSimplifiedSameGrid = + CVarDef.Create("radiation.gridcast.simplified_same_grid", true, CVar.SERVERONLY); + + /// + /// Max distance that radiation ray can travel in meters. + /// + public static readonly CVarDef RadiationGridcastMaxDistance = + CVarDef.Create("radiation.gridcast.max_distance", 50f, CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Replays.cs b/Content.Shared/CCVar/CCVars.Replays.cs new file mode 100644 index 00000000000..64f47e8ad8c --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Replays.cs @@ -0,0 +1,43 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Whether or not to record admin chat. If replays are being publicly distributes, this should probably be + /// false. + /// + public static readonly CVarDef ReplayRecordAdminChat = + CVarDef.Create("replay.record_admin_chat", false, CVar.ARCHIVE); + + /// + /// Automatically record full rounds as replays. + /// + public static readonly CVarDef ReplayAutoRecord = + CVarDef.Create("replay.auto_record", false, CVar.SERVERONLY); + + /// + /// The file name to record automatic replays to. The path is relative to . + /// + /// + /// + /// If the path includes slashes, directories will be automatically created if necessary. + /// + /// + /// A number of substitutions can be used to automatically fill in the file name: {year}, {month}, {day}, {hour}, {minute}, {round}. + /// + /// + public static readonly CVarDef ReplayAutoRecordName = + CVarDef.Create("replay.auto_record_name", + "{year}_{month}_{day}-{hour}_{minute}-round_{round}.zip", + CVar.SERVERONLY); + + /// + /// Path that, if provided, automatic replays are initially recorded in. + /// When the recording is done, the file is moved into its final destination. + /// Unless this path is rooted, it will be relative to . + /// + public static readonly CVarDef ReplayAutoRecordTempDir = + CVarDef.Create("replay.auto_record_temp_dir", "", CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Salvage.cs b/Content.Shared/CCVar/CCVars.Salvage.cs new file mode 100644 index 00000000000..ddc332786ba --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Salvage.cs @@ -0,0 +1,18 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Duration for missions + /// + public static readonly CVarDef + SalvageExpeditionDuration = CVarDef.Create("salvage.expedition_duration", 660f, CVar.REPLICATED); + + /// + /// Cooldown for missions. + /// + public static readonly CVarDef + SalvageExpeditionCooldown = CVarDef.Create("salvage.expedition_cooldown", 780f, CVar.REPLICATED); +} diff --git a/Content.Shared/CCVar/CCVars.Server.cs b/Content.Shared/CCVar/CCVars.Server.cs new file mode 100644 index 00000000000..2c861584afc --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Server.cs @@ -0,0 +1,43 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /* + * Server + */ + + /// + /// Change this to have the changelog and rules "last seen" date stored separately. + /// + public static readonly CVarDef ServerId = + CVarDef.Create("server.id", "unknown_server_id", CVar.REPLICATED | CVar.SERVER); + + /// + /// Guide Entry Prototype ID to be displayed as the server rules. + /// + public static readonly CVarDef RulesFile = + CVarDef.Create("server.rules_file", "DefaultRuleset", CVar.REPLICATED | CVar.SERVER); + + /// + /// Guide entry that is displayed by default when a guide is opened. + /// + public static readonly CVarDef DefaultGuide = + CVarDef.Create("server.default_guide", "NewPlayer", CVar.REPLICATED | CVar.SERVER); + + /// + /// If greater than 0, automatically restart the server after this many minutes of uptime. + /// + /// + /// + /// This is intended to work around various bugs and performance issues caused by long continuous server uptime. + /// + /// + /// This uses the same non-disruptive logic as update restarts, + /// i.e. the game will only restart at round end or when there is nobody connected. + /// + /// + public static readonly CVarDef ServerUptimeRestartMinutes = + CVarDef.Create("server.uptime_restart_minutes", 0, CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Shuttle.cs b/Content.Shared/CCVar/CCVars.Shuttle.cs new file mode 100644 index 00000000000..f66fe9ca598 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Shuttle.cs @@ -0,0 +1,176 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// If true then the camera will match the grid / map and is unchangeable. + /// - When traversing grids it will snap to 0 degrees rotation. + /// False means the player has control over the camera rotation. + /// - When traversing grids it will snap to the nearest cardinal which will generally be imperceptible. + /// + public static readonly CVarDef CameraRotationLocked = + CVarDef.Create("shuttle.camera_rotation_locked", false, CVar.REPLICATED); + + /// + /// Whether the arrivals terminal should be on a planet map. + /// + public static readonly CVarDef ArrivalsPlanet = + CVarDef.Create("shuttle.arrivals_planet", true, CVar.SERVERONLY); + + /// + /// Whether the arrivals shuttle is enabled. + /// + public static readonly CVarDef ArrivalsShuttles = + CVarDef.Create("shuttle.arrivals", true, CVar.SERVERONLY); + + /// + /// The map to use for the arrivals station. + /// + public static readonly CVarDef ArrivalsMap = + CVarDef.Create("shuttle.arrivals_map", "/Maps/Misc/terminal.yml", CVar.SERVERONLY); + + /// + /// Cooldown between arrivals departures. This should be longer than the FTL time or it will double cycle. + /// + public static readonly CVarDef ArrivalsCooldown = + CVarDef.Create("shuttle.arrivals_cooldown", 50f, CVar.SERVERONLY); + + /// + /// Are players allowed to return on the arrivals shuttle. + /// + public static readonly CVarDef ArrivalsReturns = + CVarDef.Create("shuttle.arrivals_returns", false, CVar.SERVERONLY); + + /// + /// Should all players who spawn at arrivals have godmode until they leave the map? + /// + public static readonly CVarDef GodmodeArrivals = + CVarDef.Create("shuttle.godmode_arrivals", false, CVar.SERVERONLY); + + /// + /// If a grid is split then hide any smaller ones under this mass (kg) from the map. + /// This is useful to avoid split grids spamming out labels. + /// + public static readonly CVarDef HideSplitGridsUnder = + CVarDef.Create("shuttle.hide_split_grids_under", 30, CVar.SERVERONLY); + + /// + /// Whether to automatically spawn escape shuttles. + /// + public static readonly CVarDef GridFill = + CVarDef.Create("shuttle.grid_fill", true, CVar.SERVERONLY); + + /// + /// Whether to automatically preloading grids by GridPreloaderSystem + /// + public static readonly CVarDef PreloadGrids = + CVarDef.Create("shuttle.preload_grids", true, CVar.SERVERONLY); + + /// + /// How long the warmup time before FTL start should be. + /// + public static readonly CVarDef FTLStartupTime = + CVarDef.Create("shuttle.startup_time", 5.5f, CVar.SERVERONLY); + + /// + /// How long a shuttle spends in FTL. + /// + public static readonly CVarDef FTLTravelTime = + CVarDef.Create("shuttle.travel_time", 20f, CVar.SERVERONLY); + + /// + /// How long the final stage of FTL before arrival should be. + /// + public static readonly CVarDef FTLArrivalTime = + CVarDef.Create("shuttle.arrival_time", 5f, CVar.SERVERONLY); + + /// + /// How much time needs to pass before a shuttle can FTL again. + /// + public static readonly CVarDef FTLCooldown = + CVarDef.Create("shuttle.cooldown", 10f, CVar.SERVERONLY); + + /// + /// The maximum a grid can have before it becomes unable to FTL. + /// Any value equal to or less than zero will disable this check. + /// + public static readonly CVarDef FTLMassLimit = + CVarDef.Create("shuttle.mass_limit", 300f, CVar.SERVERONLY); + + /// + /// How long to knock down entities for if they aren't buckled when FTL starts and stops. + /// + public static readonly CVarDef HyperspaceKnockdownTime = + CVarDef.Create("shuttle.hyperspace_knockdown_time", 5f, CVar.SERVERONLY); + + /// + /// Is the emergency shuttle allowed to be early launched. + /// + public static readonly CVarDef EmergencyEarlyLaunchAllowed = + CVarDef.Create("shuttle.emergency_early_launch_allowed", false, CVar.SERVERONLY); + + /// + /// How long the emergency shuttle remains docked with the station, in seconds. + /// + public static readonly CVarDef EmergencyShuttleDockTime = + CVarDef.Create("shuttle.emergency_dock_time", 180f, CVar.SERVERONLY); + + /// + /// If the emergency shuttle can't dock at a priority port, the dock time will be multiplied with this value. + /// + public static readonly CVarDef EmergencyShuttleDockTimeMultiplierOtherDock = + CVarDef.Create("shuttle.emergency_dock_time_multiplier_other_dock", 1.6667f, CVar.SERVERONLY); + + /// + /// If the emergency shuttle can't dock at all, the dock time will be multiplied with this value. + /// + public static readonly CVarDef EmergencyShuttleDockTimeMultiplierNoDock = + CVarDef.Create("shuttle.emergency_dock_time_multiplier_no_dock", 2f, CVar.SERVERONLY); + + /// + /// How long after the console is authorized for the shuttle to early launch. + /// + public static readonly CVarDef EmergencyShuttleAuthorizeTime = + CVarDef.Create("shuttle.emergency_authorize_time", 10f, CVar.SERVERONLY); + + /// + /// The minimum time for the emergency shuttle to arrive at centcomm. + /// Actual minimum travel time cannot be less than + /// + public static readonly CVarDef EmergencyShuttleMinTransitTime = + CVarDef.Create("shuttle.emergency_transit_time_min", 60f, CVar.SERVERONLY); + + /// + /// The maximum time for the emergency shuttle to arrive at centcomm. + /// + public static readonly CVarDef EmergencyShuttleMaxTransitTime = + CVarDef.Create("shuttle.emergency_transit_time_max", 180f, CVar.SERVERONLY); + + /// + /// Whether the emergency shuttle is enabled or should the round just end. + /// + public static readonly CVarDef EmergencyShuttleEnabled = + CVarDef.Create("shuttle.emergency", true, CVar.SERVERONLY); + + /// + /// The percentage of time passed from the initial call to when the shuttle can no longer be recalled. + /// ex. a call time of 10min and turning point of 0.5 means the shuttle cannot be recalled after 5 minutes. + /// + public static readonly CVarDef EmergencyRecallTurningPoint = + CVarDef.Create("shuttle.recall_turning_point", 0.5f, CVar.SERVERONLY); + + /// + /// Time in minutes after round start to auto-call the shuttle. Set to zero to disable. + /// + public static readonly CVarDef EmergencyShuttleAutoCallTime = + CVarDef.Create("shuttle.auto_call_time", 90, CVar.SERVERONLY); + + /// + /// Time in minutes after the round was extended (by recalling the shuttle) to call + /// the shuttle again. + /// + public static readonly CVarDef EmergencyShuttleAutoCallExtensionTime = + CVarDef.Create("shuttle.auto_call_extension_time", 45, CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Sounds.cs b/Content.Shared/CCVar/CCVars.Sounds.cs new file mode 100644 index 00000000000..73d9d3852f1 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Sounds.cs @@ -0,0 +1,34 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + public static readonly CVarDef LobbyMusicEnabled = + CVarDef.Create("ambience.lobby_music_enabled", true, CVar.ARCHIVE | CVar.CLIENTONLY); + + public static readonly CVarDef EventMusicEnabled = + CVarDef.Create("ambience.event_music_enabled", true, CVar.ARCHIVE | CVar.CLIENTONLY); + + /// + /// Round end sound (APC Destroyed) + /// + public static readonly CVarDef RestartSoundsEnabled = + CVarDef.Create("ambience.restart_sounds_enabled", true, CVar.ARCHIVE | CVar.CLIENTONLY); + + + + public static readonly CVarDef AdminSoundsEnabled = + CVarDef.Create("audio.admin_sounds_enabled", true, CVar.ARCHIVE | CVar.CLIENTONLY); + + public static readonly CVarDef AdminChatSoundPath = + CVarDef.Create("audio.admin_chat_sound_path", + "/Audio/Items/pop.ogg", + CVar.ARCHIVE | CVar.CLIENT | CVar.REPLICATED); + + public static readonly CVarDef AdminChatSoundVolume = + CVarDef.Create("audio.admin_chat_sound_volume", -5f, CVar.ARCHIVE | CVar.CLIENT | CVar.REPLICATED); + + public static readonly CVarDef AHelpSound = + CVarDef.Create("audio.ahelp_sound", "/Audio/Effects/adminhelp.ogg", CVar.ARCHIVE | CVar.CLIENTONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Status.cs b/Content.Shared/CCVar/CCVars.Status.cs new file mode 100644 index 00000000000..007f678106a --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Status.cs @@ -0,0 +1,13 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + public static readonly CVarDef StatusMoMMIUrl = + CVarDef.Create("status.mommiurl", "", CVar.SERVERONLY); + + public static readonly CVarDef StatusMoMMIPassword = + CVarDef.Create("status.mommipassword", "", CVar.SERVERONLY | CVar.CONFIDENTIAL); + +} diff --git a/Content.Shared/CCVar/CCVars.Tips.cs b/Content.Shared/CCVar/CCVars.Tips.cs new file mode 100644 index 00000000000..61e6342061f --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Tips.cs @@ -0,0 +1,40 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Whether tips being shown is enabled at all. + /// + public static readonly CVarDef TipsEnabled = + CVarDef.Create("tips.enabled", true); + + /// + /// The dataset prototype to use when selecting a random tip. + /// + public static readonly CVarDef TipsDataset = + CVarDef.Create("tips.dataset", "Tips"); + + /// + /// The number of seconds between each tip being displayed when the round is not actively going + /// (i.e. postround or lobby) + /// + public static readonly CVarDef TipFrequencyOutOfRound = + CVarDef.Create("tips.out_of_game_frequency", 60f * 1.5f); + + /// + /// The number of seconds between each tip being displayed when the round is actively going + /// + public static readonly CVarDef TipFrequencyInRound = + CVarDef.Create("tips.in_game_frequency", 60f * 60); + + public static readonly CVarDef LoginTipsDataset = + CVarDef.Create("tips.login_dataset", "Tips"); + + /// + /// The chance for Tippy to replace a normal tip message. + /// + public static readonly CVarDef TipsTippyChance = + CVarDef.Create("tips.tippy_chance", 0.01f); +} diff --git a/Content.Shared/CCVar/CCVars.Viewport.cs b/Content.Shared/CCVar/CCVars.Viewport.cs new file mode 100644 index 00000000000..d94394d2a75 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Viewport.cs @@ -0,0 +1,33 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + public static readonly CVarDef ViewportStretch = + CVarDef.Create("viewport.stretch", true, CVar.CLIENTONLY | CVar.ARCHIVE); + + public static readonly CVarDef ViewportFixedScaleFactor = + CVarDef.Create("viewport.fixed_scale_factor", 2, CVar.CLIENTONLY | CVar.ARCHIVE); + + public static readonly CVarDef ViewportSnapToleranceMargin = + CVarDef.Create("viewport.snap_tolerance_margin", 64, CVar.CLIENTONLY | CVar.ARCHIVE); + + public static readonly CVarDef ViewportSnapToleranceClip = + CVarDef.Create("viewport.snap_tolerance_clip", 32, CVar.CLIENTONLY | CVar.ARCHIVE); + + public static readonly CVarDef ViewportScaleRender = + CVarDef.Create("viewport.scale_render", true, CVar.CLIENTONLY | CVar.ARCHIVE); + + public static readonly CVarDef ViewportMinimumWidth = + CVarDef.Create("viewport.minimum_width", 15, CVar.REPLICATED | CVar.SERVER); + + public static readonly CVarDef ViewportMaximumWidth = + CVarDef.Create("viewport.maximum_width", 21, CVar.REPLICATED | CVar.SERVER); + + public static readonly CVarDef ViewportWidth = + CVarDef.Create("viewport.width", 21, CVar.CLIENTONLY | CVar.ARCHIVE); + + public static readonly CVarDef ViewportVerticalFit = + CVarDef.Create("viewport.vertical_fit", true, CVar.CLIENTONLY | CVar.ARCHIVE); +} diff --git a/Content.Shared/CCVar/CCVars.Vote.cs b/Content.Shared/CCVar/CCVars.Vote.cs new file mode 100644 index 00000000000..ee9fee7d3db --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Vote.cs @@ -0,0 +1,180 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Allows enabling/disabling player-started votes for ultimate authority + /// + public static readonly CVarDef VoteEnabled = + CVarDef.Create("vote.enabled", true, CVar.SERVERONLY); + + /// + /// See vote.enabled, but specific to restart votes + /// + public static readonly CVarDef VoteRestartEnabled = + CVarDef.Create("vote.restart_enabled", true, CVar.SERVERONLY); + + /// + /// Config for when the restart vote should be allowed to be called regardless with less than this amount of players. + /// + public static readonly CVarDef VoteRestartMaxPlayers = + CVarDef.Create("vote.restart_max_players", 20, CVar.SERVERONLY); + + /// + /// Config for when the restart vote should be allowed to be called based on percentage of ghosts. + /// + public static readonly CVarDef VoteRestartGhostPercentage = + CVarDef.Create("vote.restart_ghost_percentage", 55, CVar.SERVERONLY); + + /// + /// See vote.enabled, but specific to preset votes + /// + public static readonly CVarDef VotePresetEnabled = + CVarDef.Create("vote.preset_enabled", true, CVar.SERVERONLY); + + /// + /// See vote.enabled, but specific to map votes + /// + public static readonly CVarDef VoteMapEnabled = + CVarDef.Create("vote.map_enabled", false, CVar.SERVERONLY); + + /// + /// The required ratio of the server that must agree for a restart round vote to go through. + /// + public static readonly CVarDef VoteRestartRequiredRatio = + CVarDef.Create("vote.restart_required_ratio", 0.85f, CVar.SERVERONLY); + + /// + /// Whether or not to prevent the restart vote from having any effect when there is an online admin + /// + public static readonly CVarDef VoteRestartNotAllowedWhenAdminOnline = + CVarDef.Create("vote.restart_not_allowed_when_admin_online", true, CVar.SERVERONLY); + + /// + /// The delay which two votes of the same type are allowed to be made by separate people, in seconds. + /// + public static readonly CVarDef VoteSameTypeTimeout = + CVarDef.Create("vote.same_type_timeout", 240f, CVar.SERVERONLY); + + /// + /// Sets the duration of the map vote timer. + /// + public static readonly CVarDef + VoteTimerMap = CVarDef.Create("vote.timermap", 90, CVar.SERVERONLY); + + /// + /// Sets the duration of the restart vote timer. + /// + public static readonly CVarDef + VoteTimerRestart = CVarDef.Create("vote.timerrestart", 60, CVar.SERVERONLY); + + /// + /// Sets the duration of the gamemode/preset vote timer. + /// + public static readonly CVarDef + VoteTimerPreset = CVarDef.Create("vote.timerpreset", 30, CVar.SERVERONLY); + + /// + /// Sets the duration of the map vote timer when ALONE. + /// + public static readonly CVarDef + VoteTimerAlone = CVarDef.Create("vote.timeralone", 10, CVar.SERVERONLY); + + /// + /// Allows enabling/disabling player-started votekick for ultimate authority + /// + public static readonly CVarDef VotekickEnabled = + CVarDef.Create("votekick.enabled", true, CVar.SERVERONLY); + + /// + /// Config for when the votekick should be allowed to be called based on number of eligible voters. + /// + public static readonly CVarDef VotekickEligibleNumberRequirement = + CVarDef.Create("votekick.eligible_number", 5, CVar.SERVERONLY); + + /// + /// Whether a votekick initiator must be a ghost or not. + /// + public static readonly CVarDef VotekickInitiatorGhostRequirement = + CVarDef.Create("votekick.initiator_ghost_requirement", true, CVar.SERVERONLY); + + /// + /// Should the initiator be whitelisted to initiate a votekick? + /// + public static readonly CVarDef VotekickInitiatorWhitelistedRequirement = + CVarDef.Create("votekick.initiator_whitelist_requirement", true, CVar.SERVERONLY); + + /// + /// Should the initiator be able to start a votekick if they are bellow the votekick.voter_playtime requirement? + /// + public static readonly CVarDef VotekickInitiatorTimeRequirement = + CVarDef.Create("votekick.initiator_time_requirement", false, CVar.SERVERONLY); + + /// + /// Whether a votekick voter must be a ghost or not. + /// + public static readonly CVarDef VotekickVoterGhostRequirement = + CVarDef.Create("votekick.voter_ghost_requirement", true, CVar.SERVERONLY); + + /// + /// Config for how many hours playtime a player must have to be able to vote on a votekick. + /// + public static readonly CVarDef VotekickEligibleVoterPlaytime = + CVarDef.Create("votekick.voter_playtime", 100, CVar.SERVERONLY); + + /// + /// Config for how many seconds a player must have been dead to initiate a votekick / be able to vote on a votekick. + /// + public static readonly CVarDef VotekickEligibleVoterDeathtime = + CVarDef.Create("votekick.voter_deathtime", 30, CVar.REPLICATED | CVar.SERVER); + + /// + /// The required ratio of eligible voters that must agree for a votekick to go through. + /// + public static readonly CVarDef VotekickRequiredRatio = + CVarDef.Create("votekick.required_ratio", 0.6f, CVar.SERVERONLY); + + /// + /// Whether or not to prevent the votekick from having any effect when there is an online admin. + /// + public static readonly CVarDef VotekickNotAllowedWhenAdminOnline = + CVarDef.Create("votekick.not_allowed_when_admin_online", true, CVar.SERVERONLY); + + /// + /// The delay for which two votekicks are allowed to be made by separate people, in seconds. + /// + public static readonly CVarDef VotekickTimeout = + CVarDef.Create("votekick.timeout", 120f, CVar.SERVERONLY); + + /// + /// Sets the duration of the votekick vote timer. + /// + public static readonly CVarDef + VotekickTimer = CVarDef.Create("votekick.timer", 60, CVar.SERVERONLY); + + /// + /// Config for how many hours playtime a player must have to get protection from the Raider votekick type when playing as an antag. + /// + public static readonly CVarDef VotekickAntagRaiderProtection = + CVarDef.Create("votekick.antag_raider_protection", 10, CVar.SERVERONLY); + + /// + /// Default severity for votekick bans + /// + public static readonly CVarDef VotekickBanDefaultSeverity = + CVarDef.Create("votekick.ban_default_severity", "High", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); + + /// + /// Duration of a ban caused by a votekick (in minutes). + /// + public static readonly CVarDef VotekickBanDuration = + CVarDef.Create("votekick.ban_duration", 180, CVar.SERVERONLY); + + /// + /// Whether the ghost requirement settings for votekicks should be ignored for the lobby. + /// + public static readonly CVarDef VotekickIgnoreGhostReqInLobby = + CVarDef.Create("votekick.ignore_ghost_req_in_lobby", true, CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Whitelist.cs b/Content.Shared/CCVar/CCVars.Whitelist.cs new file mode 100644 index 00000000000..7a7a5206a11 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Whitelist.cs @@ -0,0 +1,19 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Controls whether the server will deny any players that are not whitelisted in the DB. + /// + public static readonly CVarDef WhitelistEnabled = + CVarDef.Create("whitelist.enabled", false, CVar.SERVERONLY); + + /// + /// Specifies the whitelist prototypes to be used by the server. This should be a comma-separated list of prototypes. + /// If a whitelists conditions to be active fail (for example player count), the next whitelist will be used instead. If no whitelist is valid, the player will be allowed to connect. + /// + public static readonly CVarDef WhitelistPrototypeList = + CVarDef.Create("whitelist.prototype_list", "basicWhitelist", CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.Worldgen.cs b/Content.Shared/CCVar/CCVars.Worldgen.cs new file mode 100644 index 00000000000..da165ce74a7 --- /dev/null +++ b/Content.Shared/CCVar/CCVars.Worldgen.cs @@ -0,0 +1,18 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.CCVar; + +public sealed partial class CCVars +{ + /// + /// Whether or not world generation is enabled. + /// + public static readonly CVarDef WorldgenEnabled = + CVarDef.Create("worldgen.enabled", false, CVar.SERVERONLY); + + /// + /// The worldgen config to use. + /// + public static readonly CVarDef WorldgenConfig = + CVarDef.Create("worldgen.worldgen_config", "Default", CVar.SERVERONLY); +} diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 83068b5262b..316d9b8690a 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -1,2388 +1,28 @@ -using Content.Shared.Maps; -using Content.Shared.Roles; using Robust.Shared; using Robust.Shared.Configuration; -using Robust.Shared.Physics.Components; -namespace Content.Shared.CCVar -{ - // ReSharper disable once InconsistentNaming - [CVarDefs] - public sealed class CCVars : CVars - { - /* - * Server - */ - - /// - /// Change this to have the changelog and rules "last seen" date stored separately. - /// - public static readonly CVarDef ServerId = - CVarDef.Create("server.id", "unknown_server_id", CVar.REPLICATED | CVar.SERVER); - - /// - /// Guide Entry Prototype ID to be displayed as the server rules. - /// - public static readonly CVarDef RulesFile = - CVarDef.Create("server.rules_file", "DefaultRuleset", CVar.REPLICATED | CVar.SERVER); - - /// - /// Guide entry that is displayed by default when a guide is opened. - /// - public static readonly CVarDef DefaultGuide = - CVarDef.Create("server.default_guide", "NewPlayer", CVar.REPLICATED | CVar.SERVER); - - /// - /// If greater than 0, automatically restart the server after this many minutes of uptime. - /// - /// - /// - /// This is intended to work around various bugs and performance issues caused by long continuous server uptime. - /// - /// - /// This uses the same non-disruptive logic as update restarts, - /// i.e. the game will only restart at round end or when there is nobody connected. - /// - /// - public static readonly CVarDef ServerUptimeRestartMinutes = - CVarDef.Create("server.uptime_restart_minutes", 0, CVar.SERVERONLY); - - /* - * Ambience - */ - - /// - /// How long we'll wait until re-sampling nearby objects for ambience. Should be pretty fast, but doesn't have to match the tick rate. - /// - public static readonly CVarDef AmbientCooldown = - CVarDef.Create("ambience.cooldown", 0.1f, CVar.ARCHIVE | CVar.CLIENTONLY); - - /// - /// How large of a range to sample for ambience. - /// - public static readonly CVarDef AmbientRange = - CVarDef.Create("ambience.range", 8f, CVar.REPLICATED | CVar.SERVER); - - /// - /// Maximum simultaneous ambient sounds. - /// - public static readonly CVarDef MaxAmbientSources = - CVarDef.Create("ambience.max_sounds", 16, CVar.ARCHIVE | CVar.CLIENTONLY); - - /// - /// The minimum value the user can set for ambience.max_sounds - /// - public static readonly CVarDef MinMaxAmbientSourcesConfigured = - CVarDef.Create("ambience.min_max_sounds_configured", 16, CVar.REPLICATED | CVar.SERVER | CVar.CHEAT); - - /// - /// The maximum value the user can set for ambience.max_sounds - /// - public static readonly CVarDef MaxMaxAmbientSourcesConfigured = - CVarDef.Create("ambience.max_max_sounds_configured", 64, CVar.REPLICATED | CVar.SERVER | CVar.CHEAT); - - /// - /// Ambience volume. - /// - public static readonly CVarDef AmbienceVolume = - CVarDef.Create("ambience.volume", 1.5f, CVar.ARCHIVE | CVar.CLIENTONLY); - - /// - /// Ambience music volume. - /// - public static readonly CVarDef AmbientMusicVolume = - CVarDef.Create("ambience.music_volume", 1.5f, CVar.ARCHIVE | CVar.CLIENTONLY); - - /// - /// Lobby / round end music volume. - /// - public static readonly CVarDef LobbyMusicVolume = - CVarDef.Create("ambience.lobby_music_volume", 0.50f, CVar.ARCHIVE | CVar.CLIENTONLY); - - /// - /// UI volume. - /// - public static readonly CVarDef InterfaceVolume = - CVarDef.Create("audio.interface_volume", 0.50f, CVar.ARCHIVE | CVar.CLIENTONLY); - - /* - * Status - */ - - public static readonly CVarDef StatusMoMMIUrl = - CVarDef.Create("status.mommiurl", "", CVar.SERVERONLY); - - public static readonly CVarDef StatusMoMMIPassword = - CVarDef.Create("status.mommipassword", "", CVar.SERVERONLY | CVar.CONFIDENTIAL); - - /* - * Events - */ - - /// - /// Controls if the game should run station events - /// - public static readonly CVarDef - EventsEnabled = CVarDef.Create("events.enabled", true, CVar.ARCHIVE | CVar.SERVERONLY); - - /* - * Game - */ - - /// - /// Disables most functionality in the GameTicker. - /// - public static readonly CVarDef - GameDummyTicker = CVarDef.Create("game.dummyticker", false, CVar.ARCHIVE | CVar.SERVERONLY); - - /// - /// Controls if the lobby is enabled. If it is not, and there are no available jobs, you may get stuck on a black screen. - /// - public static readonly CVarDef - GameLobbyEnabled = CVarDef.Create("game.lobbyenabled", true, CVar.ARCHIVE); - - /// - /// Controls the duration of the lobby timer in seconds. Defaults to 2 minutes and 30 seconds. - /// - public static readonly CVarDef - GameLobbyDuration = CVarDef.Create("game.lobbyduration", 150, CVar.ARCHIVE); - - /// - /// Controls if players can latejoin at all. - /// - public static readonly CVarDef - GameDisallowLateJoins = CVarDef.Create("game.disallowlatejoins", false, CVar.ARCHIVE | CVar.SERVERONLY); - - /// - /// Controls the default game preset. - /// - public static readonly CVarDef - GameLobbyDefaultPreset = CVarDef.Create("game.defaultpreset", "secret", CVar.ARCHIVE); - - /// - /// Controls if the game can force a different preset if the current preset's criteria are not met. - /// - public static readonly CVarDef - GameLobbyFallbackEnabled = CVarDef.Create("game.fallbackenabled", true, CVar.ARCHIVE); - - /// - /// The preset for the game to fall back to if the selected preset could not be used, and fallback is enabled. - /// - public static readonly CVarDef - GameLobbyFallbackPreset = CVarDef.Create("game.fallbackpreset", "Traitor,Extended", CVar.ARCHIVE); - - /// - /// Controls if people can win the game in Suspicion or Deathmatch. - /// - public static readonly CVarDef - GameLobbyEnableWin = CVarDef.Create("game.enablewin", true, CVar.ARCHIVE); - - /// - /// Controls the maximum number of character slots a player is allowed to have. - /// - public static readonly CVarDef - GameMaxCharacterSlots = CVarDef.Create("game.maxcharacterslots", 30, CVar.ARCHIVE | CVar.SERVERONLY); - - /// - /// Controls the game map prototype to load. SS14 stores these prototypes in Prototypes/Maps. - /// - public static readonly CVarDef - GameMap = CVarDef.Create("game.map", string.Empty, CVar.SERVERONLY); - - /// - /// Controls whether to use world persistence or not. - /// - public static readonly CVarDef - UsePersistence = CVarDef.Create("game.usepersistence", false, CVar.ARCHIVE); - - /// - /// If world persistence is used, what map prototype should be initially loaded. - /// If the save file exists, it replaces MapPath but everything else stays the same (station name and such). - /// - public static readonly CVarDef - PersistenceMap = CVarDef.Create("game.persistencemap", "Empty", CVar.ARCHIVE); - - /// - /// Prototype to use for map pool. - /// - public static readonly CVarDef - GameMapPool = CVarDef.Create("game.map_pool", "DefaultMapPool", CVar.SERVERONLY); - - /// - /// The depth of the queue used to calculate which map is next in rotation. - /// This is how long the game "remembers" that some map was put in play. Default is 16 rounds. - /// - public static readonly CVarDef - GameMapMemoryDepth = CVarDef.Create("game.map_memory_depth", 16, CVar.SERVERONLY); - - /// - /// Is map rotation enabled? - /// - public static readonly CVarDef - GameMapRotation = CVarDef.Create("game.map_rotation", true, CVar.SERVERONLY); - - /// - /// If roles should be restricted based on time. - /// - public static readonly CVarDef - GameRoleTimers = CVarDef.Create("game.role_timers", true, CVar.SERVER | CVar.REPLICATED); - - /// - /// Override default role requirements using a - /// - public static readonly CVarDef - GameRoleTimerOverride = CVarDef.Create("game.role_timer_override", "", CVar.SERVER | CVar.REPLICATED); - - /// - /// If roles should be restricted based on whether or not they are whitelisted. - /// - public static readonly CVarDef - GameRoleWhitelist = CVarDef.Create("game.role_whitelist", true, CVar.SERVER | CVar.REPLICATED); - - /// - /// Whether or not disconnecting inside of a cryopod should remove the character or just store them until they reconnect. - /// - public static readonly CVarDef - GameCryoSleepRejoining = CVarDef.Create("game.cryo_sleep_rejoining", false, CVar.SERVER | CVar.REPLICATED); - - /// - /// When enabled, guests will be assigned permanent UIDs and will have their preferences stored. - /// - public static readonly CVarDef GamePersistGuests = - CVarDef.Create("game.persistguests", true, CVar.ARCHIVE | CVar.SERVERONLY); - - public static readonly CVarDef GameDiagonalMovement = - CVarDef.Create("game.diagonalmovement", true, CVar.ARCHIVE); - - public static readonly CVarDef SoftMaxPlayers = - CVarDef.Create("game.soft_max_players", 30, CVar.SERVERONLY | CVar.ARCHIVE); - - /// - /// If a player gets denied connection to the server, - /// how long they are forced to wait before attempting to reconnect. - /// - public static readonly CVarDef GameServerFullReconnectDelay = - CVarDef.Create("game.server_full_reconnect_delay", 30, CVar.SERVERONLY); - - /// - /// Whether or not panic bunker is currently enabled. - /// - public static readonly CVarDef PanicBunkerEnabled = - CVarDef.Create("game.panic_bunker.enabled", false, CVar.NOTIFY | CVar.REPLICATED | CVar.SERVER); - - /// - /// Whether or not the panic bunker will disable when an admin comes online. - /// - public static readonly CVarDef PanicBunkerDisableWithAdmins = - CVarDef.Create("game.panic_bunker.disable_with_admins", false, CVar.SERVERONLY); - - /// - /// Whether or not the panic bunker will enable when no admins are online. - /// - public static readonly CVarDef PanicBunkerEnableWithoutAdmins = - CVarDef.Create("game.panic_bunker.enable_without_admins", false, CVar.SERVERONLY); - - /// - /// Whether or not the panic bunker will count deadminned admins for - /// and - /// - /// - public static readonly CVarDef PanicBunkerCountDeadminnedAdmins = - CVarDef.Create("game.panic_bunker.count_deadminned_admins", false, CVar.SERVERONLY); - - /// - /// Show reason of disconnect for user or not. - /// - public static readonly CVarDef PanicBunkerShowReason = - CVarDef.Create("game.panic_bunker.show_reason", false, CVar.SERVERONLY); - - /// - /// Minimum age of the account (from server's PoV, so from first-seen date) in minutes. - /// - public static readonly CVarDef PanicBunkerMinAccountAge = - CVarDef.Create("game.panic_bunker.min_account_age", 1440, CVar.SERVERONLY); - - /// - /// Minimal overall played time. - /// - public static readonly CVarDef PanicBunkerMinOverallMinutes = - CVarDef.Create("game.panic_bunker.min_overall_minutes", 600, CVar.SERVERONLY); - - /// - /// A custom message that will be used for connections denied to the panic bunker - /// If not empty, then will overwrite - /// - public static readonly CVarDef PanicBunkerCustomReason = - CVarDef.Create("game.panic_bunker.custom_reason", string.Empty, CVar.SERVERONLY); - - /// - /// Allow bypassing the panic bunker if the user is whitelisted. - /// - 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. - /// - public static readonly CVarDef GameTableBonk = - CVarDef.Create("game.table_bonk", false, CVar.REPLICATED); - - /// - /// Whether or not status icons are rendered for everyone. - /// - public static readonly CVarDef GlobalStatusIconsEnabled = - CVarDef.Create("game.global_status_icons_enabled", true, CVar.SERVER | CVar.REPLICATED); - - /// - /// Whether or not status icons are rendered on this specific client. - /// - public static readonly CVarDef LocalStatusIconsEnabled = - CVarDef.Create("game.local_status_icons_enabled", true, CVar.CLIENTONLY); - - /// - /// Whether or not coordinates on the Debug overlay should only be available to admins. - /// - public static readonly CVarDef DebugCoordinatesAdminOnly = - CVarDef.Create("game.debug_coordinates_admin_only", true, CVar.SERVER | CVar.REPLICATED); - -#if EXCEPTION_TOLERANCE - /// - /// Amount of times round start must fail before the server is shut down. - /// Set to 0 or a negative number to disable. - /// - public static readonly CVarDef RoundStartFailShutdownCount = - CVarDef.Create("game.round_start_fail_shutdown_count", 5, CVar.SERVERONLY | CVar.SERVER); -#endif - - /// - /// Delay between station alert level changes. - /// - public static readonly CVarDef GameAlertLevelChangeDelay = - CVarDef.Create("game.alert_level_change_delay", 30, CVar.SERVERONLY); - - /// - /// The time in seconds that the server should wait before restarting the round. - /// Defaults to 2 minutes. - /// - public static readonly CVarDef RoundRestartTime = - CVarDef.Create("game.round_restart_time", 120f, CVar.SERVERONLY); - - /// - /// The prototype to use for secret weights. - /// - public static readonly CVarDef SecretWeightPrototype = - CVarDef.Create("game.secret_weight_prototype", "Secret", CVar.SERVERONLY); - - /// - /// The id of the sound collection to randomly choose a sound from and play when the round ends. - /// - public static readonly CVarDef RoundEndSoundCollection = - CVarDef.Create("game.round_end_sound_collection", "RoundEnd", CVar.SERVERONLY); - - /// - /// Whether or not to add every player as a global override to PVS at round end. - /// This will allow all players to see their clothing in the round screen player list screen, - /// but may cause lag during round end with very high player counts. - /// - public static readonly CVarDef RoundEndPVSOverrides = - CVarDef.Create("game.round_end_pvs_overrides", true, CVar.SERVERONLY); - - /// - /// If true, players can place objects onto tabletop games like chess boards. - /// - /// - /// This feature is currently highly abusable and can easily be used to crash the server, - /// so it's off by default. - /// - public static readonly CVarDef GameTabletopPlace = - CVarDef.Create("game.tabletop_place", false, CVar.SERVERONLY); - - /// - /// If true, contraband severity can be viewed in the examine menu - /// - public static readonly CVarDef ContrabandExamine = - CVarDef.Create("game.contraband_examine", true, CVar.SERVER | CVar.REPLICATED); - - /// - /// Size of the lookup area for adding entities to the context menu - /// - public static readonly CVarDef GameEntityMenuLookup = - CVarDef.Create("game.entity_menu_lookup", 0.25f, CVar.CLIENTONLY | CVar.ARCHIVE); - - /// - /// Should the clients window show the server hostname in the title? - /// - public static readonly CVarDef GameHostnameInTitlebar = - CVarDef.Create("game.hostname_in_titlebar", true, CVar.SERVER | CVar.REPLICATED); - - /* - * Discord - */ - - /// - /// The role that will get mentioned if a new SOS ahelp comes in. - /// - public static readonly CVarDef DiscordAhelpMention = - CVarDef.Create("discord.on_call_ping", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); - - /// - /// URL of the discord webhook to relay unanswered ahelp messages. - /// - public static readonly CVarDef DiscordOnCallWebhook = - CVarDef.Create("discord.on_call_webhook", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); - - /// - /// URL of the Discord webhook which will relay all ahelp messages. - /// - public static readonly CVarDef DiscordAHelpWebhook = - CVarDef.Create("discord.ahelp_webhook", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); - - /// - /// The server icon to use in the Discord ahelp embed footer. - /// Valid values are specified at https://discord.com/developers/docs/resources/channel#embed-object-embed-footer-structure. - /// - public static readonly CVarDef DiscordAHelpFooterIcon = - CVarDef.Create("discord.ahelp_footer_icon", string.Empty, CVar.SERVERONLY); - - /// - /// The avatar to use for the webhook. Should be an URL. - /// - public static readonly CVarDef DiscordAHelpAvatar = - CVarDef.Create("discord.ahelp_avatar", string.Empty, CVar.SERVERONLY); - - /// - /// URL of the Discord webhook which will relay all custom votes. If left empty, disables the webhook. - /// - public static readonly CVarDef DiscordVoteWebhook = - CVarDef.Create("discord.vote_webhook", string.Empty, CVar.SERVERONLY); - - /// - /// URL of the Discord webhook which will relay all votekick votes. If left empty, disables the webhook. - /// - public static readonly CVarDef DiscordVotekickWebhook = - CVarDef.Create("discord.votekick_webhook", string.Empty, CVar.SERVERONLY); - - /// URL of the Discord webhook which will relay round restart messages. - /// - public static readonly CVarDef DiscordRoundUpdateWebhook = - CVarDef.Create("discord.round_update_webhook", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); - - /// - /// Role id for the Discord webhook to ping when the round ends. - /// - public static readonly CVarDef DiscordRoundEndRoleWebhook = - CVarDef.Create("discord.round_end_role", string.Empty, CVar.SERVERONLY); - - /* - * Tips - */ - - /// - /// Whether tips being shown is enabled at all. - /// - public static readonly CVarDef TipsEnabled = - CVarDef.Create("tips.enabled", true); - - /// - /// The dataset prototype to use when selecting a random tip. - /// - public static readonly CVarDef TipsDataset = - CVarDef.Create("tips.dataset", "Tips"); - - /// - /// The number of seconds between each tip being displayed when the round is not actively going - /// (i.e. postround or lobby) - /// - public static readonly CVarDef TipFrequencyOutOfRound = - CVarDef.Create("tips.out_of_game_frequency", 60f * 1.5f); - - /// - /// The number of seconds between each tip being displayed when the round is actively going - /// - public static readonly CVarDef TipFrequencyInRound = - CVarDef.Create("tips.in_game_frequency", 60f * 60); - - public static readonly CVarDef LoginTipsDataset = - CVarDef.Create("tips.login_dataset", "Tips"); - - /// - /// The chance for Tippy to replace a normal tip message. - /// - public static readonly CVarDef TipsTippyChance = - CVarDef.Create("tips.tippy_chance", 0.01f); - - /* - * Console - */ - - public static readonly CVarDef ConsoleLoginLocal = - CVarDef.Create("console.loginlocal", true, CVar.ARCHIVE | CVar.SERVERONLY); - - /// - /// Automatically log in the given user as host, equivalent to the promotehost command. - /// - public static readonly CVarDef ConsoleLoginHostUser = - CVarDef.Create("console.login_host_user", "", CVar.ARCHIVE | CVar.SERVERONLY); - - - /* - * Database stuff - */ - - public static readonly CVarDef DatabaseEngine = - CVarDef.Create("database.engine", "sqlite", CVar.SERVERONLY); - - public static readonly CVarDef DatabaseSqliteDbPath = - CVarDef.Create("database.sqlite_dbpath", "preferences.db", CVar.SERVERONLY); - - /// - /// Milliseconds to asynchronously delay all SQLite database acquisitions with. - /// - /// - /// Defaults to 1 on DEBUG, 0 on RELEASE. - /// This is intended to help catch .Result deadlock bugs that only happen on postgres - /// (because SQLite is not actually asynchronous normally) - /// - public static readonly CVarDef DatabaseSqliteDelay = - CVarDef.Create("database.sqlite_delay", DefaultSqliteDelay, CVar.SERVERONLY); - - /// - /// Amount of concurrent SQLite database operations. - /// - /// - /// Note that SQLite is not a properly asynchronous database and also has limited read/write concurrency. - /// Increasing this number may allow more concurrent reads, but it probably won't matter much. - /// SQLite operations are normally ran on the thread pool, which may cause thread pool starvation if the concurrency is too high. - /// - public static readonly CVarDef DatabaseSqliteConcurrency = - CVarDef.Create("database.sqlite_concurrency", 3, CVar.SERVERONLY); - -#if DEBUG - private const int DefaultSqliteDelay = 1; -#else - private const int DefaultSqliteDelay = 0; -#endif - - - public static readonly CVarDef DatabasePgHost = - CVarDef.Create("database.pg_host", "localhost", CVar.SERVERONLY); - - public static readonly CVarDef DatabasePgPort = - CVarDef.Create("database.pg_port", 5432, CVar.SERVERONLY); - - public static readonly CVarDef DatabasePgDatabase = - CVarDef.Create("database.pg_database", "ss14", CVar.SERVERONLY); - - public static readonly CVarDef DatabasePgUsername = - CVarDef.Create("database.pg_username", "postgres", CVar.SERVERONLY); - - public static readonly CVarDef DatabasePgPassword = - CVarDef.Create("database.pg_password", "", CVar.SERVERONLY | CVar.CONFIDENTIAL); - - /// - /// Max amount of concurrent Postgres database operations. - /// - public static readonly CVarDef DatabasePgConcurrency = - CVarDef.Create("database.pg_concurrency", 8, CVar.SERVERONLY); - - /// - /// Milliseconds to asynchronously delay all PostgreSQL database operations with. - /// - /// - /// This is intended for performance testing. It works different from , - /// as the lag is applied after acquiring the database lock. - /// - public static readonly CVarDef DatabasePgFakeLag = - CVarDef.Create("database.pg_fake_lag", 0, CVar.SERVERONLY); - - // Basically only exists for integration tests to avoid race conditions. - public static readonly CVarDef DatabaseSynchronous = - CVarDef.Create("database.sync", false, CVar.SERVERONLY); - - /* - * Interface - */ - - public static readonly CVarDef UIClickSound = - CVarDef.Create("interface.click_sound", "/Audio/UserInterface/click.ogg", CVar.REPLICATED); - - public static readonly CVarDef UIHoverSound = - CVarDef.Create("interface.hover_sound", "/Audio/UserInterface/hover.ogg", CVar.REPLICATED); - - /* - * Outline - */ - - public static readonly CVarDef OutlineEnabled = - CVarDef.Create("outline.enabled", true, CVar.CLIENTONLY); - - - /* - * Parallax - */ - - public static readonly CVarDef ParallaxEnabled = - CVarDef.Create("parallax.enabled", true, CVar.CLIENTONLY); - - public static readonly CVarDef ParallaxDebug = - CVarDef.Create("parallax.debug", false, CVar.CLIENTONLY); - - public static readonly CVarDef ParallaxLowQuality = - CVarDef.Create("parallax.low_quality", false, CVar.ARCHIVE | CVar.CLIENTONLY); - - /* - * Physics - */ - - /// - /// When a mob is walking should its X / Y movement be relative to its parent (true) or the map (false). - /// - public static readonly CVarDef RelativeMovement = - CVarDef.Create("physics.relative_movement", true, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); - - public static readonly CVarDef TileFrictionModifier = - CVarDef.Create("physics.tile_friction", 40.0f, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); - - public static readonly CVarDef StopSpeed = - CVarDef.Create("physics.stop_speed", 0.1f, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); - - /// - /// Whether mobs can push objects like lockers. - /// - /// - /// Technically client doesn't need to know about it but this may prevent a bug in the distant future so it stays. - /// - public static readonly CVarDef MobPushing = - CVarDef.Create("physics.mob_pushing", false, CVar.REPLICATED | CVar.SERVER); - - /* - * Music - */ - - public static readonly CVarDef LobbyMusicEnabled = - CVarDef.Create("ambience.lobby_music_enabled", true, CVar.ARCHIVE | CVar.CLIENTONLY); - - public static readonly CVarDef EventMusicEnabled = - CVarDef.Create("ambience.event_music_enabled", true, CVar.ARCHIVE | CVar.CLIENTONLY); - - /* - * Specific Sounds - */ - // Round end sound (APC Destroyed) - public static readonly CVarDef RestartSoundsEnabled = - CVarDef.Create("ambience.restart_sounds_enabled", true, CVar.ARCHIVE | CVar.CLIENTONLY); - - - /* - * Admin sounds - */ - - public static readonly CVarDef AdminSoundsEnabled = - CVarDef.Create("audio.admin_sounds_enabled", true, CVar.ARCHIVE | CVar.CLIENTONLY); - public static readonly CVarDef AdminChatSoundPath = - CVarDef.Create("audio.admin_chat_sound_path", "/Audio/Items/pop.ogg", CVar.ARCHIVE | CVar.CLIENT | CVar.REPLICATED); - public static readonly CVarDef AdminChatSoundVolume = - CVarDef.Create("audio.admin_chat_sound_volume", -5f, CVar.ARCHIVE | CVar.CLIENT | CVar.REPLICATED); - public static readonly CVarDef AHelpSound = - CVarDef.Create("audio.ahelp_sound", "/Audio/Effects/adminhelp.ogg", CVar.ARCHIVE | CVar.CLIENTONLY); - - /* - * HUD - */ - - public static readonly CVarDef HudTheme = - CVarDef.Create("hud.theme", 0, CVar.ARCHIVE | CVar.CLIENTONLY); - - public static readonly CVarDef HudHeldItemShow = - CVarDef.Create("hud.held_item_show", true, CVar.ARCHIVE | CVar.CLIENTONLY); - - public static readonly CVarDef CombatModeIndicatorsPointShow = - CVarDef.Create("hud.combat_mode_indicators_point_show", true, CVar.ARCHIVE | CVar.CLIENTONLY); - - public static readonly CVarDef LoocAboveHeadShow = - CVarDef.Create("hud.show_looc_above_head", true, CVar.ARCHIVE | CVar.CLIENTONLY); - - public static readonly CVarDef HudHeldItemOffset = - CVarDef.Create("hud.held_item_offset", 28f, CVar.ARCHIVE | CVar.CLIENTONLY); - - public static readonly CVarDef HudFpsCounterVisible = - CVarDef.Create("hud.fps_counter_visible", false, CVar.CLIENTONLY | CVar.ARCHIVE); - - /* - * NPCs - */ - - public static readonly CVarDef NPCMaxUpdates = - CVarDef.Create("npc.max_updates", 128); - - public static readonly CVarDef NPCEnabled = CVarDef.Create("npc.enabled", true); - - /// - /// Should NPCs pathfind when steering. For debug purposes. - /// - public static readonly CVarDef NPCPathfinding = CVarDef.Create("npc.pathfinding", true); - - /* - * Net - */ - - public static readonly CVarDef NetAtmosDebugOverlayTickRate = - CVarDef.Create("net.atmosdbgoverlaytickrate", 3.0f); - - public static readonly CVarDef NetGasOverlayTickRate = - CVarDef.Create("net.gasoverlaytickrate", 3.0f); - - public static readonly CVarDef GasOverlayThresholds = - CVarDef.Create("net.gasoverlaythresholds", 20); - - /* - * Admin - */ - - public static readonly CVarDef AdminAnnounceLogin = - CVarDef.Create("admin.announce_login", true, CVar.SERVERONLY); - - public static readonly CVarDef AdminAnnounceLogout = - CVarDef.Create("admin.announce_logout", true, CVar.SERVERONLY); - - /// - /// The token used to authenticate with the admin API. Leave empty to disable the admin API. This is a secret! Do not share! - /// - public static readonly CVarDef AdminApiToken = - CVarDef.Create("admin.api_token", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); - - - /// - /// Should users be able to see their own notes? Admins will be able to see and set notes regardless - /// - public static readonly CVarDef SeeOwnNotes = - CVarDef.Create("admin.see_own_notes", false, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); - - /// - /// Should the server play a quick sound to the active admins whenever a new player joins? - /// - public static readonly CVarDef AdminNewPlayerJoinSound = - CVarDef.Create("admin.new_player_join_sound", false, CVar.SERVERONLY); - - /// - /// The amount of days before the note starts fading. It will slowly lose opacity until it reaches stale. Set to 0 to disable. - /// - public static readonly CVarDef NoteFreshDays = - CVarDef.Create("admin.note_fresh_days", 91.31055, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); - - /// - /// The amount of days before the note completely fades, and can only be seen by admins if they press "see more notes". Set to 0 - /// if you want the note to immediately disappear without fading. - /// - public static readonly CVarDef NoteStaleDays = - CVarDef.Create("admin.note_stale_days", 365.2422, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); - - /// - /// How much time does the user have to wait in seconds before confirming that they saw an admin message? - /// - public static readonly CVarDef MessageWaitTime = - CVarDef.Create("admin.message_wait_time", 3f, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); - - /// - /// Default severity for role bans - /// - public static readonly CVarDef RoleBanDefaultSeverity = - CVarDef.Create("admin.role_ban_default_severity", "medium", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); - - /// - /// Default severity for department bans - /// - public static readonly CVarDef DepartmentBanDefaultSeverity = - CVarDef.Create("admin.department_ban_default_severity", "medium", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); - - /// - /// Default severity for server bans - /// - public static readonly CVarDef ServerBanDefaultSeverity = - CVarDef.Create("admin.server_ban_default_severity", "High", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); - - /// - /// Whether a server ban will ban the player's ip by default. - /// - public static readonly CVarDef ServerBanIpBanDefault = - CVarDef.Create("admin.server_ban_ip_ban_default", true, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); - - /// - /// Whether a server ban will ban the player's hardware id by default. - /// - public static readonly CVarDef ServerBanHwidBanDefault = - CVarDef.Create("admin.server_ban_hwid_ban_default", true, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); - - /// - /// Whether to use details from last connection for ip/hwid in the BanPanel. - /// - public static readonly CVarDef ServerBanUseLastDetails = - CVarDef.Create("admin.server_ban_use_last_details", true, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); - - /// - /// Whether to erase a player's chat messages and their entity from the game when banned. - /// - public static readonly CVarDef ServerBanErasePlayer = - CVarDef.Create("admin.server_ban_erase_player", false, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); - - /// - /// Minimum players sharing a connection required to create an alert. -1 to disable the alert. - /// - /// - /// If you set this to 0 or 1 then it will alert on every connection, so probably don't do that. - /// - public static readonly CVarDef AdminAlertMinPlayersSharingConnection = - CVarDef.Create("admin.alert.min_players_sharing_connection", -1, CVar.SERVERONLY); - - /// - /// Minimum explosion intensity to create an admin alert message. -1 to disable the alert. - /// - public static readonly CVarDef AdminAlertExplosionMinIntensity = - CVarDef.Create("admin.alert.explosion_min_intensity", 60, CVar.SERVERONLY); - - /// - /// Minimum particle accelerator strength to create an admin alert message. - /// - public static readonly CVarDef AdminAlertParticleAcceleratorMinPowerState = - CVarDef.Create("admin.alert.particle_accelerator_min_power_state", 5, CVar.SERVERONLY); // strength 4 - - /// - /// Should the ban details in admin channel include PII? (IP, HWID, etc) - /// - public static readonly CVarDef AdminShowPIIOnBan = - 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 - /// de-admin them. - /// - public static readonly CVarDef AdminDeadminOnJoin = - CVarDef.Create("admin.deadmin_on_join", false, CVar.SERVERONLY); - - /// - /// Overrides the name the client sees in ahelps. Set empty to disable. - /// - public static readonly CVarDef AdminAhelpOverrideClientName = - CVarDef.Create("admin.override_adminname_in_client_ahelp", string.Empty, CVar.SERVERONLY); - - /// - /// The threshold of minutes to appear as a "new player" in the ahelp menu - /// If 0, appearing as a new player is disabled. - /// - public static readonly CVarDef NewPlayerThreshold = - CVarDef.Create("admin.new_player_threshold", 0, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); - - /// - /// How long an admin client can go without any input before being considered AFK. - /// - public static readonly CVarDef AdminAfkTime = - CVarDef.Create("admin.afk_time", 600f, CVar.SERVERONLY); - - /// - /// If true, admins are able to connect even if - /// would otherwise block regular players. - /// - public static readonly CVarDef AdminBypassMaxPlayers = - CVarDef.Create("admin.bypass_max_players", true, CVar.SERVERONLY); - - /// - /// Determine if custom rank names are used. - /// If it is false, it'd use the actual rank name regardless of the individual's title. - /// - /// - /// - public static readonly CVarDef AdminUseCustomNamesAdminRank = - CVarDef.Create("admin.use_custom_names_admin_rank", true, CVar.SERVERONLY); - - /* - * AHELP - */ - - /// - /// Ahelp rate limit values are accounted in periods of this size (seconds). - /// After the period has passed, the count resets. - /// - /// - public static readonly CVarDef AhelpRateLimitPeriod = - CVarDef.Create("ahelp.rate_limit_period", 2f, CVar.SERVERONLY); - - /// - /// How many ahelp messages are allowed in a single rate limit period. - /// - /// - public static readonly CVarDef AhelpRateLimitCount = - CVarDef.Create("ahelp.rate_limit_count", 10, CVar.SERVERONLY); - - /// - /// Should the administrator's position be displayed in ahelp. - /// If it is is false, only the admin's ckey will be displayed in the ahelp. - /// - /// - /// - public static readonly CVarDef AhelpAdminPrefix = - CVarDef.Create("ahelp.admin_prefix", false, CVar.SERVERONLY); - - /// - /// Should the administrator's position be displayed in the webhook. - /// If it is is false, only the admin's ckey will be displayed in webhook. - /// - /// - /// - public static readonly CVarDef AhelpAdminPrefixWebhook = - CVarDef.Create("ahelp.admin_prefix_webhook", false, CVar.SERVERONLY); - - /* - * Explosions - */ - - /// - /// How many tiles the explosion system will process per tick - /// - /// - /// Setting this too high will put a large load on a single tick. Setting this too low will lead to - /// unnaturally "slow" explosions. - /// - public static readonly CVarDef ExplosionTilesPerTick = - CVarDef.Create("explosion.tiles_per_tick", 100, CVar.SERVERONLY); - - /// - /// Upper limit on the size of an explosion before physics-throwing is disabled. - /// - /// - /// Large nukes tend to generate a lot of shrapnel that flies through space. This can functionally cripple - /// the server TPS for a while after an explosion (or even during, if the explosion is processed - /// incrementally. - /// - public static readonly CVarDef ExplosionThrowLimit = - CVarDef.Create("explosion.throw_limit", 400, CVar.SERVERONLY); - - /// - /// If this is true, explosion processing will pause the NodeGroupSystem to pause updating. - /// - /// - /// This only takes effect if an explosion needs more than one tick to process (i.e., covers more than tiles). If this is not enabled, the node-system will rebuild its graph - /// every tick as the explosion shreds the station, causing significant slowdown. - /// - public static readonly CVarDef ExplosionSleepNodeSys = - CVarDef.Create("explosion.node_sleep", true, CVar.SERVERONLY); - - /// - /// Upper limit on the total area that an explosion can affect before the neighbor-finding algorithm just - /// stops. Defaults to a 60-rile radius explosion. - /// - /// - /// Actual area may be larger, as it currently doesn't terminate mid neighbor finding. I.e., area may be that of a ~51 tile radius circle instead. - /// - public static readonly CVarDef ExplosionMaxArea = - CVarDef.Create("explosion.max_area", (int) 3.14f * 256 * 256, CVar.SERVERONLY); - - /// - /// Upper limit on the number of neighbor finding steps for the explosion system neighbor-finding algorithm. - /// - /// - /// Effectively places an upper limit on the range that any explosion can have. In the vast majority of - /// instances, will likely be hit before this becomes a limiting factor. - /// - public static readonly CVarDef ExplosionMaxIterations = - CVarDef.Create("explosion.max_iterations", 500, CVar.SERVERONLY); - - /// - /// Max Time in milliseconds to spend processing explosions every tick. - /// - /// - /// This time limiting is not perfectly implemented. Firstly, a significant chunk of processing time happens - /// due to queued entity deletions, which happen outside of the system update code. Secondly, explosion - /// spawning cannot currently be interrupted & resumed, and may lead to exceeding this time limit. - /// - public static readonly CVarDef ExplosionMaxProcessingTime = - CVarDef.Create("explosion.max_tick_time", 7f, CVar.SERVERONLY); - - /// - /// If the explosion is being processed incrementally over several ticks, this variable determines whether - /// updating the grid tiles should be done incrementally at the end of every tick, or only once the explosion has finished processing. - /// - /// - /// The most notable consequence of this change is that explosions will only punch a hole in the station & - /// create a vacumm once they have finished exploding. So airlocks will no longer slam shut as the explosion - /// expands, just suddenly at the end. - /// - public static readonly CVarDef ExplosionIncrementalTileBreaking = - CVarDef.Create("explosion.incremental_tile", false, CVar.SERVERONLY); - - /// - /// This determines for how many seconds an explosion should stay visible once it has finished expanding. - /// - public static readonly CVarDef ExplosionPersistence = - CVarDef.Create("explosion.persistence", 1.0f, CVar.SERVERONLY); - - /// - /// If an explosion covers a larger area than this number, the damaging/processing will always start during - /// the next tick, instead of during the same tick that the explosion was generated in. - /// - /// - /// This value can be used to ensure that for large explosions the area/tile calculation and the explosion - /// processing/damaging occurs in separate ticks. This helps reduce the single-tick lag if both and are large. I.e., instead of - /// a single tick explosion, this cvar allows for a configuration that results in a two-tick explosion, - /// though most of the computational cost is still in the second tick. - /// - public static readonly CVarDef ExplosionSingleTickAreaLimit = - CVarDef.Create("explosion.single_tick_area_limit", 400, CVar.SERVERONLY); - - /// - /// Whether or not explosions are allowed to create tiles that have - /// set to true. - /// - public static readonly CVarDef ExplosionCanCreateVacuum = - CVarDef.Create("explosion.can_create_vacuum", true, CVar.SERVERONLY); - - /* - * Radiation - */ - - /// - /// What is the smallest radiation dose in rads that can be received by object. - /// Extremely small values may impact performance. - /// - public static readonly CVarDef RadiationMinIntensity = - CVarDef.Create("radiation.min_intensity", 0.1f, CVar.SERVERONLY); - - /// - /// Rate of radiation system update in seconds. - /// - public static readonly CVarDef RadiationGridcastUpdateRate = - CVarDef.Create("radiation.gridcast.update_rate", 1.0f, CVar.SERVERONLY); - - /// - /// If both radiation source and receiver are placed on same grid, ignore grids between them. - /// May get inaccurate result in some cases, but greatly boost performance in general. - /// - public static readonly CVarDef RadiationGridcastSimplifiedSameGrid = - CVarDef.Create("radiation.gridcast.simplified_same_grid", true, CVar.SERVERONLY); - - /// - /// Max distance that radiation ray can travel in meters. - /// - public static readonly CVarDef RadiationGridcastMaxDistance = - CVarDef.Create("radiation.gridcast.max_distance", 50f, CVar.SERVERONLY); - - /* - * Admin logs - */ - - /// - /// Controls if admin logs are enabled. Highly recommended to shut this off for development. - /// - public static readonly CVarDef AdminLogsEnabled = - CVarDef.Create("adminlogs.enabled", true, CVar.SERVERONLY); - - public static readonly CVarDef AdminLogsQueueSendDelay = - CVarDef.Create("adminlogs.queue_send_delay_seconds", 5f, CVar.SERVERONLY); - - // When to skip the waiting time to save in-round admin logs, if no admin logs are currently being saved - public static readonly CVarDef AdminLogsQueueMax = - CVarDef.Create("adminlogs.queue_max", 5000, CVar.SERVERONLY); - - // When to skip the waiting time to save pre-round admin logs, if no admin logs are currently being saved - public static readonly CVarDef AdminLogsPreRoundQueueMax = - CVarDef.Create("adminlogs.pre_round_queue_max", 5000, CVar.SERVERONLY); - - // When to start dropping logs - public static readonly CVarDef AdminLogsDropThreshold = - CVarDef.Create("adminlogs.drop_threshold", 20000, CVar.SERVERONLY); - - // How many logs to send to the client at once - public static readonly CVarDef AdminLogsClientBatchSize = - CVarDef.Create("adminlogs.client_batch_size", 1000, CVar.SERVERONLY); - - public static readonly CVarDef AdminLogsServerName = - CVarDef.Create("adminlogs.server_name", "unknown", CVar.SERVERONLY); - - /* - * Atmos - */ - - /// - /// Whether gas differences will move entities. - /// - public static readonly CVarDef SpaceWind = - CVarDef.Create("atmos.space_wind", false, CVar.SERVERONLY); - - /// - /// Divisor from maxForce (pressureDifference * 2.25f) to force applied on objects. - /// - public static readonly CVarDef SpaceWindPressureForceDivisorThrow = - CVarDef.Create("atmos.space_wind_pressure_force_divisor_throw", 15f, CVar.SERVERONLY); - - /// - /// Divisor from maxForce (pressureDifference * 2.25f) to force applied on objects. - /// - public static readonly CVarDef SpaceWindPressureForceDivisorPush = - CVarDef.Create("atmos.space_wind_pressure_force_divisor_push", 2500f, CVar.SERVERONLY); - - /// - /// The maximum velocity (not force) that may be applied to an object by atmospheric pressure differences. - /// Useful to prevent clipping through objects. - /// - public static readonly CVarDef SpaceWindMaxVelocity = - CVarDef.Create("atmos.space_wind_max_velocity", 30f, CVar.SERVERONLY); - - /// - /// The maximum force that may be applied to an object by pushing (i.e. not throwing) atmospheric pressure differences. - /// A "throwing" atmospheric pressure difference ignores this limit, but not the max. velocity limit. - /// - public static readonly CVarDef SpaceWindMaxPushForce = - CVarDef.Create("atmos.space_wind_max_push_force", 20f, CVar.SERVERONLY); - - /// - /// Whether monstermos tile equalization is enabled. - /// - public static readonly CVarDef MonstermosEqualization = - CVarDef.Create("atmos.monstermos_equalization", true, CVar.SERVERONLY); - - /// - /// Whether monstermos explosive depressurization is enabled. - /// Needs to be enabled to work. - /// - public static readonly CVarDef MonstermosDepressurization = - CVarDef.Create("atmos.monstermos_depressurization", true, CVar.SERVERONLY); - - /// - /// Whether monstermos explosive depressurization will rip tiles.. - /// Needs and to be enabled to work. - /// WARNING: This cvar causes MAJOR contrast issues, and usually tends to make any spaced scene look very cluttered. - /// This not only usually looks strange, but can also reduce playability for people with impaired vision. Please think twice before enabling this on your server. - /// Also looks weird on slow spacing for unrelated reasons. If you do want to enable this, you should probably turn on instaspacing. - /// - public static readonly CVarDef MonstermosRipTiles = - CVarDef.Create("atmos.monstermos_rip_tiles", false, CVar.SERVERONLY); - - /// - /// Whether explosive depressurization will cause the grid to gain an impulse. - /// Needs and to be enabled to work. - /// - public static readonly CVarDef AtmosGridImpulse = - CVarDef.Create("atmos.grid_impulse", false, CVar.SERVERONLY); - - /// - /// What fraction of air from a spaced tile escapes every tick. - /// 1.0 for instant spacing, 0.2 means 20% of remaining air lost each time - /// - public static readonly CVarDef AtmosSpacingEscapeRatio = - CVarDef.Create("atmos.mmos_spacing_speed", 0.15f, CVar.SERVERONLY); - - /// - /// Minimum amount of air allowed on a spaced tile before it is reset to 0 immediately in kPa - /// Since the decay due to SpacingEscapeRatio follows a curve, it would never reach 0.0 exactly - /// unless we truncate it somewhere. - /// - public static readonly CVarDef AtmosSpacingMinGas = - CVarDef.Create("atmos.mmos_min_gas", 2.0f, CVar.SERVERONLY); +namespace Content.Shared.CCVar; - /// - /// How much wind can go through a single tile before that tile doesn't depressurize itself - /// (I.e spacing is limited in large rooms heading into smaller spaces) - /// - public static readonly CVarDef AtmosSpacingMaxWind = - CVarDef.Create("atmos.mmos_max_wind", 500f, CVar.SERVERONLY); - - /// - /// Whether atmos superconduction is enabled. - /// - /// Disabled by default, superconduction is awful. - public static readonly CVarDef Superconduction = - CVarDef.Create("atmos.superconduction", false, CVar.SERVERONLY); - - /// - /// Heat loss per tile due to radiation at 20 degC, in W. - /// - public static readonly CVarDef SuperconductionTileLoss = - CVarDef.Create("atmos.superconduction_tile_loss", 30f, CVar.SERVERONLY); - - /// - /// Whether excited groups will be processed and created. - /// - public static readonly CVarDef ExcitedGroups = - CVarDef.Create("atmos.excited_groups", true, CVar.SERVERONLY); - - /// - /// Whether all tiles in an excited group will clear themselves once being exposed to space. - /// Similar to , without none of the tile ripping or - /// things being thrown around very violently. - /// Needs to be enabled to work. - /// - public static readonly CVarDef ExcitedGroupsSpaceIsAllConsuming = - CVarDef.Create("atmos.excited_groups_space_is_all_consuming", false, CVar.SERVERONLY); - - /// - /// Maximum time in milliseconds that atmos can take processing. - /// - public static readonly CVarDef AtmosMaxProcessTime = - CVarDef.Create("atmos.max_process_time", 3f, CVar.SERVERONLY); - - /// - /// Atmos tickrate in TPS. Atmos processing will happen every 1/TPS seconds. - /// - public static readonly CVarDef AtmosTickRate = - CVarDef.Create("atmos.tickrate", 15f, CVar.SERVERONLY); - - /// - /// Scale factor for how fast things happen in our atmosphere - /// simulation compared to real life. 1x means pumps run at 1x - /// speed. Players typically expect things to happen faster - /// in-game. - /// - public static readonly CVarDef AtmosSpeedup = - CVarDef.Create("atmos.speedup", 8f, CVar.SERVERONLY); - - /// - /// Like atmos.speedup, but only for gas and reaction heat values. 64x means - /// gases heat up and cool down 64x faster than real life. - /// - public static readonly CVarDef AtmosHeatScale = - CVarDef.Create("atmos.heat_scale", 8f, CVar.SERVERONLY); - - /// - /// Maximum explosion radius for explosions caused by bursting a gas tank ("max caps"). - /// Setting this to zero disables the explosion but still allows the tank to burst and leak. - /// - public static readonly CVarDef AtmosTankFragment = - CVarDef.Create("atmos.max_explosion_range", 26f, CVar.SERVERONLY); - - /* - * MIDI instruments - */ - - public static readonly CVarDef MaxMidiEventsPerSecond = - CVarDef.Create("midi.max_events_per_second", 1000, CVar.REPLICATED | CVar.SERVER); - - public static readonly CVarDef MaxMidiEventsPerBatch = - CVarDef.Create("midi.max_events_per_batch", 60, CVar.REPLICATED | CVar.SERVER); - - public static readonly CVarDef MaxMidiBatchesDropped = - CVarDef.Create("midi.max_batches_dropped", 1, CVar.SERVERONLY); - - public static readonly CVarDef MaxMidiLaggedBatches = - CVarDef.Create("midi.max_lagged_batches", 8, CVar.SERVERONLY); - - /* - * Holidays - */ - - public static readonly CVarDef HolidaysEnabled = CVarDef.Create("holidays.enabled", true, CVar.SERVERONLY); - - /* - * Branding stuff - */ - - public static readonly CVarDef BrandingSteam = CVarDef.Create("branding.steam", false, CVar.CLIENTONLY); - - /* - * OOC - */ - - public static readonly CVarDef OocEnabled = CVarDef.Create("ooc.enabled", true, CVar.NOTIFY | CVar.REPLICATED); - - public static readonly CVarDef AdminOocEnabled = - CVarDef.Create("ooc.enabled_admin", true, CVar.NOTIFY); - - /// - /// If true, whenever OOC is disabled the Discord OOC relay will also be disabled. - /// - public static readonly CVarDef DisablingOOCDisablesRelay = CVarDef.Create("ooc.disabling_ooc_disables_relay", true, CVar.SERVERONLY); - - /// - /// Whether or not OOC chat should be enabled during a round. - /// - public static readonly CVarDef OocEnableDuringRound = - CVarDef.Create("ooc.enable_during_round", false, CVar.NOTIFY | CVar.REPLICATED | CVar.SERVER); - - public static readonly CVarDef ShowOocPatronColor = - CVarDef.Create("ooc.show_ooc_patron_color", true, CVar.ARCHIVE | CVar.REPLICATED | CVar.CLIENT); - - /* - * LOOC - */ - - public static readonly CVarDef LoocEnabled = CVarDef.Create("looc.enabled", true, CVar.NOTIFY | CVar.REPLICATED); - - public static readonly CVarDef AdminLoocEnabled = - CVarDef.Create("looc.enabled_admin", true, CVar.NOTIFY); - - /// - /// True: Dead players can use LOOC - /// False: Dead player LOOC gets redirected to dead chat - /// - public static readonly CVarDef DeadLoocEnabled = CVarDef.Create("looc.enabled_dead", false, CVar.NOTIFY | CVar.REPLICATED); - - /// - /// True: Crit players can use LOOC - /// False: Crit player LOOC gets redirected to dead chat - /// - public static readonly CVarDef CritLoocEnabled = CVarDef.Create("looc.enabled_crit", false, CVar.NOTIFY | CVar.REPLICATED); - - /* - * Entity Menu Grouping Types - */ - public static readonly CVarDef EntityMenuGroupingType = CVarDef.Create("entity_menu", 0, CVar.CLIENTONLY); - - /* - * Whitelist - */ - - /// - /// Controls whether the server will deny any players that are not whitelisted in the DB. - /// - public static readonly CVarDef WhitelistEnabled = - CVarDef.Create("whitelist.enabled", false, CVar.SERVERONLY); - /// - /// Specifies the whitelist prototypes to be used by the server. This should be a comma-separated list of prototypes. - /// If a whitelists conditions to be active fail (for example player count), the next whitelist will be used instead. If no whitelist is valid, the player will be allowed to connect. - /// - public static readonly CVarDef WhitelistPrototypeList = - CVarDef.Create("whitelist.prototype_list", "basicWhitelist", CVar.SERVERONLY); - - /* - * VOTE - */ - - /// - /// Allows enabling/disabling player-started votes for ultimate authority - /// - public static readonly CVarDef VoteEnabled = - CVarDef.Create("vote.enabled", true, CVar.SERVERONLY); - - /// - /// See vote.enabled, but specific to restart votes - /// - public static readonly CVarDef VoteRestartEnabled = - CVarDef.Create("vote.restart_enabled", true, CVar.SERVERONLY); - - /// - /// Config for when the restart vote should be allowed to be called regardless with less than this amount of players. - /// - public static readonly CVarDef VoteRestartMaxPlayers = - CVarDef.Create("vote.restart_max_players", 20, CVar.SERVERONLY); - - /// - /// Config for when the restart vote should be allowed to be called based on percentage of ghosts. - /// - public static readonly CVarDef VoteRestartGhostPercentage = - CVarDef.Create("vote.restart_ghost_percentage", 55, CVar.SERVERONLY); - - /// - /// See vote.enabled, but specific to preset votes - /// - public static readonly CVarDef VotePresetEnabled = - CVarDef.Create("vote.preset_enabled", true, CVar.SERVERONLY); - - /// - /// See vote.enabled, but specific to map votes - /// - public static readonly CVarDef VoteMapEnabled = - CVarDef.Create("vote.map_enabled", false, CVar.SERVERONLY); - - /// - /// The required ratio of the server that must agree for a restart round vote to go through. - /// - public static readonly CVarDef VoteRestartRequiredRatio = - CVarDef.Create("vote.restart_required_ratio", 0.85f, CVar.SERVERONLY); - - /// - /// Whether or not to prevent the restart vote from having any effect when there is an online admin - /// - public static readonly CVarDef VoteRestartNotAllowedWhenAdminOnline = - CVarDef.Create("vote.restart_not_allowed_when_admin_online", true, CVar.SERVERONLY); - - /// - /// The delay which two votes of the same type are allowed to be made by separate people, in seconds. - /// - public static readonly CVarDef VoteSameTypeTimeout = - CVarDef.Create("vote.same_type_timeout", 240f, CVar.SERVERONLY); - - /// - /// Sets the duration of the map vote timer. - /// - public static readonly CVarDef - VoteTimerMap = CVarDef.Create("vote.timermap", 90, CVar.SERVERONLY); - - /// - /// Sets the duration of the restart vote timer. - /// - public static readonly CVarDef - VoteTimerRestart = CVarDef.Create("vote.timerrestart", 60, CVar.SERVERONLY); - - /// - /// Sets the duration of the gamemode/preset vote timer. - /// - public static readonly CVarDef - VoteTimerPreset = CVarDef.Create("vote.timerpreset", 30, CVar.SERVERONLY); - - /// - /// Sets the duration of the map vote timer when ALONE. - /// - public static readonly CVarDef - VoteTimerAlone = CVarDef.Create("vote.timeralone", 10, CVar.SERVERONLY); - - /* - * VOTEKICK - */ - - /// - /// Allows enabling/disabling player-started votekick for ultimate authority - /// - public static readonly CVarDef VotekickEnabled = - CVarDef.Create("votekick.enabled", true, CVar.SERVERONLY); - - /// - /// Config for when the votekick should be allowed to be called based on number of eligible voters. - /// - public static readonly CVarDef VotekickEligibleNumberRequirement = - CVarDef.Create("votekick.eligible_number", 5, CVar.SERVERONLY); - - /// - /// Whether a votekick initiator must be a ghost or not. - /// - public static readonly CVarDef VotekickInitiatorGhostRequirement = - CVarDef.Create("votekick.initiator_ghost_requirement", true, CVar.SERVERONLY); - - /// - /// Should the initiator be whitelisted to initiate a votekick? - /// - public static readonly CVarDef VotekickInitiatorWhitelistedRequirement = - CVarDef.Create("votekick.initiator_whitelist_requirement", true, CVar.SERVERONLY); - - /// - /// Should the initiator be able to start a votekick if they are bellow the votekick.voter_playtime requirement? - /// - public static readonly CVarDef VotekickInitiatorTimeRequirement = - CVarDef.Create("votekick.initiator_time_requirement", false, CVar.SERVERONLY); - - /// - /// Whether a votekick voter must be a ghost or not. - /// - public static readonly CVarDef VotekickVoterGhostRequirement = - CVarDef.Create("votekick.voter_ghost_requirement", true, CVar.SERVERONLY); - - /// - /// Config for how many hours playtime a player must have to be able to vote on a votekick. - /// - public static readonly CVarDef VotekickEligibleVoterPlaytime = - CVarDef.Create("votekick.voter_playtime", 100, CVar.SERVERONLY); - - /// - /// Config for how many seconds a player must have been dead to initiate a votekick / be able to vote on a votekick. - /// - public static readonly CVarDef VotekickEligibleVoterDeathtime = - CVarDef.Create("votekick.voter_deathtime", 30, CVar.REPLICATED | CVar.SERVER); - - /// - /// The required ratio of eligible voters that must agree for a votekick to go through. - /// - public static readonly CVarDef VotekickRequiredRatio = - CVarDef.Create("votekick.required_ratio", 0.6f, CVar.SERVERONLY); - - /// - /// Whether or not to prevent the votekick from having any effect when there is an online admin. - /// - public static readonly CVarDef VotekickNotAllowedWhenAdminOnline = - CVarDef.Create("votekick.not_allowed_when_admin_online", true, CVar.SERVERONLY); - - /// - /// The delay for which two votekicks are allowed to be made by separate people, in seconds. - /// - public static readonly CVarDef VotekickTimeout = - CVarDef.Create("votekick.timeout", 120f, CVar.SERVERONLY); - - /// - /// Sets the duration of the votekick vote timer. - /// - public static readonly CVarDef - VotekickTimer = CVarDef.Create("votekick.timer", 60, CVar.SERVERONLY); - - /// - /// Config for how many hours playtime a player must have to get protection from the Raider votekick type when playing as an antag. - /// - public static readonly CVarDef VotekickAntagRaiderProtection = - CVarDef.Create("votekick.antag_raider_protection", 10, CVar.SERVERONLY); - - /// - /// Default severity for votekick bans - /// - public static readonly CVarDef VotekickBanDefaultSeverity = - CVarDef.Create("votekick.ban_default_severity", "High", CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED); - - /// - /// Duration of a ban caused by a votekick (in minutes). - /// - public static readonly CVarDef VotekickBanDuration = - CVarDef.Create("votekick.ban_duration", 180, CVar.SERVERONLY); - - /// - /// Whether the ghost requirement settings for votekicks should be ignored for the lobby. - /// - public static readonly CVarDef VotekickIgnoreGhostReqInLobby = - CVarDef.Create("votekick.ignore_ghost_req_in_lobby", true, CVar.SERVERONLY); - - /* - * BAN - */ - - public static readonly CVarDef BanHardwareIds = - CVarDef.Create("ban.hardware_ids", true, CVar.SERVERONLY); - - /* - * Procgen - */ - - /// - /// Should we pre-load all of the procgen atlasses. - /// - public static readonly CVarDef ProcgenPreload = - CVarDef.Create("procgen.preload", true, CVar.SERVERONLY); - - /* - * Shuttles - */ - - // Look this is technically eye behavior but its main impact is shuttles so I just dumped it here. - /// - /// If true then the camera will match the grid / map and is unchangeable. - /// - When traversing grids it will snap to 0 degrees rotation. - /// False means the player has control over the camera rotation. - /// - When traversing grids it will snap to the nearest cardinal which will generally be imperceptible. - /// - public static readonly CVarDef CameraRotationLocked = - CVarDef.Create("shuttle.camera_rotation_locked", false, CVar.REPLICATED); - - /// - /// Whether the arrivals terminal should be on a planet map. - /// - public static readonly CVarDef ArrivalsPlanet = - CVarDef.Create("shuttle.arrivals_planet", true, CVar.SERVERONLY); - - /// - /// Whether the arrivals shuttle is enabled. - /// - public static readonly CVarDef ArrivalsShuttles = - CVarDef.Create("shuttle.arrivals", true, CVar.SERVERONLY); - - /// - /// The map to use for the arrivals station. - /// - public static readonly CVarDef ArrivalsMap = - CVarDef.Create("shuttle.arrivals_map", "/Maps/Misc/terminal.yml", CVar.SERVERONLY); - - /// - /// Cooldown between arrivals departures. This should be longer than the FTL time or it will double cycle. - /// - public static readonly CVarDef ArrivalsCooldown = - CVarDef.Create("shuttle.arrivals_cooldown", 50f, CVar.SERVERONLY); - - /// - /// Are players allowed to return on the arrivals shuttle. - /// - public static readonly CVarDef ArrivalsReturns = - CVarDef.Create("shuttle.arrivals_returns", false, CVar.SERVERONLY); - - /// - /// Should all players who spawn at arrivals have godmode until they leave the map? - /// - public static readonly CVarDef GodmodeArrivals = - CVarDef.Create("shuttle.godmode_arrivals", false, CVar.SERVERONLY); - - /// - /// If a grid is split then hide any smaller ones under this mass (kg) from the map. - /// This is useful to avoid split grids spamming out labels. - /// - public static readonly CVarDef HideSplitGridsUnder = - CVarDef.Create("shuttle.hide_split_grids_under", 30, CVar.SERVERONLY); - - /// - /// Whether to automatically spawn escape shuttles. - /// - public static readonly CVarDef GridFill = - CVarDef.Create("shuttle.grid_fill", true, CVar.SERVERONLY); - - /// - /// Whether to automatically preloading grids by GridPreloaderSystem - /// - public static readonly CVarDef PreloadGrids = - CVarDef.Create("shuttle.preload_grids", true, CVar.SERVERONLY); - - /// - /// How long the warmup time before FTL start should be. - /// - public static readonly CVarDef FTLStartupTime = - CVarDef.Create("shuttle.startup_time", 5.5f, CVar.SERVERONLY); - - /// - /// How long a shuttle spends in FTL. - /// - public static readonly CVarDef FTLTravelTime = - CVarDef.Create("shuttle.travel_time", 20f, CVar.SERVERONLY); - - /// - /// How long the final stage of FTL before arrival should be. - /// - public static readonly CVarDef FTLArrivalTime = - CVarDef.Create("shuttle.arrival_time", 5f, CVar.SERVERONLY); - - /// - /// How much time needs to pass before a shuttle can FTL again. - /// - public static readonly CVarDef FTLCooldown = - CVarDef.Create("shuttle.cooldown", 10f, CVar.SERVERONLY); - - /// - /// The maximum a grid can have before it becomes unable to FTL. - /// Any value equal to or less than zero will disable this check. - /// - public static readonly CVarDef FTLMassLimit = - CVarDef.Create("shuttle.mass_limit", 300f, CVar.SERVERONLY); - - /// - /// How long to knock down entities for if they aren't buckled when FTL starts and stops. - /// - public static readonly CVarDef HyperspaceKnockdownTime = - CVarDef.Create("shuttle.hyperspace_knockdown_time", 5f, CVar.SERVERONLY); - - /* - * Emergency - */ - - /// - /// Is the emergency shuttle allowed to be early launched. - /// - public static readonly CVarDef EmergencyEarlyLaunchAllowed = - CVarDef.Create("shuttle.emergency_early_launch_allowed", false, CVar.SERVERONLY); - - /// - /// How long the emergency shuttle remains docked with the station, in seconds. - /// - public static readonly CVarDef EmergencyShuttleDockTime = - CVarDef.Create("shuttle.emergency_dock_time", 180f, CVar.SERVERONLY); - - /// - /// If the emergency shuttle can't dock at a priority port, the dock time will be multiplied with this value. - /// - public static readonly CVarDef EmergencyShuttleDockTimeMultiplierOtherDock = - CVarDef.Create("shuttle.emergency_dock_time_multiplier_other_dock", 1.6667f, CVar.SERVERONLY); - - /// - /// If the emergency shuttle can't dock at all, the dock time will be multiplied with this value. - /// - public static readonly CVarDef EmergencyShuttleDockTimeMultiplierNoDock = - CVarDef.Create("shuttle.emergency_dock_time_multiplier_no_dock", 2f, CVar.SERVERONLY); - - /// - /// How long after the console is authorized for the shuttle to early launch. - /// - public static readonly CVarDef EmergencyShuttleAuthorizeTime = - CVarDef.Create("shuttle.emergency_authorize_time", 10f, CVar.SERVERONLY); - - /// - /// The minimum time for the emergency shuttle to arrive at centcomm. - /// Actual minimum travel time cannot be less than - /// - public static readonly CVarDef EmergencyShuttleMinTransitTime = - CVarDef.Create("shuttle.emergency_transit_time_min", 60f, CVar.SERVERONLY); - - /// - /// The maximum time for the emergency shuttle to arrive at centcomm. - /// - public static readonly CVarDef EmergencyShuttleMaxTransitTime = - CVarDef.Create("shuttle.emergency_transit_time_max", 180f, CVar.SERVERONLY); - - /// - /// Whether the emergency shuttle is enabled or should the round just end. - /// - public static readonly CVarDef EmergencyShuttleEnabled = - CVarDef.Create("shuttle.emergency", true, CVar.SERVERONLY); - - /// - /// The percentage of time passed from the initial call to when the shuttle can no longer be recalled. - /// ex. a call time of 10min and turning point of 0.5 means the shuttle cannot be recalled after 5 minutes. - /// - public static readonly CVarDef EmergencyRecallTurningPoint = - CVarDef.Create("shuttle.recall_turning_point", 0.5f, CVar.SERVERONLY); - - /// - /// Time in minutes after round start to auto-call the shuttle. Set to zero to disable. - /// - public static readonly CVarDef EmergencyShuttleAutoCallTime = - CVarDef.Create("shuttle.auto_call_time", 90, CVar.SERVERONLY); - - /// - /// Time in minutes after the round was extended (by recalling the shuttle) to call - /// the shuttle again. - /// - public static readonly CVarDef EmergencyShuttleAutoCallExtensionTime = - CVarDef.Create("shuttle.auto_call_extension_time", 45, CVar.SERVERONLY); - - /* - * Crew Manifests - */ - - /// - /// Setting this allows a crew manifest to be opened from any window - /// that has a crew manifest button, and sends the correct message. - /// If this is false, only in-game entities will allow you to see - /// the crew manifest, if the functionality is coded in. - /// Having administrator priveledge ignores this, but will still - /// hide the button in UI windows. - /// - public static readonly CVarDef CrewManifestWithoutEntity = - CVarDef.Create("crewmanifest.no_entity", true, CVar.REPLICATED); - - /// - /// Setting this allows the crew manifest to be viewed from 'unsecure' - /// entities, such as the PDA. - /// - public static readonly CVarDef CrewManifestUnsecure = - CVarDef.Create("crewmanifest.unsecure", true, CVar.REPLICATED); - - /* - * Biomass - */ - - /// - /// Enabled: Cloning has 70% cost and reclaimer will refuse to reclaim corpses with souls. (For LRP). - /// Disabled: Cloning has full biomass cost and reclaimer can reclaim corpses with souls. (Playtested and balanced for MRP+). - /// - public static readonly CVarDef BiomassEasyMode = - CVarDef.Create("biomass.easy_mode", true, CVar.SERVERONLY); - - /* - * Anomaly - */ - - /// - /// A scale factor applied to a grid's bounds when trying to find a spot to randomly generate an anomaly. - /// - public static readonly CVarDef AnomalyGenerationGridBoundsScale = - CVarDef.Create("anomaly.generation_grid_bounds_scale", 0.6f, CVar.SERVERONLY); - - /* - * VIEWPORT - */ - - public static readonly CVarDef ViewportStretch = - CVarDef.Create("viewport.stretch", true, CVar.CLIENTONLY | CVar.ARCHIVE); - - public static readonly CVarDef ViewportFixedScaleFactor = - CVarDef.Create("viewport.fixed_scale_factor", 2, CVar.CLIENTONLY | CVar.ARCHIVE); - - // This default is basically specifically chosen so fullscreen/maximized 1080p hits a 2x snap and does NN. - public static readonly CVarDef ViewportSnapToleranceMargin = - CVarDef.Create("viewport.snap_tolerance_margin", 64, CVar.CLIENTONLY | CVar.ARCHIVE); - - public static readonly CVarDef ViewportSnapToleranceClip = - CVarDef.Create("viewport.snap_tolerance_clip", 32, CVar.CLIENTONLY | CVar.ARCHIVE); - - public static readonly CVarDef ViewportScaleRender = - CVarDef.Create("viewport.scale_render", true, CVar.CLIENTONLY | CVar.ARCHIVE); - - public static readonly CVarDef ViewportMinimumWidth = - CVarDef.Create("viewport.minimum_width", 15, CVar.REPLICATED | CVar.SERVER); - - public static readonly CVarDef ViewportMaximumWidth = - CVarDef.Create("viewport.maximum_width", 21, CVar.REPLICATED | CVar.SERVER); - - public static readonly CVarDef ViewportWidth = - CVarDef.Create("viewport.width", 21, CVar.CLIENTONLY | CVar.ARCHIVE); - - public static readonly CVarDef ViewportVerticalFit = - CVarDef.Create("viewport.vertical_fit", true, CVar.CLIENTONLY | CVar.ARCHIVE); - - /* - * UI - */ - - public static readonly CVarDef UILayout = - CVarDef.Create("ui.layout", "Default", CVar.CLIENTONLY | CVar.ARCHIVE); - - public static readonly CVarDef DefaultScreenChatSize = - CVarDef.Create("ui.default_chat_size", "", CVar.CLIENTONLY | CVar.ARCHIVE); - - public static readonly CVarDef SeparatedScreenChatSize = - CVarDef.Create("ui.separated_chat_size", "0.6,0", CVar.CLIENTONLY | CVar.ARCHIVE); - - - /* - * Accessibility - */ - - /// - /// Chat window opacity slider, controlling the alpha of the chat window background. - /// Goes from to 0 (completely transparent) to 1 (completely opaque) - /// - public static readonly CVarDef ChatWindowOpacity = - CVarDef.Create("accessibility.chat_window_transparency", 0.85f, CVar.CLIENTONLY | CVar.ARCHIVE); - - /// - /// Toggle for visual effects that may potentially cause motion sickness. - /// Where reasonable, effects affected by this CVar should use an alternate effect. - /// Please do not use this CVar as a bandaid for effects that could otherwise be made accessible without issue. - /// - public static readonly CVarDef ReducedMotion = - CVarDef.Create("accessibility.reduced_motion", false, CVar.CLIENTONLY | CVar.ARCHIVE); - - public static readonly CVarDef ChatEnableColorName = - CVarDef.Create("accessibility.enable_color_name", true, CVar.CLIENTONLY | CVar.ARCHIVE, "Toggles displaying names with individual colors."); - - /// - /// Screen shake intensity slider, controlling the intensity of the CameraRecoilSystem. - /// Goes from 0 (no recoil at all) to 1 (regular amounts of recoil) - /// - public static readonly CVarDef ScreenShakeIntensity = - CVarDef.Create("accessibility.screen_shake_intensity", 1f, CVar.CLIENTONLY | CVar.ARCHIVE); - - /// - /// A generic toggle for various visual effects that are color sensitive. - /// As of 2/16/24, only applies to progress bar colors. - /// - public static readonly CVarDef AccessibilityColorblindFriendly = - CVarDef.Create("accessibility.colorblind_friendly", false, CVar.CLIENTONLY | CVar.ARCHIVE); - - /* - * CHAT - */ - - /// - /// Chat rate limit values are accounted in periods of this size (seconds). - /// After the period has passed, the count resets. - /// - /// - public static readonly CVarDef ChatRateLimitPeriod = - CVarDef.Create("chat.rate_limit_period", 2f, CVar.SERVERONLY); - - /// - /// How many chat messages are allowed in a single rate limit period. - /// - /// - /// The total rate limit throughput per second is effectively - /// divided by . - /// - /// - public static readonly CVarDef ChatRateLimitCount = - CVarDef.Create("chat.rate_limit_count", 10, CVar.SERVERONLY); - - /// - /// Minimum delay (in seconds) between notifying admins about chat message rate limit violations. - /// A negative value disables admin announcements. - /// - public static readonly CVarDef ChatRateLimitAnnounceAdminsDelay = - CVarDef.Create("chat.rate_limit_announce_admins_delay", 15, CVar.SERVERONLY); - - public static readonly CVarDef ChatMaxMessageLength = - CVarDef.Create("chat.max_message_length", 1000, CVar.SERVER | CVar.REPLICATED); - - public static readonly CVarDef ChatMaxAnnouncementLength = - CVarDef.Create("chat.max_announcement_length", 256, CVar.SERVER | CVar.REPLICATED); - - public static readonly CVarDef ChatSanitizerEnabled = - CVarDef.Create("chat.chat_sanitizer_enabled", true, CVar.SERVERONLY); - - public static readonly CVarDef ChatShowTypingIndicator = - CVarDef.Create("chat.show_typing_indicator", true, CVar.ARCHIVE | CVar.REPLICATED | CVar.SERVER); - - public static readonly CVarDef ChatEnableFancyBubbles = - CVarDef.Create("chat.enable_fancy_bubbles", true, CVar.CLIENTONLY | CVar.ARCHIVE, "Toggles displaying fancy speech bubbles, which display the speaking character's name."); - - public static readonly CVarDef ChatFancyNameBackground = - CVarDef.Create("chat.fancy_name_background", false, CVar.CLIENTONLY | CVar.ARCHIVE, "Toggles displaying a background under the speaking character's name."); - - /// - /// A message broadcast to each player that joins the lobby. - /// May be changed by admins ingame through use of the "set-motd" command. - /// In this case the new value, if not empty, is broadcast to all connected players and saved between rounds. - /// May be requested by any player through use of the "get-motd" command. - /// - public static readonly CVarDef MOTD = - CVarDef.Create("chat.motd", "", CVar.SERVER | CVar.SERVERONLY | CVar.ARCHIVE, "A message broadcast to each player that joins the lobby."); - - /* - * AFK - */ - - /// - /// How long a client can go without any input before being considered AFK. - /// - public static readonly CVarDef AfkTime = - CVarDef.Create("afk.time", 60f, CVar.SERVERONLY); - - /* - * IC - */ - - /// - /// Restricts IC character names to alphanumeric chars. - /// - public static readonly CVarDef RestrictedNames = - CVarDef.Create("ic.restricted_names", true, CVar.SERVER | CVar.REPLICATED); - - /// - /// Allows flavor text (character descriptions) - /// - public static readonly CVarDef FlavorText = - CVarDef.Create("ic.flavor_text", false, CVar.SERVER | CVar.REPLICATED); - - /// - /// Adds a period at the end of a sentence if the sentence ends in a letter. - /// - public static readonly CVarDef ChatPunctuation = - CVarDef.Create("ic.punctuation", false, CVar.SERVER); - - /// - /// Enables automatically forcing IC name rules. Uppercases the first letter of the first and last words of the name - /// - public static readonly CVarDef ICNameCase = - CVarDef.Create("ic.name_case", true, CVar.SERVER | CVar.REPLICATED); - - /// - /// Whether or not players' characters are randomly generated rather than using their selected characters in the creator. - /// - public static readonly CVarDef ICRandomCharacters = - CVarDef.Create("ic.random_characters", false, CVar.SERVER); - - /// - /// A weighted random prototype used to determine the species selected for random characters. - /// - public static readonly CVarDef ICRandomSpeciesWeights = - CVarDef.Create("ic.random_species_weights", "SpeciesWeights", CVar.SERVER); - - /// - /// Control displaying SSD indicators near players - /// - public static readonly CVarDef ICShowSSDIndicator = - CVarDef.Create("ic.show_ssd_indicator", true, CVar.CLIENTONLY); - - /* - * Salvage - */ - - /// - /// Duration for missions - /// - public static readonly CVarDef - SalvageExpeditionDuration = CVarDef.Create("salvage.expedition_duration", 660f, CVar.REPLICATED); - - /// - /// Cooldown for missions. - /// - public static readonly CVarDef - SalvageExpeditionCooldown = CVarDef.Create("salvage.expedition_cooldown", 780f, CVar.REPLICATED); - - /* - * Flavor - */ - - /// - /// Flavor limit. This is to ensure that having a large mass of flavors in - /// some food object won't spam a user with flavors. - /// - public static readonly CVarDef - FlavorLimit = CVarDef.Create("flavor.limit", 10, CVar.SERVERONLY); - - /* - * Mapping - */ - - /// - /// Will mapping mode enable autosaves when it's activated? - /// - public static readonly CVarDef - AutosaveEnabled = CVarDef.Create("mapping.autosave", true, CVar.SERVERONLY); - - /// - /// Autosave interval in seconds. - /// - public static readonly CVarDef - AutosaveInterval = CVarDef.Create("mapping.autosave_interval", 600f, CVar.SERVERONLY); - - /// - /// Directory in server user data to save to. Saves will be inside folders in this directory. - /// - public static readonly CVarDef - AutosaveDirectory = CVarDef.Create("mapping.autosave_dir", "Autosaves", CVar.SERVERONLY); - - - /* - * Rules - */ - - /// - /// Time that players have to wait before rules can be accepted. - /// - public static readonly CVarDef RulesWaitTime = - CVarDef.Create("rules.time", 45f, CVar.SERVER | CVar.REPLICATED); - - /// - /// Don't show rules to localhost/loopback interface. - /// - public static readonly CVarDef RulesExemptLocal = - CVarDef.Create("rules.exempt_local", true, CVar.SERVERONLY); - - - /* - * Autogeneration - */ - - public static readonly CVarDef DestinationFile = - CVarDef.Create("autogen.destination_file", "", CVar.SERVER | CVar.SERVERONLY); - - /* - * Network Resource Manager - */ - - /// - /// Whether uploaded files will be stored in the server's database. - /// This is useful to keep "logs" on what files admins have uploaded in the past. - /// - public static readonly CVarDef ResourceUploadingStoreEnabled = - CVarDef.Create("netres.store_enabled", true, CVar.SERVER | CVar.SERVERONLY); - - /// - /// Numbers of days before stored uploaded files are deleted. Set to zero or negative to disable auto-delete. - /// This is useful to free some space automatically. Auto-deletion runs only on server boot. - /// - public static readonly CVarDef ResourceUploadingStoreDeletionDays = - CVarDef.Create("netres.store_deletion_days", 30, CVar.SERVER | CVar.SERVERONLY); - - /* - * Controls - */ - - /// - /// Deadzone for drag-drop interactions. - /// - public static readonly CVarDef DragDropDeadZone = - CVarDef.Create("control.drag_dead_zone", 12f, CVar.CLIENTONLY | CVar.ARCHIVE); - - /// - /// Toggles whether the walking key is a toggle or a held key. - /// - public static readonly CVarDef ToggleWalk = - CVarDef.Create("control.toggle_walk", false, CVar.CLIENTONLY | CVar.ARCHIVE); - - /* - * Interactions - */ - - // The rationale behind the default limit is simply that I can easily get to 7 interactions per second by just - // trying to spam toggle a light switch or lever (though the UseDelay component limits the actual effect of the - // interaction). I don't want to accidentally spam admins with alerts just because somebody is spamming a - // key manually, nor do we want to alert them just because the player is having network issues and the server - // receives multiple interactions at once. But we also want to try catch people with modified clients that spam - // many interactions on the same tick. Hence, a very short period, with a relatively high count. - - /// - /// Maximum number of interactions that a player can perform within seconds - /// - public static readonly CVarDef InteractionRateLimitCount = - CVarDef.Create("interaction.rate_limit_count", 5, CVar.SERVER | CVar.REPLICATED); - - /// - public static readonly CVarDef InteractionRateLimitPeriod = - CVarDef.Create("interaction.rate_limit_period", 0.5f, CVar.SERVER | CVar.REPLICATED); - - /// - /// Minimum delay (in seconds) between notifying admins about interaction rate limit violations. A negative - /// value disables admin announcements. - /// - public static readonly CVarDef InteractionRateLimitAnnounceAdminsDelay = - CVarDef.Create("interaction.rate_limit_announce_admins_delay", 120, CVar.SERVERONLY); - - /* - * STORAGE - */ - - /// - /// Whether or not the storage UI is static and bound to the hotbar, or unbound and allowed to be dragged anywhere. - /// - public static readonly CVarDef StaticStorageUI = - CVarDef.Create("control.static_storage_ui", true, CVar.CLIENTONLY | CVar.ARCHIVE); - - /// - /// Whether or not the storage window uses a transparent or opaque sprite. - /// - public static readonly CVarDef OpaqueStorageWindow = - CVarDef.Create("control.opaque_storage_background", false, CVar.CLIENTONLY | CVar.ARCHIVE); - - /* - * UPDATE - */ - - /// - /// If a server update restart is pending, the delay after the last player leaves before we actually restart. In seconds. - /// - public static readonly CVarDef UpdateRestartDelay = - CVarDef.Create("update.restart_delay", 20f, CVar.SERVERONLY); - - /* - * Ghost - */ - - /// - /// The time you must spend reading the rules, before the "Request" button is enabled - /// - public static readonly CVarDef GhostRoleTime = - CVarDef.Create("ghost.role_time", 3f, CVar.REPLICATED | CVar.SERVER); - - /// - /// If ghost role lotteries should be made near-instanteous. - /// - public static readonly CVarDef GhostQuickLottery = - CVarDef.Create("ghost.quick_lottery", false, CVar.SERVERONLY); - - /// - /// Whether or not to kill the player's mob on ghosting, when it is in a critical health state. - /// - public static readonly CVarDef GhostKillCrit = - CVarDef.Create("ghost.kill_crit", true, CVar.REPLICATED | CVar.SERVER); - - /* - * Fire alarm - */ - - /// - /// If fire alarms should have all access, or if activating/resetting these - /// should be restricted to what is dictated on a player's access card. - /// Defaults to true. - /// - public static readonly CVarDef FireAlarmAllAccess = - CVarDef.Create("firealarm.allaccess", true, CVar.SERVERONLY); - - /* - * PLAYTIME - */ - - /// - /// Time between play time autosaves, in seconds. - /// - public static readonly CVarDef - PlayTimeSaveInterval = CVarDef.Create("playtime.save_interval", 900f, CVar.SERVERONLY); - - /* - * INFOLINKS - */ - - /// - /// Link to Discord server to show in the launcher. - /// - public static readonly CVarDef InfoLinksDiscord = - CVarDef.Create("infolinks.discord", "", CVar.SERVER | CVar.REPLICATED); - - /// - /// Link to website to show in the launcher. - /// - public static readonly CVarDef InfoLinksForum = - CVarDef.Create("infolinks.forum", "", CVar.SERVER | CVar.REPLICATED); - - /// - /// Link to GitHub page to show in the launcher. - /// - public static readonly CVarDef InfoLinksGithub = - CVarDef.Create("infolinks.github", "", CVar.SERVER | CVar.REPLICATED); - - /// - /// Link to website to show in the launcher. - /// - public static readonly CVarDef InfoLinksWebsite = - CVarDef.Create("infolinks.website", "", CVar.SERVER | CVar.REPLICATED); - - /// - /// Link to wiki to show in the launcher. - /// - public static readonly CVarDef InfoLinksWiki = - CVarDef.Create("infolinks.wiki", "", CVar.SERVER | CVar.REPLICATED); - - /// - /// Link to Patreon. Not shown in the launcher currently. - /// - public static readonly CVarDef InfoLinksPatreon = - CVarDef.Create("infolinks.patreon", "", CVar.SERVER | CVar.REPLICATED); - - /// - /// Link to the bug report form. - /// - public static readonly CVarDef InfoLinksBugReport = - CVarDef.Create("infolinks.bug_report", "", CVar.SERVER | CVar.REPLICATED); - - /// - /// Link to site handling ban appeals. Shown in ban disconnect messages. - /// - public static readonly CVarDef InfoLinksAppeal = - CVarDef.Create("infolinks.appeal", "", CVar.SERVER | CVar.REPLICATED); - - /* - * CONFIG - */ - - // These are server-only for now since I don't foresee a client use yet, - // and I don't wanna have to start coming up with like .client suffixes and stuff like that. - - /// - /// Configuration presets to load during startup. - /// Multiple presets can be separated by comma and are loaded in order. - /// - /// - /// Loaded presets must be located under the ConfigPresets/ resource directory and end with the .toml extension. - /// Only the file name (without extension) must be given for this variable. - /// - public static readonly CVarDef ConfigPresets = - CVarDef.Create("config.presets", "", CVar.SERVERONLY); - - /// - /// Whether to load the preset development CVars. - /// This disables some things like lobby to make development easier. - /// Even when true, these are only loaded if the game is compiled with DEVELOPMENT set. - /// - public static readonly CVarDef ConfigPresetDevelopment = - CVarDef.Create("config.preset_development", true, CVar.SERVERONLY); - - /// - /// Whether to load the preset debug CVars. - /// Even when true, these are only loaded if the game is compiled with DEBUG set. - /// - public static readonly CVarDef ConfigPresetDebug = - CVarDef.Create("config.preset_debug", true, CVar.SERVERONLY); - - /* - * World Generation - */ - /// - /// Whether or not world generation is enabled. - /// - public static readonly CVarDef WorldgenEnabled = - CVarDef.Create("worldgen.enabled", false, CVar.SERVERONLY); - - /// - /// The worldgen config to use. - /// - public static readonly CVarDef WorldgenConfig = - CVarDef.Create("worldgen.worldgen_config", "Default", CVar.SERVERONLY); - - /// - /// The maximum amount of time the entity GC can process, in ms. - /// - public static readonly CVarDef GCMaximumTimeMs = - CVarDef.Create("entgc.maximum_time_ms", 5, CVar.SERVERONLY); - - /* - * Replays - */ - - /// - /// Whether or not to record admin chat. If replays are being publicly distributes, this should probably be - /// false. - /// - public static readonly CVarDef ReplayRecordAdminChat = - CVarDef.Create("replay.record_admin_chat", false, CVar.ARCHIVE); - - /// - /// Automatically record full rounds as replays. - /// - public static readonly CVarDef ReplayAutoRecord = - CVarDef.Create("replay.auto_record", false, CVar.SERVERONLY); - - /// - /// The file name to record automatic replays to. The path is relative to . - /// - /// - /// - /// If the path includes slashes, directories will be automatically created if necessary. - /// - /// - /// A number of substitutions can be used to automatically fill in the file name: {year}, {month}, {day}, {hour}, {minute}, {round}. - /// - /// - public static readonly CVarDef ReplayAutoRecordName = - CVarDef.Create("replay.auto_record_name", "{year}_{month}_{day}-{hour}_{minute}-round_{round}.zip", CVar.SERVERONLY); - - /// - /// Path that, if provided, automatic replays are initially recorded in. - /// When the recording is done, the file is moved into its final destination. - /// Unless this path is rooted, it will be relative to . - /// - public static readonly CVarDef ReplayAutoRecordTempDir = - CVarDef.Create("replay.auto_record_temp_dir", "", CVar.SERVERONLY); - - /* - * Miscellaneous - */ - - public static readonly CVarDef GatewayGeneratorEnabled = - CVarDef.Create("gateway.generator_enabled", true); - - // Clippy! - public static readonly CVarDef TippyEntity = - CVarDef.Create("tippy.entity", "Tippy", CVar.SERVER | CVar.REPLICATED); - - /// - /// The number of seconds that must pass for a single entity to be able to point at something again. - /// - public static readonly CVarDef PointingCooldownSeconds = - CVarDef.Create("pointing.cooldown_seconds", 0.5f, CVar.SERVERONLY); - - /* - * DEBUG - */ - - /// - /// A simple toggle to test OptionsVisualizerComponent. - /// - public static readonly CVarDef DebugOptionVisualizerTest = - CVarDef.Create("debug.option_visualizer_test", false, CVar.CLIENTONLY); - - /// - /// Set to true to disable parallel processing in the pow3r solver. - /// - public static readonly CVarDef DebugPow3rDisableParallel = - CVarDef.Create("debug.pow3r_disable_parallel", true, CVar.SERVERONLY); - } +/// +/// Contains all the CVars used by content. +/// +/// +/// NOTICE FOR FORKS: Put your own CVars in a separate file with a different [CVarDefs] attribute. RT will automatically pick up on it. +/// +[CVarDefs] +public sealed partial class CCVars : CVars +{ + // Only debug stuff lives here. + + /// + /// A simple toggle to test OptionsVisualizerComponent. + /// + public static readonly CVarDef DebugOptionVisualizerTest = + CVarDef.Create("debug.option_visualizer_test", false, CVar.CLIENTONLY); + + /// + /// Set to true to disable parallel processing in the pow3r solver. + /// + public static readonly CVarDef DebugPow3rDisableParallel = + CVarDef.Create("debug.pow3r_disable_parallel", true, CVar.SERVERONLY); } From a1966d867183f2962d17ef5415dc89b3cde54253 Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Tue, 12 Nov 2024 08:19:54 +0300 Subject: [PATCH 051/171] improve BiomeDunGen (#33113) * improve BiomeDunGen * forgot lol * Update DungeonJob.PostGenBiome.cs * Update DungeonJob.PostGenBiome.cs --- .../DungeonJob/DungeonJob.PostGenBiome.cs | 25 ++++++++++++------- .../Parallax/Biomes/SharedBiomeSystem.cs | 2 +- .../Procedural/PostGeneration/BiomeDunGen.cs | 7 ++++++ 3 files changed, 24 insertions(+), 10 deletions(-) diff --git a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiome.cs b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiome.cs index 65f6d2d14f9..fdadcb7849d 100644 --- a/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiome.cs +++ b/Content.Server/Procedural/DungeonJob/DungeonJob.PostGenBiome.cs @@ -1,5 +1,6 @@ using System.Threading.Tasks; using Content.Server.Parallax; +using Content.Shared.Maps; using Content.Shared.Parallax.Biomes; using Content.Shared.Procedural; using Content.Shared.Procedural.PostGeneration; @@ -15,27 +16,35 @@ public sealed partial class DungeonJob /// private async Task PostGen(BiomeDunGen dunGen, DungeonData data, Dungeon dungeon, HashSet reservedTiles, Random random) { - if (_entManager.TryGetComponent(_gridUid, out BiomeComponent? biomeComp)) + if (!_prototype.TryIndex(dunGen.BiomeTemplate, out var indexedBiome)) return; - biomeComp = _entManager.AddComponent(_gridUid); var biomeSystem = _entManager.System(); - biomeSystem.SetTemplate(_gridUid, biomeComp, _prototype.Index(dunGen.BiomeTemplate)); + var seed = random.Next(); var xformQuery = _entManager.GetEntityQuery(); - foreach (var node in dungeon.RoomTiles) + var tiles = _maps.GetAllTilesEnumerator(_gridUid, _grid); + while (tiles.MoveNext(out var tileRef)) { + var node = tileRef.Value.GridIndices; + if (reservedTiles.Contains(node)) continue; + + if (dunGen.TileMask is not null) + { + if (!dunGen.TileMask.Contains(((ContentTileDefinition) _tileDefManager[tileRef.Value.Tile.TypeId]).ID)) + continue; + } // Need to set per-tile to override data. - if (biomeSystem.TryGetTile(node, biomeComp.Layers, seed, _grid, out var tile)) + if (biomeSystem.TryGetTile(node, indexedBiome.Layers, seed, _grid, out var tile)) { _maps.SetTile(_gridUid, _grid, node, tile.Value); } - if (biomeSystem.TryGetDecals(node, biomeComp.Layers, seed, _grid, out var decals)) + if (biomeSystem.TryGetDecals(node, indexedBiome.Layers, seed, _grid, out var decals)) { foreach (var decal in decals) { @@ -43,7 +52,7 @@ private async Task PostGen(BiomeDunGen dunGen, DungeonData data, Dungeon dungeon } } - if (biomeSystem.TryGetEntity(node, biomeComp, _grid, out var entityProto)) + if (tile is not null && biomeSystem.TryGetEntity(node, indexedBiome.Layers, tile.Value, seed, _grid, out var entityProto)) { var ent = _entManager.SpawnEntity(entityProto, new EntityCoordinates(_gridUid, node + _grid.TileSizeHalfVector)); var xform = xformQuery.Get(ent); @@ -61,7 +70,5 @@ private async Task PostGen(BiomeDunGen dunGen, DungeonData data, Dungeon dungeon if (!ValidateResume()) return; } - - biomeComp.Enabled = false; } } diff --git a/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs b/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs index b14baba9817..250b0f70a54 100644 --- a/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs +++ b/Content.Shared/Parallax/Biomes/SharedBiomeSystem.cs @@ -183,7 +183,7 @@ public bool TryGetEntity(Vector2i indices, BiomeComponent component, MapGridComp } - private bool TryGetEntity(Vector2i indices, List layers, Tile tileRef, int seed, MapGridComponent grid, + public bool TryGetEntity(Vector2i indices, List layers, Tile tileRef, int seed, MapGridComponent grid, [NotNullWhen(true)] out string? entity) { var tileId = TileDefManager[tileRef.TypeId].ID; diff --git a/Content.Shared/Procedural/PostGeneration/BiomeDunGen.cs b/Content.Shared/Procedural/PostGeneration/BiomeDunGen.cs index 833cf2dec76..e21e582211b 100644 --- a/Content.Shared/Procedural/PostGeneration/BiomeDunGen.cs +++ b/Content.Shared/Procedural/PostGeneration/BiomeDunGen.cs @@ -1,3 +1,4 @@ +using Content.Shared.Maps; using Content.Shared.Parallax.Biomes; using Robust.Shared.Prototypes; @@ -11,4 +12,10 @@ public sealed partial class BiomeDunGen : IDunGenLayer { [DataField(required: true)] public ProtoId BiomeTemplate; + + /// + /// creates a biome only on the specified tiles + /// + [DataField] + public HashSet>? TileMask; } From 70e3650246bcf0f32f5d5a78b8238dc6c486a2e5 Mon Sep 17 00:00:00 2001 From: Preston Smith <92108534+thetolbean@users.noreply.github.com> Date: Tue, 12 Nov 2024 06:06:43 -0600 Subject: [PATCH 052/171] Make Droppers Respect Closed/Sealed Containers (#33011) * Make droppers respect closed/sealed * Combine nested * Optimize conditions a bit --- Content.Server/Chemistry/EntitySystems/InjectorSystem.cs | 9 ++++++--- Content.Shared/Chemistry/Components/InjectorComponent.cs | 9 +++++++++ .../Prototypes/Entities/Objects/Specific/chemistry.yml | 1 + 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs b/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs index c5c45daa5bd..eb2039604af 100644 --- a/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/InjectorSystem.cs @@ -13,6 +13,7 @@ using Content.Shared.Interaction; using Content.Shared.Mobs.Components; using Content.Shared.Stacks; +using Content.Shared.Nutrition.EntitySystems; namespace Content.Server.Chemistry.EntitySystems; @@ -20,6 +21,7 @@ public sealed class InjectorSystem : SharedInjectorSystem { [Dependency] private readonly BloodstreamSystem _blood = default!; [Dependency] private readonly ReactiveSystem _reactiveSystem = default!; + [Dependency] private readonly OpenableSystem _openable = default!; public override void Initialize() { @@ -31,13 +33,14 @@ public override void Initialize() private bool TryUseInjector(Entity injector, EntityUid target, EntityUid user) { + var isOpenOrIgnored = injector.Comp.IgnoreClosed || !_openable.IsClosed(target); // Handle injecting/drawing for solutions if (injector.Comp.ToggleState == InjectorToggleMode.Inject) { - if (SolutionContainers.TryGetInjectableSolution(target, out var injectableSolution, out _)) + if (isOpenOrIgnored && SolutionContainers.TryGetInjectableSolution(target, out var injectableSolution, out _)) return TryInject(injector, target, injectableSolution.Value, user, false); - if (SolutionContainers.TryGetRefillableSolution(target, out var refillableSolution, out _)) + if (isOpenOrIgnored && SolutionContainers.TryGetRefillableSolution(target, out var refillableSolution, out _)) return TryInject(injector, target, refillableSolution.Value, user, true); if (TryComp(target, out var bloodstream)) @@ -58,7 +61,7 @@ private bool TryUseInjector(Entity injector, EntityUid target } // Draw from an object (food, beaker, etc) - if (SolutionContainers.TryGetDrawableSolution(target, out var drawableSolution, out _)) + if (isOpenOrIgnored && SolutionContainers.TryGetDrawableSolution(target, out var drawableSolution, out _)) return TryDraw(injector, target, drawableSolution.Value, user); Popup.PopupEntity(Loc.GetString("injector-component-cannot-draw-message", diff --git a/Content.Shared/Chemistry/Components/InjectorComponent.cs b/Content.Shared/Chemistry/Components/InjectorComponent.cs index 17a65ef1c17..ebd6654d9f5 100644 --- a/Content.Shared/Chemistry/Components/InjectorComponent.cs +++ b/Content.Shared/Chemistry/Components/InjectorComponent.cs @@ -45,6 +45,15 @@ public sealed partial class InjectorComponent : Component [DataField] public bool IgnoreMobs; + /// + /// Whether or not the injector is able to draw from or inject into containers that are closed/sealed + /// + /// + /// for example: droppers can not inject into cans, but syringes can + /// + [DataField] + public bool IgnoreClosed = true; + /// /// The minimum amount of solution that can be transferred at once from this solution. /// diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index 527b0ba5e62..edaa8288145 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -283,6 +283,7 @@ - type: Injector injectOnly: false ignoreMobs: true + ignoreClosed: false minTransferAmount: 1 maxTransferAmount: 5 transferAmount: 1 From 8776c71e5972cc6daec3271b5e6528e48d796770 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 12 Nov 2024 12:07:50 +0000 Subject: [PATCH 053/171] 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 43c7cad22c6..4ab88b325b5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Cojoke-dot - changes: - - message: Borg's names are now displayed when they make an announcement on the - Communications Console. - type: Tweak - id: 7104 - time: '2024-08-13T18:31:33.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30107 - author: Spessmann changes: - message: Added Cog, a new midpop map based on Cogmap from ss13 @@ -3949,3 +3941,10 @@ id: 7603 time: '2024-11-11T22:58:31.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32493 +- author: thetolbean + changes: + - message: Droppers can no longer inject or draw from closed containers. + type: Fix + id: 7604 + time: '2024-11-12T12:06:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33011 From 8b154899b515e0d7552d283c3086c417ae00ab7c Mon Sep 17 00:00:00 2001 From: MilenVolf <63782763+MilenVolf@users.noreply.github.com> Date: Tue, 12 Nov 2024 22:11:02 +0300 Subject: [PATCH 054/171] Allow editing angle of the fired projectile (#33254) Add Angle datafield to `ProjectileComponent`. It allows to change the angle of the fired projectile --- Content.Shared/Projectiles/ProjectileComponent.cs | 6 ++++++ Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Content.Shared/Projectiles/ProjectileComponent.cs b/Content.Shared/Projectiles/ProjectileComponent.cs index c24cf2b5ee5..8349252df2b 100644 --- a/Content.Shared/Projectiles/ProjectileComponent.cs +++ b/Content.Shared/Projectiles/ProjectileComponent.cs @@ -8,6 +8,12 @@ namespace Content.Shared.Projectiles; [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class ProjectileComponent : Component { + /// + /// The angle of the fired projectile. + /// + [DataField, AutoNetworkedField] + public Angle Angle; + /// /// The effect that appears when a projectile collides with an entity. /// diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index 9bd786bbe08..c7cc09e618b 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -429,7 +429,7 @@ public void ShootProjectile(EntityUid uid, Vector2 direction, Vector2 gunVelocit Projectiles.SetShooter(uid, projectile, user ?? gunUid); projectile.Weapon = gunUid; - TransformSystem.SetWorldRotation(uid, direction.ToWorldAngle()); + TransformSystem.SetWorldRotation(uid, direction.ToWorldAngle() + projectile.Angle); } protected abstract void Popup(string message, EntityUid? uid, EntityUid? user); From ef51700094aa22cd1ce7f243d934dc3c45d4ff7f Mon Sep 17 00:00:00 2001 From: Repo <47093363+Titian3@users.noreply.github.com> Date: Wed, 13 Nov 2024 10:03:13 +1300 Subject: [PATCH 055/171] Fix unban/editing role bans placed in groups. (#30659) * On editing a roleban, get all the bans with the same time. * forgoten newline * Update to check for player ID too. --- Content.Server/Database/ServerDbBase.cs | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs index c85b774e381..3806241e345 100644 --- a/Content.Server/Database/ServerDbBase.cs +++ b/Content.Server/Database/ServerDbBase.cs @@ -512,16 +512,23 @@ public abstract Task> GetServerRoleBansAsync(IPAddress? a public async Task EditServerRoleBan(int id, string reason, NoteSeverity severity, DateTimeOffset? expiration, Guid editedBy, DateTimeOffset editedAt) { await using var db = await GetDb(); + var roleBanDetails = await db.DbContext.RoleBan + .Where(b => b.Id == id) + .Select(b => new { b.BanTime, b.PlayerUserId }) + .SingleOrDefaultAsync(); - var ban = await db.DbContext.RoleBan.SingleOrDefaultAsync(b => b.Id == id); - if (ban is null) + if (roleBanDetails == default) return; - ban.Severity = severity; - ban.Reason = reason; - ban.ExpirationTime = expiration?.UtcDateTime; - ban.LastEditedById = editedBy; - ban.LastEditedAt = editedAt.UtcDateTime; - await db.DbContext.SaveChangesAsync(); + + await db.DbContext.RoleBan + .Where(b => b.BanTime == roleBanDetails.BanTime && b.PlayerUserId == roleBanDetails.PlayerUserId) + .ExecuteUpdateAsync(setters => setters + .SetProperty(b => b.Severity, severity) + .SetProperty(b => b.Reason, reason) + .SetProperty(b => b.ExpirationTime, expiration.HasValue ? expiration.Value.UtcDateTime : (DateTime?)null) + .SetProperty(b => b.LastEditedById, editedBy) + .SetProperty(b => b.LastEditedAt, editedAt.UtcDateTime) + ); } #endregion From cc3712be0c3e0da2921cfc6c98897780e975db63 Mon Sep 17 00:00:00 2001 From: PJBot Date: Tue, 12 Nov 2024 21:04:21 +0000 Subject: [PATCH 056/171] Automatic changelog update --- Resources/Changelog/Admin.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 56c82c23a43..680915d3821 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -590,5 +590,12 @@ Entries: id: 73 time: '2024-11-02T13:21:10.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32461 +- author: Repo + changes: + - message: All role bans in a set are updated on edits now. + type: Fix + id: 74 + time: '2024-11-12T21:03:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30659 Name: Admin Order: 1 From 998fc7f98dfee10226aabb473e7f5fbd10effc0e Mon Sep 17 00:00:00 2001 From: TiFeRi <57865696+XsenonDash@users.noreply.github.com> Date: Wed, 13 Nov 2024 00:56:38 +0300 Subject: [PATCH 057/171] [Maps] Paper Tweak (#2761) --- Resources/Maps/corvax_paper.yml | 12069 +++++++++++++------ Resources/Prototypes/Corvax/Maps/paper.yml | 40 +- 2 files changed, 8516 insertions(+), 3593 deletions(-) diff --git a/Resources/Maps/corvax_paper.yml b/Resources/Maps/corvax_paper.yml index b434d559c1d..d9c8ee2ddd7 100644 --- a/Resources/Maps/corvax_paper.yml +++ b/Resources/Maps/corvax_paper.yml @@ -14,6 +14,7 @@ tilemap: 14: FloorBar 16: FloorBlue 17: FloorBlueCircuit + 81: FloorBoxing 39: FloorBrokenWood 22: FloorCarpetClown 24: FloorCave @@ -131,27 +132,27 @@ entities: chunks: 0,0: ind: 0,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAHwAAAAAAfgAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAATgAAAAAAaAAAAAAAaAAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAHwAAAAAAfgAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAATgAAAAAAaAAAAAAAaAAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAA version: 6 0,1: ind: 0,1 - tiles: XQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAcAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAcAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfQAAAAAA + tiles: XQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfQAAAAAA version: 6 0,2: ind: 0,2 - tiles: BgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAABgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfQAAAAAAfQAAAAAABgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAXQAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAJAAAAAAAbAAAAAAAgQAAAAAANgAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAAANwAAAAAA + tiles: BgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAABgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfQAAAAAAfQAAAAAABgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAXQAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAJAAAAAAAfgAAAAAAgQAAAAAANgAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAAANwAAAAAA version: 6 0,3: ind: 0,3 - tiles: fQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAgQAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAbQAAAAAAfgAAAAAAOgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAOQAAAAAAOgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAbQAAAAAAOgAAAAAAOQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAOwAAAAAAQQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAbAAAAAAA + tiles: fQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAbQAAAAAAfgAAAAAAOgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANwAAAAAANwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAOQAAAAAAOgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAbQAAAAAAOgAAAAAAOQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAQQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAA version: 6 0,4: ind: 0,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAMgAAAAAAMgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAgQAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAMgAAAAAAMgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAMgAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAMgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAgQAAAAAAMgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAMgAAAAAAMgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAgQAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAMgAAAAAAMgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAMgAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAMgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAMgAAAAAAfgAAAAAA version: 6 0,5: ind: 0,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAgQAAAAAAMgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 @@ -163,15 +164,15 @@ entities: version: 6 1,2: ind: 1,2 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAARQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANgAAAAAANgAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAA + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAANgAAAAAANgAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANgAAAAAANgAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAQwAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAA version: 6 1,3: ind: 1,3 - tiles: NwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAFQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAFQAAAAAANwAAAAAANwAAAAAAfgAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAALwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAOwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAA + tiles: NwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAABgAAAAAABgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAFQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAFQAAAAAANwAAAAAANwAAAAAAfgAAAAAANwAAAAAANwAAAAAANwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAALwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAOwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAA version: 6 1,4: ind: 1,4 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAA version: 6 1,5: ind: 1,5 @@ -179,7 +180,7 @@ entities: version: 6 2,0: ind: 2,0 - tiles: bAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAATgAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAcAAAAAAALwAAAAAALwAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAALwAAAAAALwAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAAaAAAAAAATgAAAAAAaAAAAAAATgAAAAAAaAAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAATgAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAcAAAAAAALwAAAAAALwAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcAAAAAAALwAAAAAALwAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAXQAAAAAAXQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAAaAAAAAAATgAAAAAAaAAAAAAATgAAAAAAaAAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 2,1: ind: 2,1 @@ -187,7 +188,7 @@ entities: version: 6 2,2: ind: 2,2 - tiles: fQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAJAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAOwAAAAAALwAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAKgAAAAAAJQAAAAAAfgAAAAAALwAAAAAAfgAAAAAAfgAAAAAALwAAAAAALwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALwAAAAAAXQAAAAAAaAAAAAAAXQAAAAAA + tiles: fQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAJAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAOwAAAAAALwAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAKgAAAAAAJQAAAAAAfgAAAAAALwAAAAAAfgAAAAAAfgAAAAAALwAAAAAALwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALwAAAAAAXQAAAAAAaAAAAAAAXQAAAAAA version: 6 2,3: ind: 2,3 @@ -203,23 +204,23 @@ entities: version: 6 3,0: ind: 3,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 3,1: ind: 3,1 - tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAA + tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAewAAAAAAewAAAAAAewAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAA version: 6 3,2: ind: 3,2 - tiles: fgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAHwAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAFQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAADAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAFQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAZAAAAAAADAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAFQAAAAAAFQAAAAAADgAAAAAADgAAAAAADgAAAAAAHwAAAAAADAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAFQAAAAAAFQAAAAAADgAAAAAADgAAAAAADgAAAAAADAAAAAAADAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATwAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA + tiles: fgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAZAAAAAAAHwAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAFQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAADAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAFQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAZAAAAAAADAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAFQAAAAAAFQAAAAAADgAAAAAADgAAAAAADgAAAAAAHwAAAAAADAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAFQAAAAAAFQAAAAAADgAAAAAADgAAAAAADgAAAAAADAAAAAAADAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATwAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA version: 6 3,3: ind: 3,3 - tiles: fgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATwAAAAAAbQAAAAAAJAAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAALwAAAAAAJAAAAAAALwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAfgAAAAAALwAAAAAALwAAAAAALwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAJAAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAHwAAAAAAfgAAAAAAfgAAAAAALwAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAJAAAAAAAegAAAAAAegAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAJAAAAAAAQAAAAAAAQAAAAAAAJAAAAAAAegAAAAAAegAAAAAA + tiles: fgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATwAAAAAAbQAAAAAAJAAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAALwAAAAAAJAAAAAAALwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAAJAAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAJAAAAAAAfgAAAAAALwAAAAAALwAAAAAALwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAJAAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAHwAAAAAAfgAAAAAAfgAAAAAALwAAAAAAfgAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAJAAAAAAAegAAAAAAegAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAJAAAAAAAQAAAAAAAQAAAAAAAJAAAAAAAegAAAAAAegAAAAAA version: 6 3,4: ind: 3,4 - tiles: XQAAAAAAXQAAAAAAXQAAAAAALwAAAAAALwAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAHwAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAABwAAAAAACQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGgAAAAAAGwAAAAAAHAAAAAAAHAAAAAAABwAAAAAAIAAAAAAAIAAAAAAABwAAAAAABwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAHAAAAAAAGgAAAAAAGgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABwAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAGgAAAAAAGwAAAAAAHAAAAAAABwAAAAAAIAAAAAAAIAAAAAAABwAAAAAABwAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGgAAAAAAGgAAAAAAHgAAAAAAfgAAAAAABwAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: XQAAAAAAXQAAAAAAXQAAAAAALwAAAAAALwAAAAAALwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAHwAAAAAAfgAAAAAARQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAABwAAAAAACQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGgAAAAAAGwAAAAAAHAAAAAAAHAAAAAAABwAAAAAAIAAAAAAAIAAAAAAABwAAAAAABwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGwAAAAAAHAAAAAAAGgAAAAAAGgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABwAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHAAAAAAAGgAAAAAAGwAAAAAAHAAAAAAABwAAAAAAIAAAAAAAIAAAAAAABwAAAAAABwAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGgAAAAAAGgAAAAAAHgAAAAAAfgAAAAAABwAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 3,5: ind: 3,5 @@ -227,7 +228,7 @@ entities: version: 6 4,0: ind: 4,0 - tiles: fgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAIQAAAAAAIQAAAAAAfgAAAAAAEwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAIQAAAAAAIQAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAARQAAAAAARQAAAAAAfgAAAAAAIQAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAARQAAAAAAfgAAAAAARQAAAAAARQAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAJAAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAKAAAAAAAEQAAAAAAEQAAAAAA + tiles: fgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAIQAAAAAAIQAAAAAAfgAAAAAAEwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAIQAAAAAAIQAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAAfgAAAAAARQAAAAAARQAAAAAAfgAAAAAAIQAAAAAAfgAAAAAAfgAAAAAAEwAAAAAAEwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAARQAAAAAARQAAAAAAfgAAAAAARQAAAAAARQAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAATgAAAAAATgAAAAAATgAAAAAAaAAAAAAAJAAAAAAAaAAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAKAAAAAAAEQAAAAAAEQAAAAAA version: 6 4,1: ind: 4,1 @@ -235,11 +236,11 @@ entities: version: 6 4,2: ind: 4,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAATgAAAAAAaAAAAAAAJAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAPQAAAAAAWwAAAAAAPQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAPQAAAAAAWwAAAAAAWwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAATgAAAAAAaAAAAAAAJAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAJAAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAPQAAAAAAWwAAAAAAPQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAPQAAAAAAWwAAAAAAWwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA version: 6 4,3: ind: 4,3 - tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAHwAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAaAAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAAHwAAAAAAMQAAAAAAHwAAAAAAHwAAAAAACgAAAAAAHwAAAAAAHwAAAAAAMQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAAHwAAAAAAMQAAAAAAHwAAAAAACgAAAAAAYgAAAAAACgAAAAAAHwAAAAAAMQAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAATQAAAAAAaAAAAAAACgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAACgAAAAAAaAAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAAHwAAAAAAMQAAAAAAHwAAAAAACgAAAAAAYgAAAAAACgAAAAAAHwAAAAAAMQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAAHwAAAAAAMQAAAAAAHwAAAAAAHwAAAAAACgAAAAAAHwAAAAAAHwAAAAAAMQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAHwAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAaAAAAAAAMQAAAAAAMQAAAAAAfgAAAAAA + tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAaAAAAAAATgAAAAAATgAAAAAAaAAAAAAAaAAAAAAATgAAAAAATgAAAAAAaAAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAALwAAAAAALwAAAAAALwAAAAAAHwAAAAAALwAAAAAALwAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAATQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAHwAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAaAAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAAHwAAAAAAMQAAAAAAHwAAAAAAHwAAAAAACgAAAAAAHwAAAAAAHwAAAAAAMQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAAHwAAAAAAMQAAAAAAHwAAAAAACgAAAAAAYgAAAAAACgAAAAAAHwAAAAAAMQAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAATQAAAAAAaAAAAAAACgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAACgAAAAAAaAAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAAHwAAAAAAMQAAAAAAHwAAAAAACgAAAAAAYgAAAAAACgAAAAAAHwAAAAAAMQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAALwAAAAAATQAAAAAAHwAAAAAAMQAAAAAAHwAAAAAAHwAAAAAACgAAAAAAHwAAAAAAHwAAAAAAMQAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAAATQAAAAAATQAAAAAATQAAAAAAHwAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAaAAAAAAAMQAAAAAAMQAAAAAAfgAAAAAA version: 6 4,4: ind: 4,4 @@ -267,7 +268,7 @@ entities: version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -1,0: ind: -1,0 @@ -275,31 +276,31 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAACwAAAAAACwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAKAAAAAAAKAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAACwAAAAAACwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAgQAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAKAAAAAAAKAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: TwAAAAAATwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAJAAAAAAAXQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAXQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAA + tiles: TwAAAAAATwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAJAAAAAAAXQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAAwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAXQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXQAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: fgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAJAAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAbAAAAAAALwAAAAAAfgAAAAAALwAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAJAAAAAAAbAAAAAAAbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAgQAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAA + tiles: fgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAJAAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAegAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAALwAAAAAAfgAAAAAALwAAAAAAcAAAAAAALwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAJAAAAAAAfgAAAAAAbAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAATgAAAAAAcAAAAAAAfgAAAAAAcAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAA + tiles: AAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAASQAAAAAASQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAgQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASQAAAAAASQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAASQAAAAAASQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAgQAAAAAAfgAAAAAACwAAAAAACwAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAAfgAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: bAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA + tiles: bAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAHwAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAHwAAAAAAJAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA version: 6 4,-1: ind: 4,-1 @@ -331,7 +332,7 @@ entities: version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAANwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAASgAAAAAAEgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEgAAAAAASgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAEgAAAAAANwAAAAAANwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAANwAAAAAANwAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAASgAAAAAAEgAAAAAANwAAAAAAEgAAAAAAfgAAAAAAOAAAAAAAfgAAAAAAEgAAAAAANwAAAAAAEgAAAAAASgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAANwAAAAAAOAAAAAAAOAAAAAAANwAAAAAAJAAAAAAANwAAAAAAJAAAAAAANwAAAAAAOAAAAAAAOAAAAAAANwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfQAAAAAASgAAAAAAEgAAAAAAEgAAAAAANwAAAAAAfgAAAAAAEQAAAAAAfgAAAAAANwAAAAAAEgAAAAAAEgAAAAAASgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASwAAAAAASwAAAAAAEgAAAAAASwAAAAAASwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAASgAAAAAAEgAAAAAASwAAAAAAEgAAAAAASgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAASwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAEgAAAAAASgAAAAAAEgAAAAAANwAAAAAAEgAAAAAASgAAAAAAEgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAASgAAAAAAEgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEgAAAAAASgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAEgAAAAAANwAAAAAANwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAANwAAAAAANwAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAASgAAAAAAEgAAAAAANwAAAAAAEgAAAAAAfgAAAAAAEQAAAAAAfgAAAAAAEgAAAAAANwAAAAAAEgAAAAAASgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAANwAAAAAAOAAAAAAAOAAAAAAANwAAAAAAJAAAAAAANwAAAAAAJAAAAAAANwAAAAAAOAAAAAAAOAAAAAAANwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfQAAAAAASgAAAAAAEgAAAAAAEgAAAAAANwAAAAAAfgAAAAAAEQAAAAAAfgAAAAAANwAAAAAAEgAAAAAAEgAAAAAASgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJAAAAAAAfgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAASwAAAAAASwAAAAAAEgAAAAAASwAAAAAASwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAASgAAAAAAEgAAAAAASwAAAAAAEgAAAAAASgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAASwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 @@ -691,6 +692,7 @@ entities: 4447: 33,22 6221: 54,74 7019: 30,0 + 8985: 79,53 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw @@ -707,6 +709,7 @@ entities: 4445: 31,22 6220: 52,74 7007: 26,0 + 8986: 74,53 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe @@ -723,6 +726,7 @@ entities: 4507: 6,9 6219: 54,72 7016: 30,-3 + 8991: 79,52 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw @@ -742,6 +746,7 @@ entities: 4444: 31,21 5281: 74,40 7011: 26,-3 + 8992: 74,52 - node: color: '#D4D4D4FF' id: BrickTileDarkEndE @@ -940,6 +945,7 @@ entities: 8673: -8,20 8674: -9,20 8675: -9,21 + 8996: 77,53 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw @@ -972,6 +978,7 @@ entities: 8649: -8,22 8650: -9,22 8651: -9,21 + 8997: 77,53 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe @@ -1100,6 +1107,7 @@ entities: 8546: 25,-41 8547: 24,-37 8548: 20,-37 + 8999: 77,54 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -1176,6 +1184,9 @@ entities: 8554: 28,-39 8555: 29,-39 8556: 30,-39 + 8993: 75,53 + 8994: 76,53 + 8995: 78,53 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1260,6 +1271,10 @@ entities: 8553: 28,-39 8558: 30,-39 8559: 29,-39 + 8987: 75,52 + 8988: 76,52 + 8989: 77,52 + 8990: 78,52 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -1326,6 +1341,7 @@ entities: 8542: 24,-37 8543: 19,-41 8544: 25,-41 + 8998: 77,54 - node: color: '#FFFFFFFF' id: BrickTileSteelBox @@ -1440,7 +1456,6 @@ entities: 2473: 71,13 2857: 33,2 3176: 82,37 - 5431: 3,26 - node: color: '#D93CD9FF' id: BrickTileSteelCornerSw @@ -1470,7 +1485,6 @@ entities: 1893: 2,31 2723: 12,13 2854: 26,2 - 5432: 0,26 - node: color: '#DE3A3AFF' id: BrickTileSteelEndE @@ -1497,7 +1511,6 @@ entities: id: BrickTileSteelEndN decals: 3195: 82,49 - 5426: 0,30 6937: 22,0 - node: color: '#00FFFFFF' @@ -1575,6 +1588,13 @@ entities: 5671: 58,31 5695: 57,28 5742: 49,35 + 8825: 58,17 + - node: + color: '#F5F5F5FF' + id: BrickTileSteelInnerNe + decals: + 10578: 18,38 + 10579: 16,38 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe @@ -1590,7 +1610,6 @@ entities: 1501: 45,53 1633: 37,38 1701: 28,38 - 1817: 20,38 1825: 12,38 1885: 9,33 1908: 8,34 @@ -1609,8 +1628,6 @@ entities: 3207: 72,41 3575: 37,23 4568: 9,14 - 5424: 0,26 - 5425: 0,29 6294: 79,66 6333: 74,66 6722: 27,4 @@ -1664,6 +1681,13 @@ entities: 5696: 57,28 5740: 53,36 5741: 49,35 + - node: + color: '#F5F5F5FF' + id: BrickTileSteelInnerNw + decals: + 10577: 18,38 + 10580: 16,38 + 10581: 27,38 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw @@ -1673,8 +1697,6 @@ entities: 1487: 57,53 1536: 46,44 1651: 36,37 - 1700: 26,38 - 1818: 20,38 1824: 12,38 1877: 11,33 1909: 8,34 @@ -1691,8 +1713,6 @@ entities: 3204: 70,35 3205: 70,39 3216: 11,14 - 5423: 3,29 - 5445: 3,26 6292: 79,66 6334: 74,66 6382: 65,53 @@ -1757,6 +1777,7 @@ entities: 5672: 58,31 5698: 57,30 7177: 83,8 + 8826: 58,17 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe @@ -1793,7 +1814,6 @@ entities: 3576: 37,23 4580: 7,13 4814: 32,2 - 5422: 0,29 6733: 27,10 6734: 33,12 6953: 22,-3 @@ -1868,7 +1888,6 @@ entities: 3558: 53,51 4579: 9,13 4813: 32,2 - 5421: 3,29 6732: 32,10 6796: 26,12 6840: 70,51 @@ -1921,7 +1940,6 @@ entities: 3801: 41,16 3868: 48,35 3869: 50,35 - 3908: 58,17 3917: 37,36 4704: 15,9 4709: 15,10 @@ -2243,12 +2261,6 @@ entities: 3203: 69,35 4576: 7,12 5412: 10,26 - 5417: 3,30 - 5418: 3,29 - 5419: 3,28 - 5420: 3,27 - 5439: 0,28 - 5440: 0,27 6289: 81,65 6313: 74,68 6315: 79,68 @@ -2345,6 +2357,13 @@ entities: 7155: 82,8 7157: 81,8 7179: 83,8 + 8827: 59,17 + - node: + color: '#F5F5F5FF' + id: BrickTileSteelLineN + decals: + 10576: 20,38 + 10582: 26,38 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -2473,9 +2492,7 @@ entities: 1780: 12,34 1781: 13,34 1782: 13,34 - 1808: 16,38 1809: 17,38 - 1810: 18,38 1811: 19,38 1812: 19,38 1813: 21,38 @@ -2643,10 +2660,6 @@ entities: 3150: 81,37 3151: 81,37 4567: 8,15 - 5437: 1,29 - 5438: 2,29 - 5443: 1,26 - 5444: 2,26 6295: 80,66 6296: 78,66 6297: 77,66 @@ -2797,6 +2810,7 @@ entities: 7161: 79,8 7162: 78,8 7168: 77,6 + 8828: 59,17 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -3128,10 +3142,6 @@ entities: 3138: 81,37 3139: 81,37 4578: 8,13 - 5433: 1,26 - 5434: 2,26 - 5435: 1,29 - 5436: 2,29 6320: 79,69 6321: 74,69 6329: 74,67 @@ -3563,12 +3573,6 @@ entities: 5356: 70,27 5357: 70,28 5360: 14,21 - 5427: 3,30 - 5428: 0,29 - 5429: 0,28 - 5430: 0,27 - 5441: 3,28 - 5442: 3,27 6304: 69,65 6307: 74,68 6311: 79,68 @@ -4043,6 +4047,7 @@ entities: 6596: 45,-5 6598: 45,-11 7525: 36,-6 + 8831: 62,21 - node: color: '#8C347FFF' id: BrickTileWhiteInnerNe @@ -4305,6 +4310,7 @@ entities: 6801: 33,11 7237: 37,-2 7527: 36,-4 + 8832: 62,21 - node: color: '#8C347FFF' id: BrickTileWhiteInnerSe @@ -4601,7 +4607,6 @@ entities: 5185: 48,9 5538: 62,23 5539: 62,22 - 5540: 62,21 6453: 68,9 6484: 60,2 6485: 60,3 @@ -4870,6 +4875,7 @@ entities: 6808: 47,-5 6809: 48,-5 6810: 49,-5 + 8833: 63,21 - node: color: '#8C347FFF' id: BrickTileWhiteLineN @@ -5105,6 +5111,7 @@ entities: 6806: 48,-7 6807: 49,-7 7235: 38,-2 + 8834: 63,21 - node: color: '#8C347FFF' id: BrickTileWhiteLineS @@ -5744,6 +5751,13 @@ entities: 8347: 76.10399,5.1392717 8348: 76.17343,4.5003834 8349: 75.85399,4.41705 + - node: + cleanable: True + zIndex: -1 + color: '#FFFFFFFF' + id: Dirt + decals: + 10594: 48,-6 - node: color: '#FFFFFFFF' id: Dirt @@ -5910,7 +5924,6 @@ entities: 7488: 25,38 7489: 22,37 7490: 19,36 - 7491: 16,38 7492: 13,36 7493: 12,34 7494: 12,32 @@ -5918,9 +5931,6 @@ entities: 7496: 6,32 7497: 3,33 7498: 5,33 - 7499: 3,29 - 7500: 0,29 - 7501: 0,26 7502: 7,32 7503: 4,33 7504: 7,32 @@ -6014,11 +6024,8 @@ entities: 8779: 22,-39 8780: 25,-43 8781: 22,-44 - 8782: 20,-44 8783: 20,-43 8784: 20,-42 - 8785: 24,-44 - 8786: 24,-44 8787: 25,-42 8788: 22,-42 8789: 19,-42 @@ -6031,6 +6038,1094 @@ entities: 8796: 24,-38 8797: 26,-40 8798: 27,-39 + 8835: 31.386984,60.917038 + 8836: 32.324486,61.120163 + 8837: 33.011986,61.495163 + 8838: 31.668236,62.151413 + 8839: 30.933859,61.823288 + 8840: 30.121359,60.917038 + 8841: 43.318695,44.632866 + 8842: 39.068695,44.882866 + 8843: 36.11557,44.476616 + 8844: 34.99057,42.77349 + 8845: 41.70932,44.67974 + 8846: 34.185287,37.916046 + 8847: 36.138412,40.71292 + 8848: 35.388412,40.99417 + 8849: 46.933075,28.301037 + 8850: 45.35495,28.363537 + 8851: 45,32 + 8852: 47,33 + 8853: 46,34 + 8854: 46,35 + 8855: 47,35 + 8856: 47,30 + 8857: 41,27 + 8858: 40,28 + 8859: 40,27 + 8860: 43,27 + 8861: 40,31 + 8862: 42,31 + 8863: 43,21 + 8864: 43,19 + 8865: 43,17 + 8866: 47,16 + 8867: 39,16 + 8868: 39,20 + 8869: 39,19 + 8870: 47,20 + 8871: 47,19 + 8872: 43,23 + 8873: 46,23 + 8874: 47,24 + 8875: 49,22 + 8876: 53,23 + 8877: 54,24 + 8878: 55,22 + 8879: 56,21 + 8880: 57,22 + 8881: 58,23 + 8882: 58,31 + 8883: 60,31 + 8884: 61,31 + 8885: 59,31 + 8886: 58,31 + 8887: 57,30 + 8888: 56,31 + 8889: 56,32 + 8890: 54,32 + 8891: 55,31 + 8892: 55,32 + 8893: 61,27 + 8894: 60,27 + 8895: 59,27 + 8896: 58,27 + 8897: 57,27 + 8898: 57,27 + 8899: 56,27 + 8900: 57,27 + 8901: 57,28 + 8902: 62,27 + 8903: 57,26 + 9006: 44,3 + 9007: 42,4 + 9008: 44,3 + 9009: 44,3 + 9010: 42,2 + 9011: 43,6 + 9012: 43,8 + 9013: 42,8 + 9014: 41,9 + 9015: 42,10 + 9016: 43,9 + 9017: 42,7 + 9018: 41,7 + 9019: 43,6 + 9020: 43,6 + 9021: 42,4 + 9022: 37,4 + 9023: 36,5 + 9024: 36,4 + 9025: 38,3 + 9026: 37,6 + 9027: 36,6 + 9028: 37,9 + 9029: 36,9 + 9030: 36,9 + 9031: 37,9 + 9032: 37,10 + 9033: 36,10 + 9034: 38,8 + 9035: 38,9 + 9036: 37,7 + 9037: 38,-1 + 9038: 36,0 + 9039: 36,-2 + 9040: 36,-3 + 9041: 35,1 + 9042: 39,0 + 9043: 39,0 + 9044: 40,-3 + 9045: 40,-4 + 9046: 39,-1 + 9047: 36,0 + 9048: 39,0 + 9049: 40,-3 + 9050: 40,-5 + 9051: 39,-2 + 9052: 39,-5 + 9053: 36,-7 + 9054: 35,-6 + 9055: 37,-6 + 9056: 36,-7 + 9057: 40,-8 + 9058: 40,-9 + 9059: 42,-8 + 9060: 39,-8 + 9061: 50,-12 + 9062: 39,-7 + 9063: 41,-9 + 9064: 42,-8 + 9065: 42,-8 + 9066: 45,-8 + 9067: 43,-11 + 9068: 44,-10 + 9069: 45,-10 + 9070: 48,-11 + 9071: 48,-10 + 9072: 49,-11 + 9073: 48,-7 + 9074: 47,-5 + 9075: 48,-5 + 9076: 49,-6 + 9077: 48,-7 + 9078: 47,-6 + 9079: 47,-6 + 9080: 49,-3 + 9081: 47,-3 + 9082: 48,0 + 9083: 48,1 + 9084: 50,0 + 9085: 50,-2 + 9086: 49,-2 + 9087: 50,0 + 9088: 49,1 + 9089: 47,0 + 9090: 49,-3 + 9091: 49,-7 + 9092: 50,-5 + 9094: 45,-6 + 9095: 45,-8 + 9096: 45,-10 + 9097: 49,-10 + 9098: 49,-11 + 9099: 49,-12 + 9100: 47,-12 + 9101: 50,-12 + 9102: 50,-13 + 9103: 49,-13 + 9104: 50,-11 + 9105: 50,-9 + 9106: 52,-8 + 9107: 52,-9 + 9108: 53,-12 + 9109: 51,-14 + 9110: 49,-14 + 9111: 48,-15 + 9112: 47,-15 + 9113: 49,-14 + 9114: 50,-14 + 9115: 46,-14 + 9116: 45,-14 + 9117: 41,-13 + 9118: 41,-11 + 9119: 41,-12 + 9120: 42,-13 + 9121: 44,-14 + 9122: 45,-14 + 9123: 40,-11 + 9124: 38,-12 + 9125: 36,-11 + 9126: 36,-10 + 9127: 35,-9 + 9128: 33,-9 + 9129: 32,-9 + 9130: 32,-8 + 9131: 32,-5 + 9132: 32,-4 + 9133: 33,-3 + 9134: 32,-4 + 9135: 32,-1 + 9136: 33,-9 + 9137: 32,-9 + 9138: 31,-8 + 9139: 30,-7 + 9140: 30,-5 + 9141: 31,-10 + 9142: 30,-12 + 9143: 32,-12 + 9144: 30,-16 + 9145: 31,-15 + 9146: 30,-15 + 9147: 29,-16 + 9148: 29,-17 + 9149: 32,-19 + 9150: 29,-20 + 9151: 28,-20 + 9152: 18,-20 + 9153: 16,-20 + 9154: 15,-19 + 9155: 14,-19 + 9156: 13,-20 + 9157: 12,-20 + 9158: 11,-19 + 9159: 11,-16 + 9160: 11,-16 + 9161: 11,-14 + 9162: 10,-11 + 9163: 10,-10 + 9164: 9,-10 + 9165: 10,-8 + 9166: 10,-8 + 9167: 11,-7 + 9168: 11,-5 + 9169: 11,-4 + 9170: 11,-2 + 9171: 11,-1 + 9172: 11,1 + 9173: 13,1 + 9174: 14,1 + 9175: 17,1 + 9176: 17,1 + 9177: 17,2 + 9178: 9,2 + 9179: 9,2 + 9180: 11,3 + 9181: 11,6 + 9182: 11,7 + 9183: 8,6 + 9184: 5,7 + 9185: 5,8 + 9186: 7,7 + 9187: 3,7 + 9188: 3,7 + 9189: 3,8 + 9190: 2,6 + 9191: 7,7 + 9192: 8,8 + 9193: 3,8 + 9194: 2,7 + 9195: 2,5 + 9196: 1,8 + 9197: 1,9 + 9198: 2,12 + 9199: 1,13 + 9200: 2,14 + 9201: 5,13 + 9202: 5,14 + 9203: 4,13 + 9204: 3,12 + 9205: 1,11 + 9206: 2,13 + 9207: 4,13 + 9208: 5,2 + 9209: 4,2 + 9210: 6,3 + 9211: 6,2 + 9212: 6,1 + 9213: 2,2 + 9214: 1,2 + 9215: 1,3 + 9216: 9,1 + 9217: 6,2 + 9218: 5,2 + 9219: 0,5 + 9220: -1,8 + 9221: -1,8 + 9222: -1,6 + 9223: -1,9 + 9224: 14,9 + 9225: 13,8 + 9226: 13,10 + 9227: 17,10 + 9228: 17,8 + 9229: 18,10 + 9230: 17,10 + 9231: 17,8 + 9232: 14,9 + 9233: 14,9 + 9234: 15,8 + 9235: 12,12 + 9236: 8,18 + 9237: 5,18 + 9238: 5,17 + 9239: 4,16 + 9240: 4,18 + 9241: 3,18 + 9242: 4,21 + 9243: 2,22 + 9244: 0,22 + 9245: 0,20 + 9246: 1,20 + 9247: 2,22 + 9248: 1,23 + 9249: 14,13 + 9250: 11,14 + 9251: 11,15 + 9252: 12,19 + 9253: 12,21 + 9254: 12,24 + 9255: 14,26 + 9256: 12,28 + 9257: 12,28 + 9258: 19,27 + 9259: 20,25 + 9260: 21,26 + 9261: 22,29 + 9262: 26,28 + 9263: 28,27 + 9264: 28,25 + 9265: 30,25 + 9266: 28,28 + 9267: 27,26 + 9268: 28,25 + 9269: 14,24 + 9270: 15,26 + 9271: 15,24 + 9272: 16,24 + 9273: 21,26 + 9274: 22,27 + 9275: 23,28 + 9276: 25,28 + 9277: 27,26 + 9278: 29,25 + 9279: 30,24 + 9280: 32,25 + 9281: 32,25 + 9282: 33,24 + 9283: 29,21 + 9284: 28,22 + 9285: 28,21 + 9286: 26,21 + 9287: 25,20 + 9288: 24,21 + 9289: 26,22 + 9290: 31,21 + 9291: 33,21 + 9292: 31,21 + 9293: 31,16 + 9294: 30,16 + 9295: 29,16 + 9296: 31,13 + 9297: 29,13 + 9298: 27,11 + 9299: 30,11 + 9300: 32,10 + 9301: 29,12 + 9302: 27,13 + 9303: 25,13 + 9304: 26,12 + 9305: 31,11 + 9306: 33,9 + 9307: 31,5 + 9308: 48,-2 + 9309: 48,-1 + 9310: 55,-5 + 9311: 53,-4 + 9312: 55,-5 + 9313: 57,-5 + 9314: 56,-2 + 9315: 55,-3 + 9316: 54,-3 + 9317: 53,-4 + 9318: 56,-4 + 9319: 56,-2 + 9320: 55,-1 + 9321: 55,0 + 9322: 55,-2 + 9323: 56,-2 + 9324: 56,0 + 9325: 52,-1 + 9326: 53,0 + 9327: 53,0 + 9328: 52,0 + 9329: 53,-1 + 9330: 53,-2 + 9331: 53,-3 + 9332: 52,-3 + 9333: 52,-4 + 9334: 52,-5 + 9335: 52,-5 + 9336: 53,-6 + 9337: 54,-6 + 9338: 55,-6 + 9339: 56,-6 + 9340: 57,-6 + 9341: 57,-5 + 9342: 56,-5 + 9343: 56,-5 + 9344: 55,-4 + 9345: 54,-5 + 9346: 54,-5 + 9347: 53,-4 + 9349: 55,-4 + 9350: 57,-3 + 9351: 57,-3 + 9352: 56,-3 + 9353: 56,-3 + 9354: 53,-3 + 9355: 52,-4 + 9356: 52,-5 + 9357: 56,-5 + 9358: 56,-5 + 9359: 54,-5 + 9360: 54,-3 + 9362: 53,-4 + 9363: 53,-2 + 9364: 53,-1 + 9365: 52,-1 + 9366: 52,0 + 9367: 53,0 + 9368: 56,0 + 9369: 56,-1 + 9370: 55,-1 + 9371: 55,-2 + 9372: 56,-3 + 9373: 56,-4 + 9374: 55,-5 + 9375: 52,-6 + 9376: 55,-6 + 9377: 56,-6 + 9378: 57,-5 + 9379: 57,-6 + 9380: 54,-5 + 9381: 52,-5 + 9382: 53,-5 + 9383: 53,-5 + 9384: 53,-5 + 9385: 53,-5 + 9386: 55,-3 + 9387: 55,-3 + 9388: 53,-3 + 9389: 54,2 + 9390: 52,3 + 9391: 48,4 + 9392: 46,3 + 9393: 53,4 + 9394: 54,3 + 9395: 53,2 + 9396: 53,6 + 9397: 56,7 + 9398: 58,7 + 9399: 54,7 + 9400: 54,8 + 9401: 58,7 + 9402: 59,7 + 9403: 59,3 + 9404: 59,2 + 9405: 57,3 + 9406: 60,3 + 9407: 59,2 + 9408: 45,8 + 9409: 47,7 + 9410: 47,6 + 9411: 48,8 + 9412: 47,9 + 9413: 46,7 + 9414: 47,7 + 9415: 48,8 + 9416: 47,6 + 9417: 45,-1 + 9418: 44,-2 + 9419: 44,-3 + 9420: 44,-4 + 9421: 44,-5 + 9422: 44,-1 + 9423: 44,1 + 9424: 43,0 + 9425: 44,-1 + 9426: 43,-2 + 9427: 40,-1 + 9428: 40,1 + 9429: 24,-13 + 9430: 21,-10 + 9431: 22,-8 + 9432: 23,-8 + 9433: 23,-11 + 9434: 22,-12 + 9435: 22,-13 + 9436: 23,-12 + 9437: 19,-12 + 9438: 18,-12 + 9439: 19,-8 + 9440: 19,-8 + 9441: 22,-8 + 9442: 21,-4 + 9443: 23,-2 + 9444: 23,0 + 9445: 24,-1 + 9446: 23,-4 + 9447: 22,-5 + 9448: 20,-1 + 9449: 20,1 + 9450: 20,2 + 9451: 24,-2 + 9452: 23,-3 + 9453: 22,-4 + 9454: 17,-3 + 9455: 17,-4 + 9456: 16,-3 + 9457: 16,-3 + 9458: 17,4 + 9459: 15,5 + 9460: 20,5 + 9461: 21,5 + 9462: 21,4 + 9463: 21,7 + 9464: 23,9 + 9465: 22,8 + 9466: 21,8 + 9467: 24,8 + 9468: 27,7 + 9469: 26,5 + 9470: 28,1 + 9471: 31,3 + 9472: 32,8 + 9473: 29,11 + 9474: 25,13 + 9475: 21,9 + 9476: 20,-16 + 9477: 17,-16 + 9478: 16,-17 + 9479: 17,-15 + 9480: 23,-16 + 9481: 21,-17 + 9482: 27,-16 + 9483: 27,-15 + 9484: 23,-24 + 9485: 23,-23 + 9680: 26,44 + 9681: 25,45 + 9682: 27,49 + 9683: 24,49 + 9684: 27,42 + 9685: 28,41 + 9686: 24,44 + 9687: 30,49 + 9688: 32,50 + 9689: 30,50 + 9690: 27,50 + 9691: 25,50 + 9692: 23,50 + 9693: 21,50 + 9694: 20,50 + 9695: 26,50 + 9696: 28,50 + 9697: 30,50 + 9698: 23,49 + 9699: 22,48 + 9700: 22,47 + 9701: 14,43 + 9702: 16,42 + 9703: 15,40 + 9704: 14,40 + 9705: 16,40 + 9706: 40,36 + 9707: 39,34 + 9708: 39,35 + 9709: 42,35 + 9710: 42,35 + 9711: 43,35 + 9712: 43,34 + 9713: 41,38 + 9714: 40,38 + 9715: 42,38 + 9716: 45,39 + 9717: 47,39 + 9718: 49,39 + 9719: 49,41 + 9720: 49,44 + 9721: 49,42 + 9722: 56,45 + 9723: 54,45 + 9724: 61,45 + 9725: 64,45 + 9726: 65,44 + 9727: 66,44 + 9728: 67,44 + 9729: 63,38 + 9730: 63,36 + 9731: 63,35 + 9732: 66,34 + 9733: 68,34 + 9734: 67,32 + 9735: 67,32 + 9736: 65,35 + 9737: 67,35 + 9738: 68,32 + 9739: 68,21 + 9740: 67,21 + 9741: 66,21 + 9742: 68,16 + 9743: 61,16 + 9744: 62,9 + 9745: 62,9 + 9746: 57,10 + 9747: 53,10 + 9748: 57,10 + 9749: 59,10 + 9750: 62,4 + 9751: 62,0 + 9752: 61,-1 + 9753: 60,-1 + 9754: 58,10 + 9755: 61,8 + 9756: 70,3 + 9757: 85,11 + 9758: 86,10 + 9759: 89,11 + 9760: 90,13 + 9761: 89,14 + 9762: 90,16 + 9763: 90,18 + 9764: 89,17 + 9765: 90,15 + 9766: 92,16 + 9767: 93,17 + 9768: 96,16 + 9769: 96,17 + 9770: 90,23 + 9771: 86,24 + 9772: 86,23 + 9773: 83,23 + 9774: 83,24 + 9775: 81,24 + 9776: 78,23 + 9777: 76,23 + 9778: 79,24 + 9779: 68,1 + 9780: 57,-8 + 9781: 57,-8 + 9782: 56,-8 + 9783: 52,-8 + 9784: 52,-9 + 9785: 11,-4 + 9936: 70,66 + 9937: 70,64 + 9938: 74,65 + 9939: 79,65 + 9940: 81,64 + 9941: 81,62 + 9942: 81,60 + 9943: 81,58 + 9944: 82,57 + 9945: 80,55 + 9946: 78,55 + 9947: 73,55 + 9948: 71,55 + 9949: 70,57 + 9950: 70,56 + 9951: 71,55 + 9952: 74,56 + 9953: 75,59 + 9954: 75,59 + 9955: 76,59 + 9956: 76,60 + 9957: 77,59 + 9958: 74,60 + 9959: 75,61 + 9960: 77,62 + 9961: 70,60 + 9962: 70,61 + 9963: 69,61 + 9964: 69,59 + 9965: 70,64 + 9966: 72,65 + 9967: 73,65 + 9968: 74,54 + 9969: 75,55 + 9970: 77,54 + 9971: 77,53 + 9972: 75,52 + 9973: 77,52 + 9974: 78,52 + 9975: 82,58 + 9976: 81,60 + 9977: 81,63 + 9978: 83,63 + 9979: 80,65 + 9980: 85,63 + 9981: 65,56 + 9982: 63,56 + 9983: 65,57 + 9984: 64,57 + 9985: 66,56 + 9986: 66,55 + 9987: 60,56 + 9988: 60,55 + 9989: 60,56 + 9990: 60,58 + 9991: 63,64 + 9992: 62,64 + 9993: 62,63 + 9994: 65,62 + 9995: 65,61 + 9996: 65,61 + 9997: 56,59 + 9998: 56,60 + 9999: 57,60 + 10000: 57,58 + 10001: 56,64 + 10002: 56,65 + 10003: 56,66 + 10004: 57,63 + 10005: 56,69 + 10006: 56,69 + 10007: 56,71 + 10008: 56,72 + 10009: 57,74 + 10010: 47,72 + 10011: 46,70 + 10012: 47,70 + 10013: 47,68 + 10014: 47,71 + 10015: 47,73 + 10016: 47,74 + 10017: 48,73 + 10018: 41,71 + 10019: 42,72 + 10020: 43,70 + 10021: 42,70 + 10022: 43,69 + 10023: 43,69 + 10024: 43,71 + 10025: 43,75 + 10026: 43,76 + 10027: 42,76 + 10028: 43,74 + 10029: 43,74 + 10030: 43,75 + 10031: 48,77 + 10032: 46,78 + 10033: 46,77 + 10034: 47,77 + 10035: 48,80 + 10036: 47,77 + 10037: 47,76 + 10038: 47,77 + 10039: 46,82 + 10040: 46,84 + 10041: 46,85 + 10042: 50,84 + 10043: 50,83 + 10044: 50,81 + 10045: 53,81 + 10046: 52,82 + 10047: 50,85 + 10048: 52,85 + 10049: 53,84 + 10050: 51,86 + 10051: 50,85 + 10052: 46,84 + 10053: 46,82 + 10054: 46,82 + 10055: 45,82 + 10056: 45,81 + 10057: 44,65 + 10058: 44,65 + 10059: 43,64 + 10060: 43,63 + 10061: 44,63 + 10062: 41,63 + 10063: 39,63 + 10064: 40,61 + 10065: 40,60 + 10066: 43,60 + 10067: 44,60 + 10068: 44,60 + 10069: 48,60 + 10070: 48,62 + 10071: 47,63 + 10072: 48,64 + 10073: 48,64 + 10074: 47,60 + 10075: 51,59 + 10076: 53,59 + 10077: 54,59 + 10078: 54,59 + 10079: 54,62 + 10080: 54,64 + 10081: 54,65 + 10082: 51,65 + 10083: 51,65 + 10084: 50,63 + 10085: 50,62 + 10086: 50,60 + 10087: 48,55 + 10088: 47,55 + 10089: 50,56 + 10090: 51,55 + 10091: 49,55 + 10092: 54,55 + 10093: 54,55 + 10094: 55,56 + 10095: 53,57 + 10096: 53,55 + 10097: 54,55 + 10098: 55,55 + 10099: 55,58 + 10100: 53,57 + 10101: 54,55 + 10102: 55,55 + 10103: 55,56 + 10104: 54,56 + 10105: 53,55 + 10106: 53,55 + 10107: 49,47 + 10108: 49,48 + 10109: 49,49 + 10110: 50,49 + 10111: 51,47 + 10112: 51,47 + 10113: 50,47 + 10114: 50,48 + 10115: 51,49 + 10116: 51,48 + 10117: 50,49 + 10118: 49,49 + 10119: 52,48 + 10120: 52,47 + 10121: 53,47 + 10122: 53,48 + 10123: 54,47 + 10124: 54,47 + 10125: 53,49 + 10126: 53,48 + 10127: 54,48 + 10128: 54,47 + 10129: 52,47 + 10130: 38,56 + 10131: 39,57 + 10132: 40,57 + 10133: 41,55 + 10134: 43,55 + 10135: 45,55 + 10136: 42,55 + 10137: 40,56 + 10138: 38,57 + 10139: 36,57 + 10140: 36,59 + 10141: 36,61 + 10142: 37,62 + 10143: 37,64 + 10144: 36,65 + 10145: 35,66 + 10146: 34,66 + 10147: 32,67 + 10148: 32,66 + 10149: 30,67 + 10150: 31,67 + 10151: 29,67 + 10152: 28,67 + 10153: 28,66 + 10154: 25,66 + 10155: 24,66 + 10156: 22,67 + 10157: 23,65 + 10158: 32,64 + 10159: 30,64 + 10160: 30,64 + 10161: 21,62 + 10162: 21,62 + 10163: 22,62 + 10164: 17,62 + 10165: 18,62 + 10166: 19,62 + 10167: 17,62 + 10168: 18,65 + 10169: 17,66 + 10170: 20,66 + 10171: 21,66 + 10172: 23,66 + 10173: 23,67 + 10174: 23,67 + 10175: 13,62 + 10176: 14,62 + 10177: 15,62 + 10178: 16,62 + 10179: 15,61 + 10180: 12,63 + 10181: 12,65 + 10182: 13,70 + 10183: 13,69 + 10184: 13,68 + 10185: 12,72 + 10186: 12,73 + 10187: 13,74 + 10188: 13,76 + 10189: 13,75 + 10190: 14,74 + 10191: 12,76 + 10192: 12,78 + 10193: 13,78 + 10194: 13,79 + 10195: 12,79 + 10196: 14,81 + 10197: 15,80 + 10198: 14,79 + 10199: 13,80 + 10200: 14,80 + 10201: 13,78 + 10202: 13,77 + 10203: 14,76 + 10204: 10,59 + 10205: 10,58 + 10206: 12,59 + 10207: 12,58 + 10208: 13,57 + 10209: 13,56 + 10210: 11,54 + 10211: 12,54 + 10212: 12,52 + 10213: 12,50 + 10214: 12,49 + 10215: 12,48 + 10216: 12,46 + 10217: 12,44 + 10218: 12,42 + 10219: 12,40 + 10220: 10,42 + 10221: 9,41 + 10222: 10,44 + 10223: 10,42 + 10224: 10,41 + 10225: 10,40 + 10226: 12,40 + 10227: 12,40 + 10432: 74,16 + 10433: 75,18 + 10434: 75,18 + 10435: 77,17 + 10436: 79,17 + 10437: 81,17 + 10438: 82,17 + 10439: 83,17 + 10440: 84,17 + 10441: 85,18 + 10442: 82,17 + 10443: 80,17 + 10444: 80,17 + 10445: 80,18 + 10446: 79,18 + 10447: 78,19 + 10448: 78,17 + 10449: 78,15 + 10450: 78,15 + 10451: 79,15 + 10452: 80,17 + 10453: 81,17 + 10454: 83,17 + 10455: 85,17 + 10456: 85,17 + 10457: 83,16 + 10458: 83,16 + 10459: 84,15 + 10460: 83,16 + 10461: 81,17 + 10462: 80,17 + 10463: 80,16 + 10464: 79,19 + 10465: 79,19 + 10466: 79,19 + 10467: 79,18 + 10468: 80,17 + 10469: 83,17 + 10470: 81,6 + 10471: 79,7 + 10472: 80,6 + 10473: 80,6 + 10474: 80,7 + 10475: 83,6 + 10476: 83,6 + 10477: 83,6 + 10478: 84,6 + 10479: 83,7 + 10480: 83,7 + 10481: 83,8 + 10482: 81,8 + 10483: 81,8 + 10484: 80,8 + 10485: 79,8 + 10486: 78,8 + 10487: 77,8 + 10488: 76,7 + 10489: 76,7 + 10490: 76,6 + 10491: 78,6 + 10492: 76,6 + 10493: 76,8 + 10494: 75,8 + 10495: 75,6 + 10496: 77,6 + 10497: 78,6 + 10498: 77,7 + 10499: 75,7 + 10500: 78,7 + 10501: 78,7 + 10502: 75,8 + 10503: 76,8 + 10504: 77,9 + 10505: 77,9 + 10506: 76,9 + 10507: 84,8 + 10508: 82,8 + 10509: 92,21 + 10510: 92,20 + 10511: 93,19 + 10512: 93,19 + 10513: 93,21 + 10514: 92,19 + 10515: 93,20 + 10516: 96,16 + 10517: 94,16 + 10518: 94,16 + 10519: 91,16 + 10520: 90,15 + 10521: 89,16 + 10522: 89,16 + 10523: 68,17 + 10524: 67,18 + 10525: 67,19 + 10526: 68,21 + 10527: 50,32 + 10528: 49,31 + 10529: 52,31 + 10530: 52,30 + 10531: 50,26 + 10532: 49,27 + 10533: 49,26 + 10534: 50,28 + 10535: 53,27 + 10536: 54,27 + 10537: 53,26 + 10538: 52,27 + 10539: 40,41 + 10540: 42,41 + 10541: 40,41 + 10542: 42,41 + 10543: 43,41 + 10544: 41,40 + 10545: 40,41 + 10546: 41,41 + 10547: 41,41 + 10548: 41,41 + 10549: 41,41 + 10550: 41,41 + 10551: 41,41 + 10552: 40,41 + 10553: 40,41 + 10554: 40,41 + 10555: 39,41 + 10556: 39,41 + 10557: 39,41 + 10558: 42,40 + 10559: 41,40 + 10560: 40,40 + 10561: 39,40 + 10562: 42,42 + 10563: 41,42 + 10564: 40,42 + 10565: 39,42 + 10566: 1,16 + 10567: 0,16 + 10568: 0,17 + 10569: 1,17 + 10570: -9,21 + 10571: -9,20 + 10572: -8,22 + 10573: -7,21 + 10574: -8,20 + 10575: -7,20 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -6121,6 +7216,494 @@ entities: 7287: 26,-12 8362: 31,54 8366: 29,58 + 8904: 57,23 + 8905: 54,21 + 8906: 51,22 + 8907: 51,23 + 8908: 48,22 + 8909: 44,22 + 8910: 43,21 + 8911: 43,18 + 8912: 43,16 + 8913: 43,17 + 8914: 43,17 + 8915: 43,17 + 8916: 40,16 + 8917: 45,16 + 8918: 46,16 + 8919: 47,16 + 8920: 39,19 + 8921: 39,19 + 8922: 39,19 + 8923: 39,22 + 8924: 39,23 + 8925: 39,23 + 8926: 47,19 + 8927: 46,19 + 8928: 47,20 + 8929: 45,24 + 8930: 47,23 + 8931: 48,23 + 8932: 46,28 + 8933: 47,29 + 8934: 46,30 + 8935: 46,31 + 8936: 47,35 + 8937: 45,34 + 8938: 47,33 + 8939: 46,32 + 8940: 40,31 + 8941: 42,31 + 8942: 42,31 + 8943: 40,31 + 8944: 41,30 + 8945: 40,27 + 8946: 40,26 + 8947: 42,27 + 8948: 42,28 + 8949: 43,27 + 8950: 43,26 + 8951: 62,21 + 8952: 60,21 + 8953: 61,23 + 8954: 57,22 + 8955: 55,21 + 8956: 53,20 + 8957: 50,20 + 8958: 51,17 + 8959: 50,16 + 8960: 50,16 + 8961: 51,16 + 8962: 51,17 + 8963: 51,18 + 8964: 51,18 + 8965: 50,18 + 8966: 49,18 + 8978: 58,22 + 8979: 64,20 + 8980: 64,21 + 8981: 61,16 + 8982: 62,18 + 8983: 61,18 + 8984: 63,17 + 9486: 24,-24 + 9487: 24,-24 + 9488: 24,-22 + 9489: 49,4 + 9490: 44,4 + 9491: 41,3 + 9492: 54,4 + 9493: 52,3 + 9494: 42,9 + 9495: 41,8 + 9496: 41,6 + 9497: 35,10 + 9498: 37,9 + 9499: 37,4 + 9500: 36,5 + 9501: 37,6 + 9502: 37,3 + 9503: 36,0 + 9504: 36,-2 + 9505: 40,-4 + 9506: 40,-1 + 9507: 40,0 + 9508: 44,-5 + 9509: 45,-7 + 9510: 44,-9 + 9511: 45,-10 + 9512: 47,-11 + 9513: 50,-11 + 9514: 48,-7 + 9515: 47,-6 + 9516: 49,-5 + 9517: 45,-5 + 9518: 44,-2 + 9519: 45,1 + 9520: 48,-1 + 9521: 49,-1 + 9522: 49,-2 + 9523: 47,-3 + 9524: 53,-1 + 9525: 53,-5 + 9526: 55,-5 + 9527: 55,-4 + 9529: 56,-5 + 9530: 57,-5 + 9531: 56,-5 + 9532: 55,-5 + 9533: 56,-3 + 9534: 55,-4 + 9535: 55,-4 + 9536: 55,-4 + 9537: 55,-4 + 9538: 53,4 + 9539: 53,4 + 9540: 53,4 + 9541: 49,3 + 9542: 49,3 + 9543: 48,3 + 9544: 48,3 + 9545: 47,4 + 9546: 46,4 + 9547: 47,6 + 9548: 46,9 + 9549: 46,10 + 9550: 46,9 + 9551: 46,8 + 9552: 41,9 + 9553: 41,9 + 9554: 41,9 + 9555: 41,9 + 9556: 35,9 + 9557: 35,9 + 9558: 35,6 + 9559: 35,4 + 9560: 41,3 + 9561: 40,4 + 9562: 42,4 + 9563: 43,3 + 9564: 43,4 + 9565: 42,3 + 9566: 40,3 + 9567: 45,3 + 9568: 45,4 + 9569: 47,3 + 9570: 60,3 + 9571: 60,3 + 9572: 59,3 + 9573: 59,2 + 9574: 64,8 + 9575: 64,9 + 9576: 67,8 + 9577: 68,8 + 9578: 68,9 + 9579: 65,8 + 9580: 64,10 + 9581: 64,6 + 9582: 65,6 + 9583: 65,5 + 9584: 64,5 + 9585: 64,6 + 9586: 65,6 + 9587: 65,5 + 9588: 64,5 + 9589: 65,6 + 9590: 65,5 + 9591: 64,5 + 9592: 64,6 + 9593: 65,6 + 9594: 65,5 + 9595: 64,5 + 9596: 64,6 + 9597: 68,12 + 9598: 28,27 + 9599: 28,25 + 9600: 27,24 + 9601: 27,27 + 9602: 26,28 + 9603: 23,28 + 9604: 20,26 + 9605: 20,25 + 9606: 20,24 + 9607: 21,26 + 9608: 20,28 + 9609: 22,28 + 9610: 22,25 + 9611: 22,24 + 9612: 29,25 + 9613: 29,24 + 9614: 29,21 + 9615: 15,25 + 9616: 18,26 + 9617: 19,25 + 9618: 11,25 + 9619: 13,25 + 9620: 13,21 + 9621: 11,21 + 9622: 3,29 + 9623: 1,29 + 9624: 3,31 + 9625: 4,33 + 9626: 5,32 + 9627: 7,32 + 9628: 8,33 + 9629: 4,33 + 9630: 3,32 + 9631: 2,31 + 9632: 1,11 + 9633: 3,13 + 9634: 4,14 + 9635: 5,14 + 9636: 2,12 + 9637: 2,6 + 9638: 3,7 + 9639: 6,7 + 9640: 7,7 + 9641: 8,6 + 9642: 8,8 + 9643: 8,6 + 9644: 9,5 + 9645: 6,6 + 9646: 4,7 + 9647: 3,6 + 9648: 1,7 + 9649: 1,8 + 9650: -1,6 + 9651: 3,7 + 9652: 3,5 + 9653: 6,7 + 9654: 6,8 + 9655: 4,7 + 9656: 5,6 + 9657: 7,9 + 9658: 8,10 + 9659: 9,10 + 9660: 9,9 + 9661: 9,13 + 9662: 8,14 + 9663: 8,14 + 9664: 6,2 + 9665: 6,3 + 9666: 5,2 + 9667: 21,0 + 9668: 23,-2 + 9669: 24,-1 + 9670: 24,5 + 9671: 23,4 + 9672: 26,4 + 9673: 26,6 + 9674: 26,9 + 9675: 24,12 + 9676: 24,14 + 9677: 25,14 + 9678: 28,14 + 9679: 30,11 + 9786: 10,3 + 9787: 9,2 + 9788: 13,1 + 9789: 17,1 + 9790: 16,1 + 9791: 11,7 + 9792: 11,6 + 9793: 11,-4 + 9794: 11,-3 + 9795: 11,-15 + 9796: 11,-15 + 9797: 16,-19 + 9798: 16,-19 + 9799: 20,-19 + 9800: 20,-19 + 9801: 29,-17 + 9802: 29,-15 + 9803: 27,-11 + 9804: 28,-11 + 9805: 28,-12 + 9806: 26,-9 + 9807: 26,-8 + 9808: 30,-13 + 9809: 30,-13 + 9810: 30,-7 + 9811: 30,-7 + 9812: 33,-4 + 9813: 33,-4 + 9814: 32,0 + 9815: 32,0 + 9816: 36,-10 + 9817: 37,-12 + 9818: 37,-12 + 9819: 36,-7 + 9820: 36,-6 + 9821: 36,-6 + 9822: 48,-14 + 9823: 50,-14 + 9824: 52,-14 + 9825: 53,-12 + 9826: 52,-9 + 9827: 54,-9 + 9828: 57,-9 + 9829: 58,-8 + 9830: 59,-7 + 9831: 59,-5 + 9832: 59,-5 + 9833: 59,-5 + 9834: 62,-1 + 9835: 62,1 + 9836: 62,1 + 9837: 62,1 + 9838: 62,1 + 9839: 62,1 + 9840: 62,1 + 9841: 62,1 + 9842: 62,1 + 9843: 62,1 + 9844: 62,3 + 9845: 62,3 + 9846: 62,3 + 9847: 62,7 + 9848: 62,8 + 9849: 62,9 + 9850: 61,9 + 9851: 58,10 + 9852: 52,10 + 9853: 52,10 + 9854: 51,10 + 9855: 50,9 + 9856: 50,9 + 9857: 50,10 + 9858: 68,4 + 9859: 70,4 + 9860: 68,4 + 9861: 70,8 + 9862: 70,9 + 9863: 70,7 + 9864: 71,7 + 9865: 72,9 + 9866: 73,7 + 9867: 81,10 + 9868: 82,10 + 9869: 83,10 + 9870: 84,10 + 9871: 81,24 + 9872: 82,24 + 9873: 81,24 + 9874: 75,23 + 9875: 74,23 + 9876: 75,23 + 9877: 75,37 + 9878: 76,37 + 9879: 80,37 + 9880: 81,38 + 9881: 80,36 + 9882: 83,39 + 9883: 82,41 + 9884: 81,41 + 9885: 81,40 + 9886: 82,43 + 9887: 82,46 + 9888: 81,47 + 9889: 81,48 + 9890: 83,48 + 9891: 77,53 + 9892: 75,53 + 9893: 78,53 + 9894: 77,52 + 9895: 75,55 + 9896: 72,55 + 9897: 71,56 + 9898: 70,55 + 9899: 71,57 + 9900: 71,58 + 9901: 70,60 + 9902: 69,60 + 9903: 70,63 + 9904: 70,65 + 9905: 72,65 + 9906: 71,64 + 9907: 70,64 + 9908: 76,65 + 9909: 77,65 + 9910: 79,65 + 9911: 81,64 + 9912: 81,63 + 9913: 81,62 + 9914: 82,59 + 9915: 82,57 + 9916: 80,56 + 9917: 80,55 + 9918: 82,56 + 9919: 77,55 + 9920: 82,55 + 9921: 80,56 + 9922: 81,59 + 9923: 77,59 + 9924: 76,59 + 9925: 78,61 + 9926: 75,62 + 9927: 75,59 + 9928: 76,61 + 9929: 76,61 + 9930: 82,63 + 9931: 86,63 + 9932: 85,57 + 9933: 86,57 + 9934: 79,68 + 9935: 74,68 + 10228: 12,52 + 10229: 12,53 + 10230: 12,46 + 10360: 39,61 + 10361: 40,60 + 10362: 41,60 + 10363: 42,60 + 10364: 40,62 + 10365: 41,63 + 10366: 44,62 + 10367: 44,62 + 10368: 43,60 + 10369: 45,60 + 10370: 45,60 + 10371: 39,63 + 10372: 40,61 + 10373: 40,60 + 10374: 40,60 + 10375: 47,60 + 10376: 47,63 + 10377: 47,64 + 10378: 51,65 + 10379: 53,65 + 10380: 53,65 + 10381: 54,63 + 10382: 49,68 + 10383: 46,70 + 10384: 47,69 + 10385: 47,71 + 10386: 47,72 + 10387: 51,72 + 10388: 51,73 + 10389: 54,72 + 10390: 52,72 + 10391: 52,72 + 10392: 53,72 + 10393: 53,71 + 10394: 50,72 + 10395: 50,72 + 10396: 47,71 + 10397: 47,71 + 10398: 44,71 + 10399: 43,70 + 10400: 43,72 + 10401: 42,75 + 10402: 42,76 + 10403: 43,76 + 10404: 43,74 + 10405: 43,74 + 10406: 47,77 + 10407: 47,77 + 10408: 47,79 + 10409: 48,79 + 10410: 48,78 + 10411: 51,82 + 10412: 51,82 + 10413: 50,84 + 10414: 49,85 + 10415: 49,83 + 10416: 49,82 + 10417: 54,81 + 10418: 54,82 + 10419: 57,81 + 10420: 57,82 + 10421: 57,83 + 10422: 57,82 + 10423: 51,86 + 10424: 50,86 + 10425: 48,85 + 10426: 47,85 + 10427: 75,17 + 10428: 75,16 + 10429: 74,17 + 10430: 74,17 + 10431: 74,17 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile @@ -6192,6 +7775,9 @@ entities: 8808: 18,-40 8809: 18,-40 8810: 20,-38 + 8977: 58,22 + 10231: 12,47 + 10232: 12,47 - node: cleanable: True color: '#FF5C5CFF' @@ -6378,10 +7964,137 @@ entities: 8813: 25,-43 8814: 25,-44 8815: 22,-44 - 8816: 20,-44 8817: 19,-44 8818: 19,-43 8819: 19,-42 + 8976: 58,22 + 10233: 11,61 + 10234: 13,63 + 10235: 13,63 + 10236: 13,63 + 10237: 20,62 + 10238: 21,62 + 10239: 21,60 + 10240: 22,61 + 10241: 23,61 + 10242: 22,57 + 10243: 22,58 + 10244: 23,67 + 10245: 20,66 + 10246: 21,66 + 10247: 21,66 + 10248: 26,66 + 10249: 27,66 + 10250: 27,66 + 10251: 29,67 + 10252: 29,67 + 10253: 29,67 + 10254: 30,67 + 10255: 33,67 + 10256: 34,67 + 10257: 33,66 + 10258: 35,65 + 10259: 35,66 + 10260: 36,66 + 10261: 36,64 + 10262: 33,63 + 10263: 31,63 + 10264: 31,63 + 10265: 33,64 + 10266: 34,62 + 10267: 34,61 + 10268: 36,60 + 10269: 35,58 + 10270: 38,57 + 10271: 40,56 + 10272: 44,55 + 10273: 43,55 + 10274: 43,55 + 10275: 44,55 + 10276: 49,56 + 10277: 48,56 + 10278: 48,57 + 10279: 50,56 + 10280: 48,60 + 10281: 48,61 + 10282: 48,64 + 10283: 48,66 + 10284: 47,65 + 10285: 47,63 + 10286: 47,61 + 10287: 52,59 + 10288: 52,59 + 10289: 53,60 + 10290: 54,63 + 10291: 54,66 + 10292: 51,65 + 10293: 50,64 + 10294: 50,61 + 10295: 53,60 + 10296: 47,69 + 10297: 47,71 + 10298: 47,73 + 10299: 48,72 + 10300: 47,77 + 10301: 46,79 + 10302: 48,80 + 10303: 48,80 + 10304: 48,78 + 10305: 47,77 + 10306: 48,77 + 10307: 50,82 + 10308: 50,81 + 10309: 48,82 + 10310: 46,82 + 10311: 45,82 + 10312: 46,84 + 10313: 46,85 + 10314: 47,81 + 10315: 45,81 + 10316: 42,81 + 10317: 41,81 + 10318: 40,82 + 10319: 39,79 + 10320: 39,79 + 10321: 38,80 + 10322: 36,82 + 10323: 34,80 + 10324: 37,80 + 10325: 35,82 + 10326: 35,82 + 10327: 37,81 + 10328: 36,79 + 10329: 37,77 + 10330: 33,76 + 10331: 36,73 + 10332: 37,72 + 10333: 35,71 + 10334: 35,69 + 10335: 34,70 + 10336: 32,67 + 10337: 34,66 + 10338: 35,65 + 10339: 36,66 + 10340: 44,66 + 10341: 43,65 + 10342: 43,63 + 10343: 44,63 + 10344: 40,62 + 10345: 39,61 + 10346: 42,60 + 10347: 44,61 + 10348: 42,62 + 10349: 39,63 + 10350: 40,63 + 10351: 40,62 + 10352: 40,61 + 10353: 43,61 + 10354: 43,60 + 10355: 41,59 + 10356: 43,59 + 10357: 44,60 + 10358: 45,60 + 10359: 31,66 - node: color: '#FFFFFFFF' id: DirtMedium @@ -6589,16 +8302,20 @@ entities: 8822: 19,-38 8823: 21,-38 8824: 19,-39 + 8967: 52,18 + 8968: 50,18 + 8969: 49,16 + 8970: 57,17 + 8971: 54,17 + 8972: 58,16 + 8973: 58,17 + 8974: 57,21 + 8975: 58,22 - node: color: '#FFFFFFFF' id: FlowersBROne decals: 272: 85,60 - - node: - color: '#FFFFFFFF' - id: FlowersBRThree - decals: - 255: 77,53 - node: color: '#FFFFFFFF' id: FlowersBRTwo @@ -6618,13 +8335,6 @@ entities: 7273: 30.655012,7.1687403 7274: 30.811262,8.340615 7275: 29.108137,8.76249 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 249: 75,52 - 250: 74,53 - 251: 78,52 - node: color: '#FFFFFFFF' id: Flowerspv1 @@ -6651,9 +8361,6 @@ entities: color: '#FFFFFFFF' id: Flowerspv3 decals: - 252: 76,52 - 253: 75,53 - 254: 79,53 263: 79,58 264: 79,62 265: 74,63 @@ -6666,14 +8373,6 @@ entities: 7268: 28.280012,8.715615 7269: 30.639387,8.621865 7270: 28.373762,5.3562403 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 245: 74,52 - 246: 76,53 - 247: 77,52 - 248: 78,53 - node: color: '#FFFFFFFF' id: Flowersy3 @@ -6683,7 +8382,6 @@ entities: color: '#FFFFFFFF' id: Flowersy4 decals: - 256: 79,52 257: 74,57 258: 73,59 259: 73,62 @@ -6748,17 +8446,35 @@ entities: decals: 5812: 83,19 5836: 77,18 + - node: + cleanable: True + color: '#00000033' + id: Grassa1 + decals: + 10590: 47.547108,-6.058925 - node: cleanable: True color: '#FFFFFFFF' id: Grassa1 decals: 8732: 36.731052,49.155712 + - node: + cleanable: True + color: '#00000033' + id: Grassa2 + decals: + 10587: 47.933617,-6.014326 - node: color: '#FFFFFF8E' id: Grassa2 decals: 8334: 75.96939,1.9974823 + - node: + cleanable: True + color: '#00000033' + id: Grassa3 + decals: + 10586: 48.1566,-5.835932 - node: cleanable: True color: '#FFFFFFFF' @@ -6767,22 +8483,30 @@ entities: 8734: 39.496677,47.968212 - node: cleanable: True - color: '#0000003F' + color: '#00000033' id: Grassa4 decals: - 8833: 47.995117,-6.277954 + 10585: 47.710632,-6.1778545 + 10592: 48.097137,-6.0440583 - node: cleanable: True - color: '#0000003F' + color: '#00000033' id: Grassa5 decals: - 8834: 47.869614,-6.073131 + 10588: 48.2012,-6.2670517 - node: cleanable: True color: '#FFFFFFFF' id: Grassa5 decals: 8733: 37.590427,48.077587 + - node: + cleanable: True + color: '#00000033' + id: Grassb1 + decals: + 10589: 47.770092,-6.073791 + 10593: 47.695766,-6.1927214 - node: color: '#FFFFFF8E' id: Grassb1 @@ -6795,17 +8519,10 @@ entities: 8336: 73.92772,1.9280376 - node: cleanable: True - color: '#0000003F' + color: '#00000033' id: Grassb4 decals: - 8831: 47.724297,-6.211882 - 8835: 47.896038,-5.848486 - - node: - cleanable: True - color: '#0000003F' - id: Grassb5 - decals: - 8832: 47.684666,-5.722949 + 10591: 47.933617,-6.415714 - node: color: '#FFFFFFFF' id: Grassc1 @@ -6993,11 +8710,9 @@ entities: 8530: 26,-42 8532: 25,-43 8533: 25,-44 - 8534: 24,-44 8535: 23,-44 8536: 22,-44 8537: 21,-44 - 8538: 20,-44 8539: 19,-44 - node: color: '#334E6DC8' @@ -7049,11 +8764,9 @@ entities: 8427: 25,-40 8428: 26,-40 8449: 25,-44 - 8450: 24,-44 8452: 23,-44 8453: 22,-44 8454: 21,-44 - 8455: 20,-44 8456: 19,-44 8457: 19,-43 8459: 18,-42 @@ -7243,7 +8956,6 @@ entities: decals: 8581: 20,-38 8592: 23,-36 - 8610: 20,-44 8611: 18,-40 8612: 24,-40 - node: @@ -7252,7 +8964,6 @@ entities: decals: 8578: 24,-38 8591: 21,-36 - 8609: 24,-44 8613: 20,-40 8614: 26,-40 8626: 29,-38 @@ -8204,6 +9915,16 @@ entities: 332: 74.93003,46.092968 333: 75.414406,46.077343 334: 75.851906,46.030468 + - node: + color: '#B02E26FF' + id: pawprint + decals: + 9000: 76.46453,59.34658 + 9001: 75.49578,60.737206 + 9002: 76.480156,60.69033 + 9003: 75.62078,59.31533 + 9004: 74.99578,60.19033 + 9005: 76.83953,60.080956 - node: cleanable: True color: '#FFFFFFFF' @@ -8324,7 +10045,8 @@ entities: 1: 140 0: 16384 0,3: - 1: 12287 + 2: 273 + 1: 12014 0,4: 1: 47291 1,0: @@ -8452,7 +10174,7 @@ entities: 1: 8191 3,10: 1: 56593 - 2: 204 + 3: 204 3,11: 1: 56829 2,12: @@ -8465,7 +10187,7 @@ entities: 4,9: 1: 24575 4,10: - 2: 51 + 3: 51 1: 65484 4,11: 1: 65535 @@ -8683,7 +10405,7 @@ entities: 7,13: 1: 65535 7,14: - 3: 4080 + 4: 4080 1: 32768 7,15: 1: 65535 @@ -8694,7 +10416,7 @@ entities: 8,13: 1: 64447 8,14: - 3: 816 + 4: 816 1: 34946 8,15: 1: 30523 @@ -8708,34 +10430,34 @@ entities: 0: 59888 5,18: 0: 21280 - 4: 128 + 5: 128 5,19: 0: 13059 - 5: 32896 + 6: 32896 5,20: 0: 13107 - 6: 128 - 5: 32768 + 7: 128 + 6: 32768 6,17: 0: 61440 6,18: - 4: 240 - 7: 61440 + 5: 240 + 8: 61440 6,19: - 5: 61680 + 6: 61680 7,17: 0: 30304 7,18: - 4: 16 - 7: 4096 + 5: 16 + 8: 4096 0: 17476 7,19: - 5: 4112 + 6: 4112 0: 17476 7,20: 0: 17476 - 6: 16 - 5: 4096 + 7: 16 + 6: 4096 8,16: 1: 65303 8,17: @@ -8749,8 +10471,8 @@ entities: 5,22: 0: 3983 6,20: - 6: 240 - 5: 61440 + 7: 240 + 6: 61440 6,22: 0: 3855 6,21: @@ -8871,7 +10593,8 @@ entities: 11,12: 1: 61166 12,8: - 1: 61678 + 1: 61646 + 2: 32 12,9: 1: 13066 0: 34816 @@ -9023,7 +10746,8 @@ entities: 13,6: 1: 63343 13,7: - 1: 56583 + 1: 56579 + 2: 4 13,8: 1: 12317 0: 34816 @@ -9091,7 +10815,8 @@ entities: 16,10: 1: 53710 16,11: - 1: 61951 + 1: 45567 + 9: 16384 13,13: 1: 57599 13,14: @@ -9218,9 +10943,9 @@ entities: 1: 4096 19,3: 0: 48 - 3: 57344 + 4: 57344 19,4: - 3: 61166 + 4: 61166 1: 16 20,0: 1: 3184 @@ -9229,7 +10954,7 @@ entities: 20,2: 1: 65295 20,3: - 3: 36864 + 4: 36864 0: 80 1: 24576 17,5: @@ -9262,7 +10987,7 @@ entities: 19,8: 1: 4095 20,4: - 3: 40959 + 4: 40959 1: 24576 20,5: 1: 61440 @@ -9355,10 +11080,10 @@ entities: 21,2: 1: 65281 21,3: - 3: 12288 + 4: 12288 0: 34880 21,4: - 3: 13107 + 4: 13107 0: 128 22,1: 1: 67 @@ -9554,7 +11279,8 @@ entities: 7,-7: 0: 50416 8,-5: - 1: 273 + 2: 1 + 1: 272 0: 8 8,-6: 0: 49706 @@ -9831,6 +11557,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 - volume: 2500 temperature: 293.15 moles: @@ -9921,6 +11662,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 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -10053,7 +11809,7 @@ entities: - type: MetaData name: Syndie Base "Sierra" - type: Transform - pos: -1560.5156,-0.484375 + pos: -2.7884026,2501.213 parent: 1 - type: MapGrid chunks: @@ -10071,19 +11827,19 @@ entities: version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABQAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAA version: 6 0,1: ind: 0,1 - tiles: TwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAKgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAFAAAAAAAfgAAAAAATwAAAAAATwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAKQAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAcAAAAAAABQAAAAAAHQAAAAAA + tiles: TwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAKgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAFAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAKQAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAKQAAAAAAKQAAAAAAcAAAAAAABQAAAAAAHQAAAAAA version: 6 -1,1: ind: -1,1 - tiles: bAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAA + tiles: bAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAgQAAAAAAJQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAALAAAAAAALAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAA version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAAfgAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAANAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAANAAAAAAABwAAAAAABwAAAAAANAAAAAAAfgAAAAAAfgAAAAAABQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAABwAAAAAANAAAAAAABwAAAAAANAAAAAAANAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAABwAAAAAABwAAAAAANAAAAAAABwAAAAAANAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAA version: 6 1,-1: ind: 1,-1 @@ -10095,7 +11851,7 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAQAAAAAAbQAAAAAAbQAAAAAAAQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAANAAAAAAABwAAAAAANAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJQAAAAAAJQAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAQAAAAAAbQAAAAAAbQAAAAAAAQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAJQAAAAAAfgAAAAAAfgAAAAAA version: 6 1,1: ind: 1,1 @@ -10123,11 +11879,11 @@ entities: version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA version: 6 -2,-1: ind: -2,-1 @@ -10151,7 +11907,7 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 - type: Broadphase - type: Physics @@ -11231,7 +12987,7 @@ entities: 3,1: 0: 65519 3,2: - 0: 51511 + 0: 35127 3,3: 0: 65526 3,-1: @@ -11299,7 +13055,8 @@ entities: 1: 4095 0: 4096 -1,-3: - 1: 4095 + 1: 3822 + 0: 273 0,-2: 0: 6135 -1,-2: @@ -11337,37 +13094,29 @@ entities: -2,-1: 0: 1397 -2,-3: - 1: 3820 + 0: 3276 -2,-2: 0: 3276 - -2,-4: - 1: 32768 0,5: - 0: 887 - 1: 34816 + 0: 64375 -1,5: - 0: 2252 - 1: 12801 + 0: 64477 0,6: - 0: 30579 - 1: 32904 + 0: 63483 -1,6: - 0: 52424 - 1: 8482 + 0: 65019 0,7: - 0: 819 - 1: 1096 + 0: 4091 -1,7: - 0: 2184 - 1: 1363 + 0: 4091 0,8: 0: 65535 1,5: - 1: 12291 + 0: 13107 1,6: - 1: 768 + 0: 13107 1,7: - 1: 305 + 0: 819 1,8: 0: 30711 2,5: @@ -11405,15 +13154,11 @@ entities: -5,6: 0: 57582 -4,7: - 2: 1 - 0: 65534 + 0: 65535 -5,7: - 0: 61102 - 3: 64 + 0: 61166 -4,8: - 0: 64503 - 3: 8 - 2: 1024 + 0: 65535 -3,5: 0: 65535 -3,6: @@ -11421,20 +13166,15 @@ entities: -3,7: 0: 7406 -3,8: - 0: 64511 - 4: 1024 + 0: 65535 -2,5: - 0: 13107 - 1: 32776 + 0: 48059 -2,6: - 0: 12339 - 1: 2048 + 0: 47291 -2,7: - 0: 819 - 1: 128 + 0: 3003 -2,8: - 0: 44987 - 4: 4096 + 0: 49083 -1,8: 0: 65535 -7,3: @@ -11492,7 +13232,7 @@ entities: 0: 61164 -7,8: 1: 3105 - 0: 28876 + 0: 28684 -6,5: 1: 12066 -6,6: @@ -11505,8 +13245,7 @@ entities: 1: 22 0: 4096 -5,8: - 0: 28398 - 3: 32768 + 0: 61166 4,8: 0: 48059 5,5: @@ -11542,23 +13281,19 @@ entities: 8,7: 0: 65535 -4,9: - 0: 4087 - 2: 8 + 0: 4095 -5,9: 0: 3822 -4,10: - 0: 2687 - 3: 128 + 0: 2815 -5,10: 0: 8 -3,9: - 0: 4031 - 2: 64 + 0: 4095 -3,10: 0: 19 -2,9: - 0: 2433 - 3: 16 + 0: 2449 -2,10: 0: 571 -1,9: @@ -11587,6 +13322,14 @@ entities: 0: 13107 9,8: 0: 819 + -9,8: + 1: 3276 + -9,7: + 1: 52428 + -9,5: + 1: 52428 + -9,6: + 1: 52428 5,9: 0: 7 uniqueMixes: @@ -11620,51 +13363,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 5000 - moles: - - 6666.982 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 235 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -12069,17 +13767,6 @@ entities: - 9970 - 10074 - 7811 - - uid: 74 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,17.5 - parent: 2 - - type: DeviceList - devices: - - 10002 - - 437 - - 7837 - uid: 75 components: - type: Transform @@ -13146,6 +14833,17 @@ entities: - 21687 - 21684 - 21690 + - uid: 20470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 10002 + - 437 + - 7837 - uid: 21668 components: - type: Transform @@ -13207,6 +14905,11 @@ entities: rot: 3.141592653589793 rad pos: 15.5,39.5 parent: 2 + - type: DeviceList + devices: + - 21334 + - 21335 + - 10679 - proto: AirCanister entities: - uid: 140 @@ -13362,16 +15065,13 @@ entities: - type: Transform pos: 76.5,9.5 parent: 2 -- proto: AirlockAtmosphericsGlassLocked +- proto: AirlockAtmosphericsLocked entities: - uid: 165 components: - type: Transform - rot: 1.5707963267948966 rad pos: 44.5,67.5 parent: 2 -- proto: AirlockAtmosphericsLocked - entities: - uid: 166 components: - type: Transform @@ -13380,12 +15080,12 @@ entities: - uid: 167 components: - type: Transform - pos: 41.5,71.5 + pos: 43.5,73.5 parent: 2 - uid: 168 components: - type: Transform - pos: 43.5,73.5 + pos: 41.5,71.5 parent: 2 - uid: 169 components: @@ -13538,14 +15238,6 @@ entities: - type: Transform pos: 38.5,35.5 parent: 2 -- proto: AirlockEngineeringGlass - entities: - - uid: 204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-16.5 - parent: 2 - proto: AirlockEngineeringGlassLocked entities: - uid: 189 @@ -13675,12 +15367,23 @@ entities: - type: Transform pos: 28.5,-38.5 parent: 2 + - uid: 5178 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 - uid: 10777 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,-17.5 parent: 2 + - uid: 13114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-15.5 + parent: 2 - proto: AirlockEVALocked entities: - uid: 213 @@ -14139,11 +15842,6 @@ entities: - type: Transform pos: 34.5,4.5 parent: 2 - - uid: 281 - components: - - type: Transform - pos: 3.5,30.5 - parent: 2 - uid: 2373 components: - type: Transform @@ -14177,13 +15875,19 @@ entities: - type: Transform pos: 12.5,4.5 parent: 16504 + - uid: 22211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,54.5 + parent: 2 - proto: AirlockGlassShuttle entities: - - uid: 22016 + - uid: 22506 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,18.5 + pos: -13.5,18.5 parent: 2 - proto: AirlockHatch entities: @@ -14426,13 +16130,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,75.5 parent: 2 -- proto: AirlockMaintDetectiveLocked - entities: - - uid: 323 - components: - - type: Transform - pos: 40.5,37.5 - parent: 2 - proto: AirlockMaintEngiLocked entities: - uid: 324 @@ -14533,11 +16230,22 @@ entities: parent: 2 - proto: AirlockMaintSecLocked entities: - - uid: 340 + - uid: 62 + components: + - type: Transform + pos: 40.5,37.5 + parent: 2 + - uid: 204 components: - type: Transform pos: 46.5,37.5 parent: 2 + - uid: 13082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,17.5 + parent: 2 - uid: 15688 components: - type: Transform @@ -14754,12 +16462,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-13.5 parent: 2 - - uid: 3501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-15.5 - parent: 2 - proto: AirlockSecurity entities: - uid: 379 @@ -15019,11 +16721,6 @@ entities: - type: Transform pos: -8.5,19.5 parent: 16504 - - uid: 16532 - components: - - type: Transform - pos: 0.5,19.5 - parent: 16504 - uid: 16533 components: - type: Transform @@ -15246,6 +16943,9 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 20470 - uid: 438 components: - type: Transform @@ -15771,6 +17471,9 @@ entities: rot: 3.141592653589793 rad pos: 15.5,40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2400 - proto: AirTankFilled entities: - uid: 511 @@ -15903,22 +17606,12 @@ entities: parent: 16504 - proto: APCBasic entities: - - uid: 62 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-14.5 - parent: 2 - uid: 521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,6.5 + rot: 1.5707963267948966 rad + pos: 10.5,-4.5 parent: 2 - - type: PowerNetworkBattery - loadingNetworkDemand: 3310 - currentReceiving: 3310.0913 - currentSupply: 3310.0002 - uid: 522 components: - type: Transform @@ -16273,6 +17966,17 @@ entities: - type: Transform pos: 57.5,33.5 parent: 2 + - uid: 2252 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 4866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-15.5 + parent: 2 - uid: 15526 components: - type: Transform @@ -16459,6 +18163,22 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,53.5 parent: 2 + - uid: 22259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,25.5 + parent: 2 + - uid: 22281 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 22295 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 - proto: APCElectronics entities: - uid: 565 @@ -17479,11 +19199,6 @@ entities: - type: Transform pos: -23.5,10.5 parent: 16504 - - uid: 16572 - components: - - type: Transform - pos: -23.5,11.5 - parent: 16504 - uid: 16573 components: - type: Transform @@ -17494,11 +19209,6 @@ entities: - type: Transform pos: -24.5,10.5 parent: 16504 - - uid: 16575 - components: - - type: Transform - pos: -24.5,11.5 - parent: 16504 - uid: 16576 components: - type: Transform @@ -17509,105 +19219,115 @@ entities: - type: Transform pos: -25.5,10.5 parent: 16504 - - uid: 16578 + - uid: 16589 components: - type: Transform - pos: -25.5,11.5 + pos: -26.5,17.5 parent: 16504 - - uid: 16579 + - uid: 16590 components: - type: Transform - pos: -27.5,11.5 + pos: -25.5,17.5 parent: 16504 - - uid: 16580 + - uid: 16591 components: - type: Transform - pos: -27.5,12.5 + pos: -24.5,17.5 parent: 16504 - - uid: 16581 + - uid: 16592 components: - type: Transform - pos: -27.5,13.5 + pos: -25.5,18.5 parent: 16504 - - uid: 16582 + - uid: 16593 components: - type: Transform - pos: -27.5,14.5 + pos: -24.5,18.5 parent: 16504 - - uid: 16583 +- proto: AsteroidRockGold + entities: + - uid: 760 components: - type: Transform - pos: -27.5,15.5 - parent: 16504 - - uid: 16584 + pos: 70.5,1.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: 86.5,8.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: 60.5,72.5 + parent: 2 +- proto: AsteroidRockMining + entities: + - uid: 5824 components: - type: Transform - pos: -27.5,16.5 + pos: -33.5,14.5 parent: 16504 - - uid: 16585 + - uid: 16572 components: - type: Transform - pos: -26.5,15.5 + pos: -34.5,9.5 parent: 16504 - - uid: 16586 + - uid: 16575 components: - type: Transform - pos: -26.5,16.5 + pos: -34.5,12.5 parent: 16504 - - uid: 16587 + - uid: 16578 components: - type: Transform - pos: -25.5,15.5 + pos: -32.5,8.5 parent: 16504 - - uid: 16588 + - uid: 16579 components: - type: Transform - pos: -25.5,16.5 + pos: -32.5,9.5 parent: 16504 - - uid: 16589 + - uid: 16580 components: - type: Transform - pos: -26.5,17.5 + pos: -32.5,10.5 parent: 16504 - - uid: 16590 + - uid: 16581 components: - type: Transform - pos: -25.5,17.5 + pos: -32.5,11.5 parent: 16504 - - uid: 16591 + - uid: 16582 components: - type: Transform - pos: -24.5,17.5 + pos: -32.5,12.5 parent: 16504 - - uid: 16592 + - uid: 16583 components: - type: Transform - pos: -25.5,18.5 + pos: -32.5,7.5 parent: 16504 - - uid: 16593 + - uid: 16584 components: - type: Transform - pos: -24.5,18.5 + pos: -33.5,7.5 parent: 16504 -- proto: AsteroidRockGold - entities: - - uid: 760 + - uid: 16585 components: - type: Transform - pos: 70.5,1.5 - parent: 2 - - uid: 761 + pos: -32.5,13.5 + parent: 16504 + - uid: 16586 components: - type: Transform - pos: 86.5,8.5 - parent: 2 - - uid: 762 + pos: -34.5,7.5 + parent: 16504 + - uid: 16588 components: - type: Transform - pos: 60.5,72.5 - parent: 2 -- proto: AsteroidRockMining - entities: + pos: -33.5,11.5 + parent: 16504 - uid: 16594 components: - type: Transform @@ -17616,32 +19336,32 @@ entities: - uid: 16595 components: - type: Transform - pos: -26.5,11.5 + pos: -33.5,10.5 parent: 16504 - uid: 16596 components: - type: Transform - pos: -26.5,12.5 + pos: -33.5,9.5 parent: 16504 - uid: 16597 components: - type: Transform - pos: -26.5,13.5 + pos: -34.5,10.5 parent: 16504 - uid: 16598 components: - type: Transform - pos: -25.5,13.5 + pos: -34.5,11.5 parent: 16504 - uid: 16599 components: - type: Transform - pos: -25.5,12.5 + pos: -34.5,13.5 parent: 16504 - uid: 16600 components: - type: Transform - pos: -24.5,12.5 + pos: -33.5,8.5 parent: 16504 - uid: 16601 components: @@ -17686,17 +19406,17 @@ entities: - uid: 16609 components: - type: Transform - pos: -26.5,14.5 + pos: -34.5,8.5 parent: 16504 - uid: 16610 components: - type: Transform - pos: -25.5,14.5 + pos: -33.5,13.5 parent: 16504 - uid: 16611 components: - type: Transform - pos: -24.5,16.5 + pos: -33.5,12.5 parent: 16504 - uid: 16612 components: @@ -22533,6 +24253,26 @@ entities: - type: Transform pos: -8.5,47.5 parent: 16504 + - uid: 22490 + components: + - type: Transform + pos: -34.5,14.5 + parent: 16504 + - uid: 22491 + components: + - type: Transform + pos: -34.5,15.5 + parent: 16504 + - uid: 22492 + components: + - type: Transform + pos: -33.5,15.5 + parent: 16504 + - uid: 22493 + components: + - type: Transform + pos: -34.5,16.5 + parent: 16504 - proto: AsteroidRockPlasma entities: - uid: 763 @@ -22718,11 +24458,54 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-27.5 parent: 2 - - uid: 11511 + - uid: 5096 components: - type: Transform - pos: 22.5,-31.5 + pos: 22.5,-32.5 parent: 2 + - uid: 9717 + components: + - type: Transform + pos: 1.5,31.5 + parent: 16504 + - uid: 10549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,11.5 + parent: 16504 + - uid: 10551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 16504 + - uid: 11511 + components: + - type: Transform + pos: 0.5,31.5 + parent: 16504 + - uid: 11749 + components: + - type: Transform + pos: -0.5,31.5 + parent: 16504 + - uid: 12098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 16504 + - uid: 12582 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 16504 + - uid: 12913 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 16504 - uid: 13576 components: - type: Transform @@ -22744,6 +24527,11 @@ entities: - type: Transform pos: 31.5,59.5 parent: 2 + - uid: 22111 + components: + - type: Transform + pos: 6.5,7.5 + parent: 16504 - proto: AtmosDeviceFanTiny entities: - uid: 795 @@ -22766,26 +24554,6 @@ entities: - type: Transform pos: 68.5,0.5 parent: 2 - - uid: 17579 - components: - - type: Transform - pos: -19.5,21.5 - parent: 16504 - - uid: 17580 - components: - - type: Transform - pos: -19.5,22.5 - parent: 16504 - - uid: 17581 - components: - - type: Transform - pos: -19.5,23.5 - parent: 16504 - - uid: 17582 - components: - - type: Transform - pos: -19.5,24.5 - parent: 16504 - uid: 17583 components: - type: Transform @@ -23191,48 +24959,6 @@ entities: - type: Transform pos: 28.5,57.5 parent: 2 - - uid: 17584 - components: - - type: Transform - pos: -14.5,39.5 - parent: 16504 - - uid: 17585 - components: - - type: Transform - pos: -7.5,35.5 - parent: 16504 - - uid: 17586 - components: - - type: Transform - pos: -9.5,34.5 - parent: 16504 -- proto: AtmosFixInstantPlasmaFireMarker - entities: - - uid: 17587 - components: - - type: Transform - pos: -16.5,35.5 - parent: 16504 - - uid: 17588 - components: - - type: Transform - pos: -7.5,37.5 - parent: 16504 - - uid: 17589 - components: - - type: Transform - pos: -17.5,29.5 - parent: 16504 - - uid: 17590 - components: - - type: Transform - pos: -12.5,41.5 - parent: 16504 - - uid: 17591 - components: - - type: Transform - pos: -12.5,32.5 - parent: 16504 - proto: AtmosFixNitrogenMarker entities: - uid: 860 @@ -23324,26 +25050,6 @@ entities: - type: Transform pos: 23.5,81.5 parent: 2 - - uid: 17592 - components: - - type: Transform - pos: -15.5,28.5 - parent: 16504 - - uid: 17593 - components: - - type: Transform - pos: -13.5,34.5 - parent: 16504 - - uid: 17594 - components: - - type: Transform - pos: -9.5,37.5 - parent: 16504 - - uid: 17595 - components: - - type: Transform - pos: -12.5,36.5 - parent: 16504 - proto: AtmosFixVoxMarker entities: - uid: 2355 @@ -23407,10 +25113,10 @@ entities: - type: Transform pos: 23.5,7.5 parent: 2 - - uid: 885 + - uid: 5112 components: - type: Transform - pos: 45.5,66.5 + pos: 45.5,64.5 parent: 2 - proto: AutolatheMachineCircuitboard entities: @@ -23495,6 +25201,11 @@ entities: - type: Transform pos: 91.5,15.5 parent: 2 + - uid: 9352 + components: + - type: Transform + pos: 43.5,27.5 + parent: 2 - proto: BannerSyndicate entities: - uid: 17597 @@ -23683,6 +25394,11 @@ entities: rot: 1.5707963267948966 rad pos: 63.5,21.5 parent: 2 + - uid: 11496 + components: + - type: Transform + pos: 46.5,37.5 + parent: 2 - uid: 17610 components: - type: Transform @@ -23708,11 +25424,6 @@ entities: - type: Transform pos: -2.5,10.5 parent: 16504 - - uid: 17615 - components: - - type: Transform - pos: 0.5,19.5 - parent: 16504 - uid: 17616 components: - type: Transform @@ -23781,17 +25492,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 16504 - - uid: 17626 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,18.5 - parent: 16504 - - uid: 17627 - components: - - type: Transform - pos: 0.5,20.5 - parent: 16504 - uid: 17628 components: - type: Transform @@ -24303,6 +26003,216 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,2.5 parent: 2 +- proto: BenchColorfulComfy + entities: + - uid: 281 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 5959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,62.5 + parent: 2 + - uid: 5962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 79.5,64.5 + parent: 2 + - uid: 5963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,64.5 + parent: 2 + - uid: 5964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 78.5,64.5 + parent: 2 + - uid: 5985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,64.5 + parent: 2 + - uid: 5986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,64.5 + parent: 2 + - uid: 5987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,64.5 + parent: 2 + - uid: 5988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,63.5 + parent: 2 + - uid: 5990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,61.5 + parent: 2 + - uid: 5991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,59.5 + parent: 2 + - uid: 5992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,58.5 + parent: 2 + - uid: 5993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,57.5 + parent: 2 + - uid: 5994 + components: + - type: Transform + pos: 79.5,56.5 + parent: 2 + - uid: 5995 + components: + - type: Transform + pos: 78.5,56.5 + parent: 2 + - uid: 5996 + components: + - type: Transform + pos: 77.5,56.5 + parent: 2 + - uid: 5997 + components: + - type: Transform + pos: 75.5,56.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + pos: 74.5,56.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + pos: 73.5,56.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,57.5 + parent: 2 + - uid: 6001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,58.5 + parent: 2 + - uid: 6002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,59.5 + parent: 2 + - uid: 6003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,61.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,62.5 + parent: 2 + - uid: 6005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,63.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,59.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,58.5 + parent: 2 + - uid: 6009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,60.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,61.5 + parent: 2 + - uid: 6011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,62.5 + parent: 2 + - uid: 16100 + components: + - type: Transform + pos: 2.5,30.5 + parent: 2 + - uid: 22235 + components: + - type: Transform + pos: 75.5,66.5 + parent: 2 + - uid: 22236 + components: + - type: Transform + pos: 76.5,66.5 + parent: 2 + - uid: 22237 + components: + - type: Transform + pos: 77.5,66.5 + parent: 2 + - uid: 22238 + components: + - type: Transform + pos: 78.5,66.5 + parent: 2 + - uid: 22239 + components: + - type: Transform + pos: 73.5,66.5 + parent: 2 + - uid: 22240 + components: + - type: Transform + pos: 80.5,66.5 + parent: 2 - proto: BenchComfy entities: - uid: 17648 @@ -24670,11 +26580,6 @@ entities: - Damageable - Construction - Destructible - - uid: 17686 - components: - - type: Transform - pos: 0.5,19.5 - parent: 16504 - uid: 17687 components: - type: Transform @@ -24735,11 +26640,6 @@ entities: - type: Transform pos: -0.5,31.5 parent: 16504 - - uid: 17699 - components: - - type: Transform - pos: -19.5,21.5 - parent: 16504 - uid: 17700 components: - type: Transform @@ -24769,21 +26669,6 @@ entities: - DoorStatus: Toggle 19641: - DoorStatus: Toggle - - uid: 17701 - components: - - type: Transform - pos: -19.5,22.5 - parent: 16504 - - uid: 17702 - components: - - type: Transform - pos: -19.5,23.5 - parent: 16504 - - uid: 17703 - components: - - type: Transform - pos: -19.5,24.5 - parent: 16504 - uid: 17704 components: - type: Transform @@ -25262,6 +27147,13 @@ entities: - type: Transform pos: 60.34469,61.56679 parent: 2 +- proto: BookChemicalCompendium + entities: + - uid: 18623 + components: + - type: Transform + pos: 40.528683,53.30423 + parent: 2 - proto: BookMedicalReferenceBook entities: - uid: 1015 @@ -25476,6 +27368,26 @@ entities: - type: Transform pos: 62.46805,24.64373 parent: 2 + - uid: 22478 + components: + - type: Transform + pos: 24.607885,-8.656851 + parent: 2 + - uid: 22479 + components: + - type: Transform + pos: 38.184242,-1.6961863 + parent: 2 + - uid: 22480 + components: + - type: Transform + pos: 38.746742,-1.6649363 + parent: 2 + - uid: 22481 + components: + - type: Transform + pos: 55.31863,6.33302 + parent: 2 - proto: BoxCartridgeCap entities: - uid: 1023 @@ -25494,6 +27406,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 22476 + components: + - type: Transform + parent: 6182 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BoxFolderBase entities: - uid: 1068 @@ -25688,6 +27607,14 @@ entities: - type: Transform pos: 37.560665,69.60916 parent: 2 +- proto: BoxingBell + entities: + - uid: 6606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,29.5 + parent: 2 - proto: BoxLatexGloves entities: - uid: 1098 @@ -25716,6 +27643,32 @@ entities: - type: Transform pos: 35.45112,47.524704 parent: 2 +- proto: BoxPerformer + entities: + - uid: 22488 + components: + - type: Transform + pos: 33.530327,-2.3209026 + parent: 2 +- proto: BoxPillCanister + entities: + - uid: 22486 + components: + - type: Transform + pos: 58.73327,1.5980728 + parent: 2 + - uid: 22487 + components: + - type: Transform + pos: 58.717644,2.4886978 + parent: 2 +- proto: BoxSechud + entities: + - uid: 22477 + components: + - type: Transform + pos: 57.866272,18.664032 + parent: 2 - proto: BoxShellTranquilizer entities: - uid: 1048 @@ -25851,6 +27804,11 @@ entities: parent: 2 - proto: BrokenEnergyShield entities: + - uid: 10409 + components: + - type: Transform + pos: 12.973543,58.14522 + parent: 2 - uid: 17720 components: - type: Transform @@ -25919,6 +27877,23 @@ entities: - type: Transform pos: 11.308048,28.964308 parent: 16504 + - uid: 18655 + components: + - type: Transform + pos: 37.542587,48.78989 + parent: 2 + - uid: 19388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.995712,49.555515 + parent: 2 + - uid: 19600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.120712,53.72739 + parent: 2 - proto: ButtonFrameCaution entities: - uid: 1122 @@ -25959,6 +27934,11 @@ entities: - type: Transform pos: 27.5,42.5 parent: 2 + - uid: 340 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 - uid: 342 components: - type: Transform @@ -26109,16 +28089,6 @@ entities: - type: Transform pos: 0.5,16.5 parent: 2 - - uid: 1148 - components: - - type: Transform - pos: 10.5,6.5 - parent: 2 - - uid: 1149 - components: - - type: Transform - pos: 9.5,6.5 - parent: 2 - uid: 1150 components: - type: Transform @@ -26254,11 +28224,6 @@ entities: - type: Transform pos: 4.5,10.5 parent: 2 - - uid: 1177 - components: - - type: Transform - pos: 4.5,9.5 - parent: 2 - uid: 1178 components: - type: Transform @@ -26292,7 +28257,7 @@ entities: - uid: 1184 components: - type: Transform - pos: 6.5,9.5 + pos: 5.5,9.5 parent: 2 - uid: 1185 components: @@ -26637,7 +28602,7 @@ entities: - uid: 1253 components: - type: Transform - pos: 14.5,25.5 + pos: 1.5,33.5 parent: 2 - uid: 1254 components: @@ -27392,7 +29357,7 @@ entities: - uid: 1404 components: - type: Transform - pos: 29.5,-14.5 + pos: 30.5,-15.5 parent: 2 - uid: 1405 components: @@ -28824,16 +30789,6 @@ entities: - type: Transform pos: 39.5,13.5 parent: 2 - - uid: 1696 - components: - - type: Transform - pos: 38.5,13.5 - parent: 2 - - uid: 1697 - components: - - type: Transform - pos: 37.5,13.5 - parent: 2 - uid: 1698 components: - type: Transform @@ -29199,15 +31154,10 @@ entities: - type: Transform pos: 36.5,37.5 parent: 2 - - uid: 1771 - components: - - type: Transform - pos: 36.5,38.5 - parent: 2 - uid: 1772 components: - type: Transform - pos: 36.5,39.5 + pos: 5.5,10.5 parent: 2 - uid: 1773 components: @@ -29919,16 +31869,6 @@ entities: - type: Transform pos: 39.5,13.5 parent: 2 - - uid: 1915 - components: - - type: Transform - pos: 38.5,13.5 - parent: 2 - - uid: 1916 - components: - - type: Transform - pos: 37.5,13.5 - parent: 2 - uid: 1917 components: - type: Transform @@ -31224,11 +33164,6 @@ entities: - type: Transform pos: 30.5,-12.5 parent: 2 - - uid: 2181 - components: - - type: Transform - pos: 30.5,-14.5 - parent: 2 - uid: 2182 components: - type: Transform @@ -31249,30 +33184,20 @@ entities: - type: Transform pos: 31.5,-17.5 parent: 2 - - uid: 2186 - components: - - type: Transform - pos: 31.5,-18.5 - parent: 2 - - uid: 2187 - components: - - type: Transform - pos: 31.5,-19.5 - parent: 2 - uid: 2188 components: - type: Transform pos: 36.5,65.5 parent: 2 - - uid: 2189 + - uid: 2190 components: - type: Transform - pos: 30.5,-18.5 + pos: 29.5,-18.5 parent: 2 - - uid: 2190 + - uid: 2191 components: - type: Transform - pos: 29.5,-18.5 + pos: 49.5,35.5 parent: 2 - uid: 2194 components: @@ -31484,16 +33409,6 @@ entities: - type: Transform pos: 16.5,1.5 parent: 2 - - uid: 2238 - components: - - type: Transform - pos: 17.5,1.5 - parent: 2 - - uid: 2239 - components: - - type: Transform - pos: 18.5,1.5 - parent: 2 - uid: 2240 components: - type: Transform @@ -31527,12 +33442,7 @@ entities: - uid: 2246 components: - type: Transform - pos: 9.5,2.5 - parent: 2 - - uid: 2247 - components: - - type: Transform - pos: 9.5,3.5 + pos: 8.5,-0.5 parent: 2 - uid: 2248 components: @@ -31554,11 +33464,6 @@ entities: - type: Transform pos: 11.5,5.5 parent: 2 - - uid: 2252 - components: - - type: Transform - pos: 12.5,6.5 - parent: 2 - uid: 2253 components: - type: Transform @@ -31567,7 +33472,7 @@ entities: - uid: 2254 components: - type: Transform - pos: 11.5,12.5 + pos: 11.5,6.5 parent: 2 - uid: 2255 components: @@ -31664,15 +33569,10 @@ entities: - type: Transform pos: 2.5,31.5 parent: 2 - - uid: 2274 - components: - - type: Transform - pos: 5.5,32.5 - parent: 2 - uid: 2275 components: - type: Transform - pos: 5.5,33.5 + pos: 4.5,32.5 parent: 2 - uid: 2276 components: @@ -31767,12 +33667,12 @@ entities: - uid: 2294 components: - type: Transform - pos: 11.5,26.5 + pos: 8.5,26.5 parent: 2 - uid: 2295 components: - type: Transform - pos: 10.5,26.5 + pos: 8.5,28.5 parent: 2 - uid: 2296 components: @@ -34247,12 +36147,12 @@ entities: - uid: 2875 components: - type: Transform - pos: 11.5,22.5 + pos: 6.5,28.5 parent: 2 - uid: 2876 components: - type: Transform - pos: 10.5,22.5 + pos: 7.5,28.5 parent: 2 - uid: 2877 components: @@ -34949,11 +36849,6 @@ entities: - type: Transform pos: 75.5,3.5 parent: 2 - - uid: 3016 - components: - - type: Transform - pos: 13.5,6.5 - parent: 2 - uid: 3018 components: - type: Transform @@ -35024,11 +36919,6 @@ entities: - type: Transform pos: 46.5,96.5 parent: 2 - - uid: 3033 - components: - - type: Transform - pos: 13.5,5.5 - parent: 2 - uid: 3034 components: - type: Transform @@ -35467,7 +37357,7 @@ entities: - uid: 3124 components: - type: Transform - pos: 9.5,26.5 + pos: 8.5,27.5 parent: 2 - uid: 3125 components: @@ -36319,16 +38209,6 @@ entities: - type: Transform pos: 37.5,88.5 parent: 2 - - uid: 3375 - components: - - type: Transform - pos: 14.5,-2.5 - parent: 2 - - uid: 3376 - components: - - type: Transform - pos: 14.5,-3.5 - parent: 2 - uid: 3377 components: - type: Transform @@ -36824,6 +38704,11 @@ entities: - type: Transform pos: 40.5,56.5 parent: 2 + - uid: 4462 + components: + - type: Transform + pos: 53.5,40.5 + parent: 2 - uid: 4486 components: - type: Transform @@ -36839,6 +38724,21 @@ entities: - type: Transform pos: 21.5,40.5 parent: 2 + - uid: 4865 + components: + - type: Transform + pos: 45.5,-14.5 + parent: 2 + - uid: 4871 + components: + - type: Transform + pos: 51.5,-21.5 + parent: 2 + - uid: 4872 + components: + - type: Transform + pos: 51.5,-20.5 + parent: 2 - uid: 4967 components: - type: Transform @@ -36854,11 +38754,51 @@ entities: - type: Transform pos: -6.5,21.5 parent: 2 + - uid: 5044 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 - uid: 5045 components: - type: Transform pos: 31.5,-14.5 parent: 2 + - uid: 5047 + components: + - type: Transform + pos: 79.5,68.5 + parent: 2 + - uid: 5048 + components: + - type: Transform + pos: 74.5,66.5 + parent: 2 + - uid: 5049 + components: + - type: Transform + pos: 74.5,67.5 + parent: 2 + - uid: 5050 + components: + - type: Transform + pos: 79.5,66.5 + parent: 2 + - uid: 5089 + components: + - type: Transform + pos: 74.5,68.5 + parent: 2 + - uid: 5090 + components: + - type: Transform + pos: 79.5,67.5 + parent: 2 + - uid: 5095 + components: + - type: Transform + pos: 53.5,39.5 + parent: 2 - uid: 5216 components: - type: Transform @@ -36909,11 +38849,6 @@ entities: - type: Transform pos: 27.5,-42.5 parent: 2 - - uid: 6457 - components: - - type: Transform - pos: -10.5,18.5 - parent: 2 - uid: 6500 components: - type: Transform @@ -37194,6 +39129,11 @@ entities: - type: Transform pos: 31.5,44.5 parent: 2 + - uid: 12105 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 - uid: 12551 components: - type: Transform @@ -37254,6 +39194,16 @@ entities: - type: Transform pos: 29.5,-17.5 parent: 2 + - uid: 15450 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 15483 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 - uid: 15504 components: - type: Transform @@ -40624,11 +42574,181 @@ entities: - type: Transform pos: -6.5,23.5 parent: 2 - - uid: 22014 + - uid: 22212 + components: + - type: Transform + pos: 77.5,54.5 + parent: 2 + - uid: 22213 + components: + - type: Transform + pos: 77.5,52.5 + parent: 2 + - uid: 22214 + components: + - type: Transform + pos: 77.5,53.5 + parent: 2 + - uid: 22215 + components: + - type: Transform + pos: 76.5,52.5 + parent: 2 + - uid: 22216 + components: + - type: Transform + pos: 75.5,52.5 + parent: 2 + - uid: 22217 + components: + - type: Transform + pos: 74.5,52.5 + parent: 2 + - uid: 22218 + components: + - type: Transform + pos: 78.5,52.5 + parent: 2 + - uid: 22219 + components: + - type: Transform + pos: 79.5,52.5 + parent: 2 + - uid: 22255 + components: + - type: Transform + pos: 44.5,68.5 + parent: 2 + - uid: 22256 + components: + - type: Transform + pos: 44.5,66.5 + parent: 2 + - uid: 22273 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 22274 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 + - uid: 22275 + components: + - type: Transform + pos: 6.5,23.5 + parent: 2 + - uid: 22276 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 22277 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 + - uid: 22278 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 22279 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - uid: 22280 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 22296 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 + - uid: 22297 + components: + - type: Transform + pos: 3.5,33.5 + parent: 2 + - uid: 22298 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 + - uid: 22299 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 22323 + components: + - type: Transform + pos: 43.5,81.5 + parent: 2 + - uid: 22324 + components: + - type: Transform + pos: 43.5,82.5 + parent: 2 + - uid: 22325 + components: + - type: Transform + pos: 43.5,83.5 + parent: 2 + - uid: 22326 + components: + - type: Transform + pos: 43.5,84.5 + parent: 2 + - uid: 22327 + components: + - type: Transform + pos: 42.5,84.5 + parent: 2 + - uid: 22328 + components: + - type: Transform + pos: 41.5,84.5 + parent: 2 + - uid: 22329 + components: + - type: Transform + pos: 40.5,84.5 + parent: 2 + - uid: 22330 + components: + - type: Transform + pos: 39.5,84.5 + parent: 2 + - uid: 22331 + components: + - type: Transform + pos: 38.5,84.5 + parent: 2 + - uid: 22419 + components: + - type: Transform + pos: 45.5,-15.5 + parent: 2 + - uid: 22515 components: - type: Transform pos: -9.5,18.5 parent: 2 + - uid: 22516 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 22517 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 - proto: CableApcStack entities: - uid: 3441 @@ -40705,11 +42825,51 @@ entities: - type: Transform pos: 44.5,27.5 parent: 2 + - uid: 1696 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 - uid: 2192 components: - type: Transform pos: 29.5,-18.5 parent: 2 + - uid: 2238 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 - uid: 2306 components: - type: Transform @@ -40785,11 +42945,31 @@ entities: - type: Transform pos: 12.5,43.5 parent: 2 + - uid: 3016 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 - uid: 3087 components: - type: Transform pos: 28.5,-17.5 parent: 2 + - uid: 3375 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 - uid: 3444 components: - type: Transform @@ -40980,11 +43160,6 @@ entities: - type: Transform pos: 26.5,28.5 parent: 2 - - uid: 3482 - components: - - type: Transform - pos: 26.5,29.5 - parent: 2 - uid: 3483 components: - type: Transform @@ -41530,11 +43705,6 @@ entities: - type: Transform pos: 50.5,70.5 parent: 2 - - uid: 3598 - components: - - type: Transform - pos: -4.5,53.5 - parent: 2 - uid: 3647 components: - type: Transform @@ -44395,6 +46565,11 @@ entities: - type: Transform pos: 76.5,16.5 parent: 2 + - uid: 4543 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 - uid: 5007 components: - type: Transform @@ -44405,6 +46580,11 @@ entities: - type: Transform pos: 12.5,51.5 parent: 2 + - uid: 5091 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 - uid: 5309 components: - type: Transform @@ -45440,6 +47620,146 @@ entities: - type: Transform pos: 29.5,-19.5 parent: 2 + - uid: 22303 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 22304 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 22305 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 22306 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 22307 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - uid: 22308 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 22309 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 22310 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 22311 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 22312 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 22313 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 22314 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 22315 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 22316 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - uid: 22318 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 22319 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 22320 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 22399 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 2 + - uid: 22400 + components: + - type: Transform + pos: 42.5,-12.5 + parent: 2 + - uid: 22401 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - uid: 22402 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 2 + - uid: 22403 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 2 + - uid: 22404 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 2 + - uid: 22405 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 2 + - uid: 22406 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 2 + - uid: 22410 + components: + - type: Transform + pos: 46.5,-14.5 + parent: 2 + - uid: 22411 + components: + - type: Transform + pos: 46.5,-15.5 + parent: 2 + - uid: 22412 + components: + - type: Transform + pos: 46.5,-16.5 + parent: 2 - proto: CableHVStack entities: - uid: 4438 @@ -45470,10 +47790,25 @@ entities: - type: Transform pos: 23.5,-38.5 parent: 2 - - uid: 2191 + - uid: 1148 components: - type: Transform - pos: 25.5,-14.5 + pos: 6.5,10.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 1915 + components: + - type: Transform + pos: 6.5,19.5 parent: 2 - uid: 2323 components: @@ -45525,11 +47860,6 @@ entities: - type: Transform pos: 60.5,-1.5 parent: 2 - - uid: 3103 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 2 - uid: 3147 components: - type: Transform @@ -45758,7 +48088,7 @@ entities: - uid: 4392 components: - type: Transform - pos: 55.5,37.5 + pos: 56.5,35.5 parent: 2 - uid: 4440 components: @@ -45865,16 +48195,6 @@ entities: - type: Transform pos: 58.5,40.5 parent: 2 - - uid: 4461 - components: - - type: Transform - pos: 2.5,29.5 - parent: 2 - - uid: 4462 - components: - - type: Transform - pos: 0.5,28.5 - parent: 2 - uid: 4463 components: - type: Transform @@ -46050,11 +48370,6 @@ entities: - type: Transform pos: 44.5,56.5 parent: 2 - - uid: 4505 - components: - - type: Transform - pos: 23.5,-18.5 - parent: 2 - uid: 4506 components: - type: Transform @@ -46225,20 +48540,15 @@ entities: - type: Transform pos: 7.5,6.5 parent: 2 - - uid: 4543 - components: - - type: Transform - pos: 8.5,6.5 - parent: 2 - uid: 4544 components: - type: Transform - pos: 9.5,6.5 + pos: 10.5,-5.5 parent: 2 - uid: 4545 components: - type: Transform - pos: 10.5,6.5 + pos: 10.5,-4.5 parent: 2 - uid: 4546 components: @@ -47538,7 +49848,7 @@ entities: - uid: 4805 components: - type: Transform - pos: 55.5,36.5 + pos: 56.5,36.5 parent: 2 - uid: 4806 components: @@ -47835,45 +50145,20 @@ entities: - type: Transform pos: 45.5,-13.5 parent: 2 - - uid: 4865 - components: - - type: Transform - pos: 45.5,-14.5 - parent: 2 - - uid: 4866 - components: - - type: Transform - pos: 46.5,-14.5 - parent: 2 - uid: 4867 components: - type: Transform - pos: 47.5,-14.5 + pos: 45.5,-15.5 parent: 2 - uid: 4868 components: - type: Transform - pos: 48.5,-14.5 + pos: 46.5,-15.5 parent: 2 - uid: 4869 components: - type: Transform - pos: 49.5,-14.5 - parent: 2 - - uid: 4870 - components: - - type: Transform - pos: 50.5,-14.5 - parent: 2 - - uid: 4871 - components: - - type: Transform - pos: 51.5,-14.5 - parent: 2 - - uid: 4872 - components: - - type: Transform - pos: 52.5,-14.5 + pos: 46.5,-16.5 parent: 2 - uid: 4873 components: @@ -48328,7 +50613,7 @@ entities: - uid: 4964 components: - type: Transform - pos: 55.5,35.5 + pos: 56.5,37.5 parent: 2 - uid: 4965 components: @@ -48615,46 +50900,6 @@ entities: - type: Transform pos: 27.5,-15.5 parent: 2 - - uid: 5043 - components: - - type: Transform - pos: 28.5,-15.5 - parent: 2 - - uid: 5044 - components: - - type: Transform - pos: 29.5,-18.5 - parent: 2 - - uid: 5047 - components: - - type: Transform - pos: 28.5,-19.5 - parent: 2 - - uid: 5048 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 2 - - uid: 5049 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 2 - - uid: 5050 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 2 - - uid: 5051 - components: - - type: Transform - pos: 24.5,-19.5 - parent: 2 - - uid: 5052 - components: - - type: Transform - pos: 23.5,-19.5 - parent: 2 - uid: 5053 components: - type: Transform @@ -48835,46 +51080,11 @@ entities: - type: Transform pos: 57.5,38.5 parent: 2 - - uid: 5089 - components: - - type: Transform - pos: 0.5,27.5 - parent: 2 - - uid: 5090 - components: - - type: Transform - pos: 1.5,26.5 - parent: 2 - - uid: 5091 - components: - - type: Transform - pos: 1.5,29.5 - parent: 2 - - uid: 5092 - components: - - type: Transform - pos: 3.5,28.5 - parent: 2 - - uid: 5093 - components: - - type: Transform - pos: 3.5,27.5 - parent: 2 - uid: 5094 components: - type: Transform pos: 41.5,20.5 parent: 2 - - uid: 5095 - components: - - type: Transform - pos: 2.5,26.5 - parent: 2 - - uid: 5096 - components: - - type: Transform - pos: 1.5,28.5 - parent: 2 - uid: 5097 components: - type: Transform @@ -48935,21 +51145,11 @@ entities: - type: Transform pos: 56.5,17.5 parent: 2 - - uid: 5110 - components: - - type: Transform - pos: 2.5,27.5 - parent: 2 - uid: 5111 components: - type: Transform pos: 45.5,17.5 parent: 2 - - uid: 5112 - components: - - type: Transform - pos: 2.5,28.5 - parent: 2 - uid: 5113 components: - type: Transform @@ -49250,11 +51450,6 @@ entities: - type: Transform pos: 59.5,40.5 parent: 2 - - uid: 5178 - components: - - type: Transform - pos: 1.5,27.5 - parent: 2 - uid: 5179 components: - type: Transform @@ -49760,11 +51955,6 @@ entities: - type: Transform pos: 47.5,69.5 parent: 2 - - uid: 5824 - components: - - type: Transform - pos: 55.5,34.5 - parent: 2 - uid: 5834 components: - type: Transform @@ -49815,10 +52005,10 @@ entities: - type: Transform pos: 55.5,38.5 parent: 2 - - uid: 7748 + - uid: 7592 components: - type: Transform - pos: 29.5,-17.5 + pos: 13.5,25.5 parent: 2 - uid: 8071 components: @@ -49960,15 +52150,10 @@ entities: - type: Transform pos: 25.5,-40.5 parent: 2 - - uid: 15380 - components: - - type: Transform - pos: 29.5,-16.5 - parent: 2 - - uid: 15399 + - uid: 15118 components: - type: Transform - pos: 29.5,-15.5 + pos: 46.5,-13.5 parent: 2 - uid: 15438 components: @@ -50010,6 +52195,11 @@ entities: - type: Transform pos: 21.5,-34.5 parent: 2 + - uid: 16250 + components: + - type: Transform + pos: -5.5,17.5 + parent: 16504 - uid: 16251 components: - type: Transform @@ -51520,6 +53710,46 @@ entities: - type: Transform pos: 30.5,22.5 parent: 16504 + - uid: 20501 + components: + - type: Transform + pos: -10.5,6.5 + parent: 16504 + - uid: 20502 + components: + - type: Transform + pos: -6.5,4.5 + parent: 16504 + - uid: 20506 + components: + - type: Transform + pos: -6.5,5.5 + parent: 16504 + - uid: 20507 + components: + - type: Transform + pos: -6.5,3.5 + parent: 16504 + - uid: 20509 + components: + - type: Transform + pos: -11.5,6.5 + parent: 16504 + - uid: 20510 + components: + - type: Transform + pos: -7.5,6.5 + parent: 16504 + - uid: 20512 + components: + - type: Transform + pos: -6.5,2.5 + parent: 16504 + - uid: 21079 + components: + - type: Transform + pos: -5.5,18.5 + parent: 16504 - uid: 21246 components: - type: Transform @@ -51810,6 +54040,491 @@ entities: - type: Transform pos: 27.5,48.5 parent: 2 + - uid: 22099 + components: + - type: Transform + pos: -5.5,19.5 + parent: 16504 + - uid: 22103 + components: + - type: Transform + pos: -5.5,20.5 + parent: 16504 + - uid: 22147 + components: + - type: Transform + pos: -8.5,6.5 + parent: 16504 + - uid: 22192 + components: + - type: Transform + pos: -9.5,6.5 + parent: 16504 + - uid: 22193 + components: + - type: Transform + pos: -7.5,2.5 + parent: 16504 + - uid: 22194 + components: + - type: Transform + pos: -7.5,1.5 + parent: 16504 + - uid: 22195 + components: + - type: Transform + pos: -7.5,0.5 + parent: 16504 + - uid: 22196 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 16504 + - uid: 22197 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 16504 + - uid: 22198 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 16504 + - uid: 22199 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 16504 + - uid: 22200 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 16504 + - uid: 22201 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 16504 + - uid: 22202 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 16504 + - uid: 22203 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 16504 + - uid: 22204 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 16504 + - uid: 22205 + components: + - type: Transform + pos: -5.5,21.5 + parent: 16504 + - uid: 22245 + components: + - type: Transform + pos: 12.5,25.5 + parent: 2 + - uid: 22246 + components: + - type: Transform + pos: 11.5,25.5 + parent: 2 + - uid: 22247 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 + - uid: 22248 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - uid: 22249 + components: + - type: Transform + pos: 8.5,26.5 + parent: 2 + - uid: 22250 + components: + - type: Transform + pos: 10.5,26.5 + parent: 2 + - uid: 22257 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 + - uid: 22258 + components: + - type: Transform + pos: 11.5,23.5 + parent: 2 + - uid: 22260 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - uid: 22261 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 22262 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - uid: 22263 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 22269 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 22270 + components: + - type: Transform + pos: 6.5,23.5 + parent: 2 + - uid: 22271 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 + - uid: 22272 + components: + - type: Transform + pos: 8.5,25.5 + parent: 2 + - uid: 22282 + components: + - type: Transform + pos: 10.5,23.5 + parent: 2 + - uid: 22293 + components: + - type: Transform + pos: 10.5,21.5 + parent: 2 + - uid: 22294 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 22414 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 2 + - uid: 22415 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 22416 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 22417 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 22418 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 2 + - uid: 22420 + components: + - type: Transform + pos: -5.5,22.5 + parent: 16504 + - uid: 22421 + components: + - type: Transform + pos: -5.5,23.5 + parent: 16504 + - uid: 22422 + components: + - type: Transform + pos: -5.5,24.5 + parent: 16504 + - uid: 22423 + components: + - type: Transform + pos: -5.5,25.5 + parent: 16504 + - uid: 22424 + components: + - type: Transform + pos: -5.5,26.5 + parent: 16504 + - uid: 22425 + components: + - type: Transform + pos: -5.5,27.5 + parent: 16504 + - uid: 22426 + components: + - type: Transform + pos: -5.5,29.5 + parent: 16504 + - uid: 22427 + components: + - type: Transform + pos: -5.5,31.5 + parent: 16504 + - uid: 22428 + components: + - type: Transform + pos: -5.5,32.5 + parent: 16504 + - uid: 22429 + components: + - type: Transform + pos: -5.5,33.5 + parent: 16504 + - uid: 22430 + components: + - type: Transform + pos: -5.5,30.5 + parent: 16504 + - uid: 22431 + components: + - type: Transform + pos: -5.5,35.5 + parent: 16504 + - uid: 22432 + components: + - type: Transform + pos: -5.5,36.5 + parent: 16504 + - uid: 22433 + components: + - type: Transform + pos: -5.5,37.5 + parent: 16504 + - uid: 22434 + components: + - type: Transform + pos: -5.5,38.5 + parent: 16504 + - uid: 22435 + components: + - type: Transform + pos: -5.5,39.5 + parent: 16504 + - uid: 22436 + components: + - type: Transform + pos: -4.5,39.5 + parent: 16504 + - uid: 22437 + components: + - type: Transform + pos: -3.5,39.5 + parent: 16504 + - uid: 22438 + components: + - type: Transform + pos: -2.5,39.5 + parent: 16504 + - uid: 22439 + components: + - type: Transform + pos: -1.5,39.5 + parent: 16504 + - uid: 22440 + components: + - type: Transform + pos: -0.5,39.5 + parent: 16504 + - uid: 22441 + components: + - type: Transform + pos: 0.5,39.5 + parent: 16504 + - uid: 22442 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 16504 + - uid: 22443 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 16504 + - uid: 22444 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 16504 + - uid: 22445 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 16504 + - uid: 22446 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 16504 + - uid: 22447 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 16504 + - uid: 22448 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 16504 + - uid: 22449 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 16504 + - uid: 22450 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 16504 + - uid: 22451 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 16504 + - uid: 22452 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 16504 + - uid: 22453 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 16504 + - uid: 22454 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 16504 + - uid: 22455 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 16504 + - uid: 22456 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 16504 + - uid: 22457 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 16504 + - uid: 22458 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 16504 + - uid: 22459 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 16504 + - uid: 22460 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 16504 + - uid: 22461 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 16504 + - uid: 22462 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 16504 + - uid: 22463 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 16504 + - uid: 22464 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 16504 + - uid: 22465 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 16504 + - uid: 22466 + components: + - type: Transform + pos: -2.5,11.5 + parent: 16504 + - uid: 22467 + components: + - type: Transform + pos: -2.5,12.5 + parent: 16504 + - uid: 22468 + components: + - type: Transform + pos: -2.5,13.5 + parent: 16504 + - uid: 22469 + components: + - type: Transform + pos: -1.5,13.5 + parent: 16504 + - uid: 22470 + components: + - type: Transform + pos: 0.5,13.5 + parent: 16504 + - uid: 22471 + components: + - type: Transform + pos: 2.5,13.5 + parent: 16504 + - uid: 22472 + components: + - type: Transform + pos: 3.5,13.5 + parent: 16504 + - uid: 22473 + components: + - type: Transform + pos: 4.5,13.5 + parent: 16504 + - uid: 22474 + components: + - type: Transform + pos: 5.5,13.5 + parent: 16504 + - uid: 22475 + components: + - type: Transform + pos: 6.5,13.5 + parent: 16504 - proto: CableMVStack entities: - uid: 5293 @@ -51907,6 +54622,119 @@ entities: - type: Transform pos: 30.5,-38.5 parent: 2 +- proto: CandleBlackSmallInfinite + entities: + - uid: 22251 + components: + - type: Transform + pos: 73.48771,60.5649 + parent: 2 + - uid: 22252 + components: + - type: Transform + pos: 76.51896,63.549274 + parent: 2 + - uid: 22253 + components: + - type: Transform + pos: 79.503334,60.5024 + parent: 2 + - uid: 22254 + components: + - type: Transform + pos: 76.42521,57.5649 + parent: 2 + - uid: 22266 + components: + - type: Transform + pos: 26.495583,47.54221 + parent: 2 + - uid: 22283 + components: + - type: Transform + pos: 19.25549,47.337704 + parent: 2 + - uid: 22284 + components: + - type: Transform + pos: 19.66174,47.743954 + parent: 2 + - uid: 22285 + components: + - type: Transform + pos: 16.38049,48.88458 + parent: 2 + - uid: 22286 + components: + - type: Transform + pos: 15.458614,49.587704 + parent: 2 + - uid: 22287 + components: + - type: Transform + pos: 16.16174,43.650204 + parent: 2 + - uid: 22288 + components: + - type: Transform + pos: 16.63049,45.181454 + parent: 2 + - uid: 22289 + components: + - type: Transform + pos: 21.09924,51.666508 + parent: 2 + - uid: 22290 + components: + - type: Transform + pos: 23.279367,51.541508 + parent: 2 + - uid: 22291 + components: + - type: Transform + pos: 29.17732,51.588383 + parent: 2 + - uid: 22292 + components: + - type: Transform + pos: 31.39607,51.463383 + parent: 2 + - uid: 22300 + components: + - type: Transform + pos: 24.619537,26.150465 + parent: 2 + - uid: 22301 + components: + - type: Transform + pos: 23.994537,27.66609 + parent: 2 + - uid: 22302 + components: + - type: Transform + pos: 25.072662,27.60359 + parent: 2 +- proto: CandleBlueSmallInfinite + entities: + - uid: 22265 + components: + - type: Transform + pos: 23.308083,47.432835 + parent: 2 +- proto: CandleGreenSmallInfinite + entities: + - uid: 22267 + components: + - type: Transform + pos: 25.401833,47.47971 + parent: 2 +- proto: CandlePurpleSmallInfinite + entities: + - uid: 22264 + components: + - type: Transform + pos: 24.714333,47.557835 + parent: 2 - proto: CandyBowl entities: - uid: 5310 @@ -52121,12 +54949,47 @@ entities: parent: 2 - proto: CarpetBlack entities: + - uid: 3606 + components: + - type: Transform + pos: 25.5,47.5 + parent: 2 + - uid: 5218 + components: + - type: Transform + pos: 25.5,46.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + pos: 23.5,47.5 + parent: 2 + - uid: 5220 + components: + - type: Transform + pos: 24.5,47.5 + parent: 2 - uid: 5222 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,54.5 parent: 2 + - uid: 5223 + components: + - type: Transform + pos: 26.5,47.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: 26.5,46.5 + parent: 2 + - uid: 5306 + components: + - type: Transform + pos: 26.5,48.5 + parent: 2 - uid: 5341 components: - type: Transform @@ -52193,6 +55056,16 @@ entities: - type: Transform pos: 14.5,47.5 parent: 2 + - uid: 5931 + components: + - type: Transform + pos: 25.5,48.5 + parent: 2 + - uid: 5932 + components: + - type: Transform + pos: 24.5,46.5 + parent: 2 - uid: 6517 components: - type: Transform @@ -52205,12 +55078,27 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,42.5 parent: 2 + - uid: 6520 + components: + - type: Transform + pos: 23.5,46.5 + parent: 2 - uid: 6522 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,53.5 parent: 2 + - uid: 6523 + components: + - type: Transform + pos: 24.5,48.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + pos: 23.5,48.5 + parent: 2 - uid: 9953 components: - type: Transform @@ -52971,80 +55859,6 @@ entities: rot: 3.141592653589793 rad pos: 37.5,68.5 parent: 2 -- proto: CarpetPink - entities: - - uid: 5218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,48.5 - parent: 2 - - uid: 5219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,46.5 - parent: 2 - - uid: 5220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,47.5 - parent: 2 - - uid: 5223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,48.5 - parent: 2 - - uid: 5224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,46.5 - parent: 2 - - uid: 5306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,46.5 - parent: 2 - - uid: 6520 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,46.5 - parent: 2 - - uid: 6523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,48.5 - parent: 2 - - uid: 7565 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,48.5 - parent: 2 - - uid: 8150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,47.5 - parent: 2 - - uid: 10906 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,47.5 - parent: 2 - - uid: 14023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,47.5 - parent: 2 - proto: CarpetPurple entities: - uid: 5217 @@ -53125,6 +55939,13 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,42.5 parent: 2 +- proto: CarvedPumpkinSmall + entities: + - uid: 22268 + components: + - type: Transform + pos: 24.31805,47.57346 + parent: 2 - proto: Catwalk entities: - uid: 537 @@ -54963,12 +57784,6 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,73.5 parent: 2 - - uid: 5763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,27.5 - parent: 2 - uid: 5765 components: - type: Transform @@ -54987,24 +57802,6 @@ entities: rot: 3.141592653589793 rad pos: 25.5,15.5 parent: 2 - - uid: 5769 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,27.5 - parent: 2 - - uid: 5770 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,28.5 - parent: 2 - - uid: 5771 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,28.5 - parent: 2 - uid: 5772 components: - type: Transform @@ -55478,6 +58275,11 @@ entities: rot: 3.141592653589793 rad pos: 72.5,6.5 parent: 2 + - uid: 6457 + components: + - type: Transform + pos: -9.5,18.5 + parent: 2 - uid: 6515 components: - type: Transform @@ -55499,20 +58301,15 @@ entities: - type: Transform pos: -6.5,17.5 parent: 2 - - uid: 10790 - components: - - type: Transform - pos: -9.5,18.5 - parent: 2 - uid: 10896 components: - type: Transform pos: -8.5,19.5 parent: 2 - - uid: 10897 + - uid: 10912 components: - type: Transform - pos: -9.5,19.5 + pos: -8.5,17.5 parent: 2 - uid: 10914 components: @@ -55532,7 +58329,7 @@ entities: - uid: 11238 components: - type: Transform - pos: -9.5,17.5 + pos: -11.5,18.5 parent: 2 - uid: 11515 components: @@ -55547,7 +58344,7 @@ entities: - uid: 11667 components: - type: Transform - pos: -12.5,17.5 + pos: -10.5,18.5 parent: 2 - uid: 12554 components: @@ -55752,51 +58549,6 @@ entities: - type: Transform pos: 61.5,-22.5 parent: 2 - - uid: 18616 - components: - - type: Transform - pos: -6.5,-9.5 - parent: 16504 - - uid: 18617 - components: - - type: Transform - pos: -6.5,-10.5 - parent: 16504 - - uid: 18618 - components: - - type: Transform - pos: -5.5,-9.5 - parent: 16504 - - uid: 18619 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 16504 - - uid: 18620 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 16504 - - uid: 18621 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 16504 - - uid: 18622 - components: - - type: Transform - pos: -3.5,-9.5 - parent: 16504 - - uid: 18623 - components: - - type: Transform - pos: -3.5,-10.5 - parent: 16504 - - uid: 18624 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 16504 - uid: 18625 components: - type: Transform @@ -55892,16 +58644,6 @@ entities: - type: Transform pos: 7.5,-10.5 parent: 16504 - - uid: 18644 - components: - - type: Transform - pos: -5.5,-11.5 - parent: 16504 - - uid: 18645 - components: - - type: Transform - pos: -3.5,-11.5 - parent: 16504 - uid: 18646 components: - type: Transform @@ -55922,11 +58664,6 @@ entities: - type: Transform pos: 0.5,-11.5 parent: 16504 - - uid: 18650 - components: - - type: Transform - pos: 1.5,-11.5 - parent: 16504 - uid: 18651 components: - type: Transform @@ -55947,11 +58684,6 @@ entities: - type: Transform pos: 6.5,-11.5 parent: 16504 - - uid: 18655 - components: - - type: Transform - pos: -4.5,-12.5 - parent: 16504 - uid: 18656 components: - type: Transform @@ -55967,11 +58699,6 @@ entities: - type: Transform pos: -1.5,-12.5 parent: 16504 - - uid: 18659 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 16504 - uid: 18660 components: - type: Transform @@ -56434,6 +59161,16 @@ entities: - type: Transform pos: -17.5,12.5 parent: 16504 + - uid: 20508 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 16504 + - uid: 20513 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 16504 - uid: 21209 components: - type: Transform @@ -56540,15 +59277,25 @@ entities: - type: Transform pos: 59.5,-25.5 parent: 2 + - uid: 21892 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 + - uid: 21896 + components: + - type: Transform + pos: -12.5,18.5 + parent: 2 - uid: 21897 components: - type: Transform - pos: -11.5,17.5 + pos: -10.5,19.5 parent: 2 - uid: 21909 components: - type: Transform - pos: -10.5,17.5 + pos: -11.5,19.5 parent: 2 - uid: 21917 components: @@ -56650,30 +59397,45 @@ entities: - type: Transform pos: 51.5,-19.5 parent: 2 - - uid: 22010 + - uid: 22148 components: - type: Transform - pos: -12.5,18.5 - parent: 2 - - uid: 22011 + pos: 0.5,-12.5 + parent: 16504 + - uid: 22242 components: - type: Transform pos: -12.5,19.5 parent: 2 - - uid: 22012 + - uid: 22243 components: - type: Transform - pos: -11.5,18.5 + pos: -13.5,19.5 parent: 2 - - uid: 22013 + - uid: 22500 components: - type: Transform - pos: -11.5,19.5 + pos: -13.5,17.5 parent: 2 - - uid: 22015 + - uid: 22501 components: - type: Transform - pos: -10.5,18.5 + pos: -12.5,17.5 + parent: 2 + - uid: 22503 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 22504 + components: + - type: Transform + pos: -9.5,17.5 + parent: 2 + - uid: 22505 + components: + - type: Transform + pos: -6.5,16.5 parent: 2 - proto: Chair entities: @@ -56718,11 +59480,6 @@ entities: - type: Transform pos: 7.5,16.5 parent: 2 - - uid: 5959 - components: - - type: Transform - pos: 74.5,56.5 - parent: 2 - uid: 5960 components: - type: Transform @@ -56735,21 +59492,6 @@ entities: rot: -1.5707963267948966 rad pos: 78.5,59.5 parent: 2 - - uid: 5962 - components: - - type: Transform - pos: 77.5,56.5 - parent: 2 - - uid: 5963 - components: - - type: Transform - pos: 79.5,56.5 - parent: 2 - - uid: 5964 - components: - - type: Transform - pos: 78.5,56.5 - parent: 2 - uid: 5966 components: - type: Transform @@ -56855,164 +59597,16 @@ entities: rot: 3.141592653589793 rad pos: 68.5,56.5 parent: 2 - - uid: 5985 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,58.5 - parent: 2 - - uid: 5986 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,59.5 - parent: 2 - - uid: 5987 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,57.5 - parent: 2 - - uid: 5988 - components: - - type: Transform - pos: 75.5,56.5 - parent: 2 - uid: 5989 components: - type: Transform pos: 77.5,62.5 parent: 2 - - uid: 5990 - components: - - type: Transform - pos: 73.5,56.5 - parent: 2 - - uid: 5991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,57.5 - parent: 2 - - uid: 5992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,58.5 - parent: 2 - - uid: 5993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,59.5 - parent: 2 - - uid: 5994 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,61.5 - parent: 2 - - uid: 5995 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,62.5 - parent: 2 - - uid: 5996 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,63.5 - parent: 2 - - uid: 5997 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,64.5 - parent: 2 - - uid: 5998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,64.5 - parent: 2 - - uid: 5999 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,64.5 - parent: 2 - - uid: 6000 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 77.5,64.5 - parent: 2 - - uid: 6001 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,64.5 - parent: 2 - - uid: 6002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,64.5 - parent: 2 - - uid: 6003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,63.5 - parent: 2 - - uid: 6004 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,62.5 - parent: 2 - - uid: 6005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,61.5 - parent: 2 - uid: 6006 components: - type: Transform pos: 68.5,64.5 parent: 2 - - uid: 6007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,62.5 - parent: 2 - - uid: 6008 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,61.5 - parent: 2 - - uid: 6009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,60.5 - parent: 2 - - uid: 6010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,59.5 - parent: 2 - - uid: 6011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,58.5 - parent: 2 - uid: 6012 components: - type: Transform @@ -57659,6 +60253,11 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,34.5 parent: 16504 + - uid: 22321 + components: + - type: Transform + pos: 60.56198,23.590954 + parent: 2 - proto: ChairOfficeLight entities: - uid: 6087 @@ -58054,6 +60653,11 @@ entities: - type: Transform pos: 18.5,-14.5 parent: 2 + - uid: 18622 + components: + - type: Transform + pos: 40.5,53.5 + parent: 2 - proto: ChessBoard entities: - uid: 6135 @@ -58198,6 +60802,18 @@ entities: rot: 1.5707963267948966 rad pos: 63.5,48.5 parent: 2 + - uid: 22395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,47.5 + parent: 2 + - uid: 22396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,49.5 + parent: 2 - proto: CloningPod entities: - uid: 6143 @@ -58478,6 +61094,35 @@ entities: - type: Transform pos: 66.5,47.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: + - 22476 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 18778 components: - type: Transform @@ -59497,6 +62142,34 @@ entities: - type: Transform pos: -18.156078,32.72587 parent: 16504 +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 6605 + components: + - type: Transform + pos: 0.2772286,30.85181 + parent: 2 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 13884 + components: + - type: Transform + pos: 0.5272286,30.867435 + parent: 2 +- proto: ClothingHandsGlovesBoxingRigged + entities: + - uid: 15429 + components: + - type: Transform + pos: 0.5584786,30.85181 + parent: 2 +- proto: ClothingHandsGlovesBoxingYellow + entities: + - uid: 12965 + components: + - type: Transform + pos: 0.6678536,30.867435 + parent: 2 - proto: ClothingHandsGlovesColorGray entities: - uid: 6271 @@ -59970,28 +62643,31 @@ entities: - uid: 6308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.6636822,30.43489 + pos: 74.30056,52.60349 parent: 2 - uid: 6309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.7370658,30.86296 + pos: 79.597435,52.587864 + parent: 2 +- proto: ClothingHeadPyjamaSyndicatePink + entities: + - uid: 22225 + components: + - type: Transform + pos: 75.36306,52.60349 parent: 2 - proto: ClothingHeadPyjamaSyndicateRed entities: - uid: 6310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.28453374,30.777348 + pos: 78.659935,52.587864 parent: 2 - uid: 6311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.28453374,30.43489 + pos: 76.159935,52.556614 parent: 2 - proto: ClothingHeadRastaHat entities: @@ -60239,7 +62915,7 @@ entities: - uid: 6355 components: - type: Transform - pos: 80.56114,33.60305 + pos: 83.4391,33.431293 parent: 2 - proto: ClothingNeckMainPin entities: @@ -60678,12 +63354,12 @@ entities: - uid: 6404 components: - type: Transform - pos: 3.6236908,26.323994 + pos: 76.59434,53.742016 parent: 2 - uid: 6405 components: - type: Transform - pos: 3.6382983,26.57229 + pos: 76.42246,53.94514 parent: 2 - uid: 6406 components: @@ -60912,12 +63588,6 @@ entities: - type: InsideEntityStorage - proto: Cobweb1 entities: - - uid: 18829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 16504 - uid: 18830 components: - type: Transform @@ -61143,6 +63813,17 @@ entities: - type: Transform pos: 76.5,11.5 parent: 2 + - uid: 12076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-5.5 + parent: 2 + - uid: 12574 + components: + - type: Transform + pos: 62.5,10.5 + parent: 2 - uid: 18839 components: - type: Transform @@ -61187,11 +63868,11 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-3.5 parent: 16504 - - uid: 21892 + - uid: 20473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-5.5 + rot: 3.141592653589793 rad + pos: 64.5,19.5 parent: 2 - proto: ComputerCargoBounty entities: @@ -61228,12 +63909,6 @@ entities: parent: 2 - proto: ComputerComms entities: - - uid: 4321 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-39.5 - parent: 2 - uid: 6458 components: - type: Transform @@ -61418,6 +64093,15 @@ entities: parent: 2 - proto: ComputerRoboticsControl entities: + - uid: 3180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-39.5 + parent: 2 + missingComponents: + - AccessReader + - Lock - uid: 6483 components: - type: Transform @@ -61438,7 +64122,7 @@ entities: parent: 2 - proto: ComputerShuttleSalvage entities: - - uid: 8105 + - uid: 10790 components: - type: Transform rot: 3.141592653589793 rad @@ -62183,13 +64867,43 @@ entities: - type: Transform pos: 20.5,21.5 parent: 2 -- proto: CrateSyndicateSurplusBundle +- proto: CrateSyndicateSuperSurplusBundle entities: - - uid: 18886 + - uid: 10552 components: - type: Transform - pos: -14.5,34.5 + pos: 0.5,26.5 parent: 16504 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + 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: + - 22096 + - 22098 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateTrashCart entities: - uid: 6416 @@ -62241,6 +64955,11 @@ entities: - type: Transform pos: -17.5,16.5 parent: 16504 + - uid: 22499 + components: + - type: Transform + pos: -26.5,16.5 + parent: 16504 - proto: CrateTrashCartFilled entities: - uid: 6587 @@ -62346,8 +65065,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -62364,11 +65083,11 @@ entities: showEnts: False occludes: True ents: - - 6595 - - 6593 - - 6592 - - 6591 - 6594 + - 6591 + - 6592 + - 6593 + - 6595 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -62463,33 +65182,45 @@ entities: rot: -1.5707963267948966 rad pos: 42.20802,-26.697763 parent: 2 +- proto: CryogenicSleepUnit + entities: + - uid: 22394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,38.5 + parent: 2 - proto: CryogenicSleepUnitSpawner entities: - - uid: 6605 + - uid: 22220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,27.5 + rot: 3.141592653589793 rad + pos: 74.5,52.5 parent: 2 - - uid: 6606 + - uid: 22221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,28.5 + rot: 3.141592653589793 rad + pos: 75.5,52.5 + parent: 2 + - uid: 22222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,52.5 parent: 2 - proto: CryogenicSleepUnitSpawnerLateJoin entities: - - uid: 6607 + - uid: 22223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,28.5 + pos: 79.5,52.5 parent: 2 - - uid: 6608 + - uid: 22224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,27.5 + pos: 78.5,52.5 parent: 2 - proto: CryoPod entities: @@ -62578,16 +65309,15 @@ entities: - type: Transform pos: 41.5,66.5 parent: 2 - - uid: 7894 + - uid: 8150 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,40.5 + pos: 31.5,40.5 parent: 2 - - uid: 11496 + - uid: 18644 components: - type: Transform - pos: 32.5,48.5 + pos: 32.5,47.5 parent: 2 - proto: CurtainsOrangeOpen entities: @@ -62619,6 +65349,17 @@ entities: rot: -1.5707963267948966 rad pos: 38.584244,-26.582815 parent: 2 +- proto: DefaultStationBeacon + entities: + - uid: 22391 + components: + - type: Transform + pos: 15.5,40.5 + parent: 2 + - type: NavMapBeacon + text: Воксбокс + - type: WarpPoint + location: Воксбокс - proto: DefaultStationBeaconAISatellite entities: - uid: 21883 @@ -62785,6 +65526,15 @@ entities: - type: Transform pos: 3.5,28.5 parent: 2 + - type: NavMapBeacon + text: Боксёрский ринг + - type: WarpPoint + location: Боксёрский ринг + - uid: 10550 + components: + - type: Transform + pos: 77.5,53.5 + parent: 2 - type: NavMapBeacon text: Криосон - type: WarpPoint @@ -68621,7 +71371,7 @@ entities: - type: Label currentLabel: кофейный ликёр - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.35452935 + sprayFizzinessThresholdRoll: 0.8627797 - type: NameModifier baseName: бутылка кофейного ликёра - type: ContainerContainer @@ -68903,7 +71653,7 @@ entities: - type: Label currentLabel: ром - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.08876361 + sprayFizzinessThresholdRoll: 0.8788875 - type: NameModifier baseName: кубинский пряный ром капитана Пита - type: ContainerContainer @@ -68940,7 +71690,7 @@ entities: - type: Label currentLabel: текила - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.39504492 + sprayFizzinessThresholdRoll: 0.1993812 - type: NameModifier baseName: бутылка текилы Каккаво гарантированного качества - type: ContainerContainer @@ -68981,7 +71731,7 @@ entities: - type: Label currentLabel: вермут - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.04999871 + sprayFizzinessThresholdRoll: 0.57316935 - type: NameModifier baseName: бутылка вермута Золотой глаз - type: ContainerContainer @@ -69004,7 +71754,7 @@ entities: - type: Label currentLabel: водка - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.044492036 + sprayFizzinessThresholdRoll: 0.6057508 - type: NameModifier baseName: бутылка водки - type: ContainerContainer @@ -69072,7 +71822,7 @@ entities: - type: Label currentLabel: вино - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.7278546 + sprayFizzinessThresholdRoll: 0.42002517 - type: NameModifier baseName: особое двухбородое бородатое вино - type: ContainerContainer @@ -69173,6 +71923,18 @@ entities: parent: 2 - proto: EmergencyLight entities: + - uid: 3482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,53.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,53.5 + parent: 2 - uid: 6935 components: - type: Transform @@ -70025,10 +72787,25 @@ entities: - type: Transform pos: 49.491436,-0.4052043 parent: 2 - - uid: 7592 + - uid: 22233 + components: + - type: Transform + pos: 47.507214,-9.464468 + parent: 2 + - uid: 22234 + components: + - type: Transform + pos: 44.49159,-10.245718 + parent: 2 + - uid: 22241 + components: + - type: Transform + pos: 44.52284,-9.401968 + parent: 2 + - uid: 22244 components: - type: Transform - pos: 48.53831,-11.463919 + pos: 44.475964,-5.4175925 parent: 2 - proto: EncryptionKeyBinary entities: @@ -70116,6 +72893,13 @@ entities: parent: 7611 - type: Physics canCollide: False +- proto: EnergyCutlass + entities: + - uid: 19855 + components: + - type: Transform + pos: 74.66137,0.62739515 + parent: 2 - proto: EnergyShield entities: - uid: 19046 @@ -70415,6 +73199,18 @@ entities: - type: Transform pos: 18.5,4.5 parent: 16504 +- proto: FenceMetalBroken + entities: + - uid: 12580 + components: + - type: Transform + pos: 11.5,61.5 + parent: 2 + - uid: 13081 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 - proto: FigureSpawner entities: - uid: 7655 @@ -71467,6 +74263,14 @@ entities: - type: Transform pos: -14.5,8.5 parent: 16504 + - uid: 22332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,72.5 + parent: 2 + missingComponents: + - AccessReader - proto: FireAxeCabinetOpen entities: - uid: 19055 @@ -72752,6 +75556,7 @@ entities: - 7660 - 7702 - 134 + - 20470 - uid: 7838 components: - type: Transform @@ -74235,8 +77040,39 @@ entities: - type: Transform pos: 45.913815,99.340836 parent: 2 +- proto: FloodlightBroken + entities: + - uid: 12524 + components: + - type: Transform + pos: 12.644675,55.259033 + parent: 2 + - uid: 20475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.447285,17.120422 + parent: 2 - proto: FloorDrain entities: + - uid: 5051 + components: + - type: Transform + pos: 40.5,50.5 + parent: 2 + - type: Drain + range: 6 + - type: Fixtures + fixtures: {} + - uid: 5092 + components: + - type: Transform + pos: 29.5,57.5 + parent: 2 + - type: Drain + range: 10 + - type: Fixtures + fixtures: {} - uid: 7974 components: - type: Transform @@ -74383,6 +77219,13 @@ entities: rot: 3.141592653589793 rad pos: 80.54558,6.2311044 parent: 2 +- proto: FloorTileItemWhite + entities: + - uid: 3103 + components: + - type: Transform + pos: 54.460403,-3.8163702 + parent: 2 - proto: FloorWaterEntity entities: - uid: 7990 @@ -74609,20 +77452,8 @@ entities: - type: Transform pos: 82.5,19.5 parent: 2 -- proto: FloraTree03 - entities: - - uid: 8033 - components: - - type: Transform - pos: 75.15459,52.569176 - parent: 2 - proto: FloraTree05 entities: - - uid: 8034 - components: - - type: Transform - pos: 78.75324,52.506676 - parent: 2 - uid: 8035 components: - type: Transform @@ -74630,10 +77461,17 @@ entities: parent: 2 - proto: FloraTreeLarge03 entities: - - uid: 8036 + - uid: 5052 components: - type: Transform - pos: 29.949375,6.7081037 + pos: 28.894838,8.171898 + parent: 2 +- proto: FloraTreeLarge04 + entities: + - uid: 5093 + components: + - type: Transform + pos: 30.551088,7.1406474 parent: 2 - proto: FloraTreeSnow03 entities: @@ -74668,6 +77506,26 @@ entities: - type: Transform pos: -23.543486,13.563924 parent: 16504 + - uid: 22495 + components: + - type: Transform + pos: -26.068237,13.217285 + parent: 16504 + - uid: 22496 + components: + - type: Transform + pos: -27.240112,15.38916 + parent: 16504 + - uid: 22497 + components: + - type: Transform + pos: -25.802612,15.92041 + parent: 16504 + - uid: 22498 + components: + - type: Transform + pos: -24.130737,11.51416 + parent: 16504 - proto: FoodBagel entities: - uid: 8040 @@ -74742,6 +77600,13 @@ entities: - type: Transform pos: 40.346996,-6.35211 parent: 2 +- proto: FoodBoxDonkpocketCarp + entities: + - uid: 22485 + components: + - type: Transform + pos: 52.618362,48.626923 + parent: 2 - proto: FoodBoxDonkpocketHonk entities: - uid: 8049 @@ -75089,31 +77954,49 @@ entities: entities: - uid: 21300 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform pos: 15.983978,49.740993 parent: 2 - uid: 21301 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform pos: 16.205364,50.040474 parent: 2 - uid: 21305 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform pos: 15.749568,50.040474 parent: 2 - uid: 21306 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform pos: 15.944909,50.352974 parent: 2 - uid: 21307 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform pos: 16.37466,50.365993 parent: 2 - uid: 21309 components: + - type: MetaData + desc: Шар для игры в бильярд. + name: бильярдный шар - type: Transform pos: 15.5412035,50.352974 parent: 2 @@ -75349,7 +78232,7 @@ entities: - uid: 8106 components: - type: Transform - pos: 47.52881,-0.44988373 + pos: 47.5,-0.44 parent: 2 - proto: GasCanisterBrokenBase entities: @@ -76615,6 +79498,18 @@ entities: color: '#FF0000FF' - proto: GasPipeBroken entities: + - uid: 10393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,6.5 + parent: 2 + - uid: 12514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,10.5 + parent: 2 - uid: 19124 components: - type: Transform @@ -89632,11 +92527,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#4169E1FF' - - uid: 9702 - components: - - type: Transform - pos: 1.5,28.5 - parent: 2 - uid: 9703 components: - type: Transform @@ -89722,17 +92612,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9716 - components: - - type: Transform - pos: 2.5,28.5 - parent: 2 - - uid: 9717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,27.5 - parent: 2 - uid: 9718 components: - type: Transform @@ -91028,12 +93907,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#4169E1FF' - - uid: 9892 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,27.5 - parent: 2 - uid: 9893 components: - type: Transform @@ -92480,6 +95353,9 @@ entities: rot: 3.141592653589793 rad pos: 55.5,17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 20470 - type: AtmosPipeColor color: '#4169E1FF' - uid: 10003 @@ -93279,12 +96155,6 @@ entities: - 16256 - type: AtmosPipeColor color: '#4169E1FF' - - uid: 21483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-42.5 - parent: 2 - uid: 21620 components: - type: Transform @@ -93302,6 +96172,9 @@ entities: - type: Transform pos: 16.5,40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2400 - type: AtmosPipeColor color: '#4169E1FF' - proto: GasVentScrubber @@ -94920,6 +97793,9 @@ entities: - type: Transform pos: 17.5,41.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2400 - type: AtmosPipeColor color: '#FF0000FF' - proto: GasVolumePump @@ -94941,13 +97817,6 @@ entities: color: '#4169E1FF' - proto: Gateway entities: - - uid: 19336 - components: - - type: Transform - pos: 0.5,26.5 - parent: 16504 - - type: Gateway - enabled: True - uid: 21815 components: - type: Transform @@ -95013,7 +97882,7 @@ entities: - type: PowerSupplier supplyRampRate: 1500 supplyRampTolerance: 1500 - supplyRate: 25000 + supplyRate: 55000 - proto: GeneratorRTG entities: - uid: 9512 @@ -95545,11 +98414,6 @@ entities: - type: Transform pos: 58.5,44.5 parent: 2 - - uid: 10220 - components: - - type: Transform - pos: 57.5,44.5 - parent: 2 - uid: 10221 components: - type: Transform @@ -95813,12 +98677,6 @@ entities: rot: 3.141592653589793 rad pos: 75.5,68.5 parent: 2 - - uid: 10269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,22.5 - parent: 2 - uid: 10270 components: - type: Transform @@ -96246,16 +99104,6 @@ entities: - type: Transform pos: 38.5,17.5 parent: 2 - - uid: 10355 - components: - - type: Transform - pos: 41.5,17.5 - parent: 2 - - uid: 10356 - components: - - type: Transform - pos: 41.5,20.5 - parent: 2 - uid: 10357 components: - type: Transform @@ -96402,21 +99250,6 @@ entities: - type: Transform pos: 11.5,75.5 parent: 2 - - uid: 10391 - components: - - type: Transform - pos: 9.5,71.5 - parent: 2 - - uid: 10392 - components: - - type: Transform - pos: 9.5,69.5 - parent: 2 - - uid: 10393 - components: - - type: Transform - pos: 11.5,69.5 - parent: 2 - uid: 10394 components: - type: Transform @@ -96427,11 +99260,6 @@ entities: - type: Transform pos: -1.5,22.5 parent: 2 - - uid: 10396 - components: - - type: Transform - pos: 11.5,71.5 - parent: 2 - uid: 10397 components: - type: Transform @@ -96447,11 +99275,6 @@ entities: - type: Transform pos: 10.5,71.5 parent: 2 - - uid: 10400 - components: - - type: Transform - pos: 11.5,73.5 - parent: 2 - uid: 10401 components: - type: Transform @@ -96462,41 +99285,16 @@ entities: - type: Transform pos: 10.5,77.5 parent: 2 - - uid: 10403 - components: - - type: Transform - pos: 9.5,79.5 - parent: 2 - - uid: 10404 - components: - - type: Transform - pos: 9.5,77.5 - parent: 2 - - uid: 10405 - components: - - type: Transform - pos: 11.5,79.5 - parent: 2 - uid: 10406 components: - type: Transform pos: 10.5,79.5 parent: 2 - - uid: 10407 - components: - - type: Transform - pos: 9.5,81.5 - parent: 2 - uid: 10408 components: - type: Transform pos: 10.5,81.5 parent: 2 - - uid: 10409 - components: - - type: Transform - pos: 11.5,81.5 - parent: 2 - uid: 10410 components: - type: Transform @@ -96507,21 +99305,11 @@ entities: - type: Transform pos: 11.5,83.5 parent: 2 - - uid: 10412 - components: - - type: Transform - pos: 9.5,73.5 - parent: 2 - uid: 10413 components: - type: Transform pos: 11.5,74.5 parent: 2 - - uid: 10414 - components: - - type: Transform - pos: 11.5,77.5 - parent: 2 - uid: 10415 components: - type: Transform @@ -96532,11 +99320,6 @@ entities: - type: Transform pos: 10.5,20.5 parent: 2 - - uid: 10417 - components: - - type: Transform - pos: 27.5,-20.5 - parent: 2 - uid: 10418 components: - type: Transform @@ -97154,11 +99937,6 @@ entities: - type: Transform pos: 30.5,-20.5 parent: 2 - - uid: 10541 - components: - - type: Transform - pos: 26.5,-20.5 - parent: 2 - uid: 10542 components: - type: Transform @@ -97184,36 +99962,6 @@ entities: - type: Transform pos: 40.5,-13.5 parent: 2 - - uid: 10547 - components: - - type: Transform - pos: 78.5,54.5 - parent: 2 - - uid: 10548 - components: - - type: Transform - pos: 74.5,54.5 - parent: 2 - - uid: 10549 - components: - - type: Transform - pos: 79.5,54.5 - parent: 2 - - uid: 10550 - components: - - type: Transform - pos: 75.5,54.5 - parent: 2 - - uid: 10551 - components: - - type: Transform - pos: 76.5,54.5 - parent: 2 - - uid: 10552 - components: - - type: Transform - pos: 77.5,54.5 - parent: 2 - uid: 10553 components: - type: Transform @@ -98568,12 +101316,6 @@ entities: - type: Transform pos: 38.5,85.5 parent: 2 - - uid: 10833 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,20.5 - parent: 2 - uid: 10834 components: - type: Transform @@ -98584,12 +101326,6 @@ entities: - type: Transform pos: 32.5,85.5 parent: 2 - - uid: 10836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,17.5 - parent: 2 - uid: 10837 components: - type: Transform @@ -98611,11 +101347,6 @@ entities: - type: Transform pos: 62.5,39.5 parent: 2 - - uid: 10841 - components: - - type: Transform - pos: 62.5,35.5 - parent: 2 - uid: 10842 components: - type: Transform @@ -99225,6 +101956,48 @@ entities: - type: Transform pos: 23.5,34.5 parent: 16504 + - uid: 20377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-20.5 + parent: 2 + - uid: 20378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-19.5 + parent: 2 + - uid: 20379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-18.5 + parent: 2 + - uid: 20380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-17.5 + parent: 2 + - uid: 20381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-15.5 + parent: 2 + - uid: 20382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-16.5 + parent: 2 + - uid: 20529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,34.5 + parent: 16504 - uid: 21242 components: - type: Transform @@ -99246,6 +102019,180 @@ entities: - type: Transform pos: -9.5,16.5 parent: 2 + - uid: 22152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,32.5 + parent: 16504 + - uid: 22153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,33.5 + parent: 16504 + - uid: 22154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,29.5 + parent: 16504 + - uid: 22156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,28.5 + parent: 16504 + - uid: 22157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,30.5 + parent: 16504 + - uid: 22158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,27.5 + parent: 16504 + - uid: 22159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,26.5 + parent: 16504 + - uid: 22160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,25.5 + parent: 16504 + - uid: 22161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,24.5 + parent: 16504 + - uid: 22162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,23.5 + parent: 16504 + - uid: 22163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,22.5 + parent: 16504 + - uid: 22165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,20.5 + parent: 16504 + - uid: 22166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,34.5 + parent: 16504 + - uid: 22168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,32.5 + parent: 16504 + - uid: 22169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,30.5 + parent: 16504 + - uid: 22170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,29.5 + parent: 16504 + - uid: 22171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,31.5 + parent: 16504 + - uid: 22172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,27.5 + parent: 16504 + - uid: 22173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,26.5 + parent: 16504 + - uid: 22174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,25.5 + parent: 16504 + - uid: 22175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,24.5 + parent: 16504 + - uid: 22177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,22.5 + parent: 16504 + - uid: 22178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,21.5 + parent: 16504 + - uid: 22179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,20.5 + parent: 16504 + - uid: 22189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,33.5 + parent: 16504 + - uid: 22190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,33.5 + parent: 16504 + - uid: 22229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-24.5 + parent: 2 + - uid: 22230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 2 + - uid: 22231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-27.5 + parent: 2 - proto: GrilleBroken entities: - uid: 3170 @@ -99553,17 +102500,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,22.5 parent: 16504 - - uid: 19387 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,33.5 - parent: 16504 - - uid: 19388 - components: - - type: Transform - pos: -23.5,33.5 - parent: 16504 - uid: 21477 components: - type: Transform @@ -99588,6 +102524,69 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,26.5 parent: 2 + - uid: 22155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,28.5 + parent: 16504 + - uid: 22164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,31.5 + parent: 16504 + - uid: 22167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,33.5 + parent: 16504 + - uid: 22176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,28.5 + parent: 16504 + - uid: 22180 + components: + - type: Transform + pos: -33.5,28.5 + parent: 16504 + - uid: 22181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,28.5 + parent: 16504 + - uid: 22182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,23.5 + parent: 16504 + - uid: 22183 + components: + - type: Transform + pos: -33.5,23.5 + parent: 16504 + - uid: 22184 + components: + - type: Transform + pos: -32.5,31.5 + parent: 16504 + - uid: 22185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,33.5 + parent: 16504 + - uid: 22186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,21.5 + parent: 16504 - proto: GrilleDiagonal entities: - uid: 13350 @@ -99623,6 +102622,12 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,32.5 parent: 16504 + - uid: 20533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,33.5 + parent: 16504 - proto: GrilleSpawner entities: - uid: 10979 @@ -99987,6 +102992,11 @@ entities: parent: 16504 - proto: HighSecCommandLocked entities: + - uid: 323 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 2 - uid: 5845 components: - type: Transform @@ -100018,11 +103028,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,26.5 parent: 2 - - uid: 16250 - components: - - type: Transform - pos: 22.5,-31.5 - parent: 2 - proto: HolofanProjectorEmpty entities: - uid: 50 @@ -100731,13 +103736,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 11116 - components: - - type: Transform - parent: 11115 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Joint entities: - uid: 11119 @@ -101085,13 +104083,6 @@ entities: - type: Transform pos: 17.4874,3.4135275 parent: 16504 - - uid: 19425 - components: - - type: MetaData - name: мина - - type: Transform - pos: -7.117131,16.510233 - parent: 16504 - proto: LandMineModular entities: - uid: 19426 @@ -101122,13 +104113,6 @@ entities: - type: Transform pos: 14.918123,2.0781388 parent: 16504 - - uid: 19430 - components: - - type: MetaData - name: мина - - type: Transform - pos: -10.094055,15.385233 - parent: 16504 - uid: 19431 components: - type: MetaData @@ -101153,6 +104137,18 @@ entities: - type: Transform pos: 78.53705,62.713276 parent: 2 +- proto: LanternFlash + entities: + - uid: 3501 + components: + - type: Transform + pos: 80.48598,31.712543 + parent: 2 + - uid: 4461 + components: + - type: Transform + pos: 80.4391,33.712543 + parent: 2 - proto: LargeBeaker entities: - uid: 11153 @@ -101655,6 +104651,13 @@ entities: showEnts: False occludes: True ent: null +- proto: LockerBrigmedicFilled + entities: + - uid: 11116 + components: + - type: Transform + pos: 62.5,23.5 + parent: 2 - proto: LockerCaptainFilled entities: - uid: 7455 @@ -101743,8 +104746,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -101761,12 +104764,12 @@ entities: showEnts: False occludes: True ents: - - 1025 - - 1022 - - 1024 - - 1023 - - 1027 - 1026 + - 1027 + - 1023 + - 1024 + - 1022 + - 1025 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -102139,11 +105142,6 @@ entities: - type: Transform pos: 50.5,-11.5 parent: 2 - - uid: 11200 - components: - - type: Transform - pos: 62.5,23.5 - parent: 2 - proto: LockerParamedicFilled entities: - uid: 6673 @@ -102295,8 +105293,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -102318,8 +105316,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -102341,8 +105339,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -102720,6 +105718,11 @@ entities: - type: Transform pos: 93.5,21.5 parent: 2 + - uid: 16485 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 16504 - uid: 19442 components: - type: Transform @@ -102735,11 +105738,6 @@ entities: - type: Transform pos: -5.5,-3.5 parent: 16504 - - uid: 19445 - components: - - type: Transform - pos: -24.5,13.5 - parent: 16504 - uid: 19446 components: - type: Transform @@ -102780,6 +105778,18 @@ entities: - type: Transform pos: 21.5,-2.5 parent: 16504 + - uid: 22494 + components: + - type: Transform + pos: -27.5,11.5 + parent: 16504 +- proto: MagazineBoxAntiMaterielBig + entities: + - uid: 22482 + components: + - type: Transform + pos: 61.59202,31.506334 + parent: 2 - proto: MagazinePistolSubMachineGun entities: - uid: 19395 @@ -103210,11 +106220,20 @@ entities: parent: 16504 - proto: MedicalScanner entities: - - uid: 6485 + - uid: 8105 components: - type: Transform pos: 50.5,-6.5 parent: 2 +- proto: MedicalScannerMachineCircuitboard + entities: + - uid: 22098 + components: + - type: Transform + parent: 10552 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MedicalTechFab entities: - uid: 11298 @@ -103491,6 +106510,14 @@ entities: - type: Transform pos: 25.5,51.5 parent: 2 +- proto: Mirror + entities: + - uid: 7783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,10.5 + parent: 2 - proto: MopBucketFull entities: - uid: 11324 @@ -104056,14 +107083,14 @@ entities: parent: 2 - proto: OpporozidoneBeakerSmall entities: - - uid: 22025 + - uid: 885 components: - type: Transform - pos: 47.70715,-2.3725793 + pos: 47.30019,-2.3926988 parent: 2 - proto: OreBox entities: - - uid: 10912 + - uid: 6485 components: - type: Transform pos: 1.5,11.5 @@ -104177,11 +107204,11 @@ entities: - type: InsideEntityStorage - proto: PaintingSkeletonCigarette entities: - - uid: 11384 + - uid: 6607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,30.5 + rot: 1.5707963267948966 rad + pos: 4.5,29.5 parent: 2 - proto: PaladinCircuitBoard entities: @@ -104348,6 +107375,32 @@ entities: как я перед гсб отчитыватся буду... + - uid: 10897 + components: + - type: Transform + rot: 0.22689280275926285 rad + pos: 47.691822,-5.410201 + parent: 2 + - type: Paper + stampState: paper_stamp-clown + stampedBy: + - stampedColor: '#FF33CCFF' + stampedName: stamp-component-stamped-name-clown + content: >2+ + + + Всем привет! Это клоун Бим-Бон!!! + + Я случайно взорвал клонирующую машину. Ну, вы там это, не серчайте =) + + Оставил вам немного [bold]Оппорозидона[/bold] и его рецепт в Крио комнате. Он довольно простой. + + + Откуда у меня Оппорозидон и как я узнал его рецепт? + + Всё очень просто! + + [head=2]ГЛУПЕНЬКИЙ ХОНК-ХОООНК!!![/head] - uid: 11385 components: - type: Transform @@ -105045,36 +108098,10 @@ entities: ░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ░░░░░░░░░░░░░░░░░░░░░░░░░ [/bold] - - uid: 22024 + - uid: 22519 components: - type: Transform - rot: 0.22689280275926285 rad - pos: 47.723507,-5.366261 - parent: 2 - - type: Paper - stampState: paper_stamp-clown - stampedBy: - - stampedColor: '#FF33CCFF' - stampedName: stamp-component-stamped-name-clown - content: >2- - - - Всем привет! Это клоун Бим-Бон!!! - - Я случайно взорвал клонирующую машину. Ну, вы там это, не серчайте =) - - Оставил вам немного [bold]Оппорозидона[/bold] и его рецепт в Крио комнате. Он довольно простой. - - - Откуда у меня Оппорозидон и как я узнал его рецепт? - - Всё очень просто! - - [head=2]ГЛУПЕНЬКИЙ ХОНК-ХОООНК!!![/head] - - uid: 22026 - components: - - type: Transform - pos: 47.340557,-2.3626688 + pos: 47.676785,-2.36627 parent: 2 - type: Paper content: >- @@ -105570,68 +108597,52 @@ entities: rot: 3.141592653589793 rad pos: 78.5,7.5 parent: 2 - - uid: 19511 - components: - - type: Transform - pos: 8.5,36.5 - parent: 16504 - - uid: 19512 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,30.5 - parent: 16504 - - uid: 19513 + - uid: 14689 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,29.5 + pos: 1.5,41.5 parent: 16504 - - uid: 19514 + - uid: 19511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,30.5 + pos: 8.5,36.5 parent: 16504 - - uid: 19515 + - uid: 22102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,29.5 + rot: 1.5707963267948966 rad + pos: 1.5,42.5 parent: 16504 - - uid: 19516 + - uid: 22105 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,27.5 + pos: 2.5,43.5 parent: 16504 - - uid: 19517 + - uid: 22106 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,25.5 + pos: 1.5,43.5 parent: 16504 - - uid: 19518 + - uid: 22107 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,27.5 + pos: -0.5,43.5 parent: 16504 - - uid: 19519 + - uid: 22141 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,25.5 - parent: 16504 - - uid: 19520 - components: - - type: Transform - pos: -0.5,24.5 + pos: -0.5,42.5 parent: 16504 - - uid: 19521 + - uid: 22142 components: - type: Transform - pos: 1.5,24.5 + rot: -1.5707963267948966 rad + pos: -0.5,41.5 parent: 16504 - proto: PlasmaTankFilled entities: @@ -105763,6 +108774,15 @@ entities: - type: Transform pos: 14.074409,-16.219566 parent: 2 +- proto: PlushieGhost + entities: + - uid: 22393 + components: + - type: MetaData + name: wejf + - type: Transform + pos: 26.558538,34.536873 + parent: 2 - proto: PlushieHampter entities: - uid: 11537 @@ -105791,7 +108811,7 @@ entities: - uid: 11539 components: - type: MetaData - name: Vyach + name: ktlnkrnl - type: Transform pos: 25.603819,34.057175 parent: 2 @@ -105849,6 +108869,15 @@ entities: - type: Transform pos: 80.44124,27.42845 parent: 2 +- proto: PlushiePenguin + entities: + - uid: 10836 + components: + - type: MetaData + name: mofkkol + - type: Transform + pos: 26.140245,33.71122 + parent: 2 - proto: PlushieRGBee entities: - uid: 6403 @@ -105861,6 +108890,8 @@ entities: entities: - uid: 11546 components: + - type: MetaData + name: eugurt - type: Transform pos: 82.32806,19.43744 parent: 2 @@ -105896,6 +108927,15 @@ entities: - type: Transform pos: 24.708048,48.448303 parent: 2 +- proto: PlushieSlime + entities: + - uid: 22392 + components: + - type: MetaData + name: meowstushka + - type: Transform + pos: 24.433538,32.505623 + parent: 2 - proto: PlushieVox entities: - uid: 3877 @@ -106055,7 +109095,7 @@ entities: parent: 16504 - proto: PortableGeneratorSuperPacman entities: - - uid: 7783 + - uid: 5110 components: - type: Transform pos: 26.5,-17.5 @@ -106644,6 +109684,11 @@ entities: - type: Transform pos: 43.5,-0.5 parent: 2 + - uid: 7748 + components: + - type: Transform + pos: 45.5,66.5 + parent: 2 - uid: 11647 components: - type: Transform @@ -106739,11 +109784,6 @@ entities: - type: Transform pos: 41.5,-8.5 parent: 2 - - uid: 11666 - components: - - type: Transform - pos: 45.5,64.5 - parent: 2 - uid: 11668 components: - type: Transform @@ -106949,6 +109989,12 @@ entities: - type: Transform pos: -10.5,21.5 parent: 2 + - uid: 22518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,17.5 + parent: 2 - proto: Poweredlight entities: - uid: 3142 @@ -107273,12 +110319,6 @@ entities: rot: 1.5707963267948966 rad pos: 40.5,8.5 parent: 2 - - uid: 11749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,8.5 - parent: 2 - uid: 11750 components: - type: Transform @@ -108750,27 +111790,20 @@ entities: parent: 2 - proto: PoweredLightPostSmall entities: - - uid: 19600 - components: - - type: Transform - pos: -3.5,-12.5 - parent: 16504 - uid: 19601 components: - type: Transform pos: 6.5,-10.5 parent: 16504 -- proto: PoweredLightPostSmallEmpty - entities: - - uid: 19602 + - uid: 20515 components: - type: Transform - pos: -5.5,-10.5 + pos: -3.5,-13.5 parent: 16504 - - uid: 19603 + - uid: 22149 components: - type: Transform - pos: 4.5,-12.5 + pos: 4.5,-13.5 parent: 16504 - proto: PoweredlightRed entities: @@ -108863,7 +111896,8 @@ entities: pos: 28.5,47.5 parent: 2 - type: PointLight - energy: 1 + energy: 1.2 + radius: 5 - uid: 5816 components: - type: Transform @@ -108871,7 +111905,8 @@ entities: pos: 14.5,41.5 parent: 2 - type: PointLight - energy: 0.3 + energy: 1.2 + radius: 12 - uid: 10376 components: - type: Transform @@ -108890,7 +111925,7 @@ entities: pos: 18.5,50.5 parent: 2 - type: PointLight - energy: 1 + energy: 1.2 - uid: 19604 components: - type: Transform @@ -108907,14 +111942,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,23.5 parent: 16504 - - uid: 21469 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,40.5 - parent: 2 - - type: PointLight - energy: 0.3 - uid: 21488 components: - type: Transform @@ -108928,13 +111955,15 @@ entities: pos: 23.5,40.5 parent: 2 - type: PointLight - energy: 0.1 + energy: 1.2 - uid: 21861 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,41.5 parent: 2 + - type: PointLight + energy: 1.5 - uid: 21869 components: - type: Transform @@ -108949,6 +111978,11 @@ entities: rot: 3.141592653589793 rad pos: 75.5,2.5 parent: 2 + - uid: 4870 + components: + - type: Transform + pos: 52.5,-21.5 + parent: 2 - uid: 11513 components: - type: Transform @@ -109594,11 +112628,6 @@ entities: - type: Transform pos: 49.5,36.5 parent: 2 - - uid: 12076 - components: - - type: Transform - pos: 48.5,-4.5 - parent: 2 - uid: 12077 components: - type: Transform @@ -109718,6 +112747,64 @@ entities: - type: Transform pos: 42.5,53.5 parent: 2 + - uid: 16532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,26.5 + parent: 16504 + - uid: 17584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,26.5 + parent: 16504 + - uid: 17615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,24.5 + parent: 16504 + - uid: 17626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,26.5 + parent: 16504 + - uid: 19515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,28.5 + parent: 16504 + - uid: 19516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,28.5 + parent: 16504 + - uid: 19517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,24.5 + parent: 16504 + - uid: 19518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,26.5 + parent: 16504 + - uid: 19519 + components: + - type: Transform + pos: -0.5,43.5 + parent: 16504 + - uid: 19520 + components: + - type: Transform + pos: 1.5,43.5 + parent: 16504 - uid: 19607 components: - type: Transform @@ -109935,12 +113022,6 @@ entities: parent: 2 - proto: PoweredSmallLightEmpty entities: - - uid: 12098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-10.5 - parent: 2 - uid: 12099 components: - type: Transform @@ -110069,6 +113150,11 @@ entities: parent: 2 - proto: PrinterDoc entities: + - uid: 1771 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 - uid: 12102 components: - type: Transform @@ -110086,12 +113172,6 @@ entities: rot: 1.5707963267948966 rad pos: 66.5,61.5 parent: 2 - - uid: 12105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,9.5 - parent: 2 - uid: 12106 components: - type: Transform @@ -110594,12 +113674,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,42.5 parent: 2 - - uid: 19669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-9.5 - parent: 16504 - uid: 19670 components: - type: Transform @@ -110816,6 +113890,35 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,34.5 parent: 16504 + - uid: 20511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 16504 + - uid: 20514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 16504 + - uid: 20522 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 16504 + - uid: 20526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 16504 + - uid: 20527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 16504 - uid: 21898 components: - type: Transform @@ -110832,16 +113935,27 @@ entities: - type: Transform pos: -5.5,16.5 parent: 2 - - uid: 22019 + - uid: 22507 + components: + - type: Transform + pos: -12.5,17.5 + parent: 2 + - uid: 22508 + components: + - type: Transform + pos: -11.5,17.5 + parent: 2 + - uid: 22509 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,19.5 parent: 2 - - uid: 22020 + - uid: 22510 components: - type: Transform - pos: -11.5,17.5 + rot: 3.141592653589793 rad + pos: -12.5,19.5 parent: 2 - proto: RailingCorner entities: @@ -110903,24 +114017,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-13.5 parent: 16504 - - uid: 19709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 16504 - - uid: 19710 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-11.5 - parent: 16504 - - uid: 19711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-10.5 - parent: 16504 - uid: 19712 components: - type: Transform @@ -110958,23 +114054,35 @@ entities: - type: Transform pos: 35.5,25.5 parent: 16504 + - uid: 20518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 16504 + - uid: 20523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 16504 - uid: 21776 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,23.5 parent: 2 - - uid: 22017 + - uid: 22511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,17.5 + rot: 3.141592653589793 rad + pos: -13.5,19.5 parent: 2 - - uid: 22018 + - uid: 22512 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,19.5 + rot: -1.5707963267948966 rad + pos: -13.5,17.5 parent: 2 - proto: RailingCornerSmall entities: @@ -110989,12 +114097,6 @@ entities: - type: Transform pos: -6.5,23.5 parent: 2 - - uid: 4280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-34.5 - parent: 2 - uid: 11080 components: - type: Transform @@ -111030,24 +114132,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-10.5 parent: 16504 - - uid: 19722 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 16504 - - uid: 19723 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 16504 - - uid: 19724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-10.5 - parent: 16504 - uid: 19725 components: - type: Transform @@ -111106,35 +114190,29 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,35.5 parent: 16504 - - uid: 21688 + - uid: 21895 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-41.5 + rot: -1.5707963267948966 rad + pos: -5.5,18.5 parent: 2 - - uid: 21689 + - uid: 22150 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-41.5 - parent: 2 - - uid: 21843 - components: - - type: Transform - pos: 21.5,-34.5 - parent: 2 - - uid: 21895 + pos: -3.5,-11.5 + parent: 16504 + - uid: 22151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,18.5 - parent: 2 - - uid: 22021 + pos: -2.5,-9.5 + parent: 16504 + - uid: 22513 components: - type: Transform pos: -10.5,19.5 parent: 2 - - uid: 22023 + - uid: 22514 components: - type: Transform rot: 1.5707963267948966 rad @@ -111180,6 +114258,11 @@ entities: - type: Transform pos: 18.5,-7.5 parent: 2 + - uid: 20435 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 - proto: RandomBoard entities: - uid: 12187 @@ -112826,6 +115909,26 @@ entities: - type: Transform pos: 8.5,34.5 parent: 16504 + - uid: 20516 + components: + - type: Transform + pos: -26.5,32.5 + parent: 16504 + - uid: 20531 + components: + - type: Transform + pos: -23.5,32.5 + parent: 16504 + - uid: 20532 + components: + - type: Transform + pos: -25.5,33.5 + parent: 16504 + - uid: 22187 + components: + - type: Transform + pos: -24.5,33.5 + parent: 16504 - proto: ReinforcedPlasmaWindowDiagonal entities: - uid: 19833 @@ -112839,6 +115942,28 @@ entities: - type: Transform pos: -2.5,22.5 parent: 16504 + - uid: 20517 + components: + - type: Transform + pos: -26.5,33.5 + parent: 16504 + - uid: 20530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,33.5 + parent: 16504 + - uid: 22188 + components: + - type: Transform + pos: -27.5,32.5 + parent: 16504 + - uid: 22191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,32.5 + parent: 16504 - proto: ReinforcedUraniumWindow entities: - uid: 12376 @@ -112880,6 +116005,23 @@ entities: - type: Transform pos: 26.5,-35.5 parent: 2 + - uid: 10417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 2 + - uid: 10541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-20.5 + parent: 2 + - uid: 11384 + components: + - type: Transform + pos: 62.5,38.5 + parent: 2 - uid: 11800 components: - type: Transform @@ -113032,12 +116174,6 @@ entities: rot: 1.5707963267948966 rad pos: 46.5,63.5 parent: 2 - - uid: 12404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,20.5 - parent: 2 - uid: 12405 components: - type: Transform @@ -113066,12 +116202,6 @@ entities: - type: Transform pos: 86.5,56.5 parent: 2 - - uid: 12411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,20.5 - parent: 2 - uid: 12412 components: - type: Transform @@ -113134,11 +116264,6 @@ entities: rot: 3.141592653589793 rad pos: 50.5,2.5 parent: 2 - - uid: 12423 - components: - - type: Transform - pos: 62.5,35.5 - parent: 2 - uid: 12424 components: - type: Transform @@ -113605,12 +116730,6 @@ entities: - type: Transform pos: 19.5,5.5 parent: 2 - - uid: 12514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,17.5 - parent: 2 - uid: 12515 components: - type: Transform @@ -113656,11 +116775,6 @@ entities: - type: Transform pos: 38.5,17.5 parent: 2 - - uid: 12524 - components: - - type: Transform - pos: 41.5,17.5 - parent: 2 - uid: 12525 components: - type: Transform @@ -113842,11 +116956,6 @@ entities: - type: Transform pos: -1.5,22.5 parent: 2 - - uid: 12566 - components: - - type: Transform - pos: 11.5,77.5 - parent: 2 - uid: 12567 components: - type: Transform @@ -113857,11 +116966,6 @@ entities: - type: Transform pos: 10.5,73.5 parent: 2 - - uid: 12569 - components: - - type: Transform - pos: 9.5,69.5 - parent: 2 - uid: 12570 components: - type: Transform @@ -113877,16 +116981,6 @@ entities: - type: Transform pos: 11.5,67.5 parent: 2 - - uid: 12573 - components: - - type: Transform - pos: 9.5,71.5 - parent: 2 - - uid: 12574 - components: - - type: Transform - pos: 9.5,73.5 - parent: 2 - uid: 12575 components: - type: Transform @@ -113902,31 +116996,6 @@ entities: - type: Transform pos: 11.5,82.5 parent: 2 - - uid: 12578 - components: - - type: Transform - pos: 9.5,81.5 - parent: 2 - - uid: 12579 - components: - - type: Transform - pos: 11.5,71.5 - parent: 2 - - uid: 12580 - components: - - type: Transform - pos: 9.5,79.5 - parent: 2 - - uid: 12581 - components: - - type: Transform - pos: 11.5,69.5 - parent: 2 - - uid: 12582 - components: - - type: Transform - pos: 11.5,79.5 - parent: 2 - uid: 12583 components: - type: Transform @@ -113937,11 +117006,6 @@ entities: - type: Transform pos: 10.5,79.5 parent: 2 - - uid: 12585 - components: - - type: Transform - pos: 9.5,77.5 - parent: 2 - uid: 12586 components: - type: Transform @@ -113952,16 +117016,6 @@ entities: - type: Transform pos: 11.5,74.5 parent: 2 - - uid: 12588 - components: - - type: Transform - pos: 11.5,73.5 - parent: 2 - - uid: 12589 - components: - - type: Transform - pos: 11.5,81.5 - parent: 2 - uid: 12590 components: - type: Transform @@ -114623,12 +117677,6 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,23.5 parent: 2 - - uid: 12723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,22.5 - parent: 2 - uid: 12724 components: - type: Transform @@ -114652,12 +117700,6 @@ entities: rot: 3.141592653589793 rad pos: 56.5,44.5 parent: 2 - - uid: 12728 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,44.5 - parent: 2 - uid: 12729 components: - type: Transform @@ -114698,11 +117740,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,40.5 parent: 2 - - uid: 12736 - components: - - type: Transform - pos: 62.5,38.5 - parent: 2 - uid: 12737 components: - type: Transform @@ -114796,11 +117833,6 @@ entities: - type: Transform pos: 51.5,58.5 parent: 2 - - uid: 13884 - components: - - type: Transform - pos: 27.5,-20.5 - parent: 2 - uid: 14651 components: - type: Transform @@ -114842,10 +117874,11 @@ entities: - type: Transform pos: 49.5,61.5 parent: 2 - - uid: 16159 + - uid: 16212 components: - type: Transform - pos: 26.5,-20.5 + rot: 1.5707963267948966 rad + pos: 74.5,54.5 parent: 2 - uid: 16311 components: @@ -114919,16 +117952,6 @@ entities: - type: Transform pos: -7.5,26.5 parent: 16504 - - uid: 19845 - components: - - type: Transform - pos: -26.5,32.5 - parent: 16504 - - uid: 19846 - components: - - type: Transform - pos: -23.5,32.5 - parent: 16504 - uid: 19847 components: - type: Transform @@ -114976,24 +117999,30 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,50.5 parent: 2 -- proto: ReinforcedWindowDiagonal - entities: - - uid: 19854 + - uid: 22207 components: - type: Transform - pos: -27.5,32.5 - parent: 16504 - - uid: 19855 + rot: 1.5707963267948966 rad + pos: 75.5,54.5 + parent: 2 + - uid: 22208 components: - type: Transform - pos: -26.5,33.5 - parent: 16504 - - uid: 19856 + rot: 1.5707963267948966 rad + pos: 76.5,54.5 + parent: 2 + - uid: 22209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,32.5 - parent: 16504 + rot: 1.5707963267948966 rad + pos: 78.5,54.5 + parent: 2 + - uid: 22210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,54.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 21499 @@ -115144,6 +118173,13 @@ entities: - type: Transform pos: 34.806297,-10.467799 parent: 2 +- proto: SalvageCanisterSpawner + entities: + - uid: 20485 + components: + - type: Transform + pos: 63.5,18.5 + parent: 2 - proto: SalvageHumanCorpseSpawner entities: - uid: 19860 @@ -115215,6 +118251,271 @@ entities: - type: Transform pos: -8.5,24.5 parent: 16504 +- proto: SalvageSpawnerEquipment + entities: + - uid: 20375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-24.5 + parent: 2 + - uid: 20376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-18.5 + parent: 2 +- proto: SalvageSpawnerScrapCommon + entities: + - uid: 20374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-3.5 + parent: 2 + - uid: 20383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-11.5 + parent: 2 + - uid: 20387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 83.5,2.5 + parent: 2 + - uid: 20389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,30.5 + parent: 2 + - uid: 20399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,53.5 + parent: 2 + - uid: 20400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,66.5 + parent: 2 + - uid: 20401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.5,68.5 + parent: 2 +- proto: SalvageSpawnerScrapCommon75 + entities: + - uid: 20385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-0.5 + parent: 2 + - uid: 20386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,1.5 + parent: 2 + - uid: 20391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,44.5 + parent: 2 + - uid: 20392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,38.5 + parent: 2 + - uid: 20402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,68.5 + parent: 2 + - uid: 20403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,66.5 + parent: 2 + - uid: 20406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,99.5 + parent: 2 + - uid: 20407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,87.5 + parent: 2 + - uid: 20410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,90.5 + parent: 2 + - uid: 20412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,87.5 + parent: 2 + - uid: 20413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,83.5 + parent: 2 + - uid: 20415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,78.5 + parent: 2 + - uid: 20416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,74.5 + parent: 2 + - uid: 20417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,71.5 + parent: 2 + - uid: 20492 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 20497 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - uid: 20498 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 +- proto: SalvageSpawnerScrapValuable + entities: + - uid: 20384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,4.5 + parent: 2 + - uid: 20388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 94.5,9.5 + parent: 2 + - uid: 20390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,33.5 + parent: 2 +- proto: SalvageSpawnerScrapValuable75 + entities: + - uid: 19724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-19.5 + parent: 2 + - uid: 20373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-20.5 + parent: 2 + - uid: 20395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 85.5,51.5 + parent: 2 + - uid: 20397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,95.5 + parent: 2 + - uid: 20398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.5,60.5 + parent: 2 + - uid: 20404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,66.5 + parent: 2 + - uid: 20405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,97.5 + parent: 2 + - uid: 20408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,93.5 + parent: 2 + - uid: 20409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,89.5 + parent: 2 + - uid: 20411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,90.5 + parent: 2 + - uid: 20414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,88.5 + parent: 2 + - uid: 20418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,73.5 + parent: 2 + - uid: 20419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,69.5 + parent: 2 + - uid: 20420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,70.5 + parent: 2 - proto: Scalpel entities: - uid: 12767 @@ -115222,6 +118523,87 @@ entities: - type: Transform pos: 49.51219,-8.302678 parent: 2 +- proto: ScrapAirlock1 + entities: + - uid: 10391 + components: + - type: Transform + pos: 20.6236,62.39603 + parent: 2 + - uid: 20228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.438484,7.7291594 + parent: 2 + - uid: 20421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.825943,69.96823 + parent: 2 + - uid: 20425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.411263,71.63489 + parent: 2 + - uid: 20429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.067757,86.4586 + parent: 2 + - uid: 20436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.387238,94.4507 + parent: 2 + - uid: 22339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.7403755,-9.606357 + parent: 2 + - uid: 22376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.6857185,20.808674 + parent: 2 +- proto: ScrapAirlock2 + entities: + - uid: 20227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.98536,4.9947844 + parent: 2 + - uid: 20336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.81374,23.54584 + parent: 2 + - uid: 20457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.810314,45.569664 + parent: 2 + - uid: 20458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.20094,40.507164 + parent: 2 + - uid: 22348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.490383,-7.7806845 + parent: 2 - proto: ScrapBucket entities: - uid: 13202 @@ -115229,13 +118611,174 @@ entities: - type: Transform pos: 42.308426,-27.460276 parent: 2 + - uid: 19387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.573837,48.52055 + parent: 2 + - uid: 19602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.870712,53.670414 + parent: 2 + - uid: 19856 + components: + - type: Transform + pos: 65.88283,3.6273952 + parent: 2 + - uid: 20461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.482185,44.49154 + parent: 2 - uid: 21385 components: - type: Transform pos: 9.384015,53.228157 parent: 2 + - uid: 22347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.537258,-9.640644 + parent: 2 + - uid: 22361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.765663,-11.55441 + parent: 2 + - uid: 22362 + components: + - type: Transform + pos: 46.45009,-13.644562 + parent: 2 + - uid: 22368 + components: + - type: Transform + pos: 11.677515,10.385842 + parent: 2 +- proto: ScrapCamera + entities: + - uid: 20474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.181656,23.526672 + parent: 2 + - uid: 22382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.54509354,22.308674 + parent: 2 + - uid: 22383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.766598,42.22448 + parent: 2 + - uid: 22384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.782223,42.75573 + parent: 2 +- proto: ScrapCanister1 + entities: + - uid: 12423 + components: + - type: Transform + pos: 20.6861,61.43157 + parent: 2 + - uid: 20466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.92364,38.39779 + parent: 2 +- proto: ScrapCanister2 + entities: + - uid: 19709 + components: + - type: Transform + pos: 33.51522,66.79636 + parent: 2 + - uid: 19710 + components: + - type: Transform + pos: 26.331015,66.57761 + parent: 2 + - uid: 19711 + components: + - type: Transform + pos: 40.656876,56.83481 + parent: 2 + - uid: 20432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.38652,93.413376 + parent: 2 + - uid: 20433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.964645,88.350876 + parent: 2 - proto: ScrapCloset entities: + - uid: 20234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.320724,10.405152 + parent: 2 + - uid: 20235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.55222,10.577027 + parent: 2 + - uid: 20236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 92.97849,17.161118 + parent: 2 + - uid: 20237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 90.32224,23.035412 + parent: 2 + - uid: 20250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 86.94724,24.535412 + parent: 2 + - uid: 20264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.877525,23.426037 + parent: 2 + - uid: 20423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.54277,92.194626 + parent: 2 + - uid: 20430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.317757,90.350876 + parent: 2 - uid: 21248 components: - type: Transform @@ -115247,15 +118790,101 @@ entities: - type: Transform pos: 9.49688,53.505936 parent: 2 + - uid: 22350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.412258,-10.311934 + parent: 2 + - uid: 22351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.224758,-7.5306845 + parent: 2 + - uid: 22363 + components: + - type: Transform + pos: 50.351883,-13.519562 + parent: 2 + - uid: 22365 + components: + - type: Transform + pos: 11.670607,1.7783926 + parent: 2 + - uid: 22377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.43928146,20.449299 + parent: 2 + - uid: 22378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.54865646,22.699299 + parent: 2 + - uid: 22386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.547848,53.146114 + parent: 2 + - uid: 22389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.616801,62.49832 + parent: 2 + - uid: 22390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.851176,64.2327 + parent: 2 - proto: ScrapFaxMachine entities: + - uid: 20488 + components: + - type: Transform + pos: 32.26686,16.557922 + parent: 2 - uid: 21386 components: - type: Transform pos: 9.478001,50.663925 parent: 2 + - uid: 22345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.623405,-19.60445 + parent: 2 - proto: ScrapFireExtinguisher entities: + - uid: 10392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.32804,10.310881 + parent: 2 + - uid: 10396 + components: + - type: Transform + pos: 12.582918,63.52532 + parent: 2 + - uid: 20465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.501766,38.36654 + parent: 2 + - uid: 20472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.57228,17.120422 + parent: 2 - uid: 21249 components: - type: Transform @@ -115266,6 +118895,33 @@ entities: - type: Transform pos: 10.608158,52.9417 parent: 2 + - uid: 22359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.486443,-11.360081 + parent: 2 + - uid: 22360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.361443,-8.563206 + parent: 2 + - uid: 22369 + components: + - type: Transform + pos: 11.53689,8.401467 + parent: 2 + - uid: 22370 + components: + - type: Transform + pos: 1.3732185,20.527424 + parent: 2 + - uid: 22371 + components: + - type: Transform + pos: 1.2794685,23.105549 + parent: 2 - proto: ScrapFirelock1 entities: - uid: 10197 @@ -115274,6 +118930,74 @@ entities: rot: -1.5707963267948966 rad pos: 38.467503,-27.380741 parent: 2 + - uid: 19603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.972996,56.66772 + parent: 2 + - uid: 20422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.513443,77.02246 + parent: 2 + - uid: 20428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.769695,89.3336 + parent: 2 + - uid: 20439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.54469,40.600914 + parent: 2 + - uid: 22356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.74942,-1.5367069 + parent: 2 + - uid: 22379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.4825935,19.449299 + parent: 2 + - uid: 22387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.610348,56.334045 + parent: 2 +- proto: ScrapFirelock2 + entities: + - uid: 20229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.094734,9.639527 + parent: 2 + - uid: 20437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.63009,67.3504 + parent: 2 + - uid: 22341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.3653755,-12.64996 + parent: 2 + - uid: 22355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.843168,-7.602831 + parent: 2 - proto: ScrapFirelock3 entities: - uid: 6095 @@ -115281,36 +119005,300 @@ entities: - type: Transform pos: 38.597733,-27.484907 parent: 2 + - uid: 19722 + components: + - type: Transform + pos: 36.698025,57.791893 + parent: 2 + - uid: 20316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.96994,-6.2986417 + parent: 2 + - uid: 20426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.536263,82.04932 + parent: 2 + - uid: 20434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.44902,93.54445 + parent: 2 + - uid: 20438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.16134,67.49103 + parent: 2 + - uid: 20440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.54469,45.257164 + parent: 2 + - uid: 22349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.631008,-12.749434 + parent: 2 + - uid: 22375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.6075935,23.246174 + parent: 2 + - uid: 22385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.547848,49.53674 + parent: 2 + - uid: 22388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.688473,61.545197 + parent: 2 - proto: ScrapGlass entities: + - uid: 18617 + components: + - type: Transform + pos: 18.060389,65.418015 + parent: 2 + - uid: 19723 + components: + - type: Transform + pos: 24.56631,67.418015 + parent: 2 + - uid: 20327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.75893,-14.323473 + parent: 2 + - uid: 20330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.49447,-6.567425 + parent: 2 + - uid: 20333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.333572,9.121813 + parent: 2 + - uid: 20334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 88.55717,10.275419 + parent: 2 + - uid: 20335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.79299,24.373964 + parent: 2 + - uid: 20427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.442513,77.955765 + parent: 2 - uid: 21377 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.686295,51.39656 parent: 2 + - uid: 22353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.631008,-4.5306845 + parent: 2 + - uid: 22354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.593168,-7.134081 + parent: 2 + - uid: 22367 + components: + - type: Transform + pos: 15.326857,1.4033926 + parent: 2 - proto: ScrapIntercom entities: + - uid: 12964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.474758,-10.750019 + parent: 2 + - uid: 19854 + components: + - type: Transform + pos: 62.510433,4.355604 + parent: 2 + - uid: 20462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.345516,45.49154 + parent: 2 - uid: 21387 components: - type: Transform rot: 3.141592653589793 rad pos: 10.29561,51.3792 parent: 2 + - uid: 22364 + components: + - type: Transform + pos: 9.123732,2.9502676 + parent: 2 - proto: ScrapJetpack entities: + - uid: 20471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.603535,18.401672 + parent: 2 - uid: 21252 components: - type: Transform pos: 42.24936,-27.23892 parent: 2 + - uid: 22343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.6153755,-18.5732 + parent: 2 + - uid: 22346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.560905,-19.6357 + parent: 2 - proto: ScrapMedkit entities: + - uid: 3598 + components: + - type: Transform + pos: 50.54714,9.420256 + parent: 2 + - uid: 20337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.236057,-0.2451626 + parent: 2 + - uid: 20338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.958508,-7.592559 + parent: 2 + - uid: 20339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.446583,-7.233184 + parent: 2 + - uid: 20370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.31334,-3.5972953 + parent: 2 + - uid: 20371 + components: + - type: Transform + pos: 48.81419,-4.6310463 + parent: 2 - uid: 21250 components: - type: Transform pos: 41.012196,-27.017567 parent: 2 + - uid: 22344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.844482,-19.463825 + parent: 2 + - uid: 22380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.37678146,19.324299 + parent: 2 + - uid: 22381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.4357185,21.230549 + parent: 2 +- proto: ScrapMopBucket + entities: + - uid: 12569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.312878,10.592131 + parent: 2 + - uid: 12956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.427883,-19.5732 + parent: 2 + - uid: 20464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.36114,40.632164 + parent: 2 +- proto: ScrapPAI + entities: + - uid: 19846 + components: + - type: Transform + pos: 63.041683,2.9413962 + parent: 2 + - uid: 20463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.876766,38.24154 + parent: 2 + - uid: 22340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.516598,47.00549 + parent: 2 + - uid: 22342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5997505,-19.5732 + parent: 2 + - uid: 22374 + components: + - type: Transform + pos: 1.4982185,23.652424 + parent: 2 - proto: ScrapSteel entities: - uid: 877 @@ -115318,6 +119306,41 @@ entities: - type: Transform pos: 42.43168,-26.666004 parent: 2 + - uid: 19669 + components: + - type: Transform + pos: 36.593346,61.456043 + parent: 2 + - uid: 20265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 81.462944,24.129162 + parent: 2 + - uid: 20266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.43203,10.521615 + parent: 2 + - uid: 20279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.91886,4.0267277 + parent: 2 + - uid: 20286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.43869,-1.3013976 + parent: 2 + - uid: 20431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.433395,93.4915 + parent: 2 - uid: 21243 components: - type: Transform @@ -115329,14 +119352,59 @@ entities: rot: 1.5707963267948966 rad pos: 9.470834,53.505936 parent: 2 + - uid: 22206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.8653755,-9.575107 + parent: 2 + - uid: 22352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.662258,-7.3588095 + parent: 2 + - uid: 22366 + components: + - type: Transform + pos: 11.858107,6.044018 + parent: 2 - proto: ScrapTube entities: + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.27541,16.370422 + parent: 2 - uid: 13237 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.064285,-26.418608 parent: 2 + - uid: 22357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.65567,-11.672581 + parent: 2 + - uid: 22358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.546295,-11.235081 + parent: 2 + - uid: 22372 + components: + - type: Transform + pos: 1.2482185,21.933674 + parent: 2 + - uid: 22373 + components: + - type: Transform + pos: 0.95134354,21.121174 + parent: 2 - proto: Screen entities: - uid: 2358 @@ -115492,6 +119560,15 @@ entities: - type: Transform pos: 53.5,28.5 parent: 2 +- proto: SecurityTechFabCircuitboard + entities: + - uid: 22096 + components: + - type: Transform + parent: 10552 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SeedExtractor entities: - uid: 12793 @@ -115607,6 +119684,16 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 10414 + components: + - type: Transform + pos: 58.507942,4.5845747 + parent: 2 + - uid: 10906 + components: + - type: Transform + pos: 23.535854,10.694848 + parent: 2 - uid: 12800 components: - type: Transform @@ -115628,6 +119715,23 @@ entities: - type: Transform pos: 35.45207,79.576096 parent: 2 + - uid: 22144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.49398,41.524345 + parent: 2 + - uid: 22145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.603355,41.50872 + parent: 2 + - uid: 22322 + components: + - type: Transform + pos: 67.63421,41.5463 + parent: 2 - proto: SheetGlass10 entities: - uid: 12804 @@ -115699,6 +119803,16 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 10841 + components: + - type: Transform + pos: 58.664192,4.5845747 + parent: 2 + - uid: 12588 + components: + - type: Transform + pos: 24.52023,10.694848 + parent: 2 - uid: 12812 components: - type: Transform @@ -115714,6 +119828,18 @@ entities: - type: Transform pos: -7.994378,32.44129 parent: 16504 + - uid: 22146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.49398,41.44622 + parent: 2 + - uid: 22226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.49398,41.44622 + parent: 2 - proto: SheetPlastic1 entities: - uid: 19888 @@ -115730,6 +119856,16 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 10355 + components: + - type: Transform + pos: 24.02023,10.726098 + parent: 2 + - uid: 12589 + components: + - type: Transform + pos: 58.242317,4.6470747 + parent: 2 - uid: 12814 components: - type: Transform @@ -115760,6 +119896,18 @@ entities: - type: Transform pos: -8.681878,32.47254 parent: 16504 + - uid: 22227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.603355,41.50872 + parent: 2 + - uid: 22228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.55648,41.47747 + parent: 2 - proto: SheetSteel1 entities: - uid: 19890 @@ -115823,7 +119971,7 @@ entities: - uid: 5768 components: - type: Transform - pos: 26.585297,-17.339096 + pos: 26.48359,-17.504948 parent: 2 - type: Stack count: 15 @@ -115993,6 +120141,42 @@ entities: - type: Transform pos: -15.5,24.5 parent: 16504 +- proto: ShotGunCabinetFilled + entities: + - uid: 22333 + components: + - type: Transform + pos: 39.5,70.5 + parent: 2 + - uid: 22334 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - uid: 22335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,16.5 + parent: 2 + - uid: 22336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,9.5 + parent: 2 + - uid: 22337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,23.5 + parent: 2 + - uid: 22338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 - proto: Shovel entities: - uid: 12824 @@ -116411,26 +120595,6 @@ entities: - type: Transform pos: 47.5,15.5 parent: 2 - - uid: 12894 - components: - - type: Transform - pos: 45.5,20.5 - parent: 2 - - uid: 12895 - components: - - type: Transform - pos: 45.5,17.5 - parent: 2 - - uid: 12896 - components: - - type: Transform - pos: 41.5,17.5 - parent: 2 - - uid: 12897 - components: - - type: Transform - pos: 41.5,20.5 - parent: 2 - uid: 19912 components: - type: Transform @@ -116740,12 +120904,6 @@ entities: 13352: - Pressed: Toggle - Pressed: AutoClose - 3186: - - Pressed: Toggle - - Pressed: AutoClose - 3180: - - Pressed: Toggle - - Pressed: AutoClose 3182: - Pressed: Toggle - Pressed: AutoClose @@ -116758,12 +120916,6 @@ entities: 3859: - Pressed: Toggle - Pressed: AutoClose - 3187: - - Pressed: Toggle - - Pressed: AutoClose - 3205: - - Pressed: Toggle - - Pressed: AutoClose 21771: - Pressed: Toggle 21772: @@ -116782,12 +120934,6 @@ entities: 21849: - Pressed: Toggle - Pressed: AutoClose - 21862: - - Pressed: Toggle - - Pressed: AutoClose - 21848: - - Pressed: Toggle - - Pressed: AutoClose - uid: 19918 components: - type: Transform @@ -117145,12 +121291,6 @@ entities: - Pressed: Toggle - proto: SignalButtonDirectional entities: - - uid: 12913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,55.5 - parent: 2 - uid: 12914 components: - type: Transform @@ -117286,8 +121426,6 @@ entities: - Pressed: Toggle 12855: - Pressed: Toggle - 12896: - - Pressed: Toggle - uid: 12922 components: - type: Transform @@ -117300,8 +121438,6 @@ entities: - Pressed: Toggle 12854: - Pressed: Toggle - 12897: - - Pressed: Toggle - uid: 12923 components: - type: Transform @@ -117500,10 +121636,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,20.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 12894: - - Pressed: Toggle - uid: 12940 components: - type: Transform @@ -117524,8 +121656,6 @@ entities: linkedPorts: 12893: - Pressed: Toggle - 12895: - - Pressed: Toggle - proto: SignalControlledValve entities: - uid: 19940 @@ -117812,19 +121942,12 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,5.5 parent: 2 -- proto: SignCloning - entities: - - uid: 22022 - components: - - type: Transform - pos: 46.5,-5.5 - parent: 2 - proto: SignCryo entities: - - uid: 12956 + - uid: 10548 components: - type: Transform - pos: 4.5,30.5 + pos: 73.5,54.5 parent: 2 - proto: SignCryogenicsMed entities: @@ -117882,16 +122005,23 @@ entities: parent: 2 - proto: SignDirectionalCryo entities: - - uid: 12964 + - uid: 16103 components: - type: Transform - pos: 2.5,30.5 + rot: 1.5707963267948966 rad + pos: 68.5,54.5 parent: 2 - - uid: 12965 + - uid: 16104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,34.5 + rot: 1.5707963267948966 rad + pos: 49.5,50.5 + parent: 2 + - uid: 16159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,39.5 parent: 2 - proto: SignDirectionalDorms entities: @@ -118474,6 +122604,23 @@ entities: - type: Transform pos: 52.5,1.5 parent: 2 +- proto: SignVox + entities: + - uid: 18618 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 18619 + components: + - type: Transform + pos: 13.5,42.5 + parent: 2 + - uid: 18620 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 - proto: SignXenobio entities: - uid: 13039 @@ -118519,6 +122666,18 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,37.5 parent: 2 + - uid: 18621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,47.5 + parent: 2 + - uid: 18659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,52.5 + parent: 2 - uid: 21342 components: - type: Transform @@ -118812,35 +122971,11 @@ entities: - type: Transform pos: -2.5,53.5 parent: 2 - - uid: 3606 - components: - - type: Transform - pos: -4.5,53.5 - parent: 2 - uid: 12788 components: - type: Transform pos: 5.5,52.5 parent: 2 - - uid: 13075 - components: - - type: Transform - pos: -0.5,47.5 - parent: 2 - - uid: 13076 - components: - - type: Transform - pos: -2.5,49.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13078 - components: - - type: Transform - pos: -4.5,51.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - uid: 13079 components: - type: Transform @@ -118848,20 +122983,6 @@ entities: parent: 2 - type: PowerSupplier supplyRate: 746 - - uid: 13081 - components: - - type: Transform - pos: -4.5,47.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - - uid: 13082 - components: - - type: Transform - pos: -4.5,49.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - uid: 13083 components: - type: Transform @@ -118932,13 +123053,6 @@ entities: parent: 2 - type: PowerSupplier supplyRate: 746 - - uid: 13095 - components: - - type: Transform - pos: -0.5,48.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - uid: 13097 components: - type: Transform @@ -118946,13 +123060,6 @@ entities: parent: 2 - type: PowerSupplier supplyRate: 746 - - uid: 13098 - components: - - type: Transform - pos: 1.5,51.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - uid: 13099 components: - type: Transform @@ -118960,13 +123067,6 @@ entities: parent: 2 - type: PowerSupplier supplyRate: 746 - - uid: 13100 - components: - - type: Transform - pos: 1.5,49.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - uid: 13101 components: - type: Transform @@ -119016,13 +123116,6 @@ entities: parent: 2 - type: PowerSupplier supplyRate: 746 - - uid: 13112 - components: - - type: Transform - pos: 5.5,51.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - uid: 13113 components: - type: Transform @@ -119030,13 +123123,6 @@ entities: parent: 2 - type: PowerSupplier supplyRate: 746 - - uid: 13114 - components: - - type: Transform - pos: 5.5,49.5 - parent: 2 - - type: PowerSupplier - supplyRate: 746 - uid: 13115 components: - type: Transform @@ -119303,11 +123389,6 @@ entities: parent: 2 - type: PowerSupplier supplyRate: 746 - - uid: 13159 - components: - - type: Transform - pos: -0.5,47.5 - parent: 2 - proto: SolarPanelBroken entities: - uid: 3679 @@ -119325,6 +123406,11 @@ entities: - type: Transform pos: 55.5,-26.5 parent: 2 + - uid: 10356 + components: + - type: Transform + pos: 5.5,51.5 + parent: 2 - uid: 11514 components: - type: Transform @@ -119335,11 +123421,72 @@ entities: - type: Transform pos: 55.5,-22.5 parent: 2 + - uid: 12723 + components: + - type: Transform + pos: -4.5,53.5 + parent: 2 + - uid: 12728 + components: + - type: Transform + pos: -0.5,47.5 + parent: 2 + - uid: 12736 + components: + - type: Transform + pos: 1.5,49.5 + parent: 2 + - uid: 12894 + components: + - type: Transform + pos: 1.5,51.5 + parent: 2 + - uid: 12895 + components: + - type: Transform + pos: 5.5,49.5 + parent: 2 + - uid: 12896 + components: + - type: Transform + pos: -4.5,49.5 + parent: 2 + - uid: 12897 + components: + - type: Transform + pos: -0.5,48.5 + parent: 2 + - uid: 13018 + components: + - type: Transform + pos: -2.5,52.5 + parent: 2 + - uid: 13075 + components: + - type: Transform + pos: -4.5,51.5 + parent: 2 + - uid: 13076 + components: + - type: Transform + pos: -4.5,47.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + pos: -2.5,49.5 + parent: 2 - uid: 13132 components: - type: Transform pos: 58.5,-26.5 parent: 2 + - uid: 20372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-16.5 + parent: 2 - proto: SolarTracker entities: - uid: 13160 @@ -119462,28 +123609,6 @@ entities: - type: Transform pos: -21.5,22.5 parent: 16504 - - uid: 19971 - components: - - type: Transform - pos: 22.5,16.5 - parent: 16504 - - uid: 19972 - components: - - type: Transform - pos: 0.5,33.5 - parent: 16504 - - uid: 19973 - components: - - type: Transform - pos: 1.5,42.5 - parent: 16504 -- proto: SpawnMobBearSalvage - entities: - - uid: 19974 - components: - - type: Transform - pos: -16.5,15.5 - parent: 16504 - proto: SpawnMobButterfly entities: - uid: 13175 @@ -119500,26 +123625,6 @@ entities: parent: 2 - proto: SpawnMobCarp entities: - - uid: 19975 - components: - - type: Transform - pos: -0.5,11.5 - parent: 16504 - - uid: 19976 - components: - - type: Transform - pos: 1.5,9.5 - parent: 16504 - - uid: 19977 - components: - - type: Transform - pos: -1.5,26.5 - parent: 16504 - - uid: 19978 - components: - - type: Transform - pos: 2.5,26.5 - parent: 16504 - uid: 19979 components: - type: Transform @@ -119530,63 +123635,11 @@ entities: - type: Transform pos: -16.5,8.5 parent: 16504 - - uid: 19981 - components: - - type: Transform - pos: 0.5,37.5 - parent: 16504 - - uid: 19982 - components: - - type: Transform - pos: -4.5,9.5 - parent: 16504 - - uid: 19983 - components: - - type: Transform - pos: 16.5,23.5 - parent: 16504 - - uid: 19984 - components: - - type: Transform - pos: 8.5,16.5 - parent: 16504 - uid: 19985 components: - type: Transform pos: -21.5,25.5 parent: 16504 -- proto: SpawnMobCarpHolo - entities: - - uid: 19986 - components: - - type: Transform - pos: 0.5,42.5 - parent: 16504 - - uid: 19987 - components: - - type: Transform - pos: 12.5,-7.5 - parent: 16504 - - uid: 19988 - components: - - type: Transform - pos: -9.5,-2.5 - parent: 16504 - - uid: 19989 - components: - - type: Transform - pos: -0.5,29.5 - parent: 16504 - - uid: 19990 - components: - - type: Transform - pos: 1.5,29.5 - parent: 16504 - - uid: 19991 - components: - - type: Transform - pos: 12.5,6.5 - parent: 16504 - proto: SpawnMobCatFloppa entities: - uid: 13177 @@ -119679,11 +123732,6 @@ entities: - type: Transform pos: -25.5,30.5 parent: 16504 - - uid: 19994 - components: - - type: Transform - pos: 33.5,16.5 - parent: 16504 - proto: SpawnMobMonkeyPunpun entities: - uid: 13186 @@ -119727,13 +123775,6 @@ entities: - type: Transform pos: 43.5,47.5 parent: 2 -- proto: SpawnMobShark - entities: - - uid: 19995 - components: - - type: Transform - pos: 0.5,28.5 - parent: 16504 - proto: SpawnMobShiva entities: - uid: 13192 @@ -119757,74 +123798,213 @@ entities: parent: 2 - proto: SpawnMobSpaceCobra entities: - - uid: 19996 + - uid: 19998 components: - type: Transform - pos: 13.5,32.5 + pos: 19.5,-8.5 parent: 16504 - - uid: 19997 +- proto: SpawnMobSpaceSpider + entities: + - uid: 20002 components: - type: Transform - pos: 16.5,32.5 + pos: 22.5,7.5 parent: 16504 - - uid: 19998 + - uid: 20003 components: - type: Transform - pos: 19.5,-8.5 + pos: -7.5,29.5 parent: 16504 - - uid: 19999 + - uid: 20004 + components: + - type: Transform + pos: 20.5,0.5 + parent: 16504 + - uid: 20005 + components: + - type: Transform + pos: 22.5,3.5 + parent: 16504 +- proto: SpawnMobSyndicateFootSoldier + entities: + - uid: 10547 + components: + - type: Transform + pos: 12.5,26.5 + parent: 16504 + - uid: 11666 + components: + - type: Transform + pos: 29.5,30.5 + parent: 16504 + - uid: 13159 + components: + - type: Transform + pos: 16.5,18.5 + parent: 16504 + - uid: 13342 + components: + - type: Transform + pos: 13.5,18.5 + parent: 16504 + - uid: 13343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,8.5 + parent: 16504 + - uid: 13435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 16504 + - uid: 15380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 16504 + - uid: 17579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,37.5 + parent: 16504 + - uid: 17580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,36.5 + parent: 16504 + - uid: 17581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,19.5 + parent: 16504 + - uid: 17585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,35.5 + parent: 16504 + - uid: 17588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,25.5 + parent: 16504 + - uid: 17591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 16504 + - uid: 17594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,35.5 + parent: 16504 + - uid: 17595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,35.5 + parent: 16504 + - uid: 17686 + components: + - type: Transform + pos: 0.5,6.5 + parent: 16504 + - uid: 17702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,35.5 + parent: 16504 + - uid: 17703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 16504 + - uid: 18624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,25.5 + parent: 16504 + - uid: 18645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 16504 + - uid: 18650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 16504 + - uid: 18829 components: - type: Transform + rot: 3.141592653589793 rad pos: 28.5,13.5 parent: 16504 - - uid: 20000 + - uid: 18886 components: - type: Transform - pos: 28.5,19.5 + rot: 3.141592653589793 rad + pos: 25.5,16.5 parent: 16504 - - uid: 20001 + - uid: 19425 components: - type: Transform - pos: 3.5,34.5 + rot: 3.141592653589793 rad + pos: 0.5,43.5 parent: 16504 -- proto: SpawnMobSpaceSpider - entities: - - uid: 20002 + - uid: 22093 components: - type: Transform - pos: 22.5,7.5 + pos: 16.5,22.5 parent: 16504 - - uid: 20003 + - uid: 22094 components: - type: Transform - pos: -7.5,29.5 + pos: 12.5,22.5 parent: 16504 - - uid: 20004 + - uid: 22097 components: - type: Transform - pos: 20.5,0.5 + pos: -10.5,24.5 parent: 16504 - - uid: 20005 + - uid: 22101 components: - type: Transform - pos: 22.5,3.5 + pos: -9.5,24.5 parent: 16504 - - uid: 20006 + - uid: 22108 components: - type: Transform - pos: -17.5,24.5 + pos: 17.5,26.5 parent: 16504 - - uid: 20007 + - uid: 22109 components: - type: Transform - pos: -14.5,19.5 + pos: -10.5,37.5 parent: 16504 -- proto: SpawnMobSpiderSalvage - entities: - - uid: 20008 + - uid: 22110 components: - type: Transform - pos: -0.5,42.5 + pos: -17.5,33.5 + parent: 16504 + - uid: 22112 + components: + - type: Transform + pos: -15.5,28.5 parent: 16504 - proto: SpawnMobWalter entities: @@ -119886,13 +124066,6 @@ entities: - type: Transform pos: 39.5,54.5 parent: 2 -- proto: SpawnPointBrigmedic - entities: - - uid: 22027 - components: - - type: Transform - pos: 61.5,21.5 - parent: 2 - proto: SpawnPointCaptain entities: - uid: 13203 @@ -120663,6 +124836,11 @@ entities: - type: Transform pos: 35.5,-5.5 parent: 2 + - uid: 22232 + components: + - type: Transform + pos: 48.5,-11.5 + parent: 2 - proto: StationAiUploadCircuitboard entities: - uid: 11203 @@ -120687,6 +124865,13 @@ entities: - type: Transform pos: 54.5,56.5 parent: 2 +- proto: StationAnchorIndestructible + entities: + - uid: 19445 + components: + - type: Transform + pos: -6.5,3.5 + parent: 16504 - proto: StationEfficiencyCircuitBoard entities: - uid: 588 @@ -121222,8 +125407,23 @@ entities: - type: Transform pos: 31.5,-39.5 parent: 2 + - uid: 22413 + components: + - type: Transform + pos: 46.5,-16.5 + parent: 2 - proto: SubstationWallBasic entities: + - uid: 1916 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 - uid: 13330 components: - type: MetaData @@ -121802,16 +126002,14 @@ entities: - type: Transform pos: 49.5,33.5 parent: 2 - - type: Lock - locked: False - type: EntityStorage air: volume: 200 immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -121828,7 +126026,6 @@ entities: showEnts: False occludes: True ents: - - 11116 - 11117 - proto: SuitStorageNTSRA entities: @@ -122082,19 +126279,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: Загрузка в ии - - uid: 13342 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,69.5 - parent: 2 - - type: SurveillanceCamera - id: Инж Кабинет СИ - - uid: 13343 - components: - - type: Transform - pos: 30.5,21.5 - parent: 2 - uid: 13344 components: - type: Transform @@ -122276,17 +126460,6 @@ entities: - type: Transform pos: 23.5,-23.5 parent: 2 - - uid: 21827 - components: - - type: Transform - pos: 24.5,20.5 - parent: 2 - - uid: 21829 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,20.5 - parent: 2 - proto: SurveillanceCameraEngineering entities: - uid: 8309 @@ -122880,6 +127053,13 @@ entities: id: Ксеноархеология - proto: SurveillanceCameraSecurity entities: + - uid: 5043 + components: + - type: Transform + pos: 57.5,16.5 + parent: 2 + - type: SurveillanceCamera + id: раздевалка - uid: 12235 components: - type: Transform @@ -122923,17 +127103,6 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Адвокат - - uid: 13435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,17.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: раздевалка - uid: 13436 components: - type: Transform @@ -123975,7 +128144,7 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,32.5 parent: 16504 - - uid: 21896 + - uid: 22502 components: - type: Transform pos: 47.5,-2.5 @@ -125240,6 +129409,11 @@ entities: - type: Transform pos: 31.5,53.5 parent: 2 + - uid: 22484 + components: + - type: Transform + pos: 61.5,31.5 + parent: 2 - proto: TableReinforcedGlass entities: - uid: 3628 @@ -125772,7 +129946,7 @@ entities: components: - type: MetaData desc: Приготовьтесь к отрыву башки... - name: Сборник песен Серёги Пирата + name: Сборник песен Серёги Дегенерата - type: Transform pos: 7.0318546,28.292011 parent: 2 @@ -126258,6 +130432,13 @@ entities: - type: Transform pos: 68.51721,37.564472 parent: 2 +- proto: ToolboxSyndicateFilled + entities: + - uid: 22095 + components: + - type: Transform + pos: -12.443481,-6.641393 + parent: 16504 - proto: Torch entities: - uid: 4072 @@ -126659,29 +130840,6 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - - uid: 20210 - components: - - type: Transform - pos: -18.5,20.5 - parent: 16504 - - type: DeviceLinkSource - linkedPorts: - 17699: - - Left: Open - - Right: Open - - Middle: Close - 17701: - - Left: Open - - Right: Open - - Middle: Close - 17702: - - Left: Open - - Right: Open - - Middle: Close - 17703: - - Left: Open - - Right: Open - - Middle: Close - proto: UnfinishedMachineFrame entities: - uid: 13787 @@ -126706,6 +130864,30 @@ entities: - type: Transform pos: 17.5,19.5 parent: 2 +- proto: UniformShortsRed + entities: + - uid: 11200 + components: + - type: Transform + pos: 0.7616036,30.60181 + parent: 2 + - uid: 16095 + components: + - type: Transform + pos: 0.7616036,30.35181 + parent: 2 +- proto: UniformShortsRedWithTop + entities: + - uid: 6608 + components: + - type: Transform + pos: 0.2928536,30.53931 + parent: 2 + - uid: 15430 + components: + - type: Transform + pos: 0.2459786,30.57056 + parent: 2 - proto: UprightPianoInstrument entities: - uid: 6924 @@ -126778,6 +130960,13 @@ entities: parent: 2 missingComponents: - AccessReader +- proto: VendingMachineBoozeSyndicate + entities: + - uid: 19845 + components: + - type: Transform + pos: 12.5,68.5 + parent: 2 - proto: VendingMachineCargoDrobe entities: - uid: 13797 @@ -127016,6 +131205,13 @@ entities: - type: Transform pos: 9.5,20.5 parent: 2 +- proto: VendingMachineMagivend + entities: + - uid: 22317 + components: + - type: Transform + pos: 24.5,40.5 + parent: 2 - proto: VendingMachineMedical entities: - uid: 13825 @@ -127045,6 +131241,13 @@ entities: - type: Transform pos: 60.5,1.5 parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 13095 + components: + - type: Transform + pos: 40.5,51.5 + parent: 2 - proto: VendingMachineRestockBooze entities: - uid: 20219 @@ -127364,67 +131567,11 @@ entities: parent: 16504 - proto: WallPlastitanium entities: - - uid: 20227 - components: - - type: Transform - pos: 6.5,38.5 - parent: 16504 - - uid: 20228 - components: - - type: Transform - pos: -5.5,35.5 - parent: 16504 - - uid: 20229 - components: - - type: Transform - pos: -11.5,26.5 - parent: 16504 - uid: 20230 components: - type: Transform pos: 9.5,33.5 parent: 16504 - - uid: 20231 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-7.5 - parent: 16504 - - uid: 20232 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 16504 - - uid: 20233 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 16504 - - uid: 20234 - components: - - type: Transform - pos: -4.5,-3.5 - parent: 16504 - - uid: 20235 - components: - - type: Transform - pos: -4.5,-2.5 - parent: 16504 - - uid: 20236 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 16504 - - uid: 20237 - components: - - type: Transform - pos: -4.5,-0.5 - parent: 16504 - - uid: 20238 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 16504 - uid: 20239 components: - type: Transform @@ -127480,11 +131627,6 @@ entities: - type: Transform pos: 7.5,7.5 parent: 16504 - - uid: 20250 - components: - - type: Transform - pos: 9.5,12.5 - parent: 16504 - uid: 20251 components: - type: Transform @@ -127515,56 +131657,6 @@ entities: - type: Transform pos: -6.5,4.5 parent: 16504 - - uid: 20257 - components: - - type: Transform - pos: -6.5,3.5 - parent: 16504 - - uid: 20258 - components: - - type: Transform - pos: -8.5,2.5 - parent: 16504 - - uid: 20259 - components: - - type: Transform - pos: -8.5,1.5 - parent: 16504 - - uid: 20260 - components: - - type: Transform - pos: -8.5,0.5 - parent: 16504 - - uid: 20261 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 16504 - - uid: 20262 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 16504 - - uid: 20263 - components: - - type: Transform - pos: -5.5,-0.5 - parent: 16504 - - uid: 20264 - components: - - type: Transform - pos: 4.5,13.5 - parent: 16504 - - uid: 20265 - components: - - type: Transform - pos: 5.5,13.5 - parent: 16504 - - uid: 20266 - components: - - type: Transform - pos: 6.5,13.5 - parent: 16504 - uid: 20267 components: - type: Transform @@ -127615,36 +131707,6 @@ entities: - type: Transform pos: 12.5,5.5 parent: 16504 - - uid: 20277 - components: - - type: Transform - pos: -3.5,7.5 - parent: 16504 - - uid: 20278 - components: - - type: Transform - pos: -4.5,7.5 - parent: 16504 - - uid: 20279 - components: - - type: Transform - pos: 11.5,12.5 - parent: 16504 - - uid: 20280 - components: - - type: Transform - pos: -6.5,7.5 - parent: 16504 - - uid: 20281 - components: - - type: Transform - pos: -7.5,7.5 - parent: 16504 - - uid: 20282 - components: - - type: Transform - pos: -8.5,7.5 - parent: 16504 - uid: 20283 components: - type: Transform @@ -127660,11 +131722,6 @@ entities: - type: Transform pos: -4.5,13.5 parent: 16504 - - uid: 20286 - components: - - type: Transform - pos: -5.5,13.5 - parent: 16504 - uid: 20287 components: - type: Transform @@ -127755,51 +131812,11 @@ entities: - type: Transform pos: -15.5,5.5 parent: 16504 - - uid: 20305 - components: - - type: Transform - pos: -9.5,7.5 - parent: 16504 - - uid: 20306 - components: - - type: Transform - pos: -10.5,6.5 - parent: 16504 - - uid: 20307 - components: - - type: Transform - pos: -9.5,6.5 - parent: 16504 - - uid: 20308 - components: - - type: Transform - pos: -11.5,5.5 - parent: 16504 - - uid: 20309 - components: - - type: Transform - pos: -10.5,5.5 - parent: 16504 - - uid: 20310 - components: - - type: Transform - pos: -9.5,5.5 - parent: 16504 - uid: 20311 components: - type: Transform pos: -8.5,5.5 parent: 16504 - - uid: 20312 - components: - - type: Transform - pos: -8.5,4.5 - parent: 16504 - - uid: 20313 - components: - - type: Transform - pos: -8.5,3.5 - parent: 16504 - uid: 20314 components: - type: Transform @@ -127810,21 +131827,11 @@ entities: - type: Transform pos: -7.5,6.5 parent: 16504 - - uid: 20316 - components: - - type: Transform - pos: 10.5,12.5 - parent: 16504 - uid: 20317 components: - type: Transform pos: -3.5,6.5 parent: 16504 - - uid: 20318 - components: - - type: Transform - pos: -7.5,5.5 - parent: 16504 - uid: 20319 components: - type: Transform @@ -127860,16 +131867,6 @@ entities: - type: Transform pos: -9.5,-0.5 parent: 16504 - - uid: 20326 - components: - - type: Transform - pos: -8.5,-0.5 - parent: 16504 - - uid: 20327 - components: - - type: Transform - pos: -6.5,-1.5 - parent: 16504 - uid: 20328 components: - type: Transform @@ -127880,11 +131877,6 @@ entities: - type: Transform pos: -16.5,5.5 parent: 16504 - - uid: 20330 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 16504 - uid: 20331 components: - type: Transform @@ -127895,2068 +131887,1798 @@ entities: - type: Transform pos: -12.5,-7.5 parent: 16504 - - uid: 20333 - components: - - type: Transform - pos: 12.5,12.5 - parent: 16504 - - uid: 20334 - components: - - type: Transform - pos: 12.5,11.5 - parent: 16504 - - uid: 20335 - components: - - type: Transform - pos: 13.5,11.5 - parent: 16504 - - uid: 20336 - components: - - type: Transform - pos: 13.5,10.5 - parent: 16504 - - uid: 20337 - components: - - type: Transform - pos: 14.5,10.5 - parent: 16504 - - uid: 20338 - components: - - type: Transform - pos: 14.5,9.5 - parent: 16504 - - uid: 20339 - components: - - type: Transform - pos: 15.5,9.5 - parent: 16504 - uid: 20340 components: - type: Transform pos: 15.5,8.5 parent: 16504 - - uid: 20341 + - uid: 20348 components: - type: Transform - pos: 16.5,8.5 + pos: 19.5,4.5 parent: 16504 - - uid: 20342 + - uid: 20349 components: - type: Transform - pos: 16.5,7.5 + pos: 19.5,3.5 parent: 16504 - - uid: 20343 + - uid: 20350 components: - type: Transform - pos: 16.5,6.5 + pos: 19.5,2.5 parent: 16504 - - uid: 20344 + - uid: 20368 components: - type: Transform - pos: 16.5,5.5 + pos: -4.5,6.5 parent: 16504 - - uid: 20345 + - uid: 20369 components: - type: Transform - pos: 17.5,5.5 + pos: -6.5,6.5 parent: 16504 - - uid: 20346 + - uid: 20393 components: - type: Transform - pos: 18.5,5.5 + pos: -11.5,13.5 parent: 16504 - - uid: 20347 + - uid: 20394 components: - type: Transform - pos: 19.5,5.5 + pos: -11.5,14.5 parent: 16504 - - uid: 20348 + - uid: 20396 components: - type: Transform - pos: 19.5,4.5 + pos: -11.5,16.5 parent: 16504 - - uid: 20349 + - uid: 20424 components: - type: Transform - pos: 19.5,3.5 + pos: 10.5,19.5 parent: 16504 - - uid: 20350 + - uid: 20441 components: - type: Transform - pos: 19.5,2.5 + pos: 7.5,19.5 parent: 16504 - - uid: 20351 + - uid: 20442 components: - type: Transform - pos: 19.5,1.5 + pos: 9.5,19.5 parent: 16504 - - uid: 20352 + - uid: 20443 components: - type: Transform - pos: 18.5,1.5 + pos: 7.5,20.5 parent: 16504 - - uid: 20353 + - uid: 20444 components: - type: Transform - pos: 17.5,1.5 + pos: 9.5,20.5 parent: 16504 - - uid: 20354 + - uid: 20445 components: - type: Transform - pos: 16.5,1.5 + pos: 7.5,22.5 parent: 16504 - - uid: 20355 + - uid: 20446 components: - type: Transform - pos: 16.5,0.5 + pos: 9.5,22.5 parent: 16504 - - uid: 20356 + - uid: 20447 components: - type: Transform - pos: 16.5,-0.5 + pos: 7.5,23.5 parent: 16504 - - uid: 20357 + - uid: 20448 components: - type: Transform - pos: 16.5,-1.5 + pos: 9.5,23.5 parent: 16504 - - uid: 20358 + - uid: 20449 components: - type: Transform - pos: 15.5,-1.5 + pos: 7.5,25.5 parent: 16504 - - uid: 20359 + - uid: 20450 components: - type: Transform - pos: 15.5,-2.5 + pos: 7.5,26.5 parent: 16504 - - uid: 20360 + - uid: 20451 components: - type: Transform - pos: 14.5,-2.5 + pos: 9.5,26.5 parent: 16504 - - uid: 20361 + - uid: 20452 components: - type: Transform - pos: 14.5,-3.5 + pos: 9.5,25.5 parent: 16504 - - uid: 20362 + - uid: 20453 components: - type: Transform - pos: 14.5,-4.5 + pos: 7.5,28.5 parent: 16504 - - uid: 20363 + - uid: 20454 components: - type: Transform - pos: 14.5,-5.5 + pos: 7.5,29.5 parent: 16504 - - uid: 20364 + - uid: 20455 components: - type: Transform - pos: 14.5,-6.5 + pos: 9.5,29.5 parent: 16504 - - uid: 20365 + - uid: 20456 components: - type: Transform - pos: 14.5,-7.5 + pos: 9.5,28.5 parent: 16504 - - uid: 20366 + - uid: 20459 components: - type: Transform - pos: 17.5,-6.5 + pos: 9.5,32.5 parent: 16504 - - uid: 20367 + - uid: 20460 components: - type: Transform - pos: -5.5,7.5 + pos: 9.5,31.5 parent: 16504 - - uid: 20368 + - uid: 20476 components: - type: Transform - pos: -4.5,6.5 + pos: -1.5,28.5 parent: 16504 - - uid: 20369 + - uid: 20477 components: - type: Transform - pos: -6.5,6.5 + pos: 2.5,24.5 parent: 16504 - - uid: 20370 + - uid: 20478 components: - type: Transform - pos: 6.5,20.5 + pos: -1.5,24.5 parent: 16504 - - uid: 20371 + - uid: 20479 components: - type: Transform - pos: -5.5,14.5 + pos: 2.5,28.5 parent: 16504 - - uid: 20372 + - uid: 20480 components: - type: Transform - pos: -5.5,15.5 + pos: 3.5,26.5 parent: 16504 - - uid: 20373 + - uid: 20481 components: - type: Transform - pos: -4.5,19.5 + pos: -2.5,26.5 parent: 16504 - - uid: 20374 + - uid: 20482 components: - type: Transform - pos: -5.5,17.5 + rot: 3.141592653589793 rad + pos: 15.5,19.5 parent: 16504 - - uid: 20375 + - uid: 20483 components: - type: Transform - pos: -5.5,18.5 + rot: 3.141592653589793 rad + pos: 13.5,19.5 parent: 16504 - - uid: 20376 + - uid: 20484 components: - type: Transform - pos: 6.5,14.5 + rot: 3.141592653589793 rad + pos: 11.5,19.5 parent: 16504 - - uid: 20377 + - uid: 20486 components: - type: Transform - pos: 6.5,15.5 + rot: 3.141592653589793 rad + pos: 17.5,21.5 parent: 16504 - - uid: 20378 + - uid: 20487 components: - type: Transform - pos: -5.5,19.5 + rot: 3.141592653589793 rad + pos: 12.5,19.5 parent: 16504 - - uid: 20379 + - uid: 20524 components: - type: Transform - pos: 6.5,17.5 + rot: 1.5707963267948966 rad + pos: 19.5,14.5 parent: 16504 - - uid: 20380 + - uid: 20538 components: - type: Transform - pos: 6.5,18.5 + rot: 3.141592653589793 rad + pos: 17.5,29.5 parent: 16504 - - uid: 20381 + - uid: 20539 components: - type: Transform - pos: 6.5,19.5 + rot: 3.141592653589793 rad + pos: 16.5,29.5 parent: 16504 - - uid: 20382 + - uid: 20540 components: - type: Transform - pos: 5.5,19.5 + rot: 3.141592653589793 rad + pos: 15.5,29.5 parent: 16504 - - uid: 20383 + - uid: 20542 components: - type: Transform - pos: 1.5,19.5 + rot: 3.141592653589793 rad + pos: 13.5,29.5 parent: 16504 - - uid: 20384 + - uid: 20543 components: - type: Transform - pos: -3.5,19.5 + rot: 3.141592653589793 rad + pos: 12.5,29.5 parent: 16504 - - uid: 20385 + - uid: 20544 components: - type: Transform - pos: -0.5,19.5 + rot: 3.141592653589793 rad + pos: 11.5,29.5 parent: 16504 - - uid: 20386 + - uid: 20545 components: - type: Transform - pos: -2.5,19.5 + rot: 3.141592653589793 rad + pos: 11.5,25.5 parent: 16504 - - uid: 20387 + - uid: 20546 components: - type: Transform - pos: 3.5,19.5 + rot: 3.141592653589793 rad + pos: 13.5,25.5 parent: 16504 - - uid: 20388 + - uid: 20547 components: - type: Transform - pos: -1.5,19.5 + rot: 3.141592653589793 rad + pos: 12.5,25.5 parent: 16504 - - uid: 20389 + - uid: 20548 components: - type: Transform - pos: 4.5,19.5 + rot: 3.141592653589793 rad + pos: 13.5,21.5 parent: 16504 - - uid: 20390 + - uid: 20549 components: - type: Transform - pos: 2.5,19.5 + rot: 3.141592653589793 rad + pos: 12.5,21.5 parent: 16504 - - uid: 20391 + - uid: 20550 components: - type: Transform - pos: -19.5,17.5 + rot: 3.141592653589793 rad + pos: 11.5,21.5 parent: 16504 - - uid: 20392 + - uid: 20551 components: - type: Transform - pos: -9.5,19.5 + rot: 3.141592653589793 rad + pos: 15.5,25.5 parent: 16504 - - uid: 20393 + - uid: 20552 components: - type: Transform - pos: -11.5,13.5 + rot: 3.141592653589793 rad + pos: 16.5,25.5 parent: 16504 - - uid: 20394 + - uid: 20553 components: - type: Transform - pos: -11.5,14.5 + rot: 3.141592653589793 rad + pos: 17.5,25.5 parent: 16504 - - uid: 20395 + - uid: 20554 components: - type: Transform - pos: -11.5,17.5 + rot: 3.141592653589793 rad + pos: 13.5,26.5 parent: 16504 - - uid: 20396 + - uid: 20555 components: - type: Transform - pos: -11.5,16.5 + rot: 3.141592653589793 rad + pos: 15.5,26.5 parent: 16504 - - uid: 20397 + - uid: 20556 components: - type: Transform - pos: -11.5,19.5 + rot: 3.141592653589793 rad + pos: 13.5,22.5 parent: 16504 - - uid: 20398 + - uid: 20557 components: - type: Transform - pos: -6.5,19.5 + rot: 3.141592653589793 rad + pos: 16.5,19.5 parent: 16504 - - uid: 20399 + - uid: 20558 components: - type: Transform - pos: -10.5,19.5 + rot: 3.141592653589793 rad + pos: 17.5,19.5 parent: 16504 - - uid: 20400 + - uid: 20559 components: - type: Transform - pos: -7.5,19.5 + rot: 3.141592653589793 rad + pos: 16.5,21.5 parent: 16504 - - uid: 20401 + - uid: 20560 components: - type: Transform - pos: -11.5,18.5 + rot: 3.141592653589793 rad + pos: 15.5,21.5 parent: 16504 - - uid: 20402 + - uid: 20561 components: - type: Transform - pos: -18.5,17.5 + pos: -23.5,24.5 parent: 16504 - - uid: 20403 + - uid: 20562 components: - type: Transform - pos: -17.5,17.5 + rot: 3.141592653589793 rad + pos: 15.5,22.5 parent: 16504 - - uid: 20404 + - uid: 20563 components: - type: Transform - pos: -16.5,17.5 + pos: -26.5,24.5 parent: 16504 - - uid: 20405 + - uid: 20564 components: - type: Transform - pos: -15.5,17.5 + pos: -27.5,27.5 parent: 16504 - - uid: 20406 + - uid: 20565 components: - type: Transform - pos: -14.5,17.5 + pos: -27.5,26.5 parent: 16504 - - uid: 20407 + - uid: 20566 components: - type: Transform - pos: -13.5,17.5 + pos: -22.5,27.5 parent: 16504 - - uid: 20408 + - uid: 20567 components: - type: Transform - pos: -12.5,17.5 + pos: -22.5,26.5 parent: 16504 - - uid: 20409 + - uid: 20568 components: - type: Transform - pos: -5.5,20.5 + pos: -22.5,25.5 parent: 16504 - - uid: 20410 + - uid: 20569 components: - type: Transform - pos: -5.5,21.5 + pos: -27.5,25.5 parent: 16504 - - uid: 20411 + - uid: 20570 components: - type: Transform - pos: -5.5,22.5 + pos: -26.5,23.5 parent: 16504 - - uid: 20412 + - uid: 20571 components: - type: Transform - pos: -5.5,23.5 + pos: -23.5,23.5 parent: 16504 - - uid: 20413 + - uid: 20572 components: - type: Transform - pos: -5.5,24.5 + pos: -28.5,28.5 parent: 16504 - - uid: 20414 + - uid: 20573 components: - type: Transform - pos: -5.5,25.5 + pos: -21.5,28.5 parent: 16504 - - uid: 20415 + - uid: 20574 components: - type: Transform - pos: -5.5,26.5 + pos: -28.5,29.5 parent: 16504 - - uid: 20416 + - uid: 20575 components: - type: Transform - pos: -5.5,27.5 + pos: -28.5,30.5 parent: 16504 - - uid: 20417 + - uid: 20576 components: - type: Transform - pos: 6.5,21.5 + pos: -21.5,30.5 parent: 16504 - - uid: 20418 + - uid: 20577 components: - type: Transform - pos: 6.5,22.5 + pos: -27.5,31.5 parent: 16504 - - uid: 20419 + - uid: 20578 components: - type: Transform - pos: 6.5,23.5 + pos: -22.5,31.5 parent: 16504 - - uid: 20420 + - uid: 20579 components: - type: Transform - pos: 6.5,24.5 + rot: 1.5707963267948966 rad + pos: 22.5,18.5 parent: 16504 - - uid: 20421 + - uid: 20580 components: - type: Transform - pos: 6.5,25.5 + pos: 10.5,17.5 parent: 16504 - - uid: 20422 + - uid: 20581 components: - type: Transform - pos: 6.5,26.5 + pos: 10.5,18.5 parent: 16504 - - uid: 20423 + - uid: 20582 components: - type: Transform - pos: 6.5,27.5 + pos: 10.5,13.5 parent: 16504 - - uid: 20424 + - uid: 20583 components: - type: Transform - pos: 10.5,19.5 + pos: 10.5,14.5 parent: 16504 - - uid: 20425 + - uid: 20584 components: - type: Transform - pos: -5.5,28.5 + pos: 10.5,15.5 parent: 16504 - - uid: 20426 + - uid: 20585 components: - type: Transform - pos: -5.5,29.5 + rot: 1.5707963267948966 rad + pos: 20.5,14.5 parent: 16504 - - uid: 20427 + - uid: 20586 components: - type: Transform - pos: -5.5,30.5 + rot: 1.5707963267948966 rad + pos: 21.5,14.5 parent: 16504 - - uid: 20428 + - uid: 20587 components: - type: Transform - pos: -5.5,31.5 + rot: 1.5707963267948966 rad + pos: 22.5,14.5 parent: 16504 - - uid: 20429 + - uid: 20588 components: - type: Transform - pos: -4.5,31.5 + rot: 1.5707963267948966 rad + pos: 23.5,13.5 parent: 16504 - - uid: 20430 + - uid: 20589 components: - type: Transform - pos: -3.5,31.5 + pos: 32.5,21.5 parent: 16504 - - uid: 20431 + - uid: 20590 components: - type: Transform - pos: -2.5,31.5 + pos: 22.5,19.5 parent: 16504 - - uid: 20432 + - uid: 20591 components: - type: Transform - pos: -1.5,31.5 + pos: 23.5,20.5 parent: 16504 - - uid: 20433 + - uid: 20592 components: - type: Transform - pos: 2.5,31.5 + pos: 25.5,21.5 parent: 16504 - - uid: 20434 + - uid: 20593 components: - type: Transform - pos: 3.5,31.5 + pos: 24.5,21.5 parent: 16504 - - uid: 20435 + - uid: 20594 components: - type: Transform - pos: 4.5,31.5 + rot: 1.5707963267948966 rad + pos: 31.5,21.5 parent: 16504 - - uid: 20436 + - uid: 20595 components: - type: Transform - pos: 5.5,31.5 + rot: 1.5707963267948966 rad + pos: 30.5,21.5 parent: 16504 - - uid: 20437 + - uid: 20596 components: - type: Transform - pos: 6.5,31.5 + rot: 1.5707963267948966 rad + pos: 29.5,21.5 parent: 16504 - - uid: 20438 + - uid: 20597 components: - type: Transform - pos: 6.5,30.5 + rot: 1.5707963267948966 rad + pos: 28.5,21.5 parent: 16504 - - uid: 20439 + - uid: 20598 components: - type: Transform - pos: 6.5,29.5 + rot: 1.5707963267948966 rad + pos: 27.5,21.5 parent: 16504 - - uid: 20440 + - uid: 20599 components: - type: Transform - pos: 6.5,28.5 + rot: 1.5707963267948966 rad + pos: 26.5,21.5 parent: 16504 - - uid: 20441 + - uid: 20600 components: - type: Transform - pos: 7.5,19.5 + rot: 1.5707963267948966 rad + pos: 23.5,19.5 parent: 16504 - - uid: 20442 + - uid: 20601 components: - type: Transform - pos: 9.5,19.5 + pos: 24.5,12.5 parent: 16504 - - uid: 20443 + - uid: 20602 components: - type: Transform - pos: 7.5,20.5 + pos: 24.5,20.5 parent: 16504 - - uid: 20444 + - uid: 20617 components: - type: Transform - pos: 9.5,20.5 + pos: 23.5,12.5 parent: 16504 - - uid: 20445 + - uid: 20618 components: - type: Transform - pos: 7.5,22.5 + pos: 22.5,13.5 parent: 16504 - - uid: 20446 + - uid: 20651 components: - type: Transform - pos: 9.5,22.5 + rot: 3.141592653589793 rad + pos: 6.5,36.5 parent: 16504 - - uid: 20447 + - uid: 20663 components: - type: Transform - pos: 7.5,23.5 + pos: 22.5,21.5 parent: 16504 - - uid: 20448 + - uid: 20664 components: - type: Transform - pos: 9.5,23.5 + pos: 21.5,18.5 parent: 16504 - - uid: 20449 + - uid: 20665 components: - type: Transform - pos: 7.5,25.5 + pos: 19.5,18.5 parent: 16504 - - uid: 20450 + - uid: 20666 components: - type: Transform - pos: 7.5,26.5 + pos: 22.5,20.5 parent: 16504 - - uid: 20451 + - uid: 20667 components: - type: Transform - pos: 9.5,26.5 + pos: 22.5,22.5 parent: 16504 - - uid: 20452 + - uid: 20668 components: - type: Transform - pos: 9.5,25.5 + pos: 22.5,23.5 parent: 16504 - - uid: 20453 + - uid: 20669 components: - type: Transform - pos: 7.5,28.5 + pos: 22.5,24.5 parent: 16504 - - uid: 20454 + - uid: 20670 components: - type: Transform - pos: 7.5,29.5 + pos: 22.5,25.5 parent: 16504 - - uid: 20455 + - uid: 20671 components: - type: Transform - pos: 9.5,29.5 + pos: 23.5,22.5 parent: 16504 - - uid: 20456 + - uid: 20672 components: - type: Transform - pos: 9.5,28.5 + pos: 24.5,22.5 parent: 16504 - - uid: 20457 + - uid: 20673 components: - type: Transform - pos: 7.5,31.5 + pos: 25.5,22.5 parent: 16504 - - uid: 20458 + - uid: 20674 components: - type: Transform - pos: 7.5,32.5 + pos: 26.5,22.5 parent: 16504 - - uid: 20459 + - uid: 20675 components: - type: Transform - pos: 9.5,32.5 + pos: 27.5,22.5 parent: 16504 - - uid: 20460 + - uid: 20676 components: - type: Transform - pos: 9.5,31.5 + pos: 28.5,22.5 parent: 16504 - - uid: 20461 + - uid: 20677 components: - type: Transform - pos: 10.5,20.5 + pos: 29.5,22.5 parent: 16504 - - uid: 20462 + - uid: 20678 components: - type: Transform - pos: 10.5,21.5 + pos: 30.5,22.5 parent: 16504 - - uid: 20463 + - uid: 20679 components: - type: Transform - pos: 10.5,22.5 + pos: 31.5,22.5 parent: 16504 - - uid: 20464 + - uid: 20680 components: - type: Transform - pos: 10.5,23.5 + pos: 32.5,22.5 parent: 16504 - - uid: 20465 + - uid: 20681 components: - type: Transform - pos: 10.5,24.5 + pos: 22.5,29.5 parent: 16504 - - uid: 20466 + - uid: 20682 components: - type: Transform - pos: 10.5,25.5 + pos: 22.5,28.5 parent: 16504 - - uid: 20467 + - uid: 20683 components: - type: Transform - pos: 10.5,26.5 + pos: 22.5,27.5 parent: 16504 - - uid: 20468 + - uid: 20684 components: - type: Transform - pos: 10.5,27.5 + pos: 19.5,30.5 parent: 16504 - - uid: 20469 + - uid: 20685 components: - type: Transform - pos: 10.5,28.5 + pos: 21.5,30.5 parent: 16504 - - uid: 20470 + - uid: 20686 components: - type: Transform - pos: 10.5,29.5 + pos: 22.5,30.5 parent: 16504 - - uid: 20471 + - uid: 20687 components: - type: Transform - pos: 10.5,30.5 + pos: 22.5,31.5 parent: 16504 - - uid: 20472 + - uid: 20688 components: - type: Transform - pos: 10.5,31.5 + pos: 23.5,35.5 parent: 16504 - - uid: 20473 + - uid: 20689 components: - type: Transform - pos: 10.5,32.5 + pos: 24.5,35.5 parent: 16504 - - uid: 20474 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 20713 components: - type: Transform - pos: 10.5,33.5 + rot: 1.5707963267948966 rad + pos: -27.5,24.5 parent: 16504 - - uid: 20475 + - uid: 20714 components: - type: Transform - pos: 10.5,34.5 + rot: 3.141592653589793 rad + pos: -22.5,24.5 parent: 16504 - - uid: 20476 + - uid: 20715 components: - type: Transform - pos: -1.5,28.5 + rot: -1.5707963267948966 rad + pos: -22.5,23.5 parent: 16504 - - uid: 20477 + - uid: 20716 components: - type: Transform - pos: 2.5,24.5 + pos: -27.5,23.5 parent: 16504 - - uid: 20478 + - uid: 20717 components: - type: Transform - pos: -1.5,24.5 + rot: -1.5707963267948966 rad + pos: -27.5,28.5 parent: 16504 - - uid: 20479 + - uid: 20718 components: - type: Transform - pos: 2.5,28.5 + pos: -22.5,28.5 parent: 16504 - - uid: 20480 + - uid: 20719 components: - type: Transform - pos: 3.5,26.5 + pos: -28.5,31.5 parent: 16504 - - uid: 20481 + - uid: 20720 components: - type: Transform - pos: -2.5,26.5 + rot: -1.5707963267948966 rad + pos: -21.5,31.5 parent: 16504 - - uid: 20482 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 7894 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,19.5 + pos: -19.5,21.5 parent: 16504 - - uid: 20483 + - uid: 8036 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,19.5 + pos: -19.5,23.5 parent: 16504 - - uid: 20484 + - uid: 9702 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,19.5 - parent: 16504 - - uid: 20485 - components: - - type: Transform - pos: -11.5,28.5 + pos: -19.5,24.5 parent: 16504 - - uid: 20486 + - uid: 9716 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,21.5 + pos: -19.5,22.5 parent: 16504 - - uid: 20487 + - uid: 9892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,19.5 + pos: 0.5,19.5 parent: 16504 - - uid: 20488 + - uid: 15399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,13.5 + pos: 14.5,11.5 parent: 16504 - - uid: 20489 + - uid: 19971 components: - type: Transform - pos: -12.5,26.5 + rot: 3.141592653589793 rad + pos: 16.5,-7.5 parent: 16504 - - uid: 20490 + - uid: 19972 components: - type: Transform - pos: -14.5,26.5 + rot: 3.141592653589793 rad + pos: 3.5,-5.5 parent: 16504 - - uid: 20491 + - uid: 19973 components: - type: Transform - pos: -13.5,26.5 + rot: 3.141592653589793 rad + pos: 3.5,-7.5 parent: 16504 - - uid: 20492 + - uid: 19974 components: - type: Transform - pos: -11.5,27.5 + rot: 3.141592653589793 rad + pos: -3.5,-0.5 parent: 16504 - - uid: 20493 + - uid: 19975 components: - type: Transform - pos: -16.5,26.5 + rot: 3.141592653589793 rad + pos: -8.5,2.5 parent: 16504 - - uid: 20494 + - uid: 19976 components: - type: Transform - pos: -15.5,26.5 + rot: 3.141592653589793 rad + pos: -8.5,1.5 parent: 16504 - - uid: 20495 + - uid: 19977 components: - type: Transform - pos: -18.5,26.5 + rot: 3.141592653589793 rad + pos: -8.5,0.5 parent: 16504 - - uid: 20496 + - uid: 19978 components: - type: Transform - pos: -17.5,26.5 + rot: 3.141592653589793 rad + pos: -7.5,-0.5 parent: 16504 - - uid: 20497 + - uid: 19981 components: - type: Transform - pos: -8.5,31.5 + rot: 3.141592653589793 rad + pos: -6.5,-0.5 parent: 16504 - - uid: 20498 + - uid: 19982 components: - type: Transform - pos: -7.5,31.5 + rot: 3.141592653589793 rad + pos: -5.5,-0.5 parent: 16504 - - uid: 20499 + - uid: 19983 components: - type: Transform - pos: -6.5,31.5 + rot: 3.141592653589793 rad + pos: -3.5,7.5 parent: 16504 - - uid: 20500 + - uid: 19984 components: - type: Transform - pos: -19.5,18.5 + rot: 3.141592653589793 rad + pos: -4.5,7.5 parent: 16504 - - uid: 20501 + - uid: 19986 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,12.5 + pos: -6.5,7.5 parent: 16504 - - uid: 20502 + - uid: 19987 components: - type: Transform - pos: 17.5,8.5 + rot: 3.141592653589793 rad + pos: -7.5,7.5 parent: 16504 - - uid: 20503 + - uid: 19988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-7.5 + rot: 3.141592653589793 rad + pos: -8.5,7.5 parent: 16504 - - uid: 20504 + - uid: 19989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-7.5 + rot: 3.141592653589793 rad + pos: -9.5,7.5 parent: 16504 - - uid: 20505 + - uid: 19990 components: - type: Transform - pos: 18.5,-1.5 + rot: 3.141592653589793 rad + pos: -10.5,6.5 parent: 16504 - - uid: 20506 + - uid: 19991 components: - type: Transform - pos: -11.5,30.5 + rot: 3.141592653589793 rad + pos: -9.5,6.5 parent: 16504 - - uid: 20507 + - uid: 19994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,9.5 + rot: 3.141592653589793 rad + pos: -11.5,5.5 parent: 16504 - - uid: 20508 + - uid: 19995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,9.5 + rot: 3.141592653589793 rad + pos: -10.5,5.5 parent: 16504 - - uid: 20509 + - uid: 19996 components: - type: Transform - pos: -10.5,30.5 + rot: 3.141592653589793 rad + pos: -9.5,5.5 parent: 16504 - - uid: 20510 + - uid: 19997 components: - type: Transform - pos: -10.5,31.5 + rot: 3.141592653589793 rad + pos: -8.5,4.5 parent: 16504 - - uid: 20511 + - uid: 19999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,11.5 + rot: 3.141592653589793 rad + pos: -8.5,3.5 parent: 16504 - - uid: 20512 + - uid: 20000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,11.5 + rot: 3.141592653589793 rad + pos: -7.5,5.5 parent: 16504 - - uid: 20513 + - uid: 20001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,11.5 + rot: 3.141592653589793 rad + pos: -8.5,-0.5 parent: 16504 - - uid: 20514 + - uid: 20008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,11.5 + pos: 16.5,8.5 parent: 16504 - - uid: 20515 + - uid: 20210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,11.5 + pos: 16.5,7.5 parent: 16504 - - uid: 20516 + - uid: 20231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,11.5 + pos: 16.5,6.5 parent: 16504 - - uid: 20517 + - uid: 20232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,12.5 + pos: 16.5,5.5 parent: 16504 - - uid: 20518 + - uid: 20233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,11.5 + pos: 17.5,5.5 parent: 16504 - - uid: 20519 + - uid: 20238 components: - type: Transform - pos: -11.5,29.5 + pos: 18.5,5.5 parent: 16504 - - uid: 20520 + - uid: 20258 components: - type: Transform - pos: -9.5,31.5 + pos: 19.5,5.5 parent: 16504 - - uid: 20521 + - uid: 20259 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,13.5 + pos: 19.5,1.5 parent: 16504 - - uid: 20522 + - uid: 20260 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,14.5 + pos: 18.5,1.5 parent: 16504 - - uid: 20523 + - uid: 20261 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 16504 - - uid: 20524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,14.5 + pos: 17.5,1.5 parent: 16504 - - uid: 20525 + - uid: 20262 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,17.5 + pos: 16.5,1.5 parent: 16504 - - uid: 20526 + - uid: 20263 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,18.5 + pos: 16.5,0.5 parent: 16504 - - uid: 20527 + - uid: 20277 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,19.5 + pos: 16.5,-0.5 parent: 16504 - - uid: 20528 + - uid: 20278 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,20.5 + pos: 16.5,-1.5 parent: 16504 - - uid: 20529 + - uid: 20280 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,21.5 + pos: 15.5,-1.5 parent: 16504 - - uid: 20530 + - uid: 20281 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,22.5 + pos: 15.5,-2.5 parent: 16504 - - uid: 20531 + - uid: 20282 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,23.5 + pos: 14.5,-2.5 parent: 16504 - - uid: 20532 + - uid: 20305 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,24.5 + pos: 14.5,-3.5 parent: 16504 - - uid: 20533 + - uid: 20306 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,25.5 + pos: 14.5,-4.5 parent: 16504 - - uid: 20534 + - uid: 20307 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,26.5 + pos: 14.5,-5.5 parent: 16504 - - uid: 20535 + - uid: 20308 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,27.5 + pos: 14.5,-6.5 parent: 16504 - - uid: 20536 + - uid: 20309 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,28.5 + pos: 14.5,-7.5 parent: 16504 - - uid: 20537 + - uid: 20310 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,29.5 + pos: 17.5,-6.5 parent: 16504 - - uid: 20538 + - uid: 20312 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,29.5 + pos: -5.5,7.5 parent: 16504 - - uid: 20539 + - uid: 20313 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,29.5 + pos: -12.5,26.5 parent: 16504 - - uid: 20540 + - uid: 20318 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,29.5 - parent: 16504 - - uid: 20541 - components: - - type: Transform - pos: 11.5,34.5 + pos: -14.5,26.5 parent: 16504 - - uid: 20542 + - uid: 20326 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,29.5 + pos: -13.5,26.5 parent: 16504 - - uid: 20543 + - uid: 20341 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,29.5 + pos: -16.5,26.5 parent: 16504 - - uid: 20544 + - uid: 20342 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,29.5 + pos: -15.5,26.5 parent: 16504 - - uid: 20545 + - uid: 20343 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,25.5 + pos: -18.5,26.5 parent: 16504 - - uid: 20546 + - uid: 20344 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,25.5 + pos: -17.5,26.5 parent: 16504 - - uid: 20547 + - uid: 20345 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,25.5 + pos: 17.5,-7.5 parent: 16504 - - uid: 20548 + - uid: 20346 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,21.5 + pos: 15.5,-7.5 parent: 16504 - - uid: 20549 + - uid: 20347 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,21.5 + pos: 18.5,-1.5 parent: 16504 - - uid: 20550 + - uid: 20351 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,21.5 + pos: 18.5,-5.5 parent: 16504 - - uid: 20551 + - uid: 20352 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,25.5 + pos: 18.5,-6.5 parent: 16504 - - uid: 20552 + - uid: 20353 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,25.5 + pos: 19.5,8.5 parent: 16504 - - uid: 20553 + - uid: 20354 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,25.5 + pos: 18.5,-2.5 parent: 16504 - - uid: 20554 + - uid: 20355 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,26.5 + pos: 19.5,0.5 parent: 16504 - - uid: 20555 + - uid: 20356 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,26.5 + pos: 19.5,-0.5 parent: 16504 - - uid: 20556 + - uid: 20357 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,22.5 + pos: 18.5,-0.5 parent: 16504 - - uid: 20557 + - uid: 20358 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,19.5 + pos: 18.5,-3.5 parent: 16504 - - uid: 20558 + - uid: 20359 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,19.5 + pos: 18.5,-4.5 parent: 16504 - - uid: 20559 + - uid: 20360 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,21.5 + pos: -0.5,36.5 parent: 16504 - - uid: 20560 + - uid: 20361 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,21.5 - parent: 16504 - - uid: 20561 - components: - - type: Transform - pos: -23.5,24.5 + pos: 0.5,36.5 parent: 16504 - - uid: 20562 + - uid: 20362 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,22.5 - parent: 16504 - - uid: 20563 - components: - - type: Transform - pos: -26.5,24.5 - parent: 16504 - - uid: 20564 - components: - - type: Transform - pos: -27.5,27.5 - parent: 16504 - - uid: 20565 - components: - - type: Transform - pos: -27.5,26.5 - parent: 16504 - - uid: 20566 - components: - - type: Transform - pos: -22.5,27.5 - parent: 16504 - - uid: 20567 - components: - - type: Transform - pos: -22.5,26.5 - parent: 16504 - - uid: 20568 - components: - - type: Transform - pos: -22.5,25.5 - parent: 16504 - - uid: 20569 - components: - - type: Transform - pos: -27.5,25.5 - parent: 16504 - - uid: 20570 - components: - - type: Transform - pos: -26.5,23.5 - parent: 16504 - - uid: 20571 - components: - - type: Transform - pos: -23.5,23.5 - parent: 16504 - - uid: 20572 - components: - - type: Transform - pos: -28.5,28.5 - parent: 16504 - - uid: 20573 - components: - - type: Transform - pos: -21.5,28.5 - parent: 16504 - - uid: 20574 - components: - - type: Transform - pos: -28.5,29.5 - parent: 16504 - - uid: 20575 - components: - - type: Transform - pos: -28.5,30.5 + pos: 1.5,36.5 parent: 16504 - - uid: 20576 + - uid: 20363 components: - type: Transform - pos: -21.5,30.5 + rot: 3.141592653589793 rad + pos: 3.5,36.5 parent: 16504 - - uid: 20577 + - uid: 20364 components: - type: Transform - pos: -27.5,31.5 + rot: 3.141592653589793 rad + pos: 4.5,36.5 parent: 16504 - - uid: 20578 + - uid: 20365 components: - type: Transform - pos: -22.5,31.5 + rot: 3.141592653589793 rad + pos: 5.5,36.5 parent: 16504 - - uid: 20579 + - uid: 20366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,18.5 + rot: 3.141592653589793 rad + pos: 6.5,38.5 parent: 16504 - - uid: 20580 + - uid: 20367 components: - type: Transform - pos: 10.5,17.5 + rot: 3.141592653589793 rad + pos: -5.5,35.5 parent: 16504 - - uid: 20581 + - uid: 20489 components: - type: Transform - pos: 10.5,18.5 + rot: 3.141592653589793 rad + pos: -11.5,26.5 parent: 16504 - - uid: 20582 + - uid: 20490 components: - type: Transform - pos: 10.5,13.5 + rot: 3.141592653589793 rad + pos: -4.5,-0.5 parent: 16504 - - uid: 20583 + - uid: 20491 components: - type: Transform - pos: 10.5,14.5 + rot: 3.141592653589793 rad + pos: -19.5,17.5 parent: 16504 - - uid: 20584 + - uid: 20493 components: - type: Transform - pos: 10.5,15.5 + rot: 3.141592653589793 rad + pos: -11.5,17.5 parent: 16504 - - uid: 20585 + - uid: 20494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,14.5 + rot: 3.141592653589793 rad + pos: -18.5,17.5 parent: 16504 - - uid: 20586 + - uid: 20495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,14.5 + rot: 3.141592653589793 rad + pos: -17.5,17.5 parent: 16504 - - uid: 20587 + - uid: 20496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,14.5 + rot: 3.141592653589793 rad + pos: -16.5,17.5 parent: 16504 - - uid: 20588 + - uid: 20499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,13.5 + pos: -6.5,-10.5 parent: 16504 - - uid: 20589 + - uid: 20500 components: - type: Transform - pos: 32.5,21.5 + pos: -6.5,-9.5 parent: 16504 - - uid: 20590 + - uid: 20503 components: - type: Transform - pos: 22.5,19.5 + rot: 3.141592653589793 rad + pos: -15.5,17.5 parent: 16504 - - uid: 20591 + - uid: 20504 components: - type: Transform - pos: 23.5,20.5 + rot: 3.141592653589793 rad + pos: -14.5,17.5 parent: 16504 - - uid: 20592 + - uid: 20505 components: - type: Transform - pos: 25.5,21.5 + rot: 3.141592653589793 rad + pos: -13.5,17.5 parent: 16504 - - uid: 20593 + - uid: 20519 components: - type: Transform - pos: 24.5,21.5 + rot: 3.141592653589793 rad + pos: -12.5,17.5 parent: 16504 - - uid: 20594 + - uid: 20520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,21.5 + pos: -6.5,-11.5 parent: 16504 - - uid: 20595 + - uid: 20521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,21.5 + pos: -6.5,-12.5 parent: 16504 - - uid: 20596 + - uid: 20525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,21.5 + pos: -5.5,-12.5 parent: 16504 - - uid: 20597 + - uid: 20528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,21.5 + pos: -4.5,-12.5 parent: 16504 - - uid: 20598 + - uid: 20534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,21.5 + rot: 3.141592653589793 rad + pos: 3.5,7.5 parent: 16504 - - uid: 20599 + - uid: 20535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,21.5 + rot: 3.141592653589793 rad + pos: 2.5,7.5 parent: 16504 - - uid: 20600 + - uid: 20536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,19.5 + rot: 3.141592653589793 rad + pos: -2.5,-7.5 parent: 16504 - - uid: 20601 + - uid: 20537 components: - type: Transform - pos: 24.5,12.5 + pos: -4.5,-3.5 parent: 16504 - - uid: 20602 + - uid: 20541 components: - type: Transform - pos: 24.5,20.5 + pos: -4.5,-2.5 parent: 16504 - uid: 20603 components: - type: Transform - pos: 18.5,-5.5 + rot: 3.141592653589793 rad + pos: -2.5,-4.5 parent: 16504 - uid: 20604 components: - type: Transform - pos: 18.5,-6.5 + rot: 3.141592653589793 rad + pos: 3.5,0.5 parent: 16504 - uid: 20605 components: - type: Transform - pos: 18.5,8.5 + pos: -4.5,-1.5 parent: 16504 - uid: 20606 components: - type: Transform - pos: 19.5,8.5 + rot: 3.141592653589793 rad + pos: 3.5,-0.5 parent: 16504 - uid: 20607 components: - type: Transform - pos: 19.5,7.5 + rot: 3.141592653589793 rad + pos: -1.5,7.5 parent: 16504 - uid: 20608 components: - type: Transform - pos: 20.5,7.5 + pos: 9.5,12.5 parent: 16504 - uid: 20609 components: - type: Transform - pos: 18.5,-2.5 + rot: 3.141592653589793 rad + pos: 2.5,-0.5 parent: 16504 - uid: 20610 components: - type: Transform - pos: 20.5,6.5 + pos: 4.5,13.5 parent: 16504 - uid: 20611 components: - type: Transform - pos: 20.5,5.5 + pos: 5.5,13.5 parent: 16504 - uid: 20612 components: - type: Transform - pos: 19.5,0.5 + rot: 3.141592653589793 rad + pos: -1.5,-0.5 parent: 16504 - uid: 20613 components: - type: Transform - pos: 19.5,-0.5 + rot: 3.141592653589793 rad + pos: 4.5,-0.5 parent: 16504 - uid: 20614 components: - type: Transform - pos: 18.5,-0.5 + rot: 3.141592653589793 rad + pos: 3.5,6.5 parent: 16504 - uid: 20615 components: - type: Transform - pos: 18.5,-3.5 + rot: 3.141592653589793 rad + pos: -5.5,31.5 parent: 16504 - uid: 20616 components: - type: Transform - pos: 18.5,-4.5 - parent: 16504 - - uid: 20617 - components: - - type: Transform - pos: 23.5,12.5 - parent: 16504 - - uid: 20618 - components: - - type: Transform - pos: 22.5,13.5 + rot: 3.141592653589793 rad + pos: -4.5,31.5 parent: 16504 - uid: 20619 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,36.5 + pos: 6.5,13.5 parent: 16504 - uid: 20620 components: - type: Transform - pos: 7.5,34.5 + pos: 11.5,12.5 parent: 16504 - uid: 20621 components: - type: Transform - pos: 7.5,35.5 + pos: -5.5,13.5 parent: 16504 - uid: 20622 components: - type: Transform - pos: 7.5,36.5 + pos: 10.5,12.5 parent: 16504 - uid: 20623 components: - type: Transform - pos: 7.5,37.5 + pos: -6.5,-1.5 parent: 16504 - uid: 20624 components: - type: Transform - pos: 7.5,38.5 + pos: -6.5,-3.5 parent: 16504 - uid: 20625 components: - type: Transform - pos: 9.5,34.5 + pos: 12.5,12.5 parent: 16504 - uid: 20626 components: - type: Transform - pos: 9.5,35.5 + pos: 12.5,11.5 parent: 16504 - uid: 20627 components: - type: Transform - pos: 9.5,36.5 + pos: 13.5,11.5 parent: 16504 - uid: 20628 components: - type: Transform - pos: 9.5,37.5 + pos: 13.5,10.5 parent: 16504 - uid: 20629 components: - type: Transform - pos: 9.5,38.5 + pos: 14.5,10.5 parent: 16504 - uid: 20630 components: - type: Transform - pos: 8.5,38.5 + pos: 14.5,9.5 parent: 16504 - uid: 20631 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,39.5 + pos: 15.5,9.5 parent: 16504 - uid: 20632 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,38.5 + pos: 6.5,20.5 parent: 16504 - uid: 20633 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,39.5 + pos: -5.5,14.5 parent: 16504 - uid: 20634 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,33.5 + pos: -5.5,15.5 parent: 16504 - uid: 20635 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,32.5 + pos: -4.5,19.5 parent: 16504 - uid: 20636 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,39.5 + pos: -5.5,17.5 parent: 16504 - uid: 20637 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,39.5 + pos: -5.5,18.5 parent: 16504 - uid: 20638 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,39.5 + pos: 6.5,14.5 parent: 16504 - uid: 20639 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,39.5 + pos: 6.5,15.5 parent: 16504 - uid: 20640 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,39.5 + pos: -5.5,19.5 parent: 16504 - uid: 20641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,39.5 + pos: 6.5,17.5 parent: 16504 - uid: 20642 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,36.5 + pos: 6.5,18.5 parent: 16504 - uid: 20643 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,36.5 + pos: 6.5,19.5 parent: 16504 - uid: 20644 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,36.5 + pos: 5.5,19.5 parent: 16504 - uid: 20645 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,36.5 + pos: 14.5,-9.5 parent: 16504 - uid: 20646 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,36.5 + pos: 13.5,-9.5 parent: 16504 - uid: 20647 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,36.5 + pos: 12.5,-9.5 parent: 16504 - uid: 20648 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,36.5 + pos: 11.5,-9.5 parent: 16504 - uid: 20649 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,36.5 + pos: 10.5,-9.5 parent: 16504 - uid: 20650 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,36.5 - parent: 16504 - - uid: 20651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,36.5 + pos: 10.5,-8.5 parent: 16504 - uid: 20652 components: - type: Transform - pos: 18.5,36.5 + pos: 1.5,19.5 parent: 16504 - uid: 20653 components: - type: Transform - pos: 18.5,35.5 + pos: -3.5,19.5 parent: 16504 - uid: 20654 components: - type: Transform - pos: 18.5,34.5 + pos: -0.5,19.5 parent: 16504 - uid: 20655 components: - type: Transform - pos: 18.5,33.5 + pos: -2.5,19.5 parent: 16504 - uid: 20656 components: - type: Transform - pos: 18.5,32.5 + pos: 3.5,19.5 parent: 16504 - uid: 20657 components: - type: Transform - pos: 18.5,31.5 + pos: -1.5,19.5 parent: 16504 - uid: 20658 components: - type: Transform - pos: 18.5,30.5 + pos: 4.5,19.5 parent: 16504 - uid: 20659 components: - type: Transform - pos: 12.5,34.5 + pos: 2.5,19.5 parent: 16504 - uid: 20660 components: - type: Transform - pos: 12.5,35.5 + rot: 3.141592653589793 rad + pos: 10.5,-7.5 parent: 16504 - uid: 20661 components: - type: Transform - pos: 12.5,36.5 + pos: -9.5,19.5 parent: 16504 - uid: 20662 components: - type: Transform - pos: 12.5,37.5 - parent: 16504 - - uid: 20663 - components: - - type: Transform - pos: 22.5,21.5 - parent: 16504 - - uid: 20664 - components: - - type: Transform - pos: 21.5,18.5 - parent: 16504 - - uid: 20665 - components: - - type: Transform - pos: 19.5,18.5 - parent: 16504 - - uid: 20666 - components: - - type: Transform - pos: 22.5,20.5 - parent: 16504 - - uid: 20667 - components: - - type: Transform - pos: 22.5,22.5 - parent: 16504 - - uid: 20668 - components: - - type: Transform - pos: 22.5,23.5 - parent: 16504 - - uid: 20669 - components: - - type: Transform - pos: 22.5,24.5 - parent: 16504 - - uid: 20670 - components: - - type: Transform - pos: 22.5,25.5 - parent: 16504 - - uid: 20671 - components: - - type: Transform - pos: 23.5,22.5 - parent: 16504 - - uid: 20672 - components: - - type: Transform - pos: 24.5,22.5 - parent: 16504 - - uid: 20673 - components: - - type: Transform - pos: 25.5,22.5 - parent: 16504 - - uid: 20674 - components: - - type: Transform - pos: 26.5,22.5 - parent: 16504 - - uid: 20675 - components: - - type: Transform - pos: 27.5,22.5 - parent: 16504 - - uid: 20676 - components: - - type: Transform - pos: 28.5,22.5 - parent: 16504 - - uid: 20677 - components: - - type: Transform - pos: 29.5,22.5 - parent: 16504 - - uid: 20678 - components: - - type: Transform - pos: 30.5,22.5 - parent: 16504 - - uid: 20679 - components: - - type: Transform - pos: 31.5,22.5 - parent: 16504 - - uid: 20680 - components: - - type: Transform - pos: 32.5,22.5 - parent: 16504 - - uid: 20681 - components: - - type: Transform - pos: 22.5,29.5 - parent: 16504 - - uid: 20682 - components: - - type: Transform - pos: 22.5,28.5 - parent: 16504 - - uid: 20683 - components: - - type: Transform - pos: 22.5,27.5 - parent: 16504 - - uid: 20684 - components: - - type: Transform - pos: 19.5,30.5 - parent: 16504 - - uid: 20685 - components: - - type: Transform - pos: 21.5,30.5 - parent: 16504 - - uid: 20686 - components: - - type: Transform - pos: 22.5,30.5 - parent: 16504 - - uid: 20687 - components: - - type: Transform - pos: 22.5,31.5 - parent: 16504 - - uid: 20688 - components: - - type: Transform - pos: 23.5,35.5 - parent: 16504 - - uid: 20689 - components: - - type: Transform - pos: 24.5,35.5 + rot: 3.141592653589793 rad + pos: 10.5,-6.5 parent: 16504 - uid: 20690 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,40.5 + pos: -11.5,19.5 parent: 16504 - uid: 20691 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,40.5 + pos: -6.5,19.5 parent: 16504 - uid: 20692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,40.5 + pos: -10.5,19.5 parent: 16504 - uid: 20693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,41.5 + pos: -7.5,19.5 parent: 16504 - uid: 20694 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,42.5 + pos: -11.5,18.5 parent: 16504 - uid: 20695 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,43.5 + pos: 10.5,-5.5 parent: 16504 - uid: 20696 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,44.5 + pos: 10.5,-4.5 parent: 16504 - uid: 20697 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,44.5 + pos: -3.5,31.5 parent: 16504 - uid: 20698 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,44.5 + pos: -2.5,31.5 parent: 16504 - uid: 20699 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,44.5 + pos: -1.5,31.5 parent: 16504 - uid: 20700 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,44.5 + pos: 2.5,31.5 parent: 16504 - uid: 20701 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,44.5 + pos: 20.5,-9.5 parent: 16504 - uid: 20702 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,44.5 + pos: -5.5,20.5 parent: 16504 - uid: 20703 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,43.5 + pos: -5.5,21.5 parent: 16504 - uid: 20704 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,42.5 + pos: -5.5,22.5 parent: 16504 - uid: 20705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,41.5 + pos: -5.5,23.5 parent: 16504 - uid: 20706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,40.5 + pos: -5.5,24.5 parent: 16504 - uid: 20707 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,40.5 + pos: -5.5,25.5 parent: 16504 - uid: 20708 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,40.5 + pos: -5.5,26.5 parent: 16504 - uid: 20709 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,40.5 + pos: -5.5,27.5 parent: 16504 - uid: 20710 components: - type: Transform - pos: -6.5,36.5 + pos: 6.5,21.5 parent: 16504 - uid: 20711 components: - type: Transform - pos: -6.5,38.5 + pos: 6.5,22.5 parent: 16504 - uid: 20712 components: - type: Transform - pos: -6.5,37.5 - parent: 16504 -- proto: WallPlastitaniumDiagonal - entities: - - uid: 20713 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,24.5 - parent: 16504 - - uid: 20714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,24.5 - parent: 16504 - - uid: 20715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,23.5 - parent: 16504 - - uid: 20716 - components: - - type: Transform - pos: -27.5,23.5 - parent: 16504 - - uid: 20717 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,28.5 - parent: 16504 - - uid: 20718 - components: - - type: Transform - pos: -22.5,28.5 - parent: 16504 - - uid: 20719 - components: - - type: Transform - pos: -28.5,31.5 - parent: 16504 - - uid: 20720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,31.5 + pos: 6.5,23.5 parent: 16504 -- proto: WallPlastitaniumIndestructible - entities: - uid: 20721 components: - type: Transform @@ -130010,17 +133732,17 @@ entities: - uid: 20731 components: - type: Transform - pos: -5.5,41.5 + pos: 6.5,24.5 parent: 16504 - uid: 20732 components: - type: Transform - pos: -5.5,40.5 + pos: 6.5,25.5 parent: 16504 - uid: 20733 components: - type: Transform - pos: -4.5,41.5 + pos: 6.5,26.5 parent: 16504 - uid: 20734 components: @@ -130090,12 +133812,14 @@ entities: - uid: 20747 components: - type: Transform - pos: 3.5,7.5 + rot: 3.141592653589793 rad + pos: 21.5,-4.5 parent: 16504 - uid: 20748 components: - type: Transform - pos: 2.5,7.5 + rot: 3.141592653589793 rad + pos: 18.5,-9.5 parent: 16504 - uid: 20749 components: @@ -130105,7 +133829,8 @@ entities: - uid: 20750 components: - type: Transform - pos: -2.5,-7.5 + rot: 3.141592653589793 rad + pos: 21.5,-7.5 parent: 16504 - uid: 20751 components: @@ -130120,7 +133845,8 @@ entities: - uid: 20753 components: - type: Transform - pos: -2.5,-4.5 + rot: 3.141592653589793 rad + pos: 21.5,-9.5 parent: 16504 - uid: 20754 components: @@ -130140,17 +133866,20 @@ entities: - uid: 20757 components: - type: Transform - pos: 3.5,0.5 + rot: 3.141592653589793 rad + pos: 21.5,-5.5 parent: 16504 - uid: 20758 components: - type: Transform - pos: 3.5,-0.5 + rot: 3.141592653589793 rad + pos: 21.5,-3.5 parent: 16504 - uid: 20759 components: - type: Transform - pos: -1.5,7.5 + rot: 3.141592653589793 rad + pos: 21.5,-6.5 parent: 16504 - uid: 20760 components: @@ -130180,7 +133909,7 @@ entities: - uid: 20765 components: - type: Transform - pos: -6.5,-4.5 + pos: 6.5,27.5 parent: 16504 - uid: 20766 components: @@ -130250,22 +133979,26 @@ entities: - uid: 20779 components: - type: Transform - pos: 2.5,-0.5 + rot: 3.141592653589793 rad + pos: 21.5,-8.5 parent: 16504 - uid: 20780 components: - type: Transform - pos: -1.5,-0.5 + rot: 3.141592653589793 rad + pos: 19.5,-9.5 parent: 16504 - uid: 20781 components: - type: Transform - pos: 4.5,-0.5 + rot: 3.141592653589793 rad + pos: 16.5,-9.5 parent: 16504 - uid: 20782 components: - type: Transform - pos: 3.5,6.5 + rot: 3.141592653589793 rad + pos: 17.5,-9.5 parent: 16504 - uid: 20783 components: @@ -130280,7 +134013,7 @@ entities: - uid: 20785 components: - type: Transform - pos: 2.5,13.5 + pos: -5.5,28.5 parent: 16504 - uid: 20786 components: @@ -130330,7 +134063,7 @@ entities: - uid: 20795 components: - type: Transform - pos: 3.5,13.5 + pos: -5.5,29.5 parent: 16504 - uid: 20796 components: @@ -130440,17 +134173,19 @@ entities: - uid: 20817 components: - type: Transform - pos: -9.5,-4.5 + pos: -5.5,30.5 parent: 16504 - uid: 20818 components: - type: Transform - pos: -8.5,-4.5 + rot: 3.141592653589793 rad + pos: 15.5,-9.5 parent: 16504 - uid: 20819 components: - type: Transform - pos: -7.5,-4.5 + rot: 3.141592653589793 rad + pos: 22.5,-2.5 parent: 16504 - uid: 20820 components: @@ -130495,52 +134230,62 @@ entities: - uid: 20828 components: - type: Transform - pos: 14.5,-9.5 + rot: 3.141592653589793 rad + pos: 22.5,-3.5 parent: 16504 - uid: 20829 components: - type: Transform - pos: 13.5,-9.5 + rot: 3.141592653589793 rad + pos: 23.5,-2.5 parent: 16504 - uid: 20830 components: - type: Transform - pos: 12.5,-9.5 + rot: 3.141592653589793 rad + pos: 3.5,31.5 parent: 16504 - uid: 20831 components: - type: Transform - pos: 11.5,-9.5 + rot: 3.141592653589793 rad + pos: 4.5,31.5 parent: 16504 - uid: 20832 components: - type: Transform - pos: 10.5,-9.5 + rot: 3.141592653589793 rad + pos: 5.5,31.5 parent: 16504 - uid: 20833 components: - type: Transform - pos: 10.5,-8.5 + rot: 3.141592653589793 rad + pos: -3.5,41.5 parent: 16504 - uid: 20834 components: - type: Transform - pos: 10.5,-7.5 + rot: 3.141592653589793 rad + pos: 5.5,-0.5 parent: 16504 - uid: 20835 components: - type: Transform - pos: 10.5,-6.5 + rot: 3.141592653589793 rad + pos: 5.5,-4.5 parent: 16504 - uid: 20836 components: - type: Transform - pos: 10.5,-5.5 + rot: 3.141592653589793 rad + pos: 6.5,-4.5 parent: 16504 - uid: 20837 components: - type: Transform - pos: 10.5,-4.5 + rot: 3.141592653589793 rad + pos: 7.5,-4.5 parent: 16504 - uid: 20838 components: @@ -130605,92 +134350,108 @@ entities: - uid: 20850 components: - type: Transform - pos: -19.5,20.5 + rot: 3.141592653589793 rad + pos: 6.5,-0.5 parent: 16504 - uid: 20851 components: - type: Transform - pos: -19.5,25.5 + rot: 3.141592653589793 rad + pos: 7.5,-0.5 parent: 16504 - uid: 20852 components: - type: Transform - pos: -19.5,26.5 + rot: 3.141592653589793 rad + pos: 8.5,-0.5 parent: 16504 - uid: 20853 components: - type: Transform - pos: -19.5,19.5 + rot: 3.141592653589793 rad + pos: -2.5,-0.5 parent: 16504 - uid: 20854 components: - type: Transform - pos: 20.5,-9.5 + rot: 3.141592653589793 rad + pos: 9.5,-4.5 parent: 16504 - uid: 20855 components: - type: Transform - pos: 21.5,-4.5 + rot: 3.141592653589793 rad + pos: 8.5,-4.5 parent: 16504 - uid: 20856 components: - type: Transform - pos: 18.5,-9.5 + rot: 3.141592653589793 rad + pos: -11.5,28.5 parent: 16504 - uid: 20857 components: - type: Transform - pos: 21.5,-7.5 + rot: 3.141592653589793 rad + pos: -11.5,27.5 parent: 16504 - uid: 20858 components: - type: Transform - pos: 21.5,-9.5 + rot: 3.141592653589793 rad + pos: -8.5,31.5 parent: 16504 - uid: 20859 components: - type: Transform - pos: 21.5,-5.5 + rot: 3.141592653589793 rad + pos: -7.5,31.5 parent: 16504 - uid: 20860 components: - type: Transform - pos: 21.5,-3.5 + rot: 3.141592653589793 rad + pos: -6.5,31.5 parent: 16504 - uid: 20861 components: - type: Transform - pos: 21.5,-6.5 + pos: 17.5,8.5 parent: 16504 - uid: 20862 components: - type: Transform - pos: 21.5,-8.5 + rot: 3.141592653589793 rad + pos: -11.5,30.5 parent: 16504 - uid: 20863 components: - type: Transform - pos: 19.5,-9.5 + rot: 3.141592653589793 rad + pos: -10.5,30.5 parent: 16504 - uid: 20864 components: - type: Transform - pos: 16.5,-9.5 + rot: 3.141592653589793 rad + pos: -10.5,31.5 parent: 16504 - uid: 20865 components: - type: Transform - pos: 17.5,-9.5 + rot: 3.141592653589793 rad + pos: -11.5,29.5 parent: 16504 - uid: 20866 components: - type: Transform - pos: 15.5,-9.5 + rot: 3.141592653589793 rad + pos: -9.5,31.5 parent: 16504 - uid: 20867 components: - type: Transform - pos: 22.5,-2.5 + pos: 18.5,8.5 parent: 16504 - uid: 20868 components: @@ -130760,12 +134521,12 @@ entities: - uid: 20881 components: - type: Transform - pos: 22.5,-3.5 + pos: 19.5,7.5 parent: 16504 - uid: 20882 components: - type: Transform - pos: 23.5,-2.5 + pos: 20.5,7.5 parent: 16504 - uid: 20883 components: @@ -130950,12 +134711,12 @@ entities: - uid: 20919 components: - type: Transform - pos: -5.5,39.5 + pos: 20.5,6.5 parent: 16504 - uid: 20920 components: - type: Transform - pos: 5.5,39.5 + pos: 20.5,5.5 parent: 16504 - uid: 20921 components: @@ -130965,7 +134726,8 @@ entities: - uid: 20922 components: - type: Transform - pos: 6.5,39.5 + rot: 3.141592653589793 rad + pos: -5.5,36.5 parent: 16504 - uid: 20923 components: @@ -131020,52 +134782,52 @@ entities: - uid: 20933 components: - type: Transform - pos: -6.5,39.5 + pos: 6.5,31.5 parent: 16504 - uid: 20934 components: - type: Transform - pos: 10.5,39.5 + pos: 6.5,30.5 parent: 16504 - uid: 20935 components: - type: Transform - pos: 11.5,39.5 + pos: 6.5,29.5 parent: 16504 - uid: 20936 components: - type: Transform - pos: 12.5,39.5 + pos: 6.5,28.5 parent: 16504 - uid: 20937 components: - type: Transform - pos: 13.5,39.5 + pos: 7.5,31.5 parent: 16504 - uid: 20938 components: - type: Transform - pos: 14.5,39.5 + pos: 7.5,32.5 parent: 16504 - uid: 20939 components: - type: Transform - pos: 15.5,39.5 + pos: 10.5,20.5 parent: 16504 - uid: 20940 components: - type: Transform - pos: 16.5,39.5 + pos: 10.5,21.5 parent: 16504 - uid: 20941 components: - type: Transform - pos: 17.5,39.5 + pos: 10.5,22.5 parent: 16504 - uid: 20942 components: - type: Transform - pos: 18.5,39.5 + pos: 10.5,23.5 parent: 16504 - uid: 20943 components: @@ -131080,12 +134842,12 @@ entities: - uid: 20945 components: - type: Transform - pos: 18.5,38.5 + pos: 10.5,24.5 parent: 16504 - uid: 20946 components: - type: Transform - pos: 18.5,37.5 + pos: 10.5,25.5 parent: 16504 - uid: 20947 components: @@ -131290,7 +135052,8 @@ entities: - uid: 20987 components: - type: Transform - pos: -3.5,41.5 + rot: 3.141592653589793 rad + pos: 7.5,34.5 parent: 16504 - uid: 20988 components: @@ -131380,52 +135143,59 @@ entities: - uid: 21005 components: - type: Transform - pos: 5.5,-0.5 + rot: 3.141592653589793 rad + pos: 7.5,35.5 parent: 16504 - uid: 21006 components: - type: Transform - pos: 5.5,-4.5 + rot: 3.141592653589793 rad + pos: 7.5,36.5 parent: 16504 - uid: 21007 components: - type: Transform - pos: 6.5,-4.5 + rot: 3.141592653589793 rad + pos: 7.5,37.5 parent: 16504 - uid: 21008 components: - type: Transform - pos: 7.5,-4.5 + rot: 3.141592653589793 rad + pos: 7.5,38.5 parent: 16504 - uid: 21009 components: - type: Transform - pos: 5.5,-1.5 + pos: 10.5,26.5 parent: 16504 - uid: 21010 components: - type: Transform - pos: 5.5,-2.5 + pos: 10.5,27.5 parent: 16504 - uid: 21011 components: - type: Transform - pos: 5.5,-3.5 + pos: 10.5,28.5 parent: 16504 - uid: 21012 components: - type: Transform - pos: 6.5,-0.5 + rot: 3.141592653589793 rad + pos: 9.5,34.5 parent: 16504 - uid: 21013 components: - type: Transform - pos: 7.5,-0.5 + rot: 3.141592653589793 rad + pos: 9.5,35.5 parent: 16504 - uid: 21014 components: - type: Transform - pos: 8.5,-0.5 + rot: 3.141592653589793 rad + pos: 9.5,36.5 parent: 16504 - uid: 21015 components: @@ -131535,37 +135305,40 @@ entities: - uid: 21036 components: - type: Transform - pos: -2.5,-0.5 + rot: 3.141592653589793 rad + pos: 9.5,37.5 parent: 16504 - uid: 21037 components: - type: Transform - pos: 9.5,-2.5 + pos: 10.5,29.5 parent: 16504 - uid: 21038 components: - type: Transform - pos: 9.5,-3.5 + pos: 10.5,30.5 parent: 16504 - uid: 21039 components: - type: Transform - pos: 9.5,-4.5 + rot: 3.141592653589793 rad + pos: 9.5,38.5 parent: 16504 - uid: 21040 components: - type: Transform - pos: 8.5,-4.5 + rot: 3.141592653589793 rad + pos: -5.5,38.5 parent: 16504 - uid: 21041 components: - type: Transform - pos: 9.5,-0.5 + pos: 10.5,31.5 parent: 16504 - uid: 21042 components: - type: Transform - pos: 9.5,-1.5 + pos: 10.5,32.5 parent: 16504 - uid: 21043 components: @@ -131612,6 +135385,619 @@ entities: - type: Transform pos: -24.5,23.5 parent: 16504 + - uid: 21068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,33.5 + parent: 16504 + - uid: 21069 + components: + - type: Transform + pos: 10.5,33.5 + parent: 16504 + - uid: 21071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,32.5 + parent: 16504 + - uid: 21072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,36.5 + parent: 16504 + - uid: 21076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,36.5 + parent: 16504 + - uid: 21077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,36.5 + parent: 16504 + - uid: 21178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,40.5 + parent: 16504 + - uid: 21469 + components: + - type: Transform + pos: 10.5,34.5 + parent: 16504 + - uid: 21483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,41.5 + parent: 16504 + - uid: 21581 + components: + - type: Transform + pos: 16.5,13.5 + parent: 16504 + - uid: 21827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,42.5 + parent: 16504 + - uid: 21829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,43.5 + parent: 16504 + - uid: 21863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,44.5 + parent: 16504 + - uid: 21868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,44.5 + parent: 16504 + - uid: 22010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,44.5 + parent: 16504 + - uid: 22011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,44.5 + parent: 16504 + - uid: 22012 + components: + - type: Transform + pos: -19.5,18.5 + parent: 16504 + - uid: 22013 + components: + - type: Transform + pos: 15.5,12.5 + parent: 16504 + - uid: 22014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,44.5 + parent: 16504 + - uid: 22015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,44.5 + parent: 16504 + - uid: 22016 + components: + - type: Transform + pos: 17.5,9.5 + parent: 16504 + - uid: 22017 + components: + - type: Transform + pos: 16.5,9.5 + parent: 16504 + - uid: 22018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,44.5 + parent: 16504 + - uid: 22019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,43.5 + parent: 16504 + - uid: 22020 + components: + - type: Transform + pos: 22.5,11.5 + parent: 16504 + - uid: 22021 + components: + - type: Transform + pos: 21.5,11.5 + parent: 16504 + - uid: 22022 + components: + - type: Transform + pos: 20.5,11.5 + parent: 16504 + - uid: 22023 + components: + - type: Transform + pos: 19.5,11.5 + parent: 16504 + - uid: 22024 + components: + - type: Transform + pos: 18.5,11.5 + parent: 16504 + - uid: 22025 + components: + - type: Transform + pos: 17.5,11.5 + parent: 16504 + - uid: 22026 + components: + - type: Transform + pos: 16.5,12.5 + parent: 16504 + - uid: 22027 + components: + - type: Transform + pos: 16.5,11.5 + parent: 16504 + - uid: 22028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,42.5 + parent: 16504 + - uid: 22029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,41.5 + parent: 16504 + - uid: 22030 + components: + - type: Transform + pos: 18.5,13.5 + parent: 16504 + - uid: 22031 + components: + - type: Transform + pos: 18.5,14.5 + parent: 16504 + - uid: 22032 + components: + - type: Transform + pos: 18.5,15.5 + parent: 16504 + - uid: 22033 + components: + - type: Transform + pos: 18.5,17.5 + parent: 16504 + - uid: 22034 + components: + - type: Transform + pos: 18.5,18.5 + parent: 16504 + - uid: 22035 + components: + - type: Transform + pos: 18.5,19.5 + parent: 16504 + - uid: 22036 + components: + - type: Transform + pos: 18.5,20.5 + parent: 16504 + - uid: 22037 + components: + - type: Transform + pos: 18.5,21.5 + parent: 16504 + - uid: 22038 + components: + - type: Transform + pos: 18.5,22.5 + parent: 16504 + - uid: 22039 + components: + - type: Transform + pos: 18.5,23.5 + parent: 16504 + - uid: 22040 + components: + - type: Transform + pos: 18.5,24.5 + parent: 16504 + - uid: 22041 + components: + - type: Transform + pos: 18.5,25.5 + parent: 16504 + - uid: 22042 + components: + - type: Transform + pos: 18.5,26.5 + parent: 16504 + - uid: 22043 + components: + - type: Transform + pos: 18.5,27.5 + parent: 16504 + - uid: 22044 + components: + - type: Transform + pos: 18.5,28.5 + parent: 16504 + - uid: 22045 + components: + - type: Transform + pos: 18.5,29.5 + parent: 16504 + - uid: 22046 + components: + - type: Transform + pos: 11.5,34.5 + parent: 16504 + - uid: 22047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,40.5 + parent: 16504 + - uid: 22048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,40.5 + parent: 16504 + - uid: 22049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,40.5 + parent: 16504 + - uid: 22050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,40.5 + parent: 16504 + - uid: 22051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,36.5 + parent: 16504 + - uid: 22052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,38.5 + parent: 16504 + - uid: 22053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,37.5 + parent: 16504 + - uid: 22054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,41.5 + parent: 16504 + - uid: 22055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,40.5 + parent: 16504 + - uid: 22056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,41.5 + parent: 16504 + - uid: 22057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,39.5 + parent: 16504 + - uid: 22058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,39.5 + parent: 16504 + - uid: 22059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 16504 + - uid: 22060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 16504 + - uid: 22061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 16504 + - uid: 22062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 16504 + - uid: 22063 + components: + - type: Transform + pos: 8.5,38.5 + parent: 16504 + - uid: 22064 + components: + - type: Transform + pos: -4.5,39.5 + parent: 16504 + - uid: 22065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 16504 + - uid: 22066 + components: + - type: Transform + pos: -0.5,39.5 + parent: 16504 + - uid: 22067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 16504 + - uid: 22068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 16504 + - uid: 22069 + components: + - type: Transform + pos: -2.5,39.5 + parent: 16504 + - uid: 22070 + components: + - type: Transform + pos: -3.5,39.5 + parent: 16504 + - uid: 22071 + components: + - type: Transform + pos: 3.5,39.5 + parent: 16504 + - uid: 22072 + components: + - type: Transform + pos: -1.5,39.5 + parent: 16504 + - uid: 22073 + components: + - type: Transform + pos: 1.5,39.5 + parent: 16504 + - uid: 22074 + components: + - type: Transform + pos: 2.5,39.5 + parent: 16504 + - uid: 22078 + components: + - type: Transform + pos: 18.5,36.5 + parent: 16504 + - uid: 22079 + components: + - type: Transform + pos: 18.5,35.5 + parent: 16504 + - uid: 22080 + components: + - type: Transform + pos: 18.5,34.5 + parent: 16504 + - uid: 22081 + components: + - type: Transform + pos: 18.5,33.5 + parent: 16504 + - uid: 22082 + components: + - type: Transform + pos: 18.5,32.5 + parent: 16504 + - uid: 22083 + components: + - type: Transform + pos: 18.5,31.5 + parent: 16504 + - uid: 22084 + components: + - type: Transform + pos: 18.5,30.5 + parent: 16504 + - uid: 22085 + components: + - type: Transform + pos: 12.5,34.5 + parent: 16504 + - uid: 22086 + components: + - type: Transform + pos: 12.5,35.5 + parent: 16504 + - uid: 22087 + components: + - type: Transform + pos: 12.5,36.5 + parent: 16504 + - uid: 22088 + components: + - type: Transform + pos: 12.5,37.5 + parent: 16504 + - uid: 22090 + components: + - type: Transform + pos: -3.5,40.5 + parent: 16504 + - uid: 22091 + components: + - type: Transform + pos: -2.5,40.5 + parent: 16504 + - uid: 22115 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 16504 + - uid: 22116 + components: + - type: Transform + pos: 2.5,13.5 + parent: 16504 + - uid: 22117 + components: + - type: Transform + pos: 3.5,13.5 + parent: 16504 + - uid: 22118 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 16504 + - uid: 22119 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 16504 + - uid: 22120 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 16504 + - uid: 22121 + components: + - type: Transform + pos: -19.5,20.5 + parent: 16504 + - uid: 22122 + components: + - type: Transform + pos: -19.5,25.5 + parent: 16504 + - uid: 22123 + components: + - type: Transform + pos: -19.5,26.5 + parent: 16504 + - uid: 22124 + components: + - type: Transform + pos: -19.5,19.5 + parent: 16504 + - uid: 22126 + components: + - type: Transform + pos: 5.5,39.5 + parent: 16504 + - uid: 22127 + components: + - type: Transform + pos: 6.5,39.5 + parent: 16504 + - uid: 22129 + components: + - type: Transform + pos: 10.5,39.5 + parent: 16504 + - uid: 22130 + components: + - type: Transform + pos: 11.5,39.5 + parent: 16504 + - uid: 22131 + components: + - type: Transform + pos: 12.5,39.5 + parent: 16504 + - uid: 22132 + components: + - type: Transform + pos: 13.5,39.5 + parent: 16504 + - uid: 22133 + components: + - type: Transform + pos: 14.5,39.5 + parent: 16504 + - uid: 22134 + components: + - type: Transform + pos: 15.5,39.5 + parent: 16504 + - uid: 22135 + components: + - type: Transform + pos: 16.5,39.5 + parent: 16504 + - uid: 22136 + components: + - type: Transform + pos: 17.5,39.5 + parent: 16504 + - uid: 22137 + components: + - type: Transform + pos: 18.5,39.5 + parent: 16504 + - uid: 22138 + components: + - type: Transform + pos: 18.5,38.5 + parent: 16504 + - uid: 22139 + components: + - type: Transform + pos: 18.5,37.5 + parent: 16504 - proto: WallReinforced entities: - uid: 687 @@ -131829,11 +136215,61 @@ entities: - type: Transform pos: 44.5,15.5 parent: 2 + - uid: 9589 + components: + - type: Transform + pos: 57.5,44.5 + parent: 2 - uid: 10162 components: - type: Transform pos: 41.5,53.5 parent: 2 + - uid: 10220 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 10269 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 + - uid: 10400 + components: + - type: Transform + pos: 11.5,71.5 + parent: 2 + - uid: 10403 + components: + - type: Transform + pos: 9.5,73.5 + parent: 2 + - uid: 10404 + components: + - type: Transform + pos: 9.5,77.5 + parent: 2 + - uid: 10405 + components: + - type: Transform + pos: 11.5,79.5 + parent: 2 + - uid: 10407 + components: + - type: Transform + pos: 9.5,81.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + pos: 11.5,69.5 + parent: 2 + - uid: 10833 + components: + - type: Transform + pos: 45.5,17.5 + parent: 2 - uid: 10890 components: - type: Transform @@ -131866,6 +136302,51 @@ entities: rot: 3.141592653589793 rad pos: 53.5,74.5 parent: 2 + - uid: 12404 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 + - uid: 12411 + components: + - type: Transform + pos: 9.5,69.5 + parent: 2 + - uid: 12566 + components: + - type: Transform + pos: 9.5,79.5 + parent: 2 + - uid: 12573 + components: + - type: Transform + pos: 9.5,71.5 + parent: 2 + - uid: 12578 + components: + - type: Transform + pos: 11.5,77.5 + parent: 2 + - uid: 12579 + components: + - type: Transform + pos: 11.5,73.5 + parent: 2 + - uid: 12581 + components: + - type: Transform + pos: 11.5,81.5 + parent: 2 + - uid: 12585 + components: + - type: Transform + pos: 62.5,35.5 + parent: 2 + - uid: 12597 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 - uid: 13020 components: - type: Transform @@ -135750,11 +140231,6 @@ entities: - type: Transform pos: 59.5,18.5 parent: 2 - - uid: 14689 - components: - - type: Transform - pos: 59.5,17.5 - parent: 2 - uid: 14690 components: - type: Transform @@ -137828,11 +142304,6 @@ entities: - type: Transform pos: 47.5,-15.5 parent: 2 - - uid: 15118 - components: - - type: Transform - pos: 46.5,-15.5 - parent: 2 - uid: 15119 components: - type: Transform @@ -139295,6 +143766,36 @@ entities: rot: 3.141592653589793 rad pos: 8.5,54.5 parent: 2 + - uid: 22397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 2 + - uid: 22398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 2 + - uid: 22407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-17.5 + parent: 2 + - uid: 22408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-17.5 + parent: 2 + - uid: 22409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-16.5 + parent: 2 - proto: WallReinforcedDiagonal entities: - uid: 2412 @@ -139605,6 +144106,11 @@ entities: - type: Transform pos: 17.5,55.5 parent: 2 + - uid: 1149 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 - uid: 2157 components: - type: Transform @@ -140169,18 +144675,6 @@ entities: - type: Transform pos: 63.5,10.5 parent: 2 - - uid: 15429 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,30.5 - parent: 2 - - uid: 15430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,30.5 - parent: 2 - uid: 15431 components: - type: Transform @@ -140276,11 +144770,6 @@ entities: - type: Transform pos: 10.5,5.5 parent: 2 - - uid: 15450 - components: - - type: Transform - pos: 10.5,6.5 - parent: 2 - uid: 15451 components: - type: Transform @@ -140443,11 +144932,6 @@ entities: - type: Transform pos: 3.5,25.5 parent: 2 - - uid: 15483 - components: - - type: Transform - pos: 10.5,2.5 - parent: 2 - uid: 15484 components: - type: Transform @@ -143122,6 +147606,16 @@ entities: - type: Transform pos: 29.5,76.5 parent: 2 +- proto: WarpPoint + entities: + - uid: 20257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 16504 + - type: WarpPoint + location: Sierra - proto: WaterCooler entities: - uid: 14511 @@ -143223,11 +147717,6 @@ entities: - type: Transform pos: 3.5,14.5 parent: 2 - - uid: 21581 - components: - - type: Transform - pos: 40.5,51.5 - parent: 2 - proto: WaterVaporCanister entities: - uid: 15969 @@ -143312,6 +147801,38 @@ entities: - type: Transform pos: -1.4897294,43.40107 parent: 16504 +- proto: WeaponLauncherChinaLake + entities: + - uid: 19512 + components: + - type: Transform + pos: 0.4678955,6.375108 + parent: 16504 +- proto: WeaponLightMachineGunL6 + entities: + - uid: 17699 + components: + - type: Transform + pos: 1.5914307,25.695858 + parent: 16504 + - type: ChamberMagazineAmmoProvider + boltClosed: True + - uid: 17701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.46618652,25.373215 + parent: 16504 + - type: ChamberMagazineAmmoProvider + boltClosed: True + - uid: 22143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.673584,43.504818 + parent: 16504 + - type: ChamberMagazineAmmoProvider + boltClosed: True - proto: WeaponPistolCobra entities: - uid: 21065 @@ -143337,6 +147858,41 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: WeaponRifleM90GrenadeLauncher + entities: + - uid: 22113 + components: + - type: Transform + pos: -17.546509,33.26776 + parent: 16504 + - type: ChamberMagazineAmmoProvider + boltClosed: True + - uid: 22114 + components: + - type: Transform + pos: -10.444946,37.4162 + parent: 16504 + - type: ChamberMagazineAmmoProvider + boltClosed: True + - uid: 22125 + components: + - type: Transform + pos: -15.788696,28.732603 + parent: 16504 + - type: ChamberMagazineAmmoProvider + boltClosed: True + - uid: 22128 + components: + - type: Transform + pos: 29.527954,30.560728 + parent: 16504 + - type: ChamberMagazineAmmoProvider + boltClosed: True + - uid: 22140 + components: + - type: Transform + pos: 12.336548,26.41229 + parent: 16504 - proto: WeaponShotgunBulldog entities: - uid: 21066 @@ -143344,6 +147900,22 @@ entities: - type: Transform pos: 2.507286,43.53152 parent: 16504 + - uid: 22100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.4753418,-2.6497467 + parent: 16504 + missingComponents: + - GunRequiresWield + - uid: 22104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5559082,-2.5403717 + parent: 16504 + missingComponents: + - GunRequiresWield - proto: WeaponShotgunDoubleBarreledRubber entities: - uid: 1054 @@ -143359,8 +147931,31 @@ entities: - type: Transform pos: -6.575594,27.62803 parent: 16504 +- proto: WeaponSniperHristov + entities: + - uid: 22483 + components: + - type: Transform + pos: 61.576393,31.55321 + parent: 2 - proto: WeaponSubMachineGunC20r entities: + - uid: 17582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.4646,36.406464 + parent: 16504 + - type: ChamberMagazineAmmoProvider + boltClosed: True + - uid: 17590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5896,37.500214 + parent: 16504 + - type: ChamberMagazineAmmoProvider + boltClosed: True - uid: 19396 components: - type: Transform @@ -143368,84 +147963,483 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 16118 + components: + - type: Transform + pos: -2.357666,35.38244 + parent: 16504 + - uid: 17586 + components: + - type: Transform + pos: 29.632324,19.428213 + parent: 16504 + - uid: 17587 + components: + - type: Transform + pos: 13.697266,14.302883 + parent: 16504 + - uid: 17589 + components: + - type: Transform + pos: 28.64795,13.225088 + parent: 16504 + - uid: 17592 + components: + - type: Transform + pos: 25.5542,16.678213 + parent: 16504 + - uid: 17593 + components: + - type: Transform + pos: 5.595459,35.411495 + parent: 16504 + - uid: 17627 + components: + - type: Transform + pos: 4.4051514,35.451965 + parent: 16504 + - uid: 19336 + components: + - type: Transform + pos: -3.545166,35.505245 + parent: 16504 + - uid: 19430 + components: + - type: Transform + pos: 13.431641,18.349758 + parent: 16504 + - uid: 20007 + components: + - type: Transform + pos: 6.616699,1.6196394 + parent: 16504 + - uid: 21078 + components: + - type: Transform + pos: -4.2944336,8.688307 + parent: 16504 + - uid: 21688 + components: + - type: Transform + pos: 16.36914,18.318508 + parent: 16504 + - uid: 21689 + components: + - type: Transform + pos: -5.4570312,8.522202 + parent: 16504 + - uid: 21843 + components: + - type: Transform + pos: -9.438965,24.459805 + parent: 16504 + - uid: 21848 + components: + - type: Transform + pos: -10.751465,24.491055 + parent: 16504 + - uid: 21862 + components: + - type: Transform + pos: 6.6173096,5.525026 + parent: 16504 - proto: WeaponTurretHostile entities: - - uid: 5931 + - uid: 16587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-37.5 + pos: -24.5,29.5 + parent: 16504 + - type: Gun + fireRate: 16 + projectileSpeed: 40 + - uid: 19513 + components: + - type: Transform + pos: 6.5,37.5 + parent: 16504 + - type: Gun + fireRate: 16 + - uid: 19514 + components: + - type: Transform + pos: -5.5,37.5 + parent: 16504 + - type: Gun + fireRate: 16 + - uid: 22075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,16.5 + parent: 16504 + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 600 + triggersOnce: False + triggered: False + behaviors: + - !type:DoActsBehavior + acts: Destruction + - trigger: !type:DamageTrigger + damage: 600 + triggersOnce: False + triggered: False + behaviors: + - !type:DoActsBehavior + acts: Destruction + - !type:PlaySoundBehavior + sound: !type:SoundCollectionSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + collection: MetalGlassBreak + - !type:SpawnEntitiesBehavior + offset: 0.5 + spawnInContainer: False + transferForensics: False + spawn: + SheetSteel1: + max: 5 + min: 3 + - type: Gun + fireRate: 12 + - type: BallisticAmmoProvider + capacity: 1500 + proto: BulletDisabler + - uid: 22076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 16504 + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 600 + triggersOnce: False + triggered: False + behaviors: + - !type:DoActsBehavior + acts: Destruction + - trigger: !type:DamageTrigger + damage: 600 + triggersOnce: False + triggered: False + behaviors: + - !type:DoActsBehavior + acts: Destruction + - !type:PlaySoundBehavior + sound: !type:SoundCollectionSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + collection: MetalGlassBreak + - !type:SpawnEntitiesBehavior + offset: 0.5 + spawnInContainer: False + transferForensics: False + spawn: + SheetSteel1: + max: 5 + min: 3 + - type: Gun + fireRate: 12 + - type: BallisticAmmoProvider + capacity: 1500 + - uid: 22077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,14.5 + parent: 16504 + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 600 + triggersOnce: False + triggered: False + behaviors: + - !type:DoActsBehavior + acts: Destruction + - trigger: !type:DamageTrigger + damage: 600 + triggersOnce: False + triggered: False + behaviors: + - !type:DoActsBehavior + acts: Destruction + - !type:PlaySoundBehavior + sound: !type:SoundCollectionSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + collection: MetalGlassBreak + - !type:SpawnEntitiesBehavior + offset: 0.5 + spawnInContainer: False + transferForensics: False + spawn: + SheetSteel1: + max: 5 + min: 3 + - type: Gun + fireRate: 12 + - type: BallisticAmmoProvider + capacity: 1500 + - uid: 22089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 16504 + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 600 + triggersOnce: False + triggered: False + behaviors: + - !type:DoActsBehavior + acts: Destruction + - trigger: !type:DamageTrigger + damage: 600 + triggersOnce: False + triggered: False + behaviors: + - !type:DoActsBehavior + acts: Destruction + - !type:PlaySoundBehavior + sound: !type:SoundCollectionSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + collection: MetalGlassBreak + - !type:SpawnEntitiesBehavior + offset: 0.5 + spawnInContainer: False + transferForensics: False + spawn: + SheetSteel1: + max: 5 + min: 3 + - type: Gun + fireRate: 12 + - type: BallisticAmmoProvider + capacity: 1500 + proto: BulletDisabler + - uid: 22092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,18.5 + parent: 16504 + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 600 + triggersOnce: False + triggered: False + behaviors: + - !type:DoActsBehavior + acts: Destruction + - trigger: !type:DamageTrigger + damage: 1000 + triggersOnce: False + triggered: False + behaviors: + - !type:DoActsBehavior + acts: Destruction + - !type:PlaySoundBehavior + sound: !type:SoundCollectionSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + collection: MetalGlassBreak + - !type:SpawnEntitiesBehavior + offset: 0.5 + spawnInContainer: False + transferForensics: False + spawn: + SheetSteel1: + max: 5 + min: 3 + - type: Gun + fireRate: 2 + projectileSpeed: 15 + - type: BallisticAmmoProvider + capacity: 1500 + proto: GrenadeFrag + - uid: 22489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,12.5 + parent: 16504 + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 600 + triggersOnce: False + triggered: False + behaviors: + - !type:DoActsBehavior + acts: Destruction + - trigger: !type:DamageTrigger + damage: 1000 + triggersOnce: False + triggered: False + behaviors: + - !type:DoActsBehavior + acts: Destruction + - !type:PlaySoundBehavior + sound: !type:SoundCollectionSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + collection: MetalGlassBreak + - !type:SpawnEntitiesBehavior + offset: 0.5 + spawnInContainer: False + transferForensics: False + spawn: + SheetSteel1: + max: 5 + min: 3 + - type: Gun + fireRate: 2 + projectileSpeed: 10 + - type: BallisticAmmoProvider + capacity: 1500 + proto: GrenadeFrag +- proto: WeaponTurretNanoTrasen + entities: + - uid: 3186 + components: + - type: Transform + pos: 24.5,-33.5 parent: 2 - - uid: 5932 + - uid: 3187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-39.5 + pos: 17.5,-39.5 parent: 2 - - uid: 9352 + - uid: 3205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-42.5 + pos: 27.5,-39.5 parent: 2 - - uid: 9589 + - uid: 4280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-39.5 + pos: 24.5,-43.5 parent: 2 - - uid: 12597 + - uid: 4321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-42.5 + pos: 20.5,-43.5 parent: 2 - - uid: 13018 + - uid: 13098 components: - type: Transform - rot: 1.5707963267948966 rad pos: 17.5,-37.5 parent: 2 - - uid: 21863 + - uid: 13100 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-33.5 + pos: 20.5,-33.5 parent: 2 - - uid: 21868 + - uid: 13112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-33.5 + pos: 18.5,-42.5 + parent: 2 + - uid: 14023 + components: + - type: Transform + pos: 27.5,-37.5 + parent: 2 + - uid: 18616 + components: + - type: Transform + pos: 26.5,-42.5 parent: 2 - proto: WeaponTurretSyndicate entities: - - uid: 21068 + - uid: 19521 components: - type: Transform - pos: 0.5,16.5 + pos: -4.5,30.5 parent: 16504 + - type: Gun + fireRate: 16 + - uid: 20006 + components: + - type: Transform + pos: 5.5,30.5 + parent: 16504 + - type: Gun + fireRate: 16 - proto: WeaponTurretSyndicateBroken entities: - - uid: 21069 + - uid: 20467 components: - type: Transform - pos: -4.5,-11.5 - parent: 16504 - - uid: 21070 + pos: 45.5,34.5 + parent: 2 + - uid: 20468 components: - type: Transform - pos: 5.5,-11.5 - parent: 16504 - - uid: 21071 + pos: 51.5,24.5 + parent: 2 + - uid: 20469 components: - type: Transform - pos: -4.5,14.5 - parent: 16504 - - uid: 21072 + pos: 43.5,16.5 + parent: 2 + - uid: 21070 components: - type: Transform - pos: 5.5,14.5 + pos: 5.5,-11.5 parent: 16504 - uid: 21073 components: @@ -143462,28 +148456,6 @@ entities: - type: Transform pos: 17.5,18.5 parent: 16504 -- proto: WeaponTurretSyndicateDisposable - entities: - - uid: 21076 - components: - - type: Transform - pos: -4.5,18.5 - parent: 16504 - - uid: 21077 - components: - - type: Transform - pos: 5.5,18.5 - parent: 16504 - - uid: 21078 - components: - - type: Transform - pos: 6.5,37.5 - parent: 16504 - - uid: 21079 - components: - - type: Transform - pos: -5.5,37.5 - parent: 16504 - proto: WeaponXrayCannon entities: - uid: 21080 @@ -143760,6 +148732,16 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-27.5 parent: 2 + - uid: 5763 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 5769 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 - uid: 16006 components: - type: Transform @@ -143857,12 +148839,6 @@ entities: - type: Transform pos: 26.5,-41.5 parent: 2 - - uid: 3180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-39.5 - parent: 2 - uid: 3182 components: - type: Transform @@ -143874,24 +148850,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,-37.5 parent: 2 - - uid: 3186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-39.5 - parent: 2 - - uid: 3187 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-39.5 - parent: 2 - - uid: 3205 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-39.5 - parent: 2 - uid: 3206 components: - type: Transform @@ -143938,24 +148896,12 @@ entities: rot: -1.5707963267948966 rad pos: 52.5,47.5 parent: 2 - - uid: 21848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-34.5 - parent: 2 - uid: 21849 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-34.5 parent: 2 - - uid: 21862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-33.5 - parent: 2 - proto: WindoorSecureEngineeringLocked entities: - uid: 16033 @@ -144289,21 +149235,6 @@ entities: - type: Transform pos: 75.5,63.5 parent: 2 - - uid: 16095 - components: - - type: Transform - pos: 79.5,54.5 - parent: 2 - - uid: 16096 - components: - - type: Transform - pos: 78.5,54.5 - parent: 2 - - uid: 16097 - components: - - type: Transform - pos: 77.5,54.5 - parent: 2 - uid: 16098 components: - type: Transform @@ -144314,11 +149245,6 @@ entities: - type: Transform pos: 79.5,58.5 parent: 2 - - uid: 16100 - components: - - type: Transform - pos: 74.5,54.5 - parent: 2 - uid: 16101 components: - type: Transform @@ -144329,16 +149255,6 @@ entities: - type: Transform pos: 78.5,57.5 parent: 2 - - uid: 16103 - components: - - type: Transform - pos: 75.5,54.5 - parent: 2 - - uid: 16104 - components: - - type: Transform - pos: 76.5,54.5 - parent: 2 - uid: 16105 components: - type: Transform @@ -144401,18 +149317,33 @@ entities: parent: 2 - proto: WindowDirectional entities: - - uid: 16117 + - uid: 8033 components: - type: Transform - pos: 68.5,8.5 + rot: 1.5707963267948966 rad + pos: 3.5,29.5 parent: 2 - - uid: 16118 + - uid: 8034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,30.5 + parent: 2 + - uid: 16096 components: - - type: MetaData - name: зеркало - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,10.5 + pos: 3.5,30.5 + parent: 2 + - uid: 16097 + components: + - type: Transform + pos: 2.5,31.5 + parent: 2 + - uid: 16117 + components: + - type: Transform + pos: 68.5,8.5 parent: 2 - uid: 16119 components: @@ -144892,6 +149823,16 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-26.5 parent: 2 + - uid: 5770 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 5771 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 - uid: 9700 components: - type: Transform @@ -144995,12 +149936,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-10.5 parent: 2 - - uid: 16212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,51.5 - parent: 2 - uid: 16223 components: - type: Transform @@ -145319,11 +150254,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-29.5 parent: 2 - - uid: 16485 - components: - - type: Transform - pos: 45.5,64.5 - parent: 2 - uid: 16486 components: - type: Transform @@ -145675,13 +150605,6 @@ entities: - type: Transform pos: 16.5,60.5 parent: 2 -- proto: WoodenSupportWall - entities: - - uid: 21178 - components: - - type: Transform - pos: 14.5,11.5 - parent: 16504 - proto: Wrench entities: - uid: 9343 diff --git a/Resources/Prototypes/Corvax/Maps/paper.yml b/Resources/Prototypes/Corvax/Maps/paper.yml index 70294c77390..46e73b65719 100644 --- a/Resources/Prototypes/Corvax/Maps/paper.yml +++ b/Resources/Prototypes/Corvax/Maps/paper.yml @@ -16,53 +16,53 @@ !type:NanotrasenNameGenerator prefixCreator: 'TG' - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_corvaxpaper.yml + emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml - type: StationJobs availableJobs: # command Captain: [ 1, 1 ] IAA: [ 1, 1 ] - # cargo Quartermaster: [ 1, 1 ] + ChiefEngineer: [ 1, 1 ] + ChiefMedicalOfficer: [ 1, 1 ] + ResearchDirector: [ 1, 1 ] + HeadOfSecurity: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + # cargo SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 2, 3 ] + CargoTechnician: [ 3, 3 ] # engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 2, 3 ] - StationEngineer: [ 4, 5 ] + AtmosphericTechnician: [ 3, 3 ] + StationEngineer: [ 4, 4 ] TechnicalAssistant: [ 3, 3 ] # medical - ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 3, 4 ] - MedicalIntern: [ 2, 2 ] + MedicalDoctor: [ 4, 4 ] + MedicalIntern: [ 3, 3 ] Psychologist: [ 1, 1 ] Paramedic: [ 1, 1 ] Chemist: [ 2, 2 ] # science - ResearchDirector: [ 1, 1 ] - Scientist: [ 2, 3 ] - ResearchAssistant: [ 2, 2 ] + Scientist: [ 4, 4 ] + ResearchAssistant: [ 3, 3 ] # security - HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] SecurityOfficer: [ 3, 4 ] SecurityCadet: [ 3, 3 ] Detective: [ 1, 1 ] # service - HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 1, 1 ] - Botanist: [ 2, 3 ] + Bartender: [ 2, 2 ] + Botanist: [ 3, 3 ] Chaplain: [ 1, 1 ] - Chef: [ 1, 1 ] + Chef: [ 2, 2 ] Clown: [ 1, 1 ] Janitor: [ 2, 2 ] Librarian: [ 1, 1 ] Mime: [ 1, 1 ] - Musician: [ 1, 2 ] + Musician: [ 1, 1 ] Reporter: [ 1, 1 ] - ServiceWorker: [ 1, 2 ] + ServiceWorker: [ 3, 3 ] Zookeeper: [ 1, 1 ] Passenger: [ -1, -1 ] #silicon StationAi: [ 1, 1 ] - Borg: [ 2, 2 ] + Borg: [ 3, 3 ] From 63aa8c699705bc941f11585dcb99939b106856fe Mon Sep 17 00:00:00 2001 From: IanComradeBot <96892333+IanComradeBot@users.noreply.github.com> Date: Tue, 12 Nov 2024 21:59:05 +0000 Subject: [PATCH 058/171] Automatic changelog update --- Resources/Changelog/ChangelogSyndie.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/ChangelogSyndie.yml b/Resources/Changelog/ChangelogSyndie.yml index 85f47b073b1..97f5e0cafdf 100644 --- a/Resources/Changelog/ChangelogSyndie.yml +++ b/Resources/Changelog/ChangelogSyndie.yml @@ -1,12 +1,4 @@ Entries: -- author: Morty - changes: - - message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u043E \u043E\u043F\ - \u0438\u0441\u0430\u043D\u0438\u0435 \u0431\u0443\u043C\u0430\u0433\u0438 \u0441\ - \ \u0446\u0435\u043B\u044C\u044E \u0441\u0442\u0430\u043D\u0446\u0438\u0438" - type: Fix - id: 194 - time: '2022-07-23T09:51:03.0000000+00:00' - author: lapatison changes: - message: "\u041F\u0435\u0440\u0435\u0432\u0435\u0434\u0435\u043D\u044B \u043F\u043E\ @@ -4517,3 +4509,11 @@ id: 693 time: '2024-11-11T14:13:54.0000000+00:00' url: https://github.com/space-syndicate/space-station-14/pull/2762 +- author: TiFeRi + changes: + - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0430 \u043A\u0430\u0440\u0442\ + \u0430 Paper!" + type: Tweak + id: 694 + time: '2024-11-12T21:56:38.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2761 From af3593a3b7c2a36b0e0c4a19cc846e96f139fb58 Mon Sep 17 00:00:00 2001 From: SpaceRox1244 <138547931+SpaceRox1244@users.noreply.github.com> Date: Tue, 12 Nov 2024 18:45:59 -0500 Subject: [PATCH 059/171] Adds new sprites for shotgun shell boxes (#33176) * Adds new sprites for shotgun shell boxes * Adds second set of mag visuals for slug and uranium casings * Fixes yaml that I messed up * Changes credit to new username before merging happens --- .../Weapons/Guns/Ammunition/Boxes/shotgun.yml | 95 ++++++++++++------ .../Ammunition/Boxes/shotgun.rsi/base.png | Bin 0 -> 356 bytes .../Ammunition/Boxes/shotgun.rsi/beanbag.png | Bin 0 -> 268 bytes .../Ammunition/Boxes/shotgun.rsi/flare.png | Bin 0 -> 229 bytes .../Boxes/shotgun.rsi/incendiary.png | Bin 0 -> 233 bytes .../Ammunition/Boxes/shotgun.rsi/lethal.png | Bin 0 -> 263 bytes .../Ammunition/Boxes/shotgun.rsi/mag-1.png | Bin 0 -> 107 bytes .../Ammunition/Boxes/shotgun.rsi/mag-2.png | Bin 0 -> 134 bytes .../Ammunition/Boxes/shotgun.rsi/mag-3.png | Bin 0 -> 142 bytes .../Ammunition/Boxes/shotgun.rsi/mag-4.png | Bin 0 -> 155 bytes .../Boxes/shotgun.rsi/mag-alt-1.png | Bin 0 -> 106 bytes .../Boxes/shotgun.rsi/mag-alt-2.png | Bin 0 -> 127 bytes .../Boxes/shotgun.rsi/mag-alt-3.png | Bin 0 -> 135 bytes .../Boxes/shotgun.rsi/mag-alt-4.png | Bin 0 -> 151 bytes .../Ammunition/Boxes/shotgun.rsi/meta.json | 62 ++++++++++++ .../Ammunition/Boxes/shotgun.rsi/practice.png | Bin 0 -> 221 bytes .../Ammunition/Boxes/shotgun.rsi/slug.png | Bin 0 -> 257 bytes .../Boxes/shotgun.rsi/tranquilizer.png | Bin 0 -> 292 bytes .../Ammunition/Boxes/shotgun.rsi/uranium.png | Bin 0 -> 249 bytes 19 files changed, 125 insertions(+), 32 deletions(-) create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/base.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/beanbag.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/flare.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/incendiary.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/lethal.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-1.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-2.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-3.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-4.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-alt-1.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-alt-2.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-alt-3.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-alt-4.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/meta.json create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/practice.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/slug.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/tranquilizer.png create mode 100644 Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/uranium.png diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.yml index 063937aee9a..e5c2987ec3e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.yml @@ -16,114 +16,145 @@ id: AmmoProviderShotgunShell abstract: true components: + - type: Sprite + sprite: Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi - type: BallisticAmmoProvider mayTransfer: true whitelist: tags: - ShellShotgun capacity: 16 + - type: MagazineVisuals + magState: mag + steps: 5 + zeroVisible: false + - type: Appearance # Shotgun Shells - type: entity - name: shotgun beanbag cartridges dispenser parent: AmmoProviderShotgunShell id: BoxBeanbag - description: A dispenser box full of beanbag shots, designed for riot shotguns. + name: shell box (beanbag) components: - type: BallisticAmmoProvider proto: ShellShotgunBeanbag - type: Sprite layers: - - state: boxwide - - state: shellbeanbag + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + - state: beanbag - type: entity - name: shotgun lethal cartridges dispenser + name: shell box (lethal) parent: AmmoProviderShotgunShell id: BoxLethalshot - description: A dispenser box full of lethal pellet shots, designed for riot shotguns. components: - type: BallisticAmmoProvider proto: ShellShotgun - type: Sprite layers: - - state: boxwide - - state: shelllethal + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + - state: lethal - type: entity - name: shotgun slug cartridges dispenser + name: shell box (slug) parent: AmmoProviderShotgunShell id: BoxShotgunSlug - description: A dispenser box full of slugs, designed for riot shotguns. components: - type: BallisticAmmoProvider proto: ShellShotgunSlug + - type: MagazineVisuals + magState: mag-alt + steps: 5 + zeroVisible: false - type: Sprite layers: - - state: boxwide - - state: shellslug + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-alt-1 + map: ["enum.GunVisualLayers.Mag"] + - state: slug - type: entity - name: shotgun flare cartridges dispenser + name: shell box (flare) parent: AmmoProviderShotgunShell id: BoxShotgunFlare - description: A dispenser box full of flare cartridges, designed for riot shotguns. components: - type: BallisticAmmoProvider proto: ShellShotgunFlare - type: Sprite layers: - - state: boxwide - - state: shellflare + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + - state: flare - type: entity - name: shotgun incendiary cartridges dispenser + name: shell box (incendiary) parent: AmmoProviderShotgunShell id: BoxShotgunIncendiary - description: A dispenser box full of incendiary cartridges, designed for riot shotguns. components: - type: BallisticAmmoProvider proto: ShellShotgunIncendiary - type: Sprite layers: - - state: boxwide - - state: shellincendiary + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + - state: incendiary - type: entity - name: shotgun uranium cartridges dispenser + name: shell box (uranium) parent: AmmoProviderShotgunShell id: BoxShotgunUranium - description: A dispenser box full of uranium cartridges, designed for riot shotguns. components: - type: BallisticAmmoProvider proto: ShellShotgunUranium + - type: MagazineVisuals + magState: mag-alt + steps: 5 + zeroVisible: false - type: Sprite layers: - - state: boxwide - - state: shelluranium + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-alt-1 + map: ["enum.GunVisualLayers.Mag"] + - state: uranium - type: entity - name: shotgun practice cartridges dispenser + name: shell box (practice) parent: AmmoProviderShotgunShell id: BoxShotgunPractice - description: A dispenser box full of practice cartridges, designed for riot shotguns. components: - type: BallisticAmmoProvider proto: ShellShotgunPractice - type: Sprite layers: - - state: boxwide - - state: shellpractice + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + - state: practice - type: entity - name: tranquilizer cartridges dispenser + name: shell box (tranquilizer) parent: AmmoProviderShotgunShell id: BoxShellTranquilizer - description: A dispenser box full of tranquilizer cartridges, designed for riot shotguns. components: - type: BallisticAmmoProvider proto: ShellTranquilizer - type: Sprite layers: - - state: boxwide - - state: shelltranquilizer + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-1 + map: ["enum.GunVisualLayers.Mag"] + - state: tranquilizer diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/base.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/base.png new file mode 100644 index 0000000000000000000000000000000000000000..f460615079dcbc3bc4f0244f62ee6d194767a522 GIT binary patch literal 356 zcmV-q0h|7bP)hx<)!^4}S=qr;oC$=T7E*eH6r?v$|0={nqU@&~G zWz|}{fhhEq1nVMsSP_UqUv)bz&d)sKwUt`%^cX1MAXuK4tN8B(^k4}~6PYbGxqD>} zM;g-SWbkaUq1$PtzJE-92}Lh^*k;OTtF%jo^+{zgOC^y)Od`q8?g;b1re z>v#*m&GjV!&!bNO?(f<_@xd!Cpo=^Nx2)rBsbHbfcc5yxk-&7ms}z();THT1m4e@% z>%5JZ$y&Pt+QtVWWrD5H4|=K}^o;)h4u`|>@7M#Kfp=<`U7Q{O0000}H>5)pw;==K7x8V+~bjYGKg9f2R2p+y&jDE6VgRn&_y0wAB0m6NxliC=S9@r!`VoAb<|1Kiva}4|oD-LF z?gCXJm%+1EaDnv^K-uc?to)Xx<@j;W2bS%37N`=*(t5#-pfslO_bv#6&^9l%CPK^P)v*1c-(z8(jS<5Z9eZF44L1lhRrKFOqG*ah#5% z2#N@;Js=`X5%wY}!d~Q`z+o>D7cjwe03Y|x;WfXh39p&~GEh}ln{V0sO+%=vB*PNa za&VfqfDFx-&U_7v1NpNyjt^qe&6+mp|tO@wD2bZya0gHIOC*Y2?pwdyO1K- fecv6&arWi|ytPQ)duV{k00000NkvXXu0mjfSx8_g literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/incendiary.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/incendiary.png new file mode 100644 index 0000000000000000000000000000000000000000..7841707b120f3e1f4577f6c4320b31e2cac551b4 GIT binary patch literal 233 zcmV4nT^wv_^1KwK30C|xZATRPuU@@173Wy*&fag=?@RZ-AgeT1aY1lb8`FKw6vxcy9 zj->epl`Nd17LcZR(}~w`_3y>)9!(5AZ?7fRZ997BaetqOBbw?09|_ujP)GfE;=68&th|NUdT zGHuJ$w6IPqu7@=MWztMI=j`cVEeWvLo!komERzeshe$!t2G?oT6o%$KtpvJ6{LAwl z+yl?1SYP#qd%IT!~_O8cNpWzqlu N002ovPDHLkV1hD0ZubBH literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-1.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-1.png new file mode 100644 index 0000000000000000000000000000000000000000..d77e6507b00fc0910aba7e959d2561f9e0b122e9 GIT binary patch literal 107 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzBTpB{kcif|=L~rn6a-id%6t;v ziHj^`S8it)6S}08kwaP0uAd0TO=D~gJvs9|53PjNBTiZBohMzr{0#T4{i(q!PC{xWt~$(69DIjFhu|W literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-4.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-4.png new file mode 100644 index 0000000000000000000000000000000000000000..9a3c99707fe47b7133a9a2c0937a993983074206 GIT binary patch literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJBu^K|kcif|7Z>t27>KxD3_ly> zF)cxeWz{lfL6vz4k_)UC$Tv+$$YfRAncna_{*x*L!@n~dHzq%x<)&e)Yi zOU%kYt$01~*8O!%3}Tb+sC++u?WT)y@ZGy^xL(e jS6z<0vSeWR(aX)dQ?BLIq?BnulNmf+{an^LB{Ts519mUd literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-alt-4.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/mag-alt-4.png new file mode 100644 index 0000000000000000000000000000000000000000..60be778fdfd459489e53186dddd46287574d4860 GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJI8PVHkcif|7Y%t281T4Uynl&9 zZZoIMXM=_h9U=_JCg$Cp?Xgzt?(ICwXe$9h!Jo$E^WWK(TlHN%%#h~xe(o8T1=oJ< zcpp=F;Ecx73sK6(@Bi#FJl4~(mea+>#lZ&O)=-MRXEfi^LCy85}Sb4q9e0Ns>1 Ah5!Hn literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/meta.json new file mode 100644 index 00000000000..3df588a845e --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/meta.json @@ -0,0 +1,62 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprites by SpaceRox1244", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "mag-1" + }, + { + "name": "mag-2" + }, + { + "name": "mag-3" + }, + { + "name": "mag-4" + }, + { + "name": "mag-alt-1" + }, + { + "name": "mag-alt-2" + }, + { + "name": "mag-alt-3" + }, + { + "name": "mag-alt-4" + }, + { + "name": "lethal" + }, + { + "name": "beanbag" + }, + { + "name": "slug" + }, + { + "name": "incendiary" + }, + { + "name": "practice" + }, + { + "name": "uranium" + }, + { + "name": "flare" + }, + { + "name": "tranquilizer" + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/practice.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/practice.png new file mode 100644 index 0000000000000000000000000000000000000000..4ece8a0c1e58a1bca6482dca0ecd2fc9a52a1863 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJC7v#hArY-_CvW6sR^)N@oua3_ zq$6gdTUdh4vJYnJwX1k0{#)+k)m$V{67w)T`XB!j{YMt(To?>i7i~Sh(}iJ;=ug!G zORpoW(>8ozIGdAKaX!21(C)kky8M%J^yFXu-J1R*`pL2BEdoxwayN~20u)aMowC=y zcD>*`{}Bo2u&0|vcABSc%M})!I3;L?;&qkPLJXcl3}<^TXK!zps;k)W*y5azo#3i? VpBJTKr-ANe@O1TaS?83{1OOy{RxJPk literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/slug.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/slug.png new file mode 100644 index 0000000000000000000000000000000000000000..b55085e398ea1f2ecb6f5477a62a21d1728a009b GIT binary patch literal 257 zcmV+c0sj7pP)~|XgfOGES>`4NFvZ`?!hFfvq zCjvnN0PaP+_s_*qxr-P9=UfPW5Sdb(gzH4|f4hPp2;Xo9cZ^oa(r~ID00000NkvXX Hu0mjfHM(oI literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/tranquilizer.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Boxes/shotgun.rsi/tranquilizer.png new file mode 100644 index 0000000000000000000000000000000000000000..373d6a2a0c91a69c140798bcf956464736eb65bd GIT binary patch literal 292 zcmV+<0o(qGP)3F6RKzUc&7bmQfCZG!zg>vnzuPY5Y3> zXudc8flMZokV-_?b*)o-P>E&iL( z-tGP@KKy%QOuTID#$(&^Wi0?J=MFi@A#6oc1By zf{$%`neV#jnhyz#MF5Pol-}QipCDS`ce5!F(Q(~xR0-$pZ5DAwr=#sF~gnD q=5zWGo(fJvC896+a+ypf^G?q6I%Uv_PY+B00000IJ-kcM(tGQCxciFQAiV6_?(?B`%GKR!Ksz2=AK$dGGyS z!UI7N5>nNLt?I(|?I9v>65s9zzY-CFUg&iJr`vJb@Q~MpglE2mT5CJm4FT9Mj-7o@ zvRU1{XXm~G0Qq_Z!16G+&mu0k+{^%IF#a<`1iD1dm(wFSYF2b-D^gzL!-E8jF&SV1 zlv1B++|hftf_|Wt;8i3hI0;&7>tqB$5dM}stTH=wmQOP{00000NkvXXu0mjfYxrZ$ literal 0 HcmV?d00001 From e9f6a02f18959577f8f56c6ba511749cb34d0ce0 Mon Sep 17 00:00:00 2001 From: cohanna Date: Tue, 12 Nov 2024 19:05:56 -0700 Subject: [PATCH 060/171] un-reverted fixes --- .../Entities/Structures/Windows/clockwork.yml | 19 ++++++--- .../Entities/Structures/Windows/mining.yml | 6 +-- .../Entities/Structures/Windows/plasma.yml | 29 ++++++++------ .../Structures/Windows/plastitanium.yml | 10 ++--- .../Structures/Windows/reinforced.yml | 37 +++++------------- .../Entities/Structures/Windows/rplasma.yml | 18 ++++----- .../Entities/Structures/Windows/ruranium.yml | 20 ++++++---- .../Entities/Structures/Windows/shuttle.yml | 6 +-- .../Entities/Structures/Windows/uranium.yml | 28 +++++++------ .../Entities/Structures/Windows/window.yml | 32 ++++++++++++--- ...mageOverlay_8.png => DamageOverlay_10.png} | Bin ...ageOverlay_12.png => DamageOverlay_20.png} | Bin ...amageOverlay_4.png => DamageOverlay_5.png} | Bin .../Structures/Windows/cracks.rsi/meta.json | 6 +-- ...mageOverlay_8.png => DamageOverlay_10.png} | Bin ...ageOverlay_12.png => DamageOverlay_20.png} | Bin ...amageOverlay_4.png => DamageOverlay_5.png} | Bin .../Windows/cracks_diagonal.rsi/meta.json | 6 +-- ...mageOverlay_8.png => DamageOverlay_10.png} | Bin ...ageOverlay_12.png => DamageOverlay_20.png} | Bin ...amageOverlay_4.png => DamageOverlay_5.png} | Bin .../Windows/cracks_directional.rsi/meta.json | 6 +-- 22 files changed, 123 insertions(+), 100 deletions(-) rename Resources/Textures/Structures/Windows/cracks.rsi/{DamageOverlay_8.png => DamageOverlay_10.png} (100%) rename Resources/Textures/Structures/Windows/cracks.rsi/{DamageOverlay_12.png => DamageOverlay_20.png} (100%) rename Resources/Textures/Structures/Windows/cracks.rsi/{DamageOverlay_4.png => DamageOverlay_5.png} (100%) rename Resources/Textures/Structures/Windows/cracks_diagonal.rsi/{DamageOverlay_8.png => DamageOverlay_10.png} (100%) rename Resources/Textures/Structures/Windows/cracks_diagonal.rsi/{DamageOverlay_12.png => DamageOverlay_20.png} (100%) rename Resources/Textures/Structures/Windows/cracks_diagonal.rsi/{DamageOverlay_4.png => DamageOverlay_5.png} (100%) rename Resources/Textures/Structures/Windows/cracks_directional.rsi/{DamageOverlay_8.png => DamageOverlay_10.png} (100%) rename Resources/Textures/Structures/Windows/cracks_directional.rsi/{DamageOverlay_12.png => DamageOverlay_20.png} (100%) rename Resources/Textures/Structures/Windows/cracks_directional.rsi/{DamageOverlay_4.png => DamageOverlay_5.png} (100%) diff --git a/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml b/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml index 6abeae5760b..8421b6b4dc6 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/clockwork.yml @@ -47,8 +47,8 @@ node: clockworkWindow - type: Appearance - type: DamageVisuals - thresholds: [4, 8, 12] - damageDivisor: 4 + thresholds: [5, 10, 20] + damageDivisor: 3 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi @@ -74,8 +74,8 @@ node: windowClockworkDirectional - type: Appearance - type: DamageVisuals - thresholds: [4, 8, 12] - damageDivisor: 10 + thresholds: [5, 10, 20] + damageDivisor: 1.5 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_directional.rsi @@ -85,7 +85,16 @@ thresholds: - trigger: !type:DamageTrigger - damage: 150 + damage: 75 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + collection: WindowShatter + - trigger: + !type:DamageTrigger + damage: 37 behaviors: - !type:PlaySoundBehavior sound: diff --git a/Resources/Prototypes/Entities/Structures/Windows/mining.yml b/Resources/Prototypes/Entities/Structures/Windows/mining.yml index 82d11b732b6..9d05fbb5e23 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/mining.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/mining.yml @@ -43,8 +43,8 @@ base: mwindow - type: Appearance - type: DamageVisuals - thresholds: [4, 8, 12] - damageDivisor: 6 + thresholds: [5, 10, 20] + damageDivisor: 4 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi @@ -91,4 +91,4 @@ - East - type: DamageVisuals damageOverlay: - sprite: Structures/Windows/cracks_diagonal.rsi + sprite: Structures/Windows/cracks_diagonal.rsi \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml index 66fac515a77..bdeb37c6bb7 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml @@ -10,12 +10,12 @@ sprite: Structures/Windows/plasma_window.rsi - type: Damageable damageContainer: StructuralInorganic - damageModifierSet: RGlass + damageModifierSet: Glass - type: Destructible thresholds: - trigger: !type:DamageTrigger - damage: 120 + damage: 150 behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] @@ -24,7 +24,7 @@ collection: WindowShatter - trigger: !type:DamageTrigger - damage: 60 + damage: 75 behaviors: - !type:PlaySoundBehavior sound: @@ -43,8 +43,8 @@ node: plasmaWindow - type: Appearance - type: DamageVisuals - thresholds: [4, 8, 12] - damageDivisor: 3.333 + thresholds: [5, 10, 20] + damageDivisor: 3 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi @@ -74,8 +74,8 @@ node: plasmaWindowDirectional - type: Appearance - type: DamageVisuals - thresholds: [4, 8, 12] - damageDivisor: 3.333 + thresholds: [5, 10, 20] + damageDivisor: 1.5 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_directional.rsi @@ -83,7 +83,16 @@ thresholds: - trigger: !type:DamageTrigger - damage: 200 + damage: 75 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:PlaySoundBehavior + sound: + collection: WindowShatter + - trigger: + !type:DamageTrigger + damage: 37 behaviors: - !type:PlaySoundBehavior sound: @@ -97,8 +106,6 @@ acts: [ "Destruction" ] - type: StaticPrice price: 50 - - type: RadiationBlocker - resistance: 1 - type: entity parent: PlasmaWindow @@ -143,4 +150,4 @@ sprite: Structures/Windows/cracks_diagonal.rsi - type: Construction graph: WindowDiagonal - node: plasmaWindowDiagonal + node: plasmaWindowDiagonal \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml index 2134cfe8927..c50bc6e030b 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plastitanium.yml @@ -98,8 +98,8 @@ - !type:DoActsBehavior acts: [ "Destruction" ] - type: DamageVisuals - thresholds: [4, 8, 12] - damageDivisor: 28 + thresholds: [5, 10, 20] + damageDivisor: 20 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi @@ -185,8 +185,8 @@ - !type:DoActsBehavior acts: [ "Destruction" ] - type: DamageVisuals - thresholds: [4, 8, 12] - damageDivisor: 28 + thresholds: [5, 10, 20] + damageDivisor: 20 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_diagonal.rsi @@ -195,4 +195,4 @@ doAfterDelay: 3 - type: Damageable damageContainer: StructuralInorganic - damageModifierSet: RGlass + damageModifierSet: RGlass \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml index 503d2eec6e3..238b71e3fde 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/reinforced.yml @@ -50,31 +50,12 @@ node: reinforcedWindow - type: Appearance - type: DamageVisuals - thresholds: [4, 8, 12] - damageDivisor: 4 + thresholds: [5, 10, 20] + damageDivisor: 3 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi -- type: entity - parent: ReinforcedWindow - id: TintedWindow - name: tinted window - components: - - type: Sprite - drawdepth: WallTops - sprite: Structures/Windows/tinted_window.rsi - - type: Icon - sprite: Structures/Windows/tinted_window.rsi - - type: IconSmooth - base: twindow - - type: Construction - graph: Window - node: tintedWindow - - type: Occluder - - type: StaticPrice - price: 45 - - type: entity id: WindowReinforcedDirectional parent: WindowDirectional @@ -96,8 +77,8 @@ node: windowReinforcedDirectional - type: Appearance - type: DamageVisuals - thresholds: [4, 8, 12] - damageDivisor: 10 + thresholds: [5, 10, 20] + damageDivisor: 1.5 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_directional.rsi @@ -111,16 +92,16 @@ thresholds: - trigger: !type:DamageTrigger - damage: 150 #excess damage (nuke?). avoid computational cost of spawning entities. + damage: 75 behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] - !type:PlaySoundBehavior sound: collection: WindowShatter - - !type:DoActsBehavior - acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 50 + damage: 37 behaviors: - !type:PlaySoundBehavior sound: @@ -178,4 +159,4 @@ sprite: Structures/Windows/cracks_diagonal.rsi - type: Construction graph: WindowDiagonal - node: reinforcedWindowDiagonal + node: reinforcedWindowDiagonal \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml index 0940ac308a5..2ea710e6e77 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml @@ -17,7 +17,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 200 + damage: 300 behaviors: #excess damage, don't spawn entities. - !type:DoActsBehavior acts: [ "Destruction" ] @@ -26,7 +26,7 @@ collection: WindowShatter - trigger: !type:DamageTrigger - damage: 100 + damage: 150 behaviors: - !type:PlaySoundBehavior sound: @@ -48,7 +48,7 @@ node: reinforcedPlasmaWindow - type: Appearance - type: DamageVisuals - thresholds: [4, 8, 12] + thresholds: [5, 10, 20] damageDivisor: 6 trackAllDamage: true damageOverlay: @@ -77,24 +77,22 @@ node: plasmaReinforcedWindowDirectional - type: Appearance - type: DamageVisuals - thresholds: [4, 8, 12] - damageDivisor: 36 + thresholds: [5, 10, 20] + damageDivisor: 3 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_directional.rsi - - type: RadiationBlocker - resistance: 2 - type: Destructible thresholds: - trigger: !type:DamageTrigger - damage: 1000 + damage: 150 behaviors: #excess damage, don't spawn entities. - !type:DoActsBehavior acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 600 + damage: 75 behaviors: - !type:PlaySoundBehavior sound: @@ -155,4 +153,4 @@ sprite: Structures/Windows/cracks_diagonal.rsi - type: Construction graph: WindowDiagonal - node: reinforcedPlasmaWindowDiagonal + node: reinforcedPlasmaWindowDiagonal \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml index b9b47c00ea9..fe40b21ba26 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml @@ -43,7 +43,7 @@ node: reinforcedUraniumWindow - type: Appearance - type: DamageVisuals - thresholds: [4, 8, 12] + thresholds: [5, 10, 20] damageDivisor: 6 trackAllDamage: true damageOverlay: @@ -74,8 +74,8 @@ node: uraniumReinforcedWindowDirectional - type: Appearance - type: DamageVisuals - thresholds: [4, 8, 12] - damageDivisor: 3.333 + thresholds: [5, 10, 20] + damageDivisor: 3 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_directional.rsi @@ -83,7 +83,13 @@ thresholds: - trigger: !type:DamageTrigger - damage: 200 + damage: 150 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 75 behaviors: - !type:PlaySoundBehavior sound: @@ -93,15 +99,13 @@ ShardGlassUranium: min: 1 max: 2 - PartRodMetal1: + PartRodMetal: min: 1 max: 2 - !type:DoActsBehavior acts: [ "Destruction" ] - type: StaticPrice price: 110 - - type: RadiationBlocker - resistance: 2.5 - type: entity parent: ReinforcedUraniumWindow @@ -146,4 +150,4 @@ sprite: Structures/Windows/cracks_diagonal.rsi - type: Construction graph: WindowDiagonal - node: reinforcedUraniumWindowDiagonal + node: reinforcedUraniumWindowDiagonal \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml index 1b4c96c1709..f70b684abd2 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/shuttle.yml @@ -46,8 +46,8 @@ node: shuttleWindow - type: Appearance - type: DamageVisuals - thresholds: [4, 8, 12] - damageDivisor: 28 + thresholds: [5, 10, 20] + damageDivisor: 20 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi @@ -94,4 +94,4 @@ - East - type: DamageVisuals damageOverlay: - sprite: Structures/Windows/cracks_diagonal.rsi + sprite: Structures/Windows/cracks_diagonal.rsi \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml index c7b7312a709..25ad1b876ed 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml @@ -11,18 +11,18 @@ state: full - type: Damageable damageContainer: StructuralInorganic - damageModifierSet: RGlass + damageModifierSet: Glass - type: Destructible thresholds: - trigger: !type:DamageTrigger - damage: 100 + damage: 150 behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] - trigger: !type:DamageTrigger - damage: 60 + damage: 75 behaviors: - !type:PlaySoundBehavior sound: @@ -41,8 +41,8 @@ node: uraniumWindow - type: Appearance - type: DamageVisuals - thresholds: [4, 8, 12] - damageDivisor: 3.333 + thresholds: [5, 10, 20] + damageDivisor: 3 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi @@ -72,8 +72,8 @@ node: uraniumWindowDirectional - type: Appearance - type: DamageVisuals - thresholds: [4, 8, 12] - damageDivisor: 3.333 + thresholds: [5, 10, 20] + damageDivisor: 1.5 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_directional.rsi @@ -81,7 +81,13 @@ thresholds: - trigger: !type:DamageTrigger - damage: 200 + damage: 75 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - trigger: + !type:DamageTrigger + damage: 37 behaviors: - !type:PlaySoundBehavior sound: @@ -90,13 +96,11 @@ spawn: ShardGlassUranium: min: 1 - max: 2 + max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] - type: StaticPrice price: 100 - - type: RadiationBlocker - resistance: 1.5 - type: entity parent: UraniumWindow @@ -141,4 +145,4 @@ sprite: Structures/Windows/cracks_diagonal.rsi - type: Construction graph: WindowDiagonal - node: uraniumWindowDiagonal + node: uraniumWindowDiagonal \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml index 56a38f82fcf..5b6530a9e5d 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/window.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml @@ -84,8 +84,8 @@ node: window - type: Appearance - type: DamageVisuals - thresholds: [4, 8, 12] - damageDivisor: 3.333 + thresholds: [5, 10, 20] + damageDivisor: 2 trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks.rsi @@ -93,6 +93,25 @@ price: 100 - type: BlockWeather +- type: entity + parent: Window + id: TintedWindow + name: tinted window + components: + - type: Sprite + drawdepth: WallTops + sprite: Structures/Windows/tinted_window.rsi + - type: Icon + sprite: Structures/Windows/tinted_window.rsi + - type: IconSmooth + base: twindow + - type: Construction + graph: Window + node: tintedWindow + - type: Occluder + - type: StaticPrice + price: 70 + - type: entity id: WindowRCDResistant parent: Window @@ -158,7 +177,7 @@ thresholds: - trigger: !type:DamageTrigger - damage: 150 #excess damage (nuke?). avoid computational cost of spawning entities. + damage: 50 #excess damage (nuke?). avoid computational cost of spawning entities. behaviors: - !type:DoActsBehavior acts: [ "Destruction" ] @@ -188,8 +207,7 @@ node: windowDirectional - type: Appearance - type: DamageVisuals - thresholds: [4, 8, 12] - damageDivisor: 3.333 + thresholds: [5, 10, 20] trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_directional.rsi @@ -220,6 +238,8 @@ - type: Icon sprite: Structures/Windows/directional.rsi state: frosted_window + - type: StaticPrice + price: 35 - type: entity parent: Window @@ -264,4 +284,4 @@ sprite: Structures/Windows/cracks_diagonal.rsi - type: Construction graph: WindowDiagonal - node: windowDiagonal + node: windowDiagonal \ No newline at end of file diff --git a/Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_8.png b/Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_10.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_8.png rename to Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_10.png diff --git a/Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_12.png b/Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_20.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_12.png rename to Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_20.png diff --git a/Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_4.png b/Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_5.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_4.png rename to Resources/Textures/Structures/Windows/cracks.rsi/DamageOverlay_5.png diff --git a/Resources/Textures/Structures/Windows/cracks.rsi/meta.json b/Resources/Textures/Structures/Windows/cracks.rsi/meta.json index 9d0cc9a505d..ca012e8fc5c 100644 --- a/Resources/Textures/Structures/Windows/cracks.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/cracks.rsi/meta.json @@ -7,8 +7,8 @@ "license": "CC-BY-SA-3.0", "copyright": "Taken from https://github.com/tgstation/tgstation at commit e06b82a7f4b2b09216fb28fd384c95a2e1dc50e5", "states": [ - {"name": "DamageOverlay_4", "directions": 1}, - {"name": "DamageOverlay_8", "directions": 1}, - {"name": "DamageOverlay_12", "directions": 1} + {"name": "DamageOverlay_5", "directions": 1}, + {"name": "DamageOverlay_10", "directions": 1}, + {"name": "DamageOverlay_20", "directions": 1} ] } diff --git a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_8.png b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_10.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_8.png rename to Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_10.png diff --git a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_12.png b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_20.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_12.png rename to Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_20.png diff --git a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_4.png b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_5.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_4.png rename to Resources/Textures/Structures/Windows/cracks_diagonal.rsi/DamageOverlay_5.png diff --git a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/meta.json index 9d0cc9a505d..ca012e8fc5c 100644 --- a/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/cracks_diagonal.rsi/meta.json @@ -7,8 +7,8 @@ "license": "CC-BY-SA-3.0", "copyright": "Taken from https://github.com/tgstation/tgstation at commit e06b82a7f4b2b09216fb28fd384c95a2e1dc50e5", "states": [ - {"name": "DamageOverlay_4", "directions": 1}, - {"name": "DamageOverlay_8", "directions": 1}, - {"name": "DamageOverlay_12", "directions": 1} + {"name": "DamageOverlay_5", "directions": 1}, + {"name": "DamageOverlay_10", "directions": 1}, + {"name": "DamageOverlay_20", "directions": 1} ] } diff --git a/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_8.png b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_10.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_8.png rename to Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_10.png diff --git a/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_12.png b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_20.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_12.png rename to Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_20.png diff --git a/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_4.png b/Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_5.png similarity index 100% rename from Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_4.png rename to Resources/Textures/Structures/Windows/cracks_directional.rsi/DamageOverlay_5.png diff --git a/Resources/Textures/Structures/Windows/cracks_directional.rsi/meta.json b/Resources/Textures/Structures/Windows/cracks_directional.rsi/meta.json index df077f67d2b..9555aa5ab35 100644 --- a/Resources/Textures/Structures/Windows/cracks_directional.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/cracks_directional.rsi/meta.json @@ -8,15 +8,15 @@ "copyright": "Adapted from https://github.com/space-wizards/space-station-14/ at commit f57e8ec6b9b4b72ef56c8146be0bc159ed2691ee, originally added by Zumorica, and modified for directional use by Darkie", "states": [ { - "name": "DamageOverlay_4", + "name": "DamageOverlay_5", "directions": 4 }, { - "name": "DamageOverlay_8", + "name": "DamageOverlay_10", "directions": 4 }, { - "name": "DamageOverlay_12", + "name": "DamageOverlay_20", "directions": 4 } ] From 21074bd98d3844dd8f6ae18f9f423752304fa7bd Mon Sep 17 00:00:00 2001 From: cohanna Date: Tue, 12 Nov 2024 19:14:28 -0700 Subject: [PATCH 061/171] oops --- .../Entities/Structures/Windows/plasma.yml | 2 + .../Entities/Structures/Windows/rplasma.yml | 2 + .../Entities/Structures/Windows/ruranium.yml | 2 + .../Entities/Structures/Windows/uranium.yml | 2 + .../Recipes/Construction/structures.yml | 40 ++++++++++++++----- 5 files changed, 37 insertions(+), 11 deletions(-) diff --git a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml index bdeb37c6bb7..8758e1075eb 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/plasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/plasma.yml @@ -106,6 +106,8 @@ acts: [ "Destruction" ] - type: StaticPrice price: 50 + - type: RadiationBlocker + resistance: 1 - type: entity parent: PlasmaWindow diff --git a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml index 2ea710e6e77..2ad0eb84105 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/rplasma.yml @@ -82,6 +82,8 @@ trackAllDamage: true damageOverlay: sprite: Structures/Windows/cracks_directional.rsi + - type: RadiationBlocker + resistance: 2 - type: Destructible thresholds: - trigger: diff --git a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml index fe40b21ba26..daae6a4726d 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/ruranium.yml @@ -106,6 +106,8 @@ acts: [ "Destruction" ] - type: StaticPrice price: 110 + - type: RadiationBlocker + resistance: 2.5 - type: entity parent: ReinforcedUraniumWindow diff --git a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml index 25ad1b876ed..db932280090 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/uranium.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/uranium.yml @@ -101,6 +101,8 @@ acts: [ "Destruction" ] - type: StaticPrice price: 100 + - type: RadiationBlocker + resistance: 1.5 - type: entity parent: UraniumWindow diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 31e1264ab08..44a7134597d 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -455,7 +455,7 @@ startNode: start targetNode: tintedWindow category: construction-category-structures - description: Not clear but tough. + description: Not clear, but lasers still pass through. canBuildInImpassable: true conditions: - !type:EmptyOrWindowValidInTile @@ -512,7 +512,7 @@ targetNode: plasmaWindow category: construction-category-structures canBuildInImpassable: true - description: Clear and even tougher, with a purple tint. + description: Clear, with a purple tint. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -531,7 +531,7 @@ targetNode: reinforcedPlasmaWindow category: construction-category-structures canBuildInImpassable: true - description: Fire resistant and even tougher, with a purple tint. + description: Clear and even tougher, with a purple tint. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -569,7 +569,7 @@ targetNode: plasmaWindowDiagonal category: construction-category-structures canBuildInImpassable: true - description: Clear and even tougher, with a purple tint. + description: Clear, with a purple tint. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -587,7 +587,7 @@ targetNode: reinforcedPlasmaWindowDiagonal category: construction-category-structures canBuildInImpassable: true - description: Fire resistant and even tougher, with a purple tint. + description: Clear and even tougher, with a purple tint. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -659,7 +659,7 @@ targetNode: plasmaWindowDirectional category: construction-category-structures canBuildInImpassable: true - description: Clear and even tougher, with a purple tint. + description: Clear, with a purple tint. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -677,7 +677,7 @@ targetNode: plasmaReinforcedWindowDirectional category: construction-category-structures canBuildInImpassable: true - description: Fire resistant and even tougher, with a purple tint. + description: Clear and even tougher, with a purple tint. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -695,7 +695,7 @@ targetNode: uraniumWindow category: construction-category-structures canBuildInImpassable: true - description: Clear and much tougher than regular glass, with added RadAbsorb to protect you from deadly radiation. + description: Clear, with added RadAbsorb to protect you from deadly radiation. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -714,7 +714,7 @@ targetNode: reinforcedUraniumWindow category: construction-category-structures canBuildInImpassable: true - description: Clear and much tougher than regular glass, with added RadAbsorb to protect you from deadly radiation. + description: Clear and even tougher, with added RadAbsorb to protect you from deadly radiation. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -733,7 +733,7 @@ targetNode: uraniumWindowDiagonal category: construction-category-structures canBuildInImpassable: true - description: Clear and much tougher than regular glass, with added RadAbsorb to protect you from deadly radiation. + description: Clear, with added RadAbsorb to protect you from deadly radiation. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -751,7 +751,7 @@ targetNode: reinforcedUraniumWindowDiagonal category: construction-category-structures canBuildInImpassable: true - description: Clear and much tougher than regular glass, with added RadAbsorb to protect you from deadly radiation. + description: Clear and even tougher, with added RadAbsorb to protect you from deadly radiation. conditions: - !type:EmptyOrWindowValidInTile - !type:NoWindowsInTile @@ -1456,6 +1456,24 @@ # Same here. - 20kdc - !type:TileNotBlocked +- type: construction + name: emergency light + id: EmergencyLightFixture + graph: LightFixture + startNode: start + targetNode: emergencyLight + category: construction-category-structures + description: An emergency light. + icon: + sprite: Structures/Wallmounts/Lighting/emergency_light.rsi + state: base + objectType: Structure + placementMode: SnapgridCenter + canRotate: true + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked + - type: construction name: ground light post id: LightGroundFixture From bd2d0ee5e593606da094804f5822cf740a1f1084 Mon Sep 17 00:00:00 2001 From: August Sun <45527070+august-sun@users.noreply.github.com> Date: Tue, 12 Nov 2024 19:59:47 -0700 Subject: [PATCH 062/171] Added the ability to microwave inert flesh anomaly cores to turn into an anomalous meat mass (#33223) * First round of anomaly core functionalities added * Added sliceTime to anom meat mass and cooked version * Adds SmokeOnUse component, system and shared system, adds new functions to inert electrical anom core * Added more functions * Final touches to branch * Cleaning up some of the metadata for sprites and component definitions * PR_Changes_v2_rev.0_Final_FINALFORREALTHISTIME.yml * Lol jk these goddamn tests why me * Quick updates based on feedback * more changes to improve * additional fixes and edits * Changed tech core functionality * added magboot functionality to grav core * fixed issue with bluespace core sizing * Reverting changes per request * extra file to be deleted * File cleanup * Update chemicals.ftl * Update cores.yml * Update cores.yml * Update meta.json * Update chemicals.yml * Update Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml Co-authored-by: chromiumboy <50505512+chromiumboy@users.noreply.github.com> * Update meal_recipes.yml * Update cores.yml --------- Co-authored-by: august-sun <45527070+august.sun@users.noreply.github.com> Co-authored-by: chromiumboy <50505512+chromiumboy@users.noreply.github.com> --- .../Entities/Objects/Consumable/Food/meat.yml | 59 ++++++++++++++++++ .../Structures/Specific/Anomaly/cores.yml | 6 +- .../Construction/Graphs/food/steak.yml | 18 +++++- .../Recipes/Cooking/meal_recipes.yml | 24 +++++++ .../Food/meat.rsi/anomalymeat-cooked.png | Bin 0 -> 618 bytes .../Consumable/Food/meat.rsi/anomalymeat.png | Bin 0 -> 642 bytes .../Consumable/Food/meat.rsi/meta.json | 8 ++- 7 files changed, 111 insertions(+), 4 deletions(-) create mode 100644 Resources/Textures/Objects/Consumable/Food/meat.rsi/anomalymeat-cooked.png create mode 100644 Resources/Textures/Objects/Consumable/Food/meat.rsi/anomalymeat.png diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml index 612f7da0472..48968b80c13 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml @@ -701,6 +701,36 @@ - ReagentId: Water Quantity: 4 #It makes saline if you add salt! +- type: entity + name: anomalous meat mass + parent: FoodMeatRawBase + id: FoodMeatAnomaly + description: An impossibly dense slab of meat. Just looking at it makes you uncomfortable. + components: + - type: Sprite + state: anomalymeat + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: UncookedAnimalProteins + Quantity: 90 + - ReagentId: Fat + Quantity: 90 + - type: SliceableFood + count: 10 + sliceTime: 5 + slice: FoodMeat #That's... So much meat + - type: InternalTemperature + conductivity: 0.43 + - type: Construction + graph: AnomalyMeatSteak + node: start + defaultTarget: anomaly steak + - type: Tag + tags: + - Meat + # Cooked - type: entity @@ -1173,6 +1203,35 @@ Burger: MeatSnail Taco: MeatSnail +- type: entity + name: anomalous steak + parent: FoodMeatBase + id: FoodMeatAnomalyCooked + description: A gigantic mass of cooked meat. A meal for a dinner party, or someone REALLY hungry. + components: + - type: Tag + tags: + - Cooked + - Meat + - type: Sprite + layers: + - state: anomalymeat-cooked #Kinda hard to cook this... thing evenly + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Nutriment + Quantity: 100 + - ReagentId: Protein + Quantity: 50 + - type: SliceableFood + count: 10 + sliceTime: 5 + slice: FoodMeatCooked + - type: Construction + graph: AnomalyMeatSteak + node: anomaly steak + # Cutlets # Raw diff --git a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/cores.yml b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/cores.yml index 315505b81e9..568a133749e 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/cores.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/cores.yml @@ -79,6 +79,7 @@ - type: entity parent: BaseAnomalyCore id: AnomalyCoreFlesh + description: The core of a destroyed flesh anomaly. Pulsates sickeningly, but might be a hearty meal if cooked. suffix: Flesh components: - type: Sprite @@ -241,7 +242,8 @@ - type: entity parent: BaseAnomalyInertCore - id: AnomalyCoreFleshInert + id: AnomalyCoreFleshInert # Can be microwaved to turn it into a massive piece of meat + description: The inert core of a destroyed flesh anomaly. Pulsates sickeningly, but might be good food in the right hands? suffix: Flesh, Inert components: - type: Sprite @@ -306,7 +308,7 @@ - type: entity parent: BaseAnomalyInertCore - id: AnomalyCoreFloraInert + id: AnomalyCoreFloraInert #Turns into a seed that grows into artifexium suffix: Flora, Inert components: - type: Seed diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/food/steak.yml b/Resources/Prototypes/Recipes/Construction/Graphs/food/steak.yml index 4c104003319..61cb844037b 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/food/steak.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/food/steak.yml @@ -174,6 +174,22 @@ - node: bacon entity: FoodMeatBaconCooked +# anomaly meat steak +- type: constructionGraph + id: AnomalyMeatSteak + start: start + graph: + - node: start + edges: + - to: anomaly steak + completed: + - !type:PlaySound + sound: /Audio/Effects/sizzle.ogg + steps: + - minTemperature: 335 + - node: anomaly steak + entity: FoodMeatAnomalyCooked + # cutlets - type: constructionGraph @@ -294,4 +310,4 @@ steps: - minTemperature: 345 - node: xeno cutlet - entity: FoodMeatXenoCutletCooked \ No newline at end of file + entity: FoodMeatXenoCutletCooked diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 173cf9e9dbd..da66f7a0d8a 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -2050,3 +2050,27 @@ FoodCroissantRaw: 1 FoodButterSlice: 1 ShardGlass: 1 + +- type: microwaveMealRecipe + id: RecipeInertAnomalyMeat + name: inert meat anomaly recipe + result: FoodMeatAnomaly + time: 5 + solids: + AnomalyCoreFleshInert: 1 + +- type: microwaveMealRecipe + id: RecipeAnomalyMeat + name: meat anomaly recipe + result: FoodMeatAnomaly + time: 5 + solids: + AnomalyCoreFlesh: 1 + +- type: microwaveMealRecipe + id: RecipeAnomalyMeatCooked + name: cooked meat anomaly recipe + result: FoodMeatAnomalyCooked + time: 5 + solids: + FoodMeatAnomaly: 1 diff --git a/Resources/Textures/Objects/Consumable/Food/meat.rsi/anomalymeat-cooked.png b/Resources/Textures/Objects/Consumable/Food/meat.rsi/anomalymeat-cooked.png new file mode 100644 index 0000000000000000000000000000000000000000..19c0040f3a150fb1b247ff901673516605618e39 GIT binary patch literal 618 zcmV-w0+s!VP)Px%BuPX;R9J=Wl+SA0KoG`%7HMS3rIEcd#E_HmCE%7op_c@FF!U+>6n%mAVfq3+ zmmCbu!8cPIdT5$MNogULt+uv>NRWD1X(QS4pSrnK9|*BCyEET>GrN!@M~?p;g>(-!=iM16Pc^kC>2t>3RwT4d8A7;A=QzkCle1&8Hi;4_T@M3 z+yvm=`!OGeGXT05*J`UfHqx95FmfKJ)~(Ycl`O6d1P)JJx~%0>;CoYeZE!2>_i}oP@{TxZ}7CG z!Ae%VDe+$uh)F=C2H6sCoA{s5saxSOT=+9=l}o!07*qoM6N<$ Ef@X&iumAu6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Food/meat.rsi/anomalymeat.png b/Resources/Textures/Objects/Consumable/Food/meat.rsi/anomalymeat.png new file mode 100644 index 0000000000000000000000000000000000000000..005107ab4ec5e066f292c3d6a163174d11c9e7e7 GIT binary patch literal 642 zcmV-|0)737P)Px%JV``BR9J=WmBDM%P#niURU4tC5L+}p8Nv>0DPk$&c^8WpFN1kddZ_<_3S*A3 zlN6Eu37*=)4vM>Y@Z_mS5tLq}-C-9Yq+kuUC`%9V(7xBCOS^1(GhYbF`@JN;@Avz@ zFM${_V*Kw&oaLcLHs|@rkG^*kvvdC1KOrDrY~bRcVc>GOew$1CZFP@-&OwVr;#^b$ z0C}OQb8=&i-0~6z?y=@_90idGNcFZg#1uNVH3T5D_W@Jr7`T{1R|EkZv|~#Zh6{@t zN|YYo=l7d;z_dZ(<}F&*d!^j5T&3C+IwsJuPIh6g19>sF)4=8DwG`&dO6z<+(&^{ntTv7Ew`v4$NlXZKmu3VTG z$j~K_O5|DtIL~%jx_X^fwFZnGvaKNwno=*D!qlm}(CAn$jcm>fBM~WtrqEe!?$D~% z$O}z{O$M-4ttn?DY3ZJA4ap0Qo|g)J_gn&g_5Dg2d#kQg`wu?}fMWA`Abbwm!Z3ys z=y@r+o`HjgDRjDr-vXqhy4f>~vvBWolYXVF8uz>u&gdwVKxhUw`(G0EOvy8Fu`QS7 z{ZH5vHRIaU9eHg`#vk`ytGTXwesUGw92R_v>zPtu`&>!<3e5ZWyd;s_SerJVxc2nb z+l8Ow$p3=vbip%{7XyT5gXN5lxcu-&q{gQvAV~m7B4O+LV(|4$f7nxDJ6-T3nHVu* c#Q0nM0h_}40T=^O)c^nh07*qoM6N<$f|m*~VgLXD literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Consumable/Food/meat.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/meat.rsi/meta.json index 4ad75849d1a..99084d8c958 100644 --- a/Resources/Textures/Objects/Consumable/Food/meat.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/meat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and modified by Swept, potato1234x and deltanedas at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa, snail by IproduceWidgets (github) and Kezu (discord)", + "copyright": "Taken from tgstation and modified by Swept, potato1234x and deltanedas at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa, snail by IproduceWidgets (github) and Kezu (discord), anomalymeat/cooked by august-sun", "size": { "x": 32, "y": 32 @@ -200,6 +200,12 @@ }, { "name": "rouny-cooked" + }, + { + "name": "anomalymeat" + }, + { + "name": "anomalymeat-cooked" } ] } From 52c1708117f82e75f0d0b911f3e8319c7a97725d Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 13 Nov 2024 03:00:54 +0000 Subject: [PATCH 063/171] 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 4ab88b325b5..f54421b87ad 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Spessmann - changes: - - message: Added Cog, a new midpop map based on Cogmap from ss13 - type: Add - id: 7105 - time: '2024-08-13T19:27:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30840 - author: PoorMansDreams changes: - message: Throngler Plushie looks like a plushie @@ -3948,3 +3941,11 @@ id: 7604 time: '2024-11-12T12:06:43.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33011 +- author: august-sun + changes: + - message: The inert flesh anomaly core can now be microwaved to turn into an anomalous + meat mass. + type: Tweak + id: 7605 + time: '2024-11-13T02:59:47.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33223 From 99b4604d5096eea467a7006ccfa90ef17e06e73e Mon Sep 17 00:00:00 2001 From: Spessmann <156740760+Spessmann@users.noreply.github.com> Date: Tue, 12 Nov 2024 19:07:47 -0800 Subject: [PATCH 064/171] Cog fixes (#33285) fixed the map (for real this time) --- Resources/Maps/cog.yml | 3014 +++++++++++++++++++++++++--------------- 1 file changed, 1914 insertions(+), 1100 deletions(-) diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index 58310e561c0..859ee46b1de 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -333,7 +333,7 @@ entities: version: 6 3,3: ind: 3,3 - tiles: YAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAADAAAAAADDAAAAAABDAAAAAACfQAAAAACfQAAAAACCwAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAACDAAAAAAAfQAAAAABfQAAAAAAfQAAAAAADAAAAAADDAAAAAADDAAAAAACCAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADCAAAAAABCAAAAAAACAAAAAACfQAAAAAAfQAAAAABfQAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADCAAAAAAACAAAAAABCAAAAAABfQAAAAADfQAAAAAAfQAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAADAAAAAAADAAAAAAADAAAAAADfQAAAAADfQAAAAACfQAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAADAAAAAABDAAAAAABDAAAAAACfQAAAAABfQAAAAACfQAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAADAAAAAAADAAAAAADDAAAAAACfQAAAAABfQAAAAACfQAAAAADDAAAAAAADAAAAAADDAAAAAADDAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACgQAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + tiles: YAAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAACgQAAAAAAYAAAAAAAYAAAAAADYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAADYAAAAAADYAAAAAAAgQAAAAAAYAAAAAADYAAAAAADgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAYAAAAAADYAAAAAADYAAAAAAAYAAAAAADgQAAAAAAYAAAAAABYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAYAAAAAADYAAAAAABYAAAAAACgQAAAAAADAAAAAADDAAAAAABDAAAAAACfQAAAAACfQAAAAACCwAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAADYAAAAAABgQAAAAAAYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAADAAAAAACDAAAAAACDAAAAAAAfQAAAAABfQAAAAAAfQAAAAAADAAAAAADDAAAAAADDAAAAAACCAAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAADYAAAAAADYAAAAAADCAAAAAABCAAAAAAACAAAAAACfQAAAAAAfQAAAAABfQAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADCAAAAAAACAAAAAABCAAAAAABfQAAAAADfQAAAAAAfQAAAAACCAAAAAADCAAAAAADCAAAAAACCAAAAAACYAAAAAACYAAAAAAAYAAAAAABYAAAAAADYAAAAAABgQAAAAAADAAAAAAADAAAAAAADAAAAAADfQAAAAADfQAAAAACfQAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAADYAAAAAAAgQAAAAAADAAAAAABDAAAAAABDAAAAAACfQAAAAABfQAAAAACfQAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAADYAAAAAABgQAAAAAAYAAAAAADYAAAAAAAYAAAAAAAgQAAAAAADAAAAAAADAAAAAADDAAAAAACfQAAAAABfQAAAAACfQAAAAADDAAAAAAADAAAAAADDAAAAAADDAAAAAAAYAAAAAAAgQAAAAAAYAAAAAADYAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAgQAAAAAAYAAAAAADgQAAAAAAgQAAAAAAYAAAAAACYAAAAAACYAAAAAACYAAAAAACYAAAAAADgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAABYAAAAAACgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADYAAAAAACYAAAAAACYAAAAAAAYAAAAAAAYAAAAAABYAAAAAACYAAAAAADYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAYAAAAAADYAAAAAABYAAAAAABYAAAAAACYAAAAAABgQAAAAAAYAAAAAAAYAAAAAACYAAAAAAAYAAAAAACYAAAAAABgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 @@ -353,7 +353,7 @@ entities: version: 6 3,4: ind: 3,4 - tiles: gQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAYAAAAAABgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACYAAAAAADgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,4: ind: 2,4 @@ -441,11 +441,11 @@ entities: version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAABgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAIAAAAAABYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACIAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAACgQAAAAAAIAAAAAACIAAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIAAAAAABgQAAAAAAIAAAAAAAIAAAAAADgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,-5: ind: 0,-5 @@ -1262,9 +1262,7 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 2507: 1,36 2508: 1,37 - 2509: 1,38 2510: 1,39 4041: 77,46 4042: 77,51 @@ -1299,13 +1297,18 @@ entities: 9612: -5,71 9911: -48,70 9912: -48,73 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 9952: 1,36 + 9953: 1,38 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 2518: 2,35 2519: 3,35 - 2520: 4,35 2521: 5,35 2522: 6,35 2523: 7,35 @@ -1357,6 +1360,13 @@ entities: 9902: -51,74 9903: -50,74 9904: -49,74 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 9950: 2,35 + 9951: 4,35 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS @@ -1953,6 +1963,14 @@ entities: 9920: -32,75 9921: -28,74 9922: -29,77 + 10059: -58,-17 + 10060: -61,-16 + 10113: -10,-69 + 10114: -12,-72 + 10115: -14,-70 + 10116: -16,-72 + 10117: -16,-68 + 10118: -12,-67 - node: cleanable: True zIndex: 1 @@ -2173,7 +2191,6 @@ entities: 4138: -36,1 4139: -30,7 4140: -30,10 - 4141: -22,9 4142: -21,7 4143: -17,11 4144: -16,0 @@ -3082,6 +3099,164 @@ entities: 9942: -43,67 9943: -43,68 9944: -46,68 + 9984: -1,10 + 9985: 0,7 + 9986: -2,7 + 9987: -2,7 + 9988: -1,7 + 9989: -3,10 + 9990: -4,11 + 9991: -7,4 + 9992: -7,5 + 9993: -7,6 + 9994: -6,7 + 9995: -9,0 + 9996: -10,-2 + 9997: -11,-2 + 9998: -11,-1 + 9999: -13,-2 + 10000: -12,-5 + 10001: -11,-4 + 10002: -12,-4 + 10003: -12,-4 + 10004: -2,-4 + 10005: -11,-11 + 10006: -11,-10 + 10007: -11,-10 + 10008: -11,-9 + 10009: -12,-9 + 10010: -12,-9 + 10011: -11,-7 + 10012: -10,-13 + 10013: -10,-12 + 10014: -7,-16 + 10015: -8,-16 + 10016: -7,-15 + 10017: -7,-15 + 10018: -7,-18 + 10019: -4,-20 + 10020: -4,-21 + 10021: -5,-20 + 10022: -3,-19 + 10023: -3,-21 + 10024: -1,-21 + 10025: 3,-21 + 10026: 4,-19 + 10027: 4,-15 + 10028: 4,-16 + 10029: 4,-16 + 10030: 4,-17 + 10031: 4,-24 + 10032: 2,-24 + 10033: -13,-23 + 10034: -60,-28 + 10035: -61,-28 + 10036: -63,-30 + 10037: -60,-22 + 10038: -59,-22 + 10039: -59,-25 + 10040: -59,-28 + 10041: -61,-16 + 10042: -61,-16 + 10043: -61,-16 + 10044: -61,-16 + 10045: -61,-15 + 10046: -60,-14 + 10047: -57,-17 + 10048: -58,-16 + 10049: -57,-16 + 10050: -58,-17 + 10051: -54,-17 + 10052: -55,-17 + 10053: -55,-16 + 10054: -54,-16 + 10055: -53,-16 + 10056: -55,-15 + 10057: -54,-13 + 10058: -54,-13 + 10061: -60,-14 + 10062: -60,-14 + 10063: -60,-14 + 10064: -57,-17 + 10065: -55,-16 + 10066: -55,-16 + 10067: -55,-15 + 10068: -56,-16 + 10069: -56,-16 + 10070: -55,-15 + 10071: -54,-16 + 10072: -54,-16 + 10073: -54,-16 + 10074: -51,-15 + 10075: -50,-15 + 10076: -51,-13 + 10077: -52,-20 + 10078: -52,-20 + 10079: -52,-20 + 10080: -53,-20 + 10081: -51,-20 + 10082: -46,-23 + 10083: -17,-70 + 10084: -15,-69 + 10085: -15,-70 + 10086: -14,-70 + 10087: -13,-69 + 10088: -12,-69 + 10089: -11,-70 + 10090: -11,-71 + 10091: -11,-72 + 10092: -12,-72 + 10093: -12,-71 + 10094: -14,-72 + 10095: -15,-72 + 10096: -15,-72 + 10097: -16,-72 + 10098: -16,-72 + 10099: -15,-72 + 10100: -10,-69 + 10101: -10,-69 + 10102: -11,-69 + 10103: -11,-69 + 10104: -11,-70 + 10105: -13,-70 + 10106: -16,-68 + 10107: -16,-69 + 10108: -14,-69 + 10109: -12,-70 + 10110: -11,-70 + 10111: -16,-70 + 10112: -17,-68 + 10119: -16,-66 + 10120: -13,-66 + 10121: -12,-66 + 10122: -13,-67 + 10123: -12,-67 + 10124: -11,-67 + 10125: -13,-67 + 10126: -14,-67 + 10127: -14,-66 + 10128: -15,-66 + 10129: -15,-65 + 10130: -13,-65 + 10131: -13,-65 + 10132: -9,-65 + 10133: -8,-64 + 10134: -14,-63 + 10146: -24,9 + 10147: -25,9 + 10148: -21,9 + 10149: -21,10 + 10150: -20,9 + 10151: -24,7 + 10152: -24,4 + 10153: -22,5 + 10154: -21,4 + 10155: -20,13 + 10156: -22,13 + 10157: -23,14 + 10158: -24,14 + 10159: -24,11 + 10160: -20,12 - node: cleanable: True zIndex: 1 @@ -3202,6 +3377,15 @@ entities: 8588: 28,23 8589: 29,25 8590: 29,25 + 9954: -1,22 + 9955: -1,21 + 9956: -3,22 + 9957: -3,22 + 9958: -4,22 + 9959: -5,19 + 9960: -5,20 + 9961: -3,21 + 9962: -2,21 - node: cleanable: True color: '#FFFFFFFF' @@ -3270,7 +3454,6 @@ entities: 3000: -11,6 3001: -9,8 3002: -19,8 - 3003: -24,9 3004: -19,11 3005: -16,12 3006: -17,18 @@ -3300,7 +3483,6 @@ entities: 3032: -31,39 3033: -38,41 3034: -28,39 - 3035: -35,45 3036: -30,43 3037: -28,46 3038: -30,51 @@ -3985,7 +4167,6 @@ entities: 3828: -26,13 3829: -26,12 3830: -26,10 - 3831: -25,9 3832: -26,8 3833: -24,10 3834: -23,8 @@ -4624,6 +4805,25 @@ entities: 9861: -31,78 9862: -29,75 9863: -29,75 + 9965: -2,17 + 9966: -2,17 + 9967: -3,17 + 9968: -4,15 + 9969: -1,15 + 9970: -1,15 + 9971: -4,17 + 9972: -4,17 + 9973: -13,17 + 9974: -13,17 + 9975: -12,10 + 9976: -9,11 + 9977: -8,9 + 9978: -3,10 + 9979: -4,10 + 9980: -5,10 + 9981: -5,11 + 9982: -4,11 + 9983: -3,11 - node: cleanable: True zIndex: 1 @@ -4643,6 +4843,8 @@ entities: 8165: 42,4 8166: 42,4 8167: 42,4 + 9963: -5,22 + 9964: -4,21 - node: cleanable: True color: '#B02E26FF' @@ -7632,18 +7834,18 @@ entities: 2541: 0,33 2542: 0,35 2543: 1,34 - 2544: 2,35 2545: 3,34 - 2546: 1,36 2547: 0,37 2548: 0,39 - 2549: 1,38 2550: 5,34 - 2551: 4,35 2579: 6,41 2975: -17,-33 2981: -17,-37 2985: -18,-36 + 9946: 4,35 + 9947: 2,35 + 9948: 1,36 + 9949: 1,38 - node: color: '#8C347F96' id: QuarterTileOverlayGreyscale90 @@ -7847,40 +8049,47 @@ entities: 7279: 28.908653,-33.8389 7347: -20.375824,19.28789 - node: + zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 2058: -25,9 + 10139: -25,9 - node: + zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 2034: -24,9 + 10140: -24,9 - node: + zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 1863: -23,9 + 10141: -23,9 - node: + zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 1864: -22,9 + 10142: -22,9 - node: + zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 1865: -21,9 + 10143: -21,9 - node: + zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 1866: -20,9 + 10144: -20,9 - node: + zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 1867: -19,9 + 10145: -19,9 - node: color: '#32CD3293' id: ThreeQuarterTileOverlayGreyscale @@ -9860,7 +10069,7 @@ entities: -4,-14: 0: 49631 -4,-17: - 0: 61441 + 0: 65473 -3,-16: 0: 46008 -3,-15: @@ -9868,7 +10077,7 @@ entities: -3,-14: 0: 62139 -3,-17: - 0: 61568 + 0: 61872 -2,-16: 0: 3839 -2,-15: @@ -11076,8 +11285,8 @@ entities: 13,15: 0: 57308 13,16: - 0: 4381 - 2: 51200 + 0: 797 + 2: 52224 14,13: 0: 65535 14,14: @@ -11086,9 +11295,9 @@ entities: 0: 30583 14,16: 0: 7 - 2: 61952 + 2: 65280 15,16: - 2: 12835 + 2: 13107 7,12: 0: 61408 8,13: @@ -11220,7 +11429,7 @@ entities: -1,16: 0: 63675 12,17: - 2: 61448 + 2: 61440 12,18: 2: 52479 11,17: @@ -11232,7 +11441,7 @@ entities: 11,19: 2: 45055 13,17: - 2: 63627 + 2: 63624 13,18: 2: 39423 13,19: @@ -11240,7 +11449,7 @@ entities: 12,20: 2: 15 14,17: - 2: 61986 + 2: 61998 14,18: 2: 8959 14,19: @@ -11250,7 +11459,7 @@ entities: 14,20: 2: 15 15,17: - 2: 65058 + 2: 65059 15,18: 2: 8191 15,19: @@ -11603,15 +11812,17 @@ entities: 0: 631 -6,19: 2: 8 - -5,-18: - 0: 48000 + -4,-19: + 0: 20480 -4,-18: - 2: 3584 + 0: 65367 + -5,-18: + 0: 47872 + 2: 4 -3,-18: - 2: 18176 + 0: 29495 -2,-18: 0: 61440 - 2: 96 -1,-18: 0: 65280 -1,-17: @@ -14887,6 +15098,11 @@ entities: - type: Transform pos: -36.5,15.5 parent: 12 + - uid: 10620 + components: + - type: Transform + pos: -15.5,-70.5 + parent: 12 - uid: 10786 components: - type: Transform @@ -14899,6 +15115,11 @@ entities: linkedPorts: 10785: - DoorStatus: DoorBolt + - uid: 12234 + components: + - type: Transform + pos: -13.5,-70.5 + parent: 12 - uid: 14903 components: - type: Transform @@ -15246,18 +15467,6 @@ entities: linkedPorts: 27864: - DoorStatus: DoorBolt - - uid: 19844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,67.5 - parent: 12 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 18560: - - DoorStatus: DoorBolt - uid: 25678 components: - type: Transform @@ -15310,6 +15519,17 @@ entities: linkedPorts: 27232: - DoorStatus: DoorBolt + - uid: 31450 + components: + - type: Transform + pos: 53.5,66.5 + parent: 12 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 161: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - uid: 14686 @@ -15388,6 +15608,12 @@ entities: parent: 12 - proto: AirlockExternalGlassShuttleEscape entities: + - uid: 573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-71.5 + parent: 12 - uid: 1033 components: - type: Transform @@ -15412,12 +15638,6 @@ entities: rot: -1.5707963267948966 rad pos: -56.5,-39.5 parent: 12 - - uid: 30543 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-67.5 - parent: 12 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 552 @@ -15534,41 +15754,40 @@ entities: parent: 12 - proto: AirlockExternalLocked entities: - - uid: 530 + - uid: 161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-5.5 + pos: 52.5,64.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 925: + 31450: - DoorStatus: DoorBolt - - uid: 925 + - uid: 530 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-3.5 + pos: 5.5,-5.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 530: + 925: - DoorStatus: DoorBolt - - uid: 18560 + - uid: 925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,64.5 + rot: 3.141592653589793 rad + pos: 5.5,-3.5 parent: 12 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 19844: + 530: - DoorStatus: DoorBolt - uid: 25663 components: @@ -15584,10 +15803,15 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalShuttleLocked entities: - - uid: 28051 + - uid: 31079 components: - type: Transform - pos: -16.5,-70.5 + pos: -15.5,-72.5 + parent: 12 + - uid: 31080 + components: + - type: Transform + pos: -13.5,-72.5 parent: 12 - proto: AirlockFreezerLocked entities: @@ -19147,6 +19371,11 @@ entities: rot: 3.141592653589793 rad pos: -47.5,67.5 parent: 12 + - uid: 9640 + components: + - type: Transform + pos: -0.5,5.5 + parent: 12 - uid: 9899 components: - type: Transform @@ -19390,12 +19619,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,-25.5 parent: 12 - - uid: 21922 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,1.5 - parent: 12 - uid: 22225 components: - type: Transform @@ -19840,6 +20063,12 @@ entities: parent: 12 - proto: AtmosDeviceFanDirectional entities: + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-71.5 + parent: 12 - uid: 193 components: - type: Transform @@ -19869,10 +20098,10 @@ entities: - type: Transform pos: 80.5,-33.5 parent: 12 - - uid: 745 + - uid: 563 components: - type: Transform - pos: -16.5,-70.5 + pos: -15.5,-72.5 parent: 12 - uid: 919 components: @@ -19880,12 +20109,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-51.5 parent: 12 - - uid: 1049 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-67.5 - parent: 12 - uid: 1355 components: - type: Transform @@ -20054,6 +20277,11 @@ entities: rot: -1.5707963267948966 rad pos: -47.5,2.5 parent: 12 + - uid: 31081 + components: + - type: Transform + pos: -13.5,-72.5 + parent: 12 - uid: 31633 components: - type: Transform @@ -22499,6 +22727,13 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,25.5 parent: 12 +- proto: BorgModuleAnomaly + entities: + - uid: 31075 + components: + - type: Transform + pos: -40.50334,-38.27384 + parent: 12 - proto: BorgModuleCable entities: - uid: 1780 @@ -22506,6 +22741,18 @@ entities: - type: Transform pos: -34.459003,-34.4371 parent: 12 + - uid: 31065 + components: + - type: Transform + pos: 57.40648,-4.2987256 + parent: 12 +- proto: BorgModuleDiagnosis + entities: + - uid: 31067 + components: + - type: Transform + pos: -1.522131,-49.55343 + parent: 12 - proto: BorgModuleFireExtinguisher entities: - uid: 2071 @@ -22544,6 +22791,11 @@ entities: - type: Transform pos: 22.528473,66.519966 parent: 12 + - uid: 31076 + components: + - type: Transform + pos: 40.50182,45.594707 + parent: 12 - proto: BorgModuleTool entities: - uid: 1781 @@ -22555,8 +22807,8 @@ entities: - uid: 1782 components: - type: Transform - rot: -62.83185307179591 rad - pos: -19.470467,-27.590706 + rot: -6.283185307179586 rad + pos: -4.4899044,50.539303 parent: 12 - proto: BoxBeaker entities: @@ -22831,17 +23083,17 @@ entities: - uid: 20863 components: - type: Transform - pos: -32.4606,65.445 + pos: -32.540394,65.31164 parent: 12 - uid: 20864 components: - type: Transform - pos: -32.497322,65.50615 + pos: -32.602894,65.63478 parent: 12 - uid: 20865 components: - type: Transform - pos: -32.4606,65.51838 + pos: -32.259144,65.467995 parent: 12 - proto: BoxLightbulb entities: @@ -23185,6 +23437,12 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-13.5 parent: 12 + - uid: 11842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-24.5 + parent: 12 - uid: 11866 components: - type: Transform @@ -23272,6 +23530,32 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,-7.5 parent: 12 + - uid: 31379 + components: + - type: Transform + pos: -20.5,15.5 + parent: 12 + - uid: 31380 + components: + - type: Transform + pos: 12.5,19.5 + parent: 12 + - uid: 31381 + components: + - type: Transform + pos: 10.5,19.5 + parent: 12 + - uid: 31513 + components: + - type: Transform + pos: -49.5,-20.5 + parent: 12 + - uid: 31518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-28.5 + parent: 12 - proto: CableApcExtension entities: - uid: 14 @@ -23499,6 +23783,11 @@ entities: - type: Transform pos: 30.5,-57.5 parent: 12 + - uid: 745 + components: + - type: Transform + pos: 43.5,12.5 + parent: 12 - uid: 746 components: - type: Transform @@ -23534,6 +23823,11 @@ entities: - type: Transform pos: -30.5,-25.5 parent: 12 + - uid: 1049 + components: + - type: Transform + pos: 46.5,13.5 + parent: 12 - uid: 1054 components: - type: Transform @@ -31099,11 +31393,6 @@ entities: - type: Transform pos: 44.5,12.5 parent: 12 - - uid: 12135 - components: - - type: Transform - pos: 43.5,12.5 - parent: 12 - uid: 12136 components: - type: Transform @@ -31169,11 +31458,6 @@ entities: - type: Transform pos: 41.5,14.5 parent: 12 - - uid: 12163 - components: - - type: Transform - pos: 42.5,14.5 - parent: 12 - uid: 12164 components: - type: Transform @@ -42929,16 +43213,6 @@ entities: - type: Transform pos: 45.5,1.5 parent: 12 - - uid: 29339 - components: - - type: Transform - pos: 45.5,4.5 - parent: 12 - - uid: 29340 - components: - - type: Transform - pos: 45.5,5.5 - parent: 12 - uid: 29341 components: - type: Transform @@ -44024,6 +44298,16 @@ entities: - type: Transform pos: 10.5,-24.5 parent: 12 + - uid: 31055 + components: + - type: Transform + pos: -0.5,4.5 + parent: 12 + - uid: 31056 + components: + - type: Transform + pos: -0.5,5.5 + parent: 12 - uid: 31068 components: - type: Transform @@ -44054,6 +44338,56 @@ entities: - type: Transform pos: -52.5,-50.5 parent: 12 + - uid: 31165 + components: + - type: Transform + pos: -15.5,-68.5 + parent: 12 + - uid: 31166 + components: + - type: Transform + pos: -14.5,-68.5 + parent: 12 + - uid: 31169 + components: + - type: Transform + pos: -13.5,-68.5 + parent: 12 + - uid: 31170 + components: + - type: Transform + pos: -12.5,-68.5 + parent: 12 + - uid: 31171 + components: + - type: Transform + pos: -11.5,-68.5 + parent: 12 + - uid: 31172 + components: + - type: Transform + pos: -10.5,-68.5 + parent: 12 + - uid: 31173 + components: + - type: Transform + pos: -10.5,-69.5 + parent: 12 + - uid: 31174 + components: + - type: Transform + pos: -10.5,-70.5 + parent: 12 + - uid: 31238 + components: + - type: Transform + pos: -10.5,-71.5 + parent: 12 + - uid: 31266 + components: + - type: Transform + pos: -14.5,-69.5 + parent: 12 - uid: 31275 components: - type: Transform @@ -44184,6 +44518,16 @@ entities: - type: Transform pos: 1.5,-63.5 parent: 12 + - uid: 31349 + components: + - type: Transform + pos: -14.5,-70.5 + parent: 12 + - uid: 31353 + components: + - type: Transform + pos: -14.5,-71.5 + parent: 12 - uid: 31365 components: - type: Transform @@ -48452,11 +48796,6 @@ entities: - type: Transform pos: -1.5,35.5 parent: 12 - - uid: 11936 - components: - - type: Transform - pos: 45.5,4.5 - parent: 12 - uid: 11938 components: - type: Transform @@ -54877,31 +55216,6 @@ entities: - type: Transform pos: 4.5,-54.5 parent: 12 - - uid: 29182 - components: - - type: Transform - pos: 45.5,0.5 - parent: 12 - - uid: 29183 - components: - - type: Transform - pos: 45.5,1.5 - parent: 12 - - uid: 29184 - components: - - type: Transform - pos: 45.5,2.5 - parent: 12 - - uid: 29185 - components: - - type: Transform - pos: 45.5,3.5 - parent: 12 - - uid: 29307 - components: - - type: Transform - pos: 45.5,5.5 - parent: 12 - uid: 29426 components: - type: Transform @@ -56337,6 +56651,11 @@ entities: - type: Transform pos: 43.5,58.5 parent: 12 + - uid: 571 + components: + - type: Transform + pos: -0.5,4.5 + parent: 12 - uid: 601 components: - type: Transform @@ -59702,11 +60021,26 @@ entities: - type: Transform pos: 31.5,15.5 parent: 12 + - uid: 12056 + components: + - type: Transform + pos: -0.5,5.5 + parent: 12 - uid: 12142 components: - type: Transform pos: 37.5,18.5 parent: 12 + - uid: 12237 + components: + - type: Transform + pos: 53.5,-0.5 + parent: 12 + - uid: 12238 + components: + - type: Transform + pos: 52.5,-0.5 + parent: 12 - uid: 12292 components: - type: Transform @@ -65932,16 +66266,6 @@ entities: - type: Transform pos: -25.5,70.5 parent: 12 - - uid: 29323 - components: - - type: Transform - pos: 45.5,5.5 - parent: 12 - - uid: 29324 - components: - - type: Transform - pos: 45.5,4.5 - parent: 12 - uid: 29325 components: - type: Transform @@ -66757,6 +67081,56 @@ entities: - type: Transform pos: -5.5,-65.5 parent: 12 + - uid: 31564 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 12 + - uid: 31620 + components: + - type: Transform + pos: 50.5,-0.5 + parent: 12 + - uid: 31621 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 12 + - uid: 31622 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 12 + - uid: 31625 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 12 + - uid: 31626 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 12 + - uid: 31627 + components: + - type: Transform + pos: 45.5,-0.5 + parent: 12 + - uid: 31645 + components: + - type: Transform + pos: 45.5,0.5 + parent: 12 + - uid: 31646 + components: + - type: Transform + pos: 45.5,1.5 + parent: 12 + - uid: 31647 + components: + - type: Transform + pos: 45.5,2.5 + parent: 12 - uid: 31771 components: - type: Transform @@ -67136,6 +67510,30 @@ entities: parent: 12 - proto: Carpet entities: + - uid: 2274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,31.5 + parent: 12 + - uid: 2276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,31.5 + parent: 12 + - uid: 2340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,29.5 + parent: 12 + - uid: 2897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,28.5 + parent: 12 - uid: 4023 components: - type: Transform @@ -67195,6 +67593,54 @@ entities: - type: Transform pos: 23.5,48.5 parent: 12 + - uid: 4890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,27.5 + parent: 12 + - uid: 5385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,28.5 + parent: 12 + - uid: 5411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,30.5 + parent: 12 + - uid: 6288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,29.5 + parent: 12 + - uid: 6747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,27.5 + parent: 12 + - uid: 7338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,30.5 + parent: 12 + - uid: 7584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,31.5 + parent: 12 + - uid: 7620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,31.5 + parent: 12 - uid: 10613 components: - type: Transform @@ -67213,6 +67659,48 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-0.5 parent: 12 + - uid: 12401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,29.5 + parent: 12 + - uid: 12402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,28.5 + parent: 12 + - uid: 12403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,29.5 + parent: 12 + - uid: 12404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,27.5 + parent: 12 + - uid: 12405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,27.5 + parent: 12 + - uid: 12406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,30.5 + parent: 12 + - uid: 12407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,30.5 + parent: 12 - uid: 12727 components: - type: Transform @@ -67273,6 +67761,12 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,36.5 parent: 12 + - uid: 13145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,28.5 + parent: 12 - uid: 13178 components: - type: Transform @@ -68598,126 +69092,6 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,32.5 parent: 12 - - uid: 13145 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,31.5 - parent: 12 - - uid: 13146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,30.5 - parent: 12 - - uid: 13147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,29.5 - parent: 12 - - uid: 13148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,28.5 - parent: 12 - - uid: 13149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,27.5 - parent: 12 - - uid: 13150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,28.5 - parent: 12 - - uid: 13151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,29.5 - parent: 12 - - uid: 13152 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,27.5 - parent: 12 - - uid: 13153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,31.5 - parent: 12 - - uid: 13154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,30.5 - parent: 12 - - uid: 13155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,31.5 - parent: 12 - - uid: 13156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,29.5 - parent: 12 - - uid: 13157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,30.5 - parent: 12 - - uid: 13158 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,31.5 - parent: 12 - - uid: 13159 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,30.5 - parent: 12 - - uid: 13160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,29.5 - parent: 12 - - uid: 13161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,28.5 - parent: 12 - - uid: 13162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,27.5 - parent: 12 - - uid: 13163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,27.5 - parent: 12 - - uid: 13164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,28.5 - parent: 12 - uid: 13170 components: - type: Transform @@ -72929,6 +73303,11 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-0.5 parent: 12 + - uid: 22182 + components: + - type: Transform + pos: 54.5,66.5 + parent: 12 - uid: 22286 components: - type: Transform @@ -73679,11 +74058,6 @@ entities: rot: 1.5707963267948966 rad pos: -48.5,46.5 parent: 12 - - uid: 25555 - components: - - type: Transform - pos: 51.5,68.5 - parent: 12 - uid: 25758 components: - type: Transform @@ -75299,16 +75673,6 @@ entities: rot: 3.141592653589793 rad pos: -41.5,66.5 parent: 12 - - uid: 30017 - components: - - type: Transform - pos: 53.5,68.5 - parent: 12 - - uid: 30018 - components: - - type: Transform - pos: 52.5,68.5 - parent: 12 - uid: 30131 components: - type: Transform @@ -75659,6 +76023,21 @@ entities: - type: Transform pos: -57.5,-43.5 parent: 12 + - uid: 31107 + components: + - type: Transform + pos: -15.5,-71.5 + parent: 12 + - uid: 31111 + components: + - type: Transform + pos: -13.5,-71.5 + parent: 12 + - uid: 31113 + components: + - type: Transform + pos: -14.5,-71.5 + parent: 12 - uid: 31270 components: - type: Transform @@ -75677,12 +76056,32 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,15.5 parent: 12 + - uid: 31396 + components: + - type: Transform + pos: 57.5,66.5 + parent: 12 - uid: 31419 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-64.5 parent: 12 + - uid: 31442 + components: + - type: Transform + pos: 54.5,67.5 + parent: 12 + - uid: 31445 + components: + - type: Transform + pos: 55.5,66.5 + parent: 12 + - uid: 31446 + components: + - type: Transform + pos: 56.5,66.5 + parent: 12 - uid: 32022 components: - type: Transform @@ -77209,6 +77608,16 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-12.5 parent: 12 + - uid: 31149 + components: + - type: Transform + pos: -12.5,-68.5 + parent: 12 + - uid: 31160 + components: + - type: Transform + pos: -11.5,-68.5 + parent: 12 - uid: 31264 components: - type: Transform @@ -77319,6 +77728,11 @@ entities: - type: Transform pos: -36.5,-56.5 parent: 12 + - uid: 31159 + components: + - type: Transform + pos: -13.5,-68.5 + parent: 12 - uid: 31265 components: - type: Transform @@ -78095,10 +78509,10 @@ entities: - type: Transform pos: -52.5,-34.5 parent: 12 - - uid: 28303 + - uid: 31099 components: - type: Transform - pos: -19.5,-64.5 + pos: -12.5,-66.5 parent: 12 - uid: 31367 components: @@ -78382,6 +78796,11 @@ entities: parent: 12 - proto: ClosetEmergencyN2FilledRandom entities: + - uid: 8668 + components: + - type: Transform + pos: -13.5,-66.5 + parent: 12 - uid: 14957 components: - type: Transform @@ -78479,6 +78898,11 @@ entities: - type: Transform pos: 48.5,-36.5 parent: 12 + - uid: 11261 + components: + - type: Transform + pos: -36.5,55.5 + parent: 12 - uid: 12023 components: - type: Transform @@ -78861,6 +79285,11 @@ entities: - type: Transform pos: 40.5,12.5 parent: 12 + - uid: 12135 + components: + - type: Transform + pos: -9.5,-68.5 + parent: 12 - uid: 12246 components: - type: Transform @@ -79792,8 +80221,8 @@ entities: - uid: 5033 components: - type: Transform - rot: -119.380520836412 rad - pos: -19.723452,-30.617403 + rot: -6.283185307179586 rad + pos: -19.489866,-29.595835 parent: 12 - proto: ClothingMaskBandBlue entities: @@ -79847,8 +80276,8 @@ entities: - uid: 10900 components: - type: Transform - rot: -119.380520836412 rad - pos: -19.545881,-30.396193 + rot: -6.283185307179586 rad + pos: -19.677366,-30.367203 parent: 12 - proto: ClothingMaskBreathMedicalSecurity entities: @@ -83592,15 +84021,15 @@ entities: - type: Transform pos: -55.5,-39.5 parent: 12 - - uid: 916 + - uid: 703 components: - type: Transform - pos: -18.5,73.5 + pos: -10.5,-71.5 parent: 12 - - uid: 2340 + - uid: 916 components: - type: Transform - pos: -16.5,-67.5 + pos: -18.5,73.5 parent: 12 - uid: 7275 components: @@ -95559,6 +95988,11 @@ entities: - type: Transform pos: -33.58722,44.43513 parent: 12 + - uid: 31049 + components: + - type: Transform + pos: -40.499992,47.607746 + parent: 12 - uid: 31815 components: - type: Transform @@ -96744,6 +97178,22 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,14.5 parent: 12 + - uid: 31360 + components: + - type: Transform + pos: -12.5,-68.5 + parent: 12 + - uid: 31361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-27.5 + parent: 12 + - uid: 31362 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 12 - uid: 31514 components: - type: Transform @@ -97255,8 +97705,8 @@ entities: pos: 7.5,57.5 parent: 12 - type: FaxMachine - name: Recreation longue - destinationAddress: Recreation longue + name: Recreation lounge + destinationAddress: Recreation lounge - uid: 26279 components: - type: Transform @@ -102397,6 +102847,13 @@ entities: - type: Transform pos: -34.299114,38.455334 parent: 12 +- proto: FoodBoxPizzaFilled + entities: + - uid: 10911 + components: + - type: Transform + pos: 0.5,52.5 + parent: 12 - proto: FoodBreadMoldySlice entities: - uid: 3240 @@ -102407,7 +102864,7 @@ entities: - uid: 31123 components: - type: Transform - pos: -30.5,-57.5 + pos: -30.467789,-57.532593 parent: 12 - proto: FoodBreadPlain entities: @@ -102528,13 +102985,6 @@ entities: - type: Transform pos: 57.538345,56.66531 parent: 12 -- proto: FoodCornTrash - entities: - - uid: 31149 - components: - - type: Transform - pos: -34.115353,-56.58399 - parent: 12 - proto: FoodFrozenSnowcone entities: - uid: 22491 @@ -102654,7 +103104,7 @@ entities: - uid: 31124 components: - type: Transform - pos: -30.5,-58.5 + pos: -30.5164,-58.581932 parent: 12 - proto: FoodPizzaUraniumSlice entities: @@ -102919,7 +103369,7 @@ entities: - uid: 31133 components: - type: Transform - pos: -28.587122,-59.26843 + pos: -28.70083,-57.79198 parent: 12 - proto: Football entities: @@ -139733,11 +140183,6 @@ entities: - type: Transform pos: -46.5,0.5 parent: 12 - - uid: 8668 - components: - - type: Transform - pos: -47.5,0.5 - parent: 12 - uid: 8713 components: - type: Transform @@ -139851,7 +140296,7 @@ entities: - uid: 9971 components: - type: Transform - pos: -47.5,3.5 + pos: 60.5,65.5 parent: 12 - uid: 10060 components: @@ -140363,6 +140808,11 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,8.5 parent: 12 + - uid: 10724 + components: + - type: Transform + pos: -14.5,-70.5 + parent: 12 - uid: 10725 components: - type: Transform @@ -143440,11 +143890,6 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,-11.5 parent: 12 - - uid: 25558 - components: - - type: Transform - pos: 61.5,66.5 - parent: 12 - uid: 25559 components: - type: Transform @@ -143982,11 +144427,6 @@ entities: - type: Transform pos: 6.5,76.5 parent: 12 - - uid: 27240 - components: - - type: Transform - pos: 61.5,67.5 - parent: 12 - uid: 27248 components: - type: Transform @@ -145444,26 +145884,6 @@ entities: - type: Transform pos: -39.5,65.5 parent: 12 - - uid: 30971 - components: - - type: Transform - pos: -14.5,-65.5 - parent: 12 - - uid: 30972 - components: - - type: Transform - pos: -13.5,-65.5 - parent: 12 - - uid: 30973 - components: - - type: Transform - pos: -12.5,-65.5 - parent: 12 - - uid: 30977 - components: - - type: Transform - pos: -11.5,-65.5 - parent: 12 - uid: 30978 components: - type: Transform @@ -145573,6 +145993,11 @@ entities: rot: 3.141592653589793 rad pos: -56.5,-41.5 parent: 12 + - uid: 31103 + components: + - type: Transform + pos: -9.5,-70.5 + parent: 12 - uid: 31163 components: - type: Transform @@ -145645,6 +146070,11 @@ entities: - type: Transform pos: 2.5,-62.5 parent: 12 + - uid: 31441 + components: + - type: Transform + pos: 60.5,68.5 + parent: 12 - uid: 31451 components: - type: Transform @@ -146705,6 +147135,14 @@ entities: rot: -12.566370614359172 rad pos: -2.5072865,-0.47896957 parent: 12 +- proto: IntercomAll + entities: + - uid: 31057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 12 - proto: IntercomAssembly entities: - uid: 4791 @@ -146745,11 +147183,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,29.5 parent: 12 - - uid: 21479 - components: - - type: Transform - pos: -25.5,17.5 - parent: 12 - uid: 23622 components: - type: Transform @@ -146774,6 +147207,12 @@ entities: rot: 3.141592653589793 rad pos: -40.5,-44.5 parent: 12 + - uid: 31078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,17.5 + parent: 12 - proto: IntercomEngineering entities: - uid: 1484 @@ -147054,8 +147493,7 @@ entities: - uid: 28698 components: - type: Transform - rot: -6.283185307179586 rad - pos: 57.513466,-4.4312396 + pos: 57.646065,-4.6948333 parent: 12 - type: GasTank toggleActionEntity: 28700 @@ -148441,6 +148879,11 @@ entities: parent: 12 - proto: LootSpawnerIndustrial entities: + - uid: 1166 + components: + - type: Transform + pos: 45.5,5.5 + parent: 12 - uid: 21945 components: - type: Transform @@ -148955,6 +149398,11 @@ entities: - type: Transform pos: -52.5,49.5 parent: 12 + - uid: 31359 + components: + - type: Transform + pos: -11.5,-68.5 + parent: 12 - uid: 31676 components: - type: Transform @@ -149072,6 +149520,11 @@ entities: - type: Transform pos: -39.5,-50.5 parent: 12 + - uid: 31355 + components: + - type: Transform + pos: -11.5,-66.5 + parent: 12 - uid: 31372 components: - type: Transform @@ -149214,6 +149667,11 @@ entities: - type: Transform pos: 42.5,-42.5 parent: 12 + - uid: 29324 + components: + - type: Transform + pos: -10.5,-66.5 + parent: 12 - uid: 29620 components: - type: Transform @@ -149513,6 +149971,11 @@ entities: - type: Transform pos: -11.468502,-43.455402 parent: 12 + - uid: 31161 + components: + - type: Transform + pos: -11.5,-71.5 + parent: 12 - uid: 31323 components: - type: Transform @@ -149677,40 +150140,52 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-40.5 parent: 12 - - uid: 4260 + - uid: 9395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-40.5 + pos: -21.5,-27.5 parent: 12 - - uid: 4570 + - uid: 10736 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-41.5 parent: 12 - - uid: 5042 + - uid: 10737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-40.5 + parent: 12 + - uid: 10738 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-40.5 parent: 12 - - uid: 5709 + - uid: 10939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-44.5 + parent: 12 + - uid: 11000 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-43.5 parent: 12 - - uid: 6747 + - uid: 11001 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-41.5 + pos: 6.5,-43.5 parent: 12 - - uid: 9395 + - uid: 11220 components: - type: Transform - pos: -21.5,-27.5 + rot: -1.5707963267948966 rad + pos: 6.5,-41.5 parent: 12 - uid: 12394 components: @@ -149760,24 +150235,12 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-43.5 parent: 12 - - uid: 26149 + - uid: 31077 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-44.5 parent: 12 - - uid: 26150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-43.5 - parent: 12 - - uid: 26152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-44.5 - parent: 12 - proto: MouseTimedSpawner entities: - uid: 890 @@ -153926,6 +154389,12 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,74.5 parent: 12 + - uid: 11221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,47.5 + parent: 12 - uid: 11223 components: - type: Transform @@ -153938,6 +154407,12 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-50.5 parent: 12 + - uid: 11796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,57.5 + parent: 12 - uid: 12016 components: - type: Transform @@ -154735,18 +155210,6 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,42.5 parent: 12 - - uid: 19034 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,44.5 - parent: 12 - - uid: 19051 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,46.5 - parent: 12 - uid: 19052 components: - type: Transform @@ -154817,30 +155280,12 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,50.5 parent: 12 - - uid: 19355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,54.5 - parent: 12 - uid: 19356 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,52.5 parent: 12 - - uid: 19357 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,61.5 - parent: 12 - - uid: 19358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,61.5 - parent: 12 - uid: 19364 components: - type: Transform @@ -155159,6 +155604,12 @@ entities: - type: Transform pos: -50.5,22.5 parent: 12 + - uid: 31050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,44.5 + parent: 12 - uid: 31472 components: - type: Transform @@ -155714,6 +156165,11 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,11.5 parent: 12 + - uid: 11802 + components: + - type: Transform + pos: -31.5,60.5 + parent: 12 - uid: 12005 components: - type: Transform @@ -155724,6 +156180,12 @@ entities: - type: Transform pos: 50.5,20.5 parent: 12 + - uid: 12163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-71.5 + parent: 12 - uid: 12291 components: - type: Transform @@ -155927,12 +156389,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,64.5 parent: 12 - - uid: 19871 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,60.5 - parent: 12 - uid: 21082 components: - type: Transform @@ -156304,6 +156760,12 @@ entities: - type: Transform pos: 5.5,-59.5 parent: 12 + - uid: 31354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-70.5 + parent: 12 - uid: 31508 components: - type: Transform @@ -156324,12 +156786,6 @@ entities: parent: 12 - proto: PoweredSmallLightEmpty entities: - - uid: 9391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-23.5 - parent: 12 - uid: 28973 components: - type: Transform @@ -156351,6 +156807,12 @@ entities: powerLoad: 60 - type: DamageOnInteract isDamageActive: False + - uid: 31363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 12 - proto: Protolathe entities: - uid: 2321 @@ -156412,6 +156874,12 @@ entities: - type: Transform pos: -35.5,-37.5 parent: 12 + - uid: 2171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,5.5 + parent: 12 - uid: 2645 components: - type: Transform @@ -156621,12 +157089,6 @@ entities: rot: 1.5707963267948966 rad pos: 33.5,-6.5 parent: 12 - - uid: 12056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-28.5 - parent: 12 - uid: 12265 components: - type: Transform @@ -157131,6 +157593,17 @@ entities: - type: Transform pos: -53.5,-47.5 parent: 12 + - uid: 31086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-66.5 + parent: 12 + - uid: 31114 + components: + - type: Transform + pos: -11.5,-71.5 + parent: 12 - uid: 31261 components: - type: Transform @@ -158027,6 +158500,11 @@ entities: - type: Transform pos: 45.5,6.5 parent: 12 + - uid: 9391 + components: + - type: Transform + pos: -12.5,-71.5 + parent: 12 - uid: 13556 components: - type: Transform @@ -158178,6 +158656,12 @@ entities: - type: Transform pos: -26.5,73.5 parent: 12 + - uid: 31098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-66.5 + parent: 12 - uid: 31717 components: - type: Transform @@ -158188,11 +158672,6 @@ entities: - type: Transform pos: -4.5,-64.5 parent: 12 - - uid: 31719 - components: - - type: Transform - pos: -15.5,-65.5 - parent: 12 - uid: 31720 components: - type: Transform @@ -158240,6 +158719,11 @@ entities: parent: 12 - proto: RandomPosterLegit entities: + - uid: 726 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 12 - uid: 2131 components: - type: Transform @@ -158996,11 +159480,6 @@ entities: - type: Transform pos: 56.5,-28.5 parent: 12 - - uid: 24419 - components: - - type: Transform - pos: 63.5,-23.5 - parent: 12 - uid: 24420 components: - type: Transform @@ -159286,6 +159765,16 @@ entities: - type: Transform pos: -38.5,-54.5 parent: 12 + - uid: 31356 + components: + - type: Transform + pos: -10.5,-70.5 + parent: 12 + - uid: 31562 + components: + - type: Transform + pos: 61.5,-25.5 + parent: 12 - uid: 31582 components: - type: Transform @@ -160498,11 +160987,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,24.5 parent: 12 - - uid: 4151 - components: - - type: Transform - pos: -47.5,3.5 - parent: 12 - uid: 4175 components: - type: Transform @@ -162740,7 +163224,7 @@ entities: - uid: 12191 components: - type: Transform - pos: -47.5,0.5 + pos: -14.5,-70.5 parent: 12 - uid: 12252 components: @@ -165006,26 +165490,6 @@ entities: - type: Transform pos: -31.5,-60.5 parent: 12 - - uid: 30970 - components: - - type: Transform - pos: -14.5,-65.5 - parent: 12 - - uid: 30974 - components: - - type: Transform - pos: -13.5,-65.5 - parent: 12 - - uid: 30975 - components: - - type: Transform - pos: -12.5,-65.5 - parent: 12 - - uid: 30976 - components: - - type: Transform - pos: -11.5,-65.5 - parent: 12 - uid: 30980 components: - type: Transform @@ -165041,6 +165505,11 @@ entities: - type: Transform pos: -54.5,-46.5 parent: 12 + - uid: 31105 + components: + - type: Transform + pos: -9.5,-70.5 + parent: 12 - uid: 31141 components: - type: Transform @@ -165376,8 +165845,8 @@ entities: - uid: 11312 components: - type: Transform - rot: -62.83185307179591 rad - pos: -19.456577,-27.187649 + rot: -6.283185307179586 rad + pos: -19.510698,-27.229607 parent: 12 - uid: 13828 components: @@ -165420,8 +165889,8 @@ entities: - uid: 5125 components: - type: Transform - rot: -62.83185307179591 rad - pos: -19.623243,-27.84088 + rot: -6.283185307179586 rad + pos: -19.458616,-27.615292 parent: 12 - uid: 13829 components: @@ -165822,14 +166291,12 @@ entities: - uid: 23173 components: - type: Transform - rot: -43.98229715025713 rad - pos: 53.468582,-3.3849072 + pos: 53.37523,-3.5169325 parent: 12 - uid: 26101 components: - type: Transform - rot: -43.98229715025713 rad - pos: 57.301918,-5.261206 + pos: 57.385647,-5.3932357 parent: 12 - uid: 31043 components: @@ -165899,8 +166366,7 @@ entities: - uid: 8439 components: - type: Transform - rot: -43.98229715025713 rad - pos: 57.63525,-5.083999 + pos: 53.677315,-3.3188787 parent: 12 - uid: 8898 components: @@ -166985,6 +167451,48 @@ entities: linkedPorts: 31258: - Pressed: DoorBolt + - uid: 31374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-24.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 9763: + - Pressed: Toggle + 9764: + - Pressed: Toggle + - uid: 31383 + components: + - type: Transform + pos: 12.5,19.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 12674: + - Pressed: Toggle + 1850: + - Pressed: Toggle + 4384: + - Pressed: Toggle + 12675: + - Pressed: Toggle + - uid: 31385 + components: + - type: Transform + pos: 10.5,19.5 + parent: 12 + - type: DeviceLinkSource + linkedPorts: + 9407: + - Pressed: Toggle + 15681: + - Pressed: Toggle + 10993: + - Pressed: Toggle + 11326: + - Pressed: Toggle - proto: SignAnomaly entities: - uid: 32031 @@ -170194,6 +170702,11 @@ entities: - type: Transform pos: -44.5,-15.5 parent: 12 + - uid: 31106 + components: + - type: Transform + pos: -14.5,-68.5 + parent: 12 - proto: SpawnMobParrot entities: - uid: 6237 @@ -171016,6 +171529,16 @@ entities: rot: 3.141592653589793 rad pos: -36.5,62.5 parent: 12 + - uid: 11270 + components: + - type: Transform + pos: -35.5,45.5 + parent: 12 + - uid: 11521 + components: + - type: Transform + pos: -34.5,45.5 + parent: 12 - uid: 13050 components: - type: Transform @@ -172170,11 +172693,6 @@ entities: - type: Transform pos: 4.5,-16.5 parent: 12 - - uid: 4890 - components: - - type: Transform - pos: 45.5,5.5 - parent: 12 - uid: 7904 components: - type: Transform @@ -172628,6 +173146,38 @@ entities: - SurveillanceCameraCommand nameSet: True id: AI exterior + - uid: 31447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,38.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Command camera room + - uid: 31512 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: RD server room + - uid: 31519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-19.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: RD's room - uid: 31748 components: - type: Transform @@ -172677,6 +173227,27 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos lockers/engi hallway + - uid: 7716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,18.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG North + - uid: 9766 + components: + - type: Transform + pos: 56.5,66.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Northeast airlock exterior - uid: 9821 components: - type: Transform @@ -172751,17 +173322,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Break room - - uid: 26133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,1.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Containment entrance - uid: 26139 components: - type: Transform @@ -172945,6 +173505,60 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Southeast solars 2 + - uid: 31448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,47.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Northwest solars + - uid: 31471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,28.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG exterior + - uid: 31511 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Shuttle constuction dock + - uid: 31529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-51.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Southwest Solars 1 + - uid: 31530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-68.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Southwest Solars 2 - uid: 31882 components: - type: Transform @@ -172979,16 +173593,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Arrivals west - - uid: 2897 - components: - - type: Transform - pos: 35.5,22.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Hallway east - uid: 2901 components: - type: Transform @@ -173087,6 +173691,28 @@ entities: - SurveillanceCameraGeneral nameSet: True id: South evac A + - uid: 8442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-43.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Southeast dock + - uid: 8454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,70.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Nitrogen atmosphere room - uid: 9836 components: - type: Transform @@ -173108,6 +173734,17 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Evac north + - uid: 12400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,34.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Pool south - uid: 12672 components: - type: Transform @@ -173237,17 +173874,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Ship construction tool room - - uid: 25396 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,18.5 - parent: 12 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Disposals - uid: 26895 components: - type: Transform @@ -173313,6 +173939,47 @@ entities: - SurveillanceCameraGeneral nameSet: True id: South Evac B + - uid: 31047 + components: + - type: Transform + pos: 18.5,70.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Arrivals shuttle dock + - uid: 31394 + components: + - type: Transform + pos: 44.5,43.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Tools exterior + - uid: 31449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,28.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bee room + - uid: 31473 + components: + - type: Transform + pos: 21.5,26.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Observitory - uid: 31500 components: - type: Transform @@ -173334,39 +174001,38 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Crossroad - - uid: 31749 + - uid: 31557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 + pos: 41.5,-32.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Law office exterior - - uid: 31750 + id: Vending machine room + - uid: 31749 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-12.5 + pos: -17.5,-0.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Gorilla and penguin enclosures - - uid: 32105 + id: Law office exterior + - uid: 31750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,64.5 + rot: -1.5707963267948966 rad + pos: -16.5,-12.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Project room + id: Gorilla and penguin enclosures - proto: SurveillanceCameraMedical entities: - uid: 3961 @@ -173486,6 +174152,28 @@ entities: - SurveillanceCameraMedical nameSet: True id: Surgery + - uid: 31531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-53.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Genetics + - uid: 31556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-43.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Morgue and Surgery entrance - uid: 31761 components: - type: Transform @@ -173851,6 +174539,17 @@ entities: - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraService + - uid: 2154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,21.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Janitor closet - uid: 5161 components: - type: Transform @@ -173876,13 +174575,14 @@ entities: - uid: 12287 components: - type: Transform - pos: 46.5,16.5 + rot: 1.5707963267948966 rad + pos: 41.5,18.5 parent: 12 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraService nameSet: True - id: Janitor's closet + id: Disposals - uid: 12904 components: - type: Transform @@ -174173,6 +174873,17 @@ entities: - SurveillanceCameraSupply nameSet: True id: Cargo front + - uid: 12009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-14.5 + parent: 12 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo dock - uid: 12642 components: - type: Transform @@ -174934,6 +175645,12 @@ entities: - type: Transform pos: 52.5,46.5 parent: 12 + - uid: 10726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,52.5 + parent: 12 - uid: 10888 components: - type: Transform @@ -177196,6 +177913,12 @@ entities: - type: Transform pos: -35.5,-20.5 parent: 12 + - uid: 2271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,27.5 + parent: 12 - uid: 2373 components: - type: Transform @@ -177230,16 +177953,58 @@ entities: rot: 3.141592653589793 rad pos: 21.5,28.5 parent: 12 + - uid: 4151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,28.5 + parent: 12 - uid: 4154 components: - type: Transform pos: 13.5,-35.5 parent: 12 + - uid: 4260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,29.5 + parent: 12 + - uid: 4481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,27.5 + parent: 12 + - uid: 4570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,29.5 + parent: 12 - uid: 4891 components: - type: Transform pos: 17.5,49.5 parent: 12 + - uid: 5042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,30.5 + parent: 12 + - uid: 5709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,28.5 + parent: 12 + - uid: 5911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,30.5 + parent: 12 - uid: 6189 components: - type: Transform @@ -177325,54 +178090,6 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,29.5 parent: 12 - - uid: 12400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,27.5 - parent: 12 - - uid: 12401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,28.5 - parent: 12 - - uid: 12402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,29.5 - parent: 12 - - uid: 12403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,30.5 - parent: 12 - - uid: 12404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,27.5 - parent: 12 - - uid: 12405 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,28.5 - parent: 12 - - uid: 12406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,29.5 - parent: 12 - - uid: 12407 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,30.5 - parent: 12 - uid: 12657 components: - type: Transform @@ -178836,7 +179553,7 @@ entities: - uid: 31148 components: - type: Transform - pos: -29.544153,-55.516808 + pos: -29.534164,-55.470924 parent: 12 - proto: TrashBananaPeel entities: @@ -179632,6 +180349,11 @@ entities: - type: Transform pos: 35.5,22.5 parent: 12 + - uid: 13146 + components: + - type: Transform + pos: 47.5,1.5 + parent: 12 - uid: 14992 components: - type: Transform @@ -179652,6 +180374,11 @@ entities: - type: Transform pos: 15.5,54.5 parent: 12 + - uid: 31561 + components: + - type: Transform + pos: 46.5,-32.5 + parent: 12 - proto: VendingMachineClothing entities: - uid: 9091 @@ -180111,11 +180838,6 @@ entities: parent: 12 - proto: VendingMachineSovietSoda entities: - - uid: 4481 - components: - - type: Transform - pos: 47.5,1.5 - parent: 12 - uid: 14953 components: - type: Transform @@ -180312,8 +181034,7 @@ entities: - uid: 27 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,46.5 + pos: 52.5,67.5 parent: 12 - uid: 29 components: @@ -180636,24 +181357,12 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-9.5 parent: 12 - - uid: 159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 12 - uid: 160 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-9.5 parent: 12 - - uid: 161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 12 - uid: 163 components: - type: Transform @@ -181019,24 +181728,12 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,6.5 parent: 12 - - uid: 571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,6.5 - parent: 12 - uid: 572 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,6.5 parent: 12 - - uid: 573 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,6.5 - parent: 12 - uid: 575 components: - type: Transform @@ -181200,11 +181897,6 @@ entities: - type: Transform pos: 39.5,-10.5 parent: 12 - - uid: 703 - components: - - type: Transform - pos: -15.5,-69.5 - parent: 12 - uid: 709 components: - type: Transform @@ -181250,11 +181942,6 @@ entities: - type: Transform pos: 39.5,-8.5 parent: 12 - - uid: 726 - components: - - type: Transform - pos: -56.5,-20.5 - parent: 12 - uid: 736 components: - type: Transform @@ -181503,12 +182190,6 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,50.5 parent: 12 - - uid: 1166 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-17.5 - parent: 12 - uid: 1167 components: - type: Transform @@ -181604,23 +182285,11 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 12 - - uid: 2154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,6.5 - parent: 12 - uid: 2169 components: - type: Transform pos: 26.5,1.5 parent: 12 - - uid: 2171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,4.5 - parent: 12 - uid: 2173 components: - type: Transform @@ -181653,36 +182322,18 @@ entities: - type: Transform pos: 26.5,-9.5 parent: 12 - - uid: 2271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 12 - uid: 2273 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-1.5 parent: 12 - - uid: 2274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,2.5 - parent: 12 - uid: 2275 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-2.5 parent: 12 - - uid: 2276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,3.5 - parent: 12 - uid: 2328 components: - type: Transform @@ -182634,11 +183285,6 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,-47.5 parent: 12 - - uid: 5911 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 12 - uid: 5916 components: - type: Transform @@ -182738,11 +183384,6 @@ entities: rot: 1.5707963267948966 rad pos: -61.5,-16.5 parent: 12 - - uid: 6288 - components: - - type: Transform - pos: -17.5,-67.5 - parent: 12 - uid: 6327 components: - type: Transform @@ -182892,12 +183533,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,16.5 parent: 12 - - uid: 7338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,18.5 - parent: 12 - uid: 7363 components: - type: Transform @@ -183137,11 +183772,6 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-27.5 parent: 12 - - uid: 7584 - components: - - type: Transform - pos: -9.5,-3.5 - parent: 12 - uid: 7587 components: - type: Transform @@ -183243,11 +183873,6 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,-39.5 parent: 12 - - uid: 7620 - components: - - type: Transform - pos: -7.5,-1.5 - parent: 12 - uid: 7667 components: - type: Transform @@ -183350,11 +183975,6 @@ entities: rot: -1.5707963267948966 rad pos: 82.5,-36.5 parent: 12 - - uid: 7716 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 12 - uid: 7728 components: - type: Transform @@ -183439,22 +184059,11 @@ entities: - type: Transform pos: -9.5,-8.5 parent: 12 - - uid: 8442 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,2.5 - parent: 12 - uid: 8450 components: - type: Transform pos: -7.5,-13.5 parent: 12 - - uid: 8454 - components: - - type: Transform - pos: -7.5,-12.5 - parent: 12 - uid: 8455 components: - type: Transform @@ -183620,11 +184229,6 @@ entities: rot: 3.141592653589793 rad pos: 52.5,-44.5 parent: 12 - - uid: 9120 - components: - - type: Transform - pos: -9.5,-9.5 - parent: 12 - uid: 9121 components: - type: Transform @@ -183743,7 +184347,7 @@ entities: - uid: 9506 components: - type: Transform - pos: -51.5,-11.5 + pos: -47.5,0.5 parent: 12 - uid: 9508 components: @@ -183778,12 +184382,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,13.5 parent: 12 - - uid: 9640 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,23.5 - parent: 12 - uid: 9642 components: - type: Transform @@ -183824,12 +184422,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-6.5 parent: 12 - - uid: 9766 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 12 - uid: 9767 components: - type: Transform @@ -183865,8 +184457,7 @@ entities: - uid: 10040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,4.5 + pos: -12.5,-70.5 parent: 12 - uid: 10041 components: @@ -183874,11 +184465,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 12 - - uid: 10042 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 12 - uid: 10119 components: - type: Transform @@ -184346,18 +184932,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,26.5 parent: 12 - - uid: 10724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,26.5 - parent: 12 - - uid: 10726 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,24.5 - parent: 12 - uid: 10729 components: - type: Transform @@ -184399,24 +184973,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,22.5 parent: 12 - - uid: 10736 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,26.5 - parent: 12 - - uid: 10737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,25.5 - parent: 12 - - uid: 10738 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,24.5 - parent: 12 - uid: 10781 components: - type: Transform @@ -184484,18 +185040,6 @@ entities: - type: Transform pos: 38.5,5.5 parent: 12 - - uid: 10911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-14.5 - parent: 12 - - uid: 10939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,13.5 - parent: 12 - uid: 10951 components: - type: Transform @@ -184514,18 +185058,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,22.5 parent: 12 - - uid: 11000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,47.5 - parent: 12 - - uid: 11001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,47.5 - parent: 12 - uid: 11017 components: - type: Transform @@ -184734,18 +185266,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 12 - - uid: 11220 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,29.5 - parent: 12 - - uid: 11221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,29.5 - parent: 12 - uid: 11222 components: - type: Transform @@ -184794,12 +185314,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,23.5 parent: 12 - - uid: 11261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,24.5 - parent: 12 - uid: 11262 components: - type: Transform @@ -184842,12 +185356,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,22.5 parent: 12 - - uid: 11270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,22.5 - parent: 12 - uid: 11272 components: - type: Transform @@ -184955,11 +185463,6 @@ entities: - type: Transform pos: 50.5,7.5 parent: 12 - - uid: 11521 - components: - - type: Transform - pos: 42.5,15.5 - parent: 12 - uid: 11522 components: - type: Transform @@ -185115,11 +185618,6 @@ entities: - type: Transform pos: 20.5,38.5 parent: 12 - - uid: 11796 - components: - - type: Transform - pos: 11.5,30.5 - parent: 12 - uid: 11797 components: - type: Transform @@ -185135,11 +185633,6 @@ entities: - type: Transform pos: 11.5,33.5 parent: 12 - - uid: 11802 - components: - - type: Transform - pos: 15.5,34.5 - parent: 12 - uid: 11803 components: - type: Transform @@ -185248,11 +185741,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,13.5 parent: 12 - - uid: 12009 - components: - - type: Transform - pos: 42.5,14.5 - parent: 12 - uid: 12011 components: - type: Transform @@ -185262,7 +185750,7 @@ entities: - uid: 12100 components: - type: Transform - pos: 43.5,13.5 + pos: -47.5,3.5 parent: 12 - uid: 12217 components: @@ -185384,6 +185872,11 @@ entities: - type: Transform pos: -35.5,-51.5 parent: 12 + - uid: 13161 + components: + - type: Transform + pos: -17.5,-69.5 + parent: 12 - uid: 13197 components: - type: Transform @@ -185446,24 +185939,6 @@ entities: rot: -1.5707963267948966 rad pos: 53.5,65.5 parent: 12 - - uid: 14179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,66.5 - parent: 12 - - uid: 14180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,67.5 - parent: 12 - - uid: 14182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,67.5 - parent: 12 - uid: 14187 components: - type: Transform @@ -185942,30 +186417,12 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,35.5 parent: 12 - - uid: 15549 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,29.5 - parent: 12 - - uid: 15550 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,30.5 - parent: 12 - uid: 15551 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,31.5 parent: 12 - - uid: 15552 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,29.5 - parent: 12 - uid: 15554 components: - type: Transform @@ -186055,11 +186512,6 @@ entities: - type: Transform pos: -8.5,25.5 parent: 12 - - uid: 15703 - components: - - type: Transform - pos: -21.5,30.5 - parent: 12 - uid: 15708 components: - type: Transform @@ -186211,24 +186663,6 @@ entities: - type: Transform pos: -30.5,12.5 parent: 12 - - uid: 16797 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-11.5 - parent: 12 - - uid: 16799 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,47.5 - parent: 12 - - uid: 16800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,46.5 - parent: 12 - uid: 17199 components: - type: Transform @@ -186406,12 +186840,6 @@ entities: - type: Transform pos: -27.5,11.5 parent: 12 - - uid: 17541 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,66.5 - parent: 12 - uid: 17755 components: - type: Transform @@ -186661,28 +187089,12 @@ entities: - type: Transform pos: -52.5,76.5 parent: 12 - - uid: 17972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,6.5 - parent: 12 - uid: 18558 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-43.5 parent: 12 - - uid: 18569 - components: - - type: Transform - pos: 59.5,65.5 - parent: 12 - - uid: 18572 - components: - - type: Transform - pos: 59.5,60.5 - parent: 12 - uid: 18654 components: - type: Transform @@ -187033,12 +187445,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,3.5 parent: 12 - - uid: 19199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 12 - uid: 19206 components: - type: Transform @@ -187592,12 +187998,6 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,65.5 parent: 12 - - uid: 19847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-12.5 - parent: 12 - uid: 19862 components: - type: Transform @@ -187798,12 +188198,6 @@ entities: - type: Transform pos: -30.5,62.5 parent: 12 - - uid: 22182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 12 - uid: 22183 components: - type: Transform @@ -187816,24 +188210,12 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-2.5 parent: 12 - - uid: 22185 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 12 - uid: 22186 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-10.5 parent: 12 - - uid: 22187 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-11.5 - parent: 12 - uid: 22190 components: - type: Transform @@ -187880,11 +188262,6 @@ entities: - type: Transform pos: 35.5,-24.5 parent: 12 - - uid: 22290 - components: - - type: Transform - pos: 42.5,13.5 - parent: 12 - uid: 22321 components: - type: Transform @@ -188008,12 +188385,6 @@ entities: - type: Transform pos: 34.5,-39.5 parent: 12 - - uid: 24237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,66.5 - parent: 12 - uid: 24259 components: - type: Transform @@ -188368,6 +188739,12 @@ entities: rot: 3.141592653589793 rad pos: 63.5,-27.5 parent: 12 + - uid: 26152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-12.5 + parent: 12 - uid: 26167 components: - type: Transform @@ -188473,12 +188850,6 @@ entities: - type: Transform pos: 56.5,3.5 parent: 12 - - uid: 26492 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,13.5 - parent: 12 - uid: 26510 components: - type: Transform @@ -188527,16 +188898,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-57.5 parent: 12 - - uid: 26909 - components: - - type: Transform - pos: -17.5,-68.5 - parent: 12 - - uid: 26910 - components: - - type: Transform - pos: -17.5,-69.5 - parent: 12 - uid: 26912 components: - type: Transform @@ -188549,12 +188910,6 @@ entities: rot: 3.141592653589793 rad pos: -13.5,77.5 parent: 12 - - uid: 26949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-15.5 - parent: 12 - uid: 26956 components: - type: Transform @@ -188579,29 +188934,16 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,-18.5 parent: 12 - - uid: 27043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,-13.5 - parent: 12 - uid: 27050 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-13.5 parent: 12 - - uid: 27116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-11.5 - parent: 12 - uid: 27117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-11.5 + pos: -17.5,-67.5 parent: 12 - uid: 27147 components: @@ -188639,18 +188981,6 @@ entities: rot: 3.141592653589793 rad pos: 41.5,1.5 parent: 12 - - uid: 27334 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-17.5 - parent: 12 - - uid: 27335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-17.5 - parent: 12 - uid: 27410 components: - type: Transform @@ -188701,31 +189031,11 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,61.5 parent: 12 - - uid: 27952 - components: - - type: Transform - pos: 5.5,-9.5 - parent: 12 - uid: 27978 components: - type: Transform pos: -22.5,-68.5 parent: 12 - - uid: 27981 - components: - - type: Transform - pos: 5.5,-12.5 - parent: 12 - - uid: 27982 - components: - - type: Transform - pos: 5.5,-11.5 - parent: 12 - - uid: 27983 - components: - - type: Transform - pos: 5.5,-10.5 - parent: 12 - uid: 27985 components: - type: Transform @@ -189048,16 +189358,6 @@ entities: - type: Transform pos: -27.5,-60.5 parent: 12 - - uid: 30540 - components: - - type: Transform - pos: -15.5,-68.5 - parent: 12 - - uid: 30542 - components: - - type: Transform - pos: -15.5,-66.5 - parent: 12 - uid: 30554 components: - type: Transform @@ -189099,20 +189399,47 @@ entities: rot: 3.141592653589793 rad pos: -53.5,-49.5 parent: 12 - - uid: 31171 + - uid: 31083 components: - type: Transform - pos: -9.5,-65.5 + rot: 1.5707963267948966 rad + pos: -16.5,-71.5 parent: 12 - - uid: 31172 + - uid: 31085 components: - type: Transform - pos: -9.5,-66.5 + rot: 1.5707963267948966 rad + pos: -14.5,-72.5 parent: 12 - - uid: 31174 + - uid: 31097 components: - type: Transform - pos: -8.5,-67.5 + rot: 1.5707963267948966 rad + pos: -12.5,-72.5 + parent: 12 + - uid: 31100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-70.5 + parent: 12 + - uid: 31101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-72.5 + parent: 12 + - uid: 31102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-72.5 + parent: 12 + - uid: 31104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-69.5 parent: 12 - uid: 31187 components: @@ -189151,12 +189478,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-69.5 parent: 12 - - uid: 31238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-68.5 - parent: 12 - uid: 31376 components: - type: Transform @@ -189393,6 +189714,11 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,7.5 parent: 12 + - uid: 10042 + components: + - type: Transform + pos: -12.5,-71.5 + parent: 12 - uid: 10279 components: - type: Transform @@ -189646,18 +189972,160 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-4.5 parent: 12 + - uid: 13148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 12 + - uid: 13149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 12 + - uid: 13150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 12 + - uid: 13151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 12 + - uid: 13153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-20.5 + parent: 12 + - uid: 13154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-17.5 + parent: 12 + - uid: 13155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 12 + - uid: 13156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 12 + - uid: 13157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 12 + - uid: 13158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 12 + - uid: 13159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 12 + - uid: 13160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 12 + - uid: 13162 + components: + - type: Transform + pos: 27.5,18.5 + parent: 12 + - uid: 13163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 12 + - uid: 13164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 12 - uid: 13859 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,71.5 parent: 12 + - uid: 14179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 12 + - uid: 14180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 12 + - uid: 14182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 12 - uid: 14625 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-31.5 parent: 12 + - uid: 15549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 12 + - uid: 15550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-11.5 + parent: 12 + - uid: 15552 + components: + - type: Transform + pos: 17.5,23.5 + parent: 12 + - uid: 15703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 12 + - uid: 16797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 12 + - uid: 16799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 12 - uid: 17305 components: - type: Transform @@ -189668,12 +190136,43 @@ entities: - type: Transform pos: -47.5,76.5 parent: 12 + - uid: 18572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-14.5 + parent: 12 + - uid: 18585 + components: + - type: Transform + pos: 25.5,13.5 + parent: 12 + - uid: 19199 + components: + - type: Transform + pos: 9.5,29.5 + parent: 12 - uid: 19295 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,-51.5 parent: 12 + - uid: 19355 + components: + - type: Transform + pos: 10.5,29.5 + parent: 12 + - uid: 19357 + components: + - type: Transform + pos: 19.5,24.5 + parent: 12 + - uid: 19358 + components: + - type: Transform + pos: 20.5,22.5 + parent: 12 - uid: 19455 components: - type: Transform @@ -189685,6 +190184,16 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,64.5 parent: 12 + - uid: 19847 + components: + - type: Transform + pos: 11.5,30.5 + parent: 12 + - uid: 19871 + components: + - type: Transform + pos: 15.5,34.5 + parent: 12 - uid: 22034 components: - type: Transform @@ -189701,6 +190210,16 @@ entities: - type: Transform pos: -50.5,-20.5 parent: 12 + - uid: 22185 + components: + - type: Transform + pos: 53.5,67.5 + parent: 12 + - uid: 22187 + components: + - type: Transform + pos: 51.5,67.5 + parent: 12 - uid: 22277 components: - type: Transform @@ -189755,6 +190274,12 @@ entities: - type: Transform pos: -57.5,-24.5 parent: 12 + - uid: 24237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-11.5 + parent: 12 - uid: 24254 components: - type: Transform @@ -189765,6 +190290,17 @@ entities: - type: Transform pos: -26.5,73.5 parent: 12 + - uid: 25555 + components: + - type: Transform + pos: 51.5,66.5 + parent: 12 + - uid: 25558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 12 - uid: 25596 components: - type: Transform @@ -189792,6 +190328,22 @@ entities: - type: Transform pos: -2.5,-17.5 parent: 12 + - uid: 26133 + components: + - type: Transform + pos: 59.5,65.5 + parent: 12 + - uid: 26149 + components: + - type: Transform + pos: 59.5,60.5 + parent: 12 + - uid: 26150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 12 - uid: 26241 components: - type: Transform @@ -189814,6 +190366,12 @@ entities: - type: Transform pos: -5.5,-17.5 parent: 12 + - uid: 26492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 12 - uid: 26530 components: - type: Transform @@ -189860,12 +190418,24 @@ entities: - type: Transform pos: 5.5,-13.5 parent: 12 + - uid: 26836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 12 - uid: 26907 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-57.5 parent: 12 + - uid: 26909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 12 - uid: 26911 components: - type: Transform @@ -189878,6 +190448,11 @@ entities: rot: 1.5707963267948966 rad pos: -61.5,-17.5 parent: 12 + - uid: 26949 + components: + - type: Transform + pos: 47.5,66.5 + parent: 12 - uid: 26978 components: - type: Transform @@ -189896,6 +190471,11 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-3.5 parent: 12 + - uid: 27043 + components: + - type: Transform + pos: 24.5,13.5 + parent: 12 - uid: 27044 components: - type: Transform @@ -189920,6 +190500,11 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-42.5 parent: 12 + - uid: 27116 + components: + - type: Transform + pos: -17.5,-68.5 + parent: 12 - uid: 27119 components: - type: Transform @@ -189943,6 +190528,12 @@ entities: rot: 3.141592653589793 rad pos: 39.5,5.5 parent: 12 + - uid: 27240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 12 - uid: 27243 components: - type: Transform @@ -189967,6 +190558,18 @@ entities: rot: 3.141592653589793 rad pos: 41.5,4.5 parent: 12 + - uid: 27334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-13.5 + parent: 12 + - uid: 27335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-11.5 + parent: 12 - uid: 27336 components: - type: Transform @@ -189984,6 +190587,12 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,15.5 parent: 12 + - uid: 27952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-11.5 + parent: 12 - uid: 27973 components: - type: Transform @@ -190001,12 +190610,36 @@ entities: rot: 3.141592653589793 rad pos: 47.5,7.5 parent: 12 + - uid: 27981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-17.5 + parent: 12 + - uid: 27982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-17.5 + parent: 12 + - uid: 27983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 12 - uid: 28048 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,-4.5 parent: 12 + - uid: 28051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 12 - uid: 28052 components: - type: Transform @@ -190051,7 +190684,8 @@ entities: - uid: 28069 components: - type: Transform - pos: -15.5,-70.5 + rot: 1.5707963267948966 rad + pos: 5.5,-11.5 parent: 12 - uid: 28070 components: @@ -190091,6 +190725,12 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,3.5 parent: 12 + - uid: 28303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 12 - uid: 28310 components: - type: Transform @@ -190300,11 +190940,6 @@ entities: - type: Transform pos: -35.5,-60.5 parent: 12 - - uid: 30545 - components: - - type: Transform - pos: -15.5,-65.5 - parent: 12 - uid: 30548 components: - type: Transform @@ -190315,21 +190950,22 @@ entities: - type: Transform pos: -39.5,-57.5 parent: 12 - - uid: 30700 + - uid: 30880 components: - type: Transform - pos: -10.5,-65.5 + pos: 6.5,-58.5 parent: 12 - - uid: 30880 + - uid: 31082 components: - type: Transform - pos: 6.5,-58.5 + rot: 1.5707963267948966 rad + pos: -16.5,-72.5 parent: 12 - - uid: 31173 + - uid: 31084 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-67.5 + rot: 1.5707963267948966 rad + pos: -9.5,-72.5 parent: 12 - uid: 31183 components: @@ -190706,11 +191342,6 @@ entities: - type: Transform pos: -6.5,-24.5 parent: 12 - - uid: 563 - components: - - type: Transform - pos: -7.5,-24.5 - parent: 12 - uid: 589 components: - type: Transform @@ -192027,11 +192658,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-29.5 parent: 12 - - uid: 5385 - components: - - type: Transform - pos: -9.5,-24.5 - parent: 12 - uid: 5441 components: - type: Transform @@ -192751,6 +193377,12 @@ entities: - type: Transform pos: 41.5,-40.5 parent: 12 + - uid: 9120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-67.5 + parent: 12 - uid: 9133 components: - type: Transform @@ -192992,12 +193624,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,21.5 parent: 12 - - uid: 10620 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,14.5 - parent: 12 - uid: 10665 components: - type: Transform @@ -193706,11 +194332,6 @@ entities: - type: Transform pos: 3.5,30.5 parent: 12 - - uid: 11842 - components: - - type: Transform - pos: 3.5,31.5 - parent: 12 - uid: 11843 components: - type: Transform @@ -194133,6 +194754,18 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-52.5 parent: 12 + - uid: 13147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,46.5 + parent: 12 + - uid: 13152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-67.5 + parent: 12 - uid: 13487 components: - type: Transform @@ -195337,6 +195970,12 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-2.5 parent: 12 + - uid: 16800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,26.5 + parent: 12 - uid: 16872 components: - type: Transform @@ -195636,6 +196275,12 @@ entities: - type: Transform pos: -13.5,-8.5 parent: 12 + - uid: 17541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,24.5 + parent: 12 - uid: 17542 components: - type: Transform @@ -195666,6 +196311,12 @@ entities: - type: Transform pos: -55.5,-31.5 parent: 12 + - uid: 17972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,26.5 + parent: 12 - uid: 17973 components: - type: Transform @@ -195686,6 +196337,12 @@ entities: - type: Transform pos: -4.5,-54.5 parent: 12 + - uid: 18560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,25.5 + parent: 12 - uid: 18567 components: - type: Transform @@ -195696,6 +196353,12 @@ entities: - type: Transform pos: -17.5,-8.5 parent: 12 + - uid: 18569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,24.5 + parent: 12 - uid: 18570 components: - type: Transform @@ -195751,11 +196414,6 @@ entities: - type: Transform pos: -12.5,-18.5 parent: 12 - - uid: 18585 - components: - - type: Transform - pos: -11.5,-17.5 - parent: 12 - uid: 18586 components: - type: Transform @@ -195925,6 +196583,12 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,43.5 parent: 12 + - uid: 19034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,47.5 + parent: 12 - uid: 19061 components: - type: Transform @@ -196693,6 +197357,12 @@ entities: - type: Transform pos: -11.5,47.5 parent: 12 + - uid: 21479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,14.5 + parent: 12 - uid: 21508 components: - type: Transform @@ -196883,6 +197553,12 @@ entities: - type: Transform pos: -0.5,-60.5 parent: 12 + - uid: 22290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,29.5 + parent: 12 - uid: 22304 components: - type: Transform @@ -197035,8 +197711,8 @@ entities: - uid: 23681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-21.5 + rot: 1.5707963267948966 rad + pos: -14.5,30.5 parent: 12 - uid: 23682 components: @@ -197052,7 +197728,8 @@ entities: - uid: 23779 components: - type: Transform - pos: -1.5,12.5 + rot: 1.5707963267948966 rad + pos: -13.5,29.5 parent: 12 - uid: 23797 components: @@ -197088,7 +197765,8 @@ entities: - uid: 23897 components: - type: Transform - pos: -1.5,13.5 + rot: 1.5707963267948966 rad + pos: -21.5,30.5 parent: 12 - uid: 23946 components: @@ -197201,6 +197879,12 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-47.5 parent: 12 + - uid: 24419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,47.5 + parent: 12 - uid: 24428 components: - type: Transform @@ -197354,6 +198038,12 @@ entities: - type: Transform pos: -4.5,70.5 parent: 12 + - uid: 25396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,46.5 + parent: 12 - uid: 25402 components: - type: Transform @@ -197730,6 +198420,12 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-16.5 parent: 12 + - uid: 26910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,13.5 + parent: 12 - uid: 26926 components: - type: Transform @@ -198188,6 +198884,17 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,60.5 parent: 12 + - uid: 29182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-67.5 + parent: 12 + - uid: 29185 + components: + - type: Transform + pos: -9.5,-66.5 + parent: 12 - uid: 29208 components: - type: Transform @@ -198199,6 +198906,11 @@ entities: - type: Transform pos: -52.5,63.5 parent: 12 + - uid: 29307 + components: + - type: Transform + pos: -9.5,-65.5 + parent: 12 - uid: 29308 components: - type: Transform @@ -198211,6 +198923,17 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,56.5 parent: 12 + - uid: 29323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-66.5 + parent: 12 + - uid: 29340 + components: + - type: Transform + pos: -8.5,-67.5 + parent: 12 - uid: 29351 components: - type: Transform @@ -198555,6 +199278,12 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,34.5 parent: 12 + - uid: 11936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-67.5 + parent: 12 - uid: 12018 components: - type: Transform @@ -198763,6 +199492,12 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,32.5 parent: 12 + - uid: 19051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,47.5 + parent: 12 - uid: 19068 components: - type: Transform @@ -198880,6 +199615,12 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,63.5 parent: 12 + - uid: 19844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,15.5 + parent: 12 - uid: 20776 components: - type: Transform @@ -198891,6 +199632,12 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,64.5 parent: 12 + - uid: 21922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,13.5 + parent: 12 - uid: 22145 components: - type: Transform @@ -199520,6 +200267,11 @@ entities: rot: 3.141592653589793 rad pos: 51.5,9.5 parent: 12 + - uid: 28933 + components: + - type: Transform + pos: -13.5,-67.5 + parent: 12 - uid: 28942 components: - type: Transform @@ -199562,6 +200314,16 @@ entities: - type: Transform pos: -52.5,57.5 parent: 12 + - uid: 29183 + components: + - type: Transform + pos: -9.5,-67.5 + parent: 12 + - uid: 29184 + components: + - type: Transform + pos: -10.5,-65.5 + parent: 12 - uid: 29190 components: - type: Transform @@ -199572,6 +200334,11 @@ entities: - type: Transform pos: -52.5,59.5 parent: 12 + - uid: 29339 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 12 - uid: 29344 components: - type: Transform @@ -199650,6 +200417,16 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,54.5 parent: 12 + - uid: 30017 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 12 + - uid: 30018 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 12 - uid: 30200 components: - type: Transform @@ -199661,6 +200438,32 @@ entities: - type: Transform pos: 29.5,20.5 parent: 12 + - uid: 30540 + components: + - type: Transform + pos: -0.5,14.5 + parent: 12 + - uid: 30542 + components: + - type: Transform + pos: 3.5,31.5 + parent: 12 + - uid: 30543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-17.5 + parent: 12 + - uid: 30545 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 12 + - uid: 30700 + components: + - type: Transform + pos: -1.5,12.5 + parent: 12 - uid: 30781 components: - type: Transform @@ -199671,6 +200474,11 @@ entities: - type: Transform pos: -27.5,-58.5 parent: 12 + - uid: 30970 + components: + - type: Transform + pos: -1.5,13.5 + parent: 12 - uid: 31044 components: - type: Transform @@ -199681,6 +200489,12 @@ entities: - type: Transform pos: -35.5,-57.5 parent: 12 + - uid: 31096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-66.5 + parent: 12 - uid: 31175 components: - type: Transform @@ -200862,6 +201676,16 @@ entities: rot: 3.141592653589793 rad pos: -34.5,-57.5 parent: 12 + - uid: 30976 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 12 + - uid: 30977 + components: + - type: Transform + pos: 47.5,-12.5 + parent: 12 - proto: WindoorBarKitchenLocked entities: - uid: 11203 @@ -200886,16 +201710,6 @@ entities: parent: 12 - proto: WindoorSecure entities: - - uid: 12234 - components: - - type: Transform - pos: 48.5,-12.5 - parent: 12 - - uid: 12237 - components: - - type: Transform - pos: 47.5,-12.5 - parent: 12 - uid: 14181 components: - type: Transform @@ -202348,6 +203162,34 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,22.5 parent: 12 + - uid: 30971 + components: + - type: Transform + pos: 49.5,-12.5 + parent: 12 + - uid: 30972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-12.5 + parent: 12 + - uid: 30973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-11.5 + parent: 12 + - uid: 30974 + components: + - type: Transform + pos: 46.5,-12.5 + parent: 12 + - uid: 30975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-11.5 + parent: 12 - proto: WindowFrostedDirectional entities: - uid: 4236 @@ -202719,11 +203561,6 @@ entities: rot: 3.141592653589793 rad pos: 52.5,-23.5 parent: 12 - - uid: 5411 - components: - - type: Transform - pos: 49.5,-12.5 - parent: 12 - uid: 5572 components: - type: Transform @@ -202825,11 +203662,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-44.5 parent: 12 - - uid: 12238 - components: - - type: Transform - pos: 46.5,-12.5 - parent: 12 - uid: 12326 components: - type: Transform @@ -203213,24 +204045,12 @@ entities: rot: 3.141592653589793 rad pos: -37.5,65.5 parent: 12 - - uid: 26836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-11.5 - parent: 12 - uid: 28932 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,53.5 parent: 12 - - uid: 28933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-11.5 - parent: 12 - uid: 29220 components: - type: Transform @@ -203319,12 +204139,6 @@ entities: rot: 3.141592653589793 rad pos: -57.5,27.5 parent: 12 - - uid: 31911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-12.5 - parent: 12 - proto: Wirecutter entities: - uid: 8737 From 06480e79c067001bba34af465799d749b1e56a8d Mon Sep 17 00:00:00 2001 From: lastPechkin Date: Wed, 13 Nov 2024 15:29:30 +0300 Subject: [PATCH 065/171] [Maps] Corvax CentCom fix (#2767) --- Resources/Maps/corvax_centcomm.yml | 1140 ++++++++++++++-------------- 1 file changed, 577 insertions(+), 563 deletions(-) diff --git a/Resources/Maps/corvax_centcomm.yml b/Resources/Maps/corvax_centcomm.yml index dd5cc38c945..0f6d9f2d64a 100644 --- a/Resources/Maps/corvax_centcomm.yml +++ b/Resources/Maps/corvax_centcomm.yml @@ -18,6 +18,7 @@ tilemap: 37: FloorFreezer 16: FloorGlass 80: FloorGrayConcrete + 67: FloorGrayConcreteMono 53: FloorGrayConcreteSmooth 61: FloorGreenCircuit 65: FloorKitchen @@ -119,7 +120,7 @@ entities: version: 6 1,2: ind: 1,2 - tiles: FAAAAAAAFAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAFAAAAAAAIgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEQAAAAAAkwAAAAAAQQAAAAAAFQAAAAAAFQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAIgAAAAAAkwAAAAAAQQAAAAAAFQAAAAAAFQAAAAAAIgAAAAAAIgAAAAAAkwAAAAAAIgAAAAAAIgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAIgAAAAAAkwAAAAAAkwAAAAAAJQAAAAAAkwAAAAAAIgAAAAAAIgAAAAAAkwAAAAAAkwAAAAAAIgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAIgAAAAAAFAAAAAAAIgAAAAAAkwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAFAAAAAAAFAAAAAAAIgAAAAAAkwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAkwAAAAAAIgAAAAAAFAAAAAAAIgAAAAAAkwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAFAAAAAAAFAAAAAAAIgAAAAAAkwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAkwAAAAAAIgAAAAAAFAAAAAAAIgAAAAAAkwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAkwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAkwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAkwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEQAAAAAAkwAAAAAAEQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAIgAAAAAAkwAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAAAEQAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAFwAAAAAAkwAAAAAAFwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAkwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIgAAAAAALAAAAAAALAAAAAAAIgAAAAAAkwAAAAAAEwAAAAAAGQAAAAAAEwAAAAAAkwAAAAAAEwAAAAAAGQAAAAAAEwAAAAAADgAAAAAAAgAAAAAACgAAAAAACgAAAAAAIgAAAAAALAAAAAAALAAAAAAAIgAAAAAAkwAAAAAAEwAAAAAAGQAAAAAAEwAAAAAAkwAAAAAAEwAAAAAAGQAAAAAAEwAAAAAADgAAAAAAAgAAAAAACgAAAAAACgAAAAAAIgAAAAAALAAAAAAALAAAAAAAIgAAAAAAkwAAAAAAEwAAAAAAGQAAAAAAEwAAAAAAkwAAAAAAEwAAAAAAGQAAAAAAEwAAAAAADgAAAAAAAgAAAAAACgAAAAAACgAAAAAA + tiles: FAAAAAAAFAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAFAAAAAAAIgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEQAAAAAAkwAAAAAAQQAAAAAAFQAAAAAAFQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAIgAAAAAAkwAAAAAAQQAAAAAAFQAAAAAAFQAAAAAAIgAAAAAAIgAAAAAAkwAAAAAAIgAAAAAAIgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAIgAAAAAAkwAAAAAAkwAAAAAAJQAAAAAAkwAAAAAAIgAAAAAAIgAAAAAAkwAAAAAAkwAAAAAAIgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAIgAAAAAAFAAAAAAAIgAAAAAAkwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAFAAAAAAAFAAAAAAAIgAAAAAAkwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAkwAAAAAAIgAAAAAAFAAAAAAAIgAAAAAAkwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAFAAAAAAAFAAAAAAAIgAAAAAAkwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAkwAAAAAAIgAAAAAAFAAAAAAAIgAAAAAAkwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAkwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAkwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAkwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEQAAAAAAkwAAAAAAEQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAkwAAAAAAUAAAAAAAUAAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAkwAAAAAAQwAAAAAAQwAAAAAAEwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAkwAAAAAAUAAAAAAAUAAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAAAEQAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAFwAAAAAAkwAAAAAAFwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAkwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIgAAAAAALAAAAAAALAAAAAAAIgAAAAAAkwAAAAAAEwAAAAAAGQAAAAAAEwAAAAAAkwAAAAAAEwAAAAAAGQAAAAAAEwAAAAAADgAAAAAAAgAAAAAACgAAAAAACgAAAAAAIgAAAAAALAAAAAAALAAAAAAAIgAAAAAAkwAAAAAAEwAAAAAAGQAAAAAAEwAAAAAAkwAAAAAAEwAAAAAAGQAAAAAAEwAAAAAADgAAAAAAAgAAAAAACgAAAAAACgAAAAAAIgAAAAAALAAAAAAALAAAAAAAIgAAAAAAkwAAAAAAEwAAAAAAGQAAAAAAEwAAAAAAkwAAAAAAEwAAAAAAGQAAAAAAEwAAAAAADgAAAAAAAgAAAAAACgAAAAAACgAAAAAA version: 6 1,1: ind: 1,1 @@ -268,6 +269,11 @@ entities: decals: 4639: 22,58 4640: 21,54 + - node: + color: '#8C347F96' + id: BoxGreyscale + decals: + 5651: 22,42 - node: color: '#DE3A3AFF' id: BoxGreyscale @@ -291,10 +297,10 @@ entities: 3904: 38,52 4607: 19,57 - node: - color: '#FC66009B' + color: '#FA750096' id: BrickCornerOverlayNE decals: - 4398: 21,42 + 5642: 20,42 - node: color: '#52B4E99E' id: BrickCornerOverlayNW @@ -334,10 +340,10 @@ entities: 3902: 38,50 4604: 19,54 - node: - color: '#FC66009B' + color: '#FA750096' id: BrickCornerOverlaySE decals: - 4404: 21,40 + 5644: 20,40 - node: color: '#0E885BCD' id: BrickCornerOverlaySW @@ -398,10 +404,10 @@ entities: 4605: 19,55 4606: 19,56 - node: - color: '#FC66009B' + color: '#FA750096' id: BrickLineOverlayE decals: - 4405: 21,41 + 5643: 20,41 - node: color: '#0E885BCD' id: BrickLineOverlayN @@ -461,7 +467,6 @@ entities: decals: 4395: 18,42 4396: 19,42 - 4397: 20,42 - node: color: '#0E885BCD' id: BrickLineOverlayS @@ -511,7 +516,6 @@ entities: color: '#FC66009B' id: BrickLineOverlayS decals: - 4406: 20,40 4407: 19,40 4408: 18,40 4409: 17,40 @@ -601,7 +605,6 @@ entities: 2386: 72,36 4625: 30,47 5059: 50,12 - 5086: 23,42 5334: 44,25 - node: color: '#B3B3B3FF' @@ -642,7 +645,6 @@ entities: 410: 72,18 4623: 30,45 5067: 50,18 - 5088: 23,40 5229: 49,39 - node: zIndex: 100 @@ -974,7 +976,6 @@ entities: 5055: 47,11 5056: 48,11 5057: 49,11 - 5093: 24,42 5094: 26,42 5095: 28,42 5096: 29,42 @@ -1100,7 +1101,6 @@ entities: 5082: 47,19 5083: 48,19 5084: 49,19 - 5089: 24,40 5090: 28,40 5091: 29,40 5092: 30,40 @@ -1203,7 +1203,6 @@ entities: 5063: 51,15 5064: 51,16 5065: 51,17 - 5087: 23,41 5197: 50,38 5198: 50,36 5199: 50,37 @@ -1357,12 +1356,12 @@ entities: id: BrickTileSteelEndW decals: 286: 64,21 - 5101: 24,41 5102: 32,41 5124: 45,41 5125: 40,41 5222: 50,41 5249: 54,41 + 5645: 25,41 - node: zIndex: 100 color: '#FFFFFFFF' @@ -1565,7 +1564,6 @@ entities: 294: 67,21 295: 68,21 3677: 34,14 - 5076: 25,41 5077: 26,41 5078: 27,41 5079: 28,41 @@ -1628,7 +1626,6 @@ entities: 290: 67,21 291: 68,21 3675: 34,16 - 5070: 25,41 5071: 26,41 5074: 27,41 5075: 28,41 @@ -2615,6 +2612,35 @@ entities: 827: 54,11 4461: 38,13 4462: 38,17 + - node: + color: '#52B4E9FF' + id: DeliveryGreyscale + decals: + 5654: 13,56 + - node: + color: '#8C347F96' + id: DeliveryGreyscale + decals: + 5650: 23,42 + - node: + color: '#BC863FFF' + id: DeliveryGreyscale + decals: + 5660: 15,57 + 5661: 15,56 + 5662: 15,55 + 5663: 15,54 + - node: + color: '#DE3A3AFF' + id: DeliveryGreyscale + decals: + 5652: 13,54 + 5653: 13,55 + - node: + color: '#FF9821FF' + id: DeliveryGreyscale + decals: + 5655: 13,57 - node: zIndex: 1 color: '#2E6D38FF' @@ -3023,6 +3049,8 @@ entities: 333: 55,8 334: 56,8 335: 57,8 + 5646: 22,41 + 5647: 23,41 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineS @@ -3033,6 +3061,8 @@ entities: 326: 55,8 327: 56,8 328: 57,8 + 5648: 23,41 + 5649: 22,41 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineW @@ -5067,6 +5097,7 @@ entities: decals: 5623: 77.387985,41.57695 - node: + cleanable: True color: '#6E4A1371' id: splatter decals: @@ -5074,6 +5105,7 @@ entities: 1641: 69.07086,47.508766 1642: 68.62808,47.786545 - node: + cleanable: True color: '#CE8A4880' id: splatter decals: @@ -5081,6 +5113,7 @@ entities: 2965: 36.18409,53.73192 2966: 36.84825,53.45848 - node: + cleanable: True color: '#CE8A48BF' id: splatter decals: @@ -5206,7 +5239,8 @@ entities: 2: 1911 4,10: 2: 16371 - 0: 12 + 4: 4 + 0: 8 4,11: 2: 65535 2,6: @@ -5263,8 +5297,9 @@ entities: 5,9: 2: 4095 5,10: - 2: 2489 - 0: 514 + 1: 2049 + 2: 440 + 4: 514 5,7: 2: 63350 6,8: @@ -5335,7 +5370,8 @@ entities: 11,13: 2: 15 11,11: - 2: 65535 + 0: 3 + 2: 65532 12,12: 2: 56796 12,13: @@ -5470,7 +5506,8 @@ entities: 15,8: 2: 65488 15,9: - 2: 3533 + 2: 2509 + 0: 1024 15,10: 2: 819 15,7: @@ -5956,7 +5993,7 @@ entities: - uid: 66 components: - type: Transform - parent: 65 + parent: 5559 - type: Physics canCollide: False - type: InsideEntityStorage @@ -6947,6 +6984,11 @@ entities: rot: 3.141592653589793 rad pos: 63.5,49.5 parent: 2 + - uid: 203 + components: + - type: Transform + pos: 24.5,53.5 + parent: 2 - proto: AirlockChemistry entities: - uid: 160 @@ -6971,16 +7013,6 @@ entities: - type: Transform pos: 67.5,14.5 parent: 2 -- proto: AirlockCommand - entities: - - uid: 163 - components: - - type: Transform - pos: 24.5,53.5 - parent: 2 - - type: AccessReader - access: - - - CentralCommand - proto: AirlockEngineeringGlassLocked entities: - uid: 164 @@ -7155,6 +7187,14 @@ entities: - type: GridFill addComponents: [] path: /Maps/Shuttles/ert_corvaxcentcomm.yml +- proto: AirlockJanitorLocked + entities: + - uid: 7135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,41.5 + parent: 2 - proto: AirlockMaintLocked entities: - uid: 193 @@ -7222,9 +7262,21 @@ entities: - type: Transform pos: 20.5,35.5 parent: 2 -- proto: AirlockSecurity +- proto: AirlockSecurityGlass entities: - - uid: 203 + - uid: 209 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: 27.5,43.5 + parent: 2 +- proto: AirlockSecurityLocked + entities: + - uid: 163 components: - type: Transform pos: 27.5,49.5 @@ -7232,44 +7284,32 @@ entities: - uid: 204 components: - type: Transform - pos: 25.5,49.5 + pos: 32.5,49.5 parent: 2 - uid: 205 components: - type: Transform - pos: 32.5,49.5 + pos: 25.5,49.5 parent: 2 - uid: 206 components: - type: Transform - pos: 18.5,53.5 + pos: 21.5,49.5 parent: 2 - uid: 207 components: - type: Transform - pos: 10.5,53.5 + pos: 18.5,53.5 parent: 2 - uid: 208 components: - type: Transform pos: 8.5,51.5 parent: 2 -- proto: AirlockSecurityGlass - entities: - - uid: 209 - components: - - type: Transform - pos: 25.5,43.5 - parent: 2 - - uid: 210 - components: - - type: Transform - pos: 27.5,43.5 - parent: 2 - uid: 211 components: - type: Transform - pos: 21.5,49.5 + pos: 10.5,53.5 parent: 2 - proto: AirlockServiceGlassLocked entities: @@ -8243,11 +8283,6 @@ entities: parent: 2 - proto: AtmosFixFreezerMarker entities: - - uid: 361 - components: - - type: Transform - pos: 30.5,34.5 - parent: 2 - uid: 362 components: - type: Transform @@ -8394,15 +8429,10 @@ entities: canCollide: False - proto: BannerMedical entities: - - uid: 389 + - uid: 7136 components: - type: Transform - pos: 24.5,40.5 - parent: 2 - - uid: 390 - components: - - type: Transform - pos: 28.5,40.5 + pos: 26.5,40.5 parent: 2 - proto: BannerNanotrasen entities: @@ -8424,25 +8454,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,32.5 parent: 2 -- proto: BaseAdvancedPen - entities: - - uid: 394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.00797,12.565628 - parent: 2 - - uid: 395 - components: - - type: Transform - pos: 57.72277,46.028847 - parent: 2 - - uid: 396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.62642,48.595196 - parent: 2 - proto: BaseComputer entities: - uid: 397 @@ -9043,7 +9054,7 @@ entities: - uid: 516 components: - type: Transform - parent: 515 + parent: 6865 - type: Physics canCollide: False - type: InsideEntityStorage @@ -9775,6 +9786,14 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,28.5 parent: 2 +- proto: BorgCharger + entities: + - uid: 5108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,22.5 + parent: 2 - proto: BoxBeaker entities: - uid: 591 @@ -9934,7 +9953,7 @@ entities: - uid: 67 components: - type: Transform - parent: 65 + parent: 5559 - type: Physics canCollide: False - type: InsideEntityStorage @@ -10606,7 +10625,7 @@ entities: - uid: 68 components: - type: Transform - parent: 65 + parent: 5559 - type: Physics canCollide: False - type: InsideEntityStorage @@ -10719,7 +10738,7 @@ entities: - uid: 782 components: - type: Transform - parent: 781 + parent: 5558 - type: Physics canCollide: False - type: InsideEntityStorage @@ -10844,7 +10863,7 @@ entities: - uid: 69 components: - type: Transform - parent: 65 + parent: 5559 - type: Physics canCollide: False - type: InsideEntityStorage @@ -10926,6 +10945,11 @@ entities: parent: 2 - proto: CableApcExtension entities: + - uid: 389 + components: + - type: Transform + pos: 22.5,41.5 + parent: 2 - uid: 829 components: - type: Transform @@ -14651,6 +14675,16 @@ entities: - type: Transform pos: 33.5,42.5 parent: 2 + - uid: 4811 + components: + - type: Transform + pos: 23.5,41.5 + parent: 2 + - uid: 7129 + components: + - type: Transform + pos: 22.5,40.5 + parent: 2 - proto: CableApcStack entities: - uid: 1574 @@ -19540,11 +19574,6 @@ entities: - type: Transform pos: 19.5,34.5 parent: 2 - - uid: 2510 - components: - - type: Transform - pos: 23.5,41.5 - parent: 2 - uid: 2511 components: - type: Transform @@ -19574,11 +19603,6 @@ entities: - type: Transform pos: 35.5,25.5 parent: 2 - - uid: 2516 - components: - - type: Transform - pos: 23.5,42.5 - parent: 2 - uid: 2517 components: - type: Transform @@ -19596,10 +19620,10 @@ entities: parent: 2 - proto: ClosetL3Janitor entities: - - uid: 65 + - uid: 5559 components: - type: Transform - pos: 21.5,42.5 + pos: 23.5,42.5 parent: 2 - type: EntityStorage air: @@ -19607,8 +19631,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -19625,21 +19649,21 @@ entities: showEnts: False occludes: True ents: - - 77 - - 70 - - 68 - - 79 - - 69 - - 75 - 66 + - 75 - 76 - - 73 + - 67 - 72 + - 73 - 74 + - 79 - 80 - - 67 - - 71 - 78 + - 69 + - 70 + - 71 + - 68 + - 77 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -19920,7 +19944,7 @@ entities: - uid: 517 components: - type: Transform - parent: 515 + parent: 6865 - type: Physics canCollide: False - type: GroupExamine @@ -19948,7 +19972,7 @@ entities: - uid: 783 components: - type: Transform - parent: 781 + parent: 5558 - type: Physics canCollide: False - type: GroupExamine @@ -19998,7 +20022,7 @@ entities: - uid: 784 components: - type: Transform - parent: 781 + parent: 5558 - type: Physics canCollide: False - type: InsideEntityStorage @@ -20061,7 +20085,7 @@ entities: - uid: 70 components: - type: Transform - parent: 65 + parent: 5559 - type: Physics canCollide: False - type: InsideEntityStorage @@ -20070,7 +20094,7 @@ entities: - uid: 518 components: - type: Transform - parent: 515 + parent: 6865 - type: Physics canCollide: False - type: InsideEntityStorage @@ -20143,7 +20167,7 @@ entities: - uid: 519 components: - type: Transform - parent: 515 + parent: 6865 - type: Physics canCollide: False - type: InsideEntityStorage @@ -20233,7 +20257,7 @@ entities: - uid: 71 components: - type: Transform - parent: 65 + parent: 5559 - type: Physics canCollide: False - type: InsideEntityStorage @@ -20250,7 +20274,7 @@ entities: - uid: 520 components: - type: Transform - parent: 515 + parent: 6865 - type: Physics canCollide: False - type: InsideEntityStorage @@ -20351,7 +20375,7 @@ entities: - uid: 72 components: - type: Transform - parent: 65 + parent: 5559 - type: Physics canCollide: False - type: InsideEntityStorage @@ -20367,14 +20391,14 @@ entities: - uid: 521 components: - type: Transform - parent: 515 + parent: 6865 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 785 components: - type: Transform - parent: 781 + parent: 5558 - type: Physics canCollide: False - type: InsideEntityStorage @@ -20465,7 +20489,7 @@ entities: - uid: 786 components: - type: Transform - parent: 781 + parent: 5558 - type: Physics canCollide: False - type: InsideEntityStorage @@ -20711,13 +20735,6 @@ entities: missingComponents: - Item - Pullable -- proto: ClothingNeckSyndicakePin - entities: - - uid: 2630 - components: - - type: Transform - pos: 31.771967,57.423477 - parent: 2 - proto: ClothingOuterArmorBasic entities: - uid: 2631 @@ -20800,7 +20817,7 @@ entities: - uid: 787 components: - type: Transform - parent: 781 + parent: 5558 - type: GroupExamine group: - hoverMessage: "" @@ -20979,7 +20996,7 @@ entities: - uid: 788 components: - type: Transform - parent: 781 + parent: 5558 - type: Physics canCollide: False - type: InsideEntityStorage @@ -21237,7 +21254,7 @@ entities: - uid: 73 components: - type: Transform - parent: 65 + parent: 5559 - type: Physics canCollide: False - type: InsideEntityStorage @@ -21246,7 +21263,7 @@ entities: - uid: 522 components: - type: Transform - parent: 515 + parent: 6865 - type: Physics canCollide: False - type: InsideEntityStorage @@ -21956,7 +21973,7 @@ entities: - uid: 74 components: - type: Transform - parent: 65 + parent: 5559 - type: Physics canCollide: False - type: InsideEntityStorage @@ -24039,12 +24056,12 @@ entities: - type: Transform pos: 23.5,46.5 parent: 2 -- proto: DoorRemoteCommand +- proto: DoorRemoteAll entities: - - uid: 3114 + - uid: 361 components: - type: Transform - pos: 66.36359,50.59352 + pos: 66.34038,50.623535 parent: 2 - proto: DoorRemoteSecurity entities: @@ -24541,14 +24558,6 @@ entities: - type: Transform pos: 73.54628,38.388664 parent: 2 -- proto: DrinkNukieCan - entities: - - uid: 3159 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.011978,55.362724 - parent: 2 - proto: DrinkRoyRogersGlass entities: - uid: 3160 @@ -25143,12 +25152,14 @@ entities: - uid: 3243 components: - type: Transform - pos: 71.5,28.5 + rot: 1.5707963267948966 rad + pos: 68.5,49.5 parent: 2 - uid: 3244 components: - type: Transform - pos: 68.5,49.5 + rot: 1.5707963267948966 rad + pos: 24.5,45.5 parent: 2 - uid: 3245 components: @@ -25170,25 +25181,27 @@ entities: - type: Transform pos: 49.5,43.5 parent: 2 - - uid: 3249 + - uid: 3250 components: - type: Transform - pos: 24.5,45.5 + pos: 26.5,53.5 parent: 2 - - uid: 3250 + - uid: 3252 components: - type: Transform - pos: 26.5,53.5 + pos: 55.5,32.5 parent: 2 - - uid: 3251 + - uid: 5252 components: - type: Transform + rot: -1.5707963267948966 rad pos: 53.5,22.5 parent: 2 - - uid: 3252 + - uid: 7141 components: - type: Transform - pos: 55.5,32.5 + rot: 1.5707963267948966 rad + pos: 71.5,28.5 parent: 2 - proto: ExtinguisherCabinetOpen entities: @@ -26783,6 +26796,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 4809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,41.5 + parent: 2 + - type: Fixtures + fixtures: {} - proto: FloraTree02 entities: - uid: 3406 @@ -37854,12 +37875,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,4.5 parent: 2 - - uid: 4720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,14.5 - parent: 2 - uid: 4721 components: - type: Transform @@ -37996,13 +38011,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,7.5 - parent: 2 - - uid: 4746 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,4.5 + pos: 53.5,20.5 parent: 2 - uid: 4747 components: @@ -38022,12 +38031,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,7.5 parent: 2 - - uid: 4750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,4.5 - parent: 2 - uid: 4751 components: - type: Transform @@ -38040,12 +38043,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,4.5 parent: 2 - - uid: 4753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,7.5 - parent: 2 - uid: 4754 components: - type: Transform @@ -38289,12 +38286,6 @@ entities: - type: Transform pos: 56.5,55.5 parent: 2 - - uid: 4796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,23.5 - parent: 2 - uid: 4797 components: - type: Transform @@ -38318,12 +38309,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,23.5 parent: 2 - - uid: 4801 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,23.5 - parent: 2 - uid: 4802 components: - type: Transform @@ -38336,12 +38321,6 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,17.5 parent: 2 - - uid: 4804 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,4.5 - parent: 2 - uid: 4805 components: - type: Transform @@ -38366,24 +38345,12 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,19.5 parent: 2 - - uid: 4809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,16.5 - parent: 2 - uid: 4810 components: - type: Transform rot: 1.5707963267948966 rad pos: 24.5,7.5 parent: 2 - - uid: 4811 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,15.5 - parent: 2 - uid: 4812 components: - type: Transform @@ -38402,12 +38369,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,23.5 parent: 2 - - uid: 4815 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,23.5 - parent: 2 - uid: 4816 components: - type: Transform @@ -38432,12 +38393,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,7.5 parent: 2 - - uid: 4820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,7.5 - parent: 2 - uid: 4821 components: - type: Transform @@ -38571,6 +38526,60 @@ entities: - type: Transform pos: 47.5,39.5 parent: 2 + - uid: 4895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,9.5 + parent: 2 + - uid: 4942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,20.5 + parent: 2 + - uid: 5048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,21.5 + parent: 2 + - uid: 5515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,21.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,46.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,47.5 + parent: 2 + - uid: 5712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,43.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,39.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,10.5 + parent: 2 - proto: GrilleDiagonal entities: - uid: 4846 @@ -38829,9 +38838,6 @@ entities: - type: Transform pos: 14.5,47.5 parent: 2 - missingComponents: - - Destructible - - Construction - proto: GunSafeSubMachineGunWt550 entities: - uid: 4864 @@ -38867,7 +38873,7 @@ entities: - uid: 523 components: - type: Transform - parent: 515 + parent: 6865 - type: Physics canCollide: False - type: InsideEntityStorage @@ -38982,7 +38988,7 @@ entities: - uid: 75 components: - type: Transform - parent: 65 + parent: 5559 - type: Physics canCollide: False - type: InsideEntityStorage @@ -39092,7 +39098,7 @@ entities: - uid: 524 components: - type: Transform - parent: 515 + parent: 6865 - type: Physics canCollide: False - type: InsideEntityStorage @@ -39223,11 +39229,11 @@ entities: - 3229 - proto: JanitorialTrolley entities: - - uid: 4895 + - uid: 7130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,40.5 + rot: 1.5707963267948966 rad + pos: 23.555183,40.586617 parent: 2 - proto: JawsOfLife entities: @@ -39434,6 +39440,9 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,57.5 parent: 2 + - type: AccessReader + access: + - - CentralCommand - type: DeviceLinkSource linkedPorts: 3231: @@ -39446,6 +39455,9 @@ entities: rot: 3.141592653589793 rad pos: 25.5,56.5 parent: 2 + - type: AccessReader + access: + - - CentralCommand - type: DeviceLinkSource linkedPorts: 3237: @@ -39471,8 +39483,6 @@ entities: - Pressed: Trigger 3236: - Pressed: Trigger - 206: - - Pressed: DoorBolt 7042: - Pressed: DoorBolt 7048: @@ -39510,8 +39520,6 @@ entities: - Pressed: Trigger 3235: - Pressed: Trigger - 207: - - Pressed: DoorBolt 7053: - Pressed: DoorBolt 7052: @@ -39608,12 +39616,10 @@ entities: - 0 - proto: LockerChiefMedicalOfficer entities: - - uid: 515 + - uid: 6865 components: - - type: MetaData - name: шкаф медика ОБР - type: Transform - pos: 18.5,40.5 + pos: 20.5,40.5 parent: 2 - type: EntityStorage air: @@ -39621,8 +39627,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -39639,16 +39645,16 @@ entities: showEnts: False occludes: True ents: + - 517 + - 520 + - 516 + - 518 - 521 - - 523 - 519 - - 517 - 524 - - 522 - - 518 - - 520 + - 523 - 525 - - 516 + - 522 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -39708,10 +39714,10 @@ entities: prevFixedRotation: True - proto: LockerEngineerFilledHardsuit entities: - - uid: 4918 + - uid: 3249 components: - type: Transform - pos: 64.5,22.5 + pos: 70.5,22.5 parent: 2 - proto: LockerEvidence entities: @@ -39917,8 +39923,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -39935,11 +39941,11 @@ entities: showEnts: False occludes: True ents: - - 16 - - 21 - - 26 - - 15 - 31 + - 15 + - 26 + - 21 + - 16 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -40251,13 +40257,6 @@ entities: - type: Transform pos: 62.5473,33.443535 parent: 2 -- proto: MaterialReclaimer - entities: - - uid: 4942 - components: - - type: Transform - pos: 37.5,56.5 - parent: 2 - proto: Mattress entities: - uid: 4943 @@ -40409,7 +40408,7 @@ entities: - uid: 76 components: - type: Transform - parent: 65 + parent: 5559 - type: Physics canCollide: False - type: InsideEntityStorage @@ -41437,10 +41436,29 @@ entities: - uid: 525 components: - type: Transform - parent: 515 + parent: 6865 - type: Physics canCollide: False - type: InsideEntityStorage +- proto: Pen + entities: + - uid: 394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.00797,12.565628 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: 57.72277,46.028847 + parent: 2 + - uid: 396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.62642,48.595196 + parent: 2 - proto: PenCap entities: - uid: 5033 @@ -41530,13 +41548,6 @@ entities: - type: Transform pos: 59.957397,47.587532 parent: 2 -- proto: PhoneInstrumentSyndicate - entities: - - uid: 5048 - components: - - type: Transform - pos: 31.93931,57.71843 - parent: 2 - proto: PianoInstrument entities: - uid: 5049 @@ -41617,7 +41628,7 @@ entities: - uid: 77 components: - type: Transform - parent: 65 + parent: 5559 - type: Physics canCollide: False - type: InsideEntityStorage @@ -41726,6 +41737,18 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: PositronicBrain + entities: + - uid: 5111 + components: + - type: Transform + pos: 63.38392,22.691586 + parent: 2 + - uid: 7140 + components: + - type: Transform + pos: 12.628529,30.667295 + parent: 2 - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - uid: 5071 @@ -41979,13 +42002,6 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,39.5 parent: 2 -- proto: PottedPlant1 - entities: - - uid: 5108 - components: - - type: Transform - pos: 70.5,22.5 - parent: 2 - proto: PottedPlant10 entities: - uid: 5109 @@ -42037,11 +42053,6 @@ entities: showEnts: False occludes: True ent: 4709 - - uid: 5111 - components: - - type: Transform - pos: 63.5,22.5 - parent: 2 - proto: PottedPlant22 entities: - uid: 5112 @@ -42098,13 +42109,6 @@ entities: - type: Transform pos: 48.532192,37.13181 parent: 2 -- proto: PottedPlantAlt3 - entities: - - uid: 5119 - components: - - type: Transform - pos: 58.5,22.5 - parent: 2 - proto: PottedPlantAlt4 entities: - uid: 4849 @@ -42257,6 +42261,18 @@ entities: - type: Transform pos: 46.5,18.5 parent: 2 +- proto: PowerCellHigh + entities: + - uid: 5119 + components: + - type: Transform + pos: 63.676193,22.491028 + parent: 2 + - uid: 7139 + components: + - type: Transform + pos: 12.380095,30.462816 + parent: 2 - proto: PowerCellRecharger entities: - uid: 5146 @@ -42876,12 +42892,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,50.5 parent: 2 - - uid: 5252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,46.5 - parent: 2 - uid: 5253 components: - type: Transform @@ -43054,6 +43064,12 @@ entities: rot: 3.141592653589793 rad pos: 26.5,50.5 parent: 2 + - uid: 6396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,45.5 + parent: 2 - proto: PoweredlightBlue entities: - uid: 5283 @@ -43217,6 +43233,12 @@ entities: parent: 2 - proto: PoweredSmallLight entities: + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,41.5 + parent: 2 - uid: 5310 components: - type: Transform @@ -43321,6 +43343,12 @@ entities: - type: Emagged - proto: Rack entities: + - uid: 4918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,22.5 + parent: 2 - uid: 5326 components: - type: Transform @@ -44391,51 +44419,45 @@ entities: parent: 2 - proto: ReinforcedWindow entities: - - uid: 5513 - components: - - type: Transform - pos: 24.5,59.5 - parent: 2 - - uid: 5514 + - uid: 2510 components: - type: Transform - pos: 27.5,59.5 + rot: 3.141592653589793 rad + pos: 24.5,47.5 parent: 2 - - uid: 5515 + - uid: 4815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,16.5 + rot: 1.5707963267948966 rad + pos: 26.5,43.5 parent: 2 - - uid: 5516 + - uid: 4820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,17.5 + rot: 3.141592653589793 rad + pos: 24.5,46.5 parent: 2 - - uid: 5517 + - uid: 5513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,13.5 + pos: 24.5,59.5 parent: 2 - - uid: 5518 + - uid: 5514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,14.5 + pos: 27.5,59.5 parent: 2 - - uid: 5519 + - uid: 5516 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,19.5 + pos: 32.5,17.5 parent: 2 - - uid: 5520 + - uid: 5517 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,15.5 + pos: 32.5,13.5 parent: 2 - uid: 5521 components: @@ -44479,24 +44501,12 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,33.5 parent: 2 - - uid: 5529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,23.5 - parent: 2 - uid: 5530 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,23.5 parent: 2 - - uid: 5531 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,23.5 - parent: 2 - uid: 5532 components: - type: Transform @@ -44607,24 +44617,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,7.5 parent: 2 - - uid: 5551 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,7.5 - parent: 2 - - uid: 5552 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,7.5 - parent: 2 - - uid: 5553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,4.5 - parent: 2 - uid: 5554 components: - type: Transform @@ -44643,24 +44635,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,4.5 parent: 2 - - uid: 5557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,4.5 - parent: 2 - - uid: 5558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,4.5 - parent: 2 - - uid: 5559 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,23.5 - parent: 2 - uid: 5560 components: - type: Transform @@ -44727,12 +44701,6 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,7.5 parent: 2 - - uid: 5571 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,7.5 - parent: 2 - uid: 5572 components: - type: Transform @@ -44792,6 +44760,52 @@ entities: - type: Transform pos: 27.5,58.5 parent: 2 + - uid: 5728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,21.5 + parent: 2 + - uid: 6165 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 6333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,9.5 + parent: 2 + - uid: 6334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,20.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,21.5 + parent: 2 + - uid: 6395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,19.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,39.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 5583 @@ -44934,13 +44948,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: RubberStampSyndicate - entities: - - uid: 5602 - components: - - type: Transform - pos: 32.103767,57.466686 - parent: 2 - proto: Saw entities: - uid: 5603 @@ -45841,6 +45848,13 @@ entities: - type: Transform pos: 15.5,34.5 parent: 2 +- proto: SignDisposalSpace + entities: + - uid: 5553 + components: + - type: Transform + pos: 41.5,53.5 + parent: 2 - proto: SignElectricalMed entities: - uid: 5707 @@ -45877,10 +45891,10 @@ entities: parent: 2 - proto: SignJanitor entities: - - uid: 5712 + - uid: 7132 components: - type: Transform - pos: 41.5,53.5 + pos: 24.5,42.5 parent: 2 - proto: SignLawyer entities: @@ -45936,6 +45950,44 @@ entities: - type: Transform pos: 71.5,47.5 parent: 2 +- proto: SignSpace + entities: + - uid: 2630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,7.5 + parent: 2 + - uid: 3159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 2 + - uid: 3251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,23.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,23.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,4.5 + parent: 2 + - uid: 5529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 2 - proto: SignTelecomms entities: - uid: 5720 @@ -45969,6 +46021,12 @@ entities: parent: 2 - proto: SinkWide entities: + - uid: 781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,41.5 + parent: 2 - uid: 5724 components: - type: Transform @@ -45991,12 +46049,6 @@ entities: rot: 3.141592653589793 rad pos: 38.5,54.5 parent: 2 - - uid: 5728 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,41.5 - parent: 2 - proto: Sledgehammer entities: - uid: 5729 @@ -46007,9 +46059,6 @@ entities: - type: Transform pos: 52.73154,52.670845 parent: 2 - missingComponents: - - MeleeWeapon - - IncreaseDamageOnWield - proto: SmartFridge entities: - uid: 3 @@ -46114,7 +46163,7 @@ entities: - uid: 78 components: - type: Transform - parent: 65 + parent: 5559 - type: Physics canCollide: False - type: InsideEntityStorage @@ -46732,48 +46781,6 @@ entities: - 60 - 63 - 62 - - uid: 781 - components: - - type: MetaData - name: хранилище скафандра уборщика ОБР - - type: Transform - pos: 21.5,40.5 - parent: 2 - - type: AccessReader - access: - - - CentralCommand - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 782 - - 785 - - 789 - - 786 - - 787 - - 783 - - 788 - - 784 - uid: 2550 components: - type: MetaData @@ -46853,6 +46860,25 @@ entities: - 2612 - 2611 - 2613 + - uid: 5558 + components: + - type: Transform + pos: 22.5,42.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 786 + - 789 + - 782 + - 788 + - 785 + - 787 + - 783 + - 784 - proto: SurveillanceCameraCommand entities: - uid: 5794 @@ -48807,7 +48833,7 @@ entities: - uid: 79 components: - type: Transform - parent: 65 + parent: 5559 - type: Physics canCollide: False - type: InsideEntityStorage @@ -49315,15 +49341,6 @@ entities: - type: Transform pos: 38.5,50.5 parent: 2 -- proto: VendingMachineSyndieDrobe - entities: - - uid: 6165 - components: - - type: MetaData - desc: 'Да, да, секретка синдиката на СЦК. Ну а что вы хотели от 2d игры про космонавтиков, в которой существует корпорация, размерами в миллион раз превышающая размер земли? ' - - type: Transform - pos: 30.5,57.5 - parent: 2 - proto: VendingMachineTankDispenserEVA entities: - uid: 6166 @@ -49405,6 +49422,96 @@ entities: parent: 2 - proto: WallReinforced entities: + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,42.5 + parent: 2 + - uid: 515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,41.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,14.5 + parent: 2 + - uid: 4720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 2 + - uid: 4746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,23.5 + parent: 2 + - uid: 4750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,16.5 + parent: 2 + - uid: 4796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,15.5 + parent: 2 + - uid: 4801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,23.5 + parent: 2 + - uid: 4804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,7.5 + parent: 2 + - uid: 5519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,7.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,7.5 + parent: 2 + - uid: 5551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,23.5 + parent: 2 + - uid: 5552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,4.5 + parent: 2 + - uid: 5557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,40.5 + parent: 2 - uid: 6178 components: - type: Transform @@ -50216,21 +50323,6 @@ entities: - type: Transform pos: 22.5,43.5 parent: 2 - - uid: 6332 - components: - - type: Transform - pos: 22.5,42.5 - parent: 2 - - uid: 6333 - components: - - type: Transform - pos: 22.5,41.5 - parent: 2 - - uid: 6334 - components: - - type: Transform - pos: 22.5,40.5 - parent: 2 - uid: 6335 components: - type: Transform @@ -50288,18 +50380,6 @@ entities: rot: 3.141592653589793 rad pos: 24.5,48.5 parent: 2 - - uid: 6345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,47.5 - parent: 2 - - uid: 6346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,46.5 - parent: 2 - uid: 6347 components: - type: Transform @@ -50340,12 +50420,6 @@ entities: rot: 3.141592653589793 rad pos: 26.5,49.5 parent: 2 - - uid: 6354 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,43.5 - parent: 2 - uid: 6355 components: - type: Transform @@ -50557,26 +50631,6 @@ entities: - type: Transform pos: 32.5,22.5 parent: 2 - - uid: 6395 - components: - - type: Transform - pos: 32.5,21.5 - parent: 2 - - uid: 6396 - components: - - type: Transform - pos: 32.5,20.5 - parent: 2 - - uid: 6397 - components: - - type: Transform - pos: 32.5,10.5 - parent: 2 - - uid: 6398 - components: - - type: Transform - pos: 32.5,9.5 - parent: 2 - uid: 6399 components: - type: Transform @@ -52248,18 +52302,6 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,22.5 parent: 2 - - uid: 6701 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,21.5 - parent: 2 - - uid: 6702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,20.5 - parent: 2 - uid: 6703 components: - type: Transform @@ -53201,11 +53243,6 @@ entities: parent: 2 - proto: WallSolid entities: - - uid: 6865 - components: - - type: Transform - pos: 26.5,39.5 - parent: 2 - uid: 6866 components: - type: Transform @@ -53955,6 +53992,18 @@ entities: - type: Transform pos: 19.5,32.5 parent: 2 + - uid: 7131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,40.5 + parent: 2 + - uid: 7137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,42.5 + parent: 2 - proto: WallWeaponCapacitorRecharger entities: - uid: 7003 @@ -53976,8 +54025,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -54001,8 +54050,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -54099,6 +54148,13 @@ entities: - type: Transform pos: 74.5,40.5 parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 7133 + components: + - type: Transform + pos: 22.5,40.5 + parent: 2 - proto: WeaponCapacitorRecharger entities: - uid: 7019 @@ -54242,7 +54298,7 @@ entities: - uid: 789 components: - type: Transform - parent: 781 + parent: 5558 - type: Physics canCollide: False - type: InsideEntityStorage @@ -54281,7 +54337,7 @@ entities: - uid: 80 components: - type: Transform - parent: 65 + parent: 5559 - type: Physics canCollide: False - type: InsideEntityStorage @@ -54323,9 +54379,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,43.5 parent: 2 - missingComponents: - - Destructible - - Construction - uid: 7041 components: - type: Transform @@ -54337,9 +54390,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,40.5 parent: 2 - missingComponents: - - Destructible - - Construction - uid: 7043 components: - type: Transform @@ -54352,18 +54402,12 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,41.5 parent: 2 - missingComponents: - - Destructible - - Construction - uid: 7045 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,43.5 parent: 2 - missingComponents: - - Destructible - - Construction - uid: 7046 components: - type: Transform @@ -54375,27 +54419,18 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,42.5 parent: 2 - missingComponents: - - Destructible - - Construction - uid: 7048 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,41.5 parent: 2 - missingComponents: - - Destructible - - Construction - uid: 7049 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,40.5 parent: 2 - missingComponents: - - Destructible - - Construction - uid: 7050 components: - type: Transform @@ -54408,63 +54443,42 @@ entities: rot: -1.5707963267948966 rad pos: 14.5,46.5 parent: 2 - missingComponents: - - Destructible - - Construction - uid: 7052 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,47.5 parent: 2 - missingComponents: - - Destructible - - Construction - uid: 7053 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,48.5 parent: 2 - missingComponents: - - Destructible - - Construction - uid: 7054 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,45.5 parent: 2 - missingComponents: - - Destructible - - Construction - uid: 7055 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,46.5 parent: 2 - missingComponents: - - Destructible - - Construction - uid: 7056 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,47.5 parent: 2 - missingComponents: - - Destructible - - Construction - uid: 7057 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,48.5 parent: 2 - missingComponents: - - Destructible - - Construction - proto: WindoorSecureCentralCommandLocked entities: - uid: 7058 From 8cf279e20070b610f7c2a6425ad5f2af83692f97 Mon Sep 17 00:00:00 2001 From: Ubaser <134914314+UbaserB@users.noreply.github.com> Date: Wed, 13 Nov 2024 23:30:40 +1100 Subject: [PATCH 066/171] Window sprite tweaks (#33282) * add * yes --- .../Windows/clockwork_diagonal.rsi/meta.json | 2 +- .../Windows/clockwork_diagonal.rsi/state0.png | Bin 1663 -> 2836 bytes .../Windows/clockwork_diagonal.rsi/state1.png | Bin 1681 -> 2833 bytes .../Windows/clockwork_window.rsi/cwindow0.png | Bin 1065 -> 2164 bytes .../Windows/clockwork_window.rsi/cwindow1.png | Bin 1060 -> 2128 bytes .../Windows/clockwork_window.rsi/cwindow2.png | Bin 1065 -> 2164 bytes .../Windows/clockwork_window.rsi/cwindow3.png | Bin 1060 -> 2128 bytes .../Windows/clockwork_window.rsi/cwindow4.png | Bin 1075 -> 2112 bytes .../Windows/clockwork_window.rsi/cwindow5.png | Bin 983 -> 2060 bytes .../Windows/clockwork_window.rsi/cwindow6.png | Bin 1075 -> 2112 bytes .../Windows/clockwork_window.rsi/cwindow7.png | Bin 1005 -> 2065 bytes .../Windows/clockwork_window.rsi/full.png | Bin 735 -> 1714 bytes .../Windows/clockwork_window.rsi/meta.json | 2 +- .../Structures/Windows/mining.rsi/full.png | Bin 837 -> 1811 bytes .../Structures/Windows/mining.rsi/meta.json | 2 +- .../Windows/mining.rsi/mwindow0.png | Bin 3765 -> 2248 bytes .../Windows/mining.rsi/mwindow1.png | Bin 3697 -> 2196 bytes .../Windows/mining.rsi/mwindow2.png | Bin 3765 -> 2248 bytes .../Windows/mining.rsi/mwindow3.png | Bin 3697 -> 2196 bytes .../Windows/mining.rsi/mwindow4.png | Bin 3706 -> 2175 bytes .../Windows/mining.rsi/mwindow5.png | Bin 3640 -> 2215 bytes .../Windows/mining.rsi/mwindow6.png | Bin 3706 -> 2175 bytes .../Windows/mining.rsi/mwindow7.png | Bin 3269 -> 1813 bytes .../Windows/mining_diagonal.rsi/meta.json | 2 +- .../Windows/mining_diagonal.rsi/state0.png | Bin 3037 -> 1299 bytes .../Windows/mining_diagonal.rsi/state1.png | Bin 3076 -> 1333 bytes .../Windows/plasma_diagonal.rsi/meta.json | 2 +- .../Windows/plasma_diagonal.rsi/state0.png | Bin 15748 -> 1644 bytes .../Windows/plasma_diagonal.rsi/state1.png | Bin 15665 -> 1603 bytes .../Windows/plasma_window.rsi/full.png | Bin 1597 -> 2843 bytes .../Windows/plasma_window.rsi/meta.json | 2 +- .../Windows/plasma_window.rsi/pwindow0.png | Bin 2063 -> 3469 bytes .../Windows/plasma_window.rsi/pwindow1.png | Bin 1099 -> 2334 bytes .../Windows/plasma_window.rsi/pwindow2.png | Bin 2063 -> 3469 bytes .../Windows/plasma_window.rsi/pwindow3.png | Bin 1099 -> 2334 bytes .../Windows/plasma_window.rsi/pwindow4.png | Bin 1161 -> 2402 bytes .../Windows/plasma_window.rsi/pwindow5.png | Bin 1064 -> 2294 bytes .../Windows/plasma_window.rsi/pwindow6.png | Bin 1161 -> 2402 bytes .../Windows/plasma_window.rsi/pwindow7.png | Bin 247 -> 1240 bytes .../Windows/plastitanium_window.rsi/full.png | Bin 506 -> 1500 bytes .../Windows/plastitanium_window.rsi/meta.json | 2 +- .../plastitanium_window.rsi/ptwindow0.png | Bin 1190 -> 2316 bytes .../plastitanium_window.rsi/ptwindow1.png | Bin 1006 -> 2083 bytes .../plastitanium_window.rsi/ptwindow2.png | Bin 1190 -> 2316 bytes .../plastitanium_window.rsi/ptwindow3.png | Bin 1006 -> 2083 bytes .../plastitanium_window.rsi/ptwindow4.png | Bin 1008 -> 2076 bytes .../plastitanium_window.rsi/ptwindow5.png | Bin 986 -> 2114 bytes .../plastitanium_window.rsi/ptwindow6.png | Bin 1008 -> 2076 bytes .../plastitanium_window.rsi/ptwindow7.png | Bin 641 -> 1668 bytes .../meta.json | 2 +- .../state0.png | Bin 3238 -> 1375 bytes .../state1.png | Bin 3208 -> 1343 bytes .../reinforced_plasma_diagonal.rsi/meta.json | 2 +- .../reinforced_plasma_diagonal.rsi/state0.png | Bin 15911 -> 1797 bytes .../reinforced_plasma_diagonal.rsi/state1.png | Bin 15885 -> 1790 bytes .../reinforced_plasma_window.rsi/full.png | Bin 2495 -> 3504 bytes .../reinforced_plasma_window.rsi/meta.json | 2 +- .../rpwindow0.png | Bin 2930 -> 4096 bytes .../rpwindow1.png | Bin 1696 -> 2864 bytes .../rpwindow2.png | Bin 2930 -> 4096 bytes .../rpwindow3.png | Bin 1696 -> 2864 bytes .../rpwindow4.png | Bin 1745 -> 2888 bytes .../rpwindow5.png | Bin 1695 -> 3021 bytes .../rpwindow6.png | Bin 1745 -> 2888 bytes .../rpwindow7.png | Bin 910 -> 2262 bytes .../reinforced_uranium_diagonal.rsi/meta.json | 2 +- .../state0.png | Bin 15734 -> 1662 bytes .../state1.png | Bin 15695 -> 1620 bytes .../reinforced_uranium_window.rsi/full.png | Bin 2067 -> 3028 bytes .../reinforced_uranium_window.rsi/meta.json | 2 +- .../ruwindow0.png | Bin 2366 -> 3323 bytes .../ruwindow1.png | Bin 1169 -> 2130 bytes .../ruwindow2.png | Bin 2342 -> 3323 bytes .../ruwindow3.png | Bin 1138 -> 2130 bytes .../ruwindow4.png | Bin 1133 -> 2102 bytes .../ruwindow5.png | Bin 1088 -> 2084 bytes .../ruwindow6.png | Bin 1129 -> 2102 bytes .../ruwindow7.png | Bin 267 -> 1240 bytes .../Windows/reinforced_window.rsi/full.png | Bin 2063 -> 3041 bytes .../Windows/reinforced_window.rsi/meta.json | 2 +- .../reinforced_window.rsi/rwindow0.png | Bin 2229 -> 3349 bytes .../reinforced_window.rsi/rwindow1.png | Bin 1148 -> 2163 bytes .../reinforced_window.rsi/rwindow2.png | Bin 2229 -> 3349 bytes .../reinforced_window.rsi/rwindow3.png | Bin 1148 -> 2163 bytes .../reinforced_window.rsi/rwindow4.png | Bin 1130 -> 2172 bytes .../reinforced_window.rsi/rwindow5.png | Bin 1025 -> 2041 bytes .../reinforced_window.rsi/rwindow6.png | Bin 1130 -> 2172 bytes .../reinforced_window.rsi/rwindow7.png | Bin 272 -> 1239 bytes .../reinforced_window_diagonal.rsi/meta.json | 2 +- .../reinforced_window_diagonal.rsi/state0.png | Bin 16179 -> 1573 bytes .../reinforced_window_diagonal.rsi/state1.png | Bin 16152 -> 1550 bytes .../Windows/shuttle_window.rsi/full.png | Bin 707 -> 1779 bytes .../Windows/shuttle_window.rsi/meta.json | 2 +- .../Windows/shuttle_window.rsi/swindow0.png | Bin 1080 -> 2278 bytes .../Windows/shuttle_window.rsi/swindow1.png | Bin 881 -> 2146 bytes .../Windows/shuttle_window.rsi/swindow2.png | Bin 1080 -> 2278 bytes .../Windows/shuttle_window.rsi/swindow3.png | Bin 881 -> 2146 bytes .../Windows/shuttle_window.rsi/swindow4.png | Bin 912 -> 2166 bytes .../Windows/shuttle_window.rsi/swindow5.png | Bin 857 -> 2168 bytes .../Windows/shuttle_window.rsi/swindow6.png | Bin 912 -> 2166 bytes .../Windows/shuttle_window.rsi/swindow7.png | Bin 412 -> 1871 bytes .../shuttle_window_diagonal.rsi/meta.json | 2 +- .../shuttle_window_diagonal.rsi/state0.png | Bin 15523 -> 1475 bytes .../shuttle_window_diagonal.rsi/state1.png | Bin 15473 -> 1423 bytes .../Windows/tinted_window.rsi/full.png | Bin 9436 -> 3495 bytes .../Windows/tinted_window.rsi/meta.json | 2 +- .../Windows/tinted_window.rsi/twindow0.png | Bin 10814 -> 4035 bytes .../Windows/tinted_window.rsi/twindow1.png | Bin 8214 -> 2719 bytes .../Windows/tinted_window.rsi/twindow2.png | Bin 10815 -> 4035 bytes .../Windows/tinted_window.rsi/twindow3.png | Bin 8477 -> 2719 bytes .../Windows/tinted_window.rsi/twindow4.png | Bin 8217 -> 2692 bytes .../Windows/tinted_window.rsi/twindow5.png | Bin 6896 -> 2318 bytes .../Windows/tinted_window.rsi/twindow6.png | Bin 8464 -> 2692 bytes .../Windows/tinted_window.rsi/twindow7.png | Bin 4882 -> 1661 bytes .../Windows/uranium_window.rsi/full.png | Bin 1321 -> 2364 bytes .../Windows/uranium_window.rsi/meta.json | 2 +- .../Windows/uranium_window.rsi/uwindow0.png | Bin 1688 -> 2857 bytes .../Windows/uranium_window.rsi/uwindow1.png | Bin 1225 -> 2288 bytes .../Windows/uranium_window.rsi/uwindow2.png | Bin 1688 -> 2857 bytes .../Windows/uranium_window.rsi/uwindow3.png | Bin 1225 -> 2288 bytes .../Windows/uranium_window.rsi/uwindow4.png | Bin 1216 -> 2251 bytes .../Windows/uranium_window.rsi/uwindow5.png | Bin 795 -> 1872 bytes .../Windows/uranium_window.rsi/uwindow6.png | Bin 1229 -> 2251 bytes .../Windows/uranium_window.rsi/uwindow7.png | Bin 297 -> 1281 bytes .../uranium_window_diagonal.rsi/meta.json | 2 +- .../uranium_window_diagonal.rsi/state0.png | Bin 15629 -> 1572 bytes .../uranium_window_diagonal.rsi/state1.png | Bin 15604 -> 1539 bytes .../Structures/Windows/window.rsi/full.png | Bin 1224 -> 2279 bytes .../Structures/Windows/window.rsi/meta.json | 2 +- .../Structures/Windows/window.rsi/window0.png | Bin 1632 -> 2748 bytes .../Structures/Windows/window.rsi/window1.png | Bin 1183 -> 2217 bytes .../Structures/Windows/window.rsi/window2.png | Bin 1632 -> 2748 bytes .../Structures/Windows/window.rsi/window3.png | Bin 1183 -> 2217 bytes .../Structures/Windows/window.rsi/window4.png | Bin 1187 -> 2213 bytes .../Structures/Windows/window.rsi/window5.png | Bin 800 -> 1810 bytes .../Structures/Windows/window.rsi/window6.png | Bin 1187 -> 2213 bytes .../Structures/Windows/window.rsi/window7.png | Bin 301 -> 1240 bytes .../Windows/window_diagonal.rsi/meta.json | 2 +- .../Windows/window_diagonal.rsi/state0.png | Bin 15988 -> 1329 bytes .../Windows/window_diagonal.rsi/state1.png | Bin 15966 -> 1285 bytes 140 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Resources/Textures/Structures/Windows/clockwork_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/clockwork_diagonal.rsi/meta.json index 06b6f4a5505..9f0945a8701 100644 --- a/Resources/Textures/Structures/Windows/clockwork_diagonal.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/clockwork_diagonal.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/b8fc9b367ebb26def792a68bcb25294e518698d8/icons/obj/smooth_structures/clockwork_window.dmi diagonalized by MACMAN2003", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/b8fc9b367ebb26def792a68bcb25294e518698d8/icons/obj/smooth_structures/clockwork_window.dmi diagonalized by MACMAN2003, transparency tweaked by Ubaser.", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Windows/clockwork_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/clockwork_diagonal.rsi/state0.png index 084563bfa29305fa626d2657f7528e8fcaeb4960..84e8da95e5b7ded79994f18de59800ffb2e25279 100644 GIT binary patch literal 2836 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 diff --git a/Resources/Textures/Structures/Windows/clockwork_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/clockwork_diagonal.rsi/state1.png index 0e48f9c92271fae2dfc906c5f3ba31f888151a6c..0f139a44c4cbaee8fbc948ea70d5fe9b46d5a9b8 100644 GIT binary patch literal 2833 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 delta 1030 zcmV+h1o`{)5UB`|F@FSSK}|sb0I`n?{9y$E000SaNLh0L01m?d01m?e$8V@)000BN zNklWutro6wC}$DJ>KsM4`fhb9jbm7cmqdAX}tApmV2)gIf+cdpm| zMUzO>1ax5+u)XaEyxTVlC2S@O57-54Y{~ta=m!P2<_g9N57-54xw%$Xrz8xIi>PP_ zD`Egpg*Gk08UcVqf>i>5X$e*c2tM8dlM<|}0SZ$RtbY-p3L3NC;1KszeAUsR;ma5>R+de`BwX zZ6H+vAb(1ND)7unhc28UZ|j|IFlqo3l7NX$c4dWIPNO}AiVGi%iy>%Dgda!h;DGFHGn2CE&xRJ z4u4#*2(XD=0djAg;NvqVyEQ=W`xZ6G^aRIbj{F+yxTBt=cBtFBXBQ=c=x zS{#G}V$^d&xZqKeI>Fi)U`m43K`@B~U91og7Z775gr?j(!Ri{Ih?Ag8CIo;;2{QSj zLuLekwAy_Tb^%D7sHyWLq%DD6z({Cv6n~jydDxaTC9n%Xo&ZziYTZE6H^$PEU_}fV zJ?JM(v7Mbt{@Pp`608uQ9)*!K`TWE6vd4Y%+8i>)C@|7xSUX@E_R(O}%hRY4E8qO< zXcj?&11J10^Dj?Fy*>|+G(p|~uhqq&x7?oSFQUblaT1{(EdT%j07*qoM6N<$g09TU A1poj5 diff --git a/Resources/Textures/Structures/Windows/clockwork_window.rsi/cwindow1.png b/Resources/Textures/Structures/Windows/clockwork_window.rsi/cwindow1.png index 025376834dc1867b2e6724d89982523f3444e8f0..e78030522325c579b865ab25c7d9261fc37bc19e 100644 GIT binary patch literal 2128 zcmZ`)4Oo)b9zTd*q0rmM(rcK&ytNbo$y5jt)cm-mIkS!CN)b?42m~*Kv|F*%EsohIi1@2FrRXM=WgbGL1)&}&hwo2ob!KwzyHVY{NLx@ z8ygdW#kgSr0NAL=usCGpSf-;r@-#@ccOeT(6&Dc#s&3)?kONM{i%N-(242YC5t)`@ z-uN%%IZqL}S%m{DveI1(|r(xk7|bu=4*Xqs<)?|{OKo5q!K743RohS z5iEZB$#OLuL?T%N&5r3jg@V~Q3bj&djUp6KMN(0kNCvB@z7${Tn|QD!O&G0SmUZ-A$1ObN~h5ReQ0zaI)ge}ACf*xC}6@8 zSSqp#H(QTYL9P^j)oQ_8B#=rh$}**VS!xhT>mwAU@YPb7#1?2IGND`(z@kp0US&^P zUvb+N1R@?8IRLuYae=dDcs+RI?;7a4opGd9zy^ykoh#?)o(1A-Nd zk`iptw?h+|?c$C55rhaw$DM#v*`mpei zWG7Ey)jyhRi?M@;v8CXYyQkY2p?-^}!8qu#YiDxbr~ZDy_J!pEYdk(2U%1FYSKPFH zEb_~({_btV(C!DkzWDs(pM4bAhFt-xJAd6IamwM3t*QNdp;2>ZiPMHW}12-cUdv@%{B#clqG%Kg1(YWW>h`m+hdkAh>4>Blzp< z&(9ql{ouV`J$I*L{Z#LG_=%nk4+~o-2wCj2OBdCGCC(tw(DtsH23;IdC85aB)djr3 zL{&p&^)u*p&Y4GK;%^v`B*b#@VElak-}BHqMU-P5Aj~5MfKr0%WI^}|`G;Obrn)bNY&mRKN-XclI0YUR@V;RgYa9F4*2P@2+2?%46&M@$V~}P2rDo^=O3~`_ zR)|+WN(Vq7^sxV%y|D?yt6nVGn-LRNe8%o~H1mvYbdBNqCs0GKiLn}pcj9gHnuY>y z;R_*rW{Ls)%uTwo=wb^j4z56NEn?XU0BfQz`D%eq9jx8mJ;8sN`?S~GpW+^1ud~CV9_RzTf|Ki zS7X-L0h~6ba*SVIKhp8!=E>W`UqBw;<(D@+a;w!3bhO-Ux1kh^C+}ao&j8r0GKa2` z7m0fg?wY#f_fvRL`~#h$afG1{U^-VVcNc59>e ze_Jz1%daGi<4<-TMIY!$viW|WonjBXuG_EPevoOxAIhb2?=f^a=hmQY*xB8~xdR>< z0P;UQJT|pc{=WA`xE~Pgp2|4lbNKY9{blZ5DbRQG%~u{nx38gWOac#pGfjB|-GZ)X z*=Y(hag|fjzgfP^*oW#J4)wRQQgI;JH7lB5)Rkb%DLdHm)h`$w`JITMdnF&t&s)gL zuQ^O4v~BFkSyb_H-iw8M#N_g%b2 z!wKC@xjN-%J3fhfhFQ>LjNB0eoI45-Qv2JNLqXM9Myp%HfHj=} delta 1025 zcmV+c1pfQb5Tpo@F@FSSK}|sb0I`n?{9y$E000SaNLh0L01m?d01m?e$8V@)000BI zNklHV%7>D05)I|a*e5I)h1cro4R3Mm&gn)qs7DmQYLS40VJS7f}#cj6(2<)B^et0v+siCI;qK>?>)D9B!BC!j;rV%-@Rwwd&v+p z#XTdPQ%BqM_9Ib#r+==~@sBS*h*sL8{>dJ^T5Kw{fnC6*v((A&B6|Fs=+J(mF;~K; zWun@W|M{8Yeko~u6BQTy-;MifZD1F0vPAB^CMutE=tHCB-Fe8EIqy`w3)W%wc56md z2V#pT*+93)oqtE;k4#R8v*utI0MPAm=c}*lba33E(mtZfgH~C5oG4ZZz?et3$MN)K z%Nzghkcc$|RACpey6OkKYnO`^93~qN*adw3Da!hyS6-bh8f!dY7k~!i&Z90R3KS7wDf>9OHdXdBX?RQXz2lImY^*Lq*a2}81O$5 zu;yoK-LD^71b{da!VQ**5KgoS0R1GO@mT(rcOG>c&?*2#NstYmKJ3uxW8@vk>ezs? z0NKzWVSfo&_e1V4nEVK)xH!?$1L8=Kym(Wm19`_whBm&7lZ+_84PL)Uop8c32$CHD zLja%QS~MQR0QI{MdGnLXUp`eB^^%*t$U4n6(H?gmLY`DdsJ7frw}7bifME2$HCHR= zvhG+DgAF-A2$(F`Awc^q0D|LQZgkkTm8j%;$$xJ5&to`XV+1#e^Z-e)C)~VKD`VVe z+;2n>bf-q|{QLrM3`nF0NTOy3OoNyXy`Z?!o&=+S1jGU4{E_>|9smrB+zxR8Gl>fT zNOvRcJzs5g_W@u}07P(OL;!$zYl5tAVgL&&7p9wdL+m~z1>Yhia_S5(wWWTy zI0y&CsOJQ);hB#1og&u8fJg}mY?rY*2*#11iWLI-1;nH!Slt68{UoT83IQM~38@hP zq9mxoE&z#>N6*9`G0-i6UBFmqaTJ+kQF`r(P6_M+kSD+rx!gAp_ZMTjBv=sx#&`S4 zQXD6y;{R+;hXgAG$VXu$P2PWQdD-Jl^Rqc5O3`4X%dmIAH0%N}{?YZ_F5m45!IZw00000NkvXXu0mjfm%+-M diff --git a/Resources/Textures/Structures/Windows/clockwork_window.rsi/cwindow2.png b/Resources/Textures/Structures/Windows/clockwork_window.rsi/cwindow2.png index 48ba09f65778c2c6acb1c24fcb8cfa9236fe820f..f29440596bc7a333a33239cf0f2d49e94b9415c1 100644 GIT binary patch literal 2164 zcmZ`)3se(V8otBJ$Wfw}h_$SQlqxDPAvHi^5`zR3N-zfl2DCgAFc6ZE3??AOfKa8D zU8rb9kf4R~$KG@9+pi?(G zcOOTeOQkyly47*;404vNnmB(g}@kwT%sL=sFQ*`o-1dAt}2RoaW?pUye?(+^7^50?q0h)^QN z>->g>N#YPXfuIYtFy`{)hcCpD#>qtbDEx3(AQHp~#E2YrbZ~?}#6yG;Z!;9j=jA|! zfpu?C8u5cPPbm_<1y#yjiRLq3ADU>mKCT?$!;1hgiAZ#@Cz9+*6nLRNG<_OBoQen$ zkw7opLOpr~T}8;dRvlg^fk>!RmMRJrN74yOd%hqdG){yN7~u+`m@iQ{)8IMOyX-mZ zyH08F2jbIoRZ|0e1#*cfPNzGALZ<1Zc*pqm0_F(34-pm{-zRYPOAra#PcmV+rx+2) zq%yR(^zlgZ;r<%&zOT2j{lr3q@u!3L%!^oy?uP0rLlhEOG*^EQZ$F8?)-aD|rOmFaCXyOC>8~om_IrjhB;VOt1`2TJ^dN7Z&Y8 zA!|R%ZOW{DkeQ!A${yG5gj6-rNB@_IQAeh4QeQu}3wsAH{rBxj5A#X34|(WJYBN;u zI5uxvR`KNLLG2Tq*}l>~Y4&zQ_t#PEYwiAtetR$PzVWU2TI5#aHmlxxa@wjPtBq!$ z%k5vSr_@Rcd+V|I2XrPf>{@9V{EF|}as=Gxv?jjFwfOeUg$;#An4~D@e1cg)5O(>% zjTT?x6OFbi`^$~kWkYU*zwGN>+ZDC{t|kcMy5)gwf2NCyqG7gT;WUn&*^lKl6G$xB zXW@VPpg}8zUMY_NOjrL0pQU<3nX1gCV05@L8j}M+QCuw9l4PiAy=r>hIMo|8R+tf> zrYMIDFYT4@wjP$(Pn-|jtUc)ey!gU_-=+`T>iX^2E71RZ1SiK?7!G>5?xu8uUQUi_ zTT~qx*mf^9a!TwBseq~40FvV8v?%%uKPJ7 z^72U*DCn$Ywp&pDyK*Q{SaYQroWe8X?G8P<9a=;1eaM2g9BwqlKD%}Ayqme@tub=R zr2>X!b^FqBEN$DbGdzFw^%;|+hZ}`(5c}TWXA=j_a;Ka2JignV1l=A@>CUS#3VizI zC*1?V)7ZXXjP-bLt;I6KRCPm>ALV?$*|?S6luzZ8ls#v}&pIZEM|Z84adRpIdd|j= zJjrg(2;pWupRKMQS3l~E{KXo)xf<2}()#&Sd~L_siy8aB&{+Mx*NP6NtDOrbcCJn) ztCGXSQ^D%5O3VjLcC5b2=n?z10nqY-YWdaEn^6tCgfch$=rdIhKIlj_R2P$p59>Gd zK4D^%h-n(eYPbCkm`<9>$u~1j{b!OAMnQo=U%!f@Ir!4)zWTs)u4~AOqR+al3pOpm zaMt|+JRDAVten*V@E>i)uDH5?xLj)TJa%DS<2U~dZO#Yx)-fA4+_@kJoUg5aDCL#^ zv>IxUdc5!Fz0hEajQjEEu$)_09=(~~h#RRm`DwS|%YZ_2d`An$Hp3X_UFulQ$6WdG zMr_`6*G-}2wZy^$d+zjzc@;}aa9zs@n~R@x;D&2Y7ay0d2Q0rnTmWKhVZAx$VCccV4Jl%wF+uqmQtF=9vK3IE=`^B<*T|r3cTvPN$sLy z9E#=QD*jgXqD1=Lie~8Ll=j?cL$d#yHD8#f9QS)z;?LFKoTs;X&lno~m8 delta 1030 zcmV+h1o`{)5UB`|F@FSSK}|sb0I`n?{9y$E000SaNLh0L01m?d01m?e$8V@)000BN zNklWutro6wC}$DJ>KsM4`fhb9jbm7cmqdAX}tApmV2)gIf+cdpm| zMUzO>1ax5+u)XaEyxTVlC2S@O57-54Y{~ta=m!P2<_g9N57-54xw%$Xrz8xIi>PP_ zD`Egpg*Gk08UcVqf>i>5X$e*c2tM8dlM<|}0SZ$RtbY-p3L3NC;1KszeAUsR;ma5>R+de`BwX zZ6H+vAb(1ND)7unhc28UZ|j|IFlqo3l7NX$c4dWIPNO}AiVGi%iy>%Dgda!h;DGFHGn2CE&xRJ z4u4#*2(XD=0djAg;NvqVyEQ=W`xZ6G^aRIbj{F+yxTBt=cBtFBXBQ=c=x zS{#G}V$^d&xZqKeI>Fi)U`m43K`@B~U91og7Z775gr?j(!Ri{Ih?Ag8CIo;;2{QSj zLuLekwAy_Tb^%D7sHyWLq%DD6z({Cv6n~jydDxaTC9n%Xo&ZziYTZE6H^$PEU_}fV zJ?JM(v7Mbt{@Pp`608uQ9)*!K`TWE6vd4Y%+8i>)C@|7xSUX@E_R(O}%hRY4E8qO< zXcj?&11J10^Dj?Fy*>|+G(p|~uhqq&x7?oSFQUblaT1{(EdT%j07*qoM6N<$g09TU A1poj5 diff --git a/Resources/Textures/Structures/Windows/clockwork_window.rsi/cwindow3.png b/Resources/Textures/Structures/Windows/clockwork_window.rsi/cwindow3.png index 025376834dc1867b2e6724d89982523f3444e8f0..e78030522325c579b865ab25c7d9261fc37bc19e 100644 GIT binary patch literal 2128 zcmZ`)4Oo)b9zTd*q0rmM(rcK&ytNbo$y5jt)cm-mIkS!CN)b?42m~*Kv|F*%EsohIi1@2FrRXM=WgbGL1)&}&hwo2ob!KwzyHVY{NLx@ z8ygdW#kgSr0NAL=usCGpSf-;r@-#@ccOeT(6&Dc#s&3)?kONM{i%N-(242YC5t)`@ z-uN%%IZqL}S%m{DveI1(|r(xk7|bu=4*Xqs<)?|{OKo5q!K743RohS z5iEZB$#OLuL?T%N&5r3jg@V~Q3bj&djUp6KMN(0kNCvB@z7${Tn|QD!O&G0SmUZ-A$1ObN~h5ReQ0zaI)ge}ACf*xC}6@8 zSSqp#H(QTYL9P^j)oQ_8B#=rh$}**VS!xhT>mwAU@YPb7#1?2IGND`(z@kp0US&^P zUvb+N1R@?8IRLuYae=dDcs+RI?;7a4opGd9zy^ykoh#?)o(1A-Nd zk`iptw?h+|?c$C55rhaw$DM#v*`mpei zWG7Ey)jyhRi?M@;v8CXYyQkY2p?-^}!8qu#YiDxbr~ZDy_J!pEYdk(2U%1FYSKPFH zEb_~({_btV(C!DkzWDs(pM4bAhFt-xJAd6IamwM3t*QNdp;2>ZiPMHW}12-cUdv@%{B#clqG%Kg1(YWW>h`m+hdkAh>4>Blzp< z&(9ql{ouV`J$I*L{Z#LG_=%nk4+~o-2wCj2OBdCGCC(tw(DtsH23;IdC85aB)djr3 zL{&p&^)u*p&Y4GK;%^v`B*b#@VElak-}BHqMU-P5Aj~5MfKr0%WI^}|`G;Obrn)bNY&mRKN-XclI0YUR@V;RgYa9F4*2P@2+2?%46&M@$V~}P2rDo^=O3~`_ zR)|+WN(Vq7^sxV%y|D?yt6nVGn-LRNe8%o~H1mvYbdBNqCs0GKiLn}pcj9gHnuY>y z;R_*rW{Ls)%uTwo=wb^j4z56NEn?XU0BfQz`D%eq9jx8mJ;8sN`?S~GpW+^1ud~CV9_RzTf|Ki zS7X-L0h~6ba*SVIKhp8!=E>W`UqBw;<(D@+a;w!3bhO-Ux1kh^C+}ao&j8r0GKa2` z7m0fg?wY#f_fvRL`~#h$afG1{U^-VVcNc59>e ze_Jz1%daGi<4<-TMIY!$viW|WonjBXuG_EPevoOxAIhb2?=f^a=hmQY*xB8~xdR>< z0P;UQJT|pc{=WA`xE~Pgp2|4lbNKY9{blZ5DbRQG%~u{nx38gWOac#pGfjB|-GZ)X z*=Y(hag|fjzgfP^*oW#J4)wRQQgI;JH7lB5)Rkb%DLdHm)h`$w`JITMdnF&t&s)gL zuQ^O4v~BFkSyb_H-iw8M#N_g%b2 z!wKC@xjN-%J3fhfhFQ>LjNB0eoI45-Qv2JNLqXM9Myp%HfHj=} delta 1025 zcmV+c1pfQb5Tpo@F@FSSK}|sb0I`n?{9y$E000SaNLh0L01m?d01m?e$8V@)000BI zNklHV%7>D05)I|a*e5I)h1cro4R3Mm&gn)qs7DmQYLS40VJS7f}#cj6(2<)B^et0v+siCI;qK>?>)D9B!BC!j;rV%-@Rwwd&v+p z#XTdPQ%BqM_9Ib#r+==~@sBS*h*sL8{>dJ^T5Kw{fnC6*v((A&B6|Fs=+J(mF;~K; zWun@W|M{8Yeko~u6BQTy-;MifZD1F0vPAB^CMutE=tHCB-Fe8EIqy`w3)W%wc56md z2V#pT*+93)oqtE;k4#R8v*utI0MPAm=c}*lba33E(mtZfgH~C5oG4ZZz?et3$MN)K z%Nzghkcc$|RACpey6OkKYnO`^93~qN*adw3Da!hyS6-bh8f!dY7k~!i&Z90R3KS7wDf>9OHdXdBX?RQXz2lImY^*Lq*a2}81O$5 zu;yoK-LD^71b{da!VQ**5KgoS0R1GO@mT(rcOG>c&?*2#NstYmKJ3uxW8@vk>ezs? z0NKzWVSfo&_e1V4nEVK)xH!?$1L8=Kym(Wm19`_whBm&7lZ+_84PL)Uop8c32$CHD zLja%QS~MQR0QI{MdGnLXUp`eB^^%*t$U4n6(H?gmLY`DdsJ7frw}7bifME2$HCHR= zvhG+DgAF-A2$(F`Awc^q0D|LQZgkkTm8j%;$$xJ5&to`XV+1#e^Z-e)C)~VKD`VVe z+;2n>bf-q|{QLrM3`nF0NTOy3OoNyXy`Z?!o&=+S1jGU4{E_>|9smrB+zxR8Gl>fT zNOvRcJzs5g_W@u}07P(OL;!$zYl5tAVgL&&7p9wdL+m~z1>Yhia_S5(wWWTy zI0y&CsOJQ);hB#1og&u8fJg}mY?rY*2*#11iWLI-1;nH!Slt68{UoT83IQM~38@hP zq9mxoE&z#>N6*9`G0-i6UBFmqaTJ+kQF`r(P6_M+kSD+rx!gAp_ZMTjBv=sx#&`S4 zQXD6y;{R+;hXgAG$VXu$P2PWQdD-Jl^Rqc5O3`4X%dmIAH0%N}{?YZ_F5m45!IZw00000NkvXXu0mjfm%+-M diff --git a/Resources/Textures/Structures/Windows/clockwork_window.rsi/cwindow4.png b/Resources/Textures/Structures/Windows/clockwork_window.rsi/cwindow4.png index aa4ed12cbc5dd25ec5df058aabcd5abf3f3c7e2a..228081ad5b9ea416f26648cc0b4e6fc1c1e36fe4 100644 GIT binary patch literal 2112 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|_);T0(|mmy zw18|5AO?X;!IOa`XMsm#F;KxA5N2eb5`33|fjK8LB%&n3*T*V3KUXg?B|j-uuOhbq ztjngt3dqb&ElE_U$j!+swyLmI0;{kBvO&W7N(x{lCE2!05xxNm&iO^D3TAo+dIm~% zTnY*bHbp6ERzWUqQ0+jTtx`rwNr9EVetCJhUb(Seeo?xG?W zUP)qwZeFo6#1NP{E~&-IMVSR9nfZANAafIw@=Hr>m6Sjh!2!gbDamkq3QCJ|z_z3$ z>!;?V=BDPA6zd!68R}!xSCW~AaA96CG&q0(qYsh+YBRv9&9k5+*#sC;t`$J{K>Y`F zXfoK|;*u17BnA3L1_l&2TID3>rQ0f1=%%EmC6?xtDA^^KXXd5kmz&$@LsX&ahKQmXYNL{p zmyJF=C)shWbM3v(z`zph>Eakt!T5Ie?))nTGRN!JUXXQCn77n+fsIPkgb5A?3;Ygn z@l1WemDJEUk@bgsLSjNf1LMIeSDpih90Zw#Lj{HUotuJAO)Z}&F-v;gkJ)$pe=LeA z>J|Q9qdTo=<6Mhx-ygfz{IiTzdBax4^|}4q)fZ>o7ws!`Onmmdv!LduYsssMM3r?N z&(~dZd%R9P_O;(G#rLlT?r*m{k^0qZ(ZRJYtHW3xeLg3BK0Zx(@(!DT&lZ02x|iA| z&#(V^YWb5{{ngK$)^%=YF!>$3>Y8HR`*&x#HLKOWcQH3~#j!Hh);+pv@>WAMbHn@> z=bED|gZAi+<%_$lJTwJ>ic=`?JITaK5)M?`!C8Ku%7*q{yfaE7D{;3*YCj zd(NF>XmAkA6>bVV&fI`$kln;!5my!&p&BP}q8;lO`3RfUq5 zM=t+ZKVN^2$K7LS>~?w+-fos)xa}1EG@Yk`eN~v` z4!L|D2Bymn4;uZYCKxiv?Y!(TL9G8zFXIEnxjY9Y7_QeWcQRmW5Szeu=!V6`S&w8U zb?@?FaB#F1IK(|Shhw731jz;!4uSrs`EzdSYtH$6PQ*c*L#HCcemAjk zSQ)wJZus}&Sih^O=reN%8J2zD9(^^*eXsrN*@l_(WwguBozY|9uo2iK)3Wj0`mles zpT!>qeolTo?>_H?`d`!DPqR$7VsqKba^g_N|KI&aO{qWF^R7PsRC=lrgM&p}`*yjii=8^h)2!H9PRp69 zCGa!Ewa*aQX&`Kp$C!BWp@Bkz63cA+oc}kN8MYU`-Op$^=UAFWIfDRmvAM#P*K&Kg zzg+g)D#^mUXv^uX+%Fz6Fh1JI&%pl2n~Nc#W&55)={Z}B<0ktji(g3ZIXqo!@g#vY zrHrvDS8hA*&%3P8#K08WsK9nWlw%P?j@j3+%D?Ovy3Pc3#(&a1P$8FaD`?R(!Cy9w z^Uvq=?mPCd?|)na>#KCJ<;PoFizD`{_ujv$m%!b$nIT~ITL+Ke*Hu!>8E-T^umMI@ zRqnEn4oIu-~E~ZmY#AYle%51OMqL zb}+vPDh{l@@31?*CzbW!sZ|9bx~~eC@@BPnT0KaxRQvR2>6az_%QrPB++$Lh^_}ZL z#;1L+elGj0^3h{@t1vr*wW68-f@d4c4{Q^D&$O@8=O%Zec8h%c#7{FAByI#Pw$9V- z$d*Xz{dZAH^&0oIYw}-z+RS5J%=w1x#~QtJGxN6p=jKPPz0*IJzf1=);T3K F0RS;GDEt5b delta 1041 zcmV+s1n&F55VHu7F@FSSK}|sb0I`n?{9y$E000SaNLh0L01m?d01m?e$8V@)000BX zNkl*=hXJGn^$R<(^o|KOI}SxX*s;}f4lo8U>AU9e@xuC6NchQB@VL6h}J0zl_C7g%>AgZ)&3C;)r91@%o0BlQeLO|u4 zEJ$ohaIOVJ*plFkfT*HzY)EiIK=cyCAwhdSVCsf9BY%tkgn0SMKYYjSqO&cGw18G5M1hYRZ2_z0rQn>^mSCg>WLbiK3>X{^&RLaUCI+-1 z0n=aI-iG{%4f#sgY1x<7dto^wM)2Y-8rRz&6JMN2?31b;XESpR>}LHo-a z%?QPx1Mb`}<>ogU=`p3{{_f%+tT&|Sl`5e>N!F+rCyt4 zji%aU0L}b<0TrszAz5*iq*idY3)qt2bPP~Rkd;<_)(XxC!L%i0Viag3L6=Mj0BK3c zi~wM&-^XDWfW+y{Z1ekrOiN%F(3hATg?|uPtcytr>;jM{z!W(uj-%NfW2PiH5d#Je zglh(HoE>X^+nfmrP6&unYe<@W`059#^S0SGheRnVjC2{+4%mkMZSdMfsv@C^WC>yc zc9Eh*EPf6@N4JQROvK)PpjQWW0jllu07(<%4X~}Q5qit*iGBmus+8*{>AXAu015yA LNkvXXu0mjf*^Sh& diff --git a/Resources/Textures/Structures/Windows/clockwork_window.rsi/cwindow5.png b/Resources/Textures/Structures/Windows/clockwork_window.rsi/cwindow5.png index 6bf733f81ae79b1f67254fc910195ea0b55cd8ea..89c88d12e2a608fb0475a4dd93453b5a43021f58 100644 GIT binary patch literal 2060 zcmZ`)2~bm46nzPSL=<5JajBMXs4FHvq*x$^B{6IkC<0=z3Wg*=0Wbo9-&$g#_~=@!8+pDK_|6E?L%!PXt9|5EoP!C$!<4kz#&GVptfMfv+ieH@C*9-|=yn zEI3wy1B%U^K;9VD0)Q1FiRNScuuzr|O{EJ&Xo8roPL)|$Y&8pCriw8Eq)tVo3YOZ3 zYC*8@wb=|)Aqxac@uBj=BA_{_Tnv3jXV4i`Ut0)**m6-KE0PyDK*x7J)MN~kv0zxG zQqfi4(ouO5?C$OD4KtW9lS#u7G)1};6R2rYg=@c)_kMU{g-|Y$VG>jdnf(e9P$lL= zrJ4f`w*EXt!ofH)r5v$D5eZ>2B2E=cF$L^ScZWa6!z76xGL$L?cq;`Jn#2t%ZpST2*}wPlIN90>Pi z#HYSK#GWseV7~7id}1EL8ge%*jvP~=@|0-HJ$w-Hi;w{~{elju&;H`Kh>usluPqxM zd`Z5x6#@As07xz&JWjNl@T90d&&l1X;bw08_8Yg+4(HA>>QZQ0TFk=T*}A<6+p>4% zzxGQOO15PuYtokPZ8~$U?9ghzXE(ZE+V9`&mUhnb*s%u2?5f&R_r%r1&xR*fYVW-{ zRrF2Krirfi8FjlZ&X&t^1z=7D&<=4y3_t=?s}>AgrH*_uXjDMzfX&Qepb+UnFbQ; zP5W8LU78N1Zm!Y1s$hY#%^nWVjOXk4x|Y3D&LLB4Udkj_^Nw!FDXS-z-E4q)3{95N zbo}J`3GmamjcDzva;ryaQJo9uq1Rh`Uq5+)OzSk1_S*i`t38-d+HDM^m;AulsoLEa zeF!*@0A36CZh5f;n(rEcZz;DaGmG`!b>#{V0R0+}ljSfP*irrk)dzOv=IkdafkVZx zNw%QSVLL%*Ef`^4n^m-FeCeXD+TN|I>0hPqs00h#cif97Fl=XOb8=>;>%*79&Jjrz zBT$dfyOELr<0Wg3%*H^AUqFewY6S>D1{qBOTek7L6hGSg2N&{YTlrrhXBtM8)GyL4jtYA`^2fJE)qlpgKtgm$5SVUVkfB^z)rGdi z2hTaa`Y@K*c;R~AYhkf2vCSokw00HK6bw80)e$p(VN;&< z%9h;pi%%)3v&w*mWqPvK>qA!bJ)RnQYOM7>Pyg9o=Z~(7$x?e{{F8F1xoRx2AvE_9 zse?UtPueB2m+6Rg!enQ|=nVyim;1=z*rX`|?q^AL`NWwFjSVR@>sEJ8hl>U{9F+Fl zoRrv|b+}>zIBsaMqqIo5`lxsN8xR{#pKjue71lew{4><;R))-;N+KA0jfOValuj(x z+}b`*SK{T(Dn8tt*8I?Pl*H^}X=dM+Y zp2C{pvaRImg>zfkT%%*pEA~>^`1snV@Y+Tqe?ne^w_CCPzA7*`Xc*vfIcuE_I)^}s zQag1im;~|cbt6_I=jPox03s%5HG@ZF!N!

    )y~t`X>T;ELNi8WIhO!u;GerMlzNr__gv(>^ogb`F2t_&ctcak>}#oA zyTgvOig|P_>dL5c?rnNYVH-n3TtZt&q92}HUuMfdmyPw94B~X78OH=Ou63xr!H-?> zeV)x{gW01%MGX=T3TEHZtZO>fSV6y=*2V&y6^q{h4-R^d^+ioZe z+@Wu1bqj;i+KGA?Pq#a8Qd^QN(p35p>! z!j52M{3+QP5KeDHJ54dFou&g@KxhgghQ_Qi=r~>+6#1)R=e&Q<*n?F%MVm`2%s0- cxj1*Ijn`70Sm)P=Q~gCSy#u^zcEn`-A6%GVF8}}l literal 3765 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 diff --git a/Resources/Textures/Structures/Windows/mining.rsi/mwindow1.png b/Resources/Textures/Structures/Windows/mining.rsi/mwindow1.png index 48c34617699d29bd2ba458323de5c3a8d5559e88..9358df081f8a69f3a0449d9c004ba8cc5a10566f 100644 GIT binary patch literal 2196 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 literal 3765 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 diff --git a/Resources/Textures/Structures/Windows/mining.rsi/mwindow3.png b/Resources/Textures/Structures/Windows/mining.rsi/mwindow3.png index 48c34617699d29bd2ba458323de5c3a8d5559e88..9358df081f8a69f3a0449d9c004ba8cc5a10566f 100644 GIT binary patch literal 2196 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 O0000qK@mOno^!YV{@?%o_q+c)@B5Ho zKXWr{GXMb08UFN8WTxr62?iN233hiO6G|TH=K~b}zPumV%;Pc{yr3XpHL^BAy1uo9 zr6HrK)IU-V0CO$$9R*~cS_%MYp&*9}-;z;7SM5Rb-Kv9%rWGUjpEUZ!_ z6wAp8Wbiq;0uvjcb#^I4e=^Ng`k)0Qg z55rP21Su2>qQZ?Rk?nw7Jv}`k7ZOAw5fBf8e2*ArDG6e^!*r1Map+t*TPBdg0*M%_ zkIRaa#KT@VoStZ=P3OsB&+tg&WkLfBhYfLsToG3c%OO{yEA%-WEZ}{}P%M8Z2O

      Mar6oV8W89zM0G=TXzz-;5EfDpa}mLT;c6R;U#m@AXY zklHfvy{G$Yk56NL;EoUrVCwq-pO|N%X1xvBTLvp6vR&bZclaRUU%I>tGcD+>`kXF) zgZN1GQ_U#Q%$Gzpn_F=q69B+e2HiVci5lG2xT}@6_>4vqe*O;6@*kn}x|V~AeqBQV zD|ftTFZ1~$(Y8vBdeJ5SRZO^yzbYec{;uo7hcA_hk!h9Mz%NeM;j4m5P219OtyY_A{9QkVuLhosNw}m372lc+shzd zE^3;;w`S{3Z=jcCS)bT~g3Z_ZclUXSkAn2g_@8>nlB3`gp8|O2QE=rwS=7}GRUQ*n z2+9-3>w=U22^4~?seRX?|Cl2sorhGVm;se(tqzEGJBXYeTe81O>XB^RJzVtQn!-5Y zky%VmgBonbE#a5g)qC*E>>F;`qZ-rtpmCec6LD=TJab}itHBevRn!Z`wMQ_!q3e!- z<>iCwn%u`@#kcMzM&|)nJm?Wg9p|3%frZD}nL9_CpHB2tw0G)s#AFAi$PvH=FySo!gFV(|=!7lL8ixvA-dk=S*Y&6_;JHiGk)GytC4+aD-q9guSWM{un(wi=!FO^{n|#LuygRYpDzMLUh^!vJi` zZ@vd=4jTQOZ`n03DMX!q!s<)^nBw*U$6qp2E8m9H{Ggkpq1&b|GDk+6g z?)d7zV^(b#e8&n@?qyXLFp4_;`>$WQUP5KI^I7PO6<0uIGb*y894{s33x7Hu75%Ed zxWvj?RbNzkGQehW~`>E9ybuP{#ZmD}G7i>%_q^-@>d0>?ANcc7=MPuZM$qtSnl#AE2>U)2uaZ zQ`a2Q`;r<5EcSkTK)Wz|4pCy0mr{BIJFq`+#k0SuoCFO{pc4>w_?3ElTq6!Bul;or z0zEZ#D}C z@G8|Kh3DckYyQ2i_1=b|2l&pwWO<-{fwS!?z`yFv8yk1Ksg>zl{8rm(cNBoFH!VQr zSC^arSQx{r$;`ub*szUFVw>-)EltFjwF^vSoaVx@6xG(JfNAON@(9zn#u=nvqM~{> R_vnBA4BudSp-=30e*y+>Vf_FA delta 3705 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 X1B&E#-RW9=00000NkvXXu0mjf`z83~ diff --git a/Resources/Textures/Structures/Windows/mining.rsi/mwindow5.png b/Resources/Textures/Structures/Windows/mining.rsi/mwindow5.png index 84ce6f1696f333e1fae363ff994de7c54c7970ad..6d1ed85f336f952cd2b2b79ea7493bd2027c1de0 100644 GIT binary patch literal 2215 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 R_vnBA4BudSp-=30e*y+>Vf_FA delta 3705 zcmV-<4uf59&ghTmgWD0l;*TI7}*0BAb^tj|`8MF3bZ02F3R#5n-i zEdVe{S7t~6u(trf&JYW-00;~KFj0twDF6g}0AR=?BX|IWnE(_<@>e|ZE3OddDgXd@ znX){&BsoQaTL>+22Uk}v9w^R97b_GtVFF>AKrX_0nSU8Ffiw@`^UMGMppg|3;Dhu1 zc+L*4&dxTDwhmt{>c0m6B4T3W{^ifBa6kY6;dFk{{wy!E8h|?nfNlPwCGG@hUJIag z_lst-4?wj5py}FI^KkfnJUm6Akh$5}<>chpO2k52Vaiv1{%68pz*qfj`F=e7_x0eu z;v|7GU4MZ`1o+^>%=Ap99M6&ogks$0k4OBs3;+Bb(;~!4V!2o<6ys46agIcqjPo+3 zB8fthDa9qy|77CdEc*jK-!%ZRYCZvbku9iQV*~a}ClFY4z~c7+0P?$U!PF=S1Au6Q z;m>#f??3%Vpd|o+W=WE9003S@Bra6Svp>fO0Dk~Ppn)o|K^yeJ7%adB9Ki+L!3+Fg zHiSYX#KJ-lLJDMn9CBbOtb#%)hRv`YDqt_vKpix|QD}yfa1JiQRk#j4a1Z)n2%fLC6RbVIkUx0b+_+BaR3cnT7Zv!AJxWizFb)h!jyGOOZ85F;a?DAXP{m@;!0_ zIe&*-M!JzZ$N(~e{D!NlT@zqLtGcXcuVrX|L#Xx)I%#9!{6gSJKPrN9dR61N3(c z4Tcqi$B1Vr8Jidf7-t!G7_XR2rWw%BIv?Wdily+ylO`+*KY$4Vz$Cr4+G&IO(4Q`uA9rwXSQO+7mGt}d!;r5mBU zM0dY#r|y`ZzFvTyOmC;&dA;ZQ9DOhSRQ+xGr}ak+SO&8UBnI0I&KNw!HF0k|9WTe* z@liuv!$3o&VU=N*;e?U7(SJOn)kcj*4~%KXT;n9;ZN_cJqb3F>Atp;r>P_yNQcbz0 zDW*G2J50yT%*~?B)|oY%Ju%lZ=bPu7*PGwBU|M)uEVih&xMfMQu79>|wtZn|Vi#w( z#jeBdlf9FDx_yoPJqHbk*$%56S{;6Kv~mM9!g3B(KJ}#RZ#@)!h;8Eq#KMS9gFl*neeosSBfoHYnBQIkwkyowPu(zdm zs`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMeBmZRodjHV?r+_5^X9J0W zL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0?0=B0A@}E)&XLY(4uw#D z=+@8&Vdi0r!+s1Wg@=V#hChyQh*%oYF_$%W(cD9G-$eREmPFp0XE9GXuPsV7Dn6<% zYCPIEx-_~!#x7=A%+*+(SV?S4962s3t~PFLzTf=q^M~S{;tS(@7nm=|U2u7!&cgJC zrxvL$5-d8FKz~e#PB@hCK@cja7K|nG6L%$!3VFgE!e=5c(KgYD*h5?@9!~N|DouKl z?2)`Rc_hU%r7Y#SgeR$xyi5&D-J3d|7MgY-Z8AMNy)lE5k&tmhsv%92wrA>R=4N)w ztYw9={>5&Kw=W)*2gz%*kgNq+Eef_mrsz~!DAy_nvVUh~S7yJ>iOM;atDY;(?aZ^v z+mJV$@1Ote62cPUlD4IWOIIx&SmwQ~YB{nzae3Pc;}r!fhE@iwJh+OsDs9zItL;~p zu715HdQEGAUct(O!LkCy1<%NCg+}G`0PgpNm-?d@-hMgNe6^V+j6x$b<6@S<$ z+<4_1hktL%znR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX4c}I@?e+FW+b@^R zDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i&_B8C(+grT%{XWUQ z+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?SIDu(gXbmBM!FLxzyDi(mhmCkJc;e zM-ImyzW$x>cP$Mz4ONYt#^NJzM0w=t_X*$k9t}F$c8q(h;Rn+nb{%IOFKR-X@|s4Q zQ=0o*Vq3aT%s$c9>fU<%N829{oHRUHc}nwC$!Xf@g42^{^3RN&m7RTlF8SPG+oHC6 z=YM0)-)awU@466l;nGF_i|0GMJI-A4xODQe+vO8ixL2C5I$v$-bm~0*lhaSfyPUh4 zuDM)mx$b(swR>jw=^LIm&fWCAdGQwi*43UlJ>9+YdT;l|_x0Zv-F|W>{m#p~*>@-I zt-MdXU-UrjLD@syht)q@{@mE_+<$7ocYmPs(cDM(28Dyq{*m>M4?_iynUBkc4TkHU zI6gT!;y-fz>HMcd&t%Ugo)`Y2{>!cx7B7DI)$7;J(U{Spm-3gBzioV_{p!H$8L!*M z!p0uH$#^p{Ui4P`?ZJ24cOCDe-w#jZd?0@)|7iKK^;6KN`;!@ylm7$*nDhK&Gk-1H z0000WV@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F}000A}NklF-rN`o55fXTw*MQKn50*b0F-Lk6iyeSU|xo;Sy zlABz7tLfD+ZoTFkX>PX{a(}xP4iKdxao#RK zMU#R6k$|z7+r2k6{<`#cBM|VO8o)*%V3RC21ZW)tJ`wPa8o)*%AX&S|wSMh_pa=nJ zI=;3sAmqMLYcyYzPB2QPtC0Ifn%1v^NvQ?K{hk{Fty-g*EQVU+e$U0M-Y4WxIR|9c z1M;rtm2tqjriC6*uYcFyl)0Sqg(#mKn`#94SBLMC1w<)MG^PTH%9RPKK%=E(0ZNY| z!ZR;_MHZhY?RGSlwZ|uS2b`W(Ci7o>6$Ai4 zr_<3R4O-SWVK-Nr$?Wn{A_k;&bEVl_Etb*cr9>7;>*f+!Tz@TAAqz<50spH4lWMV+ zJV11eoi?W(0zQ&NDX#}CGnwc6O7H+e$XaQTv3q^W;jPsJvRdB#1xmEYr1cjp+d^c< zB$W_EWH3q55&M!Ls?U9awElu+rqz9cym^EY2uRZ9WmH-=lT-=;X&s?ywT3nbn016M zU3}aL^Ajf-2y)1s2jtBpmAW^$s-(tPH?yLo1On#IBGEK%j^hBB!1LPC_R#_XmzUqc z`SVH$p!5iy=WYJYQPZU0{24(oh)$2vx=EAsTJnI8B2h{+K~a$-8q?~&z`B+-2>u%Y X1B&E#-RW9=00000NkvXXu0mjf`z83~ diff --git a/Resources/Textures/Structures/Windows/mining.rsi/mwindow7.png b/Resources/Textures/Structures/Windows/mining.rsi/mwindow7.png index f0ac5b6b90cac61eab3a5f099c67ebac9aa85d88..24733c9b3e5ed0233f6097eb7cc79aa6228a6dcb 100644 GIT binary patch literal 1813 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 diff --git a/Resources/Textures/Structures/Windows/mining_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/mining_diagonal.rsi/meta.json index 439147564dd..7d12528bb20 100644 --- a/Resources/Textures/Structures/Windows/mining_diagonal.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/mining_diagonal.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Made by NULL882 (github)", + "copyright": "Made by NULL882 (github), transparency tweaked by Ubaser.", "states": [ { "name": "state0" diff --git a/Resources/Textures/Structures/Windows/mining_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/mining_diagonal.rsi/state0.png index 54af8484b2fb8a2470d3c4b6ef181ea35039810c..c7e717a6e70eb76e89d526f351f1a2263a10a84f 100644 GIT binary patch literal 1299 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}e5nzhX}-P; zT0k}j5QD&_;K@Lev%n*=7^vU~2s2LA=96Y%U{1*li71Ki^|4CM&(%vz$xlkvtH>$0h^0y1+`OA-|-a&z*EttxDlz$&bOY>=?Nk^)#sNw%$0gl~X?bAC~(f|;Iyo`I4b zmx6+VO;JjkRgjAtR6CGotCUevQedU8UtV6WS8lAAUzDzIXlZGwZ(yWvWTXpJp<7&; zSCUwvn^&w1F$89gOKNd)QD#9&W`3Rm$lS!F{L&IzB_)tWZ~$>9$H0x+$q?iKRIuN_J_bIXO1^5EZC8A)=@T+UR4k+Xm!gtH_|#;{2Ra zP?+0Un%RJZ0YwlI_z(>d*fbyuqH74q$S=tUrlq3HWY4^k)S`kSV7da^X9Tqlw+eK# z5O#;=WtP~%3_ue`(uEW+R*pp_<@rU~A>cTG1Rzdns1cCBL`s*CL=O&lV5+y{veAd< zAUiI;N0;w;!X??oX$kfvyZsH zoq_d#f%1O7kcVg1GnZOCR}K^Lf0in2c5w5XcgGveb_f{1WXKf%)5O30wCSz}p9a1@ zJ%!VZvVY3#_!JtBG_ETUV)uD)PS&8+y7U0syEBZ@JBl8xSJ~3Ke%tTsPfK<i!=6cugro5XNTpR8@TSBWc1o`jWNrDWr0+4 zht#@B0=Yj_52)LCPFlrq|HCPvmWIc93ez3fr|(|+v@w`ByE7+WQptXG;Rab&i+5~+ mv;4eRnChJVt~*?4UctP{wzuiaq`jq}0?E_W&t;ucLK6VE-m69c delta 3031 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 TjY~EZRAhO&`njxgN@xNA>o~XB delta 3070 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 M07*qoM6N<$g5ll3KmY&$ diff --git a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/meta.json index 453a3797223..8477687a8c7 100644 --- a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github)", + "copyright": "Made by brainfood1183 (github), transparency tweaked by Ubaser.", "states": [ { "name": "state0" diff --git a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state0.png index 60d1c0421b3fecf74c453715810e8e5ffcf32774..0d13c29e14881ed4a09f4271884ad6ccb4de6aeb 100644 GIT binary patch delta 1110 zcmZpve#0|C#g?%+$lZxy-8q?;3=9l>sS%!OzP=1vKsE;ugTSTW$v~2`z$3Dlfk9&y z2s4UXDQ;q5U{0H8B|WiQhcCi6K*2e`C{@8s&p^*$;@7&#D;O;%FJm%K_ADq#HmS%h zaIGk@RmvzSDX`Ml&jgC;#BtJK`q$o4l zGp{7IsGumdBoU(8MjvbfRuz-`xkM-5=Q1=$@~xF)QAv4zQFaK}XCSBAAO{AD^yC%X zX7z`zMSNvoU~2VraSVyzJUZ=c-em`o*7Re3b01t{i%@V;VR8D)%vs9*{xFlG0QbDb z8&VHyZ+NU5QPRAsX~KpZ5MSA+^EdB|MmW(zukahvah8DW_8$3cz^D_ z=>=vNK1QB7_16PAm)RvHYKoAuNCm#m+5$ua5635}~^ z`8jKEZEHB;z5K4y`Q9I=)*oeiBvM1%omVVxpE00UJ?FeBq`x$a_ z%8|Hk#@RK~Zs_M8P+Q+KS3BzU%v)c=t0y5^#{MNq)~ zWK4;5me}8Y!C!W+tj-ab+ud=Zcgnp}&EFEOg!ZnQbh1@(*^*g568q)=UGcK|oyl93 zLm4l{>ere$Jh@WfcR5b+6z`vM?hcu|eK!o>`fXG$YS;c*`E8R49ak~xaogp#d*7vK8*F}5)SZOUhb4Jao((RQy6F8*_k54t5BxsFqu{a!P^Nn#5^Yd)KTE!H5=1*T#YR@I}zu#8&yE>5HSk2Ss{{rvr#ewU>)RGjc npP0%S>y%Ac9KKKXP5giM(zA2wcjuns29*+?u6{1-oD!M<``OGQ literal 15748 zcmeI3e{2)i9l(z?OG82z5E7&lYF#rby6$}Ev(G=Sj`_jFzd0QSnQR(GoVYcXnbs zFV0i6R@y)BB>Vh*-}n7~-}`*u_v`!Tp0BN0a!=6@iU@+Zr@G2h2kr*_Q&<4L)y~cv z;5Ic<)ua+c@l5?Qg?P2MlpweRa($!L==}*NC?OLsDn7{+4@JOif^aQ}M|h!C(hNQ+ zAcxD0SKr-dG{|C^v4Qo{-blIBB3E@rrKO!U^+IQ>;1rDu+(oW92ONYXjW@(Y!LZ83 z%Zy3C9QdsdQ$|B_iq=|YT%-pyG&PsDu#xQaj-9_M+D=PZAI#1B^sd2PN$Qi8H!;@ zFoRS(!WthZ!|L3WlTkk&Nfn}UM3a@ULHEo1ls2u*Xw(CxuaSL)BI!V3b%Y(DNX7XG zWj4`NE+bJ$+eF%;!Q|3Jfs%q!ND6Bzuruehi?k@3qP8d#giNa^3=DGO^`>LzTyH3p zGqkEzv;zbqNOM}M^&Jt3s*_ZuEh=4)Fnrii86$Dl?chGkvPKawVul!LlT`#YN>B&S~XQgf{(H zFA58i3X-8_B?+V|S-6Y&z}V4IMNoF9+J>kIvdCqEI;?(&)hYQ&J1sg$vssczr@-1s ziFJs))9-NF^jzr03tVK@rTa~ej*XbT9n^aDW8n32)nQfR!FH-WZZKey!O8@QcKFRs zmUPgdM~P0Wll0jvHqvT!SRGD*w$cofJR4)pGbY`beI&SnRy$V`*L*-AfKP z<3d%*dfq#rH0ZfmDyJ8aiRG@T8s+8F? z9W@5tJH5+)|8DTkszIo#^AbeoJc4-US%SDV4DJ^RqKzhqubRQ@uCEZpY-RJ$4pkCF z-XqnXMfLH)gUg<7Jylz}@~r*niGjbo$cXc2iYJ%9>%4R*(!K0jN&I4W>8cz3-roMc zf|MVvDkM7AyO#`~XA)QL+hJ;O&_Akde&<+l)0TXycj5KleRlTr zf`W!EwkN+_ecv45Vv^LhTup{}U7yZ21~K=Gf0;_f-B_x#4^+xPT;@Jajk z_BXZM-dr00+pjG<*DPllbK}r&?W^7%e1Ds^=aDy;B^sXbUs=egU)MgpYtGi*!~2Ri z%;q+BCDiQ&#MJZu>Mz{9^|PAGiO*lJyt`ts?{MAh!W&hW?#+|WZ(Z`>+$qB**P6BW z@7;Lkf!eynVPad^ild%l;^5(hhSMFtfB#VaqruzppWohjqJyzB91x_`0>zZhF=aZ|^e=T{wGR;a|V**|lMK8ZrOGfdb#NbU!$9M0G`t Kr*Cods{aE2tbMlt diff --git a/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/plasma_diagonal.rsi/state1.png index 1ae08dba8877a734110a8725e09d327a12edf277..7469c63afe4a30cb3fc6677c7a2e3dd07e55142e 100644 GIT binary patch delta 1068 zcmdm3b(m*@iY;Stkh>GZx^prw85kJ&QX@Rme0>?TfNTyR27yb#lYt~>fk$L91B1pa z5M~s&QryJAz??SGN_t|q4qt?CfP!;=QL2KOo`Igh#IJReS1?*kUdCje>{(EfY*LY1 z;95~)tCUevQedU8p9vJx%P&gTFD^;ZM^d0~WME*SYha{nWT~%Y$E5%RHYv$gC7C5T zsYqf#Ih&%CG%LrPlF7Cll9CmNl|99 zXI@EaQ9)5^Ng_nGjXu}}tSTn=bBRvA&t+(iB%d& z&FT+bi}=dGz!c-@;usRad32g%{w)WA*7ECWY!lU7Y(rhULR+t8v-}>YBDt0@6THl$)=yz{t&i{G$ z&Q<%J=G_*=?6Pjl$NO_k<W!sO3thgaJg3IwXZ&e#~pWcJf*^2yGd|>@?G{PXPq4xua3R;`^RkfCH=eW#)^fYyzlAi=d#Wzp$P!zM!t#w literal 15665 zcmeI3eQ;FO6~J$>WNa{$wsfS-w5|&bvGwJB?Dy;LhL8Klv-{q5 z-`nga2B8(FRw{msbnt^@94gNALpwreXsHb|L9MnFN-Y)BYAA}ph|-ZMR;%>B{m#wi zPNq8JKljb-zCHKcbI!fLbI;lL&--C}+qY|L7S;d&YFk@E9q4YeK37(wZ)0%qBD#G( z(b8=IFz3tGrwTms*a85=F}1VH>fMaYxji?b8ICe zMK0PTQps3$X^PCk7>q;BG>{!%(Jm3yP2Gs<(}XOlrwxp95)Kz*S6pvAUNN*`Huob0 zd88FBjn07tWILdtr;;*k?nhf$RB8978Yv}bk|#?u?b=~RoyN@46K0zz9;Q}$HZ>ei~7qNk1P{48!#%6G{d3`r&o3Y_3zI5#6WJ9)S0 z^oqRmn;b84T$z*HOw31ESJcQr$p?=Pw9v^rM3-B1xXXQ%&BT46`cWiPnvs|Cxn+J7 zS&Zn(xMT*^xYP^Tgx2e4OM_)Ii>FF#(qnoOEei%6ezwwZMXQi5r>tY$sL9Yk$uP>2 zgi@6)+~rd5A!K~A%gsQSSCM=Xug`7e z!YW?mqO>l{Z+3KY#PaQs)@vPua9C{B3{yheX$=L@K)s4q=J0V5UQv9E!1r(r^f=v2 zk6ZRKG7kk9k$HjVmF(G=Y+hPf-gO~5a$R}jZja*RdjzkwacSC(=hj)~Y)YV;k}7KF zQmkx_wHF2LMRF<;xrcKxPM1qy+|cP{Bw2Pc5!vT-IG`kWojrxURB$sTREuimeE>^? zm77)YyOT#tdCxZ9gp@R()m8%bLSHF%YBaTY`Lpdwlw_-A2W6}3A;LXrw6rYTOr4s} znIXveFEgJ$Mmh>LQrF12%FdeJiJ?c#w3LL6y{MjM($I2VC!68!D_03(l&#E|`Uw(Y zNd2EI4Ku5%|0@lZ8}DbA1`BvDx*V0XUZ@1w!T~M}%q(-cd`_;cLbXn%k!RueAz2!@{83<#M?EEIy1|w5u5y>k6spU(2xii33H-+TeCIHAq1RE<=)KeV?CJlacUEn3 zOGg-h!6g7}xf6i@Tt@e^0Hino&fSV$cijoV)%t@QpIZSy)tS~%V`t{oLu>xfHok0r z;L`S`&u%u6X9L&Z~JR%s0IxFx;s7BCb!*x?v>H* zKkZ&LuXS#neV#abLfHJfn{T@Ea}O?<1-`f|U41Yzd}zhMqLWWPb7#v-59|j=@15m- z?~TK6|MQxEtnB~#(RVL)zayMKcW7hc_cw1{e)~NSFR49$@)uY9a`e4_-8Z47zBcmA zPfnhOr_L^w?>_VQO;5V!ymagx;q_y$tFxEw*thw8yZl1mpN)rqeASIN{6#yqZ@g*U z-h*(%>VK~R`-lJbz(=E1^HT?I5mvXwfj0J)9V>U7aw*#vyYFc_zV5^(Ft+~0oY=&k z+PCiAx^azgg1hw7zQ*1A-rD+9fAzvAo>ii6UiHfG&*aN{_9+V=TR;1@^zF6Bp8&BV zFYKK-c?6nA_q=@k diff --git a/Resources/Textures/Structures/Windows/plasma_window.rsi/full.png b/Resources/Textures/Structures/Windows/plasma_window.rsi/full.png index b20d5ebd5efacbed1185a649c410e9eee61d80c5..b27e173b7ada827744bc7f0468d28fd1ec0acb1d 100644 GIT binary patch literal 2843 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 Xo3pg6H;px1`Z0AUdb{umVafjm^rEZ; delta 1581 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 XgPS^ntdeaE|2RM(J%m=ilDYM77EP?w delta 1079 zcmV-71jzfI63YmXBYy-ENkle_%7dXY=7YaDVgq?Ii%&tVtvSLB)L- zX!0xVhj!yTC!lvtBm9Q}y}qFo02qi-0F?hxwcU1n=LGD1H9B6tj8+_&2mn@pMPYy6 z^8sM_XM}6_hNCLGEu0f@ba1+VHsj^yhJsnmB0wMz=%a(vL6zNheCGu4T$CQEApi&< zX&V8=b3v8ec7J^51Q21h>0k701LIpek^ehdLIADezoPzS?C*~j5RhI(QU4;l9a=zu zTR3-u0A{KF6u<(&m315Bp1sKa&S--Irm1#@cyUR48M_tQK)}qhwL%*RaEh%bz&g1) z`1<)bHlM%u{TGjH=U{`aSHO+{*AsA!ItUo2`qP5z4YVpz|7Wd zkh_=koujTTkpGXCwfVkt)I@;vvu*x<($Cx7qlPa-`Nda}P;~7UTOS3i6<`Ft^mWmT z%H(Bc9WOEKhBW~km?dc_QbfEokO&YqLZk=^&{v2^la$%&ScDC%2_Q|s0e~1l^%VM_ zX+N(HrK)3l@op0Fn7&NC4np)w;~)8ukPL zXVDvGF|k9HP?CiaARtW~9-eH5kKG)n&=PHwxsX; zouu^y?%cfld+t^)(~IN22>LuX;pFb%k5@k~K7R+m&tL!IJSS)(4=8v_%E~*%lB$ z$OBe04q=E$tIiUzz-9|%3z&Kk59fWLH2|FO>rQTg00k-_fP{r6clyKdm>GbK^~AXf znt$2?YXxL|z_x_JloQO=@ONSGTo`nYCUWsHN=n!1Feuy(5j3HIq<)XI57?$KSn31v zVQ|iY^R3XZ56DIVF>jq8DVVXI7&t}~1fX910Jwciw@mzGVJ%3-&j=I45{Quw+4SK1_a2nJv&g1r#A$LObUK zJEwrnEc94iCN=M*0?7YZ)8M+-?@jd}YdTj>@0J1#jDRH!UqyU$Fh9-wJ_ta;u`u`! xDqxofV3!8~yF6f*2PD|#0oCZF0-WUm{{oTD)vp-+rab@v002ovPDHLkV1nA)0NMZm diff --git a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow2.png b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow2.png index fe379e2fef50ab07c64a4f9ff75b663ada0ee10f..9a55b8c3aff60f63f31c71a75735bbdde89f2686 100644 GIT binary patch literal 3469 zcmZ`+3pms3AKw_wL}KE|Wld5t8#!ccj7sh#X>vc?FwM5MvB{-HqTH*aa+e&J97PJb zQjb4tN&c+6qme`Du9)X}^%PIDYg^6o!KqEd59>kSoo#} zTCm;_BjK=371kLn9B*w0J4|DcV0v08Efm}k0)xRY45Am>{)p)}xL}8c`>@TexpM`407X( z0EYTkm^qzA&=oLslp~1eTYiE-37dYIEF$s;1*8rNbr6BlLFgDDzvm|iA44RdS!5Q4 zv`O6ed^Q<0rm+4l-O%5lfI{A27ESS_dSl@n1d-(B=}%$74e4w$l}KajV~}69{*L}C z{ku^N@?ZR8HnK)L*^`(wivI@hhB|t>m`yJJCjILKz9R7diuh6bPlTNhjYShw6oX7K zr?N;4Izv!hUp;>F_y0BiY3ncNC#htXq0To0{}BIx`r&lY#tasl#yI1!c@lro_ayJ;4K(k2L2Hv_G7edY(Cp+F;_ z>CwoH)sm3)f}z2JZB?<$Z2lznxIKQK!}dGsuT8d<@*m3Tn0cS+WxPxY2S?16*zMVy zHPzWzrR)a+9(50jp?!7*x8#|0!WYSZ8t20fCvbnd2%LkJw%@*JHxK}g70Jg(T#1F% zS*O_xD}~7os%KCS1&tu;I|(YyZ z`Pa_J@yE*w5<%Nbui99~)!La%X0F*;u-|8?&a{|H4OHJysPj^FA4$ht>a10diTvZP zTj%-HFB6xq%pfCrL{)B)RKX}`NF(~NP{@`LdReGisJKYE`l_yt@UXDNJlOnIVezAO z1K^*GBEtn4EEIddp(zqDuCBb-n~ib67Nu#DA=UbcIh1^N*u5a3u-rY{fEwdtb&e=M ztOd7wkXHZN*|#~kO?hW_zlD3hMYcG!_TBr=c!{ycVPa9&6um`;aM!u^%iTiyzK9T` zZcWil-J(R=IpsQ&*WwI?v+2ZwtL=z4h09QZ)zeNmVC76sK%EmviRkU3Rr=>5P1!cyJ%!JdAkT zRijd`B7n=6mK1MVUO5>5ri_z-?z|tpC<=iuP43EMOSNHF)*l{MNpW9t*8@_eeG7@d zAHB1K;2fw6V>x=>yA z=hRulv{R9xQF-oNdCyp7l>|ND)VL9M@Q~q`n)FtWgZVirnEC}%Tf=b8-hoF+(3!nf zRX8wf%aHb<|HpWA2Dk?V8kM}Du7QrxfCn*JxJjQIcWr(1_T+NT1bNs5gcW}%p)P-x zUfy!}_*lW))?8yfAb;D$B=h4>yqyKFTs{zT30ez^6MI@B-_|-FKQ4J%AARuU9`0** zG1X(fH!S=2wnL}&l0<{&g5)MTj*UDf%1qU-9m}=1AMF@wZ1;BL*m^2>SkRkZl(#tt z4U4I-KvUA`inSqYlgA7CyR=gPegm@r13=x~3xTvbUPW|-`|dLRHjkApc->A2FF0@9 zf!`QUCCYHM*Y!LHPiLq;&$C^R(~=(?eAt(`=T^hW7U!DfZX#G3WxFF6GU~>Dz6TJu z)@Gl3w^>pl>y_{|bw?}7`z9#6NHgzgdi3=~>f})4kUGCBDTQK+*GvKYY~OeUaHA?= zqDf_n&c5C}vh9(Ifzh*(MCxzzV^7XRRAC7X_vI!p3eBWE>`@cxofqDn@j*UXr4+Ge(w6Nl(gu|WOwn41UIGs0nh4-zXWHO z#>YdNP^+z4H~$kPB3{d;CnA9PZENLPLQk^O}RCyB^xv-iy;ebXS*xL+R*9N zI0b+2UzuIHz5(4wE+lkz5<_-hgye!&A zT38Ky`6c2gJTIE?NYW=73$&Z#4GE{YD@jYdiCd)}odEMzgo2E37r%e%s8kzE~e?WBPd zj3%91rz-jYLLO?+8SZp3NO-Sw&v8(l2sHkMYFm)zzK4%0POq*vSzXWrm79a}oi94x z&uW(rdYv^agX!?uLPzl0erKe=t2%NU-wbBSP6EBH*li5_k))dfS*}@ z`Q~T8j{VdZYdU#%rch2Oqyp`#|IO557k)uEv+3UQz~d1nIR^REWVJvnU$uc%V1aGm z3pL|)CShfSpSpf%*_Aywi3Z7&<;TT$yY4E}4Et1;?c!07|HvJBu+td8m%M*% zPezFUx!KpvjYGq79}3p3RcvgOt=d|~qf2mr3c(YOb8&jMOUN7lL2)f4IQntyMcwG9 zb`5G#jQHLA&FapTb)wa|j+tf7ths8;=l>BYy|hNkl`We zmmu&Vd4(WvkoU+r$SWiVBZnM=+;a<($chChP+*y~WtpZ(&P;b#4l_%xNRfy<6YoYJ zvEb}X@6^=SRoz`xJz~Z9?K^+?-Bs5Lr2rbf>cV9i#xEZJ^nYh#AUVayNzSwIHDHQQ})4 z-pHSR^mPq{uz!hrr`{6iKdLMU5$00Zl+sZtV$s)#e7tfMWM6#{R)$xNcsL&E5>m- zGN4xU(CnwKbnXsU4|EeM-`{Q>V3=f@-H8=WxT4L*MdeH5^?1>10IPKUbG)F}OXGEE zOEp^d*nb<0h9jUTx=tUbJD09sqkQ`$jb09~d=>z}{gTQqUx^{1g~Xz>9ibT2j!TcY(3;rp9E`;6izmI;8ge(-R<&OlfPc z-o(AQ`zhD0_`W5KCZMXSxUBr5_Z2y{nZ8`Kb8xH80IUva3fWU&^g1AQ`4pCvms$XY z#eX2@1%&W6cQgQDQ>nDmCN{n)MiWr)gtz)5`I)~DW^Ws|;mu-^qX&v!#kqyjxht#( z0i(@O!=F_)lj&25AgBbDH~tX!_N;A?;)md$8#Vl6P5fM!3v2OOS0PQ9-e z&kD-TK{l)O1;#C_0QA+6&);DP!Vb&Rl~0AE2`F9pTv7(`Oj1zm4q+yF_7Z|UwSSr9 zotq*zJmIA+C2U!>W4BiB2BQhM|M|V!(C7BHY0%#6$H`@)>>`trz z!rbCwDr_F7`siM>g-x@;VJyZIQ2gD+Ve?r6_2WRZpJ)y;s)R+%``sV;wI6OhIl9+w zmy`9#4U8rrY}?l2*uh1=_V=Qh%o}hVRfHU27eKycj1Pwo%YVhxb?j@s zEb96-UfOUo)a24GH$2Qw|NmV;ky9LbUMgS=o0}YjJCbUFN{2O%Q&T!OI?wa4v+{v( zd^C6?++Y5FUbX2BBW~MwhtpPWzpo-Y?eR)I;^;!7nf0NUp*9!kH%tKSQ_9+<2& zmcGv0`NYX5eb1jOFEJ!P-G7UppIZ+O#s@<~ub0lde3C1G&btn%GU>V6okG7lQgrwH zsu0kYYUuehW!?Rf@(!-pFOn#dg4SXkFnSDFHhbtze_44i=l&ixdU5ea2mr_VXyw!3 z1O)WTXV29|#h8TS#nk16DyJOHN*%C}EayR7`e^2T62w#Wd;7FDH7R@pvDJEifqw54W3 z=jB)Z;4hATQs!(b(y~W?tXU);p;#EB~ilWqL3g1&EidKK##8Z*>%_cYpe$W zZP6lV%Fle?6II*^Z3?f<((LfSIO33&~!bc{DuUIN7 zHb9*aMHG<=h&Z5uT0l_{t%(7 z_)o>m#sB~?H86k{4zE6ji8h6wr95#Lydb3E{wsm^VIpiv^C|(rM8J!Pgd&4ikyye+d@NfS$H6NSMMf4`L4wUh4ixLC zNaPEoB!xH5h#g9Ln@L0J+%R>1YfDO}l{&9O;*2uBggc>=aj?nws6QJ=HN zy`KjqgI~!{Hk_Ii70!_g`AG)dDMXJYWTO_Jc|YF3I3x0_j8DB^GQ#48kPz-D36B*h zfH)G71n#c!j1&3(8S!PTkIB~xco2m+5#S5=C#+9yheVY?a-k$4!gv!OW&B6TM3`|& zKk3l%_BYB8_df+g1}DEI3g%rVZxaAa0Rw5&2nFJ0G&RS5sm)*&S9WhfOoS|YJF0Xq zW5=lxGZ%4RaSh{Yy;YAtf@_KO!S1~%iotL23Y*86mbZ3&^DCz-FIpevXq}RyxcRFp z-=4G7M0TWJIC?m_+w;z#eTr$sf8IB|e0}Y0u+NTN%^{`d8O-p)RZ;pE15Ke@#^?h# z>C2aN>RQigcVd>fcUy2g@m_ z+0gZk-W8vAu zc_&UE^Jux(E^}D?lSY;)OL)v)h!*)p>sZQL!=)ru;$MfeLNYR@6(R%r=&kCYQ4R+} zDwo!tPP^+&_3^eQpv$+-Bogu~@6T?fHA#+i39rOcE}Ib+A)43(#lCPbypN8@RF=m; zNIMJri)CddHM{U6#7}m^n=V{>hdR`BI7nTqf1^3R@XE|ihYxSMwDZP%M>i&0J+ij$ zTdCLT>K%Hp0(0})lX0ol4=EcCH-0kR)p1)$pyu0R_tCZW)l$knky%BZB)71 zv)*I(aL<7)yUbPG22ns4VY3o%**|dR-_wD<@0VX#=S68l$$dtB7lytmGgvWi%*?XFL~mbNId-t>t|s+V@7vrLOa zo&slDoQJboWR%*$rawcSU+)ik)U8Xq?D{h9X5%wJ^Y{#MyL0aH&^OLzPuB*6XUoON zW(UHK?SkcV(^Gtzj5){KmLV+Sl(x&DhDRmSd*YI;XPI2wP$fp%)haTx^*0+VruZLl z{PP$A=L=P^pP|r0#6leQAu?<$lmu$;gk2_w_2vx`A0vyZmDPHt}b}^7rpRA z!tUGqQr9Z}D8}Jq%EU;8wxs!+A?gh;v-a239mB_p>t^&rk%#+l+Tu(LyCP z{oC)Y5NWoeDhsvUh8_P6J-M|fEHW)%fiUw{NX7lE`#NGkRh`R;#$Ldyn=8^`MI2@Q zWv{|o3(J1yn38&J!2Jir?73y&e!upm?Y#Bb2WQVk>f9oeXVe|qm{H6&OAhgExI6>B z^Z1n>ZjEYeVZ1v{n=p|sc8DCXR zU!HLODyhq_SEr-(rL-5RynpLtSl9WfpC`MK=p{?{MQqHY0slrvO-6wr;jD0A0@2v-JWvtC#s@V|9pdm=)P zn#aion>+GGw`J;6txX1Z0(tFf6Av-atqI1S%Q9G@l0zQix?MY)^$C|SZSu;yPczbi XgPS^ntdeaE|2RM(J%m=ilDYM77EP?w delta 1079 zcmV-71jzfI63YmXBYy-ENkle_%7dXY=7YaDVgq?Ii%&tVtvSLB)L- zX!0xVhj!yTC!lvtBm9Q}y}qFo02qi-0F?hxwcU1n=LGD1H9B6tj8+_&2mn@pMPYy6 z^8sM_XM}6_hNCLGEu0f@ba1+VHsj^yhJsnmB0wMz=%a(vL6zNheCGu4T$CQEApi&< zX&V8=b3v8ec7J^51Q21h>0k701LIpek^ehdLIADezoPzS?C*~j5RhI(QU4;l9a=zu zTR3-u0A{KF6u<(&m315Bp1sKa&S--Irm1#@cyUR48M_tQK)}qhwL%*RaEh%bz&g1) z`1<)bHlM%u{TGjH=U{`aSHO+{*AsA!ItUo2`qP5z4YVpz|7Wd zkh_=koujTTkpGXCwfVkt)I@;vvu*x<($Cx7qlPa-`Nda}P;~7UTOS3i6<`Ft^mWmT z%H(Bc9WOEKhBW~km?dc_QbfEokO&YqLZk=^&{v2^la$%&ScDC%2_Q|s0e~1l^%VM_ zX+N(HrK)3l@op0Fn7&NC4np)w;~)8ukPL zXVDvGF|k9HP?CiaARtW~9-eH5kKG)n&=PHwxsX; zouu^y?%cfld+t^)(~IN22>LuX;pFb%k5@k~K7R+m&tL!IJSS)(4=8v_%E~*%lB$ z$OBe04q=E$tIiUzz-9|%3z&Kk59fWLH2|FO>rQTg00k-_fP{r6clyKdm>GbK^~AXf znt$2?YXxL|z_x_JloQO=@ONSGTo`nYCUWsHN=n!1Feuy(5j3HIq<)XI57?$KSn31v zVQ|iY^R3XZ56DIVF>jq8DVVXI7&t}~1fX910Jwciw@mzGVJ%3-&j=I45{Quw+4SK1_a2nJv&g1r#A$LObUK zJEwrnEc94iCN=M*0?7YZ)8M+-?@jd}YdTj>@0J1#jDRH!UqyU$Fh9-wJ_ta;u`u`! xDqxofV3!8~yF6f*2PD|#0oCZF0-WUm{{oTD)vp-+rab@v002ovPDHLkV1nA)0NMZm diff --git a/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow4.png b/Resources/Textures/Structures/Windows/plasma_window.rsi/pwindow4.png index 051ddb5681d8fd7b09d02ae046234981b17298eb..b42ca67a1706840170eeb4a617d3aab4f84c9a69 100644 GIT binary patch literal 2402 zcmZ`*2~<wwPRri4?z{J%clO!m?0eo?FC#2; zsV#Cg5&!^OW-uchUTMZ@X%0Wj1e-hI1tAY#8UUQS;qn|lptvk1FC+x;g7=p2G>+DY zT=;1v4PGq=0M7%)iEtpfR{(&CSP;pASRpG&Y>5aP$B}I0VpSsP1d6O8!CMg*ibJbJ zLb05rqF^RGNbufh1~KRf7bt;(VTFXDmq=t>v@aHi#bKyOG#X8oad@O~M$i--K2b1y z2$GUOP^na6m5Z+f^Y_8weegu^Lw#`iWDc7I2_PYN zLbwn0OejbfLZ4fW{zeIe0;94dVVpRgf>HT!xV$)p5W-NUN`aUoQTma=Nw3e*lh)6J zlEJU=lZ{oAR)=%t5~0GVI~DIsAWvxVnf2ohOd?ocMSN=g5)sCiKoYp4WCAu*3~^;r z8Qfiyj8lC7?D1u+kK|Ee0Yt@51^B}J3F?#EA<<=!QX)%;oVbaPGXA5>RG3LgKk3lP z_Mea+?tdzh41V~QsK{3uK`a26$(am#qzciqwpr}#Xa7v9oac?tAxJkm5=|AF2OSZH z1hDp8Ug3yo^OC{!TH0>c#O`@*M-YihdFk#M!L!@wg{EiPT6<;qvkk1KP3QMBmOZFy z-|632^t9cPhB>Q#~-GO@be8>?3J-)}jcTk2N3YoGe+iC=>q>M&aB ztTnAIecQ*58+IQ_{3U2Pe`o&ueXh?;emftn-I8Zm+T*bn0XQ1cS+4>jH_FSbr(a*Z z^kr7V=EXAsbQy}_$OS8!IJ@?0WSu`;FqcOEmyA|8 zFgp+_yvDXY!g(1%cQpg-1R(pe#5VoUn6#3^ro7pfT_r8wwA>!R7t{51oZ;EuknfMp zeeO)q1)K+yqC@nR=BXBd?T@O6yx+^L%4a$5oP((U-WH|LAZ8Wpr>~{WI`n*z! zb0PY-ru9h{eh7waEAzB_kfY0r8=?zVdu_HB0&x9{ipz)fqu#GKCEt6O)PjgF$U5+j z*O1tMEjBjVyM4tjEZAq2w$@}^`LsHW6GM1$} zXzVkI6iEpkugq6I(UJQ3YXT;uJxy;;7VM;COG4x3%D z((XX1gpEYFWT++I=6=}Eh&j(9TeBiDFbTPrHRCQYUW$H_VId0H)T(0(H|r9V*S8! zbc0jMkCJUeLG;Le9ru@;^M79X(~fmZkn)xFCh9IblE(X1!|hyJ&XvBqPC$46r9(HN z@=TWpgc&wCGycK+btczF`0N#VZg0+2lt1!*YD0_nrfzVr>L|J8MSb)vqO%*nx2rcM zyIS(T>D^P3g8RZfFLi4nq8`zo@2SEj$c%9YV*N%eD!9a-6_Sf`R(*=tNf};8=PagwVUoU9^c`m z#{L}b-N%sJ0QwKb4vn8}ZAyz#?l?Y^=Wl|pL0XO_yNdFbkA~^|fB>t9?WbSQt+xp_ z4GxH7(f+9Pf7xvyv_}DLL!AWu<=QxFP-|J@YoFtQSD4d+Vtae)7a#NW+>#uuIi9rG zBy3zej@8~%i%Rm4w2su1k3CfDF83zW=ak%fg>86mcJzAXo3Zz`Rwodws;p*%W*E7} zi{R(b9-4OOf3Gv6)|4O?*pDI$D?H|(lWt#s>2`tN;3H&9hc2eem08^AeP$EX9Q5j9 zreVva@sokw4`**ELbu&is27wTypsN~^}CDak!felrmtx|T7@yx2&A_8d2wBXI}>OK zX`Uqep60e4pA??pkK delta 1141 zcmV-*1d99O5{U_rBYy-?Nkl6!xN<~_!~=u~VJS$!X05Q<$oOMEx;WUzGwZM2?V0r8_7P$7qp%aa7U99Hhks0S-3M2%fBa+b8yEe? z<>C^dn!@B|Iu#>Eq4%~F*Mk6yQMI$N2vJd}&0M8hw(5Ei0HLN5W<#5rP!N!%XvGCe zC7~_^G$hnudY&dWQB}~Ts9*uGW*=}tJqR!u5hKm}VT2MCg#`=fQnCevW!~(zFp*q$ zAxd3+sDTAoY=34Gy_AsA@uSAEs*VNv%N{E(uy=caur&;>xWEADl%?D|0V6vMw}-(3 z7ExeWmVWO9v`xpdH4GM9pu@gJfsq{=wuZri3$)n7Jzz%|T)}=>0PG5b1s5oF1B5yd zpa@_kRGFNmYdREM07~2dp$-H9sO~cR1xn8ZWp|hD_Q&AI%QMIb67zs5MF;+s*6thX@8_q*$+>2fU9DO*u)$}|~ zn)kyf=$H`T=p=0Z^ILqrNybyx5xBvbfOwFe&VOeOLY7=)Vp9brQL9!&PB+P1^}E8E z0Dp6AROd9Pc( z+U5@>T0nj>yUPA2zQ8;00%fHlx%?l1F|$L=?iJa(vR9O80r{^t@{_;%bXc3oLpcQG zC!Mb^&hiIq+G~TV_kdE*@~gl*zX^JOFMq$``+{p@U;Z!P4F>{z55PC-LO^%TZ}$fB zTca)nKrwL|vzkQhlHUq7cq_MdrCThI*LKOBPy-9dAD^u&?~=Qr4i0A&R@&S$2G82UH!g>aAw-c}7mp#gW(JeFHS=l4Ng1jwMU7i$ z_2ib_ZAomBq=emKokFU^qT?v#Rw0+L9h`55m3rF$^Zak`|NXs}-}`>g^QHQF?^03H zRssO1c(}Xzqq~!AD&o<#ly#sF-5{a=E*DVVraOXORGGmZ(OzC)3wl;Wr))g>CJS8& ze0Q1<0F(2w34KX1s00AZWd#Hy!CrePbRNe%iox5*G#7LDauiieL600J5=9hq*jyn+ z>_C!hP|&kX43mg*6(r7q6zt_o+`$tti8khBb27dJa$XsM)&J)DI7It=aFxe8ev@}CC%!CPCBuZ??6&fxZ`O}UoQ%D!E_y~)~CCcnZ z?c>EG4kVJy(dt-^lR;ng!;crR*$#f@5AWJ`sYwLV5KOFuSB zg+Jq;D$ANe^JfZq?06aPj+QpoR5=$PNk3Fz84>(h#9Ha62;W#9!b3Ysz@mF_5vG7I zK)Y+%nNk&!y9C>ejM z>o(r+;ZQ_f#9Ncc2HNL0WJrH1Gi=m;loWq$Ru*={Eca2t2U;`$WVuP{_=q8@W_=`|o+CKYQ)ku0@l6@5`+rkcchPG1_-3EnN5(t{Ne{dWC3CFCWj z9v->fJl`s~Fmk?OzIE6Js5txVz|^D}nx+$knSW2>f!dcYx9xY}1oYiJkVjyc|BFB2ABh|7ko)_8RO`tVqYlN=hcvV|*Hr0l(u8 z*>(xIXHLe-dl$0Q+EI5 z89}(+(rmEx*Q<@iiy_vaZhfJ^(5i2`PoH0o6;~CV`+!!BwcxkspenmFI3Q1QaW?D3 zmzxF*xsq80@%D+v^>2Q*$X4Fs|CMBiWT&+5tWC|it8eP26Wg@eTA|BS_ z!%H+8v;e1Bz2P3dKw7YHP_<`aYM}2<{jXt#fj6AX;%Fs(pbb<))(0DVqn4)2bFi~B z54Kl!zWikr=Y;*&HPF70KD&6d!oDPLZ_?ty`ByK3VsAEeW_TV}bXSpH17-E&I>G~w zY>V?fuF&R9T#la&v5xe+-;Y&ynJ^%1z5|_}w0Y~D2TCB&@HRryGQRi>3nIWAuEDmD zAU!?m`xVIPz!Rx@O9`7qOB0X;28oz{9SPM!KVFA;$=USyrB{;wwdpGtH8QJ{W<8@% zX+0a>Qj7md!*?_0iR5`({eWsm?*)a)Wc6!Pr)y^jo4O5Dot$tn&=c#9V4$cgys5{%D2p zM!w4XQbKB^%Mh#kt>h=3Lr{0om0~nUMOP3gw6N`cP#k7I&h7I{!QRSZ{+F z-T(7DQGo;0Vf*sxf^vQx{4(4p-ZZi$ED4;!J;-e=7=X&}MHwPkv;lNPFh z+5=PBC;N?4jWDc7-Ma^A#=2qHNuA>H&A{Y{#la3xRU-DBL`p0R+3JmL%~z$V)5!|L;Izw|$>Q-8j<&ch}+>Ae08NI(Dp zrkgIGZ@R!Ltu`0j=Yj=5*bh7wNMGd%i2#s$+U-5l(?4aYaei+4*;;J@x0S3u5(JAAYix;a6kYyQEtu|`&<26O%oUb zh)k94fB=d*gG)n4TS*O2vF2M z0C1l%|9@p`6!rrogLDeO!!Lq2cm%{Az$W>@MvjQ8 zc?^InP&9!ties(C;imEg^#fFo!RJr<*eGE2dhvH zgMTE4nWmxK6jkVAG^MRUyeZmv=5O6_1?8f&>8#%w?+ZS#QHolIwUG8LJS zKrYCN5SlTz%>%+?KL#)j`+=7XQe-!?uF9+VZgBfNAi2z<O&#}%4dodw#x%li~#e1&S~3|LJB}XH=zA)@E=!Yg2FInTMc3W O0000wwPRri4?z{J%clO!m?0eo?FC#2; zsV#Cg5&!^OW-uchUTMZ@X%0Wj1e-hI1tAY#8UUQS;qn|lptvk1FC+x;g7=p2G>+DY zT=;1v4PGq=0M7%)iEtpfR{(&CSP;pASRpG&Y>5aP$B}I0VpSsP1d6O8!CMg*ibJbJ zLb05rqF^RGNbufh1~KRf7bt;(VTFXDmq=t>v@aHi#bKyOG#X8oad@O~M$i--K2b1y z2$GUOP^na6m5Z+f^Y_8weegu^Lw#`iWDc7I2_PYN zLbwn0OejbfLZ4fW{zeIe0;94dVVpRgf>HT!xV$)p5W-NUN`aUoQTma=Nw3e*lh)6J zlEJU=lZ{oAR)=%t5~0GVI~DIsAWvxVnf2ohOd?ocMSN=g5)sCiKoYp4WCAu*3~^;r z8Qfiyj8lC7?D1u+kK|Ee0Yt@51^B}J3F?#EA<<=!QX)%;oVbaPGXA5>RG3LgKk3lP z_Mea+?tdzh41V~QsK{3uK`a26$(am#qzciqwpr}#Xa7v9oac?tAxJkm5=|AF2OSZH z1hDp8Ug3yo^OC{!TH0>c#O`@*M-YihdFk#M!L!@wg{EiPT6<;qvkk1KP3QMBmOZFy z-|632^t9cPhB>Q#~-GO@be8>?3J-)}jcTk2N3YoGe+iC=>q>M&aB ztTnAIecQ*58+IQ_{3U2Pe`o&ueXh?;emftn-I8Zm+T*bn0XQ1cS+4>jH_FSbr(a*Z z^kr7V=EXAsbQy}_$OS8!IJ@?0WSu`;FqcOEmyA|8 zFgp+_yvDXY!g(1%cQpg-1R(pe#5VoUn6#3^ro7pfT_r8wwA>!R7t{51oZ;EuknfMp zeeO)q1)K+yqC@nR=BXBd?T@O6yx+^L%4a$5oP((U-WH|LAZ8Wpr>~{WI`n*z! zb0PY-ru9h{eh7waEAzB_kfY0r8=?zVdu_HB0&x9{ipz)fqu#GKCEt6O)PjgF$U5+j z*O1tMEjBjVyM4tjEZAq2w$@}^`LsHW6GM1$} zXzVkI6iEpkugq6I(UJQ3YXT;uJxy;;7VM;COG4x3%D z((XX1gpEYFWT++I=6=}Eh&j(9TeBiDFbTPrHRCQYUW$H_VId0H)T(0(H|r9V*S8! zbc0jMkCJUeLG;Le9ru@;^M79X(~fmZkn)xFCh9IblE(X1!|hyJ&XvBqPC$46r9(HN z@=TWpgc&wCGycK+btczF`0N#VZg0+2lt1!*YD0_nrfzVr>L|J8MSb)vqO%*nx2rcM zyIS(T>D^P3g8RZfFLi4nq8`zo@2SEj$c%9YV*N%eD!9a-6_Sf`R(*=tNf};8=PagwVUoU9^c`m z#{L}b-N%sJ0QwKb4vn8}ZAyz#?l?Y^=Wl|pL0XO_yNdFbkA~^|fB>t9?WbSQt+xp_ z4GxH7(f+9Pf7xvyv_}DLL!AWu<=QxFP-|J@YoFtQSD4d+Vtae)7a#NW+>#uuIi9rG zBy3zej@8~%i%Rm4w2su1k3CfDF83zW=ak%fg>86mcJzAXo3Zz`Rwodws;p*%W*E7} zi{R(b9-4OOf3Gv6)|4O?*pDI$D?H|(lWt#s>2`tN;3H&9hc2eem08^AeP$EX9Q5j9 zreVva@sokw4`**ELbu&is27wTypsN~^}CDak!felrmtx|T7@yx2&A_8d2wBXI}>OK zX`Uqep60e4pA??pkK delta 1141 zcmV-*1d99O5{U_rBYy-?Nkl6!xN<~_!~=u~VJS$!X05Q<$oOMEx;WUzGwZM2?V0r8_7P$7qp%aa7U99Hhks0S-3M2%fBa+b8yEe? z<>C^dn!@B|Iu#>Eq4%~F*Mk6yQMI$N2vJd}&0M8hw(5Ei0HLN5W<#5rP!N!%XvGCe zC7~_^G$hnudY&dWQB}~Ts9*uGW*=}tJqR!u5hKm}VT2MCg#`=fQnCevW!~(zFp*q$ zAxd3+sDTAoY=34Gy_AsA@uSAEs*VNv%N{E(uy=caur&;>xWEADl%?D|0V6vMw}-(3 z7ExeWmVWO9v`xpdH4GM9pu@gJfsq{=wuZri3$)n7Jzz%|T)}=>0PG5b1s5oF1B5yd zpa@_kRGFNmYdREM07~2dp$-H9sO~cR1xn8ZWp|hD_Q&AI%QMIb67zs5MF;+s*6thX@8_q*$+>2fU9DO*u)$}|~ zn)kyf=$H`T=p=0Z^ILqrNybyx5xBvbfOwFe&VOeOLY7=)Vp9brQL9!&PB+P1^}E8E z0Dp6AROd9Pc( z+U5@>T0nj>yUPA2zQ8;00%fHlx%?l1F|$L=?iJa(vR9O80r{^t@{_;%bXc3oLpcQG zC!Mb^&hiIq+G~TV_kdE*@~gl*zX^JOFMq$``+{p@U;Z!P4F>{z55PC-LO^%TZ}$fB zTca)nKrwL|vzkQhlHUq7cq_MdrCThI*LKOBPy-9dAD^u&?~=Qr4ih?X&sHg;q@=(~U%$M(T(8_%FTW^V-_X+1Qs2Nx-^fT8s6w~6 zGOr}DLN~8i8Da>`9GBGM~RsBTId_|A5Z7NlCUU$t=l91qU45Kj08_%qc+?1*r!G zK~5$pWUX=%^U`gVDs)p)(-KQ_N|fvh$}{s)^2^O_^dYKHbwfl^4Ykq7V!sW@*H)21 zsm1v@rJ!)PGcq%=0fz;OC?WhAD)-&xIQ&z#sf3hOHUWakP61Pvo`WJ2Z$VTGCL`inJHoEduz?aPyyo|KRzA) zGVR^nnM|E;H~#qf_J6ZWMSZ;dA$v}n#8n&1>p2fp7V~T(C>V4&`{oxH} z8PAOm>{B>9pK*($^?b%}teO9K7VzHs$+JP<<8wMg?uB#d4YiK5?3pu~%j}rna9{c( z=^(x3vt&a2glFd&ZY`L5p5b?sNj=*Iwzq%Y@*eol9>5&-Kfa)vS*t-Shmg_pw=CtU U`+rnh2UMzfy85}Sb4q9e02n!yC;$Ke literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=`#fD7Ln`LHy|t0IIe>@Z;)KA6 z=1CK0C@U{b;Y~~A5chA|eJ_6bQ(> diff --git a/Resources/Textures/Structures/Windows/plastitanium_window.rsi/full.png b/Resources/Textures/Structures/Windows/plastitanium_window.rsi/full.png index 629274889050ed48d4114f458c11333d259d1574..8a6165b2e1e4c54099b3aef476e59613b61d586e 100644 GIT binary patch literal 1500 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}e5nzhX}-P; zT0k}j5QD&_;K@Lev%n*=n1Mm}4+t}^JN#w_0|RqfW=KRygs+cPa(=E}VoH8es$NBI z0a%w!g%yyQn_7~nP?4LHS8P>bs{~eI1!RMS^_3LBN=mYAl_Got6rA&mQWebf4D<|? z?6?#Z6l{u8(yW49+@RWlJX@uVl9B=|ef{$Ca=mh6z5JqdeM3u2OML?)eIp}XpbFjM z%Dj@q3f;V7Wr!g#b6ir3lZ!G7N;32F6hP)CCgqow*eWT3EP?}wJ5!S3_7s#B<$!HT zN!CxzNzF~oD=F4D)HBq_rmrM34dKGPVrXyx14bVt1Jq`KRhwr)NwNtrq+Bb2?t%Ib z=+I=ay~QOd`bY}&jSLJdbPbGjjV$%y{sTJSCMDUbB(o$Z6&!GI|A0f#F{cDo6r>&$ z1UZ?YkhRK5%uBabs?beIO-n4zDN(XZE6vHV(TAu&)d>+rHPA*Mi`_OLA6rERr55Ms zl!C(C&dAcz1{@A3qKMFk=!n3o16dSZM?gk?Nj@+&6=f!S=9Q!t6%+we7Q{xVeYjPi zn}x7EG%vHn&IoD%nlO?sq?oaCEGj9_FUk%9#{wh>aY{ptfCMK}%7i3)aL@zOy&ad0 zK0FWEah-lG(*ew^Up-wMLn1iehVS${>>zMgA!|~Ol+-zg?v_PU0xmQBKg|B5zM)O( zj;o-MZp-Gr$sd>}Y=5*iO=i6=yLLc@N_N@v3Tx}?-t24Z>Sx+73GLatd8;5#qR~&2 z-eXY#^Ov6ZTwD3uK#!qe%NpOKOdcN7Un#Ui?pth8Hck7`J=62&{AIVVU3T+!ezoZ@ zS34^v<~oI>VD@*$4SYQ7^w!JvFXB*gHJhNCYV!Js{pQIc|+pjZwxF&YcJ?`cbu+ujhV{GHT~pjhE+Tvk}Hf1%7xYP zS8dW;DzGk!Y0u?976$Sn-?|H4ddEa^GrX?1J-&&Y-5kud#K@@hT5c3CB{n@YE4_yWKZrpvTXjX z783^j*-kgKm^YOi>zS-FU1R0x*WNjqtC<>_{zopr0PH#p761SM delta 467 zcmV;^0WAL93;F|)F@FSSK}|sb0I`n?{9y$E000SaNLh0L04^c`04^c{s^Z;}0004x zNkl`Dz)n*b_+XoT>lgyi;kc56cJ~iIQ9}eZI2ew{{xC!c zWu2VSMa09=8HTPf$~rmF$GUt2>wjQcDE$VXUrWHODFu`QN&%$+O8{;_{p!pMpI<`& z?rAOzUnp77$GUuj|8*S~mXH*gk}aq<0uS`WkwqYxpiH|wwh|w7;6h(WYINI`lp2SS zJD|=RpKn6|cZjQGXe9}X3!iUqPRRWAr&%Px$4ov>m0bWrd;!SfDtIM>njruH002ov JPDHLkV1f$)&w&5{ diff --git a/Resources/Textures/Structures/Windows/plastitanium_window.rsi/meta.json b/Resources/Textures/Structures/Windows/plastitanium_window.rsi/meta.json index 4b89f3cdb00..c0a1a18425f 100644 --- a/Resources/Textures/Structures/Windows/plastitanium_window.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/plastitanium_window.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/0b906c6916ce3803473fa6caa65f5b8661118c46", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/0b906c6916ce3803473fa6caa65f5b8661118c46, transparency tweaked by Ubaser.", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Windows/plastitanium_window.rsi/ptwindow0.png b/Resources/Textures/Structures/Windows/plastitanium_window.rsi/ptwindow0.png index 1704c25c2180117565c9558d48558d0f9b2432aa..fe2ddcf1ed405b01fd442a85aa7d1813ec34739e 100644 GIT binary patch literal 2316 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 delta 984 zcmV;}11J2W5bg(%B!7cxLqkwWLqi}?a&Km7Y-IodD9@FVODIH99L9exB8@D}LbAAv zp%f(~OAV1Sr7_BD;oduDM$NsZdq*~w%2ru;Y`hjW)@&_ol~Nuh8(S-4BVGSg4zrf+)%1YvLig$&>R>nvQp9y!lazWt-rJDtQRh$l3Q<-5m z5g!%~3+w4JHp|$`xVCV=a3pCvlCRAaIH`DDv7KGDiuY763@tg+Q%aZF#u($om_)~9 zm1VNz>6Xm2~SmGFA1sfyqqyFG`w_d8Rw~!QyLhZBfzqdo( zHhgdS{@0Q3e;-5j6I?na|H>f@eu%zR(jo`Yv;pT=CC%J{i%n>G%o(l`NYyg6R0`fs z<(p=q`34&13%wQhIk|^~bTx4ed;8Flmh6QJ@2)TJ?SIcRL4QPl0ATWRp!eh8R{#J2 z32;bRa{vGqBme*wBmtWh#uNYm0uf0>K~#8N?VCSK13?hQFE(}(bCrTb6AN3#_yrVV zYbB{|l(a#JVkH`ov_Tu|U}bASzkrIi7A6`5tu6*TtLUw>67x^ENp?2O{9t*Ta2(6K z?A+elOMj@*XgHL(?gVN8p7$1lZXn1FSX@{_4dC|fdbkZpuB>()K)Ld)G#;B)+KJNT z#c&&tT2FNxz|GA)^nOSr=ArkO;#m=8zz8TAkw~PiX~N+#)ik}14GOsd)R0es+1MOv z0FRZ2;jRIDC+7#y4aEND+AeehL2kfgG@gfUAb(z~7&D;x zbr-!tv;nCBpaZA*!Kl}>foY5x;O7Cl*@Q6z`t@2{zmXaM$`&yIlr88y0E-`}%tWUg z*DsRp_-~;sm9CuBcJA;rml;)GbV1$|L{TCJfU-pl0JR3wxq(#%P-F(y7@#wP*1yRN z8mR%G)RM(Cc~JSW)8+9rAbj~pIRxc z+vL)^tV+?Yb&p)irPZ!=se}z(+_T8-J2R}*)1K$~|Ih!t=l#8x-}}DLIp-;E&PqrP zBme+PWEUq7_--#=a_iwek9qth03d#1IyzFwj*ch_kHcWH=m4EF)6o^`lT?W~~_S9tgLV&&?pyEqZxb`C1Hwn*skw9XlM#VptVvDyP6 z%1NehvwwD=Y5;E}{$75DI%c{*eR65KsYLlB-7v9WC_3dJm$u+e6a1Cw9=gZe{3=4} zTI%8QTUI-oUPPSwc4^$$D)8BnORC*&Q%!@{CPx)|UCL*tk1v#aCAbWP>@baqWWC-T zQygIfvh@0IO^|0sl z++30q?xJy;+1BHlA1-9*85$B%WQ*YAuS5nj7lHjiEyo!ih&2o0pK*zM_#| za?A^=pG3@*{nCh8^tQS)u*#sg~kM^<$$l@{`o`v?S+_^!iCth3hTzcEz11RfO9O;UWPW z=-y<8t1DmxpXJ~szS<5Zz`H!x

        +/// Used to control various aspects of a Jaunt. +/// Can be used in place of giving a jaunt-action directly. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class JauntComponent : Component +{ + /// + /// Which Jaunt Action the component should grant. + /// + [DataField] + public EntProtoId JauntAction = "ActionPolymorphJaunt"; + + /// + /// The jaunt action itself. + /// + public EntityUid? Action; + + // TODO: Enter & Exit Times and Whitelist when Actions are reworked and can support it + // TODO: Cooldown pausing when Actions can support it +} diff --git a/Content.Shared/Jaunt/JauntSystem.cs b/Content.Shared/Jaunt/JauntSystem.cs new file mode 100644 index 00000000000..d9263d000e4 --- /dev/null +++ b/Content.Shared/Jaunt/JauntSystem.cs @@ -0,0 +1,26 @@ +using Content.Shared.Actions; + +namespace Content.Shared.Jaunt; +public sealed class JauntSystem : EntitySystem +{ + [Dependency] private readonly SharedActionsSystem _actions = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnShutdown); + } + + private void OnInit(Entity ent, ref MapInitEvent args) + { + _actions.AddAction(ent.Owner, ref ent.Comp.Action, ent.Comp.JauntAction); + } + + private void OnShutdown(Entity ent, ref ComponentShutdown args) + { + _actions.RemoveAction(ent.Owner, ent.Comp.Action); + } + +} + diff --git a/Content.Shared/Polymorph/PolymorphPrototype.cs b/Content.Shared/Polymorph/PolymorphPrototype.cs index 6d010711d2e..c0576694084 100644 --- a/Content.Shared/Polymorph/PolymorphPrototype.cs +++ b/Content.Shared/Polymorph/PolymorphPrototype.cs @@ -1,3 +1,4 @@ +using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Array; @@ -115,6 +116,18 @@ public sealed partial record PolymorphConfiguration [DataField(serverOnly: true)] [ViewVariables(VVAccess.ReadWrite)] public TimeSpan Cooldown = TimeSpan.Zero; + + /// + /// If not null, this sound will be played when being polymorphed into something. + /// + [DataField] + public SoundSpecifier? PolymorphSound; + + /// + /// If not null, this sound will be played when being reverted from a polymorph. + /// + [DataField] + public SoundSpecifier? ExitPolymorphSound; } public enum PolymorphInventoryChange : byte diff --git a/Resources/Audio/Magic/attributions.yml b/Resources/Audio/Magic/attributions.yml index cedda322862..bfbe4d6ec24 100644 --- a/Resources/Audio/Magic/attributions.yml +++ b/Resources/Audio/Magic/attributions.yml @@ -17,6 +17,8 @@ - forcewall.ogg - knock.ogg - blink.ogg - copyright: '"ForceWall.ogg", "Knock.ogg", and "blink.ogg" by Citadel Station 13' + - ethereal_enter.ogg + - ethereal_exit.ogg + copyright: '"forcewall.ogg", "knock.ogg", "blink.ogg", "ethereal_enter.ogg", and "ethereal_exit.ogg" by Citadel Station 13' license: CC-BY-SA-3.0 source: https://github.com/Citadel-Station-13/Citadel-Station-13/commit/35a1723e98a60f375df590ca572cc90f1bb80bd5 diff --git a/Resources/Audio/Magic/ethereal_enter.ogg b/Resources/Audio/Magic/ethereal_enter.ogg new file mode 100644 index 0000000000000000000000000000000000000000..a0c7222c16798c3c037cba5e90d5899644b52e8a GIT binary patch literal 36619 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 U3Scl3to$`8GTa5YJ^;tL0a{;58~^|S literal 0 HcmV?d00001 diff --git a/Resources/Audio/Magic/ethereal_exit.ogg b/Resources/Audio/Magic/ethereal_exit.ogg new file mode 100644 index 0000000000000000000000000000000000000000..bd60ca8c6957934445cbca1f7c691cb57cc69dff GIT binary patch literal 42980 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 literal 0 HcmV?d00001 diff --git a/Resources/Locale/en-US/store/spellbook-catalog.ftl b/Resources/Locale/en-US/store/spellbook-catalog.ftl index 457f02916f9..1d970f6e3ac 100644 --- a/Resources/Locale/en-US/store/spellbook-catalog.ftl +++ b/Resources/Locale/en-US/store/spellbook-catalog.ftl @@ -17,6 +17,9 @@ spellbook-polymorph-rod-desc = Change into an Immovable Rod with limited movemen spellbook-charge-name = Charge spellbook-charge-desc = Adds a charge back to your wand! +spellbook-ethereal-jaunt-name = Ethereal Jaunt +spellbook-ethereal-jaunt-description = Slip into the ethereal plane to slip away from your enemies! + # Equipment spellbook-wand-polymorph-door-name = Wand of Entrance @@ -33,3 +36,6 @@ spellbook-event-summon-ghosts-description = Who ya gonna call? # Upgrades spellbook-upgrade-fireball-name = Upgrade Fireball spellbook-upgrade-fireball-description = Upgrades Fireball to a maximum of level 3! + +spellbook-upgrade-jaunt-name = Upgrade Ethereal Jaunt +spellbook-upgrade-jaunt-description = Upgrades Jaunt to a maximum of level 3! diff --git a/Resources/Prototypes/Actions/polymorph.yml b/Resources/Prototypes/Actions/polymorph.yml index 81feba4eacc..291400ab388 100644 --- a/Resources/Prototypes/Actions/polymorph.yml +++ b/Resources/Prototypes/Actions/polymorph.yml @@ -40,3 +40,53 @@ icon: sprite: Objects/Fun/immovable_rod.rsi state: icon + +- type: entity + id: ActionPolymorphJaunt + name: Ethereal Jaunt + description: Melt into the Ethereal Plane for a quick getaway! + components: + - type: Magic + - type: InstantAction + useDelay: 30 + event: !type:PolymorphActionEvent + protoId: Jaunt + itemIconStyle: NoItem + icon: + sprite: Objects/Magic/magicactions.rsi + state: jaunt + # TODO: Effect ECS (from cardboard box) + - type: ActionUpgrade + effectedLevels: + 2: ActionPolymorphJauntII + 3: ActionPolymorphJauntIII + +- type: entity + id: ActionPolymorphJauntII + parent: ActionPolymorphJaunt + name: Ethereal Jaunt II + description: Melt into the Ethereal Plane for an even quicker getaway! + components: + - type: InstantAction + useDelay: 25 + event: !type:PolymorphActionEvent + protoId: Jaunt + itemIconStyle: NoItem + icon: + sprite: Objects/Magic/magicactions.rsi + state: jaunt + +- type: entity + id: ActionPolymorphJauntIII + parent: ActionPolymorphJaunt + name: Ethereal Jaunt III + description: Are you even tangible anymore? + components: + - type: InstantAction + useDelay: 20 + event: !type:PolymorphActionEvent + protoId: Jaunt + itemIconStyle: NoItem + icon: + sprite: Objects/Magic/magicactions.rsi + state: jaunt diff --git a/Resources/Prototypes/Catalog/spellbook_catalog.yml b/Resources/Prototypes/Catalog/spellbook_catalog.yml index 38b95c3273c..805c157f1e3 100644 --- a/Resources/Prototypes/Catalog/spellbook_catalog.yml +++ b/Resources/Prototypes/Catalog/spellbook_catalog.yml @@ -77,6 +77,20 @@ - !type:ListingLimitedStockCondition stock: 1 +- type: listing + id: SpellbookJaunt + name: spellbook-ethereal-jaunt-name + description: spellbook-ethereal-jaunt-description + productAction: ActionPolymorphJaunt + productUpgradeId: SpellbookJauntUpgrade + cost: + WizCoin: 2 + categories: + - SpellbookUtility + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + # Equipment - type: listing id: SpellbookWandDoor @@ -138,3 +152,22 @@ # manual for now - !type:ListingLimitedStockCondition stock: 2 + +- type: listing + id: SpellbookJauntUpgrade + productUpgradeId: SpellbookJauntUpgrade + name: spellbook-upgrade-jaunt-name + description: spellbook-upgrade-jaunt-description + icon: + sprite: Objects/Magic/magicactions.rsi + state: jaunt + cost: + WizCoin: 2 + categories: + - SpellbookUtility + conditions: + - !type:BuyBeforeCondition + whitelist: + - SpellbookJaunt + - !type:ListingLimitedStockCondition + stock: 2 diff --git a/Resources/Prototypes/Entities/Mobs/Player/jaunt_mobs.yml b/Resources/Prototypes/Entities/Mobs/Player/jaunt_mobs.yml new file mode 100644 index 00000000000..3002264a754 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Player/jaunt_mobs.yml @@ -0,0 +1,40 @@ +- type: entity + name: jaunt + parent: [Incorporeal, BaseMob] + id: BaseMobJaunt + description: Faint traces of a humanoid figure linger here + suffix: Ethereal + components: + - type: ContentEye + maxZoom: 1.44,1.44 + - type: Eye + drawFov: false + - type: Input + context: "ghost" + - type: InputMover + - type: MovementSpeedModifier + baseSprintSpeed: 12 + baseWalkSpeed: 8 + - type: Visibility + layer: 2 + - type: Spectral + +# Should be slow, for balance +- type: entity + name: jaunt + parent: BaseMobJaunt + id: EtherealJaunt + suffix: Wizard + components: + - type: Sprite + sprite: Mobs/Ghosts/ghost_human.rsi + color: "#60f7eb" + layers: + - state: animated + shader: unshaded + noRot: true + overrideContainerOcclusion: true + drawdepth: Ghosts + - type: MovementSpeedModifier + baseSprintSpeed: 6 + baseWalkSpeed: 4 diff --git a/Resources/Prototypes/Polymorphs/polymorph.yml b/Resources/Prototypes/Polymorphs/polymorph.yml index 96739a50d3c..fe28287cb09 100644 --- a/Resources/Prototypes/Polymorphs/polymorph.yml +++ b/Resources/Prototypes/Polymorphs/polymorph.yml @@ -186,3 +186,19 @@ forced: true revertOnCrit: false revertOnDeath: false + +# Temporary Jaunt +# Don't make permanent jaunts until action system can be reworked to allow do afters and cooldown pausing +- type: polymorph + id: Jaunt + configuration: + entity: EtherealJaunt + transferName: true + inventory: None + forced: true + revertOnDeath: true + revertOnCrit: true + allowRepeatedMorphs: false + polymorphSound: /Audio/Magic/ethereal_enter.ogg + exitPolymorphSound: /Audio/Magic/ethereal_exit.ogg + duration: 3 diff --git a/Resources/Textures/Objects/Magic/magicactions.rsi/jaunt.png b/Resources/Textures/Objects/Magic/magicactions.rsi/jaunt.png new file mode 100644 index 0000000000000000000000000000000000000000..f66002b46956d4945c822e3a1c8fb2ac510ba1b2 GIT binary patch literal 431 zcmV;g0Z{&lP)UHiqSqj+6g!)RMIZ&f6%rCpJrILa$KyEO1(LqNPK#z0XJ{uA{GEhU ztxW~u#V{+c`bF)L48CuxPIFaYZNs&iy0Hnd5&xtUVx)F~G*|?@>NS-UGp9swEIpK1 z1l-s>95R^sS_!!41KX}NGhF Date: Wed, 13 Nov 2024 23:37:44 +0000 Subject: [PATCH 074/171] Automatic changelog update --- Resources/Changelog/Changelog.yml | 24 ++++++++---------------- 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 3365a943ee6..9cc788c96f7 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,20 +1,4 @@ Entries: -- author: IProduceWidgets - changes: - - message: shuttle events have been separated from other midround events and can - now happen concurrently. - type: Tweak - - message: Cargo Gift events should be less likely. - type: Tweak - - message: meteors have been changed to be more responsive to player count. - type: Tweak - - message: 'Game mode: Kessler syndrome - What if survival but also the apocalypse?' - type: Add - - message: 'Game mode: Zombeteors - Zombies and a meteor shower all at once!' - type: Add - id: 7107 - time: '2024-08-14T05:21:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29320 - author: Blackern5000 changes: - message: Combat medical kits now contain saline syringes. @@ -3949,3 +3933,11 @@ id: 7606 time: '2024-11-13T12:30:40.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33282 +- author: keronshb + changes: + - message: Added Ethereal Jaunt! A Wizard Spell that turns you invisible and into + a ghost-like creature for escaping! + type: Add + id: 7607 + time: '2024-11-13T23:36:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33201 From 75ec5465509edcb1f4b3b9c43f44e0f123a6f5c1 Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Thu, 14 Nov 2024 14:57:05 +0100 Subject: [PATCH 075/171] Update Label workflows to use new labels (#33310) * Update labeler.yml * Update labeler-needsreview.yml * Update labeler-staging.yml * Update labeler-stable.yml * Update labeler-untriaged.yml * Create labeler-size.yml * Update labeler-size.yml * Update labeler-size.yml * Update conflict-labeler.yml * Rename conflict-labeler.yml to labeler-conflict.yml --- .github/labeler.yml | 2 +- ...flict-labeler.yml => labeler-conflict.yml} | 2 +- .github/workflows/labeler-needsreview.yml | 4 ++-- .github/workflows/labeler-size.yml | 20 +++++++++++++++++++ .github/workflows/labeler-stable.yml | 2 +- .github/workflows/labeler-staging.yml | 2 +- .github/workflows/labeler-untriaged.yml | 4 +++- 7 files changed, 29 insertions(+), 7 deletions(-) rename .github/workflows/{conflict-labeler.yml => labeler-conflict.yml} (93%) create mode 100644 .github/workflows/labeler-size.yml diff --git a/.github/labeler.yml b/.github/labeler.yml index 97b402eda9f..69b2ca87749 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -16,7 +16,7 @@ - changed-files: - any-glob-to-any-file: '**/*.swsl' -"No C#": +"Changes: No C#": - changed-files: # Equiv to any-glob-to-all as long as this has one matcher. If ALL changed files are not C# files, then apply label. - all-globs-to-all-files: "!**/*.cs" diff --git a/.github/workflows/conflict-labeler.yml b/.github/workflows/labeler-conflict.yml similarity index 93% rename from .github/workflows/conflict-labeler.yml rename to .github/workflows/labeler-conflict.yml index 1e2125c30a2..ebcc54d4604 100644 --- a/.github/workflows/conflict-labeler.yml +++ b/.github/workflows/labeler-conflict.yml @@ -16,6 +16,6 @@ jobs: - name: Check for Merge Conflicts uses: eps1lon/actions-label-merge-conflict@v3.0.0 with: - dirtyLabel: "Merge Conflict" + dirtyLabel: "S: Merge Conflict" repoToken: "${{ secrets.GITHUB_TOKEN }}" commentOnDirty: "This pull request has conflicts, please resolve those before we can evaluate the pull request." diff --git a/.github/workflows/labeler-needsreview.yml b/.github/workflows/labeler-needsreview.yml index 311048acb0f..819b34b7bbd 100644 --- a/.github/workflows/labeler-needsreview.yml +++ b/.github/workflows/labeler-needsreview.yml @@ -10,7 +10,7 @@ jobs: steps: - uses: actions-ecosystem/action-add-labels@v1 with: - labels: "Status: Needs Review" + labels: "S: Needs Review" - uses: actions-ecosystem/action-remove-labels@v1 with: - labels: "Status: Awaiting Changes" + labels: "S: Awaiting Changes" diff --git a/.github/workflows/labeler-size.yml b/.github/workflows/labeler-size.yml new file mode 100644 index 00000000000..ad6e35c8292 --- /dev/null +++ b/.github/workflows/labeler-size.yml @@ -0,0 +1,20 @@ +name: "Labels: Size" +on: pull_request_target +jobs: + size-label: + runs-on: ubuntu-latest + steps: + - name: size-label + uses: "pascalgn/size-label-action@v0.5.5" + env: + GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" + with: + # Custom size configuration + sizes: > + { + "0": "XS", + "10": "S", + "30": "M", + "100": "L", + "1000": "XL" + } diff --git a/.github/workflows/labeler-stable.yml b/.github/workflows/labeler-stable.yml index 491d6a76fad..f6fd2033a11 100644 --- a/.github/workflows/labeler-stable.yml +++ b/.github/workflows/labeler-stable.yml @@ -13,4 +13,4 @@ jobs: steps: - uses: actions-ecosystem/action-add-labels@v1 with: - labels: "Branch: stable" + labels: "Branch: Stable" diff --git a/.github/workflows/labeler-staging.yml b/.github/workflows/labeler-staging.yml index e31a5a482f2..b46a198aefb 100644 --- a/.github/workflows/labeler-staging.yml +++ b/.github/workflows/labeler-staging.yml @@ -13,4 +13,4 @@ jobs: steps: - uses: actions-ecosystem/action-add-labels@v1 with: - labels: "Branch: staging" + labels: "Branch: Staging" diff --git a/.github/workflows/labeler-untriaged.yml b/.github/workflows/labeler-untriaged.yml index 775aab26546..ec1d194851c 100644 --- a/.github/workflows/labeler-untriaged.yml +++ b/.github/workflows/labeler-untriaged.yml @@ -3,6 +3,8 @@ on: issues: types: [opened] + pull_request_target: + types: [opened] jobs: add_label: @@ -11,4 +13,4 @@ jobs: - uses: actions-ecosystem/action-add-labels@v1 if: join(github.event.issue.labels) == '' with: - labels: "Status: Untriaged" + labels: "S: Untriaged" From 815e37e512ce7d1df152bac1642b769cf3e9bb32 Mon Sep 17 00:00:00 2001 From: CheddaCheez Date: Thu, 14 Nov 2024 10:56:21 -0600 Subject: [PATCH 076/171] Fix mime broken vow alert (#33303) Swap VowAlert and VowBrokenAlert on lines 149 and 150 so that the proper alerts are cleared and shown --- Content.Server/Abilities/Mime/MimePowersSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Abilities/Mime/MimePowersSystem.cs b/Content.Server/Abilities/Mime/MimePowersSystem.cs index 20889f293c3..bd8cf7c1766 100644 --- a/Content.Server/Abilities/Mime/MimePowersSystem.cs +++ b/Content.Server/Abilities/Mime/MimePowersSystem.cs @@ -146,8 +146,8 @@ public void RetakeVow(EntityUid uid, MimePowersComponent? mimePowers = null) mimePowers.ReadyToRepent = false; mimePowers.VowBroken = false; AddComp(uid); - _alertsSystem.ClearAlert(uid, mimePowers.VowAlert); - _alertsSystem.ShowAlert(uid, mimePowers.VowBrokenAlert); + _alertsSystem.ClearAlert(uid, mimePowers.VowBrokenAlert); + _alertsSystem.ShowAlert(uid, mimePowers.VowAlert); _actionsSystem.AddAction(uid, ref mimePowers.InvisibleWallActionEntity, mimePowers.InvisibleWallAction, uid); } } From 669bc148f91980f983b691d1e516b1b8d627a315 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 14 Nov 2024 16:57:29 +0000 Subject: [PATCH 077/171] 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 9cc788c96f7..eb3f7268008 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Blackern5000 - changes: - - message: Combat medical kits now contain saline syringes. - type: Add - id: 7108 - time: '2024-08-14T06:25:54.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29954 - author: TheShuEd changes: - message: added morbilliard variants of procedural tacos and kebabs @@ -3941,3 +3934,10 @@ id: 7607 time: '2024-11-13T23:36:37.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33201 +- author: CheddaCheez + changes: + - message: Fixed mimes being unable to break their vow more than once. Despicable! + type: Fix + id: 7608 + time: '2024-11-14T16:56:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33303 From 1bebb3390ccedfdae173f0f681be6578146057ca Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Thu, 14 Nov 2024 18:08:35 +0100 Subject: [PATCH 078/171] Borg type switching. (#32586) * Borg type switching. This allows borgs (new spawn or constructed) to select their chassis type on creation, like in SS13. This removes the need for the many different chassis types, and means round-start borgs can actually play the game immediately instead of waiting for science to unlock everything. New borgs have an additional action that allows them to select their type. This opens a nice window with basic information about the borgs and a select button. Once a type has been selected it is permanent for that borg chassis. These borg types also immediately start the borg with specific modules, so they do not need to be printed. Additional modules can still be inserted for upgrades, though this is now less critical. The built-in modules cannot be removed, but are shown in the UI. The modules that each borg type starts with: * Generic: tools * Engineering: advanced tools, construction, RCD, cable * Salvage: Grappling gun, appraisal, mining * Janitor: cleaning, light replacer * Medical: treatment * Service: music, service, clowning Specialized borgs have 3 additional module slots available on top of the ones listed above, generic borgs have 5. Borg types are specified in a new BorgTypePrototype. These prototypes specify all information about the borg type. It is assigned to the borg entity through a mix of client side, server, and shared code. Some of the involved components were made networked, others are just ensured they're set on both sides of the wire. The most gnarly change is the inventory template prototype, which needs to change purely to modify the borg hat offset. I managed to bodge this in with an API that *probably* won't explode for specifically for this use case, but it's still not the most clean of API designs. Parts for specific borg chassis have been removed (so much deleted YAML) and specialized borg modules that are in the base set of a type have been removed from the exosuit fab as there's no point to printing those. The ability to "downgrade" a borg so it can select a new chassis, like in SS13, is something that would be nice, but was not high enough priority for me to block the feature on. I did keep it in mind with some of the code, so it may be possible in the future. There is no fancy animation when selecting borg types like in SS13, because I didn't think it was high priority, and it would add a lot of complex code. * Fix sandbox failure due to collection expression. * Module tweak Fix salvage borg modules still having research/lathe recipes Engie borg has regular tool module, not advanced. * Fix inventory system breakage * Fix migrations Some things were missing * Guidebook rewordings & review * MinWidth on confirm selection button --- .../Clothing/ClientClothingSystem.cs | 24 +- .../Inventory/ClientInventorySystem.cs | 16 +- Content.Client/Overlays/EquipmentHudSystem.cs | 3 +- .../Overlays/ShowHealthBarsSystem.cs | 7 + .../Overlays/ShowHealthIconsSystem.cs | 7 + .../Silicons/Borgs/BorgMenu.xaml.cs | 3 +- .../Silicons/Borgs/BorgModuleControl.xaml.cs | 3 +- .../Silicons/Borgs/BorgSelectTypeMenu.xaml | 43 ++ .../Silicons/Borgs/BorgSelectTypeMenu.xaml.cs | 81 +++ .../Borgs/BorgSelectTypeUserInterface.cs | 30 ++ .../Borgs/BorgSwitchableTypeSystem.cs | 81 +++ Content.Client/Silicons/Borgs/BorgSystem.cs | 14 + .../Borgs/BorgSwitchableTypeSystem.cs | 82 +++ .../Silicons/Borgs/BorgSystem.Modules.cs | 39 ++ .../Silicons/Borgs/BorgSystem.Transponder.cs | 17 + .../Silicons/Borgs/BorgSystem.Ui.cs | 3 + Content.Server/Silicons/Borgs/BorgSystem.cs | 15 +- .../Interaction/InteractionPopupSystem.cs | 22 + .../Inventory/InventoryComponent.cs | 10 +- .../Inventory/InventorySystem.Slots.cs | 49 ++ .../Overlays/ShowHealthBarsComponent.cs | 2 + .../Overlays/ShowHealthIconsComponent.cs | 2 + .../Silicons/Borgs/BorgTypePrototype.cs | 155 ++++++ .../Borgs/Components/BorgChassisComponent.cs | 15 +- .../Borgs/Components/BorgModuleComponent.cs | 8 + .../Components/BorgSwitchableTypeComponent.cs | 72 +++ .../Borgs/SharedBorgSwitchableTypeSystem.cs | 125 +++++ .../Silicons/Borgs/SharedBorgSystem.cs | 9 + Resources/Locale/en-US/borg/borg.ftl | 37 ++ Resources/Prototypes/Actions/borgs.yml | 12 + Resources/Prototypes/Body/Parts/silicon.yml | 47 +- .../Mobs/Cyborgs/base_borg_chassis.yml | 7 + .../Entities/Mobs/Cyborgs/borg_chassis.yml | 319 ++--------- .../Entities/Mobs/Player/silicon.yml | 21 +- .../Objects/Specific/Robotics/borg_parts.yml | 503 ------------------ .../Specific/Robotics/endoskeleton.yml | 169 +----- .../Entities/Structures/Machines/lathe.yml | 40 -- .../Prototypes/InventoryTemplates/borg.yml | 3 +- .../Construction/Graphs/machines/cyborg.yml | 173 +----- .../Prototypes/Recipes/Lathes/robotics.yml | 220 -------- .../Prototypes/Research/civilianservices.yml | 3 - Resources/Prototypes/Research/industrial.yml | 3 - .../Prototypes/Roles/Jobs/Science/borg.yml | 2 +- Resources/Prototypes/borg_types.yml | 218 ++++++++ Resources/Prototypes/tags.yml | 99 +--- .../ServerInfo/Guidebook/Science/Cyborgs.xml | 16 +- .../Actions/actions_borg.rsi/meta.json | 5 +- .../Actions/actions_borg.rsi/select-type.png | Bin 0 -> 408 bytes Resources/migration.yml | 35 ++ 49 files changed, 1336 insertions(+), 1533 deletions(-) create mode 100644 Content.Client/Silicons/Borgs/BorgSelectTypeMenu.xaml create mode 100644 Content.Client/Silicons/Borgs/BorgSelectTypeMenu.xaml.cs create mode 100644 Content.Client/Silicons/Borgs/BorgSelectTypeUserInterface.cs create mode 100644 Content.Client/Silicons/Borgs/BorgSwitchableTypeSystem.cs create mode 100644 Content.Server/Silicons/Borgs/BorgSwitchableTypeSystem.cs create mode 100644 Content.Shared/Silicons/Borgs/BorgTypePrototype.cs create mode 100644 Content.Shared/Silicons/Borgs/Components/BorgSwitchableTypeComponent.cs create mode 100644 Content.Shared/Silicons/Borgs/SharedBorgSwitchableTypeSystem.cs delete mode 100644 Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_parts.yml create mode 100644 Resources/Prototypes/borg_types.yml create mode 100644 Resources/Textures/Interface/Actions/actions_borg.rsi/select-type.png diff --git a/Content.Client/Clothing/ClientClothingSystem.cs b/Content.Client/Clothing/ClientClothingSystem.cs index 3462fc92360..46f879e8156 100644 --- a/Content.Client/Clothing/ClientClothingSystem.cs +++ b/Content.Client/Clothing/ClientClothingSystem.cs @@ -58,6 +58,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnGetVisuals); + SubscribeLocalEvent(OnInventoryTemplateUpdated); SubscribeLocalEvent(OnVisualsChanged); SubscribeLocalEvent(OnDidUnequip); @@ -70,11 +71,7 @@ private void OnAppearanceUpdate(EntityUid uid, InventoryComponent component, ref if (args.Sprite == null) return; - var enumerator = _inventorySystem.GetSlotEnumerator((uid, component)); - while (enumerator.NextItem(out var item, out var slot)) - { - RenderEquipment(uid, item, slot.Name, component); - } + UpdateAllSlots(uid, component); // No clothing equipped -> make sure the layer is hidden, though this should already be handled by on-unequip. if (args.Sprite.LayerMapTryGet(HumanoidVisualLayers.StencilMask, out var layer)) @@ -84,6 +81,23 @@ private void OnAppearanceUpdate(EntityUid uid, InventoryComponent component, ref } } + private void OnInventoryTemplateUpdated(Entity ent, ref InventoryTemplateUpdated args) + { + UpdateAllSlots(ent.Owner, clothing: ent.Comp); + } + + private void UpdateAllSlots( + EntityUid uid, + InventoryComponent? inventoryComponent = null, + ClothingComponent? clothing = null) + { + var enumerator = _inventorySystem.GetSlotEnumerator((uid, inventoryComponent)); + while (enumerator.NextItem(out var item, out var slot)) + { + RenderEquipment(uid, item, slot.Name, inventoryComponent, clothingComponent: clothing); + } + } + private void OnGetVisuals(EntityUid uid, ClothingComponent item, GetEquipmentVisualsEvent args) { if (!TryComp(args.Equipee, out InventoryComponent? inventory)) diff --git a/Content.Client/Inventory/ClientInventorySystem.cs b/Content.Client/Inventory/ClientInventorySystem.cs index 87cea4e3d2f..dce401eefda 100644 --- a/Content.Client/Inventory/ClientInventorySystem.cs +++ b/Content.Client/Inventory/ClientInventorySystem.cs @@ -235,9 +235,23 @@ public void UIInventoryAltActivateItem(string slot, EntityUid uid) EntityManager.RaisePredictiveEvent(new InteractInventorySlotEvent(GetNetEntity(item.Value), altInteract: true)); } + protected override void UpdateInventoryTemplate(Entity ent) + { + base.UpdateInventoryTemplate(ent); + + if (TryComp(ent, out InventorySlotsComponent? inventorySlots)) + { + foreach (var slot in ent.Comp.Slots) + { + if (inventorySlots.SlotData.TryGetValue(slot.Name, out var slotData)) + slotData.SlotDef = slot; + } + } + } + public sealed class SlotData { - public readonly SlotDefinition SlotDef; + public SlotDefinition SlotDef; public EntityUid? HeldEntity => Container?.ContainedEntity; public bool Blocked; public bool Highlighted; diff --git a/Content.Client/Overlays/EquipmentHudSystem.cs b/Content.Client/Overlays/EquipmentHudSystem.cs index c7578b6793f..502a1f36274 100644 --- a/Content.Client/Overlays/EquipmentHudSystem.cs +++ b/Content.Client/Overlays/EquipmentHudSystem.cs @@ -14,6 +14,7 @@ public abstract class EquipmentHudSystem : EntitySystem where T : IComponent { [Dependency] private readonly IPlayerManager _player = default!; + [ViewVariables] protected bool IsActive; protected virtual SlotFlags TargetSlots => ~SlotFlags.POCKET; @@ -102,7 +103,7 @@ protected virtual void OnRefreshComponentHud(EntityUid uid, T component, Refresh args.Components.Add(component); } - private void RefreshOverlay(EntityUid uid) + protected void RefreshOverlay(EntityUid uid) { if (uid != _player.LocalSession?.AttachedEntity) return; diff --git a/Content.Client/Overlays/ShowHealthBarsSystem.cs b/Content.Client/Overlays/ShowHealthBarsSystem.cs index 1eb712a8988..b23209ff202 100644 --- a/Content.Client/Overlays/ShowHealthBarsSystem.cs +++ b/Content.Client/Overlays/ShowHealthBarsSystem.cs @@ -21,9 +21,16 @@ public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnHandleState); + _overlay = new(EntityManager, _prototype); } + private void OnHandleState(Entity ent, ref AfterAutoHandleStateEvent args) + { + RefreshOverlay(ent); + } + protected override void UpdateInternal(RefreshEquipmentHudEvent component) { base.UpdateInternal(component); diff --git a/Content.Client/Overlays/ShowHealthIconsSystem.cs b/Content.Client/Overlays/ShowHealthIconsSystem.cs index 8c22c78f17c..b4d845e4217 100644 --- a/Content.Client/Overlays/ShowHealthIconsSystem.cs +++ b/Content.Client/Overlays/ShowHealthIconsSystem.cs @@ -17,6 +17,7 @@ public sealed class ShowHealthIconsSystem : EquipmentHudSystem DamageContainers = new(); public override void Initialize() @@ -24,6 +25,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnGetStatusIconsEvent); + SubscribeLocalEvent(OnHandleState); } protected override void UpdateInternal(RefreshEquipmentHudEvent component) @@ -43,6 +45,11 @@ protected override void DeactivateInternal() DamageContainers.Clear(); } + private void OnHandleState(Entity ent, ref AfterAutoHandleStateEvent args) + { + RefreshOverlay(ent); + } + private void OnGetStatusIconsEvent(Entity entity, ref GetStatusIconsEvent args) { if (!IsActive) diff --git a/Content.Client/Silicons/Borgs/BorgMenu.xaml.cs b/Content.Client/Silicons/Borgs/BorgMenu.xaml.cs index f6a861aa057..b8f0e69c022 100644 --- a/Content.Client/Silicons/Borgs/BorgMenu.xaml.cs +++ b/Content.Client/Silicons/Borgs/BorgMenu.xaml.cs @@ -131,7 +131,8 @@ private void UpdateModulePanel() _modules.Clear(); foreach (var module in chassis.ModuleContainer.ContainedEntities) { - var control = new BorgModuleControl(module, _entity); + var moduleComponent = _entity.GetComponent(module); + var control = new BorgModuleControl(module, _entity, !moduleComponent.DefaultModule); control.RemoveButtonPressed += () => { RemoveModuleButtonPressed?.Invoke(module); diff --git a/Content.Client/Silicons/Borgs/BorgModuleControl.xaml.cs b/Content.Client/Silicons/Borgs/BorgModuleControl.xaml.cs index d5cf05ba63e..245425524ca 100644 --- a/Content.Client/Silicons/Borgs/BorgModuleControl.xaml.cs +++ b/Content.Client/Silicons/Borgs/BorgModuleControl.xaml.cs @@ -9,7 +9,7 @@ public sealed partial class BorgModuleControl : PanelContainer { public Action? RemoveButtonPressed; - public BorgModuleControl(EntityUid entity, IEntityManager entityManager) + public BorgModuleControl(EntityUid entity, IEntityManager entityManager, bool canRemove) { RobustXamlLoader.Load(this); @@ -20,6 +20,7 @@ public BorgModuleControl(EntityUid entity, IEntityManager entityManager) { RemoveButtonPressed?.Invoke(); }; + RemoveButton.Visible = canRemove; } } diff --git a/Content.Client/Silicons/Borgs/BorgSelectTypeMenu.xaml b/Content.Client/Silicons/Borgs/BorgSelectTypeMenu.xaml new file mode 100644 index 00000000000..f51c2f53fd0 --- /dev/null +++ b/Content.Client/Silicons/Borgs/BorgSelectTypeMenu.xaml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + diff --git a/Content.Client/Silicons/Borgs/BorgSelectTypeMenu.xaml.cs b/Content.Client/Silicons/Borgs/BorgSelectTypeMenu.xaml.cs new file mode 100644 index 00000000000..e1fbd376b54 --- /dev/null +++ b/Content.Client/Silicons/Borgs/BorgSelectTypeMenu.xaml.cs @@ -0,0 +1,81 @@ +using System.Linq; +using Content.Client.UserInterface.Controls; +using Content.Client.UserInterface.Systems.Guidebook; +using Content.Shared.Guidebook; +using Content.Shared.Silicons.Borgs; +using Content.Shared.Silicons.Borgs.Components; +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Prototypes; + +namespace Content.Client.Silicons.Borgs; + +/// +/// Menu used by borgs to select their type. +/// +/// +/// +[GenerateTypedNameReferences] +public sealed partial class BorgSelectTypeMenu : FancyWindow +{ + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + + private BorgTypePrototype? _selectedBorgType; + + public event Action>? ConfirmedBorgType; + + [ValidatePrototypeId] + private static readonly List> GuidebookEntries = new() { "Cyborgs", "Robotics" }; + + public BorgSelectTypeMenu() + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + + var group = new ButtonGroup(); + foreach (var borgType in _prototypeManager.EnumeratePrototypes().OrderBy(PrototypeName)) + { + var button = new Button + { + Text = PrototypeName(borgType), + Group = group, + }; + button.OnPressed += _ => + { + _selectedBorgType = borgType; + UpdateInformation(borgType); + }; + SelectionsContainer.AddChild(button); + } + + ConfirmTypeButton.OnPressed += ConfirmButtonPressed; + HelpGuidebookIds = GuidebookEntries; + } + + private void UpdateInformation(BorgTypePrototype prototype) + { + _selectedBorgType = prototype; + + InfoContents.Visible = true; + InfoPlaceholder.Visible = false; + ConfirmTypeButton.Disabled = false; + + NameLabel.Text = PrototypeName(prototype); + DescriptionLabel.Text = Loc.GetString($"borg-type-{prototype.ID}-desc"); + ChassisView.SetPrototype(prototype.DummyPrototype); + } + + private void ConfirmButtonPressed(BaseButton.ButtonEventArgs obj) + { + if (_selectedBorgType == null) + return; + + ConfirmedBorgType?.Invoke(_selectedBorgType); + } + + private static string PrototypeName(BorgTypePrototype prototype) + { + return Loc.GetString($"borg-type-{prototype.ID}-name"); + } +} diff --git a/Content.Client/Silicons/Borgs/BorgSelectTypeUserInterface.cs b/Content.Client/Silicons/Borgs/BorgSelectTypeUserInterface.cs new file mode 100644 index 00000000000..8c76fade8c9 --- /dev/null +++ b/Content.Client/Silicons/Borgs/BorgSelectTypeUserInterface.cs @@ -0,0 +1,30 @@ +using Content.Shared.Silicons.Borgs.Components; +using JetBrains.Annotations; +using Robust.Client.UserInterface; + +namespace Content.Client.Silicons.Borgs; + +/// +/// User interface used by borgs to select their type. +/// +/// +/// +/// +[UsedImplicitly] +public sealed class BorgSelectTypeUserInterface : BoundUserInterface +{ + [ViewVariables] + private BorgSelectTypeMenu? _menu; + + public BorgSelectTypeUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + } + + protected override void Open() + { + base.Open(); + + _menu = this.CreateWindow(); + _menu.ConfirmedBorgType += prototype => SendMessage(new BorgSelectTypeMessage(prototype)); + } +} diff --git a/Content.Client/Silicons/Borgs/BorgSwitchableTypeSystem.cs b/Content.Client/Silicons/Borgs/BorgSwitchableTypeSystem.cs new file mode 100644 index 00000000000..346dc5c276e --- /dev/null +++ b/Content.Client/Silicons/Borgs/BorgSwitchableTypeSystem.cs @@ -0,0 +1,81 @@ +using Content.Shared.Movement.Components; +using Content.Shared.Silicons.Borgs; +using Content.Shared.Silicons.Borgs.Components; +using Robust.Client.GameObjects; + +namespace Content.Client.Silicons.Borgs; + +/// +/// Client side logic for borg type switching. Sets up primarily client-side visual information. +/// +/// +/// +public sealed class BorgSwitchableTypeSystem : SharedBorgSwitchableTypeSystem +{ + [Dependency] private readonly BorgSystem _borgSystem = default!; + [Dependency] private readonly AppearanceSystem _appearance = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(AfterStateHandler); + SubscribeLocalEvent(OnComponentStartup); + } + + private void OnComponentStartup(Entity ent, ref ComponentStartup args) + { + UpdateEntityAppearance(ent); + } + + private void AfterStateHandler(Entity ent, ref AfterAutoHandleStateEvent args) + { + UpdateEntityAppearance(ent); + } + + protected override void UpdateEntityAppearance( + Entity entity, + BorgTypePrototype prototype) + { + if (TryComp(entity, out SpriteComponent? sprite)) + { + sprite.LayerSetState(BorgVisualLayers.Body, prototype.SpriteBodyState); + sprite.LayerSetState(BorgVisualLayers.LightStatus, prototype.SpriteToggleLightState); + } + + if (TryComp(entity, out BorgChassisComponent? chassis)) + { + _borgSystem.SetMindStates( + (entity.Owner, chassis), + prototype.SpriteHasMindState, + prototype.SpriteNoMindState); + + if (TryComp(entity, out AppearanceComponent? appearance)) + { + // Queue update so state changes apply. + _appearance.QueueUpdate(entity, appearance); + } + } + + if (prototype.SpriteBodyMovementState is { } movementState) + { + var spriteMovement = EnsureComp(entity); + spriteMovement.NoMovementLayers.Clear(); + spriteMovement.NoMovementLayers["movement"] = new PrototypeLayerData + { + State = prototype.SpriteBodyState, + }; + spriteMovement.MovementLayers.Clear(); + spriteMovement.MovementLayers["movement"] = new PrototypeLayerData + { + State = movementState, + }; + } + else + { + RemComp(entity); + } + + base.UpdateEntityAppearance(entity, prototype); + } +} diff --git a/Content.Client/Silicons/Borgs/BorgSystem.cs b/Content.Client/Silicons/Borgs/BorgSystem.cs index e92ce5cc777..387a56384e9 100644 --- a/Content.Client/Silicons/Borgs/BorgSystem.cs +++ b/Content.Client/Silicons/Borgs/BorgSystem.cs @@ -92,4 +92,18 @@ private void OnMMIAppearanceChanged(EntityUid uid, MMIComponent component, ref A sprite.LayerSetState(MMIVisualLayers.Base, state); } } + + /// + /// Sets the sprite states used for the borg "is there a mind or not" indication. + /// + /// The entity and component to modify. + /// The state to use if the borg has a mind. + /// The state to use if the borg has no mind. + /// + /// + public void SetMindStates(Entity borg, string hasMindState, string noMindState) + { + borg.Comp.HasMindState = hasMindState; + borg.Comp.NoMindState = noMindState; + } } diff --git a/Content.Server/Silicons/Borgs/BorgSwitchableTypeSystem.cs b/Content.Server/Silicons/Borgs/BorgSwitchableTypeSystem.cs new file mode 100644 index 00000000000..d1a32a6a5ba --- /dev/null +++ b/Content.Server/Silicons/Borgs/BorgSwitchableTypeSystem.cs @@ -0,0 +1,82 @@ +using Content.Server.Inventory; +using Content.Server.Radio.Components; +using Content.Shared.Inventory; +using Content.Shared.Silicons.Borgs; +using Content.Shared.Silicons.Borgs.Components; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Server.Silicons.Borgs; + +/// +/// Server-side logic for borg type switching. Handles more heavyweight and server-specific switching logic. +/// +public sealed class BorgSwitchableTypeSystem : SharedBorgSwitchableTypeSystem +{ + [Dependency] private readonly BorgSystem _borgSystem = default!; + [Dependency] private readonly ServerInventorySystem _inventorySystem = default!; + + protected override void SelectBorgModule(Entity ent, ProtoId borgType) + { + var prototype = Prototypes.Index(borgType); + + // Assign radio channels + string[] radioChannels = [.. ent.Comp.InherentRadioChannels, .. prototype.RadioChannels]; + if (TryComp(ent, out IntrinsicRadioTransmitterComponent? transmitter)) + transmitter.Channels = [.. radioChannels]; + + if (TryComp(ent, out ActiveRadioComponent? activeRadio)) + activeRadio.Channels = [.. radioChannels]; + + // Borg transponder for the robotics console + if (TryComp(ent, out BorgTransponderComponent? transponder)) + { + _borgSystem.SetTransponderSprite( + (ent.Owner, transponder), + new SpriteSpecifier.Rsi(new ResPath("Mobs/Silicon/chassis.rsi"), prototype.SpriteBodyState)); + + _borgSystem.SetTransponderName( + (ent.Owner, transponder), + Loc.GetString($"borg-type-{borgType}-transponder")); + } + + // Configure modules + if (TryComp(ent, out BorgChassisComponent? chassis)) + { + var chassisEnt = (ent.Owner, chassis); + _borgSystem.SetMaxModules( + chassisEnt, + prototype.ExtraModuleCount + prototype.DefaultModules.Length); + + _borgSystem.SetModuleWhitelist(chassisEnt, prototype.ModuleWhitelist); + + foreach (var module in prototype.DefaultModules) + { + var moduleEntity = Spawn(module); + var borgModule = Comp(moduleEntity); + _borgSystem.SetBorgModuleDefault((moduleEntity, borgModule), true); + _borgSystem.InsertModule(chassisEnt, moduleEntity); + } + } + + // Configure special components + if (Prototypes.TryIndex(ent.Comp.SelectedBorgType, out var previousPrototype)) + { + if (previousPrototype.AddComponents is { } removeComponents) + EntityManager.RemoveComponents(ent, removeComponents); + } + + if (prototype.AddComponents is { } addComponents) + { + EntityManager.AddComponents(ent, addComponents); + } + + // Configure inventory template (used for hat spacing) + if (TryComp(ent, out InventoryComponent? inventory)) + { + _inventorySystem.SetTemplateId((ent.Owner, inventory), prototype.InventoryTemplateId); + } + + base.SelectBorgModule(ent, borgType); + } +} diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs index d5a429db030..f95a5807360 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs @@ -2,6 +2,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Interaction.Components; using Content.Shared.Silicons.Borgs.Components; +using Content.Shared.Whitelist; using Robust.Shared.Containers; namespace Content.Server.Silicons.Borgs; @@ -300,6 +301,24 @@ public bool CanInsertModule(EntityUid uid, EntityUid module, BorgChassisComponen return true; } + /// + /// Check if a module can be removed from a borg. + /// + /// The borg that the module is being removed from. + /// The module to remove from the borg. + /// The user attempting to remove the module. + /// True if the module can be removed. + public bool CanRemoveModule( + Entity borg, + Entity module, + EntityUid? user = null) + { + if (module.Comp.DefaultModule) + return false; + + return true; + } + /// /// Installs and activates all modules currently inside the borg's module container /// @@ -369,4 +388,24 @@ public void UninstallModule(EntityUid uid, EntityUid module, BorgChassisComponen var ev = new BorgModuleUninstalledEvent(uid); RaiseLocalEvent(module, ref ev); } + + /// + /// Sets . + /// + /// The borg to modify. + /// The new max module count. + public void SetMaxModules(Entity ent, int maxModules) + { + ent.Comp.MaxModules = maxModules; + } + + /// + /// Sets . + /// + /// The borg to modify. + /// The new module whitelist. + public void SetModuleWhitelist(Entity ent, EntityWhitelist? whitelist) + { + ent.Comp.ModuleWhitelist = whitelist; + } } diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs index 781f847be35..b4ba1400441 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs @@ -8,6 +8,7 @@ using Content.Server.DeviceNetwork.Components; using Content.Server.DeviceNetwork.Systems; using Content.Server.Explosion.Components; +using Robust.Shared.Utility; namespace Content.Server.Silicons.Borgs; @@ -134,4 +135,20 @@ private bool CheckEmagged(EntityUid uid, string name) return false; } + + /// + /// Sets . + /// + public void SetTransponderSprite(Entity ent, SpriteSpecifier sprite) + { + ent.Comp.Sprite = sprite; + } + + /// + /// Sets . + /// + public void SetTransponderName(Entity ent, string name) + { + ent.Comp.Name = name; + } } diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs b/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs index d0e9f80e364..40c2c3bf332 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Ui.cs @@ -82,6 +82,9 @@ private void OnRemoveModuleBuiMessage(EntityUid uid, BorgChassisComponent compon if (!component.ModuleContainer.Contains(module)) return; + if (!CanRemoveModule((uid, component), (module, Comp(module)), args.Actor)) + return; + _adminLog.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(args.Actor):player} removed module {ToPrettyString(module)} from borg {ToPrettyString(uid)}"); _container.Remove(module, component.ModuleContainer); diff --git a/Content.Server/Silicons/Borgs/BorgSystem.cs b/Content.Server/Silicons/Borgs/BorgSystem.cs index bd85282a0f5..ff204bfa8ce 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.cs @@ -129,7 +129,7 @@ private void OnChassisInteractUsing(EntityUid uid, BorgChassisComponent componen if (module != null && CanInsertModule(uid, used, component, module, args.User)) { - _container.Insert(used, component.ModuleContainer); + InsertModule((uid, component), used); _adminLog.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(args.User):player} installed module {ToPrettyString(used)} into borg {ToPrettyString(uid)}"); args.Handled = true; @@ -137,6 +137,19 @@ private void OnChassisInteractUsing(EntityUid uid, BorgChassisComponent componen } } + /// + /// Inserts a new module into a borg, the same as if a player inserted it manually. + /// + /// + /// This does not run checks to see if the borg is actually allowed to be inserted, such as whitelists. + /// + /// The borg to insert into. + /// The module to insert. + public void InsertModule(Entity ent, EntityUid module) + { + _container.Insert(module, ent.Comp.ModuleContainer); + } + // todo: consider transferring over the ghost role? managing that might suck. protected override void OnInserted(EntityUid uid, BorgChassisComponent component, EntInsertedIntoContainerMessage args) { diff --git a/Content.Shared/Interaction/InteractionPopupSystem.cs b/Content.Shared/Interaction/InteractionPopupSystem.cs index 20c079dfd8c..8df0035fc98 100644 --- a/Content.Shared/Interaction/InteractionPopupSystem.cs +++ b/Content.Shared/Interaction/InteractionPopupSystem.cs @@ -159,4 +159,26 @@ private void SharedInteract( _audio.PlayEntity(sfx, Filter.Empty().FromEntities(target), target, false); } } + + /// + /// Sets . + /// + /// + /// This field is not networked automatically, so this method must be called on both sides of the network. + /// + public void SetInteractSuccessString(Entity ent, string str) + { + ent.Comp.InteractSuccessString = str; + } + + /// + /// Sets . + /// + /// + /// This field is not networked automatically, so this method must be called on both sides of the network. + /// + public void SetInteractFailureString(Entity ent, string str) + { + ent.Comp.InteractFailureString = str; + } } diff --git a/Content.Shared/Inventory/InventoryComponent.cs b/Content.Shared/Inventory/InventoryComponent.cs index 629cf1169c4..61e0114ff24 100644 --- a/Content.Shared/Inventory/InventoryComponent.cs +++ b/Content.Shared/Inventory/InventoryComponent.cs @@ -7,10 +7,12 @@ namespace Content.Shared.Inventory; [RegisterComponent, NetworkedComponent] [Access(typeof(InventorySystem))] +[AutoGenerateComponentState(true)] public sealed partial class InventoryComponent : Component { [DataField("templateId", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string TemplateId { get; private set; } = "human"; + [AutoNetworkedField] + public string TemplateId { get; set; } = "human"; [DataField("speciesId")] public string? SpeciesId { get; set; } @@ -32,3 +34,9 @@ public sealed partial class InventoryComponent : Component [DataField] public Dictionary MaleDisplacements = new(); } + +/// +/// Raised if the of an inventory changed. +/// +[ByRefEvent] +public struct InventoryTemplateUpdated; diff --git a/Content.Shared/Inventory/InventorySystem.Slots.cs b/Content.Shared/Inventory/InventorySystem.Slots.cs index 2522dd5d0a3..04d58c1cd52 100644 --- a/Content.Shared/Inventory/InventorySystem.Slots.cs +++ b/Content.Shared/Inventory/InventorySystem.Slots.cs @@ -1,4 +1,5 @@ using System.Diagnostics.CodeAnalysis; +using System.Linq; using Content.Shared.Inventory.Events; using Content.Shared.Storage; using Robust.Shared.Containers; @@ -19,6 +20,8 @@ private void InitializeSlots() _vvm.GetTypeHandler() .AddHandler(HandleViewVariablesSlots, ListViewVariablesSlots); + + SubscribeLocalEvent(AfterAutoState); } private void ShutdownSlots() @@ -68,6 +71,27 @@ protected virtual void OnInit(EntityUid uid, InventoryComponent component, Compo } } + private void AfterAutoState(Entity ent, ref AfterAutoHandleStateEvent args) + { + UpdateInventoryTemplate(ent); + } + + protected virtual void UpdateInventoryTemplate(Entity ent) + { + if (ent.Comp.LifeStage < ComponentLifeStage.Initialized) + return; + + if (!_prototypeManager.TryIndex(ent.Comp.TemplateId, out InventoryTemplatePrototype? invTemplate)) + return; + + DebugTools.Assert(ent.Comp.Slots.Length == invTemplate.Slots.Length); + + ent.Comp.Slots = invTemplate.Slots; + + var ev = new InventoryTemplateUpdated(); + RaiseLocalEvent(ent, ref ev); + } + private void OnOpenSlotStorage(OpenSlotStorageNetworkMessage ev, EntitySessionEventArgs args) { if (args.SenderSession.AttachedEntity is not { Valid: true } uid) @@ -170,6 +194,31 @@ private IEnumerable ListViewVariablesSlots(EntityUid uid, InventoryCompo } } + /// + /// Change the inventory template ID an entity is using. The new template must be compatible. + /// + /// + /// + /// For an inventory template to be compatible with another, it must have exactly the same slot names. + /// All other changes are rejected. + /// + /// + /// The entity to update. + /// The ID of the new inventory template prototype. + /// + /// Thrown if the new template is not compatible with the existing one. + /// + public void SetTemplateId(Entity ent, ProtoId newTemplate) + { + var newPrototype = _prototypeManager.Index(newTemplate); + + if (!newPrototype.Slots.Select(x => x.Name).SequenceEqual(ent.Comp.Slots.Select(x => x.Name))) + throw new ArgumentException("Incompatible inventory template!"); + + ent.Comp.TemplateId = newTemplate; + Dirty(ent); + } + /// /// Enumerator for iterating over an inventory's slot containers. Also has methods that skip empty containers. /// It should be safe to add or remove items while enumerating. diff --git a/Content.Shared/Overlays/ShowHealthBarsComponent.cs b/Content.Shared/Overlays/ShowHealthBarsComponent.cs index cb4f0fe7dd4..3f27885db18 100644 --- a/Content.Shared/Overlays/ShowHealthBarsComponent.cs +++ b/Content.Shared/Overlays/ShowHealthBarsComponent.cs @@ -9,12 +9,14 @@ namespace Content.Shared.Overlays; /// This component allows you to see health bars above damageable mobs. /// [RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState(true)] public sealed partial class ShowHealthBarsComponent : Component { /// /// Displays health bars of the damage containers. /// [DataField] + [AutoNetworkedField] public List> DamageContainers = new() { "Biological" diff --git a/Content.Shared/Overlays/ShowHealthIconsComponent.cs b/Content.Shared/Overlays/ShowHealthIconsComponent.cs index aa12c9887a8..bc8b5419d2a 100644 --- a/Content.Shared/Overlays/ShowHealthIconsComponent.cs +++ b/Content.Shared/Overlays/ShowHealthIconsComponent.cs @@ -8,12 +8,14 @@ namespace Content.Shared.Overlays; /// This component allows you to see health status icons above damageable mobs. /// [RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState(true)] public sealed partial class ShowHealthIconsComponent : Component { /// /// Displays health status icons of the damage containers. /// [DataField] + [AutoNetworkedField] public List> DamageContainers = new() { "Biological" diff --git a/Content.Shared/Silicons/Borgs/BorgTypePrototype.cs b/Content.Shared/Silicons/Borgs/BorgTypePrototype.cs new file mode 100644 index 00000000000..6154c127577 --- /dev/null +++ b/Content.Shared/Silicons/Borgs/BorgTypePrototype.cs @@ -0,0 +1,155 @@ +using Content.Shared.Interaction.Components; +using Content.Shared.Inventory; +using Content.Shared.Radio; +using Content.Shared.Silicons.Borgs.Components; +using Content.Shared.Whitelist; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Silicons.Borgs; + +/// +/// Information for a borg type that can be selected by . +/// +/// +[Prototype] +public sealed partial class BorgTypePrototype : IPrototype +{ + [ValidatePrototypeId] + private static readonly ProtoId DefaultFootsteps = new("FootstepBorg"); + + [IdDataField] + public required string ID { get; init; } + + // + // Description info (name/desc) is configured via localization strings directly. + // + + /// + /// The prototype displayed in the selection menu for this type. + /// + [DataField] + public required EntProtoId DummyPrototype { get; init; } + + // + // Functional information + // + + /// + /// The amount of free module slots this borg type has. + /// + /// + /// This count is on top of the modules specified in . + /// + /// + [DataField] + public int ExtraModuleCount { get; set; } = 0; + + /// + /// The whitelist for borg modules that can be inserted into this borg type. + /// + /// + [DataField] + public EntityWhitelist? ModuleWhitelist { get; set; } + + /// + /// Inventory template used by this borg. + /// + /// + /// This template must be compatible with the normal borg templates, + /// so in practice it can only be used to differentiate the visual position of the slots on the character sprites. + /// + /// + [DataField] + public ProtoId InventoryTemplateId { get; set; } = "borgShort"; + + /// + /// Radio channels that this borg will gain access to from this module. + /// + /// + /// These channels are provided on top of the ones specified in + /// . + /// + [DataField] + public ProtoId[] RadioChannels = []; + + /// + /// Borg module types that are always available to borgs of this type. + /// + /// + /// These modules still work like modules, although they cannot be removed from the borg. + /// + /// + [DataField] + public EntProtoId[] DefaultModules = []; + + /// + /// Additional components to add to the borg entity when this type is selected. + /// + [DataField] + public ComponentRegistry? AddComponents { get; set; } + + // + // Visual information + // + + /// + /// The sprite state for the main borg body. + /// + [DataField] + public string SpriteBodyState { get; set; } = "robot"; + + /// + /// An optional movement sprite state for the main borg body. + /// + [DataField] + public string? SpriteBodyMovementState { get; set; } + + /// + /// Sprite state used to indicate that the borg has a mind in it. + /// + /// + [DataField] + public string SpriteHasMindState { get; set; } = "robot_e"; + + /// + /// Sprite state used to indicate that the borg has no mind in it. + /// + /// + [DataField] + public string SpriteNoMindState { get; set; } = "robot_e_r"; + + /// + /// Sprite state used when the borg's flashlight is on. + /// + [DataField] + public string SpriteToggleLightState { get; set; } = "robot_l"; + + // + // Minor information + // + + /// + /// String to use on petting success. + /// + /// + [DataField] + public string PetSuccessString { get; set; } = "petting-success-generic-cyborg"; + + /// + /// String to use on petting failure. + /// + /// + [DataField] + public string PetFailureString { get; set; } = "petting-failure-generic-cyborg"; + + // + // Sounds + // + + /// + /// Sound specifier for footstep sounds created by this borg. + /// + [DataField] + public SoundSpecifier FootstepCollection { get; set; } = new SoundCollectionSpecifier(DefaultFootsteps); +} diff --git a/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs b/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs index de0fe0bce38..c2bf2b2801b 100644 --- a/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs +++ b/Content.Shared/Silicons/Borgs/Components/BorgChassisComponent.cs @@ -89,5 +89,18 @@ public enum BorgVisuals : byte [Serializable, NetSerializable] public enum BorgVisualLayers : byte { - Light + /// + /// Main borg body layer. + /// + Body, + + /// + /// Layer for the borg's mind state. + /// + Light, + + /// + /// Layer for the borg flashlight status. + /// + LightStatus, } diff --git a/Content.Shared/Silicons/Borgs/Components/BorgModuleComponent.cs b/Content.Shared/Silicons/Borgs/Components/BorgModuleComponent.cs index a7523c1ce70..e542a1e3e3e 100644 --- a/Content.Shared/Silicons/Borgs/Components/BorgModuleComponent.cs +++ b/Content.Shared/Silicons/Borgs/Components/BorgModuleComponent.cs @@ -7,6 +7,7 @@ namespace Content.Shared.Silicons.Borgs.Components; /// to give them unique abilities and attributes. /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedBorgSystem))] +[AutoGenerateComponentState] public sealed partial class BorgModuleComponent : Component { /// @@ -16,6 +17,13 @@ public sealed partial class BorgModuleComponent : Component public EntityUid? InstalledEntity; public bool Installed => InstalledEntity != null; + + /// + /// If true, this is a "default" module that cannot be removed from a borg. + /// + [DataField] + [AutoNetworkedField] + public bool DefaultModule; } /// diff --git a/Content.Shared/Silicons/Borgs/Components/BorgSwitchableTypeComponent.cs b/Content.Shared/Silicons/Borgs/Components/BorgSwitchableTypeComponent.cs new file mode 100644 index 00000000000..9a783d19aa7 --- /dev/null +++ b/Content.Shared/Silicons/Borgs/Components/BorgSwitchableTypeComponent.cs @@ -0,0 +1,72 @@ +using Content.Shared.Actions; +using Content.Shared.Radio; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.Silicons.Borgs.Components; + +/// +/// Component for borgs that can switch their "type" after being created. +/// +/// +/// +/// This is used by all NT borgs, on construction and round-start spawn. +/// Borgs are effectively useless until they have made their choice of type. +/// Borg type selections are currently irreversible. +/// +/// +/// Available types are specified in s. +/// +/// +/// +[RegisterComponent, NetworkedComponent] +[AutoGenerateComponentState(raiseAfterAutoHandleState: true)] +[Access(typeof(SharedBorgSwitchableTypeSystem))] +public sealed partial class BorgSwitchableTypeComponent : Component +{ + /// + /// Action entity used by players to select their type. + /// + [DataField, AutoNetworkedField] + public EntityUid? SelectTypeAction; + + /// + /// The currently selected borg type, if any. + /// + /// + /// This can be set in a prototype to immediately apply a borg type, and not have switching support. + /// + [DataField, AutoNetworkedField] + public ProtoId? SelectedBorgType; + + /// + /// Radio channels that the borg will always have. These are added on top of the selected type's radio channels. + /// + [DataField] + public ProtoId[] InherentRadioChannels = []; +} + +/// +/// Action event used to open the selection menu of a . +/// +public sealed partial class BorgToggleSelectTypeEvent : InstantActionEvent; + +/// +/// UI message used by a borg to select their type with . +/// +/// The borg type prototype that the user selected. +[Serializable, NetSerializable] +public sealed class BorgSelectTypeMessage(ProtoId prototype) : BoundUserInterfaceMessage +{ + public ProtoId Prototype = prototype; +} + +/// +/// UI key used by the selection menu for . +/// +[NetSerializable, Serializable] +public enum BorgSwitchableTypeUiKey : byte +{ + SelectBorgType, +} diff --git a/Content.Shared/Silicons/Borgs/SharedBorgSwitchableTypeSystem.cs b/Content.Shared/Silicons/Borgs/SharedBorgSwitchableTypeSystem.cs new file mode 100644 index 00000000000..d9abeb2d326 --- /dev/null +++ b/Content.Shared/Silicons/Borgs/SharedBorgSwitchableTypeSystem.cs @@ -0,0 +1,125 @@ +using Content.Shared.Actions; +using Content.Shared.Interaction; +using Content.Shared.Interaction.Components; +using Content.Shared.Movement.Components; +using Content.Shared.Silicons.Borgs.Components; +using Robust.Shared.Player; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Silicons.Borgs; + +/// +/// Implements borg type switching. +/// +/// +public abstract class SharedBorgSwitchableTypeSystem : EntitySystem +{ + // TODO: Allow borgs to be reset to default configuration. + + [Dependency] private readonly SharedActionsSystem _actionsSystem = default!; + [Dependency] private readonly SharedUserInterfaceSystem _userInterface = default!; + [Dependency] protected readonly IPrototypeManager Prototypes = default!; + [Dependency] private readonly InteractionPopupSystem _interactionPopup = default!; + + [ValidatePrototypeId] + public const string ActionId = "ActionSelectBorgType"; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnSelectBorgTypeAction); + + Subs.BuiEvents(BorgSwitchableTypeUiKey.SelectBorgType, + sub => + { + sub.Event(SelectTypeMessageHandler); + }); + } + + // + // UI-adjacent code + // + + private void OnMapInit(Entity ent, ref MapInitEvent args) + { + _actionsSystem.AddAction(ent, ref ent.Comp.SelectTypeAction, ActionId); + Dirty(ent); + + if (ent.Comp.SelectedBorgType != null) + { + SelectBorgModule(ent, ent.Comp.SelectedBorgType.Value); + } + } + + private void OnShutdown(Entity ent, ref ComponentShutdown args) + { + _actionsSystem.RemoveAction(ent, ent.Comp.SelectTypeAction); + } + + private void OnSelectBorgTypeAction(Entity ent, ref BorgToggleSelectTypeEvent args) + { + if (args.Handled || !TryComp(ent, out var actor)) + return; + + args.Handled = true; + + _userInterface.TryToggleUi((ent.Owner, null), BorgSwitchableTypeUiKey.SelectBorgType, actor.PlayerSession); + } + + private void SelectTypeMessageHandler(Entity ent, ref BorgSelectTypeMessage args) + { + if (ent.Comp.SelectedBorgType != null) + return; + + if (!Prototypes.HasIndex(args.Prototype)) + return; + + SelectBorgModule(ent, args.Prototype); + } + + // + // Implementation + // + + protected virtual void SelectBorgModule( + Entity ent, + ProtoId borgType) + { + ent.Comp.SelectedBorgType = borgType; + + _actionsSystem.RemoveAction(ent, ent.Comp.SelectTypeAction); + ent.Comp.SelectTypeAction = null; + Dirty(ent); + + _userInterface.CloseUi((ent.Owner, null), BorgSwitchableTypeUiKey.SelectBorgType); + + UpdateEntityAppearance(ent); + } + + protected void UpdateEntityAppearance(Entity entity) + { + if (!Prototypes.TryIndex(entity.Comp.SelectedBorgType, out var proto)) + return; + + UpdateEntityAppearance(entity, proto); + } + + protected virtual void UpdateEntityAppearance( + Entity entity, + BorgTypePrototype prototype) + { + if (TryComp(entity, out InteractionPopupComponent? popup)) + { + _interactionPopup.SetInteractSuccessString((entity.Owner, popup), prototype.PetSuccessString); + _interactionPopup.SetInteractFailureString((entity.Owner, popup), prototype.PetFailureString); + } + + if (TryComp(entity, out FootstepModifierComponent? footstepModifier)) + { + footstepModifier.FootstepSoundCollection = prototype.FootstepCollection; + } + } +} diff --git a/Content.Shared/Silicons/Borgs/SharedBorgSystem.cs b/Content.Shared/Silicons/Borgs/SharedBorgSystem.cs index c62e63481d6..827bb351b07 100644 --- a/Content.Shared/Silicons/Borgs/SharedBorgSystem.cs +++ b/Content.Shared/Silicons/Borgs/SharedBorgSystem.cs @@ -124,4 +124,13 @@ private void OnRefreshMovementSpeedModifiers(EntityUid uid, BorgChassisComponent var sprintDif = movement.BaseWalkSpeed / movement.BaseSprintSpeed; args.ModifySpeed(1f, sprintDif); } + + /// + /// Sets . + /// + public void SetBorgModuleDefault(Entity ent, bool newDefault) + { + ent.Comp.DefaultModule = newDefault; + Dirty(ent); + } } diff --git a/Resources/Locale/en-US/borg/borg.ftl b/Resources/Locale/en-US/borg/borg.ftl index 6c495510b05..9c9dc71069a 100644 --- a/Resources/Locale/en-US/borg/borg.ftl +++ b/Resources/Locale/en-US/borg/borg.ftl @@ -25,3 +25,40 @@ borg-transponder-disabling-popup = Your transponder begins to lock you out of th borg-transponder-destroying-popup = The self destruct of {$name} starts beeping! borg-transponder-emagged-disabled-popup = Your transponder's lights go out! borg-transponder-emagged-destroyed-popup = Your transponder's fuse blows! + +## Borg type selection UI. +borg-select-type-menu-title = Select Chassis Type +borg-select-type-menu-bottom-text = Chassis selection is irreversible +borg-select-type-menu-available = Available types +borg-select-type-menu-information = Information +borg-select-type-menu-select-type = Select type to view information +borg-select-type-menu-confirm = Confirm selection +borg-select-type-menu-guidebook = Guidebook + +## Borg type information + +borg-type-generic-name = Generic +borg-type-generic-desc = Jack of all trades, master of none. Do various random station tasks, or maybe help out the science department that built you. +borg-type-generic-transponder = generic cyborg + +borg-type-engineering-name = Engineering +borg-type-engineering-desc = Assist the engineering team in station construction, repairing damage, or fixing electrical and atmospheric issues. +borg-type-engineering-transponder = engineering cyborg + +borg-type-mining-name = Salvage +borg-type-mining-desc = Join salvage and help them mine for materials, scavenge wrecks, and fight off hostile wildlife. +borg-type-mining-transponder = salvage cyborg + +borg-type-janitor-name = Janitor +borg-type-janitor-desc = Keep the station nice and tidy, clean up spills, collect and properly dispose of trash left around by lazy crewmembers. +borg-type-janitor-transponder = janitor cyborg + +borg-type-medical-name = Medical +borg-type-medical-desc = Provide medical attention to crew who need it, either in medbay or in hazardous areas conventional paramedics cannot reach. +borg-type-medical-transponder = medical cyborg + +borg-type-service-name = Service +borg-type-service-desc = Help out with a wide range of crew services, ranging from serving snacks and drinks to botany to entertainment. +borg-type-service-transponder = service cyborg + + diff --git a/Resources/Prototypes/Actions/borgs.yml b/Resources/Prototypes/Actions/borgs.yml index a0168ef00fc..0f635ba3ec6 100644 --- a/Resources/Prototypes/Actions/borgs.yml +++ b/Resources/Prototypes/Actions/borgs.yml @@ -10,3 +10,15 @@ state: state-laws event: !type:ToggleLawsScreenEvent useDelay: 0.5 + +- type: entity + id: ActionSelectBorgType + name: Select Cyborg Type + components: + - type: InstantAction + itemIconStyle: NoItem + icon: + sprite: Interface/Actions/actions_borg.rsi + state: select-type + event: !type:BorgToggleSelectTypeEvent + useDelay: 0.5 diff --git a/Resources/Prototypes/Body/Parts/silicon.yml b/Resources/Prototypes/Body/Parts/silicon.yml index 6b2b3f57d26..3b0f2540963 100644 --- a/Resources/Prototypes/Body/Parts/silicon.yml +++ b/Resources/Prototypes/Body/Parts/silicon.yml @@ -28,82 +28,105 @@ - Robotics - type: entity - id: BaseBorgArmLeft + id: LeftArmBorg parent: PartSilicon name: cyborg left arm - abstract: true components: - type: BodyPart partType: Hand symmetry: Left + - type: Sprite + state: borg_l_arm + - type: Icon + state: borg_l_arm - type: Tag tags: - Trash - BorgArm + - BorgLArm - type: entity - id: BaseBorgArmRight + id: RightArmBorg parent: PartSilicon name: cyborg right arm - abstract: true components: - type: BodyPart partType: Hand symmetry: Right + - type: Sprite + state: borg_r_arm + - type: Icon + state: borg_r_arm - type: Tag tags: - Trash - BorgArm + - BorgRArm - type: entity - id: BaseBorgLegLeft + id: LeftLegBorg parent: PartSilicon name: cyborg left leg - abstract: true components: - type: BodyPart partType: Leg symmetry: Left + - type: Sprite + state: borg_l_leg + - type: Icon + state: borg_l_leg - type: Tag tags: - Trash - BorgLeg + - BorgLLeg - type: entity - id: BaseBorgLegRight + id: RightLegBorg parent: PartSilicon name: cyborg right leg - abstract: true components: - type: BodyPart partType: Leg symmetry: Right + - type: Sprite + state: borg_r_leg + - type: Icon + state: borg_r_leg - type: Tag tags: - Trash - BorgLeg + - BorgRLeg - type: entity - id: BaseBorgHead + id: LightHeadBorg parent: PartSilicon name: cyborg head - abstract: true components: - type: BodyPart partType: Head + - type: Sprite + state: borg_head + - type: Icon + state: borg_head - type: Tag tags: - Trash - BorgHead - type: entity - id: BaseBorgTorso + id: TorsoBorg parent: PartSilicon name: cyborg torso - abstract: true components: - type: BodyPart partType: Torso + - type: Sprite + state: borg_chest + - type: Icon + state: borg_chest - type: Tag tags: - Trash + - BorgTorso diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 0db92ac941d..9303bd42dd5 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -69,6 +69,9 @@ type: BorgBoundUserInterface enum.StrippingUiKey.Key: type: StrippableBoundUserInterface + # Only used for NT borgs that can switch type, defined here to avoid copy-pasting the rest of this component. + enum.BorgSwitchableTypeUiKey.SelectBorgType: + type: BorgSelectTypeUserInterface - type: ActivatableUI key: enum.BorgUiKey.Key - type: SiliconLawBound @@ -157,6 +160,7 @@ collection: FootstepBorg - type: Construction graph: Cyborg + node: cyborg containers: - part-container - cell_slot @@ -285,6 +289,9 @@ - type: AccessReader access: [["Command"], ["Research"]] - type: ShowJobIcons + - type: InteractionPopup + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg - type: entity id: BaseBorgChassisSyndicate diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml index 6a8f1e5abb0..fa324c0124f 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml @@ -1,23 +1,22 @@ - type: entity - id: BorgChassisGeneric + id: BorgChassisSelectable parent: BaseBorgChassisNT components: - type: Sprite layers: - state: robot + map: ["enum.BorgVisualLayers.Body", "movement"] - state: robot_e_r map: ["enum.BorgVisualLayers.Light"] shader: unshaded visible: false - state: robot_l shader: unshaded - map: ["light"] + map: ["light","enum.BorgVisualLayers.LightStatus"] visible: false - type: BorgChassis - maxModules: 6 - moduleWhitelist: - tags: - - BorgModuleGeneric + # Default borg can take no modules until selected type. + maxModules: 0 hasMindState: robot_e noMindState: robot_e_r - type: BorgTransponder @@ -25,308 +24,62 @@ sprite: Mobs/Silicon/chassis.rsi state: robot name: cyborg - - type: Construction - node: cyborg - - type: Speech - speechVerb: Robotic - type: InteractionPopup interactSuccessString: petting-success-generic-cyborg interactFailureString: petting-failure-generic-cyborg - interactSuccessSound: - path: /Audio/Ambience/Objects/periodic_beep.ogg + - type: BorgSwitchableType + inherentRadioChannels: + - Common + - Binary + +- type: entity + id: BorgChassisGeneric + parent: BorgChassisSelectable + name: generic cyborg + suffix: type picked + components: + - type: BorgSwitchableType + selectedBorgType: generic - type: entity id: BorgChassisMining - parent: BaseBorgChassisNT + parent: BorgChassisSelectable name: salvage cyborg components: - - type: Sprite - layers: - - state: miner - map: ["movement"] - - state: miner_e_r - map: ["enum.BorgVisualLayers.Light"] - shader: unshaded - visible: false - - state: miner_l - shader: unshaded - map: ["light"] - visible: false - - type: SpriteMovement - movementLayers: - movement: - state: miner_moving - noMovementLayers: - movement: - state: miner - - type: BorgChassis - maxModules: 4 - moduleWhitelist: - tags: - - BorgModuleGeneric - - BorgModuleCargo - hasMindState: miner_e - noMindState: miner_e_r - - type: BorgTransponder - sprite: - sprite: Mobs/Silicon/chassis.rsi - state: miner - name: salvage cyborg - - type: Construction - node: mining - - type: IntrinsicRadioTransmitter - channels: - - Supply - - Binary - - Common - - Science - - type: ActiveRadio - channels: - - Supply - - Binary - - Common - - Science - - type: AccessReader - access: [["Cargo"], ["Salvage"], ["Command"], ["Research"]] - - type: Inventory - templateId: borgTall - - type: InteractionPopup - interactSuccessString: petting-success-salvage-cyborg - interactFailureString: petting-failure-salvage-cyborg - interactSuccessSound: - path: /Audio/Ambience/Objects/periodic_beep.ogg + - type: BorgSwitchableType + selectedBorgType: mining - type: entity id: BorgChassisEngineer - parent: BaseBorgChassisNT + parent: BorgChassisSelectable name: engineer cyborg components: - - type: Sprite - layers: - - state: engineer - - state: engineer_e_r - map: ["enum.BorgVisualLayers.Light"] - shader: unshaded - visible: false - - state: engineer_l - shader: unshaded - map: ["light"] - visible: false - - type: BorgChassis - maxModules: 4 - moduleWhitelist: - tags: - - BorgModuleGeneric - - BorgModuleEngineering - hasMindState: engineer_e - noMindState: engineer_e_r - - type: BorgTransponder - sprite: - sprite: Mobs/Silicon/chassis.rsi - state: engineer - name: engineer cyborg - - type: Construction - node: engineer - - type: IntrinsicRadioTransmitter - channels: - - Engineering - - Binary - - Common - - Science - - type: ActiveRadio - channels: - - Engineering - - Binary - - Common - - Science - - type: AccessReader - access: [["Engineering"], ["Command"], ["Research"]] - - type: Inventory - templateId: borgShort - - type: InteractionPopup - interactSuccessString: petting-success-engineer-cyborg - interactFailureString: petting-failure-engineer-cyborg - interactSuccessSound: - path: /Audio/Ambience/Objects/periodic_beep.ogg + - type: BorgSwitchableType + selectedBorgType: engineering - type: entity id: BorgChassisJanitor - parent: BaseBorgChassisNT + parent: BorgChassisSelectable name: janitor cyborg components: - - type: Sprite - layers: - - state: janitor - map: ["movement"] - - state: janitor_e_r - map: ["enum.BorgVisualLayers.Light"] - shader: unshaded - visible: false - - state: janitor_l - shader: unshaded - map: ["light"] - visible: false - - type: SpriteMovement - movementLayers: - movement: - state: janitor_moving - noMovementLayers: - movement: - state: janitor - - type: BorgChassis - maxModules: 4 - moduleWhitelist: - tags: - - BorgModuleGeneric - - BorgModuleJanitor - hasMindState: janitor_e - noMindState: janitor_e_r - - type: BorgTransponder - sprite: - sprite: Mobs/Silicon/chassis.rsi - state: janitor - name: janitor cyborg - - type: Construction - node: janitor - - type: IntrinsicRadioTransmitter - channels: - - Service - - Binary - - Common - - Science - - type: ActiveRadio - channels: - - Service - - Binary - - Common - - Science - - type: AccessReader - access: [["Service"], ["Command"], ["Research"]] - - type: Inventory - templateId: borgShort - - type: InteractionPopup - interactSuccessString: petting-success-janitor-cyborg - interactFailureString: petting-failure-janitor-cyborg - interactSuccessSound: - path: /Audio/Ambience/Objects/periodic_beep.ogg + - type: BorgSwitchableType + selectedBorgType: janitor - type: entity id: BorgChassisMedical - parent: [BaseBorgChassisNT, ShowMedicalIcons] + parent: BorgChassisSelectable name: medical cyborg components: - - type: Sprite - layers: - - state: medical - map: ["movement"] - - state: medical_e_r - map: ["enum.BorgVisualLayers.Light"] - shader: unshaded - visible: false - - state: medical_l - shader: unshaded - map: ["light"] - visible: false - - type: SpriteMovement - movementLayers: - movement: - state: medical_moving - noMovementLayers: - movement: - state: medical - - type: BorgChassis - maxModules: 4 - moduleWhitelist: - tags: - - BorgModuleGeneric - - BorgModuleMedical - hasMindState: medical_e - noMindState: medical_e_r - - type: BorgTransponder - sprite: - sprite: Mobs/Silicon/chassis.rsi - state: medical - name: medical cyborg - - type: Construction - node: medical - - type: IntrinsicRadioTransmitter - channels: - - Medical - - Binary - - Common - - Science - - type: ActiveRadio - channels: - - Medical - - Binary - - Common - - Science - - type: AccessReader - access: [["Medical"], ["Command"], ["Research"]] - - type: Inventory - templateId: borgDutch - - type: FootstepModifier - footstepSoundCollection: - collection: FootstepHoverBorg - - type: SolutionScanner - - type: InteractionPopup - interactSuccessString: petting-success-medical-cyborg - interactFailureString: petting-failure-medical-cyborg - interactSuccessSound: - path: /Audio/Ambience/Objects/periodic_beep.ogg + - type: BorgSwitchableType + selectedBorgType: medical - type: entity id: BorgChassisService - parent: BaseBorgChassisNT + parent: BorgChassisSelectable name: service cyborg components: - - type: Sprite - layers: - - state: service - - state: service_e_r - map: ["enum.BorgVisualLayers.Light"] - shader: unshaded - visible: false - - state: service_l - shader: unshaded - map: ["light"] - visible: false - - type: BorgChassis - maxModules: 4 - moduleWhitelist: - tags: - - BorgModuleGeneric - - BorgModuleService - hasMindState: service_e - noMindState: service_e_r - - type: BorgTransponder - sprite: - sprite: Mobs/Silicon/chassis.rsi - state: service - name: service cyborg - - type: Construction - node: service - - type: IntrinsicRadioTransmitter - channels: - - Service - - Binary - - Common - - Science - - type: ActiveRadio - channels: - - Service - - Binary - - Common - - Science - - type: AccessReader - access: [["Service"], ["Command"], ["Research"]] - - type: Inventory - templateId: borgTall - - type: InteractionPopup - interactSuccessString: petting-success-service-cyborg - interactFailureString: petting-failure-service-cyborg - interactSuccessSound: - path: /Audio/Ambience/Objects/periodic_beep.ogg + - type: BorgSwitchableType + selectedBorgType: service - type: entity id: BorgChassisSyndicateAssault @@ -354,8 +107,6 @@ - BorgModuleSyndicateAssault hasMindState: synd_sec_e noMindState: synd_sec - - type: Construction - node: syndicateassault - type: InteractionPopup interactSuccessString: petting-success-syndicate-cyborg interactFailureString: petting-failure-syndicate-cyborg @@ -388,8 +139,6 @@ - BorgModuleSyndicate hasMindState: synd_medical_e noMindState: synd_medical - - type: Construction - node: syndicatemedical - type: ShowHealthBars - type: InteractionPopup interactSuccessString: petting-success-syndicate-cyborg @@ -429,8 +178,6 @@ - BorgModuleSyndicate hasMindState: synd_engi_e noMindState: synd_engi - - type: Construction - node: syndicatesaboteur - type: ShowHealthBars damageContainers: - Inorganic diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index e787ef59f00..bcac46ed842 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -429,28 +429,9 @@ map: ["base"] # Borgs -- type: entity - id: PlayerBorgGeneric - parent: BorgChassisGeneric - suffix: Battery, Tools - components: - - type: ContainerFill - containers: - borg_brain: - - PositronicBrain - borg_module: - - BorgModuleTool - - type: ItemSlots - slots: - cell_slot: - name: power-cell-slot-component-slot-name-default - startingItem: PowerCellMedium - - type: RandomMetadata - nameSegments: [names_borg] - - type: entity id: PlayerBorgBattery - parent: BorgChassisGeneric + parent: BorgChassisSelectable suffix: Battery components: - type: ContainerFill diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_parts.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_parts.yml deleted file mode 100644 index 6df0488e28f..00000000000 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/borg_parts.yml +++ /dev/null @@ -1,503 +0,0 @@ -# generic parts -- type: entity - id: LeftArmBorg - parent: BaseBorgArmLeft - components: - - type: Sprite - state: borg_l_arm - - type: Icon - state: borg_l_arm - - type: Tag - tags: - - Trash - - BorgArm - - BorgGenericLArm - -- type: entity - id: RightArmBorg - parent: BaseBorgArmRight - components: - - type: Sprite - state: borg_r_arm - - type: Icon - state: borg_r_arm - - type: Tag - tags: - - Trash - - BorgArm - - BorgGenericRArm - -- type: entity - id: LeftLegBorg - parent: BaseBorgLegLeft - components: - - type: Sprite - state: borg_l_leg - - type: Icon - state: borg_l_leg - - type: Tag - tags: - - Trash - - BorgLeg - - BorgGenericLLeg - -- type: entity - id: RightLegBorg - parent: BaseBorgLegRight - components: - - type: Sprite - state: borg_r_leg - - type: Icon - state: borg_r_leg - - type: Tag - tags: - - Trash - - BorgLeg - - BorgGenericRLeg - -- type: entity - id: LightHeadBorg - parent: BaseBorgHead - components: - - type: Sprite - state: borg_head - - type: Icon - state: borg_head - - type: Tag - tags: - - Trash - - BorgHead - - BorgGenericHead - -- type: entity - id: TorsoBorg - parent: BaseBorgTorso - components: - - type: Sprite - state: borg_chest - - type: Icon - state: borg_chest - - type: Tag - tags: - - Trash - - BorgGenericTorso - -# engineer parts -- type: entity - id: LeftArmBorgEngineer - parent: BaseBorgArmLeft - name: engineer cyborg left arm - components: - - type: Sprite - state: engineer_l_arm - - type: Icon - state: engineer_l_arm - - type: Tag - tags: - - Trash - - BorgArm - - BorgEngineerLArm - -- type: entity - id: RightArmBorgEngineer - parent: BaseBorgArmRight - name: engineer cyborg right arm - components: - - type: Sprite - state: engineer_r_arm - - type: Icon - state: engineer_r_arm - - type: Tag - tags: - - Trash - - BorgArm - - BorgEngineerRArm - -- type: entity - id: LeftLegBorgEngineer - parent: BaseBorgLegLeft - name: engineer cyborg left leg - components: - - type: Sprite - state: engineer_l_leg - - type: Icon - state: engineer_l_leg - - type: Tag - tags: - - Trash - - BorgLeg - - BorgEngineerLLeg - -- type: entity - id: RightLegBorgEngineer - parent: BaseBorgLegRight - name: engineer cyborg right leg - components: - - type: Sprite - state: engineer_r_leg - - type: Icon - state: engineer_r_leg - - type: Tag - tags: - - Trash - - BorgLeg - - BorgEngineerRLeg - -- type: entity - id: HeadBorgEngineer - parent: BaseBorgHead - name: engineer cyborg head - components: - - type: Sprite - state: engineer_head - - type: Icon - state: engineer_head - - type: Tag - tags: - - Trash - - BorgHead - - BorgEngineerHead - -- type: entity - id: TorsoBorgEngineer - parent: BaseBorgTorso - name: engineer cyborg torso - components: - - type: Sprite - state: engineer_chest - - type: Icon - state: engineer_chest - - type: Tag - tags: - - Trash - - BorgEngineerTorso - -# janitor parts -- type: entity - id: LeftLegBorgJanitor - parent: BaseBorgLegLeft - name: janitor cyborg left leg - components: - - type: Sprite - state: janitor_l_leg - - type: Icon - state: janitor_l_leg - - type: Tag - tags: - - Trash - - BorgLeg - - BorgJanitorLLeg - -- type: entity - id: RightLegBorgJanitor - parent: BaseBorgLegRight - name: janitor cyborg right leg - components: - - type: Sprite - state: janitor_r_leg - - type: Icon - state: janitor_r_leg - - type: Tag - tags: - - Trash - - BorgLeg - - BorgJanitorRLeg - -- type: entity - id: HeadBorgJanitor - parent: BaseBorgHead - name: janitor cyborg head - components: - - type: Sprite - state: janitor_head - - type: Icon - state: janitor_head - - type: Tag - tags: - - Trash - - BorgHead - - BorgJanitorHead - -- type: entity - id: TorsoBorgJanitor - parent: BaseBorgTorso - name: janitor cyborg torso - components: - - type: Sprite - state: janitor_chest - - type: Icon - state: janitor_chest - - type: Tag - tags: - - Trash - - BorgJanitorTorso - -# medical parts -- type: entity - id: LeftArmBorgMedical - parent: BaseBorgArmLeft - name: medical cyborg left arm - components: - - type: Sprite - state: medical_l_arm - - type: Icon - state: medical_l_arm - - type: Tag - tags: - - Trash - - BorgArm - - BorgMedicalLArm - -- type: entity - id: RightArmBorgMedical - parent: BaseBorgArmRight - name: medical cyborg right arm - components: - - type: Sprite - state: medical_r_arm - - type: Icon - state: medical_r_arm - - type: Tag - tags: - - Trash - - BorgArm - - BorgMedicalRArm - -- type: entity - id: LeftLegBorgMedical - parent: BaseBorgLegLeft - name: medical cyborg left leg - components: - - type: Sprite - state: medical_l_leg - - type: Icon - state: medical_l_leg - - type: Tag - tags: - - Trash - - BorgLeg - - BorgMedicalLLeg - -- type: entity - id: RightLegBorgMedical - parent: BaseBorgLegRight - name: medical cyborg right leg - components: - - type: Sprite - state: medical_r_leg - - type: Icon - state: medical_r_leg - - type: Tag - tags: - - Trash - - BorgLeg - - BorgMedicalRLeg - -- type: entity - id: HeadBorgMedical - parent: BaseBorgHead - name: medical cyborg head - components: - - type: Sprite - state: medical_head - - type: Icon - state: medical_head - - type: Tag - tags: - - Trash - - BorgHead - - BorgMedicalHead - -- type: entity - id: TorsoBorgMedical - parent: BaseBorgTorso - name: medical cyborg torso - components: - - type: Sprite - state: medical_chest - - type: Icon - state: medical_chest - - type: Tag - tags: - - Trash - - BorgMedicalTorso - -# mining parts -- type: entity - id: LeftArmBorgMining - parent: BaseBorgArmLeft - name: mining cyborg left arm - components: - - type: Sprite - state: mining_l_arm - - type: Icon - state: mining_l_arm - - type: Tag - tags: - - Trash - - BorgArm - - BorgMiningLArm - -- type: entity - id: RightArmBorgMining - parent: BaseBorgArmRight - name: mining cyborg right arm - components: - - type: Sprite - state: mining_r_arm - - type: Icon - state: mining_r_arm - - type: Tag - tags: - - Trash - - BorgArm - - BorgMiningRArm - -- type: entity - id: LeftLegBorgMining - parent: BaseBorgLegLeft - name: mining cyborg left leg - components: - - type: Sprite - state: mining_l_leg - - type: Icon - state: mining_l_leg - - type: Tag - tags: - - Trash - - BorgLeg - - BorgMiningLLeg - -- type: entity - id: RightLegBorgMining - parent: BaseBorgLegRight - name: mining cyborg right leg - components: - - type: Sprite - state: mining_r_leg - - type: Icon - state: mining_r_leg - - type: Tag - tags: - - Trash - - BorgLeg - - BorgMiningRLeg - -- type: entity - id: HeadBorgMining - parent: BaseBorgHead - name: mining cyborg head - components: - - type: Sprite - state: mining_head - - type: Icon - state: mining_head - - type: Tag - tags: - - Trash - - BorgHead - - BorgMiningHead - -- type: entity - id: TorsoBorgMining - parent: BaseBorgTorso - name: mining cyborg torso - components: - - type: Sprite - state: mining_chest - - type: Icon - state: mining_chest - - type: Tag - tags: - - Trash - - BorgMiningTorso - -# service parts -- type: entity - id: LeftArmBorgService - parent: BaseBorgArmLeft - name: service cyborg left arm - components: - - type: Sprite - state: service_l_arm - - type: Icon - state: service_l_arm - - type: Tag - tags: - - Trash - - BorgArm - - BorgServiceLArm - -- type: entity - id: RightArmBorgService - parent: BaseBorgArmRight - name: service cyborg right arm - components: - - type: Sprite - state: service_r_arm - - type: Icon - state: service_r_arm - - type: Tag - tags: - - Trash - - BorgArm - - BorgServiceRArm - -- type: entity - id: LeftLegBorgService - parent: BaseBorgLegLeft - name: service cyborg left leg - components: - - type: Sprite - state: service_l_leg - - type: Icon - state: service_l_leg - - type: Tag - tags: - - Trash - - BorgLeg - - BorgServiceLLeg - -- type: entity - id: RightLegBorgService - parent: BaseBorgLegRight - name: service cyborg right leg - components: - - type: Sprite - state: service_r_leg - - type: Icon - state: service_r_leg - - type: Tag - tags: - - Trash - - BorgLeg - - BorgServiceRLeg - -- type: entity - id: HeadBorgService - parent: BaseBorgHead - name: service cyborg head - components: - - type: Sprite - state: service_head - - type: Icon - state: service_head - - type: Tag - tags: - - Trash - - BorgHead - - BorgServiceHead - -- type: entity - id: TorsoBorgService - parent: BaseBorgTorso - name: service cyborg torso - components: - - type: Sprite - state: service_chest - - type: Icon - state: service_chest - - type: Tag - tags: - - Trash - - BorgServiceTorso diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/endoskeleton.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/endoskeleton.yml index 9261e06ea2a..6afc06a7967 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/endoskeleton.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/endoskeleton.yml @@ -33,139 +33,27 @@ borg_l_arm+o: whitelist: tags: - - BorgGenericLArm + - BorgLArm borg_r_arm+o: whitelist: tags: - - BorgGenericRArm + - BorgRArm borg_l_leg+o: whitelist: tags: - - BorgGenericLLeg + - BorgLLeg borg_r_leg+o: whitelist: tags: - - BorgGenericRLeg + - BorgRLeg borg_head+o: whitelist: tags: - - BorgGenericHead + - BorgHead borg_chest+o: whitelist: tags: - - BorgGenericTorso - service_l_arm+o: - whitelist: - tags: - - BorgServiceLArm - service_r_arm+o: - whitelist: - tags: - - BorgServiceRArm - service_l_leg+o: - whitelist: - tags: - - BorgServiceLLeg - service_r_leg+o: - whitelist: - tags: - - BorgServiceRLeg - service_head+o: - whitelist: - tags: - - BorgServiceHead - service_chest+o: - whitelist: - tags: - - BorgServiceTorso - engineer_l_arm+o: - whitelist: - tags: - - BorgEngineerLArm - engineer_r_arm+o: - whitelist: - tags: - - BorgEngineerRArm - engineer_l_leg+o: - whitelist: - tags: - - BorgEngineerLLeg - engineer_r_leg+o: - whitelist: - tags: - - BorgEngineerRLeg - engineer_head+o: - whitelist: - tags: - - BorgEngineerHead - engineer_chest+o: - whitelist: - tags: - - BorgEngineerTorso - mining_l_arm+o: - whitelist: - tags: - - BorgMiningLArm - mining_r_arm+o: - whitelist: - tags: - - BorgMiningRArm - mining_l_leg+o: - whitelist: - tags: - - BorgMiningLLeg - mining_r_leg+o: - whitelist: - tags: - - BorgMiningRLeg - mining_head+o: - whitelist: - tags: - - BorgMiningHead - mining_chest+o: - whitelist: - tags: - - BorgMiningTorso - medical_l_arm+o: - whitelist: - tags: - - BorgMedicalLArm - medical_r_arm+o: - whitelist: - tags: - - BorgMedicalRArm - medical_l_leg+o: - whitelist: - tags: - - BorgMedicalLLeg - medical_r_leg+o: - whitelist: - tags: - - BorgMedicalRLeg - medical_head+o: - whitelist: - tags: - - BorgMedicalHead - medical_chest+o: - whitelist: - tags: - - BorgMedicalTorso - janitor_l_leg+o: - whitelist: - tags: - - BorgJanitorLLeg - janitor_r_leg+o: - whitelist: - tags: - - BorgJanitorRLeg - janitor_head+o: - whitelist: - tags: - - BorgJanitorHead - janitor_chest+o: - whitelist: - tags: - - BorgJanitorTorso + - BorgTorso - type: ContainerContainer containers: part-container: !type:Container @@ -173,45 +61,12 @@ - type: PartAssembly parts: generic: - - BorgGenericLArm - - BorgGenericRArm - - BorgGenericLLeg - - BorgGenericRLeg - - BorgGenericHead - - BorgGenericTorso - service: - - BorgServiceLArm - - BorgServiceRArm - - BorgServiceLLeg - - BorgServiceRLeg - - BorgServiceHead - - BorgServiceTorso - engineer: - - BorgEngineerLArm - - BorgEngineerRArm - - BorgEngineerLLeg - - BorgEngineerRLeg - - BorgEngineerHead - - BorgEngineerTorso - medical: - - BorgMedicalLArm - - BorgMedicalRArm - - BorgMedicalLLeg - - BorgMedicalRLeg - - BorgMedicalHead - - BorgMedicalTorso - janitor: - - BorgJanitorLLeg - - BorgJanitorRLeg - - BorgJanitorHead - - BorgJanitorTorso - mining: - - BorgMiningLArm - - BorgMiningRArm - - BorgMiningLLeg - - BorgMiningRLeg - - BorgMiningHead - - BorgMiningTorso + - BorgLArm + - BorgRArm + - BorgLLeg + - BorgRLeg + - BorgHead + - BorgTorso - type: Construction graph: Cyborg node: start diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 020566ad1a7..6a94891d127 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -572,11 +572,6 @@ - BorgModuleFireExtinguisher - BorgModuleRadiationDetection - BorgModuleTool - - BorgModuleAppraisal - - BorgModuleConstruction - - BorgModuleService - - BorgModuleTreatment - - BorgModuleCleaning - CyborgEndoskeleton - LeftArmBorg - RightArmBorg @@ -584,50 +579,15 @@ - RightLegBorg - LightHeadBorg - TorsoBorg - - LeftArmBorgEngineer - - RightArmBorgEngineer - - LeftLegBorgEngineer - - RightLegBorgEngineer - - HeadBorgEngineer - - TorsoBorgEngineer - - LeftLegBorgJanitor - - RightLegBorgJanitor - - HeadBorgJanitor - - TorsoBorgJanitor - - LeftArmBorgMedical - - RightArmBorgMedical - - LeftLegBorgMedical - - RightLegBorgMedical - - HeadBorgMedical - - TorsoBorgMedical - - LeftArmBorgMining - - RightArmBorgMining - - LeftLegBorgMining - - RightLegBorgMining - - HeadBorgMining - - TorsoBorgMining - - LeftArmBorgService - - RightArmBorgService - - LeftLegBorgService - - RightLegBorgService - - HeadBorgService - - TorsoBorgService dynamicRecipes: - ProximitySensor - - BorgModuleLightReplacer - BorgModuleAdvancedCleaning - - BorgModuleMining - - BorgModuleGrapplingGun - BorgModuleAdvancedTool - BorgModuleGPS - - BorgModuleRCD - BorgModuleArtifact - BorgModuleAnomaly - BorgModuleGardening - BorgModuleHarvesting - - BorgModuleMusique - - BorgModuleClowning - - BorgModuleDiagnosis - BorgModuleDefibrillator - BorgModuleAdvancedTreatment - RipleyHarness diff --git a/Resources/Prototypes/InventoryTemplates/borg.yml b/Resources/Prototypes/InventoryTemplates/borg.yml index d43519f61cf..3d3ef29eb03 100644 --- a/Resources/Prototypes/InventoryTemplates/borg.yml +++ b/Resources/Prototypes/InventoryTemplates/borg.yml @@ -26,8 +26,7 @@ - name: head slotTexture: head slotFlags: HEAD - slotGroup: MainHotbar - uiWindowPos: 0,0 + uiWindowPos: 1,0 strippingWindowPos: 0,0 displayName: Head offset: 0.015625, 0 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/machines/cyborg.yml b/Resources/Prototypes/Recipes/Construction/Graphs/machines/cyborg.yml index 0f012cefc98..4ebc43667c5 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/machines/cyborg.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/machines/cyborg.yml @@ -5,18 +5,6 @@ - node: start entity: CyborgEndoskeleton edges: - - # empty the parts via prying - - to: start - conditions: - - !type:ContainerNotEmpty - container: part-container - steps: - - tool: Prying - doAfter: 0.5 - completed: - - !type:EmptyAllContainers - - to: cyborg steps: - assemblyId: generic @@ -43,165 +31,6 @@ - tool: Screwing doAfter: 0.5 - - - to: engineer - steps: - - assemblyId: engineer - guideString: borg-construction-guide-string - - - material: Cable - amount: 1 - doAfter: 1 - store: part-container - - - component: Flash - name: flash - store: part-container - icon: - sprite: Objects/Weapons/Melee/flash.rsi - state: flash - - - component: Flash - name: second flash - store: part-container - icon: - sprite: Objects/Weapons/Melee/flash.rsi - state: flash - - - tool: Screwing - doAfter: 0.5 - - - to: janitor - steps: - - assemblyId: janitor - guideString: borg-construction-guide-string - - - material: Cable - amount: 1 - doAfter: 1 - store: part-container - - - component: Flash - name: flash - store: part-container - icon: - sprite: Objects/Weapons/Melee/flash.rsi - state: flash - - - component: Flash - name: second flash - store: part-container - icon: - sprite: Objects/Weapons/Melee/flash.rsi - state: flash - - - tool: Screwing - doAfter: 0.5 - - - to: medical - steps: - - assemblyId: medical - guideString: borg-construction-guide-string - - - material: Cable - amount: 1 - doAfter: 1 - store: part-container - - - component: Flash - name: flash - store: part-container - icon: - sprite: Objects/Weapons/Melee/flash.rsi - state: flash - - - component: Flash - name: second flash - store: part-container - icon: - sprite: Objects/Weapons/Melee/flash.rsi - state: flash - - - tool: Screwing - doAfter: 0.5 - - - to: mining - steps: - - assemblyId: mining - guideString: borg-construction-guide-string - - - material: Cable - amount: 1 - doAfter: 1 - store: part-container - - - component: Flash - name: flash - store: part-container - icon: - sprite: Objects/Weapons/Melee/flash.rsi - state: flash - - - component: Flash - name: second flash - store: part-container - icon: - sprite: Objects/Weapons/Melee/flash.rsi - state: flash - - - tool: Screwing - doAfter: 0.5 - - - to: service - steps: - - assemblyId: service - guideString: borg-construction-guide-string - - - material: Cable - amount: 1 - doAfter: 1 - store: part-container - - - component: Flash - name: flash - store: part-container - icon: - sprite: Objects/Weapons/Melee/flash.rsi - state: flash - - - component: Flash - name: second flash - store: part-container - icon: - sprite: Objects/Weapons/Melee/flash.rsi - state: flash - - - tool: Screwing - doAfter: 0.5 - node: cyborg - entity: BorgChassisGeneric - - - node: engineer - entity: BorgChassisEngineer - - - node: janitor - entity: BorgChassisJanitor - - - node: mining - entity: BorgChassisMining - - - node: medical - entity: BorgChassisMedical - - - node: service - entity: BorgChassisService - - - node: syndicateassault - entity: BorgChassisSyndicateAssault - - - node: syndicatemedical - entity: BorgChassisSyndicateMedical - - - node: syndicatesaboteur - entity: BorgChassisSyndicateSaboteur + entity: BorgChassisSelectable diff --git a/Resources/Prototypes/Recipes/Lathes/robotics.yml b/Resources/Prototypes/Recipes/Lathes/robotics.yml index bf8deba9840..a4413e01ebe 100644 --- a/Resources/Prototypes/Recipes/Lathes/robotics.yml +++ b/Resources/Prototypes/Recipes/Lathes/robotics.yml @@ -61,8 +61,6 @@ materials: Steel: 1500 -# Generic - - type: latheRecipe parent: BaseBorgLimbRecipe id: LeftArmBorg @@ -93,162 +91,6 @@ id: TorsoBorg result: TorsoBorg -# Engineer - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: LeftArmBorgEngineer - result: LeftArmBorgEngineer - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: RightArmBorgEngineer - result: RightArmBorgEngineer - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: LeftLegBorgEngineer - result: LeftLegBorgEngineer - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: RightLegBorgEngineer - result: RightLegBorgEngineer - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: HeadBorgEngineer - result: HeadBorgEngineer - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: TorsoBorgEngineer - result: TorsoBorgEngineer - -# Medical - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: LeftArmBorgMedical - result: LeftArmBorgMedical - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: RightArmBorgMedical - result: RightArmBorgMedical - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: LeftLegBorgMedical - result: LeftLegBorgMedical - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: RightLegBorgMedical - result: RightLegBorgMedical - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: HeadBorgMedical - result: HeadBorgMedical - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: TorsoBorgMedical - result: TorsoBorgMedical - -# Mining - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: LeftArmBorgMining - result: LeftArmBorgMining - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: RightArmBorgMining - result: RightArmBorgMining - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: LeftLegBorgMining - result: LeftLegBorgMining - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: RightLegBorgMining - result: RightLegBorgMining - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: HeadBorgMining - result: HeadBorgMining - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: TorsoBorgMining - result: TorsoBorgMining - -# Service - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: LeftArmBorgService - result: LeftArmBorgService - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: RightArmBorgService - result: RightArmBorgService - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: LeftLegBorgService - result: LeftLegBorgService - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: RightLegBorgService - result: RightLegBorgService - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: HeadBorgService - result: HeadBorgService - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: TorsoBorgService - result: TorsoBorgService - -# Janitor - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: LeftLegBorgJanitor - result: LeftLegBorgJanitor - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: RightLegBorgJanitor - result: RightLegBorgJanitor - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: HeadBorgJanitor - result: HeadBorgJanitor - materials: - Steel: 500 - Glass: 200 - -- type: latheRecipe - parent: BaseBorgLimbRecipe - id: TorsoBorgJanitor - result: TorsoBorgJanitor - materials: - Steel: 500 - Glass: 200 - # Parts - type: latheRecipe @@ -304,23 +146,6 @@ id: BorgModuleTool result: BorgModuleTool -# Mining Modules - -- type: latheRecipe - parent: BaseBorgModuleRecipe - id: BorgModuleAppraisal - result: BorgModuleAppraisal - -- type: latheRecipe - parent: BaseBorgModuleRecipe - id: BorgModuleMining - result: BorgModuleMining - -- type: latheRecipe - parent: BaseGoldBorgModuleRecipe - id: BorgModuleGrapplingGun - result: BorgModuleGrapplingGun - # Engineering Modules - type: latheRecipe @@ -328,28 +153,8 @@ id: BorgModuleAdvancedTool result: BorgModuleAdvancedTool -- type: latheRecipe - parent: BaseBorgModuleRecipe - id: BorgModuleConstruction - result: BorgModuleConstruction - -- type: latheRecipe - parent: BaseGoldBorgModuleRecipe - id: BorgModuleRCD - result: BorgModuleRCD - # Janitor Modules -- type: latheRecipe - parent: BaseBorgModuleRecipe - id: BorgModuleLightReplacer - result: BorgModuleLightReplacer - -- type: latheRecipe - parent: BaseBorgModuleRecipe - id: BorgModuleCleaning - result: BorgModuleCleaning - - type: latheRecipe parent: BaseGoldBorgModuleRecipe id: BorgModuleAdvancedCleaning @@ -357,16 +162,6 @@ # Medical Modules -- type: latheRecipe - parent: BaseBorgModuleRecipe - id: BorgModuleDiagnosis - result: BorgModuleDiagnosis - -- type: latheRecipe - parent: BaseBorgModuleRecipe - id: BorgModuleTreatment - result: BorgModuleTreatment - - type: latheRecipe parent: BaseGoldBorgModuleRecipe id: BorgModuleAdvancedTreatment @@ -391,16 +186,6 @@ # Service Modules -- type: latheRecipe - parent: BaseBorgModuleRecipe - id: BorgModuleService - result: BorgModuleService - -- type: latheRecipe - parent: BaseBorgModuleRecipe - id: BorgModuleMusique - result: BorgModuleMusique - - type: latheRecipe parent: BaseBorgModuleRecipe id: BorgModuleGardening @@ -410,8 +195,3 @@ parent: BaseBorgModuleRecipe id: BorgModuleHarvesting result: BorgModuleHarvesting - -- type: latheRecipe - parent: BaseBorgModuleRecipe - id: BorgModuleClowning - result: BorgModuleClowning diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index b990eb6ae40..9430c391a99 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -66,8 +66,6 @@ recipeUnlocks: - ComputerTelevisionCircuitboard - SynthesizerInstrument - - BorgModuleMusique - - BorgModuleClowning - DawInstrumentMachineCircuitboard - MassMediaCircuitboard - JukeboxCircuitBoard @@ -82,7 +80,6 @@ tier: 1 cost: 5000 recipeUnlocks: - - BorgModuleLightReplacer - BorgModuleAdvancedCleaning - type: technology diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index e65c734ffda..817e50834b7 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -12,8 +12,6 @@ recipeUnlocks: - MiningDrill - MineralScannerEmpty - - BorgModuleMining - - BorgModuleGrapplingGun - OreProcessorIndustrialMachineCircuitboard - ClothingMaskWeldingGas @@ -168,7 +166,6 @@ - PowerDrill - JawsOfLife - BorgModuleAdvancedTool - - BorgModuleRCD - type: technology id: MassExcavation diff --git a/Resources/Prototypes/Roles/Jobs/Science/borg.yml b/Resources/Prototypes/Roles/Jobs/Science/borg.yml index 4cbede17ca2..c62482d286e 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/borg.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/borg.yml @@ -25,5 +25,5 @@ canBeAntag: false icon: JobIconBorg supervisors: job-supervisors-rd - jobEntity: PlayerBorgGeneric + jobEntity: PlayerBorgBattery applyTraits: false diff --git a/Resources/Prototypes/borg_types.yml b/Resources/Prototypes/borg_types.yml new file mode 100644 index 00000000000..f6294be68e3 --- /dev/null +++ b/Resources/Prototypes/borg_types.yml @@ -0,0 +1,218 @@ +# Generic borg +- type: borgType + id: generic + + # Description + dummyPrototype: BorgChassisGeneric + + # Functional + extraModuleCount: 5 + moduleWhitelist: + tags: + - BorgModuleGeneric + + defaultModules: + - BorgModuleTool + + radioChannels: + - Science + + # Visual + inventoryTemplateId: borgShort + spriteBodyState: robot + spriteHasMindState: robot_e + spriteNoMindState: robot_e_r + spriteToggleLightState: robot_l + + # Pet + petSuccessString: petting-success-generic-cyborg + petFailureString: petting-failure-generic-cyborg + + +# Engineering borg +- type: borgType + id: engineering + + # Description + dummyPrototype: BorgChassisEngineer + + # Functional + extraModuleCount: 3 + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleEngineering + + defaultModules: + - BorgModuleTool + - BorgModuleConstruction + - BorgModuleRCD + - BorgModuleCable + + radioChannels: + - Engineering + - Science + + # Visual + inventoryTemplateId: borgShort + spriteBodyState: engineer + spriteHasMindState: engineer_e + spriteNoMindState: engineer_e_r + spriteToggleLightState: engineer_l + + # Pet + petSuccessString: petting-success-engineer-cyborg + petFailureString: petting-failure-engineer-cyborg + + +# Salvage borg +- type: borgType + id: mining + + # Description + dummyPrototype: BorgChassisMining + + # Functional + extraModuleCount: 3 + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleCargo + + defaultModules: + - BorgModuleGrapplingGun + - BorgModuleMining + - BorgModuleAppraisal + + radioChannels: + - Supply + - Science + + # Visual + inventoryTemplateId: borgTall + spriteBodyState: miner + spriteBodyMovementState: miner_moving + spriteHasMindState: miner_e + spriteNoMindState: miner_e_r + spriteToggleLightState: miner_l + + # Pet + petSuccessString: petting-success-salvage-cyborg + petFailureString: petting-failure-salvage-cyborg + + +# Janitor borg +- type: borgType + id: janitor + + # Description + dummyPrototype: BorgChassisJanitor + + # Functional + extraModuleCount: 3 + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleJanitor + + defaultModules: + - BorgModuleLightReplacer + - BorgModuleCleaning + + radioChannels: + - Science + - Service + + # Visual + inventoryTemplateId: borgShort + spriteBodyState: janitor + spriteBodyMovementState: janitor_moving + spriteHasMindState: janitor_e + spriteNoMindState: janitor_e_r + spriteToggleLightState: janitor_l + + # Pet + petSuccessString: petting-success-janitor-cyborg + petFailureString: petting-failure-janitor-cyborg + + +# Medical borg +- type: borgType + id: medical + + # Description + dummyPrototype: BorgChassisMedical + + # Functional + extraModuleCount: 3 + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleMedical + + defaultModules: + - BorgModuleTreatment + + radioChannels: + - Science + - Medical + + addComponents: + - type: SolutionScanner + - type: ShowHealthBars + damageContainers: + - Biological + - type: ShowHealthIcons + damageContainers: + - Biological + + # Visual + inventoryTemplateId: borgDutch + spriteBodyState: medical + spriteBodyMovementState: medical_moving + spriteHasMindState: medical_e + spriteNoMindState: medical_e_r + spriteToggleLightState: medical_l + + # Pet + petSuccessString: petting-success-medical-cyborg + petFailureString: petting-failure-medical-cyborg + + # Sounds + footstepCollection: + collection: FootstepHoverBorg + + +# Service borg +- type: borgType + id: service + + # Description + dummyPrototype: BorgChassisService + + # Functional + extraModuleCount: 3 + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleService + + defaultModules: + - BorgModuleMusique + - BorgModuleService + - BorgModuleClowning + + radioChannels: + - Science + - Service + + # Visual + inventoryTemplateId: borgTall + spriteBodyState: service + spriteHasMindState: service_e + spriteNoMindState: service_e_r + spriteToggleLightState: service_l + + # Pet + petSuccessString: petting-success-service-cyborg + petFailureString: petting-failure-service-cyborg diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index be9c90ce93d..6112f93c164 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -75,95 +75,26 @@ - type: Tag id: BorgArm -- type: Tag - id: BorgEngineerHead - -- type: Tag - id: BorgEngineerLArm - -- type: Tag - id: BorgEngineerLLeg - -- type: Tag - id: BorgEngineerRArm - -- type: Tag - id: BorgEngineerRLeg - -- type: Tag - id: BorgEngineerTorso - -- type: Tag - id: BorgGenericHead - -- type: Tag - id: BorgGenericLArm - -- type: Tag - id: BorgGenericLLeg - -- type: Tag - id: BorgGenericRArm - -- type: Tag - id: BorgGenericRLeg - -- type: Tag - id: BorgGenericTorso - - type: Tag id: BorgHead - type: Tag - id: BorgJanitorHead - -- type: Tag - id: BorgJanitorLLeg - -- type: Tag - id: BorgJanitorRLeg - -- type: Tag - id: BorgJanitorTorso + id: BorgLArm - type: Tag - id: BorgLeg - -- type: Tag - id: BorgMedicalHead - -- type: Tag - id: BorgMedicalLArm - -- type: Tag - id: BorgMedicalLLeg - -- type: Tag - id: BorgMedicalRArm - -- type: Tag - id: BorgMedicalRLeg - -- type: Tag - id: BorgMedicalTorso - -- type: Tag - id: BorgMiningHead + id: BorgLLeg - type: Tag - id: BorgMiningLArm + id: BorgRArm - type: Tag - id: BorgMiningLLeg + id: BorgRLeg - type: Tag - id: BorgMiningRArm + id: BorgTorso - type: Tag - id: BorgMiningRLeg - -- type: Tag - id: BorgMiningTorso + id: BorgLeg - type: Tag id: BorgModuleCargo @@ -189,24 +120,6 @@ - type: Tag id: BorgModuleSyndicateAssault -- type: Tag - id: BorgServiceHead - -- type: Tag - id: BorgServiceLArm - -- type: Tag - id: BorgServiceLLeg - -- type: Tag - id: BorgServiceRArm - -- type: Tag - id: BorgServiceRLeg - -- type: Tag - id: BorgServiceTorso - - type: Tag id: Bot diff --git a/Resources/ServerInfo/Guidebook/Science/Cyborgs.xml b/Resources/ServerInfo/Guidebook/Science/Cyborgs.xml index 2b8defb0705..c1507ca5396 100644 --- a/Resources/ServerInfo/Guidebook/Science/Cyborgs.xml +++ b/Resources/ServerInfo/Guidebook/Science/Cyborgs.xml @@ -18,28 +18,28 @@ Both brains can be fabricated without requiring any additional research. - ## Chassis - While all cyborgs share the same endoskeleton, not all share the same chassis. The chassis determines what modules the cyborg can have, along with the [color=#a4885c]departmental radio channel[/color] they correspond to. By default, they will always have access to [color=#D381C9]Science[/color] and [color=green]station-wide[/color] frequencies, along with having [color=#a4885c]all-access[/color]. + ## Cyborg types + Once created, a cyborg needs to specialize its chassis to a duty on the station. This determines what modules it starts with, which additional modules can be installed, and what [color=#a4885c]departmental radio channel[/color] it has access to. All cyborgs have access to the [color=#D381C9]Science[/color] and [color=green]station-wide[/color] radio channels. All cyborg types have [color=#a4885c]all-access[/color]. - + - [italic]Examples of various cyborg chassis[/italic] + [italic]Examples of various cyborg types[/italic] - If you wish to change the chassis of an already existing cyborg, you have to construct a whole new one, limbs and frame included. The brain, power cell and modules [italic](if it can fit in the new chassis,)[/italic] can be carried over from the old chassis, if desired. + Once a cyborg chassis has been specialized, it cannot be changed. To change types, a new chassis must be constructed. The brain, power cell, and any modules [italic](if they are compatible with the new chassis)[/italic] can be carried over from the old chassis if desired. ## Modules - A cyborg isn't able to do much without [color=#a4885c]modules[/color]. These printed circuit boards are specific to cyborgs and grant additional functionality to them. They are printed at the [color=#a4885c]Exosuit Fabricator[/color]. + Cyborgs do not have hands, and therefore cannot pick things up like most other players. Instead, their equipment is provided by various [color=#a4885c]modules[/color]. Every cyborg type starts with its own specific set of modules, but additional modules can be inserted as upgrades. These additional modules can be printed at the [color=#a4885c]Exosuit Fabricator[/color]. - [color=#a4885c]Generic[/color] modules add versatility. They can be fitted into any chassis, granting useful tools such as crowbars, GPS, and the ability to interact with cables. [bold]The generic borg chassis can fit up to 6 modules in total.[/bold] + [color=#a4885c]Generic[/color] modules add versatility. They can be fitted into any chassis, granting useful tools such as crowbars, GPS, and the ability to interact with cables. [bold]The generic cyborg chassis can fit up to five additional modules.[/bold] @@ -49,7 +49,7 @@ [italic]Examples of generic modules[/italic] - For more specific needs, [color=#a4885c]specialized[/color] modules are available, granting capabilities like scanning anomalies, constructing walls, reviving crew mates, or cleaning a space lube spill. These modules are typically colored with the same palette as the department [italic](or occupation)[/italic] they relate to. These modules [italic](with exception to [color=#D381C9]science[/color] modules, which can fit any chassis,)[/italic] can only be fitted in their associated borg chassis. [bold]The specialized borg chassis, being the engineering, janitorial, service, medical, and mining chassis, can fit up to 4 modules.[/bold] + For more specific needs, [color=#a4885c]specialized[/color] modules are available, granting capabilities like scanning anomalies, constructing walls, reviving crew mates, or cleaning a space lube spill. These modules are typically colored with the same palette as the department [italic](or occupation)[/italic] they relate to. These modules [italic](with exception to [color=#D381C9]science[/color] modules, which can fit any chassis,)[/italic] can only be fitted in their associated borg chassis. [bold]The specialized borg chassis, being the engineering, janitorial, service, medical, and mining chassis, can fit up to three additional modules.[/bold] diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json b/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json index dc8a6fcf9c6..2ebb6eddcf5 100644 --- a/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json +++ b/Resources/Textures/Interface/Actions/actions_borg.rsi/meta.json @@ -48,7 +48,7 @@ }, { "name":"light-replacer-module" - }, + }, { "name":"cleaning-module" }, @@ -102,6 +102,9 @@ }, { "name":"syndicate-martyr-module" + }, + { + "name": "select-type" } ] } diff --git a/Resources/Textures/Interface/Actions/actions_borg.rsi/select-type.png b/Resources/Textures/Interface/Actions/actions_borg.rsi/select-type.png new file mode 100644 index 0000000000000000000000000000000000000000..766fd71abd0d865e7e4fe89a8137ebafc0c7e5ee GIT binary patch literal 408 zcmV;J0cZY+P)Px$Qb|NXR9J=WS22%+AQXO(nnJGeEyctxoo?;a|Nlpt4qeVfbRe<8$=rm82<>^1 z)4^}zJ%sP$6VOKh0J7}Vzyc`Cufs0OPK^-x68r!F&CZUbEZBdr3X!*_-3ySiU}>7d z@tC##VL#})ZV*#Se@$LhC6lsXM#R8@B-yu0sS&|kpp-(A>{|fnogN54#AxKUh`N@2 zJP;6b^|k;Tn*-}~;PJS9#2`PPKc9;_fQZZP0j1Pv4-6ti1Vrp(t#xoRt##jT+IH-N zJ3qi12RP@TwFb`lh}_M&u@93Sutm6VbG8E^Om@Ib99pg2_g4pAo&q1a$-AU(&iBmZ zQxIC!yZ0X&H`#%?vC4bE>%ir5eZ~^8eGNAU*6#qo_`iQ{@}L9v`;CPPlPRKJ6)II# zGD65$fDm~rWx?uNMlH_>A^y_Lh=@t<6$G$sdHxMyApx5dNM}g^0000bR8v literal 0 HcmV?d00001 diff --git a/Resources/migration.yml b/Resources/migration.yml index 3ed618dcfd7..8940df2b65e 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -440,3 +440,38 @@ BlueprintFlare: null # 2024-10-04 BaseAdvancedPen: Pen + +# 2024-10-09 +# Removal of separate borg chassis parts, replace them with generic borg parts. +LeftArmBorgEngineer: LeftArmBorg +RightArmBorgEngineer: RightArmBorg +LeftLegBorgEngineer: LeftLegBorg +RightLegBorgEngineer: RightLegBorg +HeadBorgEngineer: LightHeadBorg +TorsoBorgEngineer: TorsoBorg + +LeftArmBorgMedical: LeftArmBorg +RightArmBorgMedical: RightArmBorg +LeftLegBorgMedical: LeftLegBorg +RightLegBorgMedical: RightLegBorg +HeadBorgMedical: LightHeadBorg +TorsoBorgMedical: TorsoBorg + +LeftArmBorgMining: LeftArmBorg +RightArmBorgMining: RightArmBorg +LeftLegBorgMining: LeftLegBorg +RightLegBorgMining: RightLegBorg +HeadBorgMining: LightHeadBorg +TorsoBorgMining: TorsoBorg + +LeftArmBorgService: LeftArmBorg +RightArmBorgService: RightArmBorg +LeftLegBorgService: LeftLegBorg +RightLegBorgService: RightLegBorg +HeadBorgService: LightHeadBorg +TorsoBorgService: TorsoBorg + +LeftLegBorgJanitor: LeftLegBorg +RightLegBorgJanitor: RightLegBorg +HeadBorgJanitor: LightHeadBorg +TorsoBorgJanitor: TorsoBorg From 0437ec6d56e764458ff0c9a74fbe4ed3e7280007 Mon Sep 17 00:00:00 2001 From: PJBot Date: Thu, 14 Nov 2024 17:09:42 +0000 Subject: [PATCH 079/171] Automatic changelog update --- Resources/Changelog/Changelog.yml | 32 +++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index eb3f7268008..ce0be691a4a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,18 +1,4 @@ Entries: -- author: TheShuEd - changes: - - message: added morbilliard variants of procedural tacos and kebabs - type: Add - - message: removed all microwave taco and kebabs recipes (except for the taco shell - itself) - type: Remove - - message: you can fight with a skewer (even if it has food on it) - type: Tweak - - message: now you can't put more than 10 layers on a burger. (20 before) - type: Tweak - id: 7109 - time: '2024-08-14T13:04:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30905 - author: themias changes: - message: Fixed lizards being unable to eat custom burgers @@ -3941,3 +3927,21 @@ id: 7608 time: '2024-11-14T16:56:22.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33303 +- author: PJB3005 + changes: + - message: Borgs can now select their chassis type upon creation (construction or + job spawn), immediately giving borgs access to all chassis types. + type: Add + - message: Borg chassis types now come with built-in modules depending on the type, + so you can immediately do your job without help from science. Some upgrade modules + must still be installed later however. + type: Add + - message: Specialized chassis types have been removed from construction, as they + are no longer necessary. + type: Remove + - message: Borg unlock access is no longer determined by their chassis, it's always + science or command. This means the janitor can't unlock jani borgs anymore. + type: Remove + id: 7609 + time: '2024-11-14T17:08:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32586 From 2c9f2279d63d7515c1ce2c46054965902ebcd840 Mon Sep 17 00:00:00 2001 From: scrivoy <179060466+scrivoy@users.noreply.github.com> Date: Thu, 14 Nov 2024 22:30:16 +0100 Subject: [PATCH 080/171] Marathon Station: Added air alarms to CMO, Surgery, Security Checkpoint (#33213) * add air alarms to sec checkpoint, cmo and western surgery * decals and cleanup --- Resources/Maps/marathon.yml | 135 ++++++++++++++++++++++++++++++------ 1 file changed, 112 insertions(+), 23 deletions(-) diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 00287937989..1f1632004b7 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -586,7 +586,6 @@ entities: 2445: -41,19 2646: -33,-12 2665: -28,-14 - 2666: -23,-15 2667: -19,-23 2740: -20,-5 2794: 18,16 @@ -608,6 +607,7 @@ entities: 2979: -3,-48 3010: 12,14 3015: 2,-51 + 3114: -21,-15 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -1039,11 +1039,11 @@ entities: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 2536: -23,-15 2544: -15,-15 2602: -19,-19 2630: -31,-16 2673: -16,-9 + 3119: -23,-15 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw @@ -1068,8 +1068,8 @@ entities: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 2533: -23,-15 2573: -19,-19 + 3118: -23,-15 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe @@ -4510,9 +4510,9 @@ entities: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 2537: -22,-15 2605: -14,-19 2608: -14,-15 + 3115: -22,-15 - node: color: '#D381C996' id: WarnLineGreyscaleN @@ -7544,6 +7544,16 @@ entities: parent: 30 - proto: AirAlarm entities: + - uid: 3167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-15.5 + parent: 30 + - type: DeviceList + devices: + - 9046 + - 9049 - uid: 6224 components: - type: Transform @@ -7765,6 +7775,27 @@ entities: - 18435 - 18436 - 18437 + - uid: 18082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,8.5 + parent: 30 + - type: DeviceList + devices: + - 3077 + - 3076 + - uid: 19145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-18.5 + parent: 30 + - type: DeviceList + devices: + - 6935 + - 6920 + - 22554 - uid: 19570 components: - type: Transform @@ -8808,6 +8839,26 @@ entities: - 22084 - 3484 - 3481 + - uid: 22553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-23.5 + parent: 30 + - type: DeviceList + devices: + - 6834 + - 9713 + - uid: 22555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-22.5 + parent: 30 + - type: DeviceList + devices: + - 7115 + - 7119 - proto: AirAlarmElectronics entities: - uid: 15214 @@ -11906,6 +11957,14 @@ entities: - type: Transform pos: -2.5,8.5 parent: 30 + - uid: 22554 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 30 + - type: DeviceNetwork + deviceLists: + - 19145 - proto: AltarConvertRed entities: - uid: 17468 @@ -54920,11 +54979,11 @@ entities: parent: 30 - proto: DefibrillatorCabinetFilled entities: - - uid: 3167 + - uid: 6956 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-15.5 + pos: -23.5,-14.5 parent: 30 - uid: 6970 components: @@ -55583,6 +55642,12 @@ entities: - type: Transform pos: -19.5,-5.5 parent: 30 + - uid: 6953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-14.5 + parent: 30 - uid: 7412 components: - type: Transform @@ -55677,12 +55742,6 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-9.5 parent: 30 - - uid: 7354 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-14.5 - parent: 30 - uid: 12233 components: - type: Transform @@ -59804,12 +59863,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-22.5 parent: 30 - - uid: 6956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-14.5 - parent: 30 - uid: 6962 components: - type: Transform @@ -59821,6 +59874,12 @@ entities: - type: Transform pos: -19.5,-4.5 parent: 30 + - uid: 7354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-14.5 + parent: 30 - uid: 9753 components: - type: Transform @@ -60216,11 +60275,6 @@ entities: - type: Transform pos: -19.5,-4.5 parent: 30 - - uid: 6953 - components: - - type: Transform - pos: -22.5,-14.5 - parent: 30 - uid: 6954 components: - type: Transform @@ -60296,6 +60350,11 @@ entities: - type: Transform pos: 14.5,-17.5 parent: 30 + - uid: 19150 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 30 - uid: 19407 components: - type: Transform @@ -86755,6 +86814,9 @@ entities: - type: Transform pos: -40.5,10.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 18082 - type: AtmosPipeColor color: '#0000FFFF' - uid: 3099 @@ -87044,6 +87106,9 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-22.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 22553 - type: AtmosPipeColor color: '#0000FFFF' - uid: 6900 @@ -87060,6 +87125,9 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,-16.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 19145 - type: AtmosPipeColor color: '#0000FFFF' - uid: 6939 @@ -87086,6 +87154,9 @@ entities: - type: Transform pos: -28.5,-20.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 22555 - type: AtmosPipeColor color: '#0000FFFF' - uid: 7136 @@ -87232,6 +87303,9 @@ entities: - type: Transform pos: -25.5,-15.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 3167 - type: AtmosPipeColor color: '#0000FFFF' - uid: 9686 @@ -88266,6 +88340,9 @@ entities: rot: 1.5707963267948966 rad pos: -39.5,10.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 18082 - type: AtmosPipeColor color: '#FF0000FF' - uid: 3100 @@ -88548,6 +88625,9 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,-18.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 19145 - type: AtmosPipeColor color: '#FF0000FF' - uid: 7098 @@ -88577,6 +88657,9 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-18.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 22555 - type: AtmosPipeColor color: '#FF0000FF' - uid: 7130 @@ -88714,6 +88797,9 @@ entities: - type: Transform pos: -25.5,-16.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 3167 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9713 @@ -88722,6 +88808,9 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-23.5 parent: 30 + - type: DeviceNetwork + deviceLists: + - 22553 - type: AtmosPipeColor color: '#FF0000FF' - uid: 9793 From d205d17ba3d0bee79752915e6e57e7f2f539e0ec Mon Sep 17 00:00:00 2001 From: scrivoy <179060466+scrivoy@users.noreply.github.com> Date: Fri, 15 Nov 2024 02:04:14 +0100 Subject: [PATCH 081/171] Meta Station: Add a fully functional TEG room (#32941) * initial commit * delete WIP-marker.md * add TEG room, move gas chambers up * remove outside burn chamber button, add naming to APC, SMES, Substation * add HV below TEG Substation * removed invalids --- Resources/Maps/meta.yml | 5813 +++++++++++++++++++++++++++++---------- 1 file changed, 4385 insertions(+), 1428 deletions(-) diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index 93a6bc31c42..be14ee8855a 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -284,15 +284,15 @@ entities: version: 6 4,-1: ind: 4,-1 - tiles: eQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: eQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: eAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA + tiles: eAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAYAAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 5,0: ind: 5,0 @@ -300,7 +300,7 @@ entities: version: 6 4,-3: ind: 4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA + tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAA version: 6 2,-3: ind: 2,-3 @@ -448,7 +448,23 @@ entities: version: 6 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAA + tiles: eAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAA + version: 6 + 5,-3: + ind: 5,-3 + tiles: eAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-4: + ind: 3,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + version: 6 + 4,-4: + ind: 4,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + version: 6 + 5,-4: + ind: 5,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -708,6 +724,12 @@ entities: 3190: 64,26 3191: 64,14 3192: 76,14 + 3529: 76,-33 + 3530: 76,-34 + 3531: 76,-35 + 3532: 76,-36 + 3533: 76,-37 + 3566: 70,-39 - node: color: '#FFFFFFFF' id: BoxGreyscale @@ -980,6 +1002,11 @@ entities: id: BrickTileWhiteCornerSe decals: 3099: 6,-26 + - node: + color: '#3EB38896' + id: BrickTileWhiteCornerSw + decals: + 3569: 66,-32 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw @@ -1008,6 +1035,11 @@ entities: id: BrickTileWhiteEndN decals: 2748: -26,-26 + - node: + color: '#3EB38896' + id: BrickTileWhiteInnerNe + decals: + 3594: 67,-30 - node: color: '#D381C996' id: BrickTileWhiteInnerNe @@ -1051,6 +1083,13 @@ entities: decals: 2544: 20,-30 2567: 14,-43 + - node: + color: '#3EB38896' + id: BrickTileWhiteLineE + decals: + 3574: 67,-28 + 3575: 67,-29 + 3609: 67,-25 - node: color: '#52B4E996' id: BrickTileWhiteLineE @@ -1135,6 +1174,16 @@ entities: 3236: 60,21 3237: 60,20 3238: 60,19 + - node: + color: '#3EB38896' + id: BrickTileWhiteLineN + decals: + 3589: 72,-30 + 3590: 71,-30 + 3591: 70,-30 + 3592: 69,-30 + 3612: 73,-30 + 3613: 68,-30 - node: color: '#52B4E996' id: BrickTileWhiteLineN @@ -1197,6 +1246,17 @@ entities: 3102: 3,-25 3103: 4,-25 3104: 5,-25 + - node: + color: '#3EB38896' + id: BrickTileWhiteLineS + decals: + 3583: 67,-32 + 3584: 68,-32 + 3585: 69,-32 + 3586: 70,-32 + 3587: 71,-32 + 3588: 72,-32 + 3611: 73,-32 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -1259,6 +1319,15 @@ entities: id: BrickTileWhiteLineW decals: 2495: 104,-14 + - node: + color: '#3EB38896' + id: BrickTileWhiteLineW + decals: + 3578: 66,-27 + 3579: 66,-28 + 3580: 66,-29 + 3581: 66,-30 + 3582: 66,-31 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -4651,6 +4720,7 @@ entities: 3109: 28,-63 3250: 56,17 3251: 56,23 + 3608: 66.50142,-31.75576 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale @@ -4934,6 +5004,11 @@ entities: id: WarnBox decals: 2504: -64,-14 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 3544: 74,-33 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -4951,6 +5026,7 @@ entities: 900: -13,10 1625: 0,-29 3276: 42,15 + 3557: 74,-38 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -5042,6 +5118,17 @@ entities: 3269: 42,16 3270: 42,17 3271: 42,18 + 3540: 74,-37 + 3542: 74,-35 + 3543: 74,-34 + 3558: 74,-36 + 3617: 67,-26 + - node: + color: '#3EB38896' + id: WarnLineGreyscaleE + decals: + 3598: 67,-27 + 3610: 67,-24 - node: color: '#52B4E996' id: WarnLineGreyscaleE @@ -5160,6 +5247,12 @@ entities: 1694: 12,-41 1695: 11,-41 1696: 10,-41 + - node: + color: '#3EB38896' + id: WarnLineGreyscaleW + decals: + 3595: 66,-25 + 3607: 66,-24 - node: color: '#52B4E996' id: WarnLineGreyscaleW @@ -5315,6 +5408,7 @@ entities: 3516: 33,6 3517: 33,7 3518: 33,8 + 3616: 66,-26 - node: color: '#DE3A3A96' id: WarnLineW @@ -5381,6 +5475,16 @@ entities: 3178: -3,-39 3179: -4,-39 3255: 43,15 + 3545: 73,-33 + 3546: 72,-33 + 3547: 71,-33 + 3548: 70,-33 + 3549: 69,-33 + 3555: 75,-38 + 3556: 76,-38 + 3562: 66,-33 + 3563: 67,-33 + 3564: 68,-33 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -6511,11 +6615,14 @@ entities: 15,-4: 0: 65535 16,-8: - 1: 58115 - 0: 236 + 1: 4369 + 0: 52428 16,-7: - 1: 242 - 0: 61440 + 1: 17 + 0: 64716 + 16,-6: + 0: 15 + 1: 11776 13,-3: 0: 62719 13,-2: @@ -6542,7 +6649,7 @@ entities: 0: 119 16,-1: 0: 240 - 1: 13058 + 1: 62222 12,1: 0: 58606 12,2: @@ -6576,7 +6683,7 @@ entities: 0: 4354 1: 34952 16,0: - 1: 127 + 1: 255 0: 3840 16,1: 0: 54272 @@ -6849,19 +6956,21 @@ entities: -5,14: 1: 17652 -4,15: - 1: 15 + 1: 9999 -5,15: 1: 12 + -4,16: + 1: 14 -3,13: 0: 65521 -3,14: 0: 33023 1: 4096 -3,15: - 1: 25123 + 1: 25091 0: 136 -3,16: - 1: 196 + 1: 243 -2,13: 0: 65521 -2,14: @@ -6875,15 +6984,17 @@ entities: 0: 16435 1: 10240 -1,15: - 1: 12834 + 1: 14862 -1,16: - 1: 17 + 1: 54 0,13: 0: 51 1: 45056 0,14: 1: 2816 0: 16384 + 0,15: + 1: 288 -9,12: 1: 36761 -8,13: @@ -7103,22 +7214,22 @@ entities: 12,12: 1: 61441 17,0: - 1: 15 + 1: 223 0: 57376 17,2: 0: 65295 17,3: 0: 15 1: 20288 - 17,1: - 0: 61166 17,-1: + 1: 53389 0: 11826 - 1: 136 + 17,1: + 0: 61166 17,4: 1: 17487 18,0: - 1: 15 + 1: 255 0: 61440 18,1: 0: 65535 @@ -7127,8 +7238,11 @@ entities: 18,3: 0: 15 1: 3840 + 18,-1: + 1: 61610 + 0: 3840 19,0: - 1: 31 + 1: 255 0: 7168 19,1: 0: 4369 @@ -7139,19 +7253,19 @@ entities: 0: 1011 1: 8192 19,-1: - 1: 4130 + 1: 61474 0: 3840 19,4: 1: 8738 0: 51328 20,0: - 1: 143 + 1: 255 0: 3840 20,2: 1: 7951 20,3: - 1: 341 - 0: 46080 + 1: 261 + 0: 46320 -11,9: 0: 34827 1: 12800 @@ -7309,105 +7423,98 @@ entities: 1: 257 16,-4: 1: 8738 - 5: 136 - 6: 32768 + 5: 2184 16,-3: 1: 8738 - 6: 32904 + 6: 2184 16,-2: - 1: 57890 - 6: 136 + 1: 8738 + 6: 2184 16,-5: 1: 8738 - 5: 32768 - 6: 136 + 6: 2184 17,-4: - 5: 51 - 6: 12288 - 0: 128 - 1: 34816 + 5: 819 + 0: 2176 + 1: 32768 17,-3: - 6: 12339 + 6: 819 1: 34952 17,-2: - 6: 51 - 1: 55432 - 0: 8192 + 6: 819 + 1: 34952 17,-5: - 5: 12288 - 0: 32768 - 6: 51 - 1: 2184 + 0: 34816 + 6: 819 + 1: 136 18,-4: - 0: 135 - 1: 43552 + 0: 3975 + 1: 40992 18,-3: 1: 43770 - 18,-1: - 0: 3840 - 1: 170 18,-5: - 1: 12202 - 0: 32768 + 1: 8362 + 0: 36608 18,-2: 1: 43690 19,-4: - 0: 135 - 1: 43552 + 0: 3975 + 1: 40992 19,-3: 1: 57906 19,-5: - 1: 11170 - 0: 32768 + 1: 8354 + 0: 36608 19,-2: 1: 8930 20,-4: - 0: 135 - 1: 34816 + 0: 3975 + 1: 32768 20,-3: 1: 61440 20,-2: 1: 240 20,-1: 0: 3840 - 1: 32768 - 16,-6: - 1: 8928 - 6: 32768 + 1: 61440 16,-9: - 0: 61166 - 1: 1 + 1: 4369 + 0: 52428 17,-8: - 0: 31487 - 1: 32768 + 0: 4095 17,-7: - 1: 3536 - 0: 61991 + 0: 1654 17,-6: - 1: 35037 - 6: 12288 - 0: 34 + 0: 15 + 1: 36608 17,-9: 0: 65535 18,-8: - 0: 153 - 1: 12898 + 0: 819 + 1: 34944 18,-7: - 1: 47858 + 1: 48127 18,-6: - 1: 43770 + 1: 43771 18,-9: - 0: 48027 - 1: 96 + 0: 65535 19,-8: - 0: 51 + 1: 64248 19,-7: - 1: 8448 + 1: 8696 0: 512 19,-6: 1: 8754 19,-9: - 0: 13107 + 0: 4369 + 1: 52424 + 20,-8: + 1: 30039 + 20,-7: + 1: 117 + 20,-5: + 0: 36608 + 1: 128 12,-10: 1: 61696 11,-10: @@ -7417,25 +7524,42 @@ entities: 14,-10: 1: 64000 15,-10: - 1: 61952 + 1: 65503 + 15,-12: + 1: 57311 + 15,-13: + 1: 40704 + 15,-11: + 1: 56829 + 16,-12: + 1: 65023 + 16,-11: + 1: 4353 + 6: 52416 + 16,-10: + 1: 4353 + 0: 52416 20,4: - 1: 5457 - 0: 4 + 1: 5377 + 0: 244 21,0: - 1: 32783 + 1: 33023 0: 3840 21,2: 1: 3887 21,3: - 0: 46080 - 1: 68 + 0: 46320 + 1: 4 + 21,-1: + 1: 61440 + 0: 3840 21,1: 1: 17608 21,4: - 0: 4 - 1: 1088 + 0: 244 + 1: 1024 22,0: - 1: 2151 + 1: 2167 0: 58248 22,1: 1: 3634 @@ -7443,13 +7567,13 @@ entities: 22,2: 1: 3855 22,3: - 0: 46080 - 1: 68 + 0: 46320 + 1: 4 22,-1: - 1: 24608 + 1: 28704 0: 36608 22,4: - 0: 4 + 0: 180 1: 1088 23,0: 0: 25855 @@ -7461,13 +7585,14 @@ entities: 1: 26471 0: 34952 23,3: - 0: 61576 - 1: 3686 + 0: 61688 + 1: 3590 23,-1: 0: 63044 1: 2235 23,4: - 1: 19660 + 1: 19468 + 0: 240 24,0: 0: 3295 1: 256 @@ -7478,12 +7603,44 @@ entities: 24,3: 1: 609 0: 63760 - 16,-10: - 0: 60608 + 16,-13: + 1: 12032 + 17,-12: + 1: 65023 + 17,-11: + 6: 13104 + 1: 34952 17,-10: 0: 65520 + 17,-13: + 1: 12032 + 18,-12: + 1: 64767 + 18,-11: + 1: 30591 + 0: 2048 18,-10: - 0: 13072 + 0: 65520 + 18,-13: + 1: 40704 + 19,-12: + 1: 64255 + 19,-11: + 1: 35983 + 0: 4352 + 19,-10: + 0: 4369 + 1: 52428 + 19,-13: + 1: 36608 + 20,-12: + 1: 22357 + 20,-11: + 1: 21847 + 20,-10: + 1: 30039 + 20,-9: + 1: 21877 8,-13: 0: 6004 9,-12: @@ -8143,37 +8300,33 @@ entities: 1: 13056 7,-19: 1: 34952 - 20,-5: - 0: 32768 - 1: 2176 21,-4: - 0: 135 - 1: 34816 + 0: 3975 + 1: 32768 21,-3: 1: 61440 21,-2: 1: 240 - 21,-1: - 0: 3840 21,-5: - 0: 32768 - 1: 2176 + 0: 36608 + 1: 128 22,-4: - 0: 15 + 0: 3855 22,-3: 1: 61440 22,-2: 1: 240 23,-4: - 0: 15 - 1: 52416 + 0: 3855 + 1: 49344 23,-3: 1: 64716 23,-2: 1: 15868 0: 49152 23,-5: - 1: 52420 + 1: 49348 + 0: 3840 24,-4: 0: 4511 1: 8736 @@ -8328,6 +8481,10 @@ entities: 26,-6: 1: 34800 0: 28672 + 22,-5: + 0: 3840 + 20,-13: + 1: 22272 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -8497,6 +8654,18 @@ entities: parent: 5350 - proto: AirAlarm entities: + - uid: 11752 + components: + - type: Transform + pos: 71.5,-28.5 + parent: 5350 + - type: DeviceList + devices: + - 27078 + - 27210 + - 27212 + - 26995 + - 26996 - uid: 14304 components: - type: Transform @@ -9460,7 +9629,7 @@ entities: parent: 5350 - type: DeviceList devices: - - 24516 + - 10990 - uid: 24517 components: - type: Transform @@ -9960,6 +10129,15 @@ entities: - 19501 - 19500 - 19499 + - uid: 27108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-39.5 + parent: 5350 + - type: DeviceList + devices: + - 27127 - proto: AirCanister entities: - uid: 2431 @@ -10175,11 +10353,22 @@ entities: - type: Transform pos: 56.5,-7.5 parent: 5350 - - uid: 11498 + - uid: 10820 components: - type: Transform - pos: 69.5,-29.5 + pos: 65.5,-24.5 + parent: 5350 + - type: AccessReader + access: + - - Atmospherics + - uid: 10821 + components: + - type: Transform + pos: 65.5,-23.5 parent: 5350 + - type: AccessReader + access: + - - Atmospherics - proto: AirlockAtmosphericsLocked entities: - uid: 9008 @@ -10706,6 +10895,14 @@ entities: - type: Transform pos: 38.5,-57.5 parent: 5350 + - uid: 26788 + components: + - type: Transform + pos: 68.5,-26.5 + parent: 5350 + - type: AccessReader + access: + - - Engineering - proto: AirlockExternal entities: - uid: 16847 @@ -10713,6 +10910,31 @@ entities: - type: Transform pos: -62.5,-40.5 parent: 5350 +- proto: AirlockExternalAtmosphericsLocked + entities: + - uid: 11254 + components: + - type: Transform + pos: 75.5,-41.5 + parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11257: + - DoorStatus: DoorBolt + - uid: 27016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-23.5 + parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 27248: + - DoorStatus: DoorBolt - proto: AirlockExternalEngineeringLocked entities: - uid: 12540 @@ -10823,16 +11045,29 @@ entities: parent: 5350 - proto: AirlockExternalGlassAtmosphericsLocked entities: - - uid: 11284 + - uid: 11257 components: - type: Transform - pos: 64.5,-24.5 + pos: 76.5,-39.5 parent: 5350 - - uid: 11285 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11254: + - DoorStatus: DoorBolt + - uid: 27248 components: - type: Transform - pos: 67.5,-24.5 + rot: -1.5707963267948966 rad + pos: 68.5,-23.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 27016: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: - uid: 3441 @@ -10880,7 +11115,7 @@ entities: pos: -42.5,29.5 parent: 5350 - type: Door - secondsUntilStateChange: -5834.8745 + secondsUntilStateChange: -25306.475 state: Opening - type: DeviceLinkSink invokeCounter: 2 @@ -12829,6 +13064,14 @@ entities: parent: 5350 - proto: AirSensor entities: + - uid: 10990 + components: + - type: Transform + pos: 68.5,-6.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 24515 - uid: 14424 components: - type: Transform @@ -13213,11 +13456,6 @@ entities: - type: Transform pos: 53.5,-18.5 parent: 5350 - - uid: 24516 - components: - - type: Transform - pos: 68.5,-7.5 - parent: 5350 - uid: 24521 components: - type: Transform @@ -13423,6 +13661,23 @@ entities: - type: Transform pos: -11.5,-32.5 parent: 5350 + - uid: 27078 + components: + - type: Transform + pos: 70.5,-32.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 11752 + - 26994 + - uid: 27127 + components: + - type: Transform + pos: 68.5,-41.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 27108 - proto: AltarConvertMaint entities: - uid: 22866 @@ -13680,6 +13935,13 @@ entities: - type: Transform pos: -34.5,32.5 parent: 5350 + - uid: 10831 + components: + - type: MetaData + name: TEG APC + - type: Transform + pos: 69.5,-28.5 + parent: 5350 - uid: 11513 components: - type: MetaData @@ -14179,10 +14441,40 @@ entities: parent: 5350 - proto: AtmosFixBlockerMarker entities: - - uid: 11609 + - uid: 10913 components: - type: Transform - pos: 67.5,-20.5 + pos: 67.5,-17.5 + parent: 5350 + - uid: 11200 + components: + - type: Transform + pos: 67.5,-5.5 + parent: 5350 + - uid: 11307 + components: + - type: Transform + pos: 68.5,-5.5 + parent: 5350 + - uid: 11308 + components: + - type: Transform + pos: 69.5,-5.5 + parent: 5350 + - uid: 11345 + components: + - type: Transform + pos: 68.5,-17.5 + parent: 5350 + - uid: 11347 + components: + - type: Transform + pos: 69.5,-11.5 + parent: 5350 + - uid: 11598 + components: + - type: Transform + pos: 69.5,-17.5 parent: 5350 - uid: 11610 components: @@ -14194,11 +14486,6 @@ entities: - type: Transform pos: 67.5,-18.5 parent: 5350 - - uid: 11612 - components: - - type: Transform - pos: 68.5,-20.5 - parent: 5350 - uid: 11613 components: - type: Transform @@ -14209,11 +14496,6 @@ entities: - type: Transform pos: 68.5,-18.5 parent: 5350 - - uid: 11615 - components: - - type: Transform - pos: 69.5,-20.5 - parent: 5350 - uid: 11616 components: - type: Transform @@ -14224,31 +14506,16 @@ entities: - type: Transform pos: 69.5,-18.5 parent: 5350 - - uid: 11618 - components: - - type: Transform - pos: 67.5,-8.5 - parent: 5350 - uid: 11619 components: - type: Transform pos: 67.5,-7.5 parent: 5350 - - uid: 11620 - components: - - type: Transform - pos: 68.5,-8.5 - parent: 5350 - uid: 11621 components: - type: Transform pos: 68.5,-7.5 parent: 5350 - - uid: 11622 - components: - - type: Transform - pos: 69.5,-8.5 - parent: 5350 - uid: 11623 components: - type: Transform @@ -14269,11 +14536,6 @@ entities: - type: Transform pos: 67.5,-6.5 parent: 5350 - - uid: 11628 - components: - - type: Transform - pos: 67.5,-12.5 - parent: 5350 - uid: 11629 components: - type: Transform @@ -14287,7 +14549,7 @@ entities: - uid: 11631 components: - type: Transform - pos: 68.5,-12.5 + pos: 67.5,-9.5 parent: 5350 - uid: 11632 components: @@ -14299,20 +14561,20 @@ entities: - type: Transform pos: 68.5,-10.5 parent: 5350 - - uid: 11634 + - uid: 11636 components: - type: Transform - pos: 69.5,-12.5 + pos: 69.5,-10.5 parent: 5350 - - uid: 11635 + - uid: 11720 components: - type: Transform - pos: 69.5,-11.5 + pos: 68.5,-9.5 parent: 5350 - - uid: 11636 + - uid: 11722 components: - type: Transform - pos: 69.5,-10.5 + pos: 69.5,-9.5 parent: 5350 - uid: 24185 components: @@ -14359,6 +14621,66 @@ entities: - type: Transform pos: 15.5,-55.5 parent: 5350 + - uid: 27423 + components: + - type: Transform + pos: 66.5,-40.5 + parent: 5350 + - uid: 27424 + components: + - type: Transform + pos: 67.5,-40.5 + parent: 5350 + - uid: 27425 + components: + - type: Transform + pos: 68.5,-40.5 + parent: 5350 + - uid: 27426 + components: + - type: Transform + pos: 69.5,-40.5 + parent: 5350 + - uid: 27427 + components: + - type: Transform + pos: 66.5,-41.5 + parent: 5350 + - uid: 27428 + components: + - type: Transform + pos: 66.5,-42.5 + parent: 5350 + - uid: 27429 + components: + - type: Transform + pos: 67.5,-41.5 + parent: 5350 + - uid: 27430 + components: + - type: Transform + pos: 67.5,-42.5 + parent: 5350 + - uid: 27431 + components: + - type: Transform + pos: 68.5,-42.5 + parent: 5350 + - uid: 27432 + components: + - type: Transform + pos: 68.5,-41.5 + parent: 5350 + - uid: 27433 + components: + - type: Transform + pos: 69.5,-41.5 + parent: 5350 + - uid: 27434 + components: + - type: Transform + pos: 69.5,-42.5 + parent: 5350 - proto: AtmosFixFreezerMarker entities: - uid: 10295 @@ -14547,10 +14869,20 @@ entities: parent: 5350 - proto: AtmosFixPlasmaMarker entities: - - uid: 11600 + - uid: 10828 components: - type: Transform - pos: 67.5,-16.5 + pos: 69.5,-13.5 + parent: 5350 + - uid: 10916 + components: + - type: Transform + pos: 68.5,-13.5 + parent: 5350 + - uid: 10920 + components: + - type: Transform + pos: 67.5,-13.5 parent: 5350 - uid: 11601 components: @@ -14562,11 +14894,6 @@ entities: - type: Transform pos: 67.5,-14.5 parent: 5350 - - uid: 11603 - components: - - type: Transform - pos: 68.5,-16.5 - parent: 5350 - uid: 11604 components: - type: Transform @@ -14577,11 +14904,6 @@ entities: - type: Transform pos: 68.5,-14.5 parent: 5350 - - uid: 11606 - components: - - type: Transform - pos: 69.5,-16.5 - parent: 5350 - uid: 11607 components: - type: Transform @@ -15097,10 +15419,10 @@ entities: - type: Transform pos: -40.5,43.5 parent: 5350 - - uid: 10293 + - uid: 11015 components: - type: Transform - pos: 68.5,-5.5 + pos: 68.5,-4.5 parent: 5350 - uid: 11486 components: @@ -15172,6 +15494,20 @@ entities: - type: Transform pos: 48.5,23.5 parent: 5350 + - uid: 27135 + components: + - type: Transform + pos: 67.5,-43.5 + parent: 5350 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 27136 + components: + - type: Transform + pos: 68.5,-43.5 + parent: 5350 + - type: DeviceLinkSink + invokeCounter: 2 - proto: BlastDoorExterior1Open entities: - uid: 24634 @@ -19812,6 +20148,11 @@ entities: - type: Transform pos: -37.5,-0.5 parent: 5350 + - uid: 6164 + components: + - type: Transform + pos: 66.5,-6.5 + parent: 5350 - uid: 6209 components: - type: Transform @@ -21377,11 +21718,21 @@ entities: - type: Transform pos: -16.5,27.5 parent: 5350 + - uid: 8889 + components: + - type: Transform + pos: 67.5,-6.5 + parent: 5350 - uid: 8957 components: - type: Transform pos: 40.5,0.5 parent: 5350 + - uid: 8983 + components: + - type: Transform + pos: 68.5,-6.5 + parent: 5350 - uid: 9539 components: - type: Transform @@ -22707,11 +23058,196 @@ entities: - type: Transform pos: -29.5,30.5 parent: 5350 + - uid: 10908 + components: + - type: Transform + pos: 60.5,-16.5 + parent: 5350 + - uid: 10909 + components: + - type: Transform + pos: 67.5,-18.5 + parent: 5350 + - uid: 10911 + components: + - type: Transform + pos: 68.5,-18.5 + parent: 5350 + - uid: 10912 + components: + - type: Transform + pos: 66.5,-18.5 + parent: 5350 + - uid: 10929 + components: + - type: Transform + pos: 66.5,-5.5 + parent: 5350 + - uid: 10935 + components: + - type: Transform + pos: 63.5,-6.5 + parent: 5350 + - uid: 10936 + components: + - type: Transform + pos: 58.5,-6.5 + parent: 5350 + - uid: 10937 + components: + - type: Transform + pos: 59.5,-6.5 + parent: 5350 + - uid: 10938 + components: + - type: Transform + pos: 60.5,-6.5 + parent: 5350 + - uid: 10939 + components: + - type: Transform + pos: 61.5,-6.5 + parent: 5350 + - uid: 10940 + components: + - type: Transform + pos: 62.5,-6.5 + parent: 5350 + - uid: 10941 + components: + - type: Transform + pos: 68.5,-10.5 + parent: 5350 + - uid: 10942 + components: + - type: Transform + pos: 67.5,-10.5 + parent: 5350 + - uid: 10986 + components: + - type: Transform + pos: 66.5,-17.5 + parent: 5350 + - uid: 10987 + components: + - type: Transform + pos: 64.5,-19.5 + parent: 5350 + - uid: 10988 + components: + - type: Transform + pos: 68.5,-14.5 + parent: 5350 + - uid: 11044 + components: + - type: Transform + pos: 62.5,-16.5 + parent: 5350 + - uid: 11045 + components: + - type: Transform + pos: 63.5,-16.5 + parent: 5350 + - uid: 11046 + components: + - type: Transform + pos: 65.5,-18.5 + parent: 5350 + - uid: 11056 + components: + - type: Transform + pos: 66.5,-14.5 + parent: 5350 + - uid: 11138 + components: + - type: Transform + pos: 66.5,-19.5 + parent: 5350 + - uid: 11162 + components: + - type: Transform + pos: 67.5,-14.5 + parent: 5350 + - uid: 11241 + components: + - type: Transform + pos: 63.5,-19.5 + parent: 5350 + - uid: 11258 + components: + - type: Transform + pos: 68.5,-23.5 + parent: 5350 + - uid: 11259 + components: + - type: Transform + pos: 70.5,-23.5 + parent: 5350 + - uid: 11260 + components: + - type: Transform + pos: 67.5,-24.5 + parent: 5350 + - uid: 11263 + components: + - type: Transform + pos: 69.5,-23.5 + parent: 5350 + - uid: 11279 + components: + - type: Transform + pos: 69.5,-28.5 + parent: 5350 + - uid: 11300 + components: + - type: Transform + pos: 61.5,-16.5 + parent: 5350 + - uid: 11313 + components: + - type: Transform + pos: 65.5,-14.5 + parent: 5350 + - uid: 11314 + components: + - type: Transform + pos: 66.5,-13.5 + parent: 5350 + - uid: 11315 + components: + - type: Transform + pos: 66.5,-15.5 + parent: 5350 + - uid: 11341 + components: + - type: Transform + pos: 64.5,-21.5 + parent: 5350 + - uid: 11348 + components: + - type: Transform + pos: 64.5,-5.5 + parent: 5350 - uid: 11360 components: - type: Transform pos: -30.5,-41.5 parent: 5350 + - uid: 11606 + components: + - type: Transform + pos: 65.5,-6.5 + parent: 5350 + - uid: 11609 + components: + - type: Transform + pos: 61.5,-10.5 + parent: 5350 + - uid: 11643 + components: + - type: Transform + pos: 66.5,-10.5 + parent: 5350 - uid: 11646 components: - type: Transform @@ -22792,11 +23328,6 @@ entities: - type: Transform pos: 52.5,-23.5 parent: 5350 - - uid: 11662 - components: - - type: Transform - pos: 52.5,-24.5 - parent: 5350 - uid: 11663 components: - type: Transform @@ -22947,16 +23478,6 @@ entities: - type: Transform pos: 52.5,-28.5 parent: 5350 - - uid: 11693 - components: - - type: Transform - pos: 61.5,-24.5 - parent: 5350 - - uid: 11694 - components: - - type: Transform - pos: 62.5,-24.5 - parent: 5350 - uid: 11695 components: - type: Transform @@ -22967,21 +23488,6 @@ entities: - type: Transform pos: 63.5,-23.5 parent: 5350 - - uid: 11697 - components: - - type: Transform - pos: 64.5,-24.5 - parent: 5350 - - uid: 11698 - components: - - type: Transform - pos: 65.5,-24.5 - parent: 5350 - - uid: 11699 - components: - - type: Transform - pos: 66.5,-24.5 - parent: 5350 - uid: 11700 components: - type: Transform @@ -22995,17 +23501,17 @@ entities: - uid: 11702 components: - type: Transform - pos: 63.5,-20.5 + pos: 65.5,-10.5 parent: 5350 - uid: 11703 components: - type: Transform - pos: 64.5,-20.5 + pos: 66.5,-9.5 parent: 5350 - uid: 11704 components: - type: Transform - pos: 64.5,-19.5 + pos: 62.5,-24.5 parent: 5350 - uid: 11705 components: @@ -23075,122 +23581,47 @@ entities: - uid: 11718 components: - type: Transform - pos: 65.5,-7.5 + pos: 66.5,-11.5 parent: 5350 - uid: 11719 components: - type: Transform pos: 66.5,-7.5 parent: 5350 - - uid: 11720 - components: - - type: Transform - pos: 66.5,-8.5 - parent: 5350 - uid: 11721 components: - type: Transform pos: 66.5,-6.5 parent: 5350 - - uid: 11722 - components: - - type: Transform - pos: 65.5,-11.5 - parent: 5350 - - uid: 11723 - components: - - type: Transform - pos: 66.5,-11.5 - parent: 5350 - - uid: 11724 - components: - - type: Transform - pos: 66.5,-12.5 - parent: 5350 - - uid: 11725 - components: - - type: Transform - pos: 66.5,-10.5 - parent: 5350 - - uid: 11726 - components: - - type: Transform - pos: 65.5,-15.5 - parent: 5350 - - uid: 11727 - components: - - type: Transform - pos: 66.5,-15.5 - parent: 5350 - - uid: 11728 - components: - - type: Transform - pos: 66.5,-14.5 - parent: 5350 - - uid: 11729 - components: - - type: Transform - pos: 66.5,-16.5 - parent: 5350 - - uid: 11730 - components: - - type: Transform - pos: 65.5,-19.5 - parent: 5350 - uid: 11731 components: - type: Transform - pos: 66.5,-19.5 + pos: 63.5,-10.5 parent: 5350 - uid: 11732 components: - type: Transform - pos: 66.5,-20.5 + pos: 62.5,-10.5 parent: 5350 - uid: 11733 components: - type: Transform - pos: 66.5,-18.5 - parent: 5350 - - uid: 11734 - components: - - type: Transform - pos: 67.5,-19.5 - parent: 5350 - - uid: 11735 - components: - - type: Transform - pos: 68.5,-19.5 - parent: 5350 - - uid: 11736 - components: - - type: Transform - pos: 67.5,-15.5 + pos: 63.5,-20.5 parent: 5350 - uid: 11737 components: - type: Transform - pos: 68.5,-15.5 + pos: 61.5,-24.5 parent: 5350 - uid: 11738 components: - type: Transform - pos: 67.5,-11.5 + pos: 67.5,-23.5 parent: 5350 - uid: 11739 components: - type: Transform - pos: 68.5,-11.5 - parent: 5350 - - uid: 11740 - components: - - type: Transform - pos: 67.5,-7.5 - parent: 5350 - - uid: 11741 - components: - - type: Transform - pos: 68.5,-7.5 + pos: 66.5,-23.5 parent: 5350 - uid: 11742 components: @@ -23232,81 +23663,16 @@ entities: - type: Transform pos: 60.5,-10.5 parent: 5350 - - uid: 11750 - components: - - type: Transform - pos: 60.5,-11.5 - parent: 5350 - - uid: 11751 - components: - - type: Transform - pos: 61.5,-11.5 - parent: 5350 - - uid: 11752 - components: - - type: Transform - pos: 62.5,-11.5 - parent: 5350 - - uid: 11753 - components: - - type: Transform - pos: 63.5,-11.5 - parent: 5350 - - uid: 11754 - components: - - type: Transform - pos: 63.5,-7.5 - parent: 5350 - - uid: 11755 - components: - - type: Transform - pos: 62.5,-7.5 - parent: 5350 - - uid: 11756 - components: - - type: Transform - pos: 61.5,-7.5 - parent: 5350 - - uid: 11757 - components: - - type: Transform - pos: 60.5,-7.5 - parent: 5350 - - uid: 11758 - components: - - type: Transform - pos: 59.5,-7.5 - parent: 5350 - - uid: 11759 - components: - - type: Transform - pos: 58.5,-7.5 - parent: 5350 - - uid: 11760 - components: - - type: Transform - pos: 57.5,-7.5 - parent: 5350 - uid: 11761 components: - type: Transform pos: 58.5,-6.5 parent: 5350 - - uid: 11762 - components: - - type: Transform - pos: 58.5,-5.5 - parent: 5350 - uid: 11763 components: - type: Transform pos: 61.5,-6.5 parent: 5350 - - uid: 11764 - components: - - type: Transform - pos: 61.5,-5.5 - parent: 5350 - uid: 11765 components: - type: Transform @@ -23397,16 +23763,6 @@ entities: - type: Transform pos: 54.5,-20.5 parent: 5350 - - uid: 11784 - components: - - type: Transform - pos: 63.5,-17.5 - parent: 5350 - - uid: 11785 - components: - - type: Transform - pos: 62.5,-17.5 - parent: 5350 - uid: 11953 components: - type: Transform @@ -33367,6 +33723,11 @@ entities: - type: Transform pos: -15.5,-65.5 parent: 5350 + - uid: 24298 + components: + - type: Transform + pos: 52.5,-24.5 + parent: 5350 - uid: 24473 components: - type: Transform @@ -34532,6 +34893,311 @@ entities: - type: Transform pos: 76.5,3.5 parent: 5350 + - uid: 27017 + components: + - type: Transform + pos: 69.5,-29.5 + parent: 5350 + - uid: 27018 + components: + - type: Transform + pos: 70.5,-29.5 + parent: 5350 + - uid: 27019 + components: + - type: Transform + pos: 70.5,-30.5 + parent: 5350 + - uid: 27020 + components: + - type: Transform + pos: 70.5,-31.5 + parent: 5350 + - uid: 27021 + components: + - type: Transform + pos: 70.5,-32.5 + parent: 5350 + - uid: 27024 + components: + - type: Transform + pos: 70.5,-32.5 + parent: 5350 + - uid: 27025 + components: + - type: Transform + pos: 70.5,-33.5 + parent: 5350 + - uid: 27026 + components: + - type: Transform + pos: 70.5,-34.5 + parent: 5350 + - uid: 27027 + components: + - type: Transform + pos: 70.5,-35.5 + parent: 5350 + - uid: 27028 + components: + - type: Transform + pos: 67.5,-25.5 + parent: 5350 + - uid: 27029 + components: + - type: Transform + pos: 67.5,-27.5 + parent: 5350 + - uid: 27030 + components: + - type: Transform + pos: 71.5,-29.5 + parent: 5350 + - uid: 27031 + components: + - type: Transform + pos: 72.5,-29.5 + parent: 5350 + - uid: 27032 + components: + - type: Transform + pos: 73.5,-29.5 + parent: 5350 + - uid: 27033 + components: + - type: Transform + pos: 74.5,-29.5 + parent: 5350 + - uid: 27034 + components: + - type: Transform + pos: 74.5,-30.5 + parent: 5350 + - uid: 27039 + components: + - type: Transform + pos: 67.5,-26.5 + parent: 5350 + - uid: 27046 + components: + - type: Transform + pos: 67.5,-28.5 + parent: 5350 + - uid: 27048 + components: + - type: Transform + pos: 74.5,-32.5 + parent: 5350 + - uid: 27049 + components: + - type: Transform + pos: 76.5,-41.5 + parent: 5350 + - uid: 27063 + components: + - type: Transform + pos: 75.5,-32.5 + parent: 5350 + - uid: 27079 + components: + - type: Transform + pos: 76.5,-36.5 + parent: 5350 + - uid: 27080 + components: + - type: Transform + pos: 72.5,-32.5 + parent: 5350 + - uid: 27081 + components: + - type: Transform + pos: 71.5,-32.5 + parent: 5350 + - uid: 27082 + components: + - type: Transform + pos: 68.5,-29.5 + parent: 5350 + - uid: 27083 + components: + - type: Transform + pos: 73.5,-32.5 + parent: 5350 + - uid: 27092 + components: + - type: Transform + pos: 76.5,-34.5 + parent: 5350 + - uid: 27095 + components: + - type: Transform + pos: 64.5,-25.5 + parent: 5350 + - uid: 27100 + components: + - type: Transform + pos: 67.5,-29.5 + parent: 5350 + - uid: 27105 + components: + - type: Transform + pos: 76.5,-35.5 + parent: 5350 + - uid: 27106 + components: + - type: Transform + pos: 76.5,-33.5 + parent: 5350 + - uid: 27107 + components: + - type: Transform + pos: 76.5,-32.5 + parent: 5350 + - uid: 27109 + components: + - type: Transform + pos: 76.5,-38.5 + parent: 5350 + - uid: 27110 + components: + - type: Transform + pos: 75.5,-38.5 + parent: 5350 + - uid: 27113 + components: + - type: Transform + pos: 74.5,-39.5 + parent: 5350 + - uid: 27114 + components: + - type: Transform + pos: 73.5,-39.5 + parent: 5350 + - uid: 27115 + components: + - type: Transform + pos: 66.5,-37.5 + parent: 5350 + - uid: 27158 + components: + - type: Transform + pos: 76.5,-39.5 + parent: 5350 + - uid: 27159 + components: + - type: Transform + pos: 76.5,-37.5 + parent: 5350 + - uid: 27160 + components: + - type: Transform + pos: 76.5,-40.5 + parent: 5350 + - uid: 27161 + components: + - type: Transform + pos: 72.5,-39.5 + parent: 5350 + - uid: 27164 + components: + - type: Transform + pos: 66.5,-38.5 + parent: 5350 + - uid: 27165 + components: + - type: Transform + pos: 74.5,-38.5 + parent: 5350 + - uid: 27197 + components: + - type: Transform + pos: 71.5,-39.5 + parent: 5350 + - uid: 27259 + components: + - type: Transform + pos: 66.5,-29.5 + parent: 5350 + - uid: 27260 + components: + - type: Transform + pos: 65.5,-29.5 + parent: 5350 + - uid: 27261 + components: + - type: Transform + pos: 65.5,-30.5 + parent: 5350 + - uid: 27266 + components: + - type: Transform + pos: 66.5,-36.5 + parent: 5350 + - uid: 27268 + components: + - type: Transform + pos: 66.5,-22.5 + parent: 5350 + - uid: 27273 + components: + - type: Transform + pos: 63.5,-25.5 + parent: 5350 + - uid: 27275 + components: + - type: Transform + pos: 66.5,-35.5 + parent: 5350 + - uid: 27276 + components: + - type: Transform + pos: 66.5,-34.5 + parent: 5350 + - uid: 27277 + components: + - type: Transform + pos: 66.5,-33.5 + parent: 5350 + - uid: 27278 + components: + - type: Transform + pos: 66.5,-32.5 + parent: 5350 + - uid: 27279 + components: + - type: Transform + pos: 67.5,-32.5 + parent: 5350 + - uid: 27280 + components: + - type: Transform + pos: 68.5,-32.5 + parent: 5350 + - uid: 27281 + components: + - type: Transform + pos: 69.5,-32.5 + parent: 5350 + - uid: 27282 + components: + - type: Transform + pos: 66.5,-39.5 + parent: 5350 + - uid: 27283 + components: + - type: Transform + pos: 67.5,-39.5 + parent: 5350 + - uid: 27284 + components: + - type: Transform + pos: 68.5,-39.5 + parent: 5350 + - uid: 27285 + components: + - type: Transform + pos: 69.5,-39.5 + parent: 5350 - proto: CableApcStack entities: - uid: 1550 @@ -37556,30 +38222,25 @@ entities: - type: Transform pos: -32.5,49.5 parent: 5350 - - uid: 11245 - components: - - type: Transform - pos: 67.5,-31.5 - parent: 5350 - - uid: 11272 + - uid: 10832 components: - type: Transform - pos: 69.5,-34.5 + pos: 69.5,-26.5 parent: 5350 - - uid: 11274 + - uid: 10834 components: - type: Transform - pos: 69.5,-32.5 + pos: 52.5,-24.5 parent: 5350 - - uid: 11278 + - uid: 10836 components: - type: Transform - pos: 69.5,-33.5 + pos: 70.5,-26.5 parent: 5350 - - uid: 11279 + - uid: 11266 components: - type: Transform - pos: 69.5,-31.5 + pos: 65.5,-24.5 parent: 5350 - uid: 11877 components: @@ -37776,6 +38437,26 @@ entities: - type: Transform pos: 42.5,-17.5 parent: 5350 + - uid: 12022 + components: + - type: Transform + pos: 68.5,-26.5 + parent: 5350 + - uid: 12043 + components: + - type: Transform + pos: 67.5,-26.5 + parent: 5350 + - uid: 12044 + components: + - type: Transform + pos: 67.5,-25.5 + parent: 5350 + - uid: 12047 + components: + - type: Transform + pos: 66.5,-24.5 + parent: 5350 - uid: 12076 components: - type: Transform @@ -43204,112 +43885,102 @@ entities: - uid: 24239 components: - type: Transform - pos: 68.5,-31.5 + pos: 64.5,-24.5 parent: 5350 - uid: 24240 components: - type: Transform - pos: 66.5,-31.5 + pos: 63.5,-24.5 parent: 5350 - uid: 24241 components: - type: Transform - pos: 65.5,-31.5 + pos: 62.5,-24.5 parent: 5350 - uid: 24243 components: - type: Transform - pos: 64.5,-31.5 + pos: 61.5,-24.5 parent: 5350 - uid: 24245 components: - type: Transform - pos: 63.5,-31.5 + pos: 59.5,-24.5 parent: 5350 - uid: 24246 components: - type: Transform - pos: 63.5,-32.5 + pos: 60.5,-24.5 parent: 5350 - uid: 24247 components: - type: Transform - pos: 62.5,-32.5 + pos: 58.5,-24.5 parent: 5350 - uid: 24249 components: - type: Transform - pos: 61.5,-32.5 + pos: 57.5,-24.5 parent: 5350 - uid: 24250 components: - type: Transform - pos: 60.5,-32.5 + pos: 56.5,-24.5 parent: 5350 - uid: 24251 components: - type: Transform - pos: 59.5,-32.5 + pos: 55.5,-24.5 parent: 5350 - uid: 24253 components: - type: Transform - pos: 58.5,-32.5 + pos: 54.5,-24.5 parent: 5350 - uid: 24254 components: - type: Transform - pos: 57.5,-32.5 + pos: 67.5,-24.5 parent: 5350 - uid: 24255 components: - type: Transform - pos: 56.5,-32.5 + pos: 53.5,-24.5 parent: 5350 - uid: 24257 components: - type: Transform - pos: 55.5,-32.5 + pos: 52.5,-23.5 parent: 5350 - uid: 24260 components: - type: Transform - pos: 54.5,-32.5 + pos: 52.5,-22.5 parent: 5350 - uid: 24261 components: - type: Transform - pos: 53.5,-32.5 - parent: 5350 - - uid: 24298 - components: - - type: Transform - pos: 52.5,-32.5 - parent: 5350 - - uid: 24299 - components: - - type: Transform - pos: 51.5,-32.5 + pos: 52.5,-21.5 parent: 5350 - uid: 24301 components: - type: Transform - pos: 50.5,-32.5 + pos: 70.5,-27.5 parent: 5350 - uid: 24302 components: - type: Transform - pos: 49.5,-32.5 + pos: 70.5,-28.5 parent: 5350 - uid: 24303 components: - type: Transform - pos: 48.5,-32.5 + pos: 70.5,-29.5 parent: 5350 - uid: 24304 components: - type: Transform - pos: 47.5,-32.5 + pos: 70.5,-30.5 parent: 5350 - uid: 24497 components: @@ -43361,6 +44032,11 @@ entities: - type: Transform pos: 47.5,-24.5 parent: 5350 + - uid: 24516 + components: + - type: Transform + pos: 70.5,-31.5 + parent: 5350 - uid: 24519 components: - type: Transform @@ -43456,6 +44132,11 @@ entities: - type: Transform pos: 104.5,0.5 parent: 5350 + - uid: 26785 + components: + - type: Transform + pos: 70.5,-32.5 + parent: 5350 - uid: 26811 components: - type: Transform @@ -43541,6 +44222,31 @@ entities: - type: Transform pos: 103.5,13.5 parent: 5350 + - uid: 27000 + components: + - type: Transform + pos: 70.5,-33.5 + parent: 5350 + - uid: 27001 + components: + - type: Transform + pos: 70.5,-34.5 + parent: 5350 + - uid: 27002 + components: + - type: Transform + pos: 70.5,-35.5 + parent: 5350 + - uid: 27013 + components: + - type: Transform + pos: 71.5,-31.5 + parent: 5350 + - uid: 27123 + components: + - type: Transform + pos: 70.5,-25.5 + parent: 5350 - proto: CableHVStack entities: - uid: 1551 @@ -46950,6 +47656,31 @@ entities: - type: Transform pos: -34.5,32.5 parent: 5350 + - uid: 10840 + components: + - type: Transform + pos: 69.5,-26.5 + parent: 5350 + - uid: 11261 + components: + - type: Transform + pos: 69.5,-25.5 + parent: 5350 + - uid: 11270 + components: + - type: Transform + pos: 69.5,-28.5 + parent: 5350 + - uid: 11272 + components: + - type: Transform + pos: 70.5,-25.5 + parent: 5350 + - uid: 11274 + components: + - type: Transform + pos: 69.5,-27.5 + parent: 5350 - uid: 11917 components: - type: Transform @@ -50755,6 +51486,12 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,-60.5 parent: 5350 + - uid: 24299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-27.5 + parent: 5350 - uid: 24518 components: - type: Transform @@ -50802,10 +51539,10 @@ entities: parent: 5350 - proto: CarbonDioxideCanister entities: - - uid: 11597 + - uid: 11615 components: - type: Transform - pos: 69.5,-19.5 + pos: 69.5,-18.5 parent: 5350 - uid: 11815 components: @@ -50822,6 +51559,11 @@ entities: - type: Transform pos: 25.5,-48.5 parent: 5350 + - uid: 27090 + components: + - type: Transform + pos: 76.5,-36.5 + parent: 5350 - proto: Carpet entities: - uid: 1123 @@ -52900,6 +53642,11 @@ entities: - type: Transform pos: -43.5,35.5 parent: 5350 + - uid: 11282 + components: + - type: Transform + pos: 72.5,-24.5 + parent: 5350 - uid: 11471 components: - type: Transform @@ -52945,6 +53692,16 @@ entities: - type: Transform pos: 48.5,-34.5 parent: 5350 + - uid: 11756 + components: + - type: Transform + pos: 72.5,-23.5 + parent: 5350 + - uid: 11759 + components: + - type: Transform + pos: 72.5,-22.5 + parent: 5350 - uid: 12119 components: - type: Transform @@ -55904,6 +56661,119 @@ entities: - type: Transform pos: 58.5,11.5 parent: 5350 + - uid: 27112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-42.5 + parent: 5350 + - uid: 27157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-41.5 + parent: 5350 + - uid: 27169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-43.5 + parent: 5350 + - uid: 27170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-43.5 + parent: 5350 + - uid: 27171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-43.5 + parent: 5350 + - uid: 27172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-43.5 + parent: 5350 + - uid: 27173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 75.5,-43.5 + parent: 5350 + - uid: 27174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-43.5 + parent: 5350 + - uid: 27175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 77.5,-43.5 + parent: 5350 + - uid: 27176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-44.5 + parent: 5350 + - uid: 27178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-44.5 + parent: 5350 + - uid: 27179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-44.5 + parent: 5350 + - uid: 27180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-44.5 + parent: 5350 + - uid: 27181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-44.5 + parent: 5350 + - uid: 27182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-44.5 + parent: 5350 + - uid: 27183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-44.5 + parent: 5350 + - uid: 27184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-44.5 + parent: 5350 + - uid: 27254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-44.5 + parent: 5350 + - uid: 27255 + components: + - type: Transform + pos: 74.5,-44.5 + parent: 5350 - proto: Chair entities: - uid: 347 @@ -57477,6 +58347,11 @@ entities: rot: 1.5707963267948966 rad pos: 106.5,4.5 parent: 5350 + - uid: 27118 + components: + - type: Transform + pos: 71.5,-30.5 + parent: 5350 - proto: ChairOfficeLight entities: - uid: 5098 @@ -60889,6 +61764,15 @@ entities: - type: Transform pos: -40.532333,-25.270031 parent: 5350 +- proto: ClothingHeadHelmetAtmosFire + entities: + - uid: 27091 + components: + - type: Transform + parent: 27084 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHeadHelmetBasic entities: - uid: 10424 @@ -61059,6 +61943,13 @@ entities: - type: Transform pos: 45.489563,-8.468819 parent: 5350 + - uid: 27098 + components: + - type: Transform + parent: 27084 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingMaskGasExplorer entities: - uid: 3689 @@ -61426,6 +62317,15 @@ entities: - type: Transform pos: -18.5,29.5 parent: 5350 +- proto: ClothingOuterSuitAtmosFire + entities: + - uid: 27097 + components: + - type: Transform + parent: 27084 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingOuterSuitMonkey entities: - uid: 24111 @@ -62444,6 +63344,12 @@ entities: rot: 3.141592653589793 rad pos: 110.5,-0.5 parent: 5350 + - uid: 27043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-31.5 + parent: 5350 - proto: ComputerRadar entities: - uid: 1207 @@ -63178,6 +64084,13 @@ entities: - type: Transform pos: 38.5,-16.5 parent: 5350 +- proto: CrateMaterialSteel + entities: + - uid: 27101 + components: + - type: Transform + pos: 68.5,-31.5 + parent: 5350 - proto: CrateMedical entities: - uid: 15591 @@ -63826,6 +64739,13 @@ entities: - type: Transform pos: 36.5,7.5 parent: 5350 +- proto: DefaultStationBeaconTEG + entities: + - uid: 27252 + components: + - type: Transform + pos: 70.5,-30.5 + parent: 5350 - proto: DefaultStationBeaconTelecoms entities: - uid: 26708 @@ -71659,6 +72579,11 @@ entities: - type: Transform pos: -29.5,-42.5 parent: 5350 + - uid: 27096 + components: + - type: Transform + pos: 74.5,-31.5 + parent: 5350 - proto: ExtinguisherCabinetOpen entities: - uid: 22178 @@ -72658,6 +73583,16 @@ entities: - 14208 - 14209 - 14210 + - uid: 26994 + components: + - type: Transform + pos: 68.5,-28.5 + parent: 5350 + - type: DeviceList + devices: + - 27078 + - 26996 + - 26995 - proto: FireAxeCabinetFilled entities: - uid: 1096 @@ -73974,6 +74909,24 @@ entities: - type: Transform pos: -72.5,8.5 parent: 5350 + - uid: 26995 + components: + - type: Transform + pos: 66.5,-25.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 11752 + - 26994 + - uid: 26996 + components: + - type: Transform + pos: 67.5,-25.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 11752 + - 26994 - proto: Fireplace entities: - uid: 1054 @@ -74689,6 +75642,12 @@ entities: - type: Transform pos: -57.517693,-13.493662 parent: 5350 + - uid: 27104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-30.5 + parent: 5350 - proto: GasFilterFlipped entities: - uid: 14354 @@ -74701,10 +75660,10 @@ entities: color: '#FF1212FF' - proto: GasMinerCarbonDioxide entities: - - uid: 11596 + - uid: 11612 components: - type: Transform - pos: 68.5,-19.5 + pos: 68.5,-18.5 parent: 5350 - proto: GasMinerNitrogenStationLarge entities: @@ -74746,35 +75705,19 @@ entities: parent: 5350 - proto: GasOutletInjector entities: - - uid: 10990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-8.5 - parent: 5350 - - type: AtmosPipeColor - color: '#27E312FF' - - uid: 10991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-12.5 - parent: 5350 - - type: AtmosPipeColor - color: '#27E312FF' - - uid: 10992 + - uid: 3186 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,-16.5 + pos: 67.5,-19.5 parent: 5350 - type: AtmosPipeColor color: '#27E312FF' - - uid: 10993 + - uid: 10830 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,-20.5 + pos: 67.5,-15.5 parent: 5350 - type: AtmosPipeColor color: '#27E312FF' @@ -74806,6 +75749,22 @@ entities: rot: -1.5707963267948966 rad pos: 44.5,-34.5 parent: 5350 + - uid: 11570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-7.5 + parent: 5350 + - type: AtmosPipeColor + color: '#27E312FF' + - uid: 11723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-11.5 + parent: 5350 + - type: AtmosPipeColor + color: '#27E312FF' - uid: 19390 components: - type: Transform @@ -74827,6 +75786,22 @@ entities: rot: 3.141592653589793 rad pos: 59.5,-28.5 parent: 5350 + - uid: 10829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-13.5 + parent: 5350 + - type: AtmosPipeColor + color: '#B342F5FF' + - uid: 10910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-17.5 + parent: 5350 + - type: AtmosPipeColor + color: '#B342F5FF' - uid: 10981 components: - type: Transform @@ -74859,35 +75834,19 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#947507FF' - - uid: 10986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-18.5 - parent: 5350 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 10987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-14.5 - parent: 5350 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 10988 + - uid: 11309 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,-10.5 + pos: 67.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#947507FF' - - uid: 10989 + color: '#B342F5FF' + - uid: 11310 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,-6.5 + pos: 67.5,-9.5 parent: 5350 - type: AtmosPipeColor color: '#B342F5FF' @@ -74939,6 +75898,24 @@ entities: rot: 3.141592653589793 rad pos: 104.5,-16.5 parent: 5350 + - uid: 27069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-40.5 + parent: 5350 + - uid: 27073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-40.5 + parent: 5350 + - uid: 27111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-40.5 + parent: 5350 - proto: GasPipeBend entities: - uid: 510 @@ -75353,14 +76330,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5314 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-4.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5489 components: - type: Transform @@ -75829,19 +76798,19 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11002 + - uid: 10993 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-5.5 + rot: -1.5707963267948966 rad + pos: 58.5,-5.5 parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 11004 + - uid: 11002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-10.5 + rot: 1.5707963267948966 rad + pos: 58.5,-4.5 parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' @@ -75869,11 +76838,10 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11118 + - uid: 11116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-9.5 + pos: 63.5,-4.5 parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' @@ -75901,13 +76869,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 11137 - components: - - type: Transform - pos: 62.5,-4.5 - parent: 5350 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 11156 components: - type: Transform @@ -76826,6 +77787,85 @@ entities: rot: 3.141592653589793 rad pos: 108.5,-4.5 parent: 5350 + - uid: 26787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-20.5 + parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 26985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-20.5 + parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 27185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-42.5 + parent: 5350 + - uid: 27186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-42.5 + parent: 5350 + - uid: 27211 + components: + - type: Transform + pos: 66.5,-21.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 27213 + components: + - type: Transform + pos: 69.5,-30.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27214 + components: + - type: Transform + pos: 63.5,-24.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27229 + components: + - type: Transform + pos: 64.5,-23.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,-30.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-29.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27233 + components: + - type: Transform + pos: 72.5,-29.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeFourway entities: - uid: 260 @@ -81507,6 +82547,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-7.5 + parent: 5350 + - type: AtmosPipeColor + color: '#27E312FF' - uid: 2685 components: - type: Transform @@ -84293,13 +85341,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5315 - components: - - type: Transform - pos: 57.5,-5.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 5459 components: - type: Transform @@ -88750,14 +89791,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-4.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8978 components: - type: Transform @@ -88766,14 +89799,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-4.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8987 components: - type: Transform @@ -88944,14 +89969,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-4.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9039 components: - type: Transform @@ -88960,11 +89977,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9069 - components: - - type: Transform - pos: 68.5,-30.5 - parent: 5350 - uid: 9166 components: - type: Transform @@ -89631,6 +90643,62 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-15.5 + parent: 5350 + - type: AtmosPipeColor + color: '#27E312FF' + - uid: 10816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-15.5 + parent: 5350 + - type: AtmosPipeColor + color: '#27E312FF' + - uid: 10822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-7.5 + parent: 5350 + - type: AtmosPipeColor + color: '#27E312FF' + - uid: 10825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-11.5 + parent: 5350 + - type: AtmosPipeColor + color: '#27E312FF' + - uid: 10826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-11.5 + parent: 5350 + - type: AtmosPipeColor + color: '#27E312FF' + - uid: 10924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-11.5 + parent: 5350 + - type: AtmosPipeColor + color: '#27E312FF' + - uid: 10931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-7.5 + parent: 5350 + - type: AtmosPipeColor + color: '#27E312FF' - uid: 10952 components: - type: Transform @@ -89694,6 +90762,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 10972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-15.5 + parent: 5350 + - type: AtmosPipeColor + color: '#27E312FF' - uid: 10973 components: - type: Transform @@ -89725,6 +90801,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 10992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-10.5 + parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11003 components: - type: Transform @@ -89733,6 +90817,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 11004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-10.5 + parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11016 components: - type: Transform @@ -89775,78 +90867,22 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#27E312FF' - - uid: 11040 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-20.5 - parent: 5350 - - type: AtmosPipeColor - color: '#27E312FF' - uid: 11041 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-20.5 + pos: 57.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#27E312FF' + color: '#03FCD3FF' - uid: 11042 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-20.5 - parent: 5350 - - type: AtmosPipeColor - color: '#27E312FF' - - uid: 11044 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-16.5 - parent: 5350 - - type: AtmosPipeColor - color: '#27E312FF' - - uid: 11045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-16.5 - parent: 5350 - - type: AtmosPipeColor - color: '#27E312FF' - - uid: 11046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-16.5 - parent: 5350 - - type: AtmosPipeColor - color: '#27E312FF' - - uid: 11054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-12.5 - parent: 5350 - - type: AtmosPipeColor - color: '#27E312FF' - - uid: 11055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-12.5 - parent: 5350 - - type: AtmosPipeColor - color: '#27E312FF' - - uid: 11056 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-12.5 + pos: 58.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#27E312FF' + color: '#03FCD3FF' - uid: 11058 components: - type: Transform @@ -90058,42 +91094,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 11098 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-24.5 - parent: 5350 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11099 - components: - - type: Transform - pos: 63.5,-23.5 - parent: 5350 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11100 - components: - - type: Transform - pos: 63.5,-22.5 - parent: 5350 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11101 - components: - - type: Transform - pos: 63.5,-21.5 - parent: 5350 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11102 - components: - - type: Transform - pos: 63.5,-20.5 - parent: 5350 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 11103 components: - type: Transform @@ -90157,50 +91157,19 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 11112 - components: - - type: Transform - pos: 63.5,-10.5 - parent: 5350 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11113 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-9.5 - parent: 5350 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-9.5 - parent: 5350 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11115 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-9.5 - parent: 5350 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11116 + - uid: 11117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-9.5 + rot: 1.5707963267948966 rad + pos: 62.5,-4.5 parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 11117 + - uid: 11118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-9.5 + rot: 1.5707963267948966 rad + pos: 61.5,-4.5 parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' @@ -90228,6 +91197,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 11130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-4.5 + parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11131 components: - type: Transform @@ -90252,6 +91229,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 11134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-4.5 + parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11139 components: - type: Transform @@ -90332,14 +91317,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-6.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11152 components: - type: Transform @@ -90380,78 +91357,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11161 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-18.5 - parent: 5350 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 11162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-18.5 - parent: 5350 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 11163 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-18.5 - parent: 5350 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 11166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-14.5 - parent: 5350 - - type: AtmosPipeColor - color: '#947507FF' - uid: 11167 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,-14.5 - parent: 5350 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 11168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-14.5 - parent: 5350 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 11171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-10.5 - parent: 5350 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 11172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-10.5 - parent: 5350 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 11173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-10.5 + pos: 64.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#947507FF' + color: '#B342F5FF' - uid: 11196 components: - type: Transform @@ -90476,54 +91389,21 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11200 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-8.5 - parent: 5350 - - type: AtmosPipeColor - color: '#27E312FF' - - uid: 11201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-8.5 - parent: 5350 - - type: AtmosPipeColor - color: '#27E312FF' - - uid: 11202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-8.5 - parent: 5350 - - type: AtmosPipeColor - color: '#27E312FF' - - uid: 11204 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-6.5 - parent: 5350 - - type: AtmosPipeColor - color: '#B342F5FF' - uid: 11205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-6.5 + pos: 63.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#B342F5FF' + color: '#03FCD3FF' - uid: 11206 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,-6.5 + pos: 62.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#B342F5FF' + color: '#03FCD3FF' - uid: 11227 components: - type: Transform @@ -90572,63 +91452,93 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#000000FF' - - uid: 11237 + - uid: 11297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-24.5 + pos: 63.5,-9.5 parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 11238 + - uid: 11306 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-24.5 + pos: 59.5,-10.5 parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 11239 + - uid: 11316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-24.5 + rot: -1.5707963267948966 rad + pos: 64.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11240 + color: '#B342F5FF' + - uid: 11317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-24.5 + rot: -1.5707963267948966 rad + pos: 65.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11241 + color: '#B342F5FF' + - uid: 11318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-24.5 + rot: -1.5707963267948966 rad + pos: 66.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11246 + color: '#B342F5FF' + - uid: 11349 components: - type: Transform - pos: 70.5,-30.5 + rot: -1.5707963267948966 rad + pos: 66.5,-19.5 parent: 5350 - - uid: 11247 + - type: AtmosPipeColor + color: '#27E312FF' + - uid: 11350 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-29.5 + rot: -1.5707963267948966 rad + pos: 65.5,-19.5 parent: 5350 - - uid: 11248 + - type: AtmosPipeColor + color: '#27E312FF' + - uid: 11351 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-29.5 + rot: -1.5707963267948966 rad + pos: 64.5,-19.5 + parent: 5350 + - type: AtmosPipeColor + color: '#27E312FF' + - uid: 11352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-13.5 parent: 5350 + - type: AtmosPipeColor + color: '#B342F5FF' + - uid: 11353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-13.5 + parent: 5350 + - type: AtmosPipeColor + color: '#B342F5FF' + - uid: 11354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-13.5 + parent: 5350 + - type: AtmosPipeColor + color: '#B342F5FF' - uid: 11362 components: - type: Transform @@ -90877,6 +91787,77 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 11572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-5.5 + parent: 5350 + - type: AtmosPipeColor + color: '#B342F5FF' + - uid: 11635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 64.5,-5.5 + parent: 5350 + - type: AtmosPipeColor + color: '#B342F5FF' + - uid: 11642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-5.5 + parent: 5350 + - type: AtmosPipeColor + color: '#B342F5FF' + - uid: 11724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-9.5 + parent: 5350 + - type: AtmosPipeColor + color: '#B342F5FF' + - uid: 11730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-9.5 + parent: 5350 + - type: AtmosPipeColor + color: '#B342F5FF' + - uid: 11754 + components: + - type: Transform + pos: 61.5,-22.5 + parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 11758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 62.5,-20.5 + parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 11760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-21.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-23.5 + parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 11779 components: - type: Transform @@ -101136,6 +102117,326 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 26786 + components: + - type: Transform + pos: 61.5,-21.5 + parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 27070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-39.5 + parent: 5350 + - uid: 27074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-39.5 + parent: 5350 + - uid: 27156 + components: + - type: Transform + pos: 74.5,-39.5 + parent: 5350 + - uid: 27191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-39.5 + parent: 5350 + - uid: 27192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-39.5 + parent: 5350 + - uid: 27194 + components: + - type: Transform + pos: 73.5,-38.5 + parent: 5350 + - uid: 27196 + components: + - type: Transform + pos: 71.5,-38.5 + parent: 5350 + - uid: 27201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-21.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 27202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-21.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 27203 + components: + - type: Transform + pos: 66.5,-22.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 27204 + components: + - type: Transform + pos: 66.5,-23.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 27205 + components: + - type: Transform + pos: 66.5,-24.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 27206 + components: + - type: Transform + pos: 66.5,-25.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 27207 + components: + - type: Transform + pos: 66.5,-26.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 27208 + components: + - type: Transform + pos: 66.5,-27.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 27209 + components: + - type: Transform + pos: 66.5,-28.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 27215 + components: + - type: Transform + pos: 63.5,-25.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27216 + components: + - type: Transform + pos: 63.5,-26.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27217 + components: + - type: Transform + pos: 63.5,-27.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27218 + components: + - type: Transform + pos: 63.5,-28.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27219 + components: + - type: Transform + pos: 63.5,-29.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-30.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-30.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-30.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,-29.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-29.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-29.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-29.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-30.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,-30.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 27232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-29.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,-29.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-29.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27236 + components: + - type: Transform + pos: 72.5,-30.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27237 + components: + - type: Transform + pos: 66.5,-29.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 27238 + components: + - type: Transform + pos: 66.5,-30.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 27239 + components: + - type: Transform + pos: 66.5,-31.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 27240 + components: + - type: Transform + pos: 64.5,-28.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27241 + components: + - type: Transform + pos: 64.5,-27.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27242 + components: + - type: Transform + pos: 64.5,-26.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27243 + components: + - type: Transform + pos: 64.5,-25.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27244 + components: + - type: Transform + pos: 64.5,-24.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-23.5 + parent: 5350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 27256 + components: + - type: Transform + pos: 66.5,-32.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPipeTJunction entities: - uid: 265 @@ -103313,6 +104614,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-5.5 + parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10950 components: - type: Transform @@ -103399,27 +104708,11 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 11097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-24.5 - parent: 5350 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-9.5 - parent: 5350 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 11134 + - uid: 11115 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,-5.5 + pos: 63.5,-10.5 parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' @@ -104685,6 +105978,30 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 27187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-41.5 + parent: 5350 + - uid: 27188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-41.5 + parent: 5350 + - uid: 27189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,-40.5 + parent: 5350 + - uid: 27190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-40.5 + parent: 5350 - proto: GasPort entities: - uid: 8245 @@ -104717,11 +106034,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9029 - components: - - type: Transform - pos: 63.5,-4.5 - parent: 5350 - uid: 10163 components: - type: Transform @@ -104752,6 +106064,13 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10932 + components: + - type: Transform + pos: 57.5,-4.5 + parent: 5350 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10946 components: - type: Transform @@ -104784,16 +106103,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 11243 - components: - - type: Transform - pos: 68.5,-27.5 - parent: 5350 - - uid: 11244 - components: - - type: Transform - pos: 70.5,-27.5 - parent: 5350 - uid: 11438 components: - type: Transform @@ -104940,12 +106249,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-12.5 - parent: 5350 - uid: 3130 components: - type: Transform @@ -104954,12 +106257,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-6.5 - parent: 5350 - uid: 10543 components: - type: Transform @@ -104972,50 +106269,51 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10966 + - uid: 10817 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,-20.5 - parent: 5350 - - uid: 10967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-20.5 + pos: 63.5,-15.5 parent: 5350 - - uid: 10968 + - type: AtmosPipeColor + color: '#27E312FF' + - uid: 10824 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,-21.5 + pos: 63.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 10969 + color: '#B342F5FF' + - uid: 10934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-16.5 + pos: 57.5,-6.5 parent: 5350 - - uid: 10970 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 10967 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,-10.5 + pos: 54.5,-20.5 parent: 5350 - - uid: 10971 + - uid: 10968 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,-14.5 + pos: 51.5,-21.5 parent: 5350 - - uid: 10972 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-18.5 + rot: 1.5707963267948966 rad + pos: 63.5,-7.5 parent: 5350 + - type: AtmosPipeColor + color: '#27E312FF' - uid: 11006 components: - type: Transform @@ -105029,12 +106327,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11015 + - uid: 11040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-8.5 + rot: -1.5707963267948966 rad + pos: 63.5,-5.5 parent: 5350 + - type: AtmosPipeColor + color: '#B342F5FF' - uid: 11124 components: - type: Transform @@ -105043,25 +106343,38 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 11138 + - uid: 11161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-4.5 + rot: 1.5707963267948966 rad + pos: 63.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11249 + color: '#27E312FF' + - uid: 11280 components: - type: Transform - pos: 68.5,-28.5 + rot: 1.5707963267948966 rad + pos: 62.5,-24.5 parent: 5350 - - uid: 11250 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 11304 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-28.5 + rot: -1.5707963267948966 rad + pos: 63.5,-17.5 + parent: 5350 + - type: AtmosPipeColor + color: '#B342F5FF' + - uid: 11355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-11.5 parent: 5350 + - type: AtmosPipeColor + color: '#27E312FF' - uid: 11428 components: - type: Transform @@ -105085,6 +106398,14 @@ entities: - type: Transform pos: 43.5,-28.5 parent: 5350 + - uid: 11600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-13.5 + parent: 5350 + - type: AtmosPipeColor + color: '#B342F5FF' - uid: 13461 components: - type: Transform @@ -105141,6 +106462,22 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 27071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-38.5 + parent: 5350 + - uid: 27128 + components: + - type: Transform + pos: 66.5,-38.5 + parent: 5350 + - uid: 27193 + components: + - type: Transform + pos: 74.5,-38.5 + parent: 5350 - proto: GasThermoMachineFreezer entities: - uid: 2630 @@ -105183,6 +106520,12 @@ entities: - type: Transform pos: 29.5,-38.5 parent: 5350 + - uid: 27195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-38.5 + parent: 5350 - proto: GasThermoMachineHeater entities: - uid: 11366 @@ -105941,14 +107284,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-24.5 - parent: 5350 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 11867 components: - type: Transform @@ -106865,6 +108200,17 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 27210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-31.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 11752 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 755 @@ -108252,6 +109598,17 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 27212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-31.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 11752 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasVolumePump entities: - uid: 10948 @@ -110751,6 +112108,36 @@ entities: - type: Transform pos: -4.5,16.5 parent: 5350 + - uid: 10823 + components: + - type: Transform + pos: 66.5,-19.5 + parent: 5350 + - uid: 10827 + components: + - type: Transform + pos: 66.5,-18.5 + parent: 5350 + - uid: 10835 + components: + - type: Transform + pos: 70.5,-28.5 + parent: 5350 + - uid: 10843 + components: + - type: Transform + pos: 64.5,-25.5 + parent: 5350 + - uid: 10844 + components: + - type: Transform + pos: 61.5,-25.5 + parent: 5350 + - uid: 10944 + components: + - type: Transform + pos: 66.5,-17.5 + parent: 5350 - uid: 11034 components: - type: Transform @@ -110771,65 +112158,95 @@ entities: - type: Transform pos: 63.5,1.5 parent: 5350 - - uid: 11309 + - uid: 11168 components: - type: Transform - pos: 66.5,-8.5 + pos: 66.5,-9.5 parent: 5350 - - uid: 11310 + - uid: 11171 components: - type: Transform - pos: 66.5,-7.5 + pos: 66.5,-10.5 parent: 5350 - - uid: 11311 + - uid: 11242 components: - type: Transform - pos: 66.5,-6.5 + pos: 64.5,-18.5 parent: 5350 - - uid: 11312 + - uid: 11243 components: - type: Transform - pos: 66.5,-12.5 + pos: 64.5,-6.5 parent: 5350 - - uid: 11313 + - uid: 11244 components: - type: Transform - pos: 66.5,-11.5 + pos: 64.5,-16.5 parent: 5350 - - uid: 11314 + - uid: 11245 components: - type: Transform - pos: 66.5,-10.5 + pos: 64.5,-15.5 parent: 5350 - - uid: 11315 + - uid: 11246 components: - type: Transform - pos: 66.5,-16.5 + pos: 64.5,-14.5 parent: 5350 - - uid: 11316 + - uid: 11247 components: - type: Transform - pos: 66.5,-15.5 + pos: 64.5,-13.5 parent: 5350 - - uid: 11317 + - uid: 11248 components: - type: Transform - pos: 66.5,-14.5 + pos: 64.5,-12.5 parent: 5350 - - uid: 11318 + - uid: 11249 components: - type: Transform - pos: 66.5,-20.5 + pos: 64.5,-11.5 parent: 5350 - - uid: 11319 + - uid: 11250 components: - type: Transform - pos: 66.5,-19.5 + pos: 64.5,-10.5 parent: 5350 - - uid: 11320 + - uid: 11251 components: - type: Transform - pos: 66.5,-18.5 + pos: 64.5,-9.5 + parent: 5350 + - uid: 11252 + components: + - type: Transform + pos: 64.5,-7.5 + parent: 5350 + - uid: 11253 + components: + - type: Transform + pos: 64.5,-8.5 + parent: 5350 + - uid: 11255 + components: + - type: Transform + pos: 64.5,-5.5 + parent: 5350 + - uid: 11269 + components: + - type: Transform + pos: 64.5,-17.5 + parent: 5350 + - uid: 11302 + components: + - type: Transform + pos: 66.5,-11.5 + parent: 5350 + - uid: 11311 + components: + - type: Transform + pos: 66.5,-6.5 parent: 5350 - uid: 11321 components: @@ -110931,110 +112348,65 @@ entities: - type: Transform pos: 60.5,-25.5 parent: 5350 - - uid: 11341 - components: - - type: Transform - pos: 61.5,-25.5 - parent: 5350 - - uid: 11342 - components: - - type: Transform - pos: 64.5,-20.5 - parent: 5350 - uid: 11343 components: - type: Transform - pos: 64.5,-19.5 + pos: 66.5,-5.5 parent: 5350 - uid: 11344 components: - type: Transform - pos: 64.5,-18.5 - parent: 5350 - - uid: 11345 - components: - - type: Transform - pos: 64.5,-17.5 - parent: 5350 - - uid: 11346 - components: - - type: Transform - pos: 64.5,-16.5 - parent: 5350 - - uid: 11347 - components: - - type: Transform - pos: 64.5,-15.5 - parent: 5350 - - uid: 11348 - components: - - type: Transform - pos: 64.5,-14.5 - parent: 5350 - - uid: 11349 - components: - - type: Transform - pos: 64.5,-13.5 - parent: 5350 - - uid: 11350 - components: - - type: Transform - pos: 64.5,-12.5 - parent: 5350 - - uid: 11351 - components: - - type: Transform - pos: 64.5,-11.5 + pos: 66.5,-13.5 parent: 5350 - - uid: 11352 + - uid: 11356 components: - type: Transform - pos: 64.5,-10.5 + pos: 66.5,-7.5 parent: 5350 - - uid: 11353 + - uid: 11357 components: - type: Transform - pos: 64.5,-9.5 + pos: 53.5,-9.5 parent: 5350 - - uid: 11354 + - uid: 11358 components: - type: Transform - pos: 64.5,-8.5 + pos: 55.5,-9.5 parent: 5350 - - uid: 11355 + - uid: 11359 components: - type: Transform - pos: 64.5,-7.5 + pos: 56.5,-9.5 parent: 5350 - - uid: 11356 + - uid: 11501 components: - type: Transform - pos: 64.5,-6.5 + pos: 43.5,-29.5 parent: 5350 - - uid: 11357 + - uid: 11502 components: - type: Transform - pos: 53.5,-9.5 + pos: 48.5,-26.5 parent: 5350 - - uid: 11358 + - uid: 11628 components: - type: Transform - pos: 55.5,-9.5 + pos: 66.5,-14.5 parent: 5350 - - uid: 11359 + - uid: 11693 components: - type: Transform - pos: 56.5,-9.5 + pos: 64.5,-21.5 parent: 5350 - - uid: 11501 + - uid: 11725 components: - type: Transform - pos: 43.5,-29.5 + pos: 66.5,-15.5 parent: 5350 - - uid: 11502 + - uid: 11736 components: - type: Transform - pos: 48.5,-26.5 + pos: 64.5,-19.5 parent: 5350 - uid: 12099 components: @@ -115266,6 +116638,681 @@ entities: - type: Transform pos: -13.5,63.5 parent: 26973 + - uid: 27035 + components: + - type: Transform + pos: 74.5,-29.5 + parent: 5350 + - uid: 27036 + components: + - type: Transform + pos: 74.5,-30.5 + parent: 5350 + - uid: 27064 + components: + - type: Transform + pos: 67.5,-39.5 + parent: 5350 + - uid: 27116 + components: + - type: Transform + pos: 66.5,-39.5 + parent: 5350 + - uid: 27129 + components: + - type: Transform + pos: 68.5,-39.5 + parent: 5350 + - uid: 27130 + components: + - type: Transform + pos: 69.5,-39.5 + parent: 5350 + - uid: 27137 + components: + - type: Transform + pos: 73.5,-39.5 + parent: 5350 + - uid: 27138 + components: + - type: Transform + pos: 65.5,-30.5 + parent: 5350 + - uid: 27142 + components: + - type: Transform + pos: 65.5,-29.5 + parent: 5350 + - uid: 27151 + components: + - type: Transform + pos: 74.5,-39.5 + parent: 5350 + - uid: 27162 + components: + - type: Transform + pos: 71.5,-39.5 + parent: 5350 + - uid: 27163 + components: + - type: Transform + pos: 72.5,-39.5 + parent: 5350 + - uid: 27177 + components: + - type: Transform + pos: 63.5,-25.5 + parent: 5350 + - uid: 27251 + components: + - type: Transform + pos: 82.5,-27.5 + parent: 5350 + - uid: 27264 + components: + - type: Transform + pos: 66.5,-22.5 + parent: 5350 + - uid: 27286 + components: + - type: Transform + pos: 82.5,-26.5 + parent: 5350 + - uid: 27287 + components: + - type: Transform + pos: 81.5,-26.5 + parent: 5350 + - uid: 27289 + components: + - type: Transform + pos: 82.5,-28.5 + parent: 5350 + - uid: 27291 + components: + - type: Transform + pos: 82.5,-30.5 + parent: 5350 + - uid: 27292 + components: + - type: Transform + pos: 82.5,-32.5 + parent: 5350 + - uid: 27293 + components: + - type: Transform + pos: 82.5,-33.5 + parent: 5350 + - uid: 27294 + components: + - type: Transform + pos: 82.5,-31.5 + parent: 5350 + - uid: 27295 + components: + - type: Transform + pos: 82.5,-34.5 + parent: 5350 + - uid: 27297 + components: + - type: Transform + pos: 82.5,-37.5 + parent: 5350 + - uid: 27298 + components: + - type: Transform + pos: 82.5,-35.5 + parent: 5350 + - uid: 27299 + components: + - type: Transform + pos: 82.5,-38.5 + parent: 5350 + - uid: 27301 + components: + - type: Transform + pos: 82.5,-39.5 + parent: 5350 + - uid: 27302 + components: + - type: Transform + pos: 82.5,-41.5 + parent: 5350 + - uid: 27303 + components: + - type: Transform + pos: 82.5,-42.5 + parent: 5350 + - uid: 27304 + components: + - type: Transform + pos: 82.5,-43.5 + parent: 5350 + - uid: 27306 + components: + - type: Transform + pos: 82.5,-45.5 + parent: 5350 + - uid: 27307 + components: + - type: Transform + pos: 82.5,-46.5 + parent: 5350 + - uid: 27308 + components: + - type: Transform + pos: 82.5,-47.5 + parent: 5350 + - uid: 27309 + components: + - type: Transform + pos: 82.5,-49.5 + parent: 5350 + - uid: 27310 + components: + - type: Transform + pos: 82.5,-48.5 + parent: 5350 + - uid: 27311 + components: + - type: Transform + pos: 81.5,-49.5 + parent: 5350 + - uid: 27313 + components: + - type: Transform + pos: 78.5,-49.5 + parent: 5350 + - uid: 27314 + components: + - type: Transform + pos: 80.5,-49.5 + parent: 5350 + - uid: 27315 + components: + - type: Transform + pos: 76.5,-49.5 + parent: 5350 + - uid: 27316 + components: + - type: Transform + pos: 77.5,-49.5 + parent: 5350 + - uid: 27317 + components: + - type: Transform + pos: 75.5,-49.5 + parent: 5350 + - uid: 27319 + components: + - type: Transform + pos: 73.5,-49.5 + parent: 5350 + - uid: 27320 + components: + - type: Transform + pos: 72.5,-49.5 + parent: 5350 + - uid: 27322 + components: + - type: Transform + pos: 70.5,-49.5 + parent: 5350 + - uid: 27323 + components: + - type: Transform + pos: 69.5,-49.5 + parent: 5350 + - uid: 27324 + components: + - type: Transform + pos: 68.5,-49.5 + parent: 5350 + - uid: 27325 + components: + - type: Transform + pos: 67.5,-49.5 + parent: 5350 + - uid: 27326 + components: + - type: Transform + pos: 66.5,-49.5 + parent: 5350 + - uid: 27328 + components: + - type: Transform + pos: 64.5,-49.5 + parent: 5350 + - uid: 27329 + components: + - type: Transform + pos: 63.5,-49.5 + parent: 5350 + - uid: 27330 + components: + - type: Transform + pos: 62.5,-49.5 + parent: 5350 + - uid: 27331 + components: + - type: Transform + pos: 61.5,-49.5 + parent: 5350 + - uid: 27332 + components: + - type: Transform + pos: 60.5,-49.5 + parent: 5350 + - uid: 27333 + components: + - type: Transform + pos: 60.5,-48.5 + parent: 5350 + - uid: 27335 + components: + - type: Transform + pos: 60.5,-46.5 + parent: 5350 + - uid: 27336 + components: + - type: Transform + pos: 60.5,-45.5 + parent: 5350 + - uid: 27337 + components: + - type: Transform + pos: 60.5,-44.5 + parent: 5350 + - uid: 27339 + components: + - type: Transform + pos: 60.5,-42.5 + parent: 5350 + - uid: 27340 + components: + - type: Transform + pos: 60.5,-41.5 + parent: 5350 + - uid: 27341 + components: + - type: Transform + pos: 60.5,-40.5 + parent: 5350 + - uid: 27342 + components: + - type: Transform + pos: 60.5,-39.5 + parent: 5350 + - uid: 27344 + components: + - type: Transform + pos: 60.5,-37.5 + parent: 5350 + - uid: 27345 + components: + - type: Transform + pos: 60.5,-36.5 + parent: 5350 + - uid: 27346 + components: + - type: Transform + pos: 50.5,-34.5 + parent: 5350 + - uid: 27347 + components: + - type: Transform + pos: 51.5,-34.5 + parent: 5350 + - uid: 27348 + components: + - type: Transform + pos: 52.5,-34.5 + parent: 5350 + - uid: 27350 + components: + - type: Transform + pos: 54.5,-34.5 + parent: 5350 + - uid: 27351 + components: + - type: Transform + pos: 55.5,-34.5 + parent: 5350 + - uid: 27353 + components: + - type: Transform + pos: 57.5,-34.5 + parent: 5350 + - uid: 27355 + components: + - type: Transform + pos: 59.5,-34.5 + parent: 5350 + - uid: 27356 + components: + - type: Transform + pos: 60.5,-34.5 + parent: 5350 + - uid: 27357 + components: + - type: Transform + pos: 61.5,-34.5 + parent: 5350 + - uid: 27358 + components: + - type: Transform + pos: 62.5,-34.5 + parent: 5350 + - uid: 27359 + components: + - type: Transform + pos: 50.5,-36.5 + parent: 5350 + - uid: 27360 + components: + - type: Transform + pos: 51.5,-36.5 + parent: 5350 + - uid: 27362 + components: + - type: Transform + pos: 53.5,-36.5 + parent: 5350 + - uid: 27363 + components: + - type: Transform + pos: 54.5,-36.5 + parent: 5350 + - uid: 27364 + components: + - type: Transform + pos: 55.5,-36.5 + parent: 5350 + - uid: 27366 + components: + - type: Transform + pos: 57.5,-36.5 + parent: 5350 + - uid: 27367 + components: + - type: Transform + pos: 58.5,-36.5 + parent: 5350 + - uid: 27368 + components: + - type: Transform + pos: 59.5,-36.5 + parent: 5350 + - uid: 27369 + components: + - type: Transform + pos: 79.5,-28.5 + parent: 5350 + - uid: 27370 + components: + - type: Transform + pos: 62.5,-36.5 + parent: 5350 + - uid: 27371 + components: + - type: Transform + pos: 62.5,-37.5 + parent: 5350 + - uid: 27372 + components: + - type: Transform + pos: 62.5,-38.5 + parent: 5350 + - uid: 27374 + components: + - type: Transform + pos: 62.5,-40.5 + parent: 5350 + - uid: 27375 + components: + - type: Transform + pos: 62.5,-41.5 + parent: 5350 + - uid: 27376 + components: + - type: Transform + pos: 62.5,-42.5 + parent: 5350 + - uid: 27378 + components: + - type: Transform + pos: 62.5,-44.5 + parent: 5350 + - uid: 27379 + components: + - type: Transform + pos: 62.5,-45.5 + parent: 5350 + - uid: 27381 + components: + - type: Transform + pos: 62.5,-47.5 + parent: 5350 + - uid: 27382 + components: + - type: Transform + pos: 63.5,-47.5 + parent: 5350 + - uid: 27383 + components: + - type: Transform + pos: 79.5,-39.5 + parent: 5350 + - uid: 27384 + components: + - type: Transform + pos: 65.5,-47.5 + parent: 5350 + - uid: 27385 + components: + - type: Transform + pos: 66.5,-47.5 + parent: 5350 + - uid: 27387 + components: + - type: Transform + pos: 68.5,-47.5 + parent: 5350 + - uid: 27388 + components: + - type: Transform + pos: 69.5,-47.5 + parent: 5350 + - uid: 27390 + components: + - type: Transform + pos: 72.5,-47.5 + parent: 5350 + - uid: 27391 + components: + - type: Transform + pos: 71.5,-47.5 + parent: 5350 + - uid: 27392 + components: + - type: Transform + pos: 73.5,-47.5 + parent: 5350 + - uid: 27393 + components: + - type: Transform + pos: 74.5,-47.5 + parent: 5350 + - uid: 27394 + components: + - type: Transform + pos: 75.5,-47.5 + parent: 5350 + - uid: 27395 + components: + - type: Transform + pos: 76.5,-47.5 + parent: 5350 + - uid: 27396 + components: + - type: Transform + pos: 77.5,-47.5 + parent: 5350 + - uid: 27398 + components: + - type: Transform + pos: 79.5,-47.5 + parent: 5350 + - uid: 27399 + components: + - type: Transform + pos: 80.5,-47.5 + parent: 5350 + - uid: 27400 + components: + - type: Transform + pos: 80.5,-31.5 + parent: 5350 + - uid: 27401 + components: + - type: Transform + pos: 80.5,-30.5 + parent: 5350 + - uid: 27402 + components: + - type: Transform + pos: 80.5,-29.5 + parent: 5350 + - uid: 27404 + components: + - type: Transform + pos: 80.5,-46.5 + parent: 5350 + - uid: 27406 + components: + - type: Transform + pos: 80.5,-43.5 + parent: 5350 + - uid: 27407 + components: + - type: Transform + pos: 80.5,-45.5 + parent: 5350 + - uid: 27408 + components: + - type: Transform + pos: 80.5,-42.5 + parent: 5350 + - uid: 27409 + components: + - type: Transform + pos: 80.5,-41.5 + parent: 5350 + - uid: 27410 + components: + - type: Transform + pos: 80.5,-40.5 + parent: 5350 + - uid: 27412 + components: + - type: Transform + pos: 80.5,-38.5 + parent: 5350 + - uid: 27413 + components: + - type: Transform + pos: 80.5,-37.5 + parent: 5350 + - uid: 27414 + components: + - type: Transform + pos: 80.5,-36.5 + parent: 5350 + - uid: 27415 + components: + - type: Transform + pos: 80.5,-35.5 + parent: 5350 + - uid: 27416 + components: + - type: Transform + pos: 80.5,-34.5 + parent: 5350 + - uid: 27418 + components: + - type: Transform + pos: 80.5,-32.5 + parent: 5350 + - uid: 27419 + components: + - type: Transform + pos: 78.5,-28.5 + parent: 5350 + - uid: 27420 + components: + - type: Transform + pos: 77.5,-28.5 + parent: 5350 + - uid: 27421 + components: + - type: Transform + pos: 79.5,-26.5 + parent: 5350 + - uid: 27422 + components: + - type: Transform + pos: 79.5,-44.5 + parent: 5350 + - uid: 27441 + components: + - type: Transform + pos: 79.5,-33.5 + parent: 5350 + - uid: 27460 + components: + - type: Transform + pos: 79.5,-36.5 + parent: 5350 + - uid: 27470 + components: + - type: Transform + pos: 78.5,-46.5 + parent: 5350 + - uid: 27471 + components: + - type: Transform + pos: 75.5,-46.5 + parent: 5350 + - uid: 27472 + components: + - type: Transform + pos: 70.5,-46.5 + parent: 5350 + - uid: 27473 + components: + - type: Transform + pos: 67.5,-46.5 + parent: 5350 + - uid: 27474 + components: + - type: Transform + pos: 64.5,-46.5 + parent: 5350 + - uid: 27475 + components: + - type: Transform + pos: 63.5,-43.5 + parent: 5350 + - uid: 27476 + components: + - type: Transform + pos: 63.5,-39.5 + parent: 5350 + - uid: 27477 + components: + - type: Transform + pos: 63.5,-35.5 + parent: 5350 - proto: GrilleBroken entities: - uid: 2073 @@ -115575,6 +117622,161 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,60.5 parent: 5350 + - uid: 27288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-47.5 + parent: 5350 + - uid: 27290 + components: + - type: Transform + pos: 60.5,-38.5 + parent: 5350 + - uid: 27296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,-49.5 + parent: 5350 + - uid: 27300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,-49.5 + parent: 5350 + - uid: 27305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-44.5 + parent: 5350 + - uid: 27312 + components: + - type: Transform + pos: 82.5,-36.5 + parent: 5350 + - uid: 27318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,-28.5 + parent: 5350 + - uid: 27321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,-26.5 + parent: 5350 + - uid: 27327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,-39.5 + parent: 5350 + - uid: 27334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-47.5 + parent: 5350 + - uid: 27338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-34.5 + parent: 5350 + - uid: 27343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-43.5 + parent: 5350 + - uid: 27349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-36.5 + parent: 5350 + - uid: 27352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-36.5 + parent: 5350 + - uid: 27354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-34.5 + parent: 5350 + - uid: 27361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-34.5 + parent: 5350 + - uid: 27365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.5,-29.5 + parent: 5350 + - uid: 27373 + components: + - type: Transform + pos: 62.5,-46.5 + parent: 5350 + - uid: 27377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-47.5 + parent: 5350 + - uid: 27380 + components: + - type: Transform + pos: 80.5,-44.5 + parent: 5350 + - uid: 27386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 80.5,-33.5 + parent: 5350 + - uid: 27389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.5,-47.5 + parent: 5350 + - uid: 27397 + components: + - type: Transform + pos: 60.5,-43.5 + parent: 5350 + - uid: 27403 + components: + - type: Transform + pos: 82.5,-40.5 + parent: 5350 + - uid: 27405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-49.5 + parent: 5350 + - uid: 27411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-49.5 + parent: 5350 + - uid: 27417 + components: + - type: Transform + pos: 62.5,-39.5 + parent: 5350 - proto: GroundCannabis entities: - uid: 24640 @@ -115757,6 +117959,26 @@ entities: - type: Transform pos: 29.518621,-60.391666 parent: 5350 +- proto: HeatExchanger + entities: + - uid: 27166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-40.5 + parent: 5350 + - uid: 27167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-41.5 + parent: 5350 + - uid: 27168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-42.5 + parent: 5350 - proto: HighSecCommandLocked entities: - uid: 1668 @@ -115800,6 +118022,12 @@ entities: - type: Transform pos: -34.462692,34.496433 parent: 5350 + - uid: 27051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.83539,-31.5 + parent: 5350 - proto: HospitalCurtainsOpen entities: - uid: 7215 @@ -116304,6 +118532,11 @@ entities: - type: Transform pos: 100.5,10.5 parent: 5350 + - uid: 27015 + components: + - type: Transform + pos: 72.5,-28.5 + parent: 5350 - proto: IntercomMedical entities: - uid: 14165 @@ -116985,6 +119218,28 @@ entities: - Pressed: Toggle 14794: - Pressed: Toggle +- proto: LockerAtmospherics + entities: + - uid: 27084 + components: + - type: Transform + pos: 73.5,-29.5 + parent: 5350 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27085 + - 27091 + - 27097 + - 27098 + - 27099 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerAtmosphericsFilled entities: - uid: 9033 @@ -119628,6 +121883,11 @@ entities: - type: Transform pos: 41.5,31.5 parent: 5350 + - uid: 27088 + components: + - type: Transform + pos: 76.5,-34.5 + parent: 5350 - proto: NitrogenTankFilled entities: - uid: 15569 @@ -119640,6 +121900,13 @@ entities: - type: Transform pos: -15.399836,-58.48665 parent: 5350 + - uid: 27085 + components: + - type: Transform + parent: 27084 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: NitrousOxideCanister entities: - uid: 11825 @@ -119827,6 +122094,11 @@ entities: - type: Transform pos: 55.5,24.5 parent: 5350 + - uid: 27087 + components: + - type: Transform + pos: 76.5,-33.5 + parent: 5350 - proto: OxygenTankFilled entities: - uid: 1305 @@ -119854,6 +122126,13 @@ entities: - type: Transform pos: -43.374786,23.584633 parent: 5350 + - uid: 27099 + components: + - type: Transform + parent: 27084 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: PaintingAmogusTriptych entities: - uid: 24635 @@ -120320,11 +122599,6 @@ entities: - type: Transform pos: -42.7706,23.635101 parent: 5350 - - uid: 11275 - components: - - type: Transform - pos: 67.42234,-30.577332 - parent: 5350 - uid: 11812 components: - type: Transform @@ -120600,10 +122874,15 @@ entities: - type: Transform pos: 47.5,20.5 parent: 5350 - - uid: 11598 + - uid: 11166 components: - type: Transform - pos: 69.5,-15.5 + pos: 69.5,-14.5 + parent: 5350 + - uid: 27089 + components: + - type: Transform + pos: 76.5,-35.5 parent: 5350 - proto: PlasmaReinforcedWindowDirectional entities: @@ -122157,6 +124436,11 @@ entities: - type: Transform pos: 52.5,-3.5 parent: 5350 + - uid: 27077 + components: + - type: Transform + pos: 73.5,-31.5 + parent: 5350 - proto: PowerCellSmall entities: - uid: 22275 @@ -123112,11 +125396,23 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 + - uid: 10928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-8.5 + parent: 5350 - uid: 11029 components: - type: Transform pos: 35.5,-18.5 parent: 5350 + - uid: 11256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-22.5 + parent: 5350 - uid: 11506 components: - type: Transform @@ -123124,6 +125420,12 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 + - uid: 11728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-16.5 + parent: 5350 - uid: 12036 components: - type: Transform @@ -123171,22 +125473,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-9.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12044 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-17.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 12045 components: - type: Transform @@ -123203,14 +125489,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12047 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-22.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 12048 components: - type: Transform @@ -124741,8 +127019,42 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-23.5 parent: 5350 + - uid: 27143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-27.5 + parent: 5350 + - uid: 27144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-35.5 + parent: 5350 + - uid: 27145 + components: + - type: Transform + pos: 73.5,-29.5 + parent: 5350 + - uid: 27146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-37.5 + parent: 5350 + - uid: 27147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-33.5 + parent: 5350 - proto: PoweredlightExterior entities: + - uid: 11238 + components: + - type: Transform + pos: 76.5,-43.5 + parent: 5350 - uid: 26352 components: - type: Transform @@ -124819,6 +127131,12 @@ entities: - type: Transform pos: 76.5,1.5 parent: 5350 + - uid: 27478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-24.5 + parent: 5350 - proto: PoweredlightSodium entities: - uid: 23878 @@ -125166,6 +127484,12 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 + - uid: 9029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-10.5 + parent: 5350 - uid: 9969 components: - type: Transform @@ -125304,13 +127628,18 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11286 + - uid: 10970 components: - type: Transform - pos: 65.5,-24.5 + rot: -1.5707963267948966 rad + pos: 69.5,-6.5 + parent: 5350 + - uid: 11303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-14.5 parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 11503 components: - type: Transform @@ -125359,38 +127688,12 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11569 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-19.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11570 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-15.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11571 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-11.5 - parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 11572 + - uid: 11618 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,-7.5 + pos: 69.5,-18.5 parent: 5350 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 12024 components: - type: Transform @@ -126458,6 +128761,35 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 + - uid: 26986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-27.5 + parent: 5350 + - uid: 27125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 66.5,-42.5 + parent: 5350 + - uid: 27126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-42.5 + parent: 5350 + - uid: 27153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 76.5,-41.5 + parent: 5350 + - uid: 27249 + components: + - type: Transform + pos: 69.5,-23.5 + parent: 5350 - proto: Protolathe entities: - uid: 9805 @@ -127161,6 +129493,12 @@ entities: - type: Transform pos: -64.48487,-42.241108 parent: 5350 + - uid: 27103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,-31 + parent: 5350 - proto: Railing entities: - uid: 2182 @@ -127298,6 +129636,48 @@ entities: - type: Transform pos: -5.5,-74.5 parent: 5350 + - uid: 26987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 67.5,-31.5 + parent: 5350 + - uid: 26988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,-32.5 + parent: 5350 + - uid: 26989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-32.5 + parent: 5350 + - uid: 26990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-32.5 + parent: 5350 + - uid: 26991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 71.5,-32.5 + parent: 5350 + - uid: 26992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,-32.5 + parent: 5350 + - uid: 27007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.5,-32.5 + parent: 5350 - proto: RailingCorner entities: - uid: 11026 @@ -127353,6 +129733,23 @@ entities: rot: 1.5707963267948966 rad pos: -66.5,-39.5 parent: 5350 + - uid: 26993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 67.5,-32.5 + parent: 5350 + - uid: 27006 + components: + - type: Transform + pos: 74.5,-32.5 + parent: 5350 + - uid: 27012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,-30.5 + parent: 5350 - proto: RandomArcade entities: - uid: 13625 @@ -128271,6 +130668,12 @@ entities: - type: Transform pos: 43.631737,8.657005 parent: 5350 + - uid: 27062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.35516,-31.5 + parent: 5350 - proto: ReagentContainerFlour entities: - uid: 2240 @@ -128300,6 +130703,21 @@ entities: parent: 5350 - proto: ReinforcedPlasmaWindow entities: + - uid: 10943 + components: + - type: Transform + pos: 66.5,-17.5 + parent: 5350 + - uid: 11112 + components: + - type: Transform + pos: 66.5,-10.5 + parent: 5350 + - uid: 11113 + components: + - type: Transform + pos: 66.5,-9.5 + parent: 5350 - uid: 11288 components: - type: Transform @@ -128345,65 +130763,70 @@ entities: - type: Transform pos: 61.5,-27.5 parent: 5350 - - uid: 11297 + - uid: 11298 components: - type: Transform - pos: 66.5,-20.5 + pos: 66.5,-11.5 parent: 5350 - - uid: 11298 + - uid: 11312 + components: + - type: Transform + pos: 66.5,-5.5 + parent: 5350 + - uid: 11319 components: - type: Transform pos: 66.5,-19.5 parent: 5350 - - uid: 11299 + - uid: 11320 components: - type: Transform pos: 66.5,-18.5 parent: 5350 - - uid: 11300 + - uid: 11569 components: - type: Transform - pos: 66.5,-16.5 + pos: 66.5,-6.5 parent: 5350 - - uid: 11301 + - uid: 11634 components: - type: Transform - pos: 66.5,-15.5 + pos: 66.5,-7.5 parent: 5350 - - uid: 11302 + - uid: 11726 components: - type: Transform - pos: 66.5,-14.5 + pos: 66.5,-13.5 parent: 5350 - - uid: 11303 + - uid: 11727 components: - type: Transform - pos: 66.5,-12.5 + pos: 66.5,-14.5 parent: 5350 - - uid: 11304 + - uid: 11729 components: - type: Transform - pos: 66.5,-11.5 + pos: 66.5,-15.5 parent: 5350 - - uid: 11305 + - uid: 27131 components: - type: Transform - pos: 66.5,-10.5 + pos: 66.5,-39.5 parent: 5350 - - uid: 11306 + - uid: 27132 components: - type: Transform - pos: 66.5,-8.5 + pos: 67.5,-39.5 parent: 5350 - - uid: 11307 + - uid: 27133 components: - type: Transform - pos: 66.5,-7.5 + pos: 68.5,-39.5 parent: 5350 - - uid: 11308 + - uid: 27134 components: - type: Transform - pos: 66.5,-6.5 + pos: 69.5,-39.5 parent: 5350 - proto: ReinforcedWindow entities: @@ -130699,140 +133122,135 @@ entities: - type: Transform pos: 1.5,46.5 parent: 5350 - - uid: 10815 - components: - - type: Transform - pos: 64.5,-6.5 - parent: 5350 - - uid: 10816 + - uid: 10838 components: - type: Transform - pos: 64.5,-7.5 + pos: 64.5,-15.5 parent: 5350 - - uid: 10817 + - uid: 10839 components: - type: Transform - pos: 64.5,-8.5 + pos: 64.5,-9.5 parent: 5350 - - uid: 10818 + - uid: 10845 components: - type: Transform - pos: 64.5,-9.5 + pos: 59.5,-25.5 parent: 5350 - - uid: 10820 + - uid: 10846 components: - type: Transform - pos: 64.5,-10.5 + pos: 58.5,-25.5 parent: 5350 - - uid: 10821 + - uid: 10847 components: - type: Transform - pos: 64.5,-11.5 + pos: 57.5,-25.5 parent: 5350 - - uid: 10822 + - uid: 10848 components: - type: Transform - pos: 64.5,-12.5 + pos: 56.5,-25.5 parent: 5350 - - uid: 10823 + - uid: 10849 components: - type: Transform - pos: 64.5,-13.5 + pos: 55.5,-25.5 parent: 5350 - - uid: 10824 + - uid: 10850 components: - type: Transform - pos: 64.5,-14.5 + pos: 54.5,-25.5 parent: 5350 - - uid: 10825 + - uid: 10851 components: - type: Transform - pos: 64.5,-15.5 + pos: 53.5,-25.5 parent: 5350 - - uid: 10826 + - uid: 10852 components: - type: Transform - pos: 64.5,-16.5 + pos: 52.5,-25.5 parent: 5350 - - uid: 10827 + - uid: 10853 components: - type: Transform - pos: 64.5,-17.5 + pos: 51.5,-25.5 parent: 5350 - - uid: 10828 + - uid: 10854 components: - type: Transform - pos: 64.5,-18.5 + pos: 50.5,-25.5 parent: 5350 - - uid: 10829 + - uid: 11097 components: - type: Transform - pos: 64.5,-19.5 + pos: 64.5,-11.5 parent: 5350 - - uid: 10830 + - uid: 11098 components: - type: Transform - pos: 64.5,-20.5 + pos: 64.5,-10.5 parent: 5350 - - uid: 10843 + - uid: 11099 components: - type: Transform - pos: 61.5,-25.5 + pos: 64.5,-12.5 parent: 5350 - - uid: 10844 + - uid: 11100 components: - type: Transform - pos: 60.5,-25.5 + pos: 64.5,-13.5 parent: 5350 - - uid: 10845 + - uid: 11101 components: - type: Transform - pos: 59.5,-25.5 + pos: 64.5,-14.5 parent: 5350 - - uid: 10846 + - uid: 11102 components: - type: Transform - pos: 58.5,-25.5 + pos: 64.5,-16.5 parent: 5350 - - uid: 10847 + - uid: 11237 components: - type: Transform - pos: 57.5,-25.5 + pos: 64.5,-17.5 parent: 5350 - - uid: 10848 + - uid: 11239 components: - type: Transform - pos: 56.5,-25.5 + pos: 63.5,-25.5 parent: 5350 - - uid: 10849 + - uid: 11240 components: - type: Transform - pos: 55.5,-25.5 + pos: 64.5,-5.5 parent: 5350 - - uid: 10850 + - uid: 11265 components: - type: Transform - pos: 54.5,-25.5 + pos: 64.5,-19.5 parent: 5350 - - uid: 10851 + - uid: 11267 components: - type: Transform - pos: 53.5,-25.5 + pos: 61.5,-25.5 parent: 5350 - - uid: 10852 + - uid: 11284 components: - type: Transform - pos: 52.5,-25.5 + pos: 64.5,-7.5 parent: 5350 - - uid: 10853 + - uid: 11285 components: - type: Transform - pos: 51.5,-25.5 + pos: 64.5,-6.5 parent: 5350 - - uid: 10854 + - uid: 11286 components: - type: Transform - pos: 50.5,-25.5 + pos: 64.5,-8.5 parent: 5350 - uid: 11378 components: @@ -130844,6 +133262,21 @@ entities: - type: Transform pos: 43.5,-29.5 parent: 5350 + - uid: 11694 + components: + - type: Transform + pos: 64.5,-25.5 + parent: 5350 + - uid: 11734 + components: + - type: Transform + pos: 60.5,-25.5 + parent: 5350 + - uid: 11753 + components: + - type: Transform + pos: 70.5,-28.5 + parent: 5350 - uid: 12345 components: - type: Transform @@ -132044,11 +134477,66 @@ entities: - type: Transform pos: 104.5,10.5 parent: 5350 + - uid: 26789 + components: + - type: Transform + pos: 64.5,-21.5 + parent: 5350 - uid: 26871 components: - type: Transform pos: 32.5,-8.5 parent: 5350 + - uid: 27037 + components: + - type: Transform + pos: 74.5,-29.5 + parent: 5350 + - uid: 27038 + components: + - type: Transform + pos: 74.5,-30.5 + parent: 5350 + - uid: 27149 + components: + - type: Transform + pos: 72.5,-39.5 + parent: 5350 + - uid: 27150 + components: + - type: Transform + pos: 71.5,-39.5 + parent: 5350 + - uid: 27154 + components: + - type: Transform + pos: 73.5,-39.5 + parent: 5350 + - uid: 27155 + components: + - type: Transform + pos: 74.5,-39.5 + parent: 5350 + - uid: 27257 + components: + - type: Transform + pos: 65.5,-29.5 + parent: 5350 + - uid: 27258 + components: + - type: Transform + pos: 65.5,-30.5 + parent: 5350 + - uid: 27271 + components: + - type: Transform + pos: 66.5,-22.5 + parent: 5350 + - uid: 27272 + components: + - type: Transform + pos: 64.5,-18.5 + parent: 5350 - proto: RemoteSignaller entities: - uid: 1290 @@ -132467,6 +134955,11 @@ entities: - type: Transform pos: 108.52579,-0.4561236 parent: 5350 + - uid: 27047 + components: + - type: Transform + pos: 70.58096,-31.5 + parent: 5350 - proto: SheetPlasma entities: - uid: 9204 @@ -132627,11 +135120,6 @@ entities: - type: Transform pos: 42.547264,-3.4866009 parent: 5350 - - uid: 11273 - components: - - type: Transform - pos: 71.51609,-32.499207 - parent: 5350 - uid: 12277 components: - type: Transform @@ -133533,25 +136021,26 @@ entities: - Pressed: Toggle 10483: - Pressed: Toggle - - uid: 12021 + - uid: 11640 components: - type: Transform - pos: 45.5,-29.5 + rot: -1.5707963267948966 rad + pos: 64.5,-4.5 parent: 5350 - type: DeviceLinkSource linkedPorts: - 11487: + 11015: - Pressed: Toggle - 11486: - - Pressed: Toggle - - uid: 12022 + - uid: 12021 components: - type: Transform - pos: 64.5,-5.5 + pos: 45.5,-29.5 parent: 5350 - type: DeviceLinkSource linkedPorts: - 10293: + 11487: + - Pressed: Toggle + 11486: - Pressed: Toggle - uid: 15183 components: @@ -134492,6 +136981,11 @@ entities: parent: 5350 - proto: SignEngine entities: + - uid: 11741 + components: + - type: Transform + pos: 65.5,-22.5 + parent: 5350 - uid: 23813 components: - type: Transform @@ -134565,6 +137059,23 @@ entities: - type: Transform pos: 45.5,-35.5 parent: 5350 + - uid: 27262 + components: + - type: Transform + pos: 65.5,-39.5 + parent: 5350 +- proto: SignFlammableMed + entities: + - uid: 27094 + components: + - type: Transform + pos: 75.5,-31.5 + parent: 5350 + - uid: 27198 + components: + - type: Transform + pos: 77.5,-36.5 + parent: 5350 - proto: SignGravity entities: - uid: 14539 @@ -135038,6 +137549,11 @@ entities: - type: Transform pos: -0.5,-48.5 parent: 5350 + - uid: 27093 + components: + - type: Transform + pos: 65.5,-27.5 + parent: 5350 - proto: SignSpace entities: - uid: 5419 @@ -135075,15 +137591,15 @@ entities: - type: Transform pos: -43.5,17.5 parent: 5350 - - uid: 11287 + - uid: 11490 components: - type: Transform - pos: 65.5,-25.5 + pos: 47.5,-33.5 parent: 5350 - - uid: 11490 + - uid: 11755 components: - type: Transform - pos: 47.5,-33.5 + pos: 70.5,-22.5 parent: 5350 - uid: 18937 components: @@ -135140,6 +137656,11 @@ entities: - type: Transform pos: 92.5,6.5 parent: 5350 + - uid: 27263 + components: + - type: Transform + pos: 75.5,-40.5 + parent: 5350 - proto: SignSurgery entities: - uid: 15191 @@ -135530,6 +138051,13 @@ entities: - type: Transform pos: 55.5,30.5 parent: 5350 + - uid: 27014 + components: + - type: MetaData + name: TEG SMES + - type: Transform + pos: 70.5,-26.5 + parent: 5350 - proto: SmokingPipeFilledCannabis entities: - uid: 24641 @@ -138355,15 +140883,15 @@ entities: parent: 5350 - proto: StorageCanister entities: - - uid: 11515 + - uid: 10293 components: - type: Transform - pos: 45.5,-26.5 + pos: 69.5,-10.5 parent: 5350 - - uid: 11627 + - uid: 11515 components: - type: Transform - pos: 69.5,-11.5 + pos: 45.5,-26.5 parent: 5350 - uid: 11819 components: @@ -138583,6 +141111,13 @@ entities: - type: Transform pos: 104.5,13.5 parent: 5350 + - uid: 27141 + components: + - type: MetaData + name: TEG Substation + - type: Transform + pos: 70.5,-25.5 + parent: 5350 - proto: SuitStorageCaptain entities: - uid: 1505 @@ -139134,6 +141669,18 @@ entities: id: Tech Vault High Sec - proto: SurveillanceCameraEngineering entities: + - uid: 9027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-10.5 + parent: 5350 + - uid: 11055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-14.5 + parent: 5350 - uid: 11516 components: - type: Transform @@ -139145,6 +141692,26 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Thruster + - uid: 11571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-6.5 + parent: 5350 + - uid: 11620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,-18.5 + parent: 5350 + - uid: 11751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 72.5,-22.5 + parent: 5350 + - type: SurveillanceCamera + id: Atmos TEG Exterior north - uid: 12527 components: - type: Transform @@ -139393,61 +141960,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Tank Nitro - - uid: 26785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-19.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Tank Co2 - - uid: 26786 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-15.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Tank Plasma - - uid: 26787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-11.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Tank Waste - - uid: 26788 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-7.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Tank Mixer - - uid: 26789 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-23.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmos Exterior - uid: 26792 components: - type: Transform @@ -139512,6 +142024,40 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Solars SW + - uid: 27139 + components: + - type: MetaData + name: camera + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-26.5 + parent: 5350 + - type: SurveillanceCamera + id: Atmos TEG Room Entrance + - uid: 27265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,-31.5 + parent: 5350 + - type: SurveillanceCamera + id: Atmos TEG Room Desk + - uid: 27267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 66.5,-38.5 + parent: 5350 + - type: SurveillanceCamera + id: Atmos TEG Room Chamber + - uid: 27269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,-42.5 + parent: 5350 + - type: SurveillanceCamera + id: Atmos TEG Exterior south - proto: SurveillanceCameraGeneral entities: - uid: 23189 @@ -142622,6 +145168,33 @@ entities: - type: Transform pos: 26.5,0.5 parent: 5350 + - uid: 27040 + components: + - type: Transform + pos: 73.5,-30.5 + parent: 5350 + - uid: 27041 + components: + - type: Transform + pos: 73.5,-31.5 + parent: 5350 + - uid: 27042 + components: + - type: Transform + pos: 72.5,-31.5 + parent: 5350 + - uid: 27044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 70.5,-31.5 + parent: 5350 + - uid: 27045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,-31.5 + parent: 5350 - proto: TableCarpet entities: - uid: 1022 @@ -144473,26 +147046,26 @@ entities: parent: 5350 - proto: TegCenter entities: - - uid: 11276 + - uid: 26997 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,-34.5 + pos: 70.5,-35.5 parent: 5350 - proto: TegCirculator entities: - - uid: 11277 + - uid: 26998 components: - type: Transform - pos: 70.5,-34.5 + rot: 3.141592653589793 rad + pos: 69.5,-35.5 parent: 5350 - type: PointLight color: '#FF3300FF' - - uid: 11280 + - uid: 26999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-34.5 + pos: 71.5,-35.5 parent: 5350 - type: PointLight color: '#FF3300FF' @@ -145302,6 +147875,12 @@ entities: - type: Transform pos: 52.498978,0.33205032 parent: 5350 + - uid: 27102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.38718,-31.5 + parent: 5350 - proto: TubaInstrument entities: - uid: 3197 @@ -145460,6 +148039,25 @@ entities: - Left: Forward - Right: Reverse - Middle: Off + - uid: 27274 + components: + - type: MetaData + desc: 'Opens and closes the blast doors of the combustion chamber. Left: one Door - Right: both Doors - Middle: closed.' + name: blast doors + - type: Transform + pos: 70.5,-38.5 + parent: 5350 + - type: TwoWayLever + nextSignalLeft: True + - type: DeviceLinkSource + linkedPorts: + 27136: + - Middle: Close + - Left: Open + - Right: Open + 27135: + - Middle: Close + - Left: Open - proto: UnfinishedMachineFrame entities: - uid: 18441 @@ -147889,6 +150487,16 @@ entities: - type: Transform pos: -57.5,-6.5 parent: 5350 + - uid: 5314 + components: + - type: Transform + pos: 66.5,-20.5 + parent: 5350 + - uid: 5315 + components: + - type: Transform + pos: 67.5,-20.5 + parent: 5350 - uid: 5328 components: - type: Transform @@ -149994,6 +152602,12 @@ entities: - type: Transform pos: 58.5,-3.5 parent: 5350 + - uid: 9069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-38.5 + parent: 5350 - uid: 9071 components: - type: Transform @@ -150527,67 +153141,35 @@ entities: - uid: 10814 components: - type: Transform - pos: 64.5,-5.5 - parent: 5350 - - uid: 10831 - components: - - type: Transform - pos: 64.5,-21.5 + pos: 66.5,-12.5 parent: 5350 - - uid: 10832 + - uid: 10818 components: - type: Transform - pos: 64.5,-22.5 + rot: -1.5707963267948966 rad + pos: 69.5,-8.5 parent: 5350 - uid: 10833 components: - type: Transform - pos: 64.5,-23.5 - parent: 5350 - - uid: 10834 - components: - - type: Transform - pos: 65.5,-23.5 - parent: 5350 - - uid: 10835 - components: - - type: Transform - pos: 66.5,-23.5 - parent: 5350 - - uid: 10836 - components: - - type: Transform - pos: 67.5,-23.5 + pos: 68.5,-28.5 parent: 5350 - uid: 10837 components: - type: Transform - pos: 67.5,-25.5 - parent: 5350 - - uid: 10838 - components: - - type: Transform - pos: 66.5,-25.5 - parent: 5350 - - uid: 10839 - components: - - type: Transform - pos: 65.5,-25.5 - parent: 5350 - - uid: 10840 - components: - - type: Transform - pos: 64.5,-25.5 + pos: 71.5,-25.5 parent: 5350 - uid: 10841 components: - type: Transform - pos: 63.5,-25.5 + rot: -1.5707963267948966 rad + pos: 62.5,-25.5 parent: 5350 - uid: 10842 components: - type: Transform - pos: 62.5,-25.5 + rot: -1.5707963267948966 rad + pos: 64.5,-20.5 parent: 5350 - uid: 10855 components: @@ -150814,195 +153396,201 @@ entities: - type: Transform pos: 58.5,-27.5 parent: 5350 - - uid: 10908 - components: - - type: Transform - pos: 66.5,-21.5 - parent: 5350 - - uid: 10909 + - uid: 10914 components: - type: Transform - pos: 67.5,-21.5 + pos: 70.5,-19.5 parent: 5350 - - uid: 10910 + - uid: 10915 components: - type: Transform - pos: 68.5,-21.5 + pos: 70.5,-18.5 parent: 5350 - - uid: 10911 + - uid: 10917 components: - type: Transform - pos: 69.5,-21.5 + pos: 70.5,-16.5 parent: 5350 - - uid: 10912 + - uid: 10918 components: - type: Transform - pos: 70.5,-21.5 + pos: 70.5,-15.5 parent: 5350 - - uid: 10913 + - uid: 10919 components: - type: Transform - pos: 70.5,-20.5 + pos: 70.5,-14.5 parent: 5350 - - uid: 10914 + - uid: 10921 components: - type: Transform - pos: 70.5,-19.5 + pos: 70.5,-12.5 parent: 5350 - - uid: 10915 + - uid: 10922 components: - type: Transform - pos: 70.5,-18.5 + pos: 70.5,-11.5 parent: 5350 - - uid: 10916 + - uid: 10923 components: - type: Transform - pos: 70.5,-17.5 + pos: 70.5,-10.5 parent: 5350 - - uid: 10917 + - uid: 10925 components: - type: Transform - pos: 70.5,-16.5 + pos: 70.5,-8.5 parent: 5350 - - uid: 10918 + - uid: 10927 components: - type: Transform - pos: 70.5,-15.5 + pos: 70.5,-6.5 parent: 5350 - - uid: 10919 + - uid: 10966 components: - type: Transform - pos: 70.5,-14.5 + pos: 70.5,-17.5 parent: 5350 - - uid: 10920 + - uid: 10969 components: - type: Transform - pos: 70.5,-13.5 + pos: 70.5,-20.5 parent: 5350 - - uid: 10921 + - uid: 10971 components: - type: Transform - pos: 70.5,-12.5 + pos: 69.5,-12.5 parent: 5350 - - uid: 10922 + - uid: 10989 components: - type: Transform - pos: 70.5,-11.5 + pos: 68.5,-12.5 parent: 5350 - - uid: 10923 + - uid: 11054 components: - type: Transform - pos: 70.5,-10.5 + rot: -1.5707963267948966 rad + pos: 67.5,-16.5 parent: 5350 - - uid: 10924 + - uid: 11163 components: - type: Transform - pos: 70.5,-9.5 + pos: 70.5,-13.5 parent: 5350 - - uid: 10925 + - uid: 11172 components: - type: Transform - pos: 70.5,-8.5 + rot: 1.5707963267948966 rad + pos: 67.5,-4.5 parent: 5350 - - uid: 10927 + - uid: 11173 components: - type: Transform - pos: 70.5,-6.5 + rot: -1.5707963267948966 rad + pos: 66.5,-8.5 parent: 5350 - - uid: 10928 + - uid: 11201 components: - type: Transform pos: 70.5,-5.5 parent: 5350 - - uid: 10929 - components: - - type: Transform - pos: 69.5,-5.5 - parent: 5350 - - uid: 10931 + - uid: 11202 components: - type: Transform - pos: 67.5,-5.5 + rot: -1.5707963267948966 rad + pos: 67.5,-8.5 parent: 5350 - - uid: 10932 + - uid: 11204 components: - type: Transform - pos: 66.5,-5.5 + rot: 1.5707963267948966 rad + pos: 69.5,-4.5 parent: 5350 - - uid: 10933 + - uid: 11262 components: - type: Transform - pos: 69.5,-9.5 + pos: 71.5,-28.5 parent: 5350 - - uid: 10934 + - uid: 11264 components: - type: Transform - pos: 68.5,-9.5 + pos: 69.5,-28.5 parent: 5350 - - uid: 10935 + - uid: 11268 components: - type: Transform - pos: 67.5,-9.5 + rot: -1.5707963267948966 rad + pos: 65.5,-28.5 parent: 5350 - - uid: 10936 + - uid: 11273 components: - type: Transform - pos: 66.5,-9.5 + rot: -1.5707963267948966 rad + pos: 65.5,-35.5 parent: 5350 - - uid: 10937 + - uid: 11275 components: - type: Transform - pos: 69.5,-13.5 + rot: -1.5707963267948966 rad + pos: 65.5,-36.5 parent: 5350 - - uid: 10938 + - uid: 11276 components: - type: Transform - pos: 68.5,-13.5 + pos: 64.5,-22.5 parent: 5350 - - uid: 10939 + - uid: 11277 components: - type: Transform - pos: 67.5,-13.5 + rot: -1.5707963267948966 rad + pos: 65.5,-27.5 parent: 5350 - - uid: 10940 + - uid: 11278 components: - type: Transform - pos: 66.5,-13.5 + rot: -1.5707963267948966 rad + pos: 65.5,-26.5 parent: 5350 - - uid: 10941 + - uid: 11283 components: - type: Transform - pos: 69.5,-17.5 + rot: -1.5707963267948966 rad + pos: 68.5,-22.5 parent: 5350 - - uid: 10942 + - uid: 11287 components: - type: Transform - pos: 68.5,-17.5 + pos: 68.5,-25.5 parent: 5350 - - uid: 10943 + - uid: 11299 components: - type: Transform - pos: 67.5,-17.5 + rot: 1.5707963267948966 rad + pos: 70.5,-4.5 parent: 5350 - - uid: 10944 + - uid: 11301 components: - type: Transform - pos: 66.5,-17.5 + rot: -1.5707963267948966 rad + pos: 66.5,-16.5 parent: 5350 - - uid: 11268 + - uid: 11305 components: - type: Transform - pos: 70.5,-29.5 + rot: 1.5707963267948966 rad + pos: 66.5,-4.5 parent: 5350 - - uid: 11269 + - uid: 11342 components: - type: Transform - pos: 68.5,-29.5 + rot: -1.5707963267948966 rad + pos: 68.5,-16.5 parent: 5350 - - uid: 11270 + - uid: 11346 components: - type: Transform - pos: 67.5,-29.5 + rot: -1.5707963267948966 rad + pos: 69.5,-16.5 parent: 5350 - uid: 11370 components: @@ -151124,6 +153712,102 @@ entities: - type: Transform pos: 42.5,-29.5 parent: 5350 + - uid: 11498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-25.5 + parent: 5350 + - uid: 11596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 68.5,-8.5 + parent: 5350 + - uid: 11597 + components: + - type: Transform + pos: 67.5,-12.5 + parent: 5350 + - uid: 11603 + components: + - type: Transform + pos: 70.5,-9.5 + parent: 5350 + - uid: 11622 + components: + - type: Transform + pos: 69.5,-20.5 + parent: 5350 + - uid: 11627 + components: + - type: Transform + pos: 68.5,-20.5 + parent: 5350 + - uid: 11662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 71.5,-22.5 + parent: 5350 + - uid: 11697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,-22.5 + parent: 5350 + - uid: 11698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 69.5,-22.5 + parent: 5350 + - uid: 11699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-22.5 + parent: 5350 + - uid: 11735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-37.5 + parent: 5350 + - uid: 11740 + components: + - type: Transform + pos: 68.5,-27.5 + parent: 5350 + - uid: 11750 + components: + - type: Transform + pos: 71.5,-26.5 + parent: 5350 + - uid: 11757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-34.5 + parent: 5350 + - uid: 11764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-33.5 + parent: 5350 + - uid: 11784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-32.5 + parent: 5350 + - uid: 11785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 65.5,-31.5 + parent: 5350 - uid: 12127 components: - type: Transform @@ -155642,6 +158326,371 @@ entities: - type: Transform pos: -15.5,61.5 parent: 5350 + - uid: 27003 + components: + - type: Transform + pos: 72.5,-28.5 + parent: 5350 + - uid: 27004 + components: + - type: Transform + pos: 73.5,-28.5 + parent: 5350 + - uid: 27005 + components: + - type: Transform + pos: 74.5,-28.5 + parent: 5350 + - uid: 27008 + components: + - type: Transform + pos: 74.5,-31.5 + parent: 5350 + - uid: 27009 + components: + - type: Transform + pos: 75.5,-31.5 + parent: 5350 + - uid: 27010 + components: + - type: Transform + pos: 76.5,-31.5 + parent: 5350 + - uid: 27011 + components: + - type: Transform + pos: 77.5,-31.5 + parent: 5350 + - uid: 27022 + components: + - type: Transform + pos: 77.5,-42.5 + parent: 5350 + - uid: 27023 + components: + - type: Transform + pos: 77.5,-40.5 + parent: 5350 + - uid: 27052 + components: + - type: Transform + pos: 65.5,-39.5 + parent: 5350 + - uid: 27053 + components: + - type: Transform + pos: 65.5,-40.5 + parent: 5350 + - uid: 27054 + components: + - type: Transform + pos: 77.5,-39.5 + parent: 5350 + - uid: 27055 + components: + - type: Transform + pos: 77.5,-38.5 + parent: 5350 + - uid: 27056 + components: + - type: Transform + pos: 77.5,-37.5 + parent: 5350 + - uid: 27057 + components: + - type: Transform + pos: 77.5,-32.5 + parent: 5350 + - uid: 27058 + components: + - type: Transform + pos: 77.5,-34.5 + parent: 5350 + - uid: 27059 + components: + - type: Transform + pos: 77.5,-33.5 + parent: 5350 + - uid: 27060 + components: + - type: Transform + pos: 77.5,-35.5 + parent: 5350 + - uid: 27061 + components: + - type: Transform + pos: 77.5,-36.5 + parent: 5350 + - uid: 27065 + components: + - type: Transform + pos: 65.5,-41.5 + parent: 5350 + - uid: 27066 + components: + - type: Transform + pos: 65.5,-42.5 + parent: 5350 + - uid: 27067 + components: + - type: Transform + pos: 65.5,-43.5 + parent: 5350 + - uid: 27068 + components: + - type: Transform + pos: 66.5,-43.5 + parent: 5350 + - uid: 27072 + components: + - type: Transform + pos: 69.5,-43.5 + parent: 5350 + - uid: 27075 + components: + - type: Transform + pos: 70.5,-43.5 + parent: 5350 + - uid: 27076 + components: + - type: Transform + pos: 77.5,-41.5 + parent: 5350 + - uid: 27119 + components: + - type: Transform + pos: 70.5,-39.5 + parent: 5350 + - uid: 27120 + components: + - type: Transform + pos: 70.5,-40.5 + parent: 5350 + - uid: 27121 + components: + - type: Transform + pos: 70.5,-41.5 + parent: 5350 + - uid: 27122 + components: + - type: Transform + pos: 70.5,-42.5 + parent: 5350 + - uid: 27124 + components: + - type: Transform + pos: 76.5,-42.5 + parent: 5350 + - uid: 27140 + components: + - type: Transform + pos: 75.5,-42.5 + parent: 5350 + - uid: 27148 + components: + - type: Transform + pos: 75.5,-40.5 + parent: 5350 + - uid: 27152 + components: + - type: Transform + pos: 75.5,-39.5 + parent: 5350 + - uid: 27199 + components: + - type: Transform + pos: 71.5,-27.5 + parent: 5350 + - uid: 27200 + components: + - type: Transform + pos: 68.5,-24.5 + parent: 5350 + - uid: 27246 + components: + - type: Transform + pos: 70.5,-24.5 + parent: 5350 + - uid: 27247 + components: + - type: Transform + pos: 69.5,-24.5 + parent: 5350 + - uid: 27250 + components: + - type: Transform + pos: 71.5,-24.5 + parent: 5350 + - uid: 27270 + components: + - type: Transform + pos: 67.5,-22.5 + parent: 5350 + - uid: 27435 + components: + - type: Transform + pos: 79.5,-29.5 + parent: 5350 + - uid: 27436 + components: + - type: Transform + pos: 79.5,-30.5 + parent: 5350 + - uid: 27437 + components: + - type: Transform + pos: 79.5,-31.5 + parent: 5350 + - uid: 27438 + components: + - type: Transform + pos: 79.5,-32.5 + parent: 5350 + - uid: 27439 + components: + - type: Transform + pos: 79.5,-34.5 + parent: 5350 + - uid: 27440 + components: + - type: Transform + pos: 79.5,-35.5 + parent: 5350 + - uid: 27442 + components: + - type: Transform + pos: 79.5,-37.5 + parent: 5350 + - uid: 27443 + components: + - type: Transform + pos: 79.5,-38.5 + parent: 5350 + - uid: 27444 + components: + - type: Transform + pos: 79.5,-40.5 + parent: 5350 + - uid: 27445 + components: + - type: Transform + pos: 79.5,-41.5 + parent: 5350 + - uid: 27446 + components: + - type: Transform + pos: 79.5,-42.5 + parent: 5350 + - uid: 27447 + components: + - type: Transform + pos: 79.5,-43.5 + parent: 5350 + - uid: 27448 + components: + - type: Transform + pos: 79.5,-45.5 + parent: 5350 + - uid: 27449 + components: + - type: Transform + pos: 79.5,-46.5 + parent: 5350 + - uid: 27450 + components: + - type: Transform + pos: 77.5,-46.5 + parent: 5350 + - uid: 27451 + components: + - type: Transform + pos: 76.5,-46.5 + parent: 5350 + - uid: 27452 + components: + - type: Transform + pos: 74.5,-46.5 + parent: 5350 + - uid: 27453 + components: + - type: Transform + pos: 72.5,-46.5 + parent: 5350 + - uid: 27454 + components: + - type: Transform + pos: 73.5,-46.5 + parent: 5350 + - uid: 27455 + components: + - type: Transform + pos: 71.5,-46.5 + parent: 5350 + - uid: 27456 + components: + - type: Transform + pos: 69.5,-46.5 + parent: 5350 + - uid: 27457 + components: + - type: Transform + pos: 68.5,-46.5 + parent: 5350 + - uid: 27458 + components: + - type: Transform + pos: 66.5,-46.5 + parent: 5350 + - uid: 27459 + components: + - type: Transform + pos: 65.5,-46.5 + parent: 5350 + - uid: 27461 + components: + - type: Transform + pos: 63.5,-46.5 + parent: 5350 + - uid: 27462 + components: + - type: Transform + pos: 63.5,-45.5 + parent: 5350 + - uid: 27463 + components: + - type: Transform + pos: 63.5,-44.5 + parent: 5350 + - uid: 27464 + components: + - type: Transform + pos: 63.5,-42.5 + parent: 5350 + - uid: 27465 + components: + - type: Transform + pos: 63.5,-41.5 + parent: 5350 + - uid: 27466 + components: + - type: Transform + pos: 63.5,-40.5 + parent: 5350 + - uid: 27467 + components: + - type: Transform + pos: 63.5,-38.5 + parent: 5350 + - uid: 27468 + components: + - type: Transform + pos: 63.5,-37.5 + parent: 5350 + - uid: 27469 + components: + - type: Transform + pos: 63.5,-36.5 + parent: 5350 - proto: WallSolid entities: - uid: 57 @@ -163506,10 +166555,11 @@ entities: parent: 5350 - proto: WarningCO2 entities: - - uid: 11640 + - uid: 11151 components: - type: Transform - pos: 66.5,-17.5 + rot: -1.5707963267948966 rad + pos: 66.5,-16.5 parent: 5350 - proto: WarningN2 entities: @@ -163527,22 +166577,23 @@ entities: parent: 5350 - proto: WarningPlasma entities: - - uid: 11641 + - uid: 11114 components: - type: Transform - pos: 66.5,-13.5 + pos: 66.5,-12.5 parent: 5350 - proto: WarningWaste entities: - - uid: 11642 + - uid: 11137 components: - type: Transform - pos: 66.5,-9.5 + pos: 66.5,-4.5 parent: 5350 - - uid: 11643 + - uid: 11641 components: - type: Transform - pos: 66.5,-5.5 + rot: -1.5707963267948966 rad + pos: 66.5,-8.5 parent: 5350 - proto: WaterCooler entities: @@ -163899,6 +166950,12 @@ entities: - type: Transform pos: -31.37716,-26.50117 parent: 5350 + - uid: 27050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.77701,-31.5 + parent: 5350 - proto: WelderMini entities: - uid: 3636 @@ -163998,6 +167055,11 @@ entities: - type: Transform pos: 45.5,33.5 parent: 5350 + - uid: 27086 + components: + - type: Transform + pos: 76.5,-32.5 + parent: 5350 - proto: WetFloorSign entities: - uid: 12844 @@ -164082,18 +167144,6 @@ entities: - type: Transform pos: -3.5,35.5 parent: 5350 - - uid: 11282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-24.5 - parent: 5350 - - uid: 11283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-24.5 - parent: 5350 - uid: 13571 components: - type: Transform @@ -165688,104 +168738,6 @@ entities: - type: Transform pos: 45.5,0.5 parent: 5350 - - uid: 11251 - components: - - type: Transform - pos: 68.5,-23.5 - parent: 5350 - - uid: 11252 - components: - - type: Transform - pos: 69.5,-23.5 - parent: 5350 - - uid: 11253 - components: - - type: Transform - pos: 70.5,-23.5 - parent: 5350 - - uid: 11254 - components: - - type: Transform - pos: 71.5,-23.5 - parent: 5350 - - uid: 11255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-25.5 - parent: 5350 - - uid: 11256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-25.5 - parent: 5350 - - uid: 11257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-25.5 - parent: 5350 - - uid: 11258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-25.5 - parent: 5350 - - uid: 11259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-26.5 - parent: 5350 - - uid: 11260 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-26.5 - parent: 5350 - - uid: 11261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-25.5 - parent: 5350 - - uid: 11262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-27.5 - parent: 5350 - - uid: 11263 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-27.5 - parent: 5350 - - uid: 11264 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-28.5 - parent: 5350 - - uid: 11265 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-27.5 - parent: 5350 - - uid: 11266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-27.5 - parent: 5350 - - uid: 11267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-28.5 - parent: 5350 - uid: 11512 components: - type: Transform @@ -169133,4 +172085,9 @@ entities: - type: Transform pos: 59.615005,1.5566483 parent: 5350 + - uid: 27117 + components: + - type: Transform + pos: 69.87581,-31.5 + parent: 5350 ... From 530a741b7bfbc151bf94b45401085208dc037b76 Mon Sep 17 00:00:00 2001 From: Repo <47093363+Titian3@users.noreply.github.com> Date: Fri, 15 Nov 2024 15:54:20 +1300 Subject: [PATCH 082/171] Rule amendment - Remove role abandonment aHelp requirement. (#33287) * Role abandonment aHelp requirement. * disable roundstart chat message --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml | 1 - Resources/Prototypes/Roles/Jobs/Command/captain.yml | 1 - Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml | 1 - Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml | 1 - .../Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml | 1 - Resources/Prototypes/Roles/Jobs/Science/research_director.yml | 1 - Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml | 1 - Resources/Prototypes/Roles/Jobs/Security/warden.yml | 1 - .../ServerRules/RoleplayRules/RuleR12RoleAbandonment.xml | 2 +- 9 files changed, 1 insertion(+), 9 deletions(-) diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index ee1c2c59498..740afded646 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -18,7 +18,6 @@ weight: 10 startingGear: QuartermasterGear icon: "JobIconQuarterMaster" - requireAdminNotify: true supervisors: job-supervisors-captain canBeAntag: false access: diff --git a/Resources/Prototypes/Roles/Jobs/Command/captain.yml b/Resources/Prototypes/Roles/Jobs/Command/captain.yml index 79634aa5d9f..a22d334c941 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/captain.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/captain.yml @@ -19,7 +19,6 @@ weight: 20 startingGear: CaptainGear icon: "JobIconCaptain" - requireAdminNotify: true joinNotifyCrew: true supervisors: job-supervisors-centcom canBeAntag: false diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index d5521f767f1..f457cfbc496 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -19,7 +19,6 @@ weight: 20 startingGear: HoPGear icon: "JobIconHeadOfPersonnel" - requireAdminNotify: true supervisors: job-supervisors-captain canBeAntag: false access: diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml index 0ee0b6736ca..9bac538551f 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml @@ -18,7 +18,6 @@ weight: 10 startingGear: ChiefEngineerGear icon: "JobIconChiefEngineer" - requireAdminNotify: true supervisors: job-supervisors-captain canBeAntag: false access: diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml index 25871134155..83b16d427bd 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml @@ -20,7 +20,6 @@ weight: 10 startingGear: CMOGear icon: "JobIconChiefMedicalOfficer" - requireAdminNotify: true supervisors: job-supervisors-captain canBeAntag: false access: diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml index b54ba54b1a4..7d6db3e0bec 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml @@ -12,7 +12,6 @@ weight: 10 startingGear: ResearchDirectorGear icon: "JobIconResearchDirector" - requireAdminNotify: true supervisors: job-supervisors-captain canBeAntag: false access: diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index 044df7f69e2..e22eccb7dad 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -18,7 +18,6 @@ weight: 10 startingGear: HoSGear icon: "JobIconHeadOfSecurity" - requireAdminNotify: true supervisors: job-supervisors-captain canBeAntag: false access: diff --git a/Resources/Prototypes/Roles/Jobs/Security/warden.yml b/Resources/Prototypes/Roles/Jobs/Security/warden.yml index 7ec820d27b8..6d79d748049 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/warden.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/warden.yml @@ -9,7 +9,6 @@ time: 36000 #10 hrs startingGear: WardenGear icon: "JobIconWarden" - requireAdminNotify: true supervisors: job-supervisors-hos canBeAntag: false access: diff --git a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR12RoleAbandonment.xml b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR12RoleAbandonment.xml index 3821816128f..1ddf73cc772 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR12RoleAbandonment.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/RoleplayRules/RuleR12RoleAbandonment.xml @@ -2,7 +2,7 @@ # Roleplay Rule 12 - Do not abandon your role Do not join the round as a role that you don't intend to play. Do not enable antagonist roles that you don't intend to play. Abandoning a role includes not completing tasks that the role is expected to do, in addition to things like leaving the game. Members of command should almost all stay on the station until the emergency shuttle arrives. Enforcement of this rule is more strict for command and antagonist roles, and less strict for less important roles like passengers. - Violations of this rule typically result in temporary or indefinite role bans. We understand that you may need to leave round early or unexpectedly. If you are in an important role (which is relayed to you in chat upon receiving your role), you should notify command members or an admin via ahelp so that they know you are leaving. Space Station 14 is a game. Do not endanger the safety of yourself or others, and do not neglect important things to avoid leaving a round early, even if you have to leave immediately without notifying anyone. Role bans for disconnecting are typically only applied if there is a pattern, and are almost always temporary. + Violations of this rule typically result in temporary or indefinite role bans. We understand that you may need to leave round early or unexpectedly. If you are in an important role (which is relayed to you in chat upon receiving your role), you should notify command members so that they know you are leaving and attempt to cryosleep if possible. Space Station 14 is a game. Do not endanger the safety of yourself or others, and do not neglect important things to avoid leaving a round early, even if you have to leave immediately without notifying anyone. Role bans for disconnecting are typically only applied if there is a pattern, and are almost always temporary. "Antag rolling" refers to a player abandoning their role if they do not get an antagonist role. From 30d537907ecb6c1c060a80104a44fd00e6e77fe4 Mon Sep 17 00:00:00 2001 From: Meguneri <163569304+Meguneri@users.noreply.github.com> Date: Fri, 15 Nov 2024 06:15:45 +0300 Subject: [PATCH 083/171] [Maps] Maus minor tweak (#2774) --- Resources/Maps/corvax_maus.yml | 184 ++++++++++++++++++--------------- 1 file changed, 102 insertions(+), 82 deletions(-) diff --git a/Resources/Maps/corvax_maus.yml b/Resources/Maps/corvax_maus.yml index 7f051586a19..09132f79b19 100644 --- a/Resources/Maps/corvax_maus.yml +++ b/Resources/Maps/corvax_maus.yml @@ -453,12 +453,27 @@ entities: chunkCollection: version: 2 nodes: + - node: + zIndex: 10 + angle: 3.141592653589793 rad + color: '#DE3A3AFF' + id: Arrows + decals: + 5882: -107,-57 + 5883: -107,-57 + 5884: -107,-57 - node: color: '#FFFFFFFF' id: Arrows decals: 207: -19,-26 210: -14,-26 + - node: + zIndex: 10 + color: '#FFFFFFFF' + id: Arrows + decals: + 5881: -107,-59 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -9784,7 +9799,8 @@ entities: -3,-1: 0: 36044 -2,0: - 0: 65520 + 0: 65456 + 3: 64 -2,1: 0: 24560 -2,2: @@ -10089,14 +10105,13 @@ entities: 0: 2 -19,0: 0: 7 - 3: 1792 + 4: 1792 -19,1: - 4: 7 + 5: 7 2: 1792 -19,2: - 2: 7 - 5: 256 - 0: 1536 + 2: 1031 + 6: 768 -19,3: 2: 7 0: 4096 @@ -10818,9 +10833,9 @@ entities: 0: 65535 -10,-9: 0: 47 - 6: 60928 + 7: 60928 -10,-8: - 6: 3276 + 7: 3276 0: 4368 -9,-8: 0: 1638 @@ -11291,6 +11306,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 - volume: 2500 temperature: 293.15 moles: @@ -14223,12 +14253,6 @@ entities: parent: 5934 - type: InstantAction container: 5934 - - uid: 8361 - components: - - type: Transform - parent: 7387 - - type: InstantAction - container: 7387 - uid: 18252 components: - type: Transform @@ -19853,6 +19877,11 @@ entities: - type: Transform pos: -61.5,24.5 parent: 2 + - uid: 19221 + components: + - type: Transform + pos: -73.5,10.5 + parent: 2 - uid: 19900 components: - type: Transform @@ -20076,6 +20105,11 @@ entities: - type: Transform pos: -75.5,10.5 parent: 2 + - uid: 10254 + components: + - type: Transform + pos: -74.5,10.5 + parent: 2 - proto: Autolathe entities: - uid: 594 @@ -34168,6 +34202,12 @@ entities: rot: 1.5707963267948966 rad pos: -14.462952,2.6248531 parent: 17265 + - uid: 19225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.017067,-90.84752 + parent: 2 - proto: CableApcStack10 entities: - uid: 6305 @@ -44911,7 +44951,7 @@ entities: - uid: 4755 components: - type: Transform - pos: -3.267089,2.9951859 + pos: -3.429844,1.4731994 parent: 2 - uid: 13766 components: @@ -52139,6 +52179,13 @@ entities: - type: Transform pos: -40.331936,-71.47984 parent: 2 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 19223 + components: + - type: Transform + pos: -13.712228,-6.266108 + parent: 2 - proto: ClothingHeadHelmetCult entities: - uid: 7438 @@ -52155,29 +52202,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingHeadHelmetHardsuitWarden +- proto: ClothingHeadHelmetRiot entities: - - uid: 7387 + - uid: 19222 components: - - type: MetaData - name: красный бронешлем - type: Transform - pos: -13.765395,-6.5724363 + pos: -13.286184,-6.256197 parent: 2 - - type: HandheldLight - toggleActionEntity: 8361 - - type: Item - heldPrefix: off - inhandVisuals: {} - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 8361 - missingComponents: - - BreathMask - - TemperatureProtection - proto: ClothingHeadHelmetSyndicate entities: - uid: 5941 @@ -52762,42 +52793,20 @@ entities: - type: Transform pos: -7.0623865,-13.339912 parent: 2 -- proto: ClothingOuterArmorHeavyRed +- proto: ClothingOuterArmorBulletproof entities: - uid: 6725 components: - type: Transform - pos: -13.289016,-6.5054703 + pos: -13.672596,-6.6328077 + parent: 2 +- proto: ClothingOuterArmorRiot + entities: + - uid: 7387 + components: + - type: Transform + pos: -13.256461,-6.6328077 parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: Понижает вашу скорость на [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]80%[/color]. - - - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]80%[/color]. - - - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]80%[/color]. - - - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]50%[/color]. - - - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]100%[/color]. - - - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]25%[/color]. - priority: 0 - component: Armor - title: null - proto: ClothingOuterCardborg entities: - uid: 5978 @@ -90965,8 +90974,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -92335,7 +92344,7 @@ entities: components: - type: Transform rot: 0.7853981633974483 rad - pos: -13.880681,-1.2029867 + pos: -13.880681,-1.2529867 parent: 2 - uid: 11437 components: @@ -95470,21 +95479,16 @@ entities: parent: 2 - proto: PlasmaCanister entities: - - uid: 10253 + - uid: 8361 components: - type: Transform - pos: -66.5,-12.5 + pos: -74.5,10.5 parent: 2 - - uid: 10254 + - uid: 10253 components: - type: Transform - pos: -74.5,10.5 + pos: -66.5,-12.5 parent: 2 - - type: GasCanister - releaseValve: True - releasePressure: 100 - - type: Lock - locked: False - uid: 10255 components: - type: Transform @@ -110136,11 +110140,6 @@ entities: - type: Transform pos: -14.5,-37.5 parent: 2 - - uid: 12039 - components: - - type: Transform - pos: -20.5,13.5 - parent: 2 - proto: SpawnPointDetective entities: - uid: 11354 @@ -111481,6 +111480,13 @@ entities: - 0 - 0 - 0 +- proto: SuperSynthesizerInstrument + entities: + - uid: 19224 + components: + - type: Transform + pos: -34.44334,-29.653538 + parent: 2 - proto: SurveillanceCameraAssembly entities: - uid: 18967 @@ -115117,6 +115123,13 @@ entities: - type: Transform pos: -51.438374,2.4718113 parent: 2 +- proto: ToyFigurineParamedic + entities: + - uid: 12039 + components: + - type: Transform + pos: -65.646835,-27.512451 + parent: 2 - proto: ToyFigurineQuartermaster entities: - uid: 12559 @@ -115145,6 +115158,13 @@ entities: - type: Transform pos: -9.447259,-43.298065 parent: 2 +- proto: ToyFigurineWarden + entities: + - uid: 19226 + components: + - type: Transform + pos: -19.48106,6.135928 + parent: 2 - proto: ToyFireRipley entities: - uid: 18321 From 7a120441f18b32ec2b14919f85d8f19f4ab53ed0 Mon Sep 17 00:00:00 2001 From: IanComradeBot <96892333+IanComradeBot@users.noreply.github.com> Date: Fri, 15 Nov 2024 03:18:25 +0000 Subject: [PATCH 084/171] Automatic changelog update --- Resources/Changelog/ChangelogSyndie.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Resources/Changelog/ChangelogSyndie.yml b/Resources/Changelog/ChangelogSyndie.yml index 3285b7e5c1a..dd653893f1d 100644 --- a/Resources/Changelog/ChangelogSyndie.yml +++ b/Resources/Changelog/ChangelogSyndie.yml @@ -1,14 +1,4 @@ Entries: -- author: Morty - changes: - - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0441\u043F\u0440\u0430\ - \u0439\u0442\u044B \u0441\u0438\u043D\u0433\u0443\u043B\u044F\u0440\u043D\u043E\ - \u0441\u0442\u0438 \u0430 \u0442\u0430\u043A \u0436\u0435 \u0441\u0432\u044F\ - \u0437\u0430\u043D\u043D\u044B\u0445 \u0441 \u043D\u0435\u0439 \u043E\u0431\u044A\ - \u0435\u043A\u0442\u043E\u0432" - type: Tweak - id: 197 - time: '2022-07-26T17:56:02.0000000+00:00' - author: lapatison changes: - message: "\u041F\u043E\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u0435\ @@ -4516,3 +4506,11 @@ id: 696 time: '2024-11-13T13:25:32.0000000+00:00' url: https://github.com/space-syndicate/space-station-14/pull/2768 +- author: Meguneri + changes: + - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0430 \u043A\u0430\u0440\ + \u0442\u0430 Maus." + type: Tweak + id: 697 + time: '2024-11-15T03:15:45.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2774 From dfda557d4b199d60436db2f3acfeef74877f05b8 Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Thu, 14 Nov 2024 19:24:27 -0800 Subject: [PATCH 085/171] Note expiry time is now relative instead of using timestamps (#33262) * Add the stuff * Loc fix * fixes * Change --- .../Administration/UI/Notes/NoteEdit.xaml | 1 + .../Administration/UI/Notes/NoteEdit.xaml.cs | 53 +++++++++++++++++-- .../en-US/administration/ui/admin-notes.ftl | 14 ++++- 3 files changed, 63 insertions(+), 5 deletions(-) diff --git a/Content.Client/Administration/UI/Notes/NoteEdit.xaml b/Content.Client/Administration/UI/Notes/NoteEdit.xaml index 506abac540c..72b2c55ce8d 100644 --- a/Content.Client/Administration/UI/Notes/NoteEdit.xaml +++ b/Content.Client/Administration/UI/Notes/NoteEdit.xaml @@ -8,6 +8,7 @@ -[RegisterComponent, NetworkedComponent, Access(typeof(Systems.BonkSystem))] +[RegisterComponent, NetworkedComponent] public sealed partial class BonkableComponent : Component { /// - /// Chance of bonk triggering if the user is clumsy. + /// How long to stun players on bonk, in seconds. /// - [DataField("bonkClumsyChance")] - public float BonkClumsyChance = 0.5f; + [DataField] + public TimeSpan BonkTime = TimeSpan.FromSeconds(2); /// - /// Sound to play when bonking. + /// How much damage to apply on bonk. /// - /// - [DataField("bonkSound")] - public SoundSpecifier? BonkSound; - - /// - /// How long to stun players on bonk, in seconds. - /// - /// - [DataField("bonkTime")] - public float BonkTime = 2; - - /// - /// How much damage to apply on bonk. - /// - /// - [DataField("bonkDamage")] + [DataField] public DamageSpecifier? BonkDamage; - - /// - /// How long it takes to bonk. - /// - [DataField("bonkDelay")] - public float BonkDelay = 1.5f; } diff --git a/Content.Shared/Climbing/Events/BeforeClimbEvents.cs b/Content.Shared/Climbing/Events/BeforeClimbEvents.cs new file mode 100644 index 00000000000..85c40f9427c --- /dev/null +++ b/Content.Shared/Climbing/Events/BeforeClimbEvents.cs @@ -0,0 +1,36 @@ +using Content.Shared.Inventory; +using Content.Shared.Climbing.Components; + +namespace Content.Shared.Climbing.Events; + +public abstract partial class BeforeClimbEvent : CancellableEntityEventArgs +{ + public readonly EntityUid GettingPutOnTable; + public readonly EntityUid PuttingOnTable; + public readonly Entity BeingClimbedOn; + + public BeforeClimbEvent(EntityUid gettingPutOntable, EntityUid puttingOnTable, Entity beingClimbedOn) + { + GettingPutOnTable = gettingPutOntable; + PuttingOnTable = puttingOnTable; + BeingClimbedOn = beingClimbedOn; + } +} + +/// +/// This event is raised on the the person either getting put on or going on the table. +/// The event is also called on their clothing as well. +/// +public sealed class SelfBeforeClimbEvent : BeforeClimbEvent, IInventoryRelayEvent +{ + public SlotFlags TargetSlots { get; } = SlotFlags.WITHOUT_POCKET; + public SelfBeforeClimbEvent(EntityUid gettingPutOntable, EntityUid puttingOnTable, Entity beingClimbedOn) : base(gettingPutOntable, puttingOnTable, beingClimbedOn) { } +} + +/// +/// This event is raised on the thing being climbed on. +/// +public sealed class TargetBeforeClimbEvent : BeforeClimbEvent +{ + public TargetBeforeClimbEvent(EntityUid gettingPutOntable, EntityUid puttingOnTable, Entity beingClimbedOn) : base(gettingPutOntable, puttingOnTable, beingClimbedOn) { } +} diff --git a/Content.Shared/Climbing/Systems/BonkSystem.cs b/Content.Shared/Climbing/Systems/BonkSystem.cs deleted file mode 100644 index f59fe925736..00000000000 --- a/Content.Shared/Climbing/Systems/BonkSystem.cs +++ /dev/null @@ -1,130 +0,0 @@ -using Content.Shared.CCVar; -using Content.Shared.Climbing.Components; -using Content.Shared.Climbing.Events; -using Content.Shared.Damage; -using Content.Shared.DoAfter; -using Content.Shared.DragDrop; -using Content.Shared.Hands.Components; -using Content.Shared.IdentityManagement; -using Content.Shared.Interaction; -using Content.Shared.Interaction.Components; -using Content.Shared.Popups; -using Content.Shared.Stunnable; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Configuration; -using Robust.Shared.Player; -using Robust.Shared.Serialization; - -namespace Content.Shared.Climbing.Systems; - -public sealed partial class BonkSystem : EntitySystem -{ - [Dependency] private readonly IConfigurationManager _cfg = default!; - [Dependency] private readonly DamageableSystem _damageableSystem = default!; - [Dependency] private readonly SharedInteractionSystem _interactionSystem = default!; - [Dependency] private readonly SharedStunSystem _stunSystem = default!; - [Dependency] private readonly SharedAudioSystem _audioSystem = default!; - [Dependency] private readonly SharedPopupSystem _popupSystem = default!; - [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; - - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnBonkDoAfter); - SubscribeLocalEvent(OnAttemptClimb); - } - - private void OnBonkDoAfter(EntityUid uid, BonkableComponent component, BonkDoAfterEvent args) - { - if (args.Handled || args.Cancelled || args.Args.Used == null) - return; - - TryBonk(args.Args.Used.Value, uid, component, source: args.Args.User); - - args.Handled = true; - } - - - public bool TryBonk(EntityUid user, EntityUid bonkableUid, BonkableComponent? bonkableComponent = null, EntityUid? source = null) - { - if (!Resolve(bonkableUid, ref bonkableComponent, false)) - return false; - - // BONK! - var userName = Identity.Entity(user, EntityManager); - var bonkableName = Identity.Entity(bonkableUid, EntityManager); - - if (user == source) - { - // Non-local, non-bonking players - var othersMessage = Loc.GetString("bonkable-success-message-others", ("user", userName), ("bonkable", bonkableName)); - // Local, bonking player - var selfMessage = Loc.GetString("bonkable-success-message-user", ("user", userName), ("bonkable", bonkableName)); - - _popupSystem.PopupPredicted(selfMessage, othersMessage, user, user); - } - else if (source != null) - { - // Local, non-bonking player (dragger) - _popupSystem.PopupClient(Loc.GetString("bonkable-success-message-others", ("user", userName), ("bonkable", bonkableName)), user, source.Value); - // Non-local, non-bonking players - _popupSystem.PopupEntity(Loc.GetString("bonkable-success-message-others", ("user", userName), ("bonkable", bonkableName)), user, Filter.Pvs(user).RemoveWhereAttachedEntity(e => e == user || e == source.Value), true); - // Non-local, bonking player - _popupSystem.PopupEntity(Loc.GetString("bonkable-success-message-user", ("user", userName), ("bonkable", bonkableName)), user, user); - } - - - - if (source != null) - _audioSystem.PlayPredicted(bonkableComponent.BonkSound, bonkableUid, source); - else - _audioSystem.PlayPvs(bonkableComponent.BonkSound, bonkableUid); - - _stunSystem.TryParalyze(user, TimeSpan.FromSeconds(bonkableComponent.BonkTime), true); - - if (bonkableComponent.BonkDamage is { } bonkDmg) - _damageableSystem.TryChangeDamage(user, bonkDmg, true, origin: user); - - return true; - - } - - private bool TryStartBonk(EntityUid uid, EntityUid user, EntityUid climber, BonkableComponent? bonkableComponent = null) - { - if (!Resolve(uid, ref bonkableComponent, false)) - return false; - - if (!HasComp(climber) || !HasComp(user)) - return false; - - if (!_cfg.GetCVar(CCVars.GameTableBonk)) - { - // Not set to always bonk, try clumsy roll. - if (!_interactionSystem.TryRollClumsy(climber, bonkableComponent.BonkClumsyChance)) - return false; - } - - var doAfterArgs = new DoAfterArgs(EntityManager, user, bonkableComponent.BonkDelay, new BonkDoAfterEvent(), uid, target: uid, used: climber) - { - BreakOnMove = true, - BreakOnDamage = true, - DuplicateCondition = DuplicateConditions.SameTool | DuplicateConditions.SameTarget - }; - - return _doAfter.TryStartDoAfter(doAfterArgs); - } - - private void OnAttemptClimb(EntityUid uid, BonkableComponent component, ref AttemptClimbEvent args) - { - if (args.Cancelled) - return; - - if (TryStartBonk(uid, args.User, args.Climber, component)) - args.Cancelled = true; - } - - [Serializable, NetSerializable] - private sealed partial class BonkDoAfterEvent : SimpleDoAfterEvent - { - } -} diff --git a/Content.Shared/Climbing/Systems/ClimbSystem.cs b/Content.Shared/Climbing/Systems/ClimbSystem.cs index da194706f8f..9bf481002a9 100644 --- a/Content.Shared/Climbing/Systems/ClimbSystem.cs +++ b/Content.Shared/Climbing/Systems/ClimbSystem.cs @@ -251,6 +251,18 @@ private void Climb(EntityUid uid, EntityUid user, EntityUid climbable, bool sile if (!Resolve(climbable, ref comp, false)) return; + var selfEvent = new SelfBeforeClimbEvent(uid, user, (climbable, comp)); + RaiseLocalEvent(uid, selfEvent); + + if (selfEvent.Cancelled) + return; + + var targetEvent = new TargetBeforeClimbEvent(uid, user, (climbable, comp)); + RaiseLocalEvent(climbable, targetEvent); + + if (targetEvent.Cancelled) + return; + if (!ReplaceFixtures(uid, climbing, fixtures)) return; diff --git a/Content.Shared/Clumsy/ClumsyComponent.cs b/Content.Shared/Clumsy/ClumsyComponent.cs new file mode 100644 index 00000000000..c71f5d0008a --- /dev/null +++ b/Content.Shared/Clumsy/ClumsyComponent.cs @@ -0,0 +1,61 @@ +using Content.Shared.Damage; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; + +namespace Content.Shared.Clumsy; + +/// +/// A simple clumsy tag-component. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class ClumsyComponent : Component +{ + + // Standard options. Try to fit these in if you can! + + /// + /// Sound to play when clumsy interactions fail. + /// + [DataField] + public SoundSpecifier ClumsySound = new SoundPathSpecifier("/Audio/Items/bikehorn.ogg"); + + /// + /// Default chance to fail a clumsy interaction. + /// If a system needs to use something else, add a new variable in the component, do not modify this percentage. + /// + [DataField, AutoNetworkedField] + public float ClumsyDefaultCheck = 0.5f; + + /// + /// Default stun time. + /// If a system needs to use something else, add a new variable in the component, do not modify this number. + /// + [DataField, AutoNetworkedField] + public TimeSpan ClumsyDefaultStunTime = TimeSpan.FromSeconds(2.5); + + // Specific options + + /// + /// Sound to play after hitting your head on a table. Ouch! + /// + [DataField] + public SoundCollectionSpecifier TableBonkSound = new SoundCollectionSpecifier("TrayHit"); + + /// + /// Stun time after failing to shoot a gun. + /// + [DataField, AutoNetworkedField] + public TimeSpan GunShootFailStunTime = TimeSpan.FromSeconds(3); + + /// + /// Stun time after failing to shoot a gun. + /// + [DataField, AutoNetworkedField] + public DamageSpecifier? GunShootFailDamage; + + /// + /// Noise to play after failing to shoot a gun. Boom! + /// + [DataField] + public SoundSpecifier GunShootFailSound = new SoundPathSpecifier("/Audio/Weapons/Guns/Gunshots/bang.ogg"); +} diff --git a/Content.Shared/Clumsy/ClumsySystem.cs b/Content.Shared/Clumsy/ClumsySystem.cs new file mode 100644 index 00000000000..e034458197f --- /dev/null +++ b/Content.Shared/Clumsy/ClumsySystem.cs @@ -0,0 +1,146 @@ +using Content.Shared.CCVar; +using Content.Shared.Chemistry.Hypospray.Events; +using Content.Shared.Climbing.Components; +using Content.Shared.Climbing.Events; +using Content.Shared.Damage; +using Content.Shared.IdentityManagement; +using Content.Shared.Medical; +using Content.Shared.Popups; +using Content.Shared.Stunnable; +using Content.Shared.Weapons.Ranged.Events; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Configuration; +using Robust.Shared.Random; +using Robust.Shared.Timing; + +namespace Content.Shared.Clumsy; + +public sealed class ClumsySystem : EntitySystem +{ + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedStunSystem _stun = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + + public override void Initialize() + { + SubscribeLocalEvent(BeforeHyposprayEvent); + SubscribeLocalEvent(BeforeDefibrillatorZapsEvent); + SubscribeLocalEvent(BeforeGunShotEvent); + SubscribeLocalEvent(OnBeforeClimbEvent); + } + + // If you add more clumsy interactions add them in this section! + #region Clumsy interaction events + private void BeforeHyposprayEvent(Entity ent, ref SelfBeforeHyposprayInjectsEvent args) + { + // Clumsy people sometimes inject themselves! Apparently syringes are clumsy proof... + if (!_random.Prob(ent.Comp.ClumsyDefaultCheck)) + return; + + args.TargetGettingInjected = args.EntityUsingHypospray; + args.InjectMessageOverride = "hypospray-component-inject-self-clumsy-message"; + _audio.PlayPvs(ent.Comp.ClumsySound, ent); + } + + private void BeforeDefibrillatorZapsEvent(Entity ent, ref SelfBeforeDefibrillatorZapsEvent args) + { + // Clumsy people sometimes defib themselves! + if (!_random.Prob(ent.Comp.ClumsyDefaultCheck)) + return; + + args.DefibTarget = args.EntityUsingDefib; + _audio.PlayPvs(ent.Comp.ClumsySound, ent); + + } + + private void BeforeGunShotEvent(Entity ent, ref SelfBeforeGunShotEvent args) + { + // Clumsy people sometimes can't shoot :( + + if (args.Gun.Comp.ClumsyProof) + return; + + if (!_random.Prob(ent.Comp.ClumsyDefaultCheck)) + return; + + if (ent.Comp.GunShootFailDamage != null) + _damageable.TryChangeDamage(ent, ent.Comp.GunShootFailDamage, origin: ent); + + _stun.TryParalyze(ent, ent.Comp.GunShootFailStunTime, true); + + // Apply salt to the wound ("Honk!") (No idea what this comment means) + _audio.PlayPvs(ent.Comp.GunShootFailSound, ent); + _audio.PlayPvs(ent.Comp.ClumsySound, ent); + + _popup.PopupEntity(Loc.GetString("gun-clumsy"), ent, ent); + args.Cancel(); + } + + private void OnBeforeClimbEvent(Entity ent, ref SelfBeforeClimbEvent args) + { + // This event is called in shared, thats why it has all the extra prediction stuff. + var rand = new System.Random((int)_timing.CurTick.Value); + + // If someone is putting you on the table, always get past the guard. + if (!_cfg.GetCVar(CCVars.GameTableBonk) && args.PuttingOnTable == ent.Owner && !rand.Prob(ent.Comp.ClumsyDefaultCheck)) + return; + + HitHeadClumsy(ent, args.BeingClimbedOn); + + _audio.PlayPredicted(ent.Comp.ClumsySound, ent, ent); + + _audio.PlayPredicted(ent.Comp.TableBonkSound, ent, ent); + + var gettingPutOnTableName = Identity.Entity(args.GettingPutOnTable, EntityManager); + var puttingOnTableName = Identity.Entity(args.PuttingOnTable, EntityManager); + + if (args.PuttingOnTable == ent.Owner) + { + // You are slamming yourself onto the table. + _popup.PopupPredicted( + Loc.GetString("bonkable-success-message-user", ("bonkable", args.BeingClimbedOn)), + Loc.GetString("bonkable-success-message-others", ("victim", gettingPutOnTableName), ("bonkable", args.BeingClimbedOn)), + ent, + ent); + } + else + { + // Someone else slamed you onto the table. + // This is only run in server so you need to use popup entity. + _popup.PopupPredicted( + Loc.GetString("forced-bonkable-success-message", + ("bonker", puttingOnTableName), + ("victim", gettingPutOnTableName), + ("bonkable", args.BeingClimbedOn)), + ent, + null); + } + + args.Cancel(); + } + #endregion + + #region Helper functions + /// + /// "Hits" an entites head against the given table. + /// + // Oh this fucntion is public le- NO!! This is only public for the one admin command if you use this anywhere else I will cry. + public void HitHeadClumsy(Entity target, EntityUid table) + { + var stunTime = target.Comp.ClumsyDefaultStunTime; + + if (TryComp(table, out var bonkComp)) + { + stunTime = bonkComp.BonkTime; + if (bonkComp.BonkDamage != null) + _damageable.TryChangeDamage(target, bonkComp.BonkDamage, true); + } + + _stun.TryParalyze(target, stunTime, true); + } + #endregion +} diff --git a/Content.Shared/Interaction/Components/ClumsyComponent.cs b/Content.Shared/Interaction/Components/ClumsyComponent.cs deleted file mode 100644 index 824696c8385..00000000000 --- a/Content.Shared/Interaction/Components/ClumsyComponent.cs +++ /dev/null @@ -1,24 +0,0 @@ -using Content.Shared.Damage; -using Robust.Shared.Audio; -using Robust.Shared.GameStates; - -namespace Content.Shared.Interaction.Components; - -/// -/// A simple clumsy tag-component. -/// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -public sealed partial class ClumsyComponent : Component -{ - /// - /// Damage dealt to a clumsy character when they try to fire a gun. - /// - [DataField(required: true), AutoNetworkedField] - public DamageSpecifier ClumsyDamage = default!; - - /// - /// Sound to play when clumsy interactions fail. - /// - [DataField] - public SoundSpecifier ClumsySound = new SoundPathSpecifier("/Audio/Items/bikehorn.ogg"); -} diff --git a/Content.Shared/Interaction/SharedInteractionSystem.Clumsy.cs b/Content.Shared/Interaction/SharedInteractionSystem.Clumsy.cs deleted file mode 100644 index 9e45847e078..00000000000 --- a/Content.Shared/Interaction/SharedInteractionSystem.Clumsy.cs +++ /dev/null @@ -1,26 +0,0 @@ -using Content.Shared.Interaction.Components; -using Robust.Shared.Random; - -namespace Content.Shared.Interaction -{ - public partial class SharedInteractionSystem - { - public bool RollClumsy(ClumsyComponent component, float chance) - { - return component.Running && _random.Prob(chance); - } - - /// - /// Rolls a probability chance for a "bad action" if the target entity is clumsy. - /// - /// The entity that the clumsy check is happening for. - /// - /// The chance that a "bad action" happens if the user is clumsy, between 0 and 1 inclusive. - /// - /// True if a "bad action" happened, false if the normal action should happen. - public bool TryRollClumsy(EntityUid entity, float chance, ClumsyComponent? component = null) - { - return Resolve(entity, ref component, false) && RollClumsy(component, chance); - } - } -} diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs index c910a9ae772..9573f9b43d9 100644 --- a/Content.Shared/Inventory/InventorySystem.Relay.cs +++ b/Content.Shared/Inventory/InventorySystem.Relay.cs @@ -1,4 +1,7 @@ +using Content.Shared.Chat; using Content.Shared.Chemistry; +using Content.Shared.Chemistry.Hypospray.Events; +using Content.Shared.Climbing.Events; using Content.Shared.Damage; using Content.Shared.Electrocution; using Content.Shared.Explosion; @@ -15,7 +18,7 @@ using Content.Shared.Strip.Components; using Content.Shared.Temperature; using Content.Shared.Verbs; -using Content.Shared.Chat; +using Content.Shared.Weapons.Ranged.Events; namespace Content.Shared.Inventory; @@ -33,6 +36,10 @@ public void InitializeRelay() SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); SubscribeLocalEvent(RelayInventoryEvent); + SubscribeLocalEvent(RelayInventoryEvent); + SubscribeLocalEvent(RelayInventoryEvent); + SubscribeLocalEvent(RelayInventoryEvent); + SubscribeLocalEvent(RelayInventoryEvent); // by-ref events SubscribeLocalEvent(RefRelayInventoryEvent); diff --git a/Content.Shared/Medical/DefibrillatorEvents.cs b/Content.Shared/Medical/DefibrillatorEvents.cs new file mode 100644 index 00000000000..54a21a40d42 --- /dev/null +++ b/Content.Shared/Medical/DefibrillatorEvents.cs @@ -0,0 +1,39 @@ +using Content.Shared.Inventory; + +namespace Content.Shared.Medical; + +[ByRefEvent] +public readonly record struct TargetDefibrillatedEvent(EntityUid User, Entity Defibrillator); + +public abstract class BeforeDefibrillatorZapsEvent : CancellableEntityEventArgs, IInventoryRelayEvent +{ + public SlotFlags TargetSlots { get; } = SlotFlags.WITHOUT_POCKET; + public EntityUid EntityUsingDefib; + public readonly EntityUid Defib; + public EntityUid DefibTarget; + + public BeforeDefibrillatorZapsEvent(EntityUid entityUsingDefib, EntityUid defib, EntityUid defibTarget) + { + EntityUsingDefib = entityUsingDefib; + Defib = defib; + DefibTarget = defibTarget; + } +} + +/// +/// This event is raised on the user using the defibrillator before is actually zaps someone. +/// The event is triggered on the user and all their clothing. +/// +public sealed class SelfBeforeDefibrillatorZapsEvent : BeforeDefibrillatorZapsEvent +{ + public SelfBeforeDefibrillatorZapsEvent(EntityUid entityUsingDefib, EntityUid defib, EntityUid defibtarget) : base(entityUsingDefib, defib, defibtarget) { } +} + +/// +/// This event is raised on the target before it gets zapped with the defibrillator. +/// The event is triggered on the target itself and all its clothing. +/// +public sealed class TargetBeforeDefibrillatorZapsEvent : BeforeDefibrillatorZapsEvent +{ + public TargetBeforeDefibrillatorZapsEvent(EntityUid entityUsingDefib, EntityUid defib, EntityUid defibtarget) : base(entityUsingDefib, defib, defibtarget) { } +} diff --git a/Content.Shared/Medical/TargetDefibrillatedEvent.cs b/Content.Shared/Medical/TargetDefibrillatedEvent.cs deleted file mode 100644 index 60d1a215845..00000000000 --- a/Content.Shared/Medical/TargetDefibrillatedEvent.cs +++ /dev/null @@ -1,4 +0,0 @@ -namespace Content.Shared.Medical; - -[ByRefEvent] -public readonly record struct TargetDefibrillatedEvent(EntityUid User, Entity Defibrillator); diff --git a/Content.Shared/Weapons/Ranged/Events/BeforeGunShootEvent.cs b/Content.Shared/Weapons/Ranged/Events/BeforeGunShootEvent.cs new file mode 100644 index 00000000000..1d3317c840f --- /dev/null +++ b/Content.Shared/Weapons/Ranged/Events/BeforeGunShootEvent.cs @@ -0,0 +1,20 @@ +using Content.Shared.Inventory; +using Content.Shared.Weapons.Ranged.Components; + +namespace Content.Shared.Weapons.Ranged.Events; +/// +/// This event is triggered on an entity right before they shoot a gun. +/// +public sealed partial class SelfBeforeGunShotEvent : CancellableEntityEventArgs, IInventoryRelayEvent +{ + public SlotFlags TargetSlots { get; } = SlotFlags.WITHOUT_POCKET; + public readonly EntityUid Shooter; + public readonly Entity Gun; + public readonly List<(EntityUid? Entity, IShootable Shootable)> Ammo; + public SelfBeforeGunShotEvent(EntityUid shooter, Entity gun, List<(EntityUid? Entity, IShootable Shootable)> ammo) + { + Shooter = shooter; + Gun = gun; + Ammo = ammo; + } +} diff --git a/Resources/Locale/en-US/bonk/components/bonkable-component.ftl b/Resources/Locale/en-US/bonk/components/bonkable-component.ftl index 560b10c46ec..1a79da3509f 100644 --- a/Resources/Locale/en-US/bonk/components/bonkable-component.ftl +++ b/Resources/Locale/en-US/bonk/components/bonkable-component.ftl @@ -1,2 +1,4 @@ -bonkable-success-message-others = { CAPITALIZE(THE($user)) } bonks { POSS-ADJ($user) } head against { THE($bonkable) } -bonkable-success-message-user = You bonk your head against { THE($bonkable) } +forced-bonkable-success-message = { CAPITALIZE($bonker) } bonks {$victim}s head against { THE($bonkable) }! + +bonkable-success-message-user = You bonk your head against { THE($bonkable) }! +bonkable-success-message-others = {$victim} bonks their head against { THE($bonkable) }! diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 2280c3fecb8..48c83c8d1e8 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1360,7 +1360,7 @@ rules: ghost-role-information-nonantagonist-rules - type: GhostTakeoverAvailable - type: Clumsy - clumsyDamage: + gunShootFailDamage: types: Blunt: 5 Piercing: 4 @@ -1536,7 +1536,7 @@ description: Cousins to the sentient race of lizard people, kobolds blend in with their natural habitat and are as nasty as monkeys; ready to pull out your hair and stab you to death. components: - type: Clumsy - clumsyDamage: + gunShootFailDamage: types: Blunt: 2 Piercing: 7 diff --git a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml index b21f19edd3c..dca47e1c837 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/guardian.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/guardian.yml @@ -231,7 +231,7 @@ - type: Hands - type: ComplexInteraction - type: Clumsy - clumsyDamage: + gunShootFailDamage: types: Blunt: 5 Piercing: 4 diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml index 2862980dad3..4b3b4c18743 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/base_structuretables.yml @@ -32,8 +32,6 @@ bonkDamage: types: Blunt: 4 - bonkSound: !type:SoundCollectionSpecifier - collection: TrayHit - type: Clickable - type: FootstepModifier footstepSoundCollection: diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml b/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml index 29232d9dbb5..b8f289e70eb 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/clown.yml @@ -13,7 +13,7 @@ - !type:AddComponentSpecial components: - type: Clumsy - clumsyDamage: + gunShootFailDamage: types: #literally just picked semi random valus. i tested this once and tweaked it. Blunt: 5 Piercing: 4 From abdefbd622d4e4a47b1ef7c5f11a499a71fdd9e7 Mon Sep 17 00:00:00 2001 From: PJBot Date: Fri, 15 Nov 2024 23:47:08 +0000 Subject: [PATCH 100/171] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 1c796d8b459..a31e83355d6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: FATFSAAM2 - changes: - - message: added 7 new figurine voice lines. - type: Add - - message: changed a hos figurine voice line to not include a typo. - type: Fix - id: 7113 - time: '2024-08-15T12:34:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30865 - author: to4no_fix changes: - message: Added a new electropack that shocks when a trigger is triggered @@ -3944,3 +3935,11 @@ id: 7612 time: '2024-11-15T21:21:08.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32985 +- author: Beck Thompson + changes: + - message: Minor tweaks to clumsiness. Some of the timings and or noises have been + changed slightly! + type: Tweak + id: 7613 + time: '2024-11-15T23:46:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31147 From e7e1d9605137ea916eb0931e8076d2b67181613a Mon Sep 17 00:00:00 2001 From: Saphire Lattice Date: Sat, 16 Nov 2024 10:25:06 +0700 Subject: [PATCH 101/171] Improve crayon UI to not be stuck in 1996 (#33101) * Improve crayon UI to not be stuck in 1996 * Make a horrifying crayon spaghetti * Crayon * Undeprecate the crayon, describe the crayon --- .../Crayon/UI/CrayonBoundUserInterface.cs | 12 +- Content.Client/Crayon/UI/CrayonWindow.xaml | 11 +- Content.Client/Crayon/UI/CrayonWindow.xaml.cs | 138 ++++- Content.Server/Crayon/CrayonSystem.cs | 2 + .../Crayon/SharedCrayonComponent.cs | 44 +- .../Locale/en-US/crayon/crayon-component.ftl | 7 + Resources/Prototypes/Decals/crayons.yml | 552 +++++++++--------- 7 files changed, 449 insertions(+), 317 deletions(-) diff --git a/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs b/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs index e5be0b1811f..44501767dd4 100644 --- a/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs +++ b/Content.Client/Crayon/UI/CrayonBoundUserInterface.cs @@ -31,7 +31,7 @@ protected override void Open() private void PopulateCrayons() { var crayonDecals = _protoManager.EnumeratePrototypes().Where(x => x.Tags.Contains("crayon")); - _menu?.Populate(crayonDecals); + _menu?.Populate(crayonDecals.ToList()); } public override void OnProtoReload(PrototypesReloadedEventArgs args) @@ -44,6 +44,16 @@ public override void OnProtoReload(PrototypesReloadedEventArgs args) PopulateCrayons(); } + protected override void ReceiveMessage(BoundUserInterfaceMessage message) + { + base.ReceiveMessage(message); + + if (_menu is null || message is not CrayonUsedMessage crayonMessage) + return; + + _menu.AdvanceState(crayonMessage.DrawnDecal); + } + protected override void UpdateState(BoundUserInterfaceState state) { base.UpdateState(state); diff --git a/Content.Client/Crayon/UI/CrayonWindow.xaml b/Content.Client/Crayon/UI/CrayonWindow.xaml index 7729318ae7f..7acb22551b7 100644 --- a/Content.Client/Crayon/UI/CrayonWindow.xaml +++ b/Content.Client/Crayon/UI/CrayonWindow.xaml @@ -1,14 +1,13 @@  + MinSize="450 500" + SetSize="450 500"> - + - - - + + diff --git a/Content.Client/Crayon/UI/CrayonWindow.xaml.cs b/Content.Client/Crayon/UI/CrayonWindow.xaml.cs index 6ef282d219a..88475562c67 100644 --- a/Content.Client/Crayon/UI/CrayonWindow.xaml.cs +++ b/Content.Client/Crayon/UI/CrayonWindow.xaml.cs @@ -1,8 +1,10 @@ using System.Collections.Generic; +using System.Linq; using Content.Client.Stylesheets; using Content.Shared.Crayon; using Content.Shared.Decals; using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; @@ -18,7 +20,12 @@ namespace Content.Client.Crayon.UI [GenerateTypedNameReferences] public sealed partial class CrayonWindow : DefaultWindow { - private Dictionary? _decals; + [Dependency] private readonly IEntitySystemManager _entitySystem = default!; + private readonly SpriteSystem _spriteSystem = default!; + + private Dictionary>? _decals; + private List? _allDecals; + private string? _autoSelected; private string? _selected; private Color _color; @@ -28,8 +35,10 @@ public sealed partial class CrayonWindow : DefaultWindow public CrayonWindow() { RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + _spriteSystem = _entitySystem.GetEntitySystem(); - Search.OnTextChanged += _ => RefreshList(); + Search.OnTextChanged += SearchChanged; ColorSelector.OnColorChanged += SelectColor; } @@ -44,51 +53,94 @@ private void SelectColor(Color color) private void RefreshList() { // Clear - Grid.DisposeAllChildren(); - if (_decals == null) + Grids.DisposeAllChildren(); + + if (_decals == null || _allDecals == null) return; var filter = Search.Text; - foreach (var (decal, tex) in _decals) + var comma = filter.IndexOf(','); + var first = (comma == -1 ? filter : filter[..comma]).Trim(); + + var names = _decals.Keys.ToList(); + names.Sort((a, b) => a == "random" ? 1 : b == "random" ? -1 : a.CompareTo(b)); + + if (_autoSelected != null && first != _autoSelected && _allDecals.Contains(first)) + { + _selected = first; + _autoSelected = _selected; + OnSelected?.Invoke(_selected); + } + + foreach (var categoryName in names) { - if (!decal.Contains(filter)) + var locName = Loc.GetString("crayon-category-" + categoryName); + var category = _decals[categoryName].Where(d => locName.Contains(first) || d.Name.Contains(first)).ToList(); + + if (category.Count == 0) continue; - var button = new TextureButton() + var label = new Label { - TextureNormal = tex, - Name = decal, - ToolTip = decal, - Modulate = _color, + Text = locName }; - button.OnPressed += ButtonOnPressed; - if (_selected == decal) + + var grid = new GridContainer { - var panelContainer = new PanelContainer() + Columns = 6, + Margin = new Thickness(0, 0, 0, 16) + }; + + Grids.AddChild(label); + Grids.AddChild(grid); + + foreach (var (name, texture) in category) + { + var button = new TextureButton() { - PanelOverride = new StyleBoxFlat() - { - BackgroundColor = StyleNano.ButtonColorDefault, - }, - Children = - { - button, - }, + TextureNormal = texture, + Name = name, + ToolTip = name, + Modulate = _color, + Scale = new System.Numerics.Vector2(2, 2) }; - Grid.AddChild(panelContainer); - } - else - { - Grid.AddChild(button); + button.OnPressed += ButtonOnPressed; + + if (_selected == name) + { + var panelContainer = new PanelContainer() + { + PanelOverride = new StyleBoxFlat() + { + BackgroundColor = StyleNano.ButtonColorDefault, + }, + Children = + { + button, + }, + }; + grid.AddChild(panelContainer); + } + else + { + grid.AddChild(button); + } } } } + private void SearchChanged(LineEdit.LineEditEventArgs obj) + { + _autoSelected = ""; // Placeholder to kick off the auto-select in refreshlist() + RefreshList(); + } + private void ButtonOnPressed(ButtonEventArgs obj) { if (obj.Button.Name == null) return; _selected = obj.Button.Name; + _autoSelected = null; OnSelected?.Invoke(_selected); RefreshList(); } @@ -107,12 +159,38 @@ public void UpdateState(CrayonBoundUserInterfaceState state) RefreshList(); } - public void Populate(IEnumerable prototypes) + public void AdvanceState(string drawnDecal) { - _decals = new Dictionary(); + var filter = Search.Text; + if (!filter.Contains(',') || !filter.Contains(drawnDecal)) + return; + + var first = filter[..filter.IndexOf(',')].Trim(); + + if (first.Equals(drawnDecal, StringComparison.InvariantCultureIgnoreCase)) + { + Search.Text = filter[(filter.IndexOf(',') + 1)..].Trim(); + _autoSelected = first; + } + + RefreshList(); + } + + public void Populate(List prototypes) + { + _decals = []; + _allDecals = []; + + prototypes.Sort((a, b) => a.ID.CompareTo(b.ID)); + foreach (var decalPrototype in prototypes) { - _decals.Add(decalPrototype.ID, decalPrototype.Sprite.Frame0()); + var category = "random"; + if (decalPrototype.Tags.Count > 1 && decalPrototype.Tags[1].StartsWith("crayon-")) + category = decalPrototype.Tags[1].Replace("crayon-", ""); + var list = _decals.GetOrNew(category); + list.Add((decalPrototype.ID, _spriteSystem.Frame0(decalPrototype.Sprite))); + _allDecals.Add(decalPrototype.ID); } RefreshList(); diff --git a/Content.Server/Crayon/CrayonSystem.cs b/Content.Server/Crayon/CrayonSystem.cs index 07a13d8a34a..4257c436c23 100644 --- a/Content.Server/Crayon/CrayonSystem.cs +++ b/Content.Server/Crayon/CrayonSystem.cs @@ -82,6 +82,8 @@ private void OnCrayonAfterInteract(EntityUid uid, CrayonComponent component, Aft if (component.DeleteEmpty && component.Charges <= 0) UseUpCrayon(uid, args.User); + else + _uiSystem.ServerSendUiMessage(uid, SharedCrayonComponent.CrayonUiKey.Key, new CrayonUsedMessage(component.SelectedState)); } private void OnCrayonUse(EntityUid uid, CrayonComponent component, UseInHandEvent args) diff --git a/Content.Shared/Crayon/SharedCrayonComponent.cs b/Content.Shared/Crayon/SharedCrayonComponent.cs index f8e88b218de..a9c21988ea6 100644 --- a/Content.Shared/Crayon/SharedCrayonComponent.cs +++ b/Content.Shared/Crayon/SharedCrayonComponent.cs @@ -3,12 +3,23 @@ namespace Content.Shared.Crayon { + + /// + /// Component holding the state of a crayon-like component + /// [NetworkedComponent, ComponentProtoName("Crayon"), Access(typeof(SharedCrayonSystem))] public abstract partial class SharedCrayonComponent : Component { + /// + /// The ID of currently selected decal prototype that will be placed when the crayon is used + /// public string SelectedState { get; set; } = string.Empty; - [DataField("color")] public Color Color; + /// + /// Color with which the crayon will draw + /// + [DataField("color")] + public Color Color; [Serializable, NetSerializable] public enum CrayonUiKey : byte @@ -17,6 +28,9 @@ public enum CrayonUiKey : byte } } + /// + /// Used by the client to notify the server about the selected decal ID + /// [Serializable, NetSerializable] public sealed class CrayonSelectMessage : BoundUserInterfaceMessage { @@ -27,6 +41,9 @@ public CrayonSelectMessage(string selected) } } + /// + /// Sets the color of the crayon, used by Rainbow Crayon + /// [Serializable, NetSerializable] public sealed class CrayonColorMessage : BoundUserInterfaceMessage { @@ -37,13 +54,25 @@ public CrayonColorMessage(Color color) } } + /// + /// Server to CLIENT. Notifies the BUI that a decal with given ID has been drawn. + /// Allows the client UI to advance forward in the client-only ephemeral queue, + /// preventing the crayon from becoming a magic text storage device. + /// [Serializable, NetSerializable] - public enum CrayonVisuals + public sealed class CrayonUsedMessage : BoundUserInterfaceMessage { - State, - Color + public readonly string DrawnDecal; + + public CrayonUsedMessage(string drawn) + { + DrawnDecal = drawn; + } } + /// + /// Component state, describes how many charges are left in the crayon in the near-hand UI + /// [Serializable, NetSerializable] public sealed class CrayonComponentState : ComponentState { @@ -60,10 +89,17 @@ public CrayonComponentState(Color color, string state, int charges, int capacity Capacity = capacity; } } + + /// + /// The state of the crayon UI as sent by the server + /// [Serializable, NetSerializable] public sealed class CrayonBoundUserInterfaceState : BoundUserInterfaceState { public string Selected; + /// + /// Whether or not the color can be selected + /// public bool SelectableColor; public Color Color; diff --git a/Resources/Locale/en-US/crayon/crayon-component.ftl b/Resources/Locale/en-US/crayon/crayon-component.ftl index 444ffa4c45e..e13bf76941c 100644 --- a/Resources/Locale/en-US/crayon/crayon-component.ftl +++ b/Resources/Locale/en-US/crayon/crayon-component.ftl @@ -8,3 +8,10 @@ crayon-interact-invalid-location = Can't reach there! ## UI crayon-window-title = Crayon +crayon-window-placeholder = Search, or queue a comma-separated list of names +crayon-category-1-brushes = Brushes +crayon-category-2-alphanum = Numbers and letters +crayon-category-3-symbols = Symbols +crayon-category-4-info = Signs +crayon-category-5-graffiti = Graffiti +crayon-category-random = Random diff --git a/Resources/Prototypes/Decals/crayons.yml b/Resources/Prototypes/Decals/crayons.yml index 3be2ec24261..a15619d483c 100644 --- a/Resources/Prototypes/Decals/crayons.yml +++ b/Resources/Prototypes/Decals/crayons.yml @@ -1,6 +1,6 @@ - type: decal id: 0 - tags: ["crayon"] + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -10,7 +10,7 @@ - type: decal id: 1 - tags: ["crayon"] + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -20,7 +20,7 @@ - type: decal id: 2 - tags: ["crayon"] + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -30,7 +30,7 @@ - type: decal id: 3 - tags: ["crayon"] + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -40,7 +40,7 @@ - type: decal id: 4 - tags: ["crayon"] + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -50,7 +50,7 @@ - type: decal id: 5 - tags: ["crayon"] + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -60,7 +60,7 @@ - type: decal id: 6 - tags: ["crayon"] + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -70,7 +70,7 @@ - type: decal id: 7 - tags: ["crayon"] + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -80,7 +80,7 @@ - type: decal id: 8 - tags: ["crayon"] + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -90,7 +90,7 @@ - type: decal id: 9 - tags: ["crayon"] + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -100,7 +100,7 @@ - type: decal id: Blasto - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -110,7 +110,7 @@ - type: decal id: Clandestine - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -120,7 +120,7 @@ - type: decal id: Cyber - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -130,7 +130,7 @@ - type: decal id: Diablo - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -140,7 +140,7 @@ - type: decal id: Donk - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -150,7 +150,7 @@ - type: decal id: Gene - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -160,7 +160,7 @@ - type: decal id: Gib - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -170,7 +170,7 @@ - type: decal id: Max - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -180,7 +180,7 @@ - type: decal id: Newton - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -190,7 +190,7 @@ - type: decal id: North - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -200,7 +200,7 @@ - type: decal id: Omni - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -210,7 +210,7 @@ - type: decal id: Osiron - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -220,7 +220,7 @@ - type: decal id: Prima - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -230,7 +230,7 @@ - type: decal id: Psyke - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -240,7 +240,7 @@ - type: decal id: Sirius - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -250,7 +250,7 @@ - type: decal id: Tunnel - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -260,7 +260,7 @@ - type: decal id: Waffle - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -268,19 +268,9 @@ sprite: Effects/crayondecals.rsi state: Waffle -- type: decal - id: a - tags: ["crayon"] - defaultCleanable: true - defaultCustomColor: true - defaultSnap: false - sprite: - sprite: Effects/crayondecals.rsi - state: a - - type: decal id: ampersand - tags: ["crayon"] + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -290,7 +280,7 @@ - type: decal id: amyjon - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -300,7 +290,7 @@ - type: decal id: arrow - tags: ["crayon"] + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -308,16 +298,6 @@ sprite: Effects/crayondecals.rsi state: arrow -- type: decal - id: b - tags: ["crayon"] - defaultCleanable: true - defaultCustomColor: true - defaultSnap: false - sprite: - sprite: Effects/crayondecals.rsi - state: b - - type: decal id: beepsky tags: ["crayon"] @@ -330,7 +310,7 @@ - type: decal id: biohazard - tags: ["crayon"] + tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -370,7 +350,7 @@ - type: decal id: brush - tags: ["crayon"] + tags: ["crayon", "crayon-1-brushes"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -378,16 +358,6 @@ sprite: Effects/crayondecals.rsi state: brush -- type: decal - id: c - tags: ["crayon"] - defaultCleanable: true - defaultCustomColor: true - defaultSnap: false - sprite: - sprite: Effects/crayondecals.rsi - state: c - - type: decal id: carp tags: ["crayon"] @@ -410,7 +380,7 @@ - type: decal id: chevron - tags: ["crayon"] + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -440,7 +410,7 @@ - type: decal id: comma - tags: ["crayon"] + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -460,7 +430,7 @@ - type: decal id: credit - tags: ["crayon"] + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -470,7 +440,7 @@ - type: decal id: cyka - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -478,19 +448,9 @@ sprite: Effects/crayondecals.rsi state: cyka -- type: decal - id: d - tags: ["crayon"] - defaultCleanable: true - defaultCustomColor: true - defaultSnap: false - sprite: - sprite: Effects/crayondecals.rsi - state: d - - type: decal id: danger - tags: ["crayon"] + tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -510,7 +470,7 @@ - type: decal id: dot - tags: ["crayon"] + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -528,19 +488,9 @@ sprite: Effects/crayondecals.rsi state: dwarf -- type: decal - id: e - tags: ["crayon"] - defaultCleanable: true - defaultCustomColor: true - defaultSnap: false - sprite: - sprite: Effects/crayondecals.rsi - state: e - - type: decal id: electricdanger - tags: ["crayon"] + tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -550,7 +500,7 @@ - type: decal id: end - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -560,7 +510,7 @@ - type: decal id: engie - tags: ["crayon"] + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -570,7 +520,7 @@ - type: decal id: equals - tags: ["crayon"] + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -580,7 +530,7 @@ - type: decal id: evac - tags: ["crayon"] + tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -590,7 +540,7 @@ - type: decal id: exclamationmark - tags: ["crayon"] + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -598,16 +548,6 @@ sprite: Effects/crayondecals.rsi state: exclamationmark -- type: decal - id: f - tags: ["crayon"] - defaultCleanable: true - defaultCustomColor: true - defaultSnap: false - sprite: - sprite: Effects/crayondecals.rsi - state: f - - type: decal id: face tags: ["crayon"] @@ -630,7 +570,7 @@ - type: decal id: firedanger - tags: ["crayon"] + tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -640,7 +580,7 @@ - type: decal id: food - tags: ["crayon"] + tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -659,598 +599,658 @@ state: footprint - type: decal - id: g + id: ghost tags: ["crayon"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: g + state: ghost - type: decal - id: ghost + id: guy tags: ["crayon"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: ghost + state: guy - type: decal - id: guy - tags: ["crayon"] + id: heart + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: guy + state: heart - type: decal - id: h - tags: ["crayon"] + id: largebrush + tags: ["crayon", "crayon-1-brushes"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: h + state: largebrush - type: decal - id: heart - tags: ["crayon"] + id: like + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: heart + state: like - type: decal - id: i - tags: ["crayon"] + id: line + tags: ["crayon", "crayon-1-brushes"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: i + state: line - type: decal - id: j - tags: ["crayon"] + id: matt + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: j + state: matt - type: decal - id: k - tags: ["crayon"] + id: med + tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: k + state: med - type: decal - id: l - tags: ["crayon"] + id: minus + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: l + state: minus - type: decal - id: largebrush - tags: ["crayon"] + id: nay + tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: largebrush + state: nay - type: decal - id: like + id: pawprint tags: ["crayon"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: like + state: pawprint - type: decal - id: line - tags: ["crayon"] + id: peace + tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: line + state: peace - type: decal - id: m - tags: ["crayon"] + id: percent + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: m + state: percent - type: decal - id: matt - tags: ["crayon"] + id: plus + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: matt + state: plus - type: decal - id: med - tags: ["crayon"] + id: pound + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: med + state: pound - type: decal - id: minus - tags: ["crayon"] + id: prolizard + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: minus + state: prolizard - type: decal - id: n - tags: ["crayon"] + id: questionmark + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: n + state: questionmark - type: decal - id: nay - tags: ["crayon"] + id: radiation + tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: nay + state: radiation - type: decal - id: o - tags: ["crayon"] + id: revolution + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: o + state: revolution - type: decal - id: p - tags: ["crayon"] + id: rune1 + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: p + state: rune1 - type: decal - id: pawprint - tags: ["crayon"] + id: rune2 + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: pawprint + state: rune2 - type: decal - id: peace - tags: ["crayon"] + id: rune3 + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: peace + state: rune3 - type: decal - id: percent - tags: ["crayon"] + id: rune4 + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: percent + state: rune4 - type: decal - id: plus - tags: ["crayon"] + id: rune5 + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: plus + state: rune5 - type: decal - id: pound - tags: ["crayon"] + id: rune6 + tags: ["crayon", "crayon-5-graffiti"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: pound + state: rune6 - type: decal - id: prolizard - tags: ["crayon"] + id: safe + tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: prolizard + state: safe - type: decal - id: q + id: scroll tags: ["crayon"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: q + state: scroll - type: decal - id: questionmark - tags: ["crayon"] + id: shop + tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: questionmark + state: shop - type: decal - id: r - tags: ["crayon"] + id: shortline + tags: ["crayon", "crayon-1-brushes"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: r + state: shortline - type: decal - id: radiation + id: shotgun tags: ["crayon"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: radiation + state: shotgun - type: decal - id: revolution - tags: ["crayon"] + id: skull + tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: revolution + state: skull - type: decal - id: rune1 - tags: ["crayon"] + id: slash + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: rune1 + state: slash - type: decal - id: rune2 - tags: ["crayon"] + id: smallbrush + tags: ["crayon", "crayon-1-brushes"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: rune2 + state: smallbrush - type: decal - id: rune3 + id: snake tags: ["crayon"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: rune3 + state: snake - type: decal - id: rune4 - tags: ["crayon"] + id: space + tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: rune4 + state: space - type: decal - id: rune5 + id: splatter tags: ["crayon"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: rune5 + state: splatter - type: decal - id: rune6 - tags: ["crayon"] + id: star + tags: ["crayon", "crayon-3-symbols"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: rune6 + state: star - type: decal - id: s + id: stickman tags: ["crayon"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: s + state: stickman - type: decal - id: safe + id: taser tags: ["crayon"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: safe + state: taser - type: decal - id: scroll - tags: ["crayon"] + id: thinline + tags: ["crayon", "crayon-1-brushes"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: scroll + state: thinline - type: decal - id: shop + id: toilet tags: ["crayon"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: shop + state: toilet - type: decal - id: shortline + id: toolbox tags: ["crayon"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: shortline + state: toolbox - type: decal - id: shotgun - tags: ["crayon"] + id: trade + tags: ["crayon", "crayon-4-info"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: shotgun + state: trade - type: decal - id: skull + id: uboa tags: ["crayon"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: skull + state: uboa - type: decal - id: slash - tags: ["crayon"] + id: a + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: slash + state: a - type: decal - id: smallbrush - tags: ["crayon"] + id: b + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: smallbrush + state: b - type: decal - id: snake - tags: ["crayon"] + id: c + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: snake + state: c - type: decal - id: space - tags: ["crayon"] + id: d + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: space + state: d - type: decal - id: splatter - tags: ["crayon"] + id: e + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: splatter + state: e - type: decal - id: star - tags: ["crayon"] + id: f + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: star + state: f - type: decal - id: stickman - tags: ["crayon"] + id: g + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: stickman + state: g - type: decal - id: t - tags: ["crayon"] + id: h + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: t + state: h - type: decal - id: taser - tags: ["crayon"] + id: i + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: taser + state: i - type: decal - id: thinline - tags: ["crayon"] + id: j + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: thinline + state: j - type: decal - id: toilet - tags: ["crayon"] + id: k + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: toilet + state: k - type: decal - id: toolbox - tags: ["crayon"] + id: l + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: toolbox + state: l - type: decal - id: trade - tags: ["crayon"] + id: m + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: trade + state: m - type: decal - id: u - tags: ["crayon"] + id: n + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: u + state: n - type: decal - id: uboa - tags: ["crayon"] + id: o + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false sprite: sprite: Effects/crayondecals.rsi - state: uboa + state: o + +- type: decal + id: p + tags: ["crayon", "crayon-2-alphanum"] + defaultCleanable: true + defaultCustomColor: true + defaultSnap: false + sprite: + sprite: Effects/crayondecals.rsi + state: p + +- type: decal + id: q + tags: ["crayon", "crayon-2-alphanum"] + defaultCleanable: true + defaultCustomColor: true + defaultSnap: false + sprite: + sprite: Effects/crayondecals.rsi + state: q + +- type: decal + id: r + tags: ["crayon", "crayon-2-alphanum"] + defaultCleanable: true + defaultCustomColor: true + defaultSnap: false + sprite: + sprite: Effects/crayondecals.rsi + state: r + +- type: decal + id: s + tags: ["crayon", "crayon-2-alphanum"] + defaultCleanable: true + defaultCustomColor: true + defaultSnap: false + sprite: + sprite: Effects/crayondecals.rsi + state: s + +- type: decal + id: t + tags: ["crayon", "crayon-2-alphanum"] + defaultCleanable: true + defaultCustomColor: true + defaultSnap: false + sprite: + sprite: Effects/crayondecals.rsi + state: t + +- type: decal + id: u + tags: ["crayon", "crayon-2-alphanum"] + defaultCleanable: true + defaultCustomColor: true + defaultSnap: false + sprite: + sprite: Effects/crayondecals.rsi + state: u - type: decal id: v - tags: ["crayon"] + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -1260,7 +1260,7 @@ - type: decal id: w - tags: ["crayon"] + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -1270,7 +1270,7 @@ - type: decal id: x - tags: ["crayon"] + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -1280,7 +1280,7 @@ - type: decal id: y - tags: ["crayon"] + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false @@ -1290,7 +1290,7 @@ - type: decal id: z - tags: ["crayon"] + tags: ["crayon", "crayon-2-alphanum"] defaultCleanable: true defaultCustomColor: true defaultSnap: false From 4426bbe784d51445d5fde307106db3c4f3d9c3a6 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 16 Nov 2024 03:26:15 +0000 Subject: [PATCH 102/171] Automatic changelog update --- Resources/Changelog/Changelog.yml | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a31e83355d6..58607000531 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,21 +1,4 @@ Entries: -- author: to4no_fix - changes: - - message: Added a new electropack that shocks when a trigger is triggered - type: Add - - message: Added a new shock collar that shocks when a trigger is triggered - type: Add - - message: Two shock collars and two remote signallers added to the warden's locker - type: Add - - message: Shock collar added as a new target for the thief - type: Add - - message: A new Special Means technology has been added to the Arsenal research - branch at the 1st research level. Its research opens up the possibility of producing - electropacks at security techfab. The cost of technology research is 5000 - type: Add - id: 7114 - time: '2024-08-15T14:30:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30529 - author: Mervill changes: - message: The Gas Analyzer won't spuriously shut down for seemly no reason. @@ -3943,3 +3926,10 @@ id: 7613 time: '2024-11-15T23:46:02.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31147 +- author: SaphireLattice + changes: + - message: Crayon UI now has categories and queue + type: Add + id: 7614 + time: '2024-11-16T03:25:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33101 From 862c2ac858ce9b88dc2992ca21976e54e16b3953 Mon Sep 17 00:00:00 2001 From: Southbridge <7013162+southbridge-fur@users.noreply.github.com> Date: Fri, 15 Nov 2024 22:26:47 -0500 Subject: [PATCH 103/171] BRB sign in the Bureaucracy Crate (#33341) Added the brb sign to the Bureaucracy Crate --- Resources/Prototypes/Catalog/Fills/Crates/service.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/Catalog/Fills/Crates/service.yml index 6a109fbf8e4..995a4218ae7 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/service.yml @@ -130,6 +130,7 @@ - id: BoxFolderYellow - id: NewtonCradle - id: BoxEnvelope + - id: BrbSign - type: entity id: CrateServiceFaxMachine From c4e8751ee6c0ed0a3c3c664703ee87ca3ddb6b26 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 16 Nov 2024 03:27:57 +0000 Subject: [PATCH 104/171] Automatic changelog update --- Resources/Changelog/Changelog.yml | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 58607000531..b030fbbb32b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,20 +1,4 @@ Entries: -- author: Mervill - changes: - - message: The Gas Analyzer won't spuriously shut down for seemly no reason. - type: Tweak - - message: The Gas Analyzer will always switch to the device tab when a new object - is scanned. - type: Tweak - - message: The Gas Analyzer's interaction range is now equal to the standard interaction - range - type: Fix - - message: Clicking the Gas Analyzer when it's in your hand has proper enable/disable - behavior. - type: Fix - id: 7115 - time: '2024-08-15T14:45:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30763 - author: Nimfar11 changes: - message: Adds a gold toilet @@ -3933,3 +3917,10 @@ id: 7614 time: '2024-11-16T03:25:06.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33101 +- author: Southbridge + changes: + - message: The BRB sign is now included in the Bureaucracy Crate + type: Add + id: 7615 + time: '2024-11-16T03:26:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33341 From 1f5eb6a08b5ae97af1f842219d31766b811fcf0d Mon Sep 17 00:00:00 2001 From: Saphire Lattice Date: Sat, 16 Nov 2024 10:39:19 +0700 Subject: [PATCH 105/171] Fix utensils not being thrown away (#33326) --- Content.Server/Nutrition/EntitySystems/UtensilSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs b/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs index 1f3d5afb433..766c38d561b 100644 --- a/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/UtensilSystem.cs @@ -44,7 +44,7 @@ private void OnAfterInteract(Entity entity, ref AfterInteractE public (bool Success, bool Handled) TryUseUtensil(EntityUid user, EntityUid target, Entity utensil) { if (!EntityManager.TryGetComponent(target, out FoodComponent? food)) - return (false, true); + return (false, false); //Prevents food usage with a wrong utensil if ((food.Utensil & utensil.Comp.Types) == 0) From 6bcfe6fb3dc21ed7528227baa4c161edf2edad77 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 16 Nov 2024 03:40:25 +0000 Subject: [PATCH 106/171] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b030fbbb32b..39adf639685 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,15 +1,4 @@ Entries: -- author: Nimfar11 - changes: - - message: Adds a gold toilet - type: Add - - message: Adds a target for the Thief to steal the golden toilet - type: Add - - message: Corrected the sprite image for the normal toilet. - type: Fix - id: 7116 - time: '2024-08-15T19:23:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31049 - author: themias changes: - message: Raw meat cutlets can be cooked on a grill @@ -3924,3 +3913,10 @@ id: 7615 time: '2024-11-16T03:26:48.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33341 +- author: SaphireLattice + changes: + - message: Utensils can finally go into disposals + type: Fix + id: 7616 + time: '2024-11-16T03:39:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33326 From 11963e50b1efcfb87bcd65d4c0045ca256cabb6c Mon Sep 17 00:00:00 2001 From: MossyGreySlope Date: Sat, 16 Nov 2024 13:57:33 +1000 Subject: [PATCH 107/171] Fix server crash when the seed extractor is used on the dev map (#33312) handle event when using seed extractor Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Content.Server/Botany/Systems/SeedExtractorSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/Botany/Systems/SeedExtractorSystem.cs b/Content.Server/Botany/Systems/SeedExtractorSystem.cs index 93f76473ff8..c7e20983a7a 100644 --- a/Content.Server/Botany/Systems/SeedExtractorSystem.cs +++ b/Content.Server/Botany/Systems/SeedExtractorSystem.cs @@ -38,6 +38,7 @@ private void OnInteractUsing(EntityUid uid, SeedExtractorComponent seedExtractor args.User, PopupType.Medium); QueueDel(args.Used); + args.Handled = true; var amount = _random.Next(seedExtractor.BaseMinSeeds, seedExtractor.BaseMaxSeeds + 1); var coords = Transform(uid).Coordinates; From 4f659b9d6de85d19e12a2992350fffa0033d1988 Mon Sep 17 00:00:00 2001 From: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Date: Sat, 16 Nov 2024 16:30:47 +1200 Subject: [PATCH 108/171] Solar assembly crate buff (#33019) * more flatpacks + glass * solar crate price increase * price increase * 1250 spesos * Update Resources/Prototypes/Catalog/Fills/Crates/engines.yml --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Resources/Prototypes/Catalog/Cargo/cargo_engines.yml | 2 +- Resources/Prototypes/Catalog/Fills/Crates/engines.yml | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_engines.yml b/Resources/Prototypes/Catalog/Cargo/cargo_engines.yml index 72f9d3a59bf..75a1e24cdff 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_engines.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_engines.yml @@ -66,7 +66,7 @@ sprite: Objects/Devices/flatpack.rsi state: solar-assembly-part product: CrateEngineeringSolar - cost: 525 + cost: 1250 category: cargoproduct-category-name-engineering group: market diff --git a/Resources/Prototypes/Catalog/Fills/Crates/engines.yml b/Resources/Prototypes/Catalog/Fills/Crates/engines.yml index c37b7b7535a..638e94080ed 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/engines.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/engines.yml @@ -120,12 +120,14 @@ id: CrateEngineeringSolar parent: CrateEngineering name: solar assembly crate - description: Parts for constructing solar panels and trackers. + description: A kit with solar flatpacks and glass to construct ten solar panels. components: - type: StorageFill contents: - id: SolarAssemblyFlatpack - amount: 6 + amount: 10 + - id: SheetGlass10 + amount: 2 - type: entity id: CrateEngineeringShuttle From 7077b930f27dc8e9fbe3563ff4c3053b0549f70c Mon Sep 17 00:00:00 2001 From: PJBot Date: Sat, 16 Nov 2024 04:31:53 +0000 Subject: [PATCH 109/171] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 39adf639685..58fe44307b4 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: themias - changes: - - message: Raw meat cutlets can be cooked on a grill - type: Tweak - id: 7117 - time: '2024-08-15T19:30:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31048 - author: IProduceWidgets changes: - message: Meteor dust should more consistently happen instead of meteors. @@ -3920,3 +3913,12 @@ id: 7616 time: '2024-11-16T03:39:19.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33326 +- author: K-Dynamic + changes: + - message: Solar assembly crate now comes with 10 flatpacks and 20 glass to make + expansion and repairs easier, as well as increasing in price from 525 to 1250 + spesos. + type: Tweak + id: 7617 + time: '2024-11-16T04:30:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33019 From 2c82a2dfc0cf0cf52f6045c2b59d2232e3714897 Mon Sep 17 00:00:00 2001 From: dffdff2423 Date: Sat, 16 Nov 2024 00:09:29 -0500 Subject: [PATCH 110/171] Add admin remarks button to lobby (#31761) --- Content.Client/Lobby/LobbyUIController.cs | 2 +- .../Lobby/UI/CharacterSetupGui.xaml | 6 +++++ .../Lobby/UI/CharacterSetupGui.xaml.cs | 27 +++++++++---------- Content.Client/Lobby/UI/LobbyGui.xaml.cs | 1 - Resources/Locale/en-US/lobby/lobby-gui.ftl | 2 +- .../preferences/ui/character-setup-gui.ftl | 3 ++- 6 files changed, 23 insertions(+), 18 deletions(-) diff --git a/Content.Client/Lobby/LobbyUIController.cs b/Content.Client/Lobby/LobbyUIController.cs index 3cf98c98aba..50a25519988 100644 --- a/Content.Client/Lobby/LobbyUIController.cs +++ b/Content.Client/Lobby/LobbyUIController.cs @@ -279,7 +279,7 @@ private void OpenSavePanel() _profileEditor.OnOpenGuidebook += _guide.OpenHelp; - _characterSetup = new CharacterSetupGui(EntityManager, _prototypeManager, _resourceCache, _preferencesManager, _profileEditor); + _characterSetup = new CharacterSetupGui(_profileEditor); _characterSetup.CloseButton.OnPressed += _ => { diff --git a/Content.Client/Lobby/UI/CharacterSetupGui.xaml b/Content.Client/Lobby/UI/CharacterSetupGui.xaml index f83be265884..c463987a1fe 100644 --- a/Content.Client/Lobby/UI/CharacterSetupGui.xaml +++ b/Content.Client/Lobby/UI/CharacterSetupGui.xaml @@ -2,6 +2,7 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client" xmlns:style="clr-namespace:Content.Client.Stylesheets" + xmlns:cc="clr-namespace:Content.Client.Administration.UI.CustomControls" VerticalExpand="True"> @@ -10,10 +11,15 @@

        `D{a`qa0BzL|H2udIa;=nD%W75cMh|c5k;P#Su#IN}Kca1M?eRA%_Wx*jeUuO^+@QfP{Z|0&I~)aCMq&kslJ`Q^d1Jb|QHS5W_xp2h>Pf zHj2eR?xT`2tQ1YoJMGJr^E_AEl2!-WpU#%oJt3t~A$?Ow=?&Fz+1dL6UAINy(5UKA zx$8^1H-j-f^P*|-UStA`G1${wX31fkG`(;6EU!bqG4s^-23c=Lw~}X%kbB9A!^DX9 z^SRYMr2GZZ@O~YYSNn|HDVA(A$*F)fPL?{%pD`SY6gzP@Mf zQF7gB?&qv4a@>KgjbpO1u{U~#!#E`5O=&MAN-$HHVkBeVHxx0$;7nIe`3M|#c}XXU z5Eib_6ep7lUTCY&Omloozu)^P9|f4&Z1VwC=NDVrnTAd@h6f2~pFJ^pCjRNG>O`be z2Xo6DXFS>mjy%l>Ps=3Uo(%EOdeA?im*Scd1eY%uGU0zxds#&e-s+6KK>ch;7 z5ieT_7f;|2yOBHgf^fvOepS0*_R~3SSHWD>? zGrr3=KIIhARzHYe5|FaquFL3hx~y5Wvu4I7kqoy&`=HcByqU>!flS32FS%|9`(K=Aoj)qG$hW_yK>eX7IqV%+`Sr8@u_MT5F#ZopA4r zeb{ozQVFe-bacrfhV+MC+<5CVT7tCJt)xR4WS7yJvs<<1zWqbbWehjE(bKSsNU)4u zS886Xl6wIFURz4fzEg4zrf+)%1YvLig$&>R>nvQp9y!lazWt-rJDtQRh$l3Q<-5m z5g!%~3+w4JHp|$`xVCV=a3pCvlCRAaIH`DDv7KGDiuY763@tg+Q%aZF#u($om_)~9 zm1VNz>6Xm2~SmGFA1sfyqqyFG`w_d8Rw~!QyLhZBfzqdo( zHhgdS{@0Q3e;-5j6I?na|H>f@eu%zR(jo`Yv;pT=CC%J{i%n>G%o(l`NYyg6R0`fs z<(p=q`34&13%wQhIk|^~bTx4ed;8Flmh6QJ@2)TJ?SIcRL4QPl0ATWRp!eh8R{#J2 z32;bRa{vGqBme*wBmtWh#uNYm0?A24K~#8N?VG<(6j2bzA2fDwcUw`Y2$)cj2x4oZ zBu67)Ni1z7w8R7~iPF##EB^?!;SwllImN_^1dg8xRCoO7sE(VL8S>oS+r8|tyW_t7 zB$Ih>i+>I8%k9kUytiG=W>ck!1 z8v;0`5?=Y2+QE?;9O%cHm&(REOMq_lVwjqKqkYLKs-dTYdJMqa&$x&Z02cq_`_DTO z+>~0s61Q;?B>*iRd{T&t0p?Gd{=1dRruOaFKY!TGP7pMod7#l~sA~0(n*F%)1uuD6 z{_yq_4kIB#fMRbi&b-j#zpX4h&=*{s9oH6c7zq(E0P;MfI@5r##oq^_f}me|i*xaS zxH{mz(p#s96Ci1F0nl5E^#ZW#fI`t(#i1{wFDGwK{{CJnmtX5S6gQ3fg{rsw;qfW^ zeSe-y{s^GAmRtbz){>Y2I{39r8nFrh832bm@{>s-wlqkKhZLwU_;7J`m3kUv3-D^@ z-DeznfW?oGKl8lY?C;gY)B$V(h6aWMZ(tTcgrq`IT?M$5Ys*pEPYVzTWGf`7KPG7|%ykG^PogRqUwOb7sNZ5&3znjk2Z z{1LD{2(ljmb2Gy<0`~i8F0BRt_yXWYhG~9ewh-!+%oak{zYJObI{d#kL}H5pJ6r2| zTl>+-nBLVqVSH3*UjfM1G~Kw?=SC`G18Vgg7d7XZDrST6v(4&dTGDSt|V z5>AN1F}bi)VwpH6m?pUZ=&dCe0KFK3Hdo?6lmO5tAS2!{uHKz7hyxL6FwNugqUr!^ zKbXirnLz;nYMfG42m(L@#jFxd*1oQ>1P~Pj(`cQG5+JN~PASqfF5(^mH*tSDD@K5J kSn=^R4kN*9t1ER2cogmyJ5%!j01E&B07*qoM6N<$f>S|f?5q$_l%JNFlghxL zF|l@{y@zz5%yIip(WCYjTb$Y3rGpADD80I{@t9*1mwQh_7Q6oRCqW+Pj;jW-xF0lK zpzvzJwT0e->ZK(GFM>2gg1B>^^Uc-T)iGy(dAeuLMfU#h53BdT|Ni&gcZI4P&CnVX z2G#A4RF6M8=JRXn#ZTR3R-Fucr^SXTFSArUbN}P1)U7+ zc;$0gFCsE=?#*=ZJ(D)Pv!14#x^b0!sY+4Mxk-`uwQDqr^G&P&Z${oS(- zg?y5dCL}hRi>$n$zg*jE=8~HJ`;X=M{wzMTIO2$Kzq8{VHswVco~Jm~RZc#$tUc7s zb3*P~{^$2+Uf=q|w`WJgvaHzCYYt!JviTc!J?Zv^tvv0^PkmbBkTps6?DL1`t1Bm& z*!<(k-Td^=g@hZm?lQCLfBpMuoDtdjde!^*x4-^GV40M3n|^%b3UozzF0^jqptK^<~fkvN?bl1TFlI^QNG*{US7BqtRdaB%;CL(nm&1XUEI9ux#QnV^uh%1O*iw^gdp zO-W5lEX^rVvMVSl&&*57FE_B!hbTkU4iQB))kYtS18hLvwu%f&EzZv=1qHmFp^32# zI51E|5m5lq5rI_)vM9QafQ&xVx zISdR;t)4E9Ar*{oqc?gv8;az*76`1|$M@itD9FY&)k^sL!aYX{X|8V zi{XMF<6Y)Fe<+=o?|7Dnq2W(2vjEG%BMiIN-`$~ihg1F50?}iP8q=>&F|@JY%QIhC z;5U2q;q#yW9JgT5Vsi-;IUW(Edo=a`a{1|6(IP#pTN>B=c9txWI~aZ_HbeYH$?X81 zW77{rzTMTxP+3~owL@It%Yu3T=bD>ohc20WzTc1gW4RrB1%tq^CkL+^EAVgbIPyTU zVZn6v_#ZL}Rr2oY2lW|64zBrK&6ZNjcJX61+X9ZXyZ0;E4m6#p+*{ePAweO-;r(Zi z`%k##TYS8uG#Ct+`&PRrCo6k}m_-ptaE{aL*TP3^jdAHTv zwHqGlJygB$x>ozRPkj2x_*~yj!B)n0EsPh=t~$YJC4DSnYV1LVlKc0j@}@sk50DH4Z7?nuHVV2GE7Ql=v35l zbaD6Zvod3_Xqvf{pZ|c)il--!1HHP*;uPDjy$rE4m$P_^FLzzEC*M}&h0xR7#ot!E zK73#J%EHMD&izzA!QiYXg>t;1}j$VgrycZr!`Vr0S zFzMj3#AIFuC*=vH%_dB8xtCYTC}gw6{5+t=kWqFdu%cwyrC&K`g*>zmWWKFpSf)7T cd)0Hv5A52$lapGHtpgYNp00i_>zopr0JtnDW&i*H delta 984 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 WGcEpDY{*kkaqsEs=d#Wzp$PyB;x1tT delta 986 zcmV<0110>N5by_(B!7cxLqkwWLqi}?a&Km7Y-IodD9@FVODIH99L9exB8@D}LbAAv zp%f(~OAV1Sr7_BD;oduDM$NsZdq*~w%2ru;Y`hjW)@&_ol~Nuh8(S-4BVGSg4zrf+)%1YvLig$&>R>nvQp9y!lazWt-rJDtQRh$l3Q<-5m z5g!%~3+w4JHp|$`xVCV=a3pCvlCRAaIH`DDv7KGDiuY763@tg+Q%aZF#u($om_)~9 zm1VNz>6Xm2~SmGFA1sfyqqyFG`w_d8Rw~!QyLhZBfzqdo( zHhgdS{@0Q3e;-5j6I?na|H>f@eu%zR(jo`Yv;pT=CC%J{i%n>G%o(l`NYyg6R0`fs z<(p=q`34&13%wQhIk|^~bTx4ed;8Flmh6QJ@2)TJ?SIcRL4QPl0ATWRp!eh8R{#J2 z32;bRa{vGqBme*wBmtWh#uNYm0uxC@K~#8N?VCMI13?gmH#T+>?^5%seo>n-7-o zlHJVAZhvB(PDfy3+cTYo#GJ4#OIY@_u)69}t=@_3e)06On4gqS4B?|$&%-bf6QE>a z13<~b27rc!R;wk$6rnPpR(tA&DMDjFz40bB9-oq73f==i(McuerMBDOGE5PwZ$LV| z+zV5LZV9-luu6wbz};3WV`7B&EsEXE8lUFZA7m;o5Iz8{Pk;H~pj?H>ks4*>mlymh{+{lkDU z12AfRKNvH>be-=P-UC3%!UlknMY|v1p6|mj5ZL_yZ39+U*0d&gc)X9c0hx`>p%bW- zcYjpkQ@y>3wgK7g?7#{7i=JT#Q01x;?UtBIaJ-@DKj<9wUM%=mKz9i&CYQ7(cxgOG zdk;9exITelAdYvp4q=FbwgKbL1;(L!&rcUlg+a-}27r=<4FDwzc>}cb09~;22wno9 zWMKn9$-)MJl7+kh=y?EkLj~Oc?3Nn30aLlX+@BBNUZ!%}>Z+scUaWB2>Vvw-<@2(Z z0lW!b<8>i^0jfjoL3nBt@c;k-07*qo IM6N<$g4q$xyZ`_I diff --git a/Resources/Textures/Structures/Windows/plastitanium_window.rsi/ptwindow5.png b/Resources/Textures/Structures/Windows/plastitanium_window.rsi/ptwindow5.png index a4a28e41bf91b9def90665c6bf27947b3f5f70e4..08d493bb62a3540b6fde8691a47f63eac0e80b3e 100644 GIT binary patch literal 2114 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU|gH&>>S|f?5q$_l%JNFlghxL zF|l@{p@(#$$npAPT}h(svPLC49AizC44WsL6bdLh^>A%1{ZMpL)v4%bRj0_ojSs?@ zv@YqbEqigx)4FUzUZc~(Z3^f3{B++29r{{Z?zL!D*0ah@(xdkL6w?#EzV@`;SNU&G<}78MtN*b> zGHs@Et7BW~HH{!urR~aIty^mR?>y}P`7iU7hFQVU$;%b;ns;b;X+3R8Upnci#NtDN z$5fN5%+1s9T{-nW;S>Ls>$9TL`1`gg{Mo#ccVFwi=>-*Qe6D|4TGly1clWQaj$xa4 z{>Cr-9eH$K2ix86DhnQ;`CP~E_}t7SYu@+#`=6!Qlk8g0`x!hx9ks{4@u;uIwTEA& zCC;6mtzCX*@#*=;{~Eu}n)|cf$FBB?kJwUEVEpl=MtG+A`Z8z%*&IL&0+)g(14+&T zkH}&M2GM^Y%$RVpfQNyBxgawnq9nrC$0|8LS1&OoKPgqOBDVmn%cjB#$jnVGNmQuF z&B-gas<2f8tFQvHLBje<3ScEA*|tg%z5xo(`9-M;W_kvC21<5Z3JMA~MJZ`kK`w4k z?LeNbQbtKhft9{~d3m{Bxv^e;QM$gNrKP35fswwEkuFe$ZgFK^Nn(X=Ua>O75STeG zsl~}fnFS@8`FRQ;a}$&DOG|8(lt3220mPjt$#8oLN{e#9wxlHMr{<*QrskCt>l^AB z>SNPal9`5ZVO}vbIDi4850U|DGr+3Nv!Eo|1Q=4T6+rhu{RebtGT7eYk`#R;1^Pw? z1{S&oM!H6p`f&dNoo|zpY*mt3l9LJ!IJkenA?TP>f+`A94+?^uOi;*LffJhtNpZ)o^$wy5%BMLy%T&kXOrSKJc}fB*d+6BFYq&mU#7ItR83hJR$^4v_r# zc9x1lQOU(y7X_ zXZR{#rQ%T9JHgViZ^CxIEo;=39e67ba|wLan!qD--cyb-gXhe?+i%q-6+LBde5E4E zxZ_vz;=Z8khFZ2al_#)eeE2wXncCHjLJnOamnF0r?^H842ph>Su>1T%*o4`6nc8NC z%D3|0nH!$?rLe3JR;-L?Q0D}*{4NyTKDYQ#q`dQA$Md`RjTY>Aey!JENX%X6lGXR` zmS=vMdN?^q6bP0 Hl+XkKLPbHr delta 964 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 WGcEpDY{*kkaqsEs=d#Wzp$PyB;x1tT delta 986 zcmV<0110>N5by_(B!7cxLqkwWLqi}?a&Km7Y-IodD9@FVODIH99L9exB8@D}LbAAv zp%f(~OAV1Sr7_BD;oduDM$NsZdq*~w%2ru;Y`hjW)@&_ol~Nuh8(S-4BVGSg4zrf+)%1YvLig$&>R>nvQp9y!lazWt-rJDtQRh$l3Q<-5m z5g!%~3+w4JHp|$`xVCV=a3pCvlCRAaIH`DDv7KGDiuY763@tg+Q%aZF#u($om_)~9 zm1VNz>6Xm2~SmGFA1sfyqqyFG`w_d8Rw~!QyLhZBfzqdo( zHhgdS{@0Q3e;-5j6I?na|H>f@eu%zR(jo`Yv;pT=CC%J{i%n>G%o(l`NYyg6R0`fs z<(p=q`34&13%wQhIk|^~bTx4ed;8Flmh6QJ@2)TJ?SIcRL4QPl0ATWRp!eh8R{#J2 z32;bRa{vGqBme*wBmtWh#uNYm0uxC@K~#8N?VCMI13?gmH#T+>?^5%seo>n-7-o zlHJVAZhvB(PDfy3+cTYo#GJ4#OIY@_u)69}t=@_3e)06On4gqS4B?|$&%-bf6QE>a z13<~b27rc!R;wk$6rnPpR(tA&DMDjFz40bB9-oq73f==i(McuerMBDOGE5PwZ$LV| z+zV5LZV9-luu6wbz};3WV`7B&EsEXE8lUFZA7m;o5Iz8{Pk;H~pj?H>ks4*>mlymh{+{lkDU z12AfRKNvH>be-=P-UC3%!UlknMY|v1p6|mj5ZL_yZ39+U*0d&gc)X9c0hx`>p%bW- zcYjpkQ@y>3wgK7g?7#{7i=JT#Q01x;?UtBIaJ-@DKj<9wUM%=mKz9i&CYQ7(cxgOG zdk;9exITelAdYvp4q=FbwgKbL1;(L!&rcUlg+a-}27r=<4FDwzc>}cb09~;22wno9 zWMKn9$-)MJl7+kh=y?EkLj~Oc?3Nn30aLlX+@BBNUZ!%}>Z+scUaWB2>Vvw-<@2(Z z0lW!b<8>i^0jfjoL3nBt@c;k-07*qo IM6N<$g4q$xyZ`_I diff --git a/Resources/Textures/Structures/Windows/plastitanium_window.rsi/ptwindow7.png b/Resources/Textures/Structures/Windows/plastitanium_window.rsi/ptwindow7.png index cc1f21f692a0fafa1a9a03c74e8f688af389d18e..82b23102f540a05c48e7c525d126c400fb6b99d1 100644 GIT binary patch literal 1668 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU|g5!>>S|f?5q$_l%JNFlghxL zF|l@{wTDcgNSl4QYp0&3kD^jyi|JIhK<_gK>8LwDwEzdrwbo$CCm(y&J_cX!N!=&+xlevDq}{gns1p+E?~DzPC4D-W6A-{@BOB zm8V(7dyitj_xd^8G+ZBjvaRZ`zwo_(V@DFJyG>-#BQpt6SI?lR3a3dr^DZmj@t^<3 z@vqtc^Ltk5PD^;f^y>QRs3PIMdrrT%uM)f2cs#oxB5+yqub{ne0@RrIe|zdFbfJu^ zKTgz``LE;mwSgIb9#-z(z3?S-%)07(_hZlRz9am({6_|R@xF75{;;NnC4OSrw(VhL z*t?qA^ER{oR@&HXes*hSJfqX2y4}@@;ugRNbs{~eI1!RMS^_3LBN=mYAl_Got6rA&mQWebf4D<|??6?#Z6l{u8(yW49+@RWl zJX@uVl9B=|ef{$Ca=mh6z5JqdeM3u2OML?)eIp}XpbFjM%Dj@q3f;V7Wr!g#b6ir3 zlZ!G7N;32F6hP)CCgqow*eWT3EP?}wJ5!S3_7s#B<$!HTN!CxzNzF~oD=F4D)HBq_ zrmrM34dKGPVrXyx14bVt1Jq`KRhwr)NwNtrq+Bb2?t%Ib=+I=ay~QOd`bY}&jSLJd zbPbGjjV$%y{sTJSCMDUbB(o$Z6&!GI|A0f#F{cDo6r>&$1UZ?YkhRK5%uBabs?beI zO-n4zDN(X3C@Ig(OUW-cu+fJoL)8uuMK#q%ABzKQK;E{B3`#A|&nX23yq%$mu?;vd zP(%??0MQYFRR^*tx{iR1{E~cNk}Aqf_RK3uEh;DiCNHp!Mo{~3t3WpkVR>j?W{Dll z05oAFT}aVmy%Z1mx|$&TyGo}Fj7wP5afhTlyl z^=uc|-qx_)5MT1sxWO#rx$%L03TNjtZgI4p&-jfs^B>Ow-djI;Ht2hNPG`uya4x-} z)^V0Sb4GL7zprc${xh#&T>W3aVlShpgXlIwM%QPD@zfn$)FcBcR6Je%T-G@yGywqb CsAU!a literal 641 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU~JBGb`J1#c2)=|%1_J8No8Qr zI6rlww}wlg%&~esrCyygPMdagFBDN#@#dXqwAAoa_QQMDX>MotE~|Don|3NJvLa`X znAx=)-JGdGa;nnN+DXc>|BKVJ)J#vUy!`X)+|RXhKg(X=+dS><)h`WipWOWs5i)<~ z+{>@yR=6v>sOz>peVP=!m{Y6oy!EOpRkzn}`f)$QN3T*WcZteOWqR*pic{$i?`psh!kB`i7Ii4~#b<>lV)2<30Ro44`k?Y^J1NNGF z!7-;J9!Vs!N-KX@{O>{e_PAB+w@(o1a(cV@{r>IFcg*E7kv} z6nW}8_Jv+jV!yD3@p-uF**lHhz8RHgB-aUgTs7Jn!gbH@>Fl(HKiQ<7aqkuVZn?9) zrNp$5xBB;miPPS+a=l-t|NiZHW5;@zdWM8gMGL+^eh?0f70v>W$YKTtF%=MIoGp4x z1Sq(~)5S5QBJS<%jl3-e0tXKHf9MFU=LxGl$hPn!OF+Plyqc{`MaqMwSw63r{C?Nl zp6wR>|NB3R$*)<;5aG?ZVH#6{F6)6Pu7<554B46t*FOD_`|!=~|CD(Q*Mb;usKFxf kg8554SU;xR(w;)b#VbThcP>1$ALw2NPgg&ebxsLQ0OYzB@&Et; diff --git a/Resources/Textures/Structures/Windows/plastitanium_window_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/plastitanium_window_diagonal.rsi/meta.json index 769ebe5b39a..9c854c61ce7 100644 --- a/Resources/Textures/Structures/Windows/plastitanium_window_diagonal.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/plastitanium_window_diagonal.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Modified from plastitanium_window.rsi by Flareguy for Space Station 14", + "copyright": "Modified from plastitanium_window.rsi by Flareguy for Space Station 14, transparency tweaked by Ubaser.", "states": [ { "name": "state0" diff --git a/Resources/Textures/Structures/Windows/plastitanium_window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/plastitanium_window_diagonal.rsi/state0.png index 7737feb5032c9ac64f42e8805d776a68517bbca9..b25ae0a4a06e4393fd19eb4c032e512e75e9abaa 100644 GIT binary patch literal 1375 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}e5nzhX}-P; zT0k}j5QD&_;K@Lev%n*=n1Mm}4+t}^JN#w_0|RqfW=KRygs+cPa(=E}VoH8es$NBI z0a%w!g%yyQn_7~nP?4LHS8P>bs{~eI1!RMS^_3LBN=mYAl_Got6rA&mQWebf4D<|? z?6?#Z6l{u8(yW49+@RWlJX@uVl9B=|ef{$Ca=mh6z5JqdeM3u2OML?)eIp}XpbFjM z%Dj@q3f;V7Wr!g#b6ir3lZ!G7N;32F6hP)CCgqow*eWT3EP?}wJ5!S3_7s#B<$!HT zN!CxzNzF~oD=F4D)HBq_rmrM34dKGPVrXyx14bVt1Jq`KRhwr)NwNtrq+Bb2?t%Ib z=+I=ay~QOd`bY}&jSLJdbPbGjjV$%y{sTJSCMDUbB(o$Z6&!GI|A0f#F{cDo6r>&$ z1UZ?YkhRK5%uBabs?beIO-n4zDN(XZE6vHV(TAu&)d>+rHPA*Mi`_OLA6rERr55Ms zl!C(C&dAcz1{@A3qKMFk=!n3o16dSZM?gk?Nj@+&6=f!S=9Q!t6%+we7Q{xVeYjPi zn}x7EG%vHn&IoD%nlO?sq?oaCEGj9_FUk%9#{wh>aY{ptfCMK}%7i3)aL@zOy&ad0 zK0FWEah-lG(*ew^6`n4RArYKMryBYlHV|oxy%AU_F4khfHi6 z3n%jFtdZT}sLFRCppfx}_)B)-ImfQ_{bjQ*jH$1`_xp2}&%q7fUK9s(@&EbqdpCD+ZOWhP-t;>d)m&L)q=hj-6xG6G&5&hn`3G|sbT@|yIrz}cP7NTb9Xc2*WeQjIQ<&ZCPi#WO8w^edh?3@BJ8R7Z- ztl9DDoGkor-&$Fe-1`;(;85u2b@$}B((a%A@^FtSvz>+gt5w_tk5Am-b++W1XXO*=iX7h}XOKx(n@Hy}QwF zf9RACHHPpJ18NBR2Qe4|ibhZoFc<;~L4yJbUm?mgNDxIA4NT&DcWrka9ZpSb(suW} zzvuUSKYjO7ds}mj`+m2}<*I3kMmpd(V!kJgho5?1-*51%Lhoo^;M#e-?lOF+Og6+C zT&`VftB3fz;q$~ybcybARZlbD6|UDe*ScKpD{{Qc=!z|31vTyEMKuAuxpW4iU9Ql) zT!t5x0Ru^Zq^yKJ*Y+OpAhH6<;)8KxtY^5J5ahNxp>D%P@{IG$RZ}WwXY;&di&&=mbwYM8z6gyD!6Q zIxx3F*i%>wgz-FH4{82Fjf_ zfX!l|%IfQ?WMp{_G$i4GjAbj?gr#au<}#iCACs-~%l~z%$2KDWG}Yx-<^P`QVpj^? zypjYWhZP#KAo!cY*tK#_Mq$iG4pGSb`7?(Pb_s8d01?7&lNHR_=q_`XQau(rK;rO) z5$0!J(Ro~|xa7`?&f`+WVZA35+2F{$r4izyj`=%n|Dbfj>mT6!G)>VVY^1mp-!A7s zsw*PH9~9kO1r)SmX^cE5qqbx;HOGOiW>>~>N3(X9Erl0A_yj9exP6*W#TzV8;I&nQ z_tS&xD+l2{Inokoh<7y~dS#b#5TCrdrge{d^QuYPzMWE=o3h$1?LNM3>bsj(y|$)` zzc{h>Mt$u!Yi6H(FgQ42`c&cYt+!SV+}uo^j(#0K1+xbF80d*?jn`h41s z&#E#XwVmO|UDsw@ua0Vy>)(v-KmXH@_vGrUJ{Z4l$hdLuz<2KqWYaIdc&XAee#QPX z*PeYZdn9o5aw}RfbZN(_D}$$7D-mYPzP0^d*3EkO?fR-G$8D`XJoCDC5uLwb#n7?$ zr?1}B?_myH-B1^-`tZneo&DSELNhKlPTJ!B`Jt*)72Lq5bNVm+vGnG;6<=(B6&l%k ze#^eD_SyY!e3II8wu8Nk`*qIV^BZ5NII(K(*{l9V(srHiudmuk%|e!9+z*NQ>(34B z)}!2w+6!xut##)rS8jYjxHT?uq~X5Ft;(e4lV5#2E%pq)@XreRC_Ukru;~}`pM{pD Lw#d!}Pd)z^&dvN# diff --git a/Resources/Textures/Structures/Windows/plastitanium_window_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/plastitanium_window_diagonal.rsi/state1.png index 834b6261fd325fd9c6cd367f68bb72c7d7f57e0f..7185af8426c5949c3803086b2d527f4749ab56bd 100644 GIT binary patch literal 1343 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}e5nzhX}-P; zT0k}j5QD&_;K@Lev%n*=n1Mm}4+t}^JN#w_0|RqfW=KRygs+cPa(=E}VoH8es$NBI z0a%w!g%yyQn_7~nP?4LHS8P>bs{~eI1!RMS^_3LBN=mYAl_Got6rA&mQWebf4D<|? z?6?#Z6l{u8(yW49+@RWlJX@uVl9B=|ef{$Ca=mh6z5JqdeM3u2OML?)eIp}XpbFjM z%Dj@q3f;V7Wr!g#b6ir3lZ!G7N;32F6hP)CCgqow*eWT3EP?}wJ5!S3_7s#B<$!HT zN!CxzNzF~oD=F4D)HBq_rmrM34dKGPVrXyx14bVt1Jq`KRhwr)NwNtrq+Bb2?t%Ib z=+I=ay~QOd`bY}&jSLJdbPbGjjV$%y{sTJSCMDUbB(o$Z6&!GI|A0f#F{cDo6r>&$ z1UZ?YkhRK5%uBabs?beIO-n4zDN(XZE6vHV(TAu&)d>+rHPA*Mi`_OLA6rERr55Ms zl!C(C&dAcz1{@A3qKMFk=!n3o16dSZM?gk?Nj@+&6=f!S=9Q!t6%+we7Q{xVeYjPi zn}x7EG%vHn&IoD%nlO?sq?oaCEGj9_FUk%9#{wh>aY{ptfCMK}%7i3)aL@zOy&ad0 zK0FWEah-lG(*ew^5uPrNArYKMr)~^nHWYAWJvYkgL7EWH*Ailq+h z^A%883`Q6&NuO;r?uZ{ouh`GLIM|ms@OMKP+IEA*~ zPjjOi4exBXX%w0BD?5nU@<-Wkv;7AwEz}FnrmhqCQ}ClmM8;CRqUcfO-%T@hS)14| zy=U#b`s(D{GWkTVAFtE?+I2TPaA<$%#^>0?-&7oL%i44~r6Ng%qt|fGPuA&Cf`_LT zzh~cmzn<-g#JQBM!X5`1dy3D+$b@Dou=lT?+thtsR<_sU&*TN(FdcCZKX4kwm>kz2$@^tlcS?83{1OPSNz?J|2 literal 3208 zcmcgveQXnD7{4OhWCU20s4WONUbvo8DdD z=Y5{v^Znf0E!|xmbDHmLMi699yfc=BPt>|@ZiIJZWaJ8bc#LF68?yhzg74vCX0|oa ziXd-{&Auiy!1XMxv(G?~*|%Dk2YL4SI}oJ#2RYSi_9m9`qMG*!l9~p-VqSyX2ohRS z)C6%gFwr!~%1YQfapag6m8GzE1(P5WS`-Y(og+Hv8R<%iBdbMD@-B(YX$}>6h>!=S zfEM#P#o&u!uMNz@-xeA7qBe`UI_zz=G@`wUZZxXu0A+juOe6w9G|2f#CK#lH526%7 zGC1MK{RBq&d79v93N3xSP#ubfbSc9pV@pfw;417LFinle@j{{CEBJk?p2bOy<8Xq) zDGGxem@%xFLJ?Dpg$_swCI$>qmo-yX71V+i((0fY_CkvtSMpi~TQN%Uf|0|Ef`*em z!g9@Kl*9_3HmK)p3nUQ-Igkg6X+U1G!mACarfLkRQ$Sa?s}#TxClVDMb#2M#D=G}L zeF(Zyib`E>BQ>l6JP8bSP!~b_5HxdP*&9>NOvbcI+S;kI3l!xkSgjq0)y|rg!VvU= zkLo}$RXwGuxrkE^-Q|Fw(Wsq%^xhS+BB=%Az7Sq3VpTvj7KjNZh)@LO$A|z%(J3;( z(=1QY4-h0z5H1LZvkD=hN^)j+5`lzON2SOhPrxtbMsRUfBft`u1XGw6hMTv7B8hxP z)$@WGk@G?p;F^*R;giG)U!^kmsG3uCXb_0_LwG%M9hsOa4qC<7s))dV2{0;YDfL2| zkadwt#GD*)npsjsS>h*kv2=!|Igr7Egv4Sb2>`~4OaKE6D+yeN(PpJ2174R_P=Xd|WY10Xh(mMIgZ^LzDazDY6pBU`$$+Fd)$c#-%|JBQhK(`bCxo zQoyc(YVop3CE&7V2wdOaj6aYe1e%5ZX6PyXb*yxO)u?$?m*Hp?axMsd7GBM*NNAKFAM2zCpQA^bX8S)Ie(YxPoY(B=+O1pMHn zbuS6Jx2pyFZY=2Dt`?k>Tdv4vgeqyOAy;Iq_q6ju>4C>T5D74h9}b#Yay5UqTm-q^ zm<(SihBXTOP>U^5yHQ81Zz?g@h9l-=#&t%sXO}~T2SB)jnJS+?tySd&3lw;4)#3T{ z@yyr(cuu}29&1hYc6|JF_?8Vs%hHY8U)UIbdDFS#%-M6#g%^yWuUtZWEOY})=DlUSI1>C3nK%#&ZNzjom4mPMXLE0UkgJ9Q!X`nkp{7pU)U zA3u*iG8$jG{MXB#sNO=4okdvlb@uo#ROjfrpF{nF z$JTj~&wl#xiJ4bFUz6UU>*LJm5p5*aKlf;Zrk~m~{QKT-?|yI5*Xl!yn@)Iq`uP0u z`Fnry{Z!*CJ2oymo}do5 bv>o*v^j$q%*nPU)`a2MB?~3hjTeaaYGD7f( diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json index 453a3797223..8477687a8c7 100644 --- a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github)", + "copyright": "Made by brainfood1183 (github), transparency tweaked by Ubaser.", "states": [ { "name": "state0" diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state0.png index 8ad1f325b352c75d7f7b998f9cb704bbdf06410a..9f76902acf6b3a5ddc8b0fbf20bed46d429065aa 100644 GIT binary patch delta 1264 zcmZ2p)5sS%!OzP=1vKsE;ugTSTW$v~2`z$3Dlfk9&y z2s4UXDQ;q5U{0H8B|WiQhcCi6K*2e`C{@8s&p^*$;@7&#D;O;%FJm%K_ADq#HmS%h zaIGk@RmvzSDX`Ml&jgC;#BtJK`q$o4l zGp{7IsGumdBoU(8MjvbfRuz-`xkM-5=Q1=$@~xF)QAv4zQFaK}XCSBAAO{AD^yC%X zX7z`zMSKN@xtynqV@L$&(dpjV!igen%bgd9>xOcr1qJ%#Y+L(i*@D?#E4UA~a+^0r zAKVpI?({l-#RL8i>LR;J9xmcoR5p8?;88WfE|2KhPQGV8TfQ%_QrkE^#!ln@)0&yz z=X~Gu{LGclRTl5&Reso${-I(2?(eDl){DzA{Co1OK87i0|7|{oy815{4R(abE&a9o z6~lw`X>mJFF#i9sVaN5YA`!Rt*J|;0{aj~}kjehzPs)bZ>NW4*Txq!fQKaJ=_w{3C z`TFr|wTcd$?!N6UTk5bS{QK&AN1QG_m0@?w=dt{-_0TVm<3S3y7D^vnduG~qhVUnA zBxMsFwlFJfJ?tb?FH?P6QsAx4omI6-W}Ds5S#Dpvman6XF=8uooX!-tpqCGpzsXpT zt10ld!7RvnLBn*e`?2CIe~QX#mh19G+?raP>z%z^UaO2-&X#LIW?WFU)RaITDyL$cg3u|E$`#p zie5zk4Xg}^d0Vw3t;PM_*6p7s1}of(UU`>E#D2Oz^SU|F(yx^*6Ee5I4bAFrUeI`D z=@T=DZ7i`;uT~zYdm++MrZoM*7q6|dekJZp#ZFfiZnc;oRBw!WeXTSEI0maskib<#A|Q1SvRv4wyZdJ_@17$u~fmgzpv^F z3?mhvH>}rL^IbXRpOT=}hnG8J)}F7vylT7riqE@l=_+J9bXW)_$jwQ#xL3)MM zt(%ASM4tlfP3~De*VuZIm3h-=Cxv&e-+oCsB%EVtFT0jB-J$ltPxp;eZ~dIembu}5 u@!agPZy%DK(;J+vt2<}u{i^!>^qRceAG>9SyFc`U$}dk>KbLh*2~7a(5g;u9 literal 15911 zcmeI3Yj6|S6@V9#0(KH=T&Bh)xT;LjB(U0tp1UK77@O245g1!Brh_S~-Icv#Nh`E# zTbP!RKu9U2G$BC8JQAL1fTV*lPAI`JlaOX`ikZMbdC$-~G^NH6nt%tp^sZ!E^0j=2 zNix$vyQ9}R=bm%!{m#8d`)5}a&-mFR=|4)xFzk_{!h#a;ZP4DMMu1PHzWzVpD=l0& zN5Qa%exSXFVGSF{VHo?N=RAVU>JMXNU#^A%%^)jIp>Z z_^qi4qaij#t#%pnw1kFoPq86ij)(@U$%gZ!&2F$WCdz8JTkMk!G)Y+r(oC31oHnx- zlC{u=-plAt2fv&V!OxZyJky&FNG@ZQs)kvDsH>|p)tOClq>`W*h9O9rplKY8z?Fp| zm5bsbB{v?VFHV7|@DVAjN^;1c#pQf*jp{NQwM6|_@4ABF{zM_AmmQ!;M7c0QnMfj) zlfd`;gli&!*wh4`5CdXR45^yf}F-(WChYDJw^ z3lQ`oP3ft47luWmL{#LO2ro{n1xv|IwR%Fy^hKp8*z%hOY zW7BG(9bOP3F)uA{Ogk`R@^Vn~)wY4h!xn`Ul>^HuDsTgZNdhzDL?0;%JcIlElm+K3 z76;DQd_LUg^U)47=MZS#AKM!P-4iqG4c(U=gigJ18)K&^#=(Gvi^7l#kIyqH*q}r+ zBNAxmTp($TwiW@bg(9sMlJVJbJ0n;FU6akQ>m0OevKe+wcs?JJ zR5#t54N@n0X*UM(f2~q*4=cKDR;$_SBw#h{Q7lEpKzV@#{XZFl?7RGtSkZSG6^f-NfqbM{vXi>+7<^x%ETo4ensN+KOfvh?%2nbr#aiRG@Rvi}v1TE^g(0m}P zjtc^U7Ij=`K9E(%1pz^eIxaLH$g1OlfS^Sk7n%=b)p0>U(4vkD%?GmTxF8^CQOAYm z16g%k5D>Je<3jU+tU4|T2wK!}q4_{o9Tx-yE$XaHx?DW?RYOhL>MUcI^KjK`D?i+A%U<4b zrR>ed*2b$FR%Kx6^1R;zZS&Pdr}yoD`kZ_AmQ7tfzS9>+Pu(Bs%E|sA7~7ru-^m%Z z+YU8~ul)JW5&Mmdj;vQ^cf5HFFWYK8aJ_5uv=PC(b6?*1*=TG}L3Q5RtR3%{);0(y znp-#TZra`1m>G<=R5Hz_<3}yq)v>l>UCnz-Pkb`2Vo{FwK>O>P{Kf63*Vs?2tZlnJ zxnkqlrZnu+oqs)Y_2qlZZ|rS)_C_X__VF9e?;Wa|x%bc~)0s=*h_O6r11ILD4__U>=XTqHi$bIyy3vPD@F1Gu@Yd9CUOE2kk zHTHCFoV4Wa`P7Eyv6ze*(vME8XkF2|X2!&eE-?M&8CyF8otd!&M1nQ3!>e0FiCbLIlWnDto|t!Z^_ZM%xcXFqUx@#5gUZ0wFt;;I+! Sxvf3QT{LY*!MjuEzw|%x_1DV) diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/reinforced_plasma_diagonal.rsi/state1.png index e724d3b9f78d115d79ca3ded3230db216cfe4056..0d651dedf6e8fd656889f5362d6dfe8439c31e04 100644 GIT binary patch delta 1257 zcmeCJ`Num!#g?%+$lZxy-8q?;3=9l>sS%!OzP=1vKsE;ugTSTW$v~2`z$3Dlfk9&y z2s4UXDQ;q5U{0H8B|WiQhcCi6K*2e`C{@8s&p^*$;@7&#D;O;%FJm%K_ADq#HmS%h zaIGk@RmvzSDX`Ml&jgC;#BtJK`q$o4l zGp{7IsGumdBoU(8MjvbfRuz-`xkM-5=Q1=$@~xF)QAv4zQFaK}XCSBAAO{AD^yC%X zX7z`zMSKN@xwxl`V@L$&(dpj)!GR*J`q!npG6D=QIH`!e6fyOau(&9oc235^urN!h zxHOIFA1nJm0ikxj-p-GPx&c8vg;D z4=R`6kc+AL^XbY1#{VBSY_KVil4JPy=3Wp}&i?xQd<_3GzPw~D$lvG5|LrQ{fq0!g zMH89-{q)>;Z@Wmut?m1!v>mC5m)Wp|*``uC^sDf`@=U##-)&eI{eAVe^VQ$)+h=vj zeE4+g-0gW*3b$tWE;IjKb?2!JyW9IY#SgN7ew{dPslyg$^QPasBGxglJ0W?w>QF-l zyF*rctA)k4b;k7yw=D0hsx2$r<##S}``Xof9c7FWTbbj|On199^NRn?iw@U=6mBuv zdc195iaQm4N0;Nr*EeVK!h!D5e$L?aw&!Zl%#HDUHpXvfSZrjTR_4XKwfN+g)0UYE zMOAaGCNeLY+bps()Ouo4aIw@0zc)ty?6sQVQdZkIbl=XsqW5rR{db{#za>ttOtwtO ze7<1EtVE_S^dom8ozA)DBF<3 zxyyuQ<$<~vA{}K)(;s~C+-g4OMW2`Mw9k*S3}?>synd}{_2H1i3uOe}&X(Waz9XgL zq`*|A^qgpxb4h0yr?H&-v0t-Z;O!Lg+|+lI`(NE|oXn~*z_<_a5Q*8dm zmC4l?&)ss&+Fq?`*pjZix$JJm+c*C$5;C`+U$L!x_bZ#8D^133UtLzs*?eu)`?>WO z^XD@+*vCiAOP}o3yD`q_!kHM}g|4M?_ug*0xR^0L-$Z)l%8yc(>^lTkG~BOJoZsW} z;=p^ov)kGBl+S(lt+rHd#a$*Nww4ZMMz#lQwttIiKDRH@vij+#8}AQ&uPMqh2`=V~ zxOGz`+&X)kYiSudg(p3Q&f pMMtOb%S#tZf0n=M#d7Ws|C$S?y64`_-w7(XJYD@<);T3K0RWbNBNhMv literal 15885 zcmeI3Yj6|S6@V8?c^Gi0)ABMTvJ#v$j8*CC8V>@7I3tsQ8?2RR@(5@}n zF2s;93~5s!#A!_3m}wJ+S4;<}sY3`!!(&K!wFxD`h6Fl=g6nu1V!+Tq?@G2LU(0ux zBs2Z9JEN7(J@=e*?|1Gw+CRItAb-yIgsBM_hK(BveXzAU~%$gTDBMYZ|GY;7fLc*!Zga?$FXW7U$i(hxf`7up{Hz`6@(Nlq$p_LPpd>1_n8CIwP^;uGiy<8(NZc zssVyNq;V~!;u;^17xI!=k!VYARt2xrI+ z_DW~@c}5of#iHnTgil#PKSE7bR_Ih|9$zSUIWZvp*p9;{(R@d}@!5>bJ1BxO=m@ip zG8U6&+GwRoV;Vuy1QFvTJQMQa6gk0F6ZJuY15GJDNRp<^u|8sE!ahL#aE#2{mzUVN zF@89fc8PuuBRd2SQ_kZ)Z@C?h4#v!koGLm?bc=qlEZ$+T$T4jrDm2#{zy(}+* zWJobd0;viW?kuK!;Ap?XEjYq$gA-YSqoYBsMwiuS<6Sxn!C7@A$@4lJYclJ2la*s^ zF00L~3Gs;(3M#kQb$<%GJ?0d7!&6TosEI!(UtYN?vD;!$KN<*;fyX9TLw1Hb3<-Cyv`VB zg96R-3!t4d?wC2sUO2E9lhtA%ZDvMCxR^4X(FXQn1$|v-;!I^^nTw)Wi>-ezaoh|F zl`ANDuYuB_cJYL5nIbG#^N-;(~ynMHLsC z52RIbK|s)=iVMvL(yF*1AZSs=h2{fkRa_7dw5Z}j^MSM~E(i!(RB@sCKw1?S1OzRr zxX^qct%?f*f)-U=Xg-iu#RUODiz+TOA4sd>f`Fh!6&IQhq*ZZ2K+vL!3(W`8s<$5<^yR}To4ensNzENfwU?v2nbqKaiRG@S``-r1TCt#(0m}RiVFgQ7Lm9TqHm`1 zUhq0<0K9jax?s#P@Xo4+%`J3dSnUi9tA8HDdhdbns~A>AVA!=%@Ve`37&b|KdFkQV z7&iP+UUp`2@Z6z>ne*B+CLejYxqiYM6O*Pc`}L7$x$?xM=>>1<8ww`PKB9NePrFf_ z)m2`4@%dNUl8e$dG)fh-xD zx;Dp@y*4|O`~@%+fjKc$9c|stOwi!7c%g3 zZAU#tO}39mVV4V*2C2Hr(c;|w!|{>pOTRo>bov)JMzmiCj`HqlZ)WaK$zQa=Tzsl~ z@34*4Kic(Tban+;k4d?%}bxQiA*PEEcuMY=m zPU_n3zGU9)-u2wXtN-j;eX>e=XwB2cE0;%N8EZe=`u*D*60nDxm#5S{)A&Vd%jKrJ zj{KxauODxlaTeTrnpUmYbAFoXK;euQzoz!&%b9%LG-~mg+BdfZe>mIePd<0TJ;~H) zd9G#ctv_%4)Z6*S!q&9UTaMk>VO#fv^IyH=q>7@Y-6Jl(@OIv+uBR?<+j8@r&ZapH zoAw&k%*DFej!JWYRsMwhpEfPIbm^<4rJWb#aSV4SseWGi?ytL>D(kP7l55N+tbP8O z2ZnuKdav}^>dSxauD#yA_qWUa+-l~NKx<%3W9x#pu2)<98DpAF_{ooN-@STsS~5Ou y7&iaCo(*01ny!pVJaj4V?5V%6E18Df9fxt$((UVe$6r!j*v`wz&u*Djy6S)8Ho|uR diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/full.png b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/full.png index 4cfc4c45da5178cb9fb00132bd47b9570301ad6b..ffb90335d936ae9ca6c0a0287ae2d91308cd7df3 100644 GIT binary patch literal 3504 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 delta 2486 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 delta 2924 zcmV-y3zPJKAo3QFBYz7yNkl^%I~G=8N?Y=_dS zs#Kv?1yLlB08x-CXpo9PMS>z|k*Z42{wWfm{2(enXoX6Jgep);X++gFY2Cz*9ow-T zzt`T_&f2^7uJ_)(_s;OcUT5PvAbK}l_mi$xcXemZoNvyVnSXoExdeH}m;K**X205m z5u<h| zHE@X$qaST2kAI{i=T;bzkes_1DXs{WEI1}8w*V{dlpa6SZN_I4n&6NLg<`EbzT<5t zax#9&y$Y^T03cm{vKXu9lLwCdqH(pbT`ScpB_ClFL;{2jEdOiWy!!J+353vw?+5MR z=XF`Dlz}pL!uJ9JAdFB?oy->BON+(7uk-LLG3uBi%71i1!NHuAfVpUCz9uyd09Rj{ zXMr~hja7%RwXFpYk&gmE=OIF%R`JAN4GR7j$2fDzG_T8VnVR z+2JrF)cqQkcLJKUR=hv(F7`cKMtDldaxue&k1h}Z-awCs6du-C=!*x4S|LjyM70xK zb&^7@u79tRos>}B%FnwC%%rc0ul9VyFcxe`#Y_#}L>|yOJyUdAEQpP|83Oqb3Ic5W;pU4*0ZW<>*jIT&^;KY#B8j2Qj2?O2({c4FEM}MQi+Wa0P&xb-9!4wu4-NFhU|9MCH5B)FUx! z?tdJU>X(DdF)Lc?mxIf>mYsJ3LV5?k+B+syb_Z>(lA-*e0)FAr`>GOT+s|Z_k6F>u zT+7cp0h8t^X*tno0e~Ek0RUZ{J@)#L=>VGxVP@v<1PQK>l4t7w@uQvpX+*CxL~2$e zdR>`Xxw!A~V&BG;#mwtgs`Yo(o`F;INq-^0fBp8eMX#^E{A0IcaDzKy0olp}fLg-j z*u@kBATrNHE-!1%TB~{6PCg~v5dt#GXSOgW1;>9>x0n0lEIDr4$*HurvaQq@NnOr+ zK*luz8qw=^-e+b$vyWS=HUOaFWHBFjazXYUP-9djY?tmnb+{%VWA4DM%4bll1b^q! zF)qv{n>$G^2q9wkp7Mj7xWG=I&wvovTfagsq;$DI&g#DxFt7DaDY=lF3*>}=ojwoT zR2~3?03CaKS}JWXaw;AvlnA=~{e z_s3ajr{CJTO%Vy|!fR`!pi`69BS}%+QHJ5Oea>yV{nX$-CP;`=akw;@ntx3*y;e>F zz|57fyzfY@!%YDQ!2t+v38)nk8Tj@BD?U^}n3qZbG}rQ7!ZiWyr>hIN5Mup`VO{w_ z#A{g=x$ktFL1n_cO{zi(p^0%bE%~T3_``@!BtR*X62cKa0C_(QxhA0hyYmSEh!1bj zK&LnD7%KWtg=ta9!vUC727iPA=cZ6r!!fJ&{_Y1~+hR0SZxV zg{YQFbW0_=^}kyH;q(*$z~nhe@413&3poGq)UyjCi*i*^ z%{hY~4f&3Kp-otEM*u*ycb&eq_BXt^`1EJn0szpemU1UCW+)IsKnO8?c}@<73Qe9C zHn(8%v`B|SA!G5awSS}$wyovfxLwj!D6*?U@&(tsK*yPC4FHzjOjt92Se3zn&;9C% zkP4|%-0e{Sz**-!)|ay8{~TA>hYhKuqsSDF5ZD71Dy|9W`_8-p01G3Fa_!Md+u7ja z;!h`}(&m6oej80>p5vxq%tIaDA(dHihfsxD$U$7+EnK?*p?@G#Lo;&q;c}ZB98@N( z>O?7@8k&)@Il}}1p&F&JD;sj-Gv&_Gc$B19?7T;$fm{$E6ZJr6JtHzviA+>b$V4Xc z;fD@U?*UZ}-s_d+Vy3-w@tmwzD1vWrQRpq=6LaHe(pqz&gDbdpfu+l<-t2sRGL;Nu z?zts4Vpg=W?SIt4wR@KD=vy3G-zKko~n>jCVRzfU;p z1Hfjq*yP4`iEB~4&mMbzNhzxL<$dNea7{pV5kt(1mM5I`Ar8K+v`V$)&Nh0joc9Az z2Dvanb&G`ZgtI=9t$a3=pv10EE=i3~m!(%PY~(!wCaI?0|355iVOfJ zI=fPPAuo{k0X$m#*b6^-@Rw;K6LRFGDkc1;?!e%;gW_srXyA?uZSBZUPqUT9B z^7Fn8?N^(`$OmIG0657_kC?x5T{5oQ%I&Ja{C{#VvSdce*PQsYTlsk>U^vxBTTV1u zk@HbGF=~kM-&~if@2aqwO0Zzg*6h}1$&8fm=5C(^c_$!)x(7?`z9+(@=1T#SZk7t6 zO05g;Bq5_buzAjKD|gQjV6AZh+>$dCz^x=?E1xUu2?C@-Mk42qCby}Dsz^&ytxkBCv$Ohm1R3J0+d`tN;0HB~rV3Pz2 z+5mjKKYkvcV79NkF`H_12?vo({Kpg;ZQ)DKK2qBV$ zkdn14MiNu*qgyORrc~f6Sh(&IlyM{ddWCZfE%7=5Q^QF5fn=B6N8wd^pJFs2gL73#6q=aVW^34b9J zd@Y>t9&Qa8MeUmFm#Ms4000Of1Z5Q73Z1ME8{W=8)*7CA#gEPPK*TSn%#EocF?~Af zA&k(wf8StHnJ5L#nu6!t$=(wL5JoWe&Llbdc(b^6W)Y*$EirD27@;={C}NWd1X>C< z0N{fs#oZmF#R0000~Z5XqyZEQ?h9id3h#*;89>58O7 zN=2P=$)$2XE)k+~NhCr~|Be1#&eM6H=e>P@pU?O5dEfVWe#dva?U0vImjM7k-pSFy zT{PQ>yR?*Oyh=X!LNtMx?mO&&;^uX4L>mQ?w^OjIE1)M@ON+X=wRi|bBaH6o!vug$ zS>g^-!E7i600}zT)0^e(>VhHAA`I|ES`f*A6G2~QVL2GlGJ?dy!#NQYDig!8Ml2&R zqP5tJLco_HtZ-|Dx9e`WJ&i$vn;D=D&{Qy82q0tsdv=P$C67{VBpf&ENhvHt88 zi~2IT8a2I-hU(h?dyARFDjXZGy3Y_U*;cJKO7Inmce4v7~!7FNAZJ>|B3nPXGPN= z?&!(`Sk_v7c;W4RvbfkD8~zvUsqp%=uM{TH4sxg1bq1HJhHw)V7dlif5exGJ{iir;u;fa4A4g2pdiON;qPp`WRTvFp<0f&R2-Ezc45OEF&} zH=oT>hV?`6bz^zaTQ&3A$=q_Uv*Tx#Dij+ObJK=3)ozqs+eYF%EXD4WsaJc@ zaxV7rRvRCjQ(s-2PJe6N<9&%v-7bPrH;TD(6{&8a4<8izh=@c?*FVOjDuu^On3zG_ zs;d(TiM6|$Ze}3)wk|=b0awE&C`;jFUl*RYk}rqiUd34;ye@qx_y>Q+KR2bK z{@}>w5o$^8^)GVYDGgw2ScGCNLj;9Mi01%ezO097bIb7q9RU{rbB0??}2rt$lM zy?pMQbp4ZA00b&UaJ4!a=rq}=@yN;))HVK`lQbkP|I(S!CaZTrr@DcjnSb!kwANgU zPtjjq8-VJ+{p0rCo3PxcWvN)aw&d_aKp6Od+SnGk1uQSoq^oO_c5STNXHhIGyZqXa z)J-=NUYg}7duRKb7O53h0XujX=Bq#;Tfgu-0PjgWYf{k{z=U> zX65GkF$t>2&)wcJUEcufxV9w>+_ss3?`z$|m}y*(TT3fpn=5P0#LkS=y88ybFRA4} zRpE2h_7@2R3+Yc#V9ERhsVQ#5&AbW_eNE( z?Dwwg^(1*1T3be-U7~Mk=zS}QXR)^nU zS4nDp-21Mf2oR!uydJ;`XV?b%vKI-oW3q4r_mYC!wJy^m~l-F8^-{1jxBoBMfPp$1wQeUyWO zfxKs$M<%6=qoPjGsI)e{EK8l1wJi$?+=BAmi>2Gr{b*%FZ4fvIz1r_+YpAz^#tGZ= z$aY!hhwuzP2hhXRdADfq{dZ+X8v`fVVPL?-C35}`!Fr2{V-~+h%i?oi*$ux7ewuyT zi*OrM*^sXTj7E_yFq`Tu&5|~`jwRkkglI6`I&gRdnq<1A z=Yw65_3RN%z#1RIWsl&eB*1g^c>7oPtTi{&XSjlmloHm-=Sna`HT8utM&EQJ^?CYl5d;T_Zj9suZHnl z|2%hp19y%y{bA7SL2}hx*TL)E(A8Zi?88cI@U}$$XDkxGr*n0 zAl0 zORRLQ7)p`QOasTjcO0t14?yN;CHPNzOJ%*|#Q6R=pvoXw!yt~A?=}F*+YlZnKC%%g dWDvR}8M9{L<%^57L*l=|&paK@lwoNnxlIq@{%polfa=ruTi^ z>!RS7?wj65dy>iYy)!evch9}|chCJOfn*%2KYpSwe}7r=-`i5Qo!vHX5&+m_ zBzQ6Y=kf0kiNq%&Uk(DNn$Mot+|_1thjZ`V^*@u^mW~7kfaH~aqY$qcMCm%S;bW2b z%F-VxE!tm5I1hT$TBuARBt-D&T3&D8x!EEbQHVyC;)N?vdJD+@o&Rcj#K9kL-oX^h z;-%ADdFFB+b$|OJU=Fwv;z}W2i>btjsUL{Mmo7lxCnH}z_+?UwBn-wG`2F68dR==g z4*-#bp(qAX3h}l3D)pB4Y7UFUm)-?_{o$MvUawOp&n-qduX{F5doEwl8Rh)Z)oG^~ zpX$!qqVc7-faI|UN6j&3=7K?C7JpnRoI7RfG+u}|AAj0**O?7RMdGU>Uk(C;r!thN zpxlN50K@cdV}r4NC}WMSjcV}`04T%<5ns9h01WOnWUp`l5Y^%%t_bNud=SB<=YWhg zRtwB6oQJ3uPZ#5ZfOG+(T0E7p#u^)p^{J=fMIl{)j5Sv47P9tfcu`0fAgaYv-uwK- z<`upWAAba-3*d*B_yE97fT?195Q40PQGog{+{Cx0P?mT3#`)qrEml+u0A`#0gF?0I z&j~@~1z{)nQ_J~p{k7#YFa`kXH#Cd!dv7F;i#~%0gj>KO{np=fjUqgq|64K;NDlD1 zHm`8TlkhSTNDlA{SESz--Az*?$Nm2h6|rva_49i}IrJMNyJr&>N-- zjnzx>%ZZW*;1+IZnBJA*@1F$10u0l;js9!5&kq4WgRy?781KEygzzx<;^#XitZ}E} z@txQs02PX^C;+fws(M_}NFiRwTcS@O24Mlx=X0Uq?zG=<7Gm4 zE--!HJdy1;t^A(?Js56tMwN&Jfb7l!Clye1B00j{?lX^o5H(M6XkGQv)Vt7B?%`RnVTk z^QuF+!z^wV6A*MG#JK!PIu1)inU%cJH806d*rnQ-1)s zbnAlAthe#`-(7A5A;5w}HqYu(W-`{?*<@x0vTC-UlFUF>?P}RguTNi*z9bjOblClq zVrB^}=2~1D)#7vZ@TxXO?3>3%^{R~#={4`6)JtNE?%{=-H0it29s+5Ci!6C9fF4&v z_XkGRwj*`scuy`AMBE^-EK6blFn|18T5am6x5G^uscbjw-dmT9_Hc)EFI@5^v0-|* zky#wot(7@zf+5nXYt{rqXG<3yph@XnA*dxW!+Uu6C zNqvBSKmWh(1Lk-EpATpRfK?yhV$}z@SoHy`KHz`m1GMUp(y%w?06?Tw*M9)u`OaPW zmEZ%UKfrpbwqSSgG!;9SRfYpG)^*i*+mS{9wi!t9|X(o_9pz zOCN>+fKkpE<=jf!Jau-`WYf&iYt&^qz9U_LX1$GHznnAxVDxMj0PuTXj{y`u4eD*M z2C=s&U4ZM;SClO~64u0(oPQqe2xGJ_9p2Ts#|9Q|yLs?VkOi@~C|v*#RolzWbFW_` z^_?{)04N$^MfMg);2JH_xGP2gMI)p_iGU~|030Y_z?=3bFd0C#fbKQA1p2+{@cK~X{=*(9B@ z$ApCZ3D0}EGt3w;XD0geK}CN+6aqe=;CbRFfph@`d_cxqa1nuY0X(ewfK?x`>I0+JD~M~bfx%z|!QBIHrFZ%loxW2S_ac#e;SfkbK!AL} zNqIcM6QT%%!5|7s5G5r!Izo;Z=tFWP%lQx`emePoKYA!4l7RLlq47T8UB9kwct4W5 zxcF|M-|c6f?#SP9eEkU6y(sQT2nvhBp?pY0h@!kA7UkJ{H_F8^scgStgDZwx;Ri~E#BSMedn*(XkM-LXUPDRc6k<<|e^~!Mf}f0Y|H=5%`frA%7oLQtUnv3_ zY2-sf5qt^s>-96@uXz6(@o!&$2elQfimIrx|P57r;Y1J@>y0`LTk&E8S`q2vF= z{POct(?9O$&j+xlKm7%0upuD7Uy}yg-Irw#0RRqeBRy>!GO*`-FjmAs_~C=gBdLp@ zUqDKcYI$Q%XQBRI5kms`Y~A4wlIc;JJO|=rJH#0c^)tbSx5@dNx;yE-d_{4VGO`J4 zS+Y1Z%dO5{w3TYdv=8XA#O@!R=KRe#t>^O?9{KS+v;dui8A660v)H<(aBQ)$_`dc}uS0 zGtFPXq9U5Y{Uenl@b84?J5)z+aE`!@$@h=m+bj+mm=(P*1=HBdqB{@7?tY9atOdlLj7^Gf9Ew z!6vy&C6YzWp$=k+Hxi*o#Jk_7Bs`CUdo~`#5kzUXwkFwBcN`4mw0u`*9j*;suCjzz zyATA^Ze?xXbLi>OmTNgK0%4ABkx6l8@vVAr{9=yV3sc_5h}W`6F}OP6frLPW5n#SOx;j&OwlgIl zr#=l6CUHt%K&&vfYw8qxr}X6g8zuX>XZTp%6FW_ATVt%s6Vxq?k_MWUKe7(Y0@5g%)teuUvk;Jf4>#v|!sl)L2HKQbP7! z-51B@MfTS*Her^{b^*Cb6?OL$8ANI$J{fQK-!mVZK5V;U^FF$9kRyAaXj5%)?xnnM zX1V|=p1Jqfind28Hy#@eu+;z`bn|I{;Dbfg>G*Liq!!qWnpY%;16q(GnpKkD)%(Ib zvj*W00A6~JTMMU`LZS}WHXkh6I9DP2$yi-6=RN3hKun3|Ih-LUB0n_!EeQIpT=H~r zYdaS?>V?(n^}l9eK>k74P{^oC`MkDaVVP~+sygNpZhI2_5Vf}G4Ct{2{(4LbH!ZL8mu`9b%3PibAoJ-cmcW$Xlg ze90ga*f0v@z}UMk>rt|V2AH`FlZ74PkhBY&3zZy4Sb^rvYD>=&ay;B0x}D%ECJZR{ zG+t=m>?j8LNd`APXMT0GO&JI%KgY5kkquiShcsO1OMkT;wY>eplW9a=<_gMjn%Zzp z{bhhzSk?kKSdqNn#4uWN$>`?fq+fH3{oN;WRZ9yVQBM2-un3<^&2eUZ7Eg#re^sin zHbqO&E96wB6I4S+U}}k0b%GHpxA;8}FdlY2xcres*85{?U(@33S6wW<)Z5)oyh-MP zU;31WiNG+3PyyXDOAVv^UkOZaF!PwEjgO4cjZqRUoAzCTz3+QE&WG|0Jzi;_I^524 z{o0dHoMDVomP>=A>FmIR&gb!o(%RY0p`qzc9tDBSv)=s_ohX)iZynyNOw1}47Zdr6 z(1~#>xXjHM`PQ}*8S|Z7!BbOrm&ES;`?lQIW<&tbq?QXm<)|&!Ghc!T*hy|RJzlCXfdz3ey5_v_6Xa(0$!({u^>== z<6Hi^J323QGb5XZpnS*tRvD@F?N?*;Th6zXH>ad*u2EkK%@>#pCmr-!b5Gd$UfN}K zy>rZXjc~wUojX*6Mzxl+Qd3Vpb1)<*GQC+RQniq-xySA||BG|5a$+ zO$A z9PLbjuDEoFSFE$Bfv-xowS zjnx9#I}+xe;rP--Qusc%pIwM|-C$roHXJ{St&y{+IStTaT%%ffcn2PJrcOL~g;HKU zHE~bM>XL`!`{oDY`Szp@`?_>IRhAeaQybE-p-6 zR2(|+{mq2721_xkFGq%@y;Akpw#@N2uAR#5e9KOrEAh$XHbE^ggt3n?Y)8}(K!qha zNHaUH>3u$%&-ZezUSwoDV*QdEc&tLK{&uS}(DHWC3dftM22k#o*l#Tz`c-+kwQdXornx#qjWL>E%?OI!x25u`lgq@;3IlP;}5NhPt_&{_7VBd^HR zgxJLwv^j@;<+RdPTDbDeP)*?Z<1wbLg!{sjr3#qt5C@_gIHS-IK8drNvg<@h0Zh@p zddIdu#K*x3I!kk>)~4r|nISv}`aHsuuK=mZelJ>SA(lx~j8F!ZPiHY48t~X;jYA#% zx9!!sO*+O;^NCR7fQHiJC$?4}iG^*QylQo6ehz>VJs4(ds-w8pDOLgrwC1U~PUdhL zt#LlzP75t5;w5u^++YE_ss!g`ipW)oh6oGj96CPq^<*Jaq_bx82Ufe8C-(VstLNDl zOO!&bY9lx#wVKa2I$V+QD_9P-3~5uYfl0B*6Z49nXpsv40&hCPMO(Ty8HVm*Mk8LO zjKY8vFpu?GK}}B<3G3tnBu7l&q*Bn~mAL@EepnVuc7m>ir`O6i2>B z^(D)+DFZ;^ushOf24S1aZ02blo0XwnHd}JyYi&4ZYnqK+vw7rn{cY3{wFsT{G<5HP zkeFS)JMY$rvr>(q0^hmf)^Jh=1H5Y7fIW>OCqyNtdmH`r-vjV*=L{vPb%{k z5i0V1_4zgB-2LvP5B!yf|-i(|%9>ayBwDr0*cM(6^wC`&#wNtUv`PjA8{<8s2k;GMe6BmwFnjm!+eqJBuUN+={Qm%Vx-Q!Q delta 2924 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 Yzrx(A<|rn?4FCWD07*qoM6N<$f_`^Jng9R* diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow5.png b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow5.png index 8ebeed21a9fceba5d6cd550f7ab6d33888cecb9d..6654332c366a894ea342a298c4a0e2ceb97e5d52 100644 GIT binary patch literal 3021 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 delta 1680 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 Yzrx(A<|rn?4FCWD07*qoM6N<$f_`^Jng9R* diff --git a/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow7.png b/Resources/Textures/Structures/Windows/reinforced_plasma_window.rsi/rpwindow7.png index 4d0ff4bf7318bde3f96e034058039551ad57141a..e140c63e4ff524b62681e16ba770560f8de3cf88 100644 GIT binary patch literal 2262 zcmZ`*3pkYN9{+}s%gN5T?6E5`%|w!!ZwzN+8bTvxT`HVhmM|A)YHrPZbBx>WR8Gjy zMI@I>$3`X-wlrdOL7rAoiB6OaizhY~wM4tlH^Y&7+V^?h+yDFh{{R2`d*A=_d>K0f zybTS^4FCWzr1?+-;n`i?^;W@S1!sRBJR!t^-kyN6-Qp#@`HU4xi}m*h?BKN?+|}(- zP!2rm3w^@G0AO37?g%sTx*7n`7IK0^p-_K6GDE;4#4rVP7D37rYFHF08D8>OPz*-O z~A zWkZmV41)3T@q~Csf{KUYx*(Vx)M!7`N!;|9+?}F+;==LL31f zqxKs^7f2viELI(8xh>|&WGu%KN<>^u6ea^?aalYT9}|_fd0sN#y90rXK zu|z@<{Ja(;F2(z6#K*qg2mdFZ1G$lw9DHP6!CG-WWDgM(FA(hu)?CF39sd%uoI005tl;72sw-0hg=E&ETY}<}3gphiFufU@78NVOxNyhw0%u6EAO{$6uTpe{B?@ zk_>j2L1TB!elvpNp0VY((s9%@MRIe8gwkFnNM6VN)23Yhw-PO%M6SHq`>8l*H!yzsRhfq;Y?8^g z8-yFvZy&PVlu9j$=YJDc3{+O+;*Om}OP-a*?0vLlf>c9B*j$Ui`uU!dRW%sq%=Ezi z*$K?iM|n5(2#0kNaHBnPg$a6dmap%@K;uiRI8CNcu6;Rk1OR-rM1(ouhx(zNX5Q^y zRRI> z(_$$b%8J@7`s~Hz?Hf2k;_yIsT;&A2UX?R_n#ZcvEq(FSXZ3;LvzgPig%k8h2LwRJ z0a@KFdG5pBp>_4_sCr;L&eSCO`LOnXBq_k0cwNc)4K?|I(8n`JQcdam?d1!`psOKw=~W<#n~ zw!3wayvk@kfnW5a4qZ93_by!vDB$;%ZkR1^9X&HNDKA$z5NrVSM)W)o6|a9!7}IDS z7>N(_lkK-R`d5O{`aN1-z6@);xcA-(IbDlB(0SVkNOZ;aO|+@<0U4a4*M0pI#M+sM z`iSs8VLD1!gzG>5R#{m4Ybs#BqiD@wo=48Pw+EVA^Fw-o`rlb-MH$Oj5mishzkZR1 z%4q3YV^{52uCUJBcGJ20{=%tSoyq9Rw>MUwsX49yj+Yh;4xpo_@6`4m(;_=ReSYuw z1E;N#Tknt2wU8Y)y!3&?E=C0WnjOb%SKeEhm7^=Ga(rR6SFOScdekx0_#?HV@bz^v;-LJk2l^LO>n>yS#DIpMVCVpnsv~W(h0GD8aNVF z;1f{Plt2Gu*vbZJR+*Js*I0#`owvH6gv&e4Jt(2+Cv|yQ+i8l6sBEBln(X4axBjC` vUuFA4hriV^93teJ`2)o8Fx9tq?E>P`iNNo%Rwbv@{}eQ@0IJe6`r!Wnpk0a{ delta 888 zcmV-;1Bd+95sn9tBYy)`Nklc)RZTeYZ)dZ(?Lz5ns{gQWkdhbxhwD2J_$Zi z($2FJaBeCy5`siYk)439sXV!X0rn)s@_8TG2>`+*XsZ@~f1||X$Vc&cAAKOe0Dud8 zw{(*-fJ=p2cYiNB3E2s7DGzRx8?WsU@aW=1X{#2}{<9N6qZ;z>Gdf`2*8V@pP5>Dn zn%ZY{00|}$vJ>F>_tBIdg%03wQ+okC`uE^4~&FvZ8D0{}OrnSUqK z0XNbwVDUk-$%z&=kpBga;IDd)Ao`I!z(X>92zPS*C0OQ~A z#EtRVPW(J4!~`($VgMK#U9ewvC~!GqvK!4ICcqajzJXOyH+}MXA5nrJ7cZf9$_5*= zik`=%h(Z7tFQIlC`H;5HjVLjI2Q{ArXRzV2mPm+E&r1;{27skGw_vdZP;Sg>c~{=A z0l>*x0Dr*q=?m-L-AVhG;z@M?8PDM_enjYBgjhPj&-J7OI&1ksxWFYk03C}T(*C7L zq67M>0f0n0;Hhf)7)YW6fcC|Y82w8SZ3e)lKsbMAe*yNJKK5~9?%o@A8f4}00YgoL zM`$aDuW9g_2K$F=8jSHJ=hC40^Xuhc)8HlLaDO>{_8s2RHuh1Bl*9aaz9&H1 zzZA*KVcy<{z?ifg4zy1-Pml{(*@Lmeo!`S|Wy!%1!_W zjd3inSBsjt=|41Z4p- zURyP1BR~8D6CD1c$r&9mi~|#d(4xsG4ou*BaPoR^@_KNxZP6r!4)_Po4zi-ku!6Aw O0000GZx^prw85kJ&QX@Rme0>?TfNTyR27yb#lP4;QGcl)3w343K zt-}}L8=&BvUzDm~re~mMF!5{MCwmr@B%4&^7PwZF*eYd|loVL$>t_PR z^zw_+^@~eV^pOTq*>NerfK5uWRY_(^PAZZZP|l_(CC$n)r)07% zhoodhZjMz>VqUtfQiX0xYFc7xPKlCTT4_$sWPVl|bD%0Dy*Bz-474f9OiQzh3`#A| z&nYd*%+IqkH=4YMOL=l87vJPYE@kt8jQo=P+|-hy%w*5JlGLJtqSTT^utFmneXwS% zDkk@HiB7)HWoVA%Q7gxylJfkb>=3Z0K(4ew4hIzJ$t$?c>h~CM9ARK!n(67{7!tvG zH2i$Fu%k$w+O#mP*i|Nf3ttBMT$n7>l-e3&^Yw+}mHLB|7qD;Th+`4et+=>Y&ZgqC zyv9-kQQJ-ymh)m$wM4Vl8m@g`eb;<$Z29b*O|#!98sBXBx$pbgn)iDZr5*(DGudus zP{CMVU-b2Yf&{~!!rXf21>Jwu6dss!yX;<^vTVN4`Cs2Tetg|~;_MUURkizX*)xTG z6Pswc%VVp4xXPz}8Vny+ZZ`G~v2ja#W_i`l*g{zI{@s)Dj8ki0`)^*bsoCS_K6mBv zW%|!wF=< zGajFO%Cq9lvp>83e|XeXza#QS)0@B#F&q&$=U(P}soib8@Pum3zY`{coI56`JlXPI zsCRGH*}glob}d-&ZpKY9hL|W z75t6oxZTL}$#rIQ_tceBH2xUjrIoe&`>*So=7+a3U%MZy$xyIy*5s580YQ@jCo~`H z<6QA3X{(3lTeTw9s}s4`ym5Z~Wc`$TCg#z%BMz+1+Ldr?qb_4Z`PWpDPE85Le!Qv1C+@vZ9`URIe}>u{ss zs%_UDHoZL-mv=5r)bfCIjOG7eh6jbbDNDOmCNJq|V1HZL(QryHjQiKOC4Op|AIsje z%DiIRd1TjtQ|GjQyzh%%{rArXyZhbeW1Y0Dxu(t0&O6^~1qu#ssS|7XW0*H>Zhe|` uXuFbt=888L*^InDyuF=Wy0holk`MI^$CGCL3+ihHl@Ok;elF{r5}E)C9@$O+ literal 15734 zcmeI3eQ*=U6~NCpfnwt_3yf`I(?Z~Ux3bTcbc*hT zWQV$rDGf~^VUo1O5QjExr!aJgo5l@=I8KUj5~dv}g@#Gfw59DhCQcp7M-r1X-IHud zUdub4CNuqKZ$>)3ef!?q{k?rp_s@N=a`oMLIk)9d6qQ$A=Ba{ro%Z>{O!%#|wqAj^ z*`c!a3Pt7KtbMYmy-&@jDDJpaQ>WH>D>y+86!D^54~k-e5S&d>&gHQXFEj&HR}UJb zpi4h;tWU3#M3=tS;x&3hrJzwNYYl_y*3~saYqQ`G^~>Ek&KL(B1c1uxVgY|p;bJa* z+%E@zYs0i&7oVawyYwYmKwX`;QdcU6fzDE7H3&wlO=oiyF&3N6Y+I&djf{mhnrM^J zz?wL-ku$Tpu}kmHfxnz#(Z^MJ?ivdRC6~TYRYM$2N2AfAsHsQ}H_(j3;h>Ey&9VkK z!=SVTRX%12Dg_BA<9<9q5yDbPmE@pK^UK%E5!I#FYk`v2*uDaxWT2oj#tu@XV|<8a zii~t7BT-1&gd$;od}*RU13w6WpsGMSCZk=bQC4N8QJx}XQaxp0m=muz89U>81A&a8 z6?N4Xh+qt9MoXopB?RaypvaN109I{*TPeu2dsXtKk~6`RrkQf>ASO*=rfCvp@uQH) zkQ45eD-8o)mBTf%>~|+lS>-rFU1@3jROyz~NE=l4#8qI0E=DZ z9X`9ms^vl}Ug#pVF3oRzbYjHx?cmm{9RshID-S9v54Th9al?Tk39ig;wVUe&J1__g z58D?oTMfKPG#OaYWOdkhqmOq$Xp_uSD;sk?9v!;Qym7NwZ?*wmfE)LLDL0-7l;&(w zpfzC$wsYQ}Hb>iw2=`*H7X_05Sc9E0I}G)#*>2!%5HKT{M8@i1MOF~T_maWQq)=s& zmiHDU4O(uh!F>})Q+ba!-Vh&FfYw%A`tiP!?9^~-@^Z%86UPf$%XSM|)dSH$Gb0N8JAfL9_%H0t7D-TzEc+mf%8w;6;K9&j-;G zTnG@nNO0l#AX4T@FKy5=YwboE(8c(#Nx_Hy_pJv@O9KEeD8Fy z|Csjjt4=7Z@={dmS1GD}8%2HeDZCF+RK!S87dOM#U7w_=eEG3WC+?!C8HRFCNlom{ z{yl5HzOZEe!2XtBemMBV!09EUSvkdn*1Smml{3{N9q-n5@9B8(p4?l1G%I)AJB#1R zpSOMZk6+q;x})LJ+7NcTO5wy#|_Fn{=; zAGI5w0raU^Jw4p{?%A((z2V-FO*Jkm-n97TJAbqP6NfWoHw(t`{9$FwigTj`t;2eeVu=L{QT0zOIK`rwl{je?ex7GgN`Ki~6zWbKa(eUikBiSp0tgY?+f6EJ~4RtLu4CuYc(e6+0H%UUm)k6&4)o zh5jz~@4BsW?ZcMNSWk5H(F!g8r9$D`z3<)`Ty$g3G2OD;E1G}&gU$y$XWzQa-f;E# z%V+P_{i62Ie}DDB)g7*$tc`J}yS6UBkiFpa#)I7t9dRGs`o=-GI%Ywymr z**D$4MBmg`HS5+9$BjAH&)@RYCug1=@D>a&ZaO$;(KFXZ*DMgKyKVc*mj34-^U8+L zojCOB0oP{RSKdC?e)!GOdB3mj?cE=_e(6f?)z+Wx*y&D?qT!d$i7 z_QDHucONY;{C;fb;jfi!ZCBg+D%UQ2{&?j07fU{fM4p>b_~pE#S!dK&UcdK3{+5xU soEfjzHeIKr4I8S@Zv9#3r#9;1kq362+?{((do#Lx)oRb-m76>M3mj%}1^@s6 diff --git a/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/reinforced_uranium_diagonal.rsi/state1.png index 3799df51bf9225b991de796f1ca3d2d663373420..a6295e02f87cfdbdb818d6f0eac245b9e0e57445 100644 GIT binary patch delta 1064 zcmX?Kb%kewiV9GZx^prw85kJ&QX@Rme0>?TfNTyR27yb#lP4;QGcl)3w343K zt-}}L8=&BvUzDm~re~mMF!5{MCwmr@B%4&^7PwZF*eYd|loVL$>t_PR z^zw_+^@~eV^pOTq*>NerfK5uWRY_(^PAZZZP|l_(CC$n)r)07% zhoodhZjMz>VqUtfQiX0xYFc7xPKlCTT4_$sWPVl|bD%0Dy*Bz-474f9OiQzh3`#A| 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 A9{>OV diff --git a/Resources/Textures/Structures/Windows/reinforced_uranium_window.rsi/full.png b/Resources/Textures/Structures/Windows/reinforced_uranium_window.rsi/full.png index 10342c5705897d15d15cec6e6e15d43900b21769..7902a3672bcf78112d2f6461d177f0f151fc07c6 100644 GIT binary patch literal 3028 zcmZ`*2{@E%8y-uRv36vMWX>o{Vi-#r3`1g!eTys^Gb58R!^}5kEM<$7MalN7ti>oIMM{<|?TJeUcN7k>_N0M8 zB2sIe2Xrn^4g})E6J0$34?9}~juNbe#Z&wVTFl^(b(Ap^!CeLu04#(VOd`_|OcUt3 z2ZFm^GsB>ebr&GW1nObu2(h402@nG zg=zm1h7JL6dR(O}ncRH7-H)3nZk?9~;9);Fz~I{2hML-NP555e_xo|vH^$=-01+S& z)`k0ipLGRMB;aT3n*W*vB;uN~2ojcj*aXVd#1jIrbP@nX2GB_)W7vkr&&Uny&jF2L zzu-1ryD`GknLwkE=xdrI_rQ(UW%$YXkN6t^k6!_PH2xdl7)Svq+*+a%acD9?poUPn zb+yj-H{E}G{5#e^+-_tdfc!hazsx_Nes~uIiV83&)F9XOH`oyHKaanK*bwuFy4)!G zb>X>Hj|3aTzJEbTaGkc$0}x1X8odwY>LFZpAeZEf6BWZ2^1eFOD)iIB5uhqbxhFM#vAAIp5G$s zywE(8qeq zq>dK;z`VvJn7H}MeGM2yeEaT?vGwtCKKm)hqwjq9Ut7x9z`U2)SzdwCKUQ{X^i>_* z(Geb_7rSS1nKo$RRiHARo!2Vmbzp9yW_P;`ugIg*SN*Ig`uc{ZxjBh|8Bojc>nWP+ z&n-hZ9rx-0Vu!^lyG^O>_9uD(!EgAFIOX zU^`w%^{iY$O&+b0+8l)04sorm%NIP7)~ObCvowYG@)&o&yP#SuLD=x->LaSU{W@?Qb{rCl^>_Xfl{QCHKOB`+=3m z>fWR%mj}me3!kM)Lz?wtPn({;8~NEh=KYo|5xWz$eX3OqK`g(w*_@#eS=3e%!gH-i z6Z78JkW|hsM(~0xwN#zjE2VRF07dCi6Y-U{W)!0;&yb@{{f-(u26*x^ztnvSeLcOG z9`Q&)V09#3{CR++Q^JzP;I;9GS5>o~*)7CcDGyu1t51u(Xxlp?WqBE@LxUQn<<}Thi_;JJs=l66U1Plg8>9>V?lQ-d;-Cnq4U= zs;i)|*y}bm&oAx%>4ouZRCDE0LDrS5`oRwXA%XcOTeW#p-oP7+x%%ZJR~EZ2%Y;QH z+uv0SmuP3N)^Dvlr}2QDurJfcjvQcwyi_k=N+abby9Rtl!tGXu1)p!M10QoA9!h0 z54wIdej&7aN4%ZUaM%ZwPp9XQ+0ZgFk|g0gdnpe)v=CB-_tZT` zy==Fv&!cP`nruT#a=#77p+L{Fx`ps6sBmC%%=U>vPugPzcuRwXm0Q|*J=D|3+k=-c z9Lk3&i4j{o)!#?C_c(A6UnDN)*Kv?yi!*4R>MuSwM4O()SB(5lEZoxS2U}1K@4%;> zm2BXZh??BO>6?WX`7G>Au-W;U)DLUBGpcITOX~Vd{$aZK$?zU$aYRzhxvrRWK1}we zwmOrJOr!iyMP{!!dc^uYN~xJmfgk)z;&HeO@DYb*dcD_0-S(l`)%(Ik&0Fn==O(T8 zyieCeK}TIw&Muz)qnBou8mY?Wc1!b8Y$jN2>X&B)>wIlE%Wrz9ns6v@-6 z{1vW`ok`+h?!Gmdytz((BK^;FTA6piFdSVY$@t^)18;D1a~!?EQNy`29A&$^1J^=h zDOh>3HJ%U6;`MWF#Eu6Q9!$O4fD)21Pq%O6Xah6TFV$5?{X&&_LW_`og|1+onjY;p zXiutHC@au<$2p8Qt5yuTFCrr zV3@wKtRQxDQ0{HCb29I(GVA0LMZkv97il5Tw=Wrv7e3;UM zwpI(sq*ICt`eHloLsU?+f#!)yrC77F+gsWjKi-D=cc$tbTjm=!SCi_c_1?5i3V38j z77xu*)H24+6g3^PeRAL`XEl}59zGn=p_6#yirO{y_$rTg0L|@MDKBR2j~Z=hzmIM1 G7x#Y$Xch?o delta 2053 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 delta 2355 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 delta 2331 zcmV+$3FP+s8Kx4DB!3BTNLh0L01FcU01FcV0GgZ_000QsNkl1YitzP75?VV z%+Ab?7q9UPdu^|fU9eIc7Gj$fm78Fr#1)SimxLBoph8lpqVS_q)c{gy)CQwgO)E!f zjffK&wKPy_r~nBNHX)YKf(e+|N`NjxYkU2`I9{{f*F5g@2Y;AAMIq|Y87q80ujbBo z=bLlSx%ZxP8N)DOCm4o-^itIhsVn?dJZb98R;`ZdeP7q}|3XG@+mhGD=k z3=G3Sho>{O^JELh5<=EK_o7yvyO^IXc}$Z}2LS*olYh<3Vzx&eFxDsDp%?;zrjCJ| zK|l$MqyhhxJTc_Er2xPm+7GhZ7am9gz_|aIDQerN001DWvY#FbW6!$Aq`#xsjr0@; z7eqKABaJ$}=bTcYV#FBYbTY*0Bv=(S($DB@go`m|sqMFb1^Fm^Pe$36Y(`O1e4zLW z#RoF8xqrehw{1N_03ZP%XU~J(?zIKY(c3NncV*1z|E(kWA$svE!7XemdS2VT`V+nF zhew1LkJp|4fAdd|DR2jbB`mW$et}v_Y9-mj5G~6xiVmg;0MOq52>@W$Uor%%_-z+J z>I##-hM4N>EO3NK*HfqFEDNw3Ui;o8^wt$k3Oh@a+ zw+&xsfx}APN5N7j7_1&j^bGZ)yLvz=YJZdYM5V{lo!`S?ofG`gcnSb&3%?5h=vzIR za`oOaeWGI)mQI09&I+R6ng6!``6-w_5js(Ke97aUX=q$Qn-2!~-Ag~lPu)M!e~dEe zRMY21tTfYh3otFf&5sHb-gc3MYLgHARd2gULd#+d0NQMvRxywA{?pGejtW8TJ%2gM z^}qflX4Z|Fr8f=JQ^2js#>8{1UUJ^W$rOnJ)3MTd>#%~&?1%D{K^l}maO0T6OP&%3blG-ni{h3|q`}J)AK)QY# zbRq?0Nb^tS%(}cPbiMj;aen8DFBAZ_uLn#|fe1fFWMG@sfs3)2>mvwnh)%mvMU`G0o${q185 z`B?7qL=gb!$rRH!zh9gAP9z-wCK18ikAKT7zggJ28%zB2yq)v_oKT|&W2I712$WM`7o$vlGrOE z{8!4;kj!;Jaq_+{uNYdZrhjnLosF0qNKn#UJ2E)GZB7OZA?7_Sv%y!x$^%s)HsOhe zLH5jXmrg0&wrrzTQ&63LHw`;ev?t6zA_KcJEo&nEdom7>M4f^|2e~!{874rAOxP0W>tOa5P^C zsDY(dpeQN6?1gM*xM|dgEwJqP|G&bt0ADAE-&S{I3H~-i-8AEQHbZdpAEGybEjn^m zj)`XZ&BD@k!0z}3%6}4;v6}Z$uclSmy*=WWn#xr}@$>=u0$>J1lZa)zg$0xSR8zs(%5{8j`BB$Ns#4>G}Y( z$So=U-OZx~iif6=t0f2dZK1bPP4Nzz^ZhaD>nyVNmb_=GSlIS36fe&*xHgdozN#IV zswJ=jwhQ1mA0}FTQe#hZ++boDfxsXc-WW?+#c#U+002sjf!e70#{ON1%!@o-rLt3? zR5#+O6t1yR1Am5L*;aYl2;l21aI|iG+bHSCwDgq7b^#KV9$M5U^WD`0O3zR)g4IKb zr^*SsdT%j(t0y0*9hj;mumZLVa382nbz_sW!qPF>eq%%{&14FjcyZ~LXPEI+MBUx@ zF~KQ`G&HWDZFNT;TYG>YOf7_L7XX(A(chSf-jkz-V}HG%`mdL=feoJ<&C2N*4(Ia# zi1(OmJhcAcKid8m*e?J8xOn~9RUY=Wy<5e=_il_LBFNCxBseIbgbgi9h<4PQ)JrJs=nIhAy_ptNUFK9EF&A2aO(Y~Kz$>lXolZP(}j4HP9zx)x2KNm~E_002ovPDHLkV1nQ1 BU|0YE diff --git a/Resources/Textures/Structures/Windows/reinforced_uranium_window.rsi/ruwindow3.png b/Resources/Textures/Structures/Windows/reinforced_uranium_window.rsi/ruwindow3.png index e10cff828eaca524427883090f88e0a16bbc1ae8..26f6290c6b41829a632c1e8077e6b0eccc29caae 100644 GIT binary patch literal 2130 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 delta 1112 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 diff --git a/Resources/Textures/Structures/Windows/reinforced_uranium_window.rsi/ruwindow6.png b/Resources/Textures/Structures/Windows/reinforced_uranium_window.rsi/ruwindow6.png index 1f9ba05446a1f82dbfcc86e72429419f5f7f490a..9b0463bd4cd0907ea399eaf49518e24c19a7857b 100644 GIT binary patch literal 2102 zcmZ`)2~ZPP7=92T0SiF^E0jtmXa$jMKno;IfM5_KhZund9Ti9dF61J+G(n|AYs+D) zMVJC2XeeGxfPzZ3rHUtqa##^-MGg^AEKpGjQY763MRe?&dHde`_xt|id;iX+hXnhZ zncA8H0L(aR*j#M&(M^Ie_AG%DI%0>Dp0zM=Z3B^JQia@RuSLl5_6pne5p#*s)2PO=pdxO!a z@1=2MD1RlUl%EpI=T&`JqI`W^1QkHD0FWD%>ghstb8(|VGxcHVGX#7(3Zo*SUbvZh z^a`>>=-XBuUMGPF)+tLDMM+|rWTlHh7!#E!Ldjn8LsXUS28R30Cyzld2X{x9a0pJ_#Bb?9{a>($5l z-^-K%&3sE!V#zE#lEFQSH}Ye9hyh&6{ml^d2f5< zj=Fmzr+fQEefP_MbNAeISR{AK|2}_tUNOsV$-E_TcHgyso_Wlsy6=vy)G* zzrDH3D5>+&-cS$iS0_79+Phyc!5?`v=xI_l)n>aTe8<4`aCL8aL+{^(dnBhi;n7P5 zxfKszPDtbaEwxle@_7Yt&(k~)VDaE$W%J&F=f2-kgGXeG`s#=vZIAO|>$BxUp6QeJ z0q6d_l31xNjnh!_&csn;GL;K|L6ZdXlm7LKvUd4;Pk=vRT zdVDQc-Ca<@F8jE#c%3JJFaN|!d*Rp~($Ru`lnPxkkd1()#M}&IDN(<(IDn6AD~K6u z>Hg&|`dl)^v=}g7TxK<#W$pqi$`{6M_-b+7oT`0F->s?p8{IpCX&1y)^^#praQ(!h z6T5EMstWc++-@{e+3fSa{6cLEXsWPPg9Ei@pliHlbk{T7SgI{(HT+9{qhw2&F}QQ+ z5P2L4M-d$G^qPiY!Oj5Z)qmbi{Rni;(b?)APJKcD^uzn@A0+6C^r@@I9b(kf<3=dN z$d1(RohiQy5{ur|SLg;BtrYHND0!GXI)NDhu%oU3cqVNul3RSHxk% z9hH-3Yx37`@n+>I>H_MSJ53zXraX-#}?T zw+`XfO%kqH^^WYB@8|F|0e#qQWcB&{M@>_do?GMot<@;5C?@o58r!YjIbgwDmvmQL z3r+Tb;WIVV=x9=&(ZYJ1Q!#n2bHz`R<>rI< znVLK8m5-~){0<{c;DP33J1~-zsQjak4T#y#lFXMH>W@`j4l3Hb=*>%Rrnm0i5AdMP zqHwsUfRH=vTo-r2(m+FK8hbj|%W%(9-=cuH8+ZrJe$Y-5I+s*NknB{!NtUdS(+&!e z;jO~a%^~4A2_>42?(2@Rh&MhgDjdhQ*ATQsM{V`dxjyLFx#HpcXxpPD1|FPSIZkGQ z*Ap_c*PpM{T3sg-I*qQa$zHuZ^v=(HCf^NYL=_%YkHx3nUiPfU+D4|{=zq6&`B48w d2hxP{C9#ASePyCz@R;tO&G8Fnm-$BS{tx_6OXC0l delta 1108 zcmV-a1grbD5a|ezB!3BTNLh0L01FcU01FcV0GgZ_000CVNklA?{od_tC|&SP3UxaM@{ zQ=!g87c%*s#(!eA=E~AnZooQ|{j+xV{3t05F4!`4H;n<5YNScmk?|q~gm}_)WeGKe zQj)$A37#E3iI%CD)SQ$Xu-cbk#<-z51D=~S66onmviJpk>nwuN`(Eru1 z`pxxySKpn_wOZdsKh!>YEgRfDGi(=0h3_~p8+tN5^RZ9@g2)>Iw&RVIFWSqsDlhU1 z2lJ%X`+7(-V7<1l*ZOoWtd~2ttKE)*L<1JHH8+#rX>=yK(49|(iU-%6<~xs-uR&51 zC=4#x*?;q+WU_x&YOQaCJOc>vGG2r<={hLYh&0^|kU9cdregH$@JXa^M1r7nQ!IQy(*Xh$2%vFXEy7b^&8mH~T&tpF&f&!6)A+}-F!sS${K4E526w#& zkAJ&7Kr~t}o{Y9BodUuJoG6Tb2>|ydN_45K%nE@Op1Ii?D)c`x0pO_7OLc0{dU5{N zZ=VVO3ju@;AXB}k;$z#i#rLhJ2b!D*03bfLOm@xyrVgQN9YR#y3E90)MLU4N#qcYJ3A!C!m@wZ-8(oD9Vf6FKC45 z_X1mf1o#H1PCzxj0jd*Fjcr^WC>U7138-1xmEamd2gH9|L8Fxi$x5n0)6?JDoFvfX4t2jpJe{9|5Y5 a*Z&1WAAozTGh?X&sHg;q@=(~U%$M(T(8_%FTW^V-_X+1Qs2Nx-^fT8s6w~6 zGOr}DLN~8i8Da>`9GBGM~RsBTId_|A5Z7NlCUU$t=l91qU45Kj08_%qc+?1*r!G zK~5$pWUX=%^U`gVDs)p)(-KQ_N|fx1O3O3zQu52qZS*0^P_;uuQBAec$Kn7RkhiTO zgHnt0b4o!0Z)a{~0}cxmK|~BdG(=$2fGmivAs{2aBp;ZdiZYWu^GZ^S3W|V<3v3_E zI@~JI%|h56nwME(2QvUo7)cjW8n&1>p2fp7V~T(C>V4&`{oxH} z8PAOm>{B>9pK*($^?b%}teO9K7VzHs$+JP<<8wMg?uB#d4YiK5?3pu~%j}rna9{c( z=^(x3vt&a2glFd&ZY`L5p5b?sNj=*Iwzq%Y@*eol9>5&-Kfa)vS*t-Shmg_pQ&oBD T?pz4q2bC(Gu6{1-oD!MTT?wr_|5y`QONt!RX7lrC}LEltVCs?gGsQu?r#&+!gTe~DWM4fngUnA diff --git a/Resources/Textures/Structures/Windows/reinforced_window.rsi/full.png b/Resources/Textures/Structures/Windows/reinforced_window.rsi/full.png index 34c51d7c3d6a3b995f8df92ed1176e988a2ad8cb..e8b90728e41ede9cc5474ce777a73af21860612a 100644 GIT binary patch literal 3041 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 gP~8b=t~q|-Un5s!UNOU55 z8l;%;m0d+C!dSytPbDgRV>vD7>b%$WZqM(zpZj_5_j&*L{ny3WUPe+y5&$5BaZWc3M9C>)7_mM5m+)w&)b*m5kevc(hwmQ&=n5^ zf4yvmK{Zxf=tnJ}?oKWm)?})mhLIjz4-Q32YG`PfQ+;s=R~x%EIDcmW^{3M*2pEjP zVCXS+=#i;-n7*m0DGY7^GcefB_t;Jg4WxUAY!9UUwi@K`I5vJXER{f^6Uc!Y%W=JZ z$U$@qD0G?VYg^6J7yFfm5=14gu=rwOendZ#Um%?Z)7R67{R~GZ;J#%TNL!PGFAQw? z3m*pmDGWuSV-5LA*@p1*Svwy;QS1sYjqVHk&H-ishnsAN8*Dc)g?&9AKYepwEP_s; z6a7|%`+A-g1$PtaKU$almn9$)mX$>iy#w(U(2(uEemL(SA{~mPG6;dbWQMUhY}M;W z^s4p8pysfj@S8868sXvUMV zayIFyimIxu!$gz3t;gr0NYAvKb&sj4S9IP>^S#LM0nCf@b^ezyJ`hJdM!VodF+g26l1$bvAakeNe^?xvdX!)5RK z%hMd4(s=sD9a6()mL_S#9;Xeax^KwDHyWp(XbIaQAEb~MYyK%`%jM|P2E*`O2Tg*@7OpRt)nlxFqC~TZ~iWi2mwi& zF0r(J+e)W|(S*3Pi#1E5oSa)S_f^g9glA$^Y^tmtuT0PF9IlaR#S*$Y1Vqou}OpfV$Tg95J zaQ%+l&1^BuT&I1>+zdYYA=V)FLPE+`+KzT3MsDzQX;?~cNW@Ya{$A=IZ$4vYnv0u` zM;KJ!#ln_F+{R zLC(9RL@gaT(}rO?hdB0t-MkbOsL~>u!q9V%7z}802O-<(3L0kUQBT3#6@oRP>tP5th)_NsV+JCsa+>P&(XMI1k0L;Qm4+Pj&VJuTrM{fD~%) zyAO(LXwwb(YK?*yJ!f{^=2^ogH>lXBrCJU+Z0XAN;suoCE>c>ole0vpQ;B~ysDHd! z*6$heCIDUA2acvH(x)%7ccqjX0vC_Mp_I7+i+wIhv(-y6g&r?OxSAt%N0diK zDx)!-W^}flL;V&ueMnJ{dqqTJezHMU$pw8eyDOnE_^AI#K*gxHNy>g2>h3mxaT~s5 z>#lvO_;uw3qeuMGsIe8iUSIM$VQKo~>_t(d$uqGX83}S1uBhqU?};2ZkX-0%`ec*U zj>9~Mke$j>|bKx1a_6e8Jed|-Mw$L&(bgyo3Hd7#nirIc5${NOO>Mr+8v<$$t1PDjeF%oD)zluH$!K4VEjOhO;R?d-O4YH({`m?G~ zrt$|9luGN0wWo*z@NPk`#o(Ah?A?lYSD&-SZvLrdRGaujE#Iv}(O1u43$9!3!+GIA z!_T7A&w>+5F6i3$#Vy7ZUR%d$i_BYeOfTz+bBNVR*UYIr&fT~;m74N9MYiJ2O#v$_ z{j;=s#nxMhm&CC_X$3n8huLm8R{|{awX$Zvvtnn@_`QGbGv{ZIYm6{Rgbu1Y0bF&oycn!lWj$hKWK}- zHnMpZ68R>l6n1v7$DNWYd{PUP__^Ax6^3 z#gPTL^yA1$w}x7{dol6Lh-FVR8r^Mu_H@elLg~a!<|t6ANw2Dq-`hAPEm%e6y2vki z=HcBa4$}>`Qnyu(O+RQ{zrp@2bl^cq)RfX?#af#>y5d?cG7D-YCl0saJCXih(m(K$ zE!!5O1b_la0u{*%?Z=%;nVnbDf<{G7w~blu!^UYA-KhK>g^Sa~fGc?iTOav|zhYhp zL;Tr^oi7>%HW__2u|@B*!}oZ3%C#zis3H*czQO+Yw^9}E>P3tl-6F$2NdF}c08;R) zyo_rd2G-Key%@lh07e?gEw-*~KLJoKRT7B-+$>$V07ulu$Jg+kdjMDlarQp*N9?>> zyj=?TFQzXD34v{#L-FxAuSP-O%$$WtgF?U&wrMMJXk>2#>GLQ5Hh~SY**Bgw;61=M zHqZ06p7|4^zJm%63Wv%q>*P+RA32ffHrHHq%VlpbJUenm`9E5T+eG&S+l&#*PF%Ui zq_C`2;DQ`UPSK-vO4|f7ZNu(b0FF4=3YtKn5Jwj5l_fnn_ZJBQlmv4DT!^y{SYwp% z|Lb}0<6jvsj03L(#IWK_?W6)K8Ql`?FM!c{N&*-WZobMm^O0QB+dopXw{;z4dMm93&h#iMUCJ{x_uw4iLGVyL9VXNm#g)0xEX>AuW5^s~9j0@6u{PS#Q!MCWxbUiwZ> zQz*|S>-P9q*XLfxFtRP7*CYd}_}E!)nwK6k%#%Il$$qTaa;*54m-*{UNLY1j*1k8C zW;tIfMue#h___#UB)Kpb!sER^VLNZFe_(dZ3-+0y!UNi3%J VP3BDPwan#T5|pj8O}-T-`u{!MqfP(- delta 2218 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 diff --git a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow1.png b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow1.png index ba95fde9e59c54dacd0eda155231ef640db07f41..2c1d944a619cbc07511dcfbc95cf3dcb4129082e 100644 GIT binary patch literal 2163 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|_);T0(|mmy zw18|5AO?X;!IOa`XMsm#F$06fED&ZCw^H21z`&fB84^(v;p=0SoS&h?X&sHg;q@=(~U%$M(T(8_%FTW^V-_X+1Qs2Nx-^fT8s6w~6 zGOr}DLN~8i8Da>`9GBGM~RsBTId_|A5Z7NlCUU$t=l91qU45Kj08_%qc+?1*r!G zK~5$pWUX=%^U`gVDs)p)(-KQ_N|fx1$}{s)^2^O_^dYKHbwfl^4Ykq7V!sW@*H)21 zsm1v@rJ!)PGcq%=0fz;OC?WhAD)-&xVCIlS7%^gY4LP%45?sz8x@-&>Mk;G=H0#3$`O;|yq$P*g$)Bus@8f1 z1!nn*xCFd#u3Zt3Q@g=QP_RBqu=eBrr9YBdr+GQZzj1bquleA1biZ1}?d-)zTzs-R z6&D_p7I}aE-1y?f%L*L!!(Y)_hc`DViT z`A>d^+*{dsIiy~kE!yt?-gUF1=k-g!y|2vOW42<#`TD{)kLIz53%TVS6l&i&<>Sua zx6gYn9b0O-!+-16S#|%WmCC<;V(55GJb>S*F~es{LeSQXm9u~To|PzJrPiWw=dNI9 z?Twu583%PwJr|FSuVh`a`C9p5|4SJPQ{CF@ZTdFdl=)S5yXxBA+wEd!*0}L4J@X;q z!)O1#seNz7Zq)y}CHF(LdYyXbw|630hG#a(*1LRpx!E{jy4ZU#|LI+`lqAedXZ`Jr(c%{k%MJPVVO0wa$5V^%r_STRhc$FqetF z(#X;6y~qtImA>N|>b0&-F$#1mXQFH9e=lj2_S~IwuJ|5By zh!6CdW&eAQ-;3YJ=XjVXdzJL$sh&M4zkZ9);RBafB}Lio5BSE)A(qE@Ro~3TP=GDL z`SjA-2}cg^zxAc_Birq-_ug;3ZLU;tD~J0HPjb{E!Mo@GpPt@bexP`j-b1kyL2keG z=3ezmJG(vicH)$vBU!K4F1#F2Mx!W&*)zg?s3=>9M`;qAW1_ItBF zCf{EZxxM1}MW5o>rTcazuG;wYx|#N4rE9zDou7nm%)h07hiU!n1+zEb;hy__?Ul(U zr*BNzsrPx7^Iuh7h6hX=?yfekb}zHNQ+7>f^_uE$jxAamOBe(0Z8=qFl|SW5Sh%8v z>M5ydH~xQBS-SQ;`-Uqli@ttdvzNUusm|q>s_JDuUWT5D(g%6m7pr~RS1w>z%f&j$ zgh3(k`~BT1kHfPsJWko&*v-O{$-txHH`BEE@s>q7OjXr>i;YXZ&WVfr-1up-gA~Ju z`H9yapWJqw*I2Lgl+^4Z=f87LMLS9{TwvPU+`qz)<5-VptoXHWyO*d6eQKD%t{?&; zTWl7*sA%|9EWt8$*<1HDLc9;1=bO3tZM(lwIQH+kr|->Y&b#(u^Zk!U-!78(;^J1a z5u7NvrI9CLO-(wLb3=M7!QH&XE3uI5+uvrr*!q8yG0FquH zdE!=0AOi!)$OVE8VGOevGuSsdOz8S{+6-(DRIq;apH0uXbA$O9?h9nFED&u-JCJMS t_LQN;M&SvgKez1@Mn!&($_6315B4Fd?c5wSh7q6&-_zC4Wt~$(697C$OPBxv delta 1128 zcmV-u1eg2s5c~*`BYy-#NklgOMhtD2Tdy13hj@jttp$flx3}@yVSk+ zoO@;_ezz@r$eZx9nG>Gx%ei-cXU^|;e#|hR`Q>M>vi^E z_UiAJ?ZEhFL%8RYDv1&{X-NqW-@Rd(rb!uNgm$!q(uzuB%pi;zge0h5d`d^U)2Y*iz$8pHd6`N&yS2tNaJDYIMrC}IsFnea&*w1?kR9?8b8?K#Ax0pF) zx^M`Uk-JSHb7p=7+NY(DWwv3k!R*Jktk{Y1uYC%%Jna*;C#qR^a<=oI5V0utB>ifh z^Q7*4$ce?|pO1QZB0JW{?rZibDGo(5)Z= zK8Qi9f&};=2CWJb;DZ>nYQ!f1O@cemG_At)|7FdB-!T0t#l6Ca9|1uEd=P_H1qtv$ z3|bW=zy~pC)re038ic0Kn2joFb+xykN?KSDLYKsfw(fVH)t)ocOV`9VF{G3RT%j#( z$;x=!i+}px?L>B+LQjFbi7BjP<2Pc|qfUDaV^)%3QhD#Tol*R?Yg-nbHF>;|$gVp9 z=m1_v9Mr}}M(P;c#s+c6tCnS*_>mRG(SOrkq+gmMs+AmlkNztr~F z?GHy~gmWo8p?&y+lqCRI0IpYCJLBK`uGiS(GIG(In^-AJz?UVfJ+G}fIVUTVz$%ck zXn%R^pRU{5QCw*N$#V+aU#kw&0ZXKIDN6vQl-op7+qMZ~OgjO-lhP63{rwmFzI+3D z)!bDNC@&RCogfE9oll=)TVD3Rdhfng1R z5r7qx`c~=eLjo26CIB`7MgUd-W>Do{djg;)0JQ6 diff --git a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow2.png b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow2.png index 8beafa06dbb5d13694d1414440fbd8abc6a2d5dc..e1459332aeee24053ede0485f78fd9fa06a162dd 100644 GIT binary patch literal 3349 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 VP3BDPwan#T5|pj8O}-T-`u{!MqfP(- delta 2218 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 diff --git a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow3.png b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow3.png index ba95fde9e59c54dacd0eda155231ef640db07f41..2c1d944a619cbc07511dcfbc95cf3dcb4129082e 100644 GIT binary patch literal 2163 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|_);T0(|mmy zw18|5AO?X;!IOa`XMsm#F$06fED&ZCw^H21z`&fB84^(v;p=0SoS&h?X&sHg;q@=(~U%$M(T(8_%FTW^V-_X+1Qs2Nx-^fT8s6w~6 zGOr}DLN~8i8Da>`9GBGM~RsBTId_|A5Z7NlCUU$t=l91qU45Kj08_%qc+?1*r!G zK~5$pWUX=%^U`gVDs)p)(-KQ_N|fx1$}{s)^2^O_^dYKHbwfl^4Ykq7V!sW@*H)21 zsm1v@rJ!)PGcq%=0fz;OC?WhAD)-&xVCIlS7%^gY4LP%45?sz8x@-&>Mk;G=H0#3$`O;|yq$P*g$)Bus@8f1 z1!nn*xCFd#u3Zt3Q@g=QP_RBqu=eBrr9YBdr+GQZzj1bquleA1biZ1}?d-)zTzs-R z6&D_p7I}aE-1y?f%L*L!!(Y)_hc`DViT z`A>d^+*{dsIiy~kE!yt?-gUF1=k-g!y|2vOW42<#`TD{)kLIz53%TVS6l&i&<>Sua zx6gYn9b0O-!+-16S#|%WmCC<;V(55GJb>S*F~es{LeSQXm9u~To|PzJrPiWw=dNI9 z?Twu583%PwJr|FSuVh`a`C9p5|4SJPQ{CF@ZTdFdl=)S5yXxBA+wEd!*0}L4J@X;q z!)O1#seNz7Zq)y}CHF(LdYyXbw|630hG#a(*1LRpx!E{jy4ZU#|LI+`lqAedXZ`Jr(c%{k%MJPVVO0wa$5V^%r_STRhc$FqetF z(#X;6y~qtImA>N|>b0&-F$#1mXQFH9e=lj2_S~IwuJ|5By zh!6CdW&eAQ-;3YJ=XjVXdzJL$sh&M4zkZ9);RBafB}Lio5BSE)A(qE@Ro~3TP=GDL z`SjA-2}cg^zxAc_Birq-_ug;3ZLU;tD~J0HPjb{E!Mo@GpPt@bexP`j-b1kyL2keG z=3ezmJG(vicH)$vBU!K4F1#F2Mx!W&*)zg?s3=>9M`;qAW1_ItBF zCf{EZxxM1}MW5o>rTcazuG;wYx|#N4rE9zDou7nm%)h07hiU!n1+zEb;hy__?Ul(U zr*BNzsrPx7^Iuh7h6hX=?yfekb}zHNQ+7>f^_uE$jxAamOBe(0Z8=qFl|SW5Sh%8v z>M5ydH~xQBS-SQ;`-Uqli@ttdvzNUusm|q>s_JDuUWT5D(g%6m7pr~RS1w>z%f&j$ zgh3(k`~BT1kHfPsJWko&*v-O{$-txHH`BEE@s>q7OjXr>i;YXZ&WVfr-1up-gA~Ju z`H9yapWJqw*I2Lgl+^4Z=f87LMLS9{TwvPU+`qz)<5-VptoXHWyO*d6eQKD%t{?&; zTWl7*sA%|9EWt8$*<1HDLc9;1=bO3tZM(lwIQH+kr|->Y&b#(u^Zk!U-!78(;^J1a z5u7NvrI9CLO-(wLb3=M7!QH&XE3uI5+uvrr*!q8yG0FquH zdE!=0AOi!)$OVE8VGOevGuSsdOz8S{+6-(DRIq;apH0uXbA$O9?h9nFED&u-JCJMS t_LQN;M&SvgKez1@Mn!&($_6315B4Fd?c5wSh7q6&-_zC4Wt~$(697C$OPBxv delta 1128 zcmV-u1eg2s5c~*`BYy-#NklgOMhtD2Tdy13hj@jttp$flx3}@yVSk+ zoO@;_ezz@r$eZx9nG>Gx%ei-cXU^|;e#|hR`Q>M>vi^E z_UiAJ?ZEhFL%8RYDv1&{X-NqW-@Rd(rb!uNgm$!q(uzuB%pi;zge0h5d`d^U)2Y*iz$8pHd6`N&yS2tNaJDYIMrC}IsFnea&*w1?kR9?8b8?K#Ax0pF) zx^M`Uk-JSHb7p=7+NY(DWwv3k!R*Jktk{Y1uYC%%Jna*;C#qR^a<=oI5V0utB>ifh z^Q7*4$ce?|pO1QZB0JW{?rZibDGo(5)Z= zK8Qi9f&};=2CWJb;DZ>nYQ!f1O@cemG_At)|7FdB-!T0t#l6Ca9|1uEd=P_H1qtv$ z3|bW=zy~pC)re038ic0Kn2joFb+xykN?KSDLYKsfw(fVH)t)ocOV`9VF{G3RT%j#( z$;x=!i+}px?L>B+LQjFbi7BjP<2Pc|qfUDaV^)%3QhD#Tol*R?Yg-nbHF>;|$gVp9 z=m1_v9Mr}}M(P;c#s+c6tCnS*_>mRG(SOrkq+gmMs+AmlkNztr~F z?GHy~gmWo8p?&y+lqCRI0IpYCJLBK`uGiS(GIG(In^-AJz?UVfJ+G}fIVUTVz$%ck zXn%R^pRU{5QCw*N$#V+aU#kw&0ZXKIDN6vQl-op7+qMZ~OgjO-lhP63{rwmFzI+3D z)!bDNC@&RCogfE9oll=)TVD3Rdhfng1R z5r7qx`c~=eLjo26CIB`7MgUd-W>Do{djg;)0JQ6 diff --git a/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow4.png b/Resources/Textures/Structures/Windows/reinforced_window.rsi/rwindow4.png index 754af67ca375ecbe1cce1a93a6ae6de253280ae6..6e9e88d1e901453cc98287ba3b048039ebe4b229 100644 GIT binary patch literal 2172 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|_);T0(|mmy zw18|5AO?X;!IOa`XMsm#F$06fED&ZCw^H21z`&fB84^(v;p=0SoS&h?X&sHg;q@=(~U%$M(T(8_%FTW^V-_X+1Qs2Nx-^fT8s6w~6 zGOr}DLN~8i8Da>`9GBGM~RsBTId_|A5Z7NlCUU$t=l91qU45Kj08_%qc+?1*r!G zK~5$pWUX=%^U`gVDs)p)(-KQ_N|fx1$}{s)^2^O_^dYKHbwfl^4Ykq7V!sW@*H)21 zsm1v@rJ!)PGcq%=0fz;OC?WhAD)-&xVCIlS7%^g>GgDR45?sz8y%Y=5-zgu`?)jk)E20$Q&nu+=4sezvNAf` zQ)KDdNLE3SUkUP30`+oh0=zU|_Ak96zItufm!)4Fr!>@FV0VnKDOeozUuaF~WevlL zYEelZD_*v-eNV4@_jZo1GS|(MFV5cCt+-i#bMg7Vmd|&mKb!adjqF+*(N5~S-%ED>6a0K?q5t9N?{h7z=2lhT>*w_eKkmD37pLn*Yxa{e!V6{h4CJY)}2Pb++ zv>F_iQ1)*5Xy6ve(2)CBee&H~>hfC^U$3`seWg;eVP)FZMP-t*`^y|-Kcsa>M#gnz z-S4`1@yN`bpM_-PUmkv{yLM-ft8a7AtgSk`3a*X(tf1$VgLg&k#JNkO{75-V` z*>9Kc`qI-H@%&%xLiWGgZ!gb&zdYuKQO45}?j3do|9TuHpD_F}Ig@?=5JQ2*zQaEi z*%=HQ!d?HaQs-fK@Z-SO#?Q>(+hrJ@F#Rz)lfB$!f#`b#hz_}KWG z`8oT$_uCWWev7j)Xt2b{Ti6%WpJ1#Ay>!0n5CcOWKTO0y?|}c~JzsRu%-y5$GF>*2 zp+OL0*Z0dSp1+Kqp#=6D2P?>@K<{2W%6R9s!JGH)tEX+)c<}!G$iTQ&y%(=|)bFb| z-}$D7!JOfC-~V0TFJ5gCi`{uFMXc5-KlrZrmQB;P{^aco2~XcKVNddL>-#q6ciCPp zoj-G{_)8lngOzc6ubui+=zQ5kRM<&C?gg)F_z_-K;~lPfpTs4L)ovG5J6NrjpHnf% zZShKzUmu?fYs@~o@NWE@6lUkc8L7#afo3-_ahin@pIWnu>n*Jo0RR>l0b)>$TipQ~vIdZ@hPrbJmZg%}Z9tpY;to zeIjV`!t2R9+r`hf6@81Gzx(jxX|rRdJv_JLj$FXy3p>ueJahVLo$s;v>(bXV&9|@B z|7CB^5O?WOp4&&c;^No0yL)~MelYSdyw1s>@$9DH!srK#N&$M$44L@B+}m@$GrV)? zD4&+X9#njfnTeqywqo0Mew&1C=M~ofYh?eRWO4iU`AYr?avV3Mwe3Gt2DP#A zSs`)PvrT;O_CWq@sk{|^T6sl!uiqZKB+m#m_!8rdtA&;FXCB#a-*u&OW7=Um_oEL~ zRu<2=^sj5eGz}MB75i;}@2;=hgTe~DWM4f_laR- delta 1110 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 delta 1110 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 diff --git a/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/reinforced_window_diagonal.rsi/state1.png index 65254207165b957f648e77219eb234caf994a8b2..454ab882de1126dfe6aa1e4300c11756965c38ce 100644 GIT binary patch delta 991 zcmbPH*T*wK#g?%+$lZxy-8q?;3=9l>sS%!OzP=1vKsE;ugTSTW$v~2`z$3Dlfk9&y z2s4UXDQ;q5U{0H8B|WiQhcCi6K*2e`C{@8s&p^*$;@7&#D;O;%FJm%K_ADq#HmS%h zaIGk@RmvzSDX`Ml&jgC;fVX%9HDOc);vwJj&()8Tlpoxv3>ZnaQ4cC8u0?!h zU|>@Bba4!c;5-^;tK%FfQJd={*3IS_Jo#XfppaTfaIDwmC2xevm^qbKZsHcQ-`Kga z`{02`%ew`HqSfc_@?P=m<;oiU<6nOPL0t9p-&^0`tv*-2@BN+MCTn|>(+VG7ysr1B zpy;QDfna?;HzT9_CtdXe53IS9=l-h?o5t|qpvNW#pN92w@7HhfVKgmnX!h_HVc4-O zJA97iqxI8cP82h3HLAC|$Me~R z39>Vlk9}Ce!tj2s*As@SUGpPyYFHn4Cst|OuB#vJoc!VLkkxnQ;#(%Zn{%Vi zcHNM7XHv2j+i>;Hw7Hy;dI<&FqQcAlr|f@Nu~E8kYQqUV>8`5^yJz#N|Ni`D`kBzx dm73PVKNxNLjG}8ezr6xwS5H?zmvv4FO#rINj?4f6 literal 16152 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 V&Rci#%5+eLvd$@?2>^G`q%!~j delta 684 zcmV;d0#p6-4Z{VHBYy&lNklXhI~L^ z{(xAhMM{P&vdJQwEW$_@rBK&`1`2J$ENwvW7X-R1nQWAZkcASr&&BYb?`u9xr^d6H z%-nhRocHd{oqNgl&K|`QaR&ghxhz`E8h_Yqy@Bsfj0-GlBY)Ci)H;=8csUFNw3;>a zE6iP*S{ekxE`g#li{K|ZWaR877h=zm1eXOsoXygobIUj11P|jmIo1^YDG!6hD z+dF$So6AbE6Mv6CN<$$EP?r+~+SY% zxHA)pYBy~{Nw6iP+u!^Z`%W%h><=0KkEZnVCr=t0y#4?kw|!%BQAFKo zNQKTW=kav6u-IV2M2b+WsOU3{1Be++R78ztUL}8E9L-q5#SSLR8cxZw$MfGDBhgrP SdW~QJ0000wo?6S>Bi%tSM@+xQAe?R|_f7>yatoG~NP7%D_d zZE2OYR$oZmu8+u;mPc!CvbTIJ`6y(2mU1O5#XU1zsi%FP=RNQH{?G6C|MkD&N_?p&tB zCwE*F1jSN7P%f7fO#R^r6UBtlJ;a307P@?-cSND7h&B=BQAND%QZLy>e@ z4pcWv@S9Di+Gry3@$poTwTt-m|{Dfh9)pM;WWFA2NKS#E=;7D2af_ z7D0STtOV|^rHIS%{vPq6uXn)%MFNOMUUu+-c@=Bb?NI0vNG_Hf2+-WbI~o5Lvg~F_ z(p4S0)czXz;r^%TQNfjOiKdrZro;e%_6*yT9-u&s>~o7Up?~(37b~ZY;bjy@p|dW1 zk4-wIP zsDn-OvD%Kp%+Edj<36S)tl;3;vllmyK{<|Drbj;{DxyQYn$T@ zU-ZSDwL4vy=kbe^Zvg5v_8H*%?9$w5j#4}`HB~}X6e28M`6f(J`;y-_>c{;$qXN)C2{XY`+YsqJ%+QzKj~5#f=T5AV(tTc*0Jl5YqN;(C z+qZX6RL9F@Cv7VW%C6ELxi>odYu#*NKgp`Q7bI0NYn!8#B(CxPZgyEX-RgZ91NbxMX%@_ zqj5V`lK8OItQ@RA{Avp!Zle8P!+4jsk`4FvR_Vvhmo>TlfEX+G&ip;7;f!6c5%MCc zn=!cA!H^c0R5KKf1cE3kX2>xS@6RTE zmYSnAnrKdw3kT{he({xVG_s<_4!!VXsO6>(YvO*foO|NLnpzh(^wjg+k?1$gsmX?J z^ePlS%>vOg3s|1VQqEP;J^H*k!1Q!1`hxaR5}05ACi}VUXot4Bar2F#%g5ZPwQbU$ zisl|ptlu*^$m9Sdb7Pc`CC7E6=^uborKj+e%lGb0iDb3HnFwVqS zj-fDj^dpKEr8*4D7jM|er_~YIGJ~!&{Ose_z%T~LCb@0heJe2dM?L*1rhHaHGGPwh zWELr)t|JIMzN=pbRTXiZ5neMhm1gVe#rwFw%MDJ3_*~{+y_Qw++O(wfHzQ<}?Yx;V zH5w_**8ZB7;S5MsBjf>OFu%?u(AYzEyaAnvZ1_z@;`(1~Q|_qm^u+1%?y|VTNVRo$QHhU+$||v z9*VjXkUEw?vF^C)e#w>UPs0ya_EmQ8n(jJge#9o^lPDk7VdGM*I>Kc6e#(`ePZeH( z$0X%*Q+)8L?4Ut{>F{Vo!oQ8baiF^_I*ojSQ0#O7IkBNgU8kZE8P{gPd8cx6+@s%W zli$Lf*&%#-q0g88LkpA>HOR>a58Jil(;3J?jB!x3&qSC3P!X3uUHewN*XZ>lT91CS P`X7VsD-^s57D`h$9z$Xv zkdp^N6jXwk=8#J$IaG>`ND;w8>7k`b;(x&f0R&Y^!h`;P z0Km%fDgdZ$EkcnnN`)d5nOqT|9qiQ1Bzn6$O#8-1h5-PdKfIxmNwtBnz`)>;A_hgB z&TE&y6$t>))_>M<{Wn3P^DE1%n3|bXpU0wc$7ORtfEK;o9XLEbLo6CcF!bw!$5FiMCQ}>po z&KtoE0cJ4jJZloDUE#jI`!9{pv@w>o#WO8|h;v4pDgm2!ppJWmTpR)CW_ z%NmXlV5PI6NZ2&k;RdJ)u(Q+6oSE6=EUj2(peDf1PMf*2ysQEyD)6s5fA8)c7Gjxz z2?0*pX@94|WDl^i(`E-6UO*iW7@tl|7@v`#g*JF`czlN5?haHX34zBCX~i-FH38-F zR;OK`we>uJItjdi+6%k5II~>i+Cit1Y4yJ#__^=|9S@0-7+)%xMko?ipT|drQ7KoP z7Hi5HN;^R@@vIW-wws;f> zK@wpz^?w_#q(!WegIbl0DohMYwLN$qH){W16pw73A%M@iVFgE zwoAICNvTl8LT>(2F+@+?8Y8&u#Yq6IadFZJ&t9F)WEXXb)2bxtk|h?X&sHg;q@=(~U%$M(T(8_%FTW^V-_X+1Qs2Nx-^fT8s6w~6 zGOr}DLN~8i8Da>`9GBGM~RsBTId_|A5Z7NlCUU$t=l91qU45Kj08_%qc+?1*r!G zK~5$pWUX=%^U`gVDs)p)(-KQ_N|fx1%QN#*^2^O_^dYKHbwfl^4Ykq7V!sW@*H)21 zsm1v@rJ!)PGcq%=0fz;OC?WhAD)-&xTdddkY-?DDfV=645?sz8fBj$YACVa>mlb|nUE=mc3*N7u+r4%_-pqoe!5Tdy80n7z*F<%0)GTRaK{we_0TUUhX`-V~h~yK1ZR_9p%#zxHk3|9H1a z`Oe+%KTX;uIqS*qNq63VKRtabRp+jLAzfA~Dy7Er zy7QYaqtMqyqR*Llc;mTt?cUw=_;{bh#`XVxh;E%(VI$a*XshM@-$MMs**C9!jMS^E z$_i92u80@)+)}rS!Qg9B+3N3qBHsqM^Ot74y%Vvzw8KK?LG#bBxZ5|j@OdtY6MgaR z@A?B%C!XehyR~`aw0f!i%}S*&*Ef9Tc=5)jP%&+PY(~yH_N{$~89(X#|8?wG^wsz! z@1Dv{aGiHz=AYeh3}%#Gt{n7KS=x=&r~{5@vRnHppmkNFgTP_xgEUZzvWU+~vD zuFd3qvMQ6oWW8%9>eH9!xH7cpLhQM*sgpIpvq^^0O{L(&s`&VghyQ%> zmRzaB%i{O2tc#QH{cth0Rj)QW=E_Xv+ow)_4~btb^XS9w^8bljSUS$!xVw>~{9g9D zrAt$vdppQ5&RA)%hJCYsJgeOqErX{gk20M(fA)E0-}c-iOl#Ku+p}WR;nVz2&GYWr znSRfEcyaB=|EHVvObd7J+_Yy+S#D*lP6MCeJ&vFM*>*52^_{rxaII%p9a|;Ki;ibE zRZ9Qn+&ID{5IN6bUQQs(pQmyEPbD!5ymRTD+`qDGzCeG<(g04Ijsw^Ch;9*MTMG=H zJ-cLd9;~hL*vO#Ze?owhb4m{XhmZf6HZo-0C>C7Qaifmu#A~}MFOF-Ex*`~4<2n{} zEzW*@E6tTbr~B>(^$t)}*qqG~Va(w_kn_0N{YvaJuzgLF`#qQ1DDu266rSEHQgKwl zv1L#8JiF4bs-a2@X>qZ9R+E#na*UbKW061GPCq^EUnfs3W%iq5_hpIAPn+%^`RP&%onK>g4ho2#om?zuQzGn8~$ zk#sEd;vPW<)?=?{RF+zPFiSmskDK9>i@?NyX=~Qa4`+HHXSgpg?;qES#PhBzl$7=e zHKb{%`A-!o5pWc3-zDO!*{@;Mv-I2Vm$nYtiN#e{48p&&Kv$k_jL7hS?83{1ORX#P^SO@ delta 859 zcmV-h1El=o5b*|(BYy)pNkl%O=uHA6vzK7#fn7_f+z~52{{NtFH)!=#>Q(% z@Ki4ff_M>2N(B$%NyLlA=)r>*!4|3)F{Rh^>(WB;66h^tbFo_dK$MCVVLgN`o5^N2 z+c&dslKoxE&SaRKmw7WU|MzNvnUT>khcbR+eaWJX@1qP>L4P8d4EOoOP}B3q`Vwh= zb^~PdIiylaoIZ6T@UtJcwgCXe>0*l^_6xfK7E1Hd#he`;ZfVQrb66GLA&1_NDQI$?!6J; zY8c1{Sbr=ps(24J$OhQn`ZO)Jc_Y7@wGW8|0e-|P4)7y3ae$22!~rs55eLX*GM#Y%`@hY(RI4@E lb{#9LYfbHbae&I5@E`1L6NzzdrU?K5002ovPDHLkV1jxwo?6S>Bi%tSM@+xQAe?R|_f7>yatoG~NP7%D_d zZE2OYR$oZmu8+u;mPc!CvbTIJ`6y(2mU1O5#XU1zsi%FP=RNQH{?G6C|MkD&N_?p&tB zCwE*F1jSN7P%f7fO#R^r6UBtlJ;a307P@?-cSND7h&B=BQAND%QZLy>e@ z4pcWv@S9Di+Gry3@$poTwTt-m|{Dfh9)pM;WWFA2NKS#E=;7D2af_ z7D0STtOV|^rHIS%{vPq6uXn)%MFNOMUUu+-c@=Bb?NI0vNG_Hf2+-WbI~o5Lvg~F_ z(p4S0)czXz;r^%TQNfjOiKdrZro;e%_6*yT9-u&s>~o7Up?~(37b~ZY;bjy@p|dW1 zk4-wIP zsDn-OvD%Kp%+Edj<36S)tl;3;vllmyK{<|Drbj;{DxyQYn$T@ zU-ZSDwL4vy=kbe^Zvg5v_8H*%?9$w5j#4}`HB~}X6e28M`6f(J`;y-_>c{;$qXN)C2{XY`+YsqJ%+QzKj~5#f=T5AV(tTc*0Jl5YqN;(C z+qZX6RL9F@Cv7VW%C6ELxi>odYu#*NKgp`Q7bI0NYn!8#B(CxPZgyEX-RgZ91NbxMX%@_ zqj5V`lK8OItQ@RA{Avp!Zle8P!+4jsk`4FvR_Vvhmo>TlfEX+G&ip;7;f!6c5%MCc zn=!cA!H^c0R5KKf1cE3kX2>xS@6RTE zmYSnAnrKdw3kT{he({xVG_s<_4!!VXsO6>(YvO*foO|NLnpzh(^wjg+k?1$gsmX?J z^ePlS%>vOg3s|1VQqEP;J^H*k!1Q!1`hxaR5}05ACi}VUXot4Bar2F#%g5ZPwQbU$ zisl|ptlu*^$m9Sdb7Pc`CC7E6=^uborKj+e%lGb0iDb3HnFwVqS zj-fDj^dpKEr8*4D7jM|er_~YIGJ~!&{Ose_z%T~LCb@0heJe2dM?L*1rhHaHGGPwh zWELr)t|JIMzN=pbRTXiZ5neMhm1gVe#rwFw%MDJ3_*~{+y_Qw++O(wfHzQ<}?Yx;V zH5w_**8ZB7;S5MsBjf>OFu%?u(AYzEyaAnvZ1_z@;`(1~Q|_qm^u+1%?y|VTNVRo$QHhU+$||v z9*VjXkUEw?vF^C)e#w>UPs0ya_EmQ8n(jJge#9o^lPDk7VdGM*I>Kc6e#(`ePZeH( z$0X%*Q+)8L?4Ut{>F{Vo!oQ8baiF^_I*ojSQ0#O7IkBNgU8kZE8P{gPd8cx6+@s%W zli$Lf*&%#-q0g88LkpA>HOR>a58Jil(;3J?jB!x3&qSC3P!X3uUHewN*XZ>lT91CS P`X7VsD-^s57D`h$9z$Xv zkdp^N6jXwk=8#J$IaG>`ND;w8>7k`b;(x&f0R&Y^!h`;P z0Km%fDgdZ$EkcnnN`)d5nOqT|9qiQ1Bzn6$O#8-1h5-PdKfIxmNwtBnz`)>;A_hgB z&TE&y6$t>))_>M<{Wn3P^DE1%n3|bXpU0wc$7ORtfEK;o9XLEbLo6CcF!bw!$5FiMCQ}>po z&KtoE0cJ4jJZloDUE#jI`!9{pv@w>o#WO8|h;v4pDgm2!ppJWmTpR)CW_ z%NmXlV5PI6NZ2&k;RdJ)u(Q+6oSE6=EUj2(peDf1PMf*2ysQEyD)6s5fA8)c7Gjxz z2?0*pX@94|WDl^i(`E-6UO*iW7@tl|7@v`#g*JF`czlN5?haHX34zBCX~i-FH38-F zR;OK`we>uJItjdi+6%k5II~>i+Cit1Y4yJ#__^=|9S@0-7+)%xMko?ipT|drQ7KoP z7Hi5HN;^R@@vIW-wws;f> zK@wpz^?w_#q(!WegIbl0DohMYwLN$qH){W16pw73A%M@iVFgE zwoAICNvTl8LT>(2F+@+?8Y8&u#Yq6IadFZJ&t9F)WEXXb)2bxtk|h?X&sHg;q@=(~U%$M(T(8_%FTW^V-_X+1Qs2Nx-^fT8s6w~6 zGOr}DLN~8i8Da>`9GBGM~RsBTId_|A5Z7NlCUU$t=l91qU45Kj08_%qc+?1*r!G zK~5$pWUX=%^U`gVDs)p)(-KQ_N|fx1%QN#*^2^O_^dYKHbwfl^4Ykq7V!sW@*H)21 zsm1v@rJ!)PGcq%=0fz;OC?WhAD)-&xTdddkY-?DDfV=645?sz8fBj$YACVa>mlb|nUE=mc3*N7u+r4%_-pqoe!5Tdy80n7z*F<%0)GTRaK{we_0TUUhX`-V~h~yK1ZR_9p%#zxHk3|9H1a z`Oe+%KTX;uIqS*qNq63VKRtabRp+jLAzfA~Dy7Er zy7QYaqtMqyqR*Llc;mTt?cUw=_;{bh#`XVxh;E%(VI$a*XshM@-$MMs**C9!jMS^E z$_i92u80@)+)}rS!Qg9B+3N3qBHsqM^Ot74y%Vvzw8KK?LG#bBxZ5|j@OdtY6MgaR z@A?B%C!XehyR~`aw0f!i%}S*&*Ef9Tc=5)jP%&+PY(~yH_N{$~89(X#|8?wG^wsz! z@1Dv{aGiHz=AYeh3}%#Gt{n7KS=x=&r~{5@vRnHppmkNFgTP_xgEUZzvWU+~vD zuFd3qvMQ6oWW8%9>eH9!xH7cpLhQM*sgpIpvq^^0O{L(&s`&VghyQ%> zmRzaB%i{O2tc#QH{cth0Rj)QW=E_Xv+ow)_4~btb^XS9w^8bljSUS$!xVw>~{9g9D zrAt$vdppQ5&RA)%hJCYsJgeOqErX{gk20M(fA)E0-}c-iOl#Ku+p}WR;nVz2&GYWr znSRfEcyaB=|EHVvObd7J+_Yy+S#D*lP6MCeJ&vFM*>*52^_{rxaII%p9a|;Ki;ibE zRZ9Qn+&ID{5IN6bUQQs(pQmyEPbD!5ymRTD+`qDGzCeG<(g04Ijsw^Ch;9*MTMG=H zJ-cLd9;~hL*vO#Ze?owhb4m{XhmZf6HZo-0C>C7Qaifmu#A~}MFOF-Ex*`~4<2n{} zEzW*@E6tTbr~B>(^$t)}*qqG~Va(w_kn_0N{YvaJuzgLF`#qQ1DDu266rSEHQgKwl zv1L#8JiF4bs-a2@X>qZ9R+E#na*UbKW061GPCq^EUnfs3W%iq5_hpIAPn+%^`RP&%onK>g4ho2#om?zuQzGn8~$ zk#sEd;vPW<)?=?{RF+zPFiSmskDK9>i@?NyX=~Qa4`+HHXSgpg?;qES#PhBzl$7=e zHKb{%`A-!o5pWc3-zDO!*{@;Mv-I2Vm$nYtiN#e{48p&&Kv$k_jL7hS?83{1ORX#P^SO@ delta 859 zcmV-h1El=o5b*|(BYy)pNkl%O=uHA6vzK7#fn7_f+z~52{{NtFH)!=#>Q(% z@Ki4ff_M>2N(B$%NyLlA=)r>*!4|3)F{Rh^>(WB;66h^tbFo_dK$MCVVLgN`o5^N2 z+c&dslKoxE&SaRKmw7WU|MzNvnUT>khcbR+eaWJX@1qP>L4P8d4EOoOP}B3q`Vwh= zb^~PdIiylaoIZ6T@UtJcwgCXe>0*l^_6xfK7E1Hd#he`;ZfVQrb66GLA&1_NDQI$?!6J; zY8c1{Sbr=ps(24J$OhQn`ZO)Jc_Y7@wGW8|0e-|P4)7y3ae$22!~rs55eLX*GM#Y%`@hY(RI4@E lb{#9LYfbHbae&I5@E`1L6NzzdrU?K5002ovPDHLkV1jx<+OrD zDTo|Z>Orx1&;u$I)S@UT1#K%JL=+-L3rZCQO1nuYqMx1bo1K|A?|=WBf8KnX8@kEQ z$Z(Y*002e-{_HSx^wf0R67*XGrwpJ2MjGbl4SaKzFp4gWq3D2wkPyHgo#W81Y2D#P z=oc^c-zo)w^#?Q^V@Y3g8UXZ#a6~i`9TH6EiISbUd{I2)EKe3|Q4Bd9ohCyFmncsb z2&Hs6lce>aqjQZJBoVbP$cIc)bVw-CMNfJS-ySqC`p@B4-6YAk4-7ZA9awnmbtPApA95y87NnkMoi-bf? zTyDHbhA>Ga4bei=<;mwQ@Q7s+ftH2O10eyF3<(h_NOh)yufid4!t)G;(s?;hVL;6e z3ZuLd79d7=8&IWu@BoM$FW$6O0Fp)`;JMp0eu1tWCSkhEj$QPx)%>Z>?FQRqU7lSgu zSMW15r>1WWgQOyXOrtxC=DLBQ)#3%~^Bd41qF;$vY<(FKnj}I*Xhlh2UVspRBw`6# zT{^~jzW?`lIo5OXNFj`{X!8MHGA}|cx*fWg1W6T1K8(=b#B&+{*JVD8PSQmcsw;o3 z{Am5N3>o0UTVff0aYAVg0NCsRwpWB4GaSQAGWRkc@K^0ZR@eusp7^i99XB_>Fl*u3 z8fW2XUSFTHIVLEEx;`4`ieFWqU%fmym>t?>A7^Q5?HgYGnw;2{Hm11J*HBt^OL4}- z+NH{6^5c&NraH?SZr&2SqiQ(Fayf17x~lc*g`eY6ZbwFh`xmV4!14~CPp$0i+!^H~ z_)}o;ZS#4|jhMc^x=2OwT!v$tZ?EyP4VjeMr9SFwoPQ3TTJ{TuaicqarT31T_vbDa zyfKPQ_t=r}*MKJ99WaFJ%IeSC)AC4f!e*w9ru^h?aS$x7yO) zYle**xiMUo+1^t}!1%rXc&!*<;P>M3`rM;o*na_9ldQ-0grP=-(U;kWN6=|$C9B!uqRBQl_0CWE zKtfHq{ICtq@m+*5>VSy%IWOl&ZaF>Ig;SOF^YNaIW`@Qr z4z%)1`>k;}(0F5{zD@PE$=-{x$2k(w-CaP(*+xQt_SjrrydF^D?PF_m?)rTUzDd2O z1bFL#JAN~#-tXzDCNr2FukWJ7Dk!lbhu^74YUwyH;WzuG_0+v;|5urt=HxOqGl^Kkl1 zlVzwVH`k6(ajbZ*JhmhKDrZfa@(KHrUj1k(e7n;dr*f(FiR&3l&-*+VPo$g$27CEH9*P(k^I3CpmBq-6}x0S~gFVz{VGjsJ~iw=#dI9N2M~J!o`PQO>Cv?L%Mj_wPO$ xDp%IJSY^o)Rk^HjtU$=0iOHyaf;}Dc>@`t=A-yV7!qWWn1AI5JzwwUC{1=>?Sw#Q< delta 890 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 delta 890 zcmV-=1BLwd5ReCuBYy)|Nkl%PiPZC6vn@mVx`3%grX>vY{)?ndXYj4(%5)i zvUsW&1wp(Bp;E6N#f#F2;Gy6}i&bw4xu$K3&_eN2@D`F@S}awON{ba?J(P{x$z->i zH=8%j{%-p(v-9n|nQz`?3@|e?I^mefBrH3NQlSXT&H?~l&VS^Q$)tbH&%K`&pV{Bt zLEpe2_IG#i?dSJLl=4qe9#%;zm4s;~kRBgHdVCB3U>Jtumv4v=KmtVHi!7^nUrSY5}eAerZ+B-i!7E0BU1i(y4}SyrFM{JZP0e2H6R2n(o>fN3UBDio#HV&wxwqV@suaV7*qLzkb4=e%F+-h z1+1+ulHY+sBrPDym{mZZ$wdSTaX0^8h@u{W@c)7idw8P$N~h7)2-~R zF0DXG2!xG!S^A3$B?3e_PDhQBKEQ9BZZ)CN1tooecP z4{$}$iH`dK-C*$nI>F`xbb-YO=md)okfp!4=%N0A%m;W|g4+jFmRA5ATHtE6MlDtu z-$vL6LvxWF9`AxU9(@nODFpj zEd}UgpTaHxw~t^KfZIo~3jpx?2rUHQ^bza=aQg^lS>bkh{N(9X@tm795tApf>(dW& zq;vAw1(h?X&sHg;q@=(~U%$M(T(8_%FTW^V-_X+1Qs2Nx-^fT8s6w~6 zGOr}DLN~8i8Da>`9GBGM~RsBTId_|A5Z7NlCUU$t=l91qU45Kj08_%qc+?1*r!G zK~5$pWUX=%^U`gVDs)p)(-KQ_N|fx1%QN#*^2^O_^dYKHbwfl^4Ykq7V!sW@*H)21 zsm1v@rJ!)PGcq%=0fz;OC?WhAD)-&xTdddkOtj6-Z1 z1a@3|bN$@)6%YG07*$O95)SBZe^^yr{r`l}zyH7Y{QdR!IorP@^>wv>&;C*VUssz_ zas7?|GiT?c_KQAGVl4RS5H9+@?A_O6%qP?g#hZ3+={mosNc;UqhAT^E9rihDyuIr& zV@rV#+pbj=+l#l9cQWj#S+KgR+}geRF=K)rOL3-X{70+ZpXB%z>c2@f%{m_Q?B)7L z6%2kBYQ+|3!fcA&KTyw-y2!{&b6?(n9(wxJ?c(!bVtOLjK6tK&8SNU@`oMs1kX!GjpdKhv)sDj&&_O(EV<&D%k5j=GR!IPc~&rEZN;;)2b!>uI`?WTa!3ikFJs6GI-9uc z(ahP0$`}-7CO59ry7%_YD_d0tJ^2@_9^E~+F3y_aOlyMP+DF=P>FW31GJHy3uehS} zOzOOUBHNe?4jIlooVe}L%-fC2Sq?m9jt$*&+Y;z3h1o}9IG$b7vip3>ch7Cc6`rQ; zGrQ9BxNgH^WAp0oQ(&>NyXq~20XX*7SInJTv7PzE{Jm`po*7QB{1tqI?*QlV6u$PG zK<(`FgczptmxO-Id%h;lx*A4S)11|>m6Kxy@{ wKWIrdYCoKF)VQ2QUlQhtxO^KVPmp0rzU{I#bCmgKRe>rqPgg&ebxsLQ01EZjJ^%m! delta 386 zcmV-|0e$|@4x9s!BYy#7Nklb;@5JiWS6zS4ZbHE&fn}$eH3TnE@8dl)V zU+?os|1}6k4BBtc`Wg8UFsIY`l0Uose#P$%^5v~~w)i#m9(EbP z@(BN@-UA*$Uc~aqwicP|DtG|PMYc}sS9KLUfQY#>pV>tKGk<43g9p$%^P@w+1L&Rk zTvx#ZXkibq2iOBv*H!QUBJ2V70MY{vY6JRyUS*RrfSl=GHVJ^7>0aaj=4~SYbpRot14eSB- zfJZ9r3HAWBfqOl`9#CuMGxh+rfjz(;@JOXS!5*MCum{)!YR!Dc9-ua;?g8@i0V?$K z1^5#pEoSa1y9{9Fo`MHJdjuW;?GbnY5q?e(^$0uw+9U7)=>HS&09x1s>;d+G)pZp- gfCzhlJ%IFpI}YWnoU#P_bpQYW07*qoM6N<$g0YjcX8-^I diff --git a/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/meta.json index 453a3797223..8477687a8c7 100644 --- a/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github)", + "copyright": "Made by brainfood1183 (github), transparency tweaked by Ubaser.", "states": [ { "name": "state0" diff --git a/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/state0.png index d218355a78d335ad324d4435bb6a2714b693251a..f3a4f8bca59aa05e9643cee5653100277b0028a6 100644 GIT binary patch delta 939 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 H*KPV6dK~`C diff --git a/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/state1.png b/Resources/Textures/Structures/Windows/shuttle_window_diagonal.rsi/state1.png index 810b703900240ea7f30ff3afa8186dcab19592e5..08bde9a23c42d60ec2495a3241194dbe33b50f11 100644 GIT binary patch delta 887 zcmexZ(a$|W#g?%+$lZxy-8q?;3=9l>sS%!OzP=1vKsE;ugTSTW$v~2`z$3Dlfk9&y z2s4UXDQ;q5U{0H8B|WiQhcCi6K*2e`C{@8s&p^*$;@7&#D;O;%FJm%K_ADq#HmS%h zaIGk@RmvzSDX`Ml&jgC;#BtJK`q$o4l zGp{7IsGumdBoU(8MjvbfRuz-`xkM-5=Q1=$@~xF)QAv4zQFaK}XCSBAAO{AD^yC%X zX7z`zMSNvoU|iwp;usRad31`s7qg?p(c>CXOQ!DaOi*0m>2)ySu^`JwjyNZ7Z&#P1 zz8g25a2$-dy<9->Z1j)TlPTrtYQOWl{;JKs`*ZL6y)#Xh9W5-V__h72Sp0{${pnGH z3^8ZT^$xV1Pn&<1tKgx&|M#<;Cz{N~9OeGJ__3z0p1teA--9P}*UrAcUSBKcnE)K7XB&HM<^9!BsD%4G$l0|89CacL&Q2zA0i1HYUXfO>eL-Rr+x7 zs%05BS4{CSv&r>0xMJLM?LE12@85i@m;3+k%;g$)FW)%9_~0d1cX#!bE~DqNSz8#S z*S)*j-*e8gd-bhtlXw5EpTZz-qf#uru5v?zfJOJ_kDIKXNoGxGkk}!%?Y!lJJ+J=q z{dn+h``j}x@BQr+cqeZ4pgDh%CDV$XOimAUgeF_Q4=`pua$swK&olRimDx-+A8r)u zl^1l}XmdKI;Vst0ARCX8UO$Q literal 15473 zcmeI3Yitx%6o3asBE<@d+DZ&=wviw(JCA+NxLsPh#g@9Iwl%a6h3U-Q?a}bEYx@uk(MN!qQEx}IsZL|Kbp8-FObow0pni+5DH7IJaqmYHG> z)Y}`afVQ4chpkCZ0Gr$4p=H+NwRr^x=k|JC-X%7k<=hPGWSlI`J4F{Ox_DdevInZ* zoj;+3#m?aJTsSDz+xty3E;39qnRFzb4m}ZJI6)8?mS=dLhBIhmNHe7rtr>M$CwV_X zV8{tIZmPOwv;0bZ`k+~Fw_AYXdh1eC>8;ey8ZJ5m)Ac7pyik3$AP#iFw zz|aR1GHBiaw^CPW_of;yCa27krI~c?Af--XW@)l!nWK=+kRR?@1$7|&AYlekLdD=oNF=5i7Z>< zBs&xF5z-YkJXG|-!2`{Ab6$~!e|)Krl9{LvSU-wnN>lPuI=94+B8y=?5tGb-8j~V` ziE9x*QyeUrSvXZFW#l_M>AMny_SP*2V>~jId zlQ|pZ=EareT<4=h*OfOOc6!3BkXA=UgOsKG(OVN@!)?O5AFKnO8 zy1hQy=K(zJ;anW;bIM-Yjwo-4;_mx7YhEofdKhvH>Nw!*cK(?wLD1N4Fw74wPOs$a4DIv)EFEO7yMzSAh zxUP|Pm6tm8%3Y%2Z}ly@Es-(uONc!<4G(Kc%5^ zrK&|%b~LrsBbPf&%wT87n6oG?4T z@FKy5=YwboE(8c(B)IT=5G}!l0Ktm{7oHEICAbhEc#+`3^Fg!(7Xkz?5?pvbh?d|& zfZ#=f3(p795?lxnyhw22`5;E;e!iTdrY&p@Hg=~@e)in{s%;Im$HwP}ZqyF1m^1xx z&y41_?Q?=F>qc6>vmG~%|IpTQ@X+leCr#r0PaJ6yBp=#S@G7k4~yZ17*K-j+}*aHlH|f z^kT0=x@Ygat&1+D4<(OYeA$>eaC)rgpm1c<<)`lV?wj59_uF5&R@plqhO%;G^{=J>UnDMyCd6o4~_O)F9o+Yw+HtwTet0BQe5bp diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/full.png b/Resources/Textures/Structures/Windows/tinted_window.rsi/full.png index 6baa538dad92fff2a6c364b70fd4a5d045c04afc..6e1e863798be43c1e8c7dba75392d64f10022699 100644 GIT binary patch literal 3495 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 nXYAxZ&0s4b(PK|I`T=@cMw+$i_EG->@F4?q diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/meta.json b/Resources/Textures/Structures/Windows/tinted_window.rsi/meta.json index 30517fd0ac6..90748bedfde 100644 --- a/Resources/Textures/Structures/Windows/tinted_window.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/tinted_window.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/ f141c349e063f7318d8c8a2417d840f0b2d06600, modified", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f141c349e063f7318d8c8a2417d840f0b2d06600, modified, transparency tweaked by Ubaser.", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow0.png b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow0.png index 414ffd9f3ee92a394adcaab92ef34f74bbb1afd5..162cfa0cfac669a97ae0972f60d90baa80dbc3d4 100644 GIT binary patch literal 4035 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 ab8t=W+3+3vu@AfdWqM}}wJS93LjDIjjs7hF literal 10814 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 ZYxlTu#$ZI33;lct)RncBDiy54{s+=SrBna_ diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow1.png b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow1.png index 90131a48bf96cc8117ce389ac97229626c1ca243..f022a67d8126e95d08de8cb8a2e1088722b1a218 100644 GIT binary patch literal 2719 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 uW-yZ+eV@6{#91FZD!?nr3jhEF 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 diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow2.png b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow2.png index ae12f39860f52ffc274a700f9d45e285625ff1f8..162cfa0cfac669a97ae0972f60d90baa80dbc3d4 100644 GIT binary patch literal 4035 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 ab8t=W+3+3vu@AfdWqM}}wJS93LjDIjjs7hF literal 10815 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 diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow4.png b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow4.png index b79db5f7893ce7908127d271a29bd3d13c6e8fb8..41b69347b0b5028254467b7a0217557557c60269 100644 GIT binary patch literal 2692 zcmZ`*3pkVQ8-JI>oYz159E&y8=xg3>a@uB_$oUi!(r4JP%(mubqnM~1QVvNa%J)z8 zbxJkU+qrD?H__Em3JcLX0hytSh8?9g$P zdV)?sww3!{JL^M>mL~P^u1yR`qMA$8uQ~V~^N6=*3}4Y!Rod}3%k|LnVxmE6WU=S( zM?cl|EKKY*qf!x~zwS@0+4I^`l&G^V+v(IpOq91s*WzXSSc{hfIsaVQ?YYz8W*AW7 zX(O>ay?jJf1Tjo|BJP^ywpccjubKTX$4R;N=thHp&K&i@1Em3-f2$2%der;R#fQ5a zFFgP4?in@i@w9XM^anS1O=XO!Ze%;QyI0K%&kMVucXMx8wnk#jqDTMj%e*z&Z8-h3 zK$OZtQh7Ibp|PCwlvRb0n+n1Wv)vm~`*;uAdSc{xe{)mk=#tSV>0+OU;U{>NDp*}+ zMXZ8>E?pY9Z)Z?}WZpH#JdU8>ZAsZn%!8D>i>V)lZSC-$y3qEkF&V{7Q=O2HT}6XB z)%BZHoi9`mH2yJEa{a}8jndjqB2?bDzt#G~e@us;O_eGw6-*n8nl`Vi?4O$~tDY7! z&^6N26Id$StH`E&-1plhTUB{3L2&?}t}UN1ptwX202J6P|3E0v(}NhnjWrKraKoAA z!dTu6i!3C{wy{ho3?+b0KwPwbzF8T|SsQPh&|2N?r^;;^fuy}u9^!O)|l zPM>O=;V@5>wG6a#H-q|_^khYRykf^WA~EM&Yc9Y46W$GENy5t@=l zE)RP>t@J>-?C?M)e!scqpCYknigYQSa!3J$H|-k8&XFDr3A?m`k3rzI%Fi3r90n?# z`>LcT*IwN|oO`7?wUNAx{?ZWeS=%q{Fg4#uH!3SU5(7vsCloCKld0N1HS*IPCWWE-N(CX#)cb#}K(q(jZNh3i+ZSUJ-52vdDMp}T-uElAccXXxq8 ztH0i71FO0S+hX6g_61-w(n51FT8Fqgfy{*~o^PHS8!%S4DVh)p^)G39h@?|@M~#>G4`r(Q@s5^J-GuI8>wAZLZ3@^wnb8kww|V=B5pyV_=~3-Hn-U9SG(Dcs?jhj- zzOHwi?DUdgy(v=L1fIJ%9EotYJOsndkJyc*?l=PYu86TYzQ7Y!hYxUl+m`7KLt1Zf zQH^D&k8b*E#71F z2HEXrJz#O?Z2~20nMZI#H`YQU_te?STde5~_pBnjds5kDHxQW6M~ z$rjDVQ8qv0;vgAZ8n9&;@w~%*9zUcFPNk-+|T0dHUc6z8(8l~iX zvjx5;Xpv>S*zVK2L235xwfg!@h<2<8L$Zbo*Dcgabdyluz$!1{cOm)|?$y|L7usUZ za%t+v!(y^G{B3dqlVR6w22?SO`rZh@gAP`j=!xFCM*|^S`tl2R)hhzZc>Gfv`V)-& PzruB;m*c4w^tAs2eU4hf literal 8217 zcmeHMXH-*J*A7LxbP%Z_g32nh*YdJSDriXjOQIwW)uL@5FSqM#_CNRz5mDJlxm z1f(b+C}jZYO+dks@&$C}omt=eXV&_@f0L|x@45Tz{hYm@z3*9fuY1kZME5uoKNA1| zIIgd!Wlp)OA07;JlyfoBcN_pwb=bwJ{IPJ3grPLOpH_56y%B}dcBX-PTXjpf&=;^Bg(>Q)*7zc(FtZHv5^`dpGw z^!}6Ii=B9IZ6B&=cyF*56VbZ48P+<-+tk#!>flW)%cxr)QT9D}|8qlx(4;E)?ZCau zi(y`g+sILQ%|{}1OxqeB+5s=JFOSNnT>TLfK{vl$TmH!{xG_3s+xPi$-uOY*UfkEc zO0_+QxN(E-Q=*T8>UU1&jWe_V5XmH)D63u3Q@pLX-J7<-qNDyI{@v0!oc09~301W% z*0f>ygRlPE9A$jjx-*(7n@eB1mfjY!A!q!v*JUFXNxb8Zy?zVNAF}m7JqUf=(3?G? zot$Ah=VBpu0p+5MywhAzo|ON&WL*uag_^j&W?+pm$J%f5hhZkd0Oc#WjxT5-2f%*FV5nmw~%{4JwrVsFiNFE$0!k~1<6qD*?AX%8|=2qm=2`$Vdb?U@F z*Sl7pmue_kQ$0}f-o~P*=Kc8#D`5C#xJ6f4_2~JfER@ozK-IC}2iqJmiHfNL!MDtG z1;SHR<=?_LWvbpHelQvG?pAC_m6X>ugovlX-3CgvOAssfEI&>Kd?L=-2aI`cpL;KC zqZS@Pqj2zmm(~2+#bE90CHc=-e!Fgxilw{wN}Fw}6$s3^f(@_|!9iwNs!Co3rBWvt z#f)sk@GGT%+zp>hy;{#+^-Qal_IoQk)ntto!TVisF(U6^iyZg>_Ye(Xh z5})xm0Rr%49O_$Y>V_HT^C*eSAMk?&Go~x9)jz5osGkK46~)aB_(z4C?0?%~5z9}m zp;ZPF{F*#YUVK6t*NkHt#eIB3=#c>yPM**m2RylZtFn=c(8wE@z1~<*8P;E733Ib?;aBVvvuVqNdAm7OOtJ|5-+eQP@gD>V-XtX-4v%qN& zMe$-V$KAK_*5fiGH#h@_;Pwp`GZoLAZSjnkhwJ!4{bH+!W^UdR3^}Qs&Rih#g$)*E z^6C5M4H8&M{*~T#zPIq0oXD1YK~9<-fBI4nTc=cGd^NGC7x8}XH!@pw{N8P9lQ+*V zVnuMh%5XL&$ufZEvOR8;mY^FiX)YWopK#o;E_U;#$At1|;~Ez|m%5ltEvpz!omE?R zkqEng>Te0DX`PALsXW5i?gk;dnx}U3PC-O2r#PQ;D|8zWkB;@y3wS($uPFI?Qzw0* zfYCg*fj7-=CYNf%nc=K@v}&Y{Ld=h?1|zx^8BkwuK2mr4OS6d3rU`3#XPkON{pr-q z_0A_oxx#UEX$Evx%=BfOZ?t;^dq$~I3yjY;mxakx86GPP|2l>}-aS^YB7sz8)-d&q zqfeHj%@^?hT%hUJi-RlN1;xJ`%K?!xPROisJLt6~{tmGWZZWmz7^nlO^RZQwdzGSZ zhjt3s;v^v^@efnaw03y#N37D(XqIr%Io*_8?Z#P%=-j`}PprRhF}R)dwt6)Y8UdN) zG+V>$fJ5BM?*U3bh=yVw-W*kS^3!1DWbb%y%tm^^mojL=9erZ@I#T4m5=Z^w*Qn(! z3C4ld!S^X7zKTcvplrvrLb^r!F}WGiDQ)dCvxVR?L2QrKzcgdVCGI_hvo}-7pcBQkGrC z;V}1MC&^$7;Z!>^O1SXyZ1lL1>#0FD(JJxy`&_@XWf~%i5W#?ix9!85Uv6V=j$9q( zJ}*IoP#gXY$ah@o<@}9cD`}^c2YC?SGnijd{2-@vU0J7A7MoHRnY)2D$oy2xZCsQ@ zdPr$=$~X_TeG1=h5zgA(1j#9HS_}ICvVZ;gNuQ4-AvQTZ&GV%(bGGBOLxkM;s=&)# zi%*S>r(7QU#*JMQq`DQ&zA&g$rI>=g!+6Og%t@g^GHkY(`?W9BCKD}`>4VcT#AhaX zfPfux8koD43rdV=-*Y24YkJm8w!P{*ooYfYr@A^gf-$|AtqgsW7x7k??~EvfS{Oy1 z6&dAC;^%RiT7G&Xm<@SJ_i7(Bb`c%r4d> z!r)Xyw{8lU(TLM&wc`$7QJg)VE7Ha#|&k?(^BiF z*_HP5IAVip8MzA8Z?<8`chV&+=FIz8m>%_G3GPd|G*BEv14C6)%xyCiqWZCtSCElF z-@vmzhdU-2uojb$JlC~su5|&D!|VhoF`cHPt)E_=x9T00GVKH^{w{P;2g^{ikT5Tb z;Kjr3#!7Jxc26=|F{jFwhU8-ehPq+~cyGnu!7!zWp2kd0_CY#pU8I7{-8=fuh3>DW zkM(}r?E)vazdzQr(KP!(_4w71)`$?peWC`j@D{OP?NPL|*U9}tB2XLtseEBa!bLUd zYUfN>jkGcPUg;dw_04iG{gWmo)~;7uW5d1~M~f8HxmsMyV{YT4nFBO;rsTYRCKqcm zQ+Zo_#aA5SaNE4G0`~O8=^L#hDs86c`_nd{Zgiy_uUPAqNuNJHeA~h_CZ@TT&O;4| zPO6l3(unC3j1|3M{RmOXIIURv?p>qZL#t6+jC7y;e9|pu)894J+iYvXsXZ_6mc=3% zn=evJsmzr3LLTk+TO@QBOKV)?XP*&>_3i4{pcVwya>!fBUPIus@;Q`3lo~V$G%hNB zY~uHH!>f(d?yY6lvqKeDVyQzN;W;{e?W|1+S2@sxmu2KE9wVivM)Muq;54(d539&+ zYj@BYQ&5lD{t!`M4y}Qa$2oJ>s2DwIGUsh&8Jq=_?etyfeIKzui zq}Q%b17+aNTdWg2LmJ1%onhHy35@M1@c*`7pIASC#*B9?}^rE`|T(nQEV+BrRq&e}N_rbgR*EPL6R4;e2s-cVTdUBhWe#kq(5=dDW@ zf=Y?P1`ZsNjXd^F_L0H1=X$$h{Kr{FCj`RYG80-ZML(MJ-_LUyDZ^xh+s?Uo4-WUM z3nl146AUUH@-nPOwiD+FX&Hj2--fq-mK^qZ+T1f@&zp{$G6&dCpU_R__ zv2Nice*zaFw6B)O946AQMWS>s$N7nrzQxAa2#xdhl*Qt`od~i)o<5Wr06`L11z)7?`2~CIx$uu|Z%j(y2p; zpBP#M63&n4LneBA0S_^;PTu}x6%dFr5B$SFPak9BKjFPdzgVE~As2-8k%P)Y_D{~7K=StY!x6Lt2wvn!b1BI3gZ>G{h+=I60$WI4~CK344MFJ8k zujr%z$0Gj%rSC-|W4&;MLnsQkERljEk0m(akXSre0SbeI;R=+rDx&0JU}t9-5|6|q zXF3M150+M7^r}Zh+h6d|53Fh zdJ-(i*h4m<2sjKSkANv6p>PF={7;{ctgQ)tBuXV7VnQLZFvTPD!?d6&!BB|B9@Z%Z z;7Cr11+D2vz>>ZFEWN!wR6vIiz(dQU@&+pZOo|?nM9~O7toUCwe-`WV^X}&(;6Xf^ z0s@c97LCRIT!e%TAmEP{qS*bM!ntC-TnLos`&U8zAt(NqWD)QX1QY_pg5^3nfxYG?W55iUufgM5W~4wF6xVhdepgP zu6}WLNaO$G?^iDVA6KA2|GUUP;`d*={-x_5G4PL+|E;cn>H0?u{3GRmtLy)aE~fu9 zJOnSwTTmdSoiTw#QajzoDYnV#*zjxsY!z6~)W#+hLj| z6Bi$M(>jNN=WJPD@s&=)g9rMWsZ&!Db-aSRwx#Gg#ihkbDTXLDV3LVRysY_DxPFdy z;tAok>1Uy=Yh&~~ON4^ELb%9cTOBEm6R;60(H$m{-#MCDLd2aHNe}N_bqOD{Kn~g` zx&&|U*^U{!#YbX**@Olxhc`RM^E`Ske2PKZfaweB%Oi~wVwYwbmNx|EqFOFxpM(w+ z1y3ecACOz2gH-S6-doWKLh8rvJF6dY+@N>bRZVQ+P02-6tx#Y;tFcprm@&{a%_i zmn~!42Wz|xW%VTY?CC8ky?3Rl$d|7~A?6R3{gVR&YkF5EvS)WM0irnk%GNda!YIut zos*%i7Qp53ZzO^`lrZ|}*-~0sX0F473UD`*k0PWe>ltgaD$lmz-T9|7=)|Pe8GDxN_B$L>U2Ex_D!%2e&xQxJ9El0DT-;wE!)hm@V(7ubcxn zk;7YexxJ%W--gt8FKA#ran89t#esk9DR&+Q`s~&a7`C;dCD6`){R3X$_G! zai^*DkUG(|wdpg}5k`e5fN|)zhpr#Lk@fpSoJxHPO9HBO;SiIZ^{^ zxj$|JAOQ=R{;D%)?gH4;(p8MbvH_=9Dzrek^_-Kckv{;dG<9r;gUHxk`k8R5&uN2a z02eijVtb72_SyP$r50z_EhA?JbT6rrOb4Zb;;s4y@i$?Gb5uPQBQ?e4-;DI&~vI=C>nl?uQuHqO!G3u_5oCr@5 zV_Xvn%eqdl`N4MOYLAE5$d(G`y^yIw#drz= zgu!6$%7uyN-;Hh;8$Q@f8wAU!~rpBp=}F?yjHiT@4MzUe@E&Ks+xl&9fMko*aAO zm@AD0aj-CmXWzAPRef`5=Zj1ZYao9l9>MRABKzNdIg&gf0f;OXD!Wl(IA?S)WOuyh z#+ToihwK^_sphr0Xd*`zKF(gCR*iZFGl?j Dt^%_Y diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow5.png b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow5.png index 83797163f225f940ae731ded308e1418c5611567..8f02050ca08c4e2a8fe8b615295b9b89fc61d595 100644 GIT binary patch literal 2318 zcmZ`)3piBi8$aVRh6=e9g&D(iW9E#@iZR9rWmXt6McWN?Fc~wNIc}wh>QC#k@^4#W zsU*4dCo9@qQmLdeX)DB(dfbQQFQSw^GfL`dzvubB^PTs+zxVfkzxVx~lf-o2v_xfv z3IG607%om;$dfLe7&NjLarTJ;09DFybYwCd9dS$nKaj(P0ANk}!E{>}Jx{G;_S+I( zC1B7DKeMCTr#BEyD@@kJ-?+T4(DSZD;@YMUR+wnGtj*Wfa$33jXeq8RXIaQvOuVPM zVNT*nL%c#}_O)}8qW+^dr+ah9b8UpAsmaafPY^@{vuEqtb)BnoOt%MX@GiKW-SXl=b5397MOOd2MUBE}Vh!e+efN0u zuHxN?(<;g`SOo#S`TokgP0>}S1%z`<;o_d%kIPdd`0wrkG1YLF{SqccO-*>|J^w*C z_Gx1bO6f{f-<@6DnfNnUQLKV%vqy`{;RSt9U6#~E_P3c4dS=l-OAkXD^`@lYKn<)YOP?8^;?+=lp zLc?SzY7_<8hC;9(E-IAE6H=n=@G=hyvX`1cJWl2UhuGnL+?Y5=z5v2mk;o)6o~DAs z;iv+3AjQjR<0m-sW`_@k;V=paMn*=GA}vUKK@ezWV`Br7%|UZ>BH}?5M)P35C?Zd2 zG#BJ^94AN^AmD_-96k>xjqB&n4~OmWcq!5Rn9GwLFwYYfF5t>o*a0BKg+d`7ECkI+ zX5ja5FemU!hCJaXIS^q$=@$e>{w|CW1_xLoN;yX%`FuJbl4yX8R|vDg1rDG&nQToY zn-k4#!1?nb=~LMO6qo~ZA(?RV=aDJsz=glIO8uo0a5++CDO^8ZkR3jX$c6&_!nrV> z21jyuYQr&6m&8adezA}C(z#PEmdw_+; zZvo6;KFmk@Nx%tU@L)&~CO~>i#`l@--#xyK^@W?oWooSDpneM)0prcUh;mp-V=w*BwW z&m-JhS3{oFL3$}X)pJUDUD(V`qb)BAR1W)7$QlP&ux;%~Yjcp>A0fql%OA#t8`fv- z6V>arF;%s_#QxDqE9H;Ki?Hoab#gOXa;+oUJl~Or81J)AX`$Pq%;-}_qK+%q9Ga?Q z2eXzZUpbeSN>RFXTlB*p%1V1Y-b5)k;9qyV&S#m+n|79=?y=aMqsfqiKvqZB=-1sFoeq zZgF?8o(-792iEU0zb?^bPvky7;nR10;zKNWpqrX$-QwLwRs=A#L*2=Lwhg3qMKlb& z`f!?5^6@xtM=!u$(O@u$ZNf?hcGg;$`8v!#ki01(0N3||$Mx6juePfEP#ylZq2=!6 zvRP&fuTcX~N9XlBtfOP7ryu?#58ME>Xr6#Gadd}A)v);du3Shbj(+k+pNdM}nj^2M z)mDiKqT7&$)(S%?j0C(~8i(!J1oSzrjH@fWtq7Pa@5LTAd9B7`B^F+9s@?(MGH|;R zM8HcoKq=8G&f4hJT}6bV27Lw`-B^pg<9O1u&V;9`Yfd#*2K$t^KpG{`9s*FAt#44rK#$U|{(9$^ z#f3eR(b1G?$HXU$NAKjOF=c@w$un2CcZ zvr!@p-6XGzni36Yo;3(BhBQ@yN0?wMkK&@GHQGhm`Qn3zP+R3f?>`&;A6fc;V>r7z JUD~iG{vS!*mPY^p literal 6896 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 PzruB;m*c4w^tAs2eU4hf literal 8464 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 K>J(`?NB$R18wZsD diff --git a/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow7.png b/Resources/Textures/Structures/Windows/tinted_window.rsi/twindow7.png index 17304ce1044032ee392be2dcc63be90d6580eef0..7ca4d7214fb770ce7965e8b028426e5826f30600 100644 GIT binary patch literal 1661 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 F_6HOSG7bO$ diff --git a/Resources/Textures/Structures/Windows/uranium_window.rsi/full.png b/Resources/Textures/Structures/Windows/uranium_window.rsi/full.png index f7b6e10f869a9ba3ee1d2f09f066f153b5e21e5e..0e5df9bea5d2dc5ee7afed871d381036cb12d116 100644 GIT binary patch literal 2364 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 diff --git a/Resources/Textures/Structures/Windows/uranium_window.rsi/meta.json b/Resources/Textures/Structures/Windows/uranium_window.rsi/meta.json index 099201b4184..8d594817c68 100644 --- a/Resources/Textures/Structures/Windows/uranium_window.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/uranium_window.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "resprited by AsikKEsel | Original source: from vgstation at commit https://github.com/vgstation-coders/vgstation13/raw/99cc2ab62d65a3a7b554dc7b21ff5f57c835f973/icons/turf/walls.dmi and modified by Swept", + "copyright": "resprited by AsikKEsel | Original source: from vgstation at commit https://github.com/vgstation-coders/vgstation13/raw/99cc2ab62d65a3a7b554dc7b21ff5f57c835f973/icons/turf/walls.dmi and modified by Swept, transparency tweaked by Ubaser.", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Windows/uranium_window.rsi/uwindow0.png b/Resources/Textures/Structures/Windows/uranium_window.rsi/uwindow0.png index 7be507678d49517ac92392e78b96843349952311..ff5619c5194db935b37d8bfff14fe3fffb89df48 100644 GIT binary patch literal 2857 zcmZ`*2{@E#9RJ3BCq_}OhJQoTG~IMo4<^%z6gVp)ausF6LJPJL6fjtu6+xvj(JWio zss~!I7n%_;?Nt{r+!luO@Y3E%XHc}w;Yc_VW+$Vqt!={~hoF5Noj<|_CtFx32u7k2 zh}hUzc&sU$&NzrLv9hv4AW;Yu%2?oG%sfN`gIUHjrp{WBPjMV6OcEn35)7l$w1shl ziS%gD76ua%eI9Fhl1ZO=BBL49RTeS{L7`G2C^V3XFoByOzJ~+DLcU~3V}6uFAPhqI zMgT*87lw@lNoE42oLGWALOs0ecM^izVU36?1jZBZVutBVOeT!bR zejC&V@g05}Vb$opJ`^UM8ZFe_&H`n#D#bU(FBh-|zZ`j!V;Ep8oe}Q0dJkVj{9l)kVb%ow zsz2A7e^q=z_uI+XAU=Odb~0xA(}4gWX@hmd_^}|P_;4z85A;Jw$iZKGYa8%4OV|Vh z4%a9p6!{O}Zsv%M-=?d(G^q6f#gmlQ-ITdr2^)VRacQTr$oe}{p<>F)uyx8XOi-b%?sB1 z{B@}p#TnZ>lRNIDK4a~)Rc&|QY-iHXaQD22*F}=co40Fr006DgZ_+WgSazz~x_bos z$4xOOA8+C*d#v*hPjl3y@4T5~dJ#3Jl7A~w1)wSNDlFO^!*~=!E>y2jSwcgz(je$Y zyWY`;RLxv;mMTy-ybx%3<}r4ezVP_kuJouUt#7Zu#>)O8&PxyhukI%<+tV^%gp|vJ zJfwsN&sHnC(ZuSV-_%QE!tNV;l6gb+rP41VX`EghAJY!BCWtL79icSW6?O;;>vCry zt&zR){mIY->fGkbX`VXWyonu&*M_cqxZ4IiuBA-fZqm;ZZBJjyG|P8fEV$r#slwVK)uTUB#3$2JN|CTH6j9BGVx3{^w?SgGO`b#Af*|ctFSEd0-&%9+L8b7OrymTbDXLBBHLN_6w!tCJAdmZ#1w#J4Z@Uk`lHaOlIn zck)rY*S|Y6F&97O1{&He=HW6fytnvSUDV5!Wpb9RnmwQ5$BDTbe3`SKjtb@Aq0_Ha zEe}06LuR5`)nI6&nx(|!hPSf?aq7boQPZehfxy**UZ#Q}uWnj=8au^s*IvgVg0;u!ykz`8+%)n$93jkPie;+Q*+G>y-b2r($C}sa?UoW|JBd=pN)GDZ(c8mC_ zU3fN3+WZ>7*|zU|rmbay*!V@hM0Jz81*X(k4HvrParuLDr_HG_GwHHJzl0QAFJ`WP zQgryJx5={uUBEAN(sEO_kDL@Y=G}aFrQOLwUa#s8^!y>eSC~-ocKCf@jK7$`~r;<9ktt#w?T$HTh@j8fN%%MAm2Dn;n zqm;=Fn@4~w10CI7n%F1?RB7h`YGNaR{?#M?*)^;r;%u6JfZ60UE0OKn+&?pawu<9& zwx}h)M#Z|Q;pH)gf(AaFla~FeYlL2D$vfI0?%qlD|21%uqlUUrPI>?LaS`p(QTqc1 z4tW0C8y)mwLpRxOP4%ib(zV^Wr%MbqH2h^n?H#r~V%s>4wI{Y8cGbuFyG4vvZG7Q< zI1wQYVQ<-cRQZGhx!)+W^Yn3m%^&{BfcYoaj0qjx+V!tS5Q9sQci(xb@MP6u5vHHFJ~pzTMn3%y^(Z=YkPd>WWS!`z4WE~v10f8 z=4GFbS1b*f4$jNNi7Q8!$Un`?EaWJjd{gKYsONh-jdLp|x1`5xdgVd>hVehl_Ub~9 zqk@hP*_GdUcCyHqgq4%cs;cwU@<j_kM*&+w0RhQhb}m`j<=RvbgdpOp$A)=OnoY z3Hq;k45dYYKTIQ$%!2vk9N#~yQVfRMy34O$c}_xGU;G_jB^R$z#sjWTBYTw|8OZYG fOI@MCpyLX}L1tmg{Q24<;cqI|$%TZkN08pnU9 zE`9ImPG+VvSuc}TNYsuuWK~#W6c;g|E&&ly9~bsb6hs(sciAWkqO!10`XC5KU0e-b zgUhmB5@862WMd{VF49O9c0^Ri1XoI;F8i!9QeB~rhX7{V0&JgG3lEaZ zXBn_cghF5f0e^6;@i`wK{S+w#S6#H8i}Phx8~w`E@eqInw|m2Em@0G6;6K0(AQTwF zCX_&6P_!fzquQ@m_hZjR7BEwKM~OKe0(chKaLZ+zcxHANkPrj`)O{F8@TVh}vwO#Z&TY4=QO837&*2?=ihqZ!99xQIb~4WH9S5+V?ElOE zn|e9h>KP1Su+y8=%c+&^r;vyyv@hn5X{U~d0FKKLDSne50uu%;ecg(O0KgOu?~i?` zoi{cDBt+!#tqIe3?cX{O4*`T=wM_E+OK!l|9Gt~N03*8TKD)>!yF|U!9Vcf+)Y_O< zfQ*>|^nXr*LUldhnv-|k8g{rwYoxl(ezKpF(++Q~`y2O<|CO)9X)4d=l;e3-C`;Yx z=Hm{nLm&uT=A3DrlpUc}fU?=ge?H$0_&{1G^-n@uFjRHVvWSTx1PdD9^PQm00{YD8 ziC2a<=%QQ^vs05?Ki;GFd#p~~DHC=1Yd)aHa4J<&4RW$V1s{Df-K=e5QGZd-K& z!)Au#K}fXg(OalnKt0V`pe8(~&N1zxj2>}KcqF9-i;zu9Mvv@;43Kt!q$<5Klm+A1@56M`@z}+XK zDPSU;=Fueax8wII?9C=Y?L z2O8&;&W-SzV79lgrG!kIDy&CGqdSH-@4M34twJ0JMb7cU!qBe6kV_ zHC;#tu&@UD90*$cB3^^<4nIa9B!}k@@!8~I0DgPHl_W_roGSz11}@{y2_|Z%cz?L> zHTpuEc~R#VA;2A9M*Ej7;ZU-3oRK~+PVK>#DJ&7CvowL4bio!pg(O#8cp23*ufpkg%)iP43_jlc(SHrx=v=$J zb?X&8S2;qhn!tm@Eg;t5_iI z^@MggXcM4fr6~%7t1hnSqFfQQ31A3;X(lNq3Y5KgOn}gXAuyC&8~w22;eQJ&FNmmO z<9#=cjy=4{I;+G#haTg(nU{Fm+D~a)up%dG--WOLTZKO!4tX1nj9lnhKh(wv` z3||DNew}%O1tZD3pM3;CPUy=Wh>ZaC&_(nhZy*)|2qOo;T~}|>&K(N@q&N$JiA7H8 z&ESuP00fdr;gUD?J4o>mpnnaYfCZs9cOV{LjFWY^JsREr)sAtfu# zOk>F+)`~2r%aIZg~{}xv!5na%s SNQM9a002ovPDHLkU;%=37y;b? diff --git a/Resources/Textures/Structures/Windows/uranium_window.rsi/uwindow1.png b/Resources/Textures/Structures/Windows/uranium_window.rsi/uwindow1.png index 9979f28e945787ba4ffab8d70010c70209c7f274..cabe60b557955cba753348a64b5bc1ffb7516eec 100644 GIT binary patch literal 2288 zcmZ`*4LFqP8ve%kolQc!6fupGWPD7-jF~~kU)yN>?ucqIV+`|W=5uBgnQ)SRv{9KX zW_DGalGRFylWh8%wpi`zhh)^rbsTFVDvP%B%_ym>eXr~Nd*1tgp69*a=ew@2kQNqf zidu>S0Khafgc1SIe%fwq2#=>Y>5t(FA&v-M57c$o4#As+EP7}%l?ph+Yh$=;+ug_# zcr+1)#EJpn3rlTB0A=OY0D$CjqUaEvx{;71;JGF+1&J(IDNm?l5v2rp$zwqYXep1& z7Zao;j1ED7*IF}(LF*t;8VN(E($E0{5evP})y>rnLq?&|XrhRjOo*Tay`#fB5+((L zgaisXOPnO)2qBJukJkE4 zNEBp1Bn(CyXs*rX$xNDyBg_zSby1i}AdAc5vG|Y}ba!$>*i^GF+_k+_XGLr}p2ja4H z!p+@Br=UL<`q-+)YbD@vw8|2=34AsQBgHaV$q5-;2t&@0aQIAt#ES^dqCRHNT0eG5 z1V0m>sJ%5IHi9JJlf7_6ofID#KRm!Jf&MwdeB-ACT8aP?!1W~JB!%)JmPjaq zYfBgJeYn3zeCq2%>}Wm*BENU=iFqDt-rErTMUX@wN{iCH!v_)n7V^%`tf2GibGG<( z;=|QXMiIfeFNuuuaQY)201S|!6#pnGVkE9V%^`a6U$_zlwTJH2doS0mo% zYi_T2STJ%Dud3jDhg4l!drYh$^^+un9TL9YC>;k@mX|`ycZ~JkSUKfiDDs6Ge&jt& zc5y!M;}Uem?^3G5IB;ZpjsFc#B}Xr)_?D?Uu^`MWx)UMCnf3NLD)@=}`q~#`n!+;b zpRQmF&AOw%+?IcIWJASX<6Y>(GTOFUvSOPYjAJcMeLFDR-x~g^@=p1c#wX6n#SQgk zU!6LDTku=kiIvl@*|=5aUP0ZB)h88;sfbR5cgyJBW}~bN8K(a2evgGG^@Dv>LpMDJ z*X=aAUcN|O(&b1yG0MiDb<%4aUp<=5G)RlFRM8ii(nAgjT(XK-3v&Ryc3hX-3rcKdb!A?JE!%F^Vi7t$%c>WM5=I6sdGa`=>$!3=9RL?{>Xn@ zBEdoz6NTRHnz3vpQJ-PI;D?+4Owiw>?lrpAZv4O~&q*}U7A%|GqV77~*%`81{o*$J zo0U@$eMoym0C0Tyx%)2*%s{SXdpRl~=wwHSxc%XK?w7 zA|KVA^k)Ih$!xAD#-K~O$fS%_MH#c={AbG&gH2X(M>l0%yzm@x-o~RWF8av1o5#Fl zsAm&bOrwT9e~qohcQjvH>dfyRk02W0?0Za5vOJaNjjBtL!UN}QOC8s3-o3rHiKGdy zxC>c1ogFwn&S&S_AL$ZX-hB4;FA} zK0A-q-Iroi&(|l7mZln@c`M3EK>2i$>EjmH&5Qbx%_#v}UI@JwB$ZBO{cg5MU z<7-y-EO=_wW!PqYrhttMt`7&5&6xnA$vvjM`h-E$ev7+~Bt0z8Ot~zN8mG_bqhM0h z1#5hJmhBx&D}Mchne3{w$RV(2;(?!Q{0c*reHtPgK-bc%8q6xs7gW5S`O|L#;rASI zCcBkho!$D1%=pp$S0muLX3(?)tGbZ7HHN6zGn2FHkJBt$&sAe%6Fa1ugI?cOZd6VU z`Zhgv+|c8{yhdq58uDyKC__jC zt91@cfvxHKtq7U+T)vi}@hhD~0#6L(4vab(9yz!WD)a?}O^8npY4M13L-Z`Tzy^j& z%4qy8rEkfxMoxU0x1PndB`I0>`r-!Z&dz>E!M#+_d&@BQ!9KQn#Lw F`+wtyizWa7 delta 1205 zcmV;m1WNnx5y=UVB!3BTNLh0L01FcU01FcV0GgZ_000DgNkl&HWrgUS7B7#0x#fMTMv@iNrAN&)<7a>@oC4wOMN0_(xpirp@Emn{O zf?%jkXdW6i*f#g1+1q4xX2*xwT)b_hXE|pi`+1o&yXWlpw}0Q6Gkf^`&Wa!i(8=)C z3o|m~?@#{pn#}l^%-~iq|B(|m>H>~l47(HD#(S0>wk;2E!8gIofd5olU%LVQvEGCB zme|7$0{XF82^{F?1Yj%}fDRylo7Pg;t^syNT3@>X-}FsT@hj}scDViEE&vzvZ}X(| zgtO@vs0VebUVjC{G`X|zBj?ESR{jl=BGnRoq5BzdW$uF+fS=tJVnVQL?1gXm;o%)? zfLl8cA=7aqL?H}Qa;#`ReD>Hys0cQ|7KE|d&N)uECA z0R;Wh`q~ZXxlyABIJo5dum7#5dE~eUbce@DIeqO0*nbnf*L3O|I>n{yJ~hh8NfqLt#G1JHyU%PHk^io(W z^KEv5_aA-2Qhk;Dmx-q1R3N<&I_}Fy9i=Nl->&XX{@N~%jBgzcu+JYf5$WCn+r+fkp*i7#+Ri2|NN@UGA_}X{p04k@zwn@?y zOfSxc=W$1wbTiZ$kbcZ^vWVk(6s!^$(SJxsDvZKn%*}B*e`Y?BJAC zT0I&Q@fm4FE+SF}Y&fgDI0}O+LRl@N+mXk$D zKUOELOsN@-+`#4hCC1zwU@4Q1hAsh?4Qv99{|5Vh^ZqR)8U`HA4b%v82a5Ou_vlqc T5^UWA00000NkvXXu0mjfkY6^b diff --git a/Resources/Textures/Structures/Windows/uranium_window.rsi/uwindow2.png b/Resources/Textures/Structures/Windows/uranium_window.rsi/uwindow2.png index 7be507678d49517ac92392e78b96843349952311..ff5619c5194db935b37d8bfff14fe3fffb89df48 100644 GIT binary patch literal 2857 zcmZ`*2{@E#9RJ3BCq_}OhJQoTG~IMo4<^%z6gVp)ausF6LJPJL6fjtu6+xvj(JWio zss~!I7n%_;?Nt{r+!luO@Y3E%XHc}w;Yc_VW+$Vqt!={~hoF5Noj<|_CtFx32u7k2 zh}hUzc&sU$&NzrLv9hv4AW;Yu%2?oG%sfN`gIUHjrp{WBPjMV6OcEn35)7l$w1shl ziS%gD76ua%eI9Fhl1ZO=BBL49RTeS{L7`G2C^V3XFoByOzJ~+DLcU~3V}6uFAPhqI zMgT*87lw@lNoE42oLGWALOs0ecM^izVU36?1jZBZVutBVOeT!bR zejC&V@g05}Vb$opJ`^UM8ZFe_&H`n#D#bU(FBh-|zZ`j!V;Ep8oe}Q0dJkVj{9l)kVb%ow zsz2A7e^q=z_uI+XAU=Odb~0xA(}4gWX@hmd_^}|P_;4z85A;Jw$iZKGYa8%4OV|Vh z4%a9p6!{O}Zsv%M-=?d(G^q6f#gmlQ-ITdr2^)VRacQTr$oe}{p<>F)uyx8XOi-b%?sB1 z{B@}p#TnZ>lRNIDK4a~)Rc&|QY-iHXaQD22*F}=co40Fr006DgZ_+WgSazz~x_bos z$4xOOA8+C*d#v*hPjl3y@4T5~dJ#3Jl7A~w1)wSNDlFO^!*~=!E>y2jSwcgz(je$Y zyWY`;RLxv;mMTy-ybx%3<}r4ezVP_kuJouUt#7Zu#>)O8&PxyhukI%<+tV^%gp|vJ zJfwsN&sHnC(ZuSV-_%QE!tNV;l6gb+rP41VX`EghAJY!BCWtL79icSW6?O;;>vCry zt&zR){mIY->fGkbX`VXWyonu&*M_cqxZ4IiuBA-fZqm;ZZBJjyG|P8fEV$r#slwVK)uTUB#3$2JN|CTH6j9BGVx3{^w?SgGO`b#Af*|ctFSEd0-&%9+L8b7OrymTbDXLBBHLN_6w!tCJAdmZ#1w#J4Z@Uk`lHaOlIn zck)rY*S|Y6F&97O1{&He=HW6fytnvSUDV5!Wpb9RnmwQ5$BDTbe3`SKjtb@Aq0_Ha zEe}06LuR5`)nI6&nx(|!hPSf?aq7boQPZehfxy**UZ#Q}uWnj=8au^s*IvgVg0;u!ykz`8+%)n$93jkPie;+Q*+G>y-b2r($C}sa?UoW|JBd=pN)GDZ(c8mC_ zU3fN3+WZ>7*|zU|rmbay*!V@hM0Jz81*X(k4HvrParuLDr_HG_GwHHJzl0QAFJ`WP zQgryJx5={uUBEAN(sEO_kDL@Y=G}aFrQOLwUa#s8^!y>eSC~-ocKCf@jK7$`~r;<9ktt#w?T$HTh@j8fN%%MAm2Dn;n zqm;=Fn@4~w10CI7n%F1?RB7h`YGNaR{?#M?*)^;r;%u6JfZ60UE0OKn+&?pawu<9& zwx}h)M#Z|Q;pH)gf(AaFla~FeYlL2D$vfI0?%qlD|21%uqlUUrPI>?LaS`p(QTqc1 z4tW0C8y)mwLpRxOP4%ib(zV^Wr%MbqH2h^n?H#r~V%s>4wI{Y8cGbuFyG4vvZG7Q< zI1wQYVQ<-cRQZGhx!)+W^Yn3m%^&{BfcYoaj0qjx+V!tS5Q9sQci(xb@MP6u5vHHFJ~pzTMn3%y^(Z=YkPd>WWS!`z4WE~v10f8 z=4GFbS1b*f4$jNNi7Q8!$Un`?EaWJjd{gKYsONh-jdLp|x1`5xdgVd>hVehl_Ub~9 zqk@hP*_GdUcCyHqgq4%cs;cwU@<j_kM*&+w0RhQhb}m`j<=RvbgdpOp$A)=OnoY z3Hq;k45dYYKTIQ$%!2vk9N#~yQVfRMy34O$c}_xGU;G_jB^R$z#sjWTBYTw|8OZYG fOI@MCpyLX}L1tmg{Q24<;cqI|$%TZkN08pnU9 zE`9ImPG+VvSuc}TNYsuuWK~#W6c;g|E&&ly9~bsb6hs(sciAWkqO!10`XC5KU0e-b zgUhmB5@862WMd{VF49O9c0^Ri1XoI;F8i!9QeB~rhX7{V0&JgG3lEaZ zXBn_cghF5f0e^6;@i`wK{S+w#S6#H8i}Phx8~w`E@eqInw|m2Em@0G6;6K0(AQTwF zCX_&6P_!fzquQ@m_hZjR7BEwKM~OKe0(chKaLZ+zcxHANkPrj`)O{F8@TVh}vwO#Z&TY4=QO837&*2?=ihqZ!99xQIb~4WH9S5+V?ElOE zn|e9h>KP1Su+y8=%c+&^r;vyyv@hn5X{U~d0FKKLDSne50uu%;ecg(O0KgOu?~i?` zoi{cDBt+!#tqIe3?cX{O4*`T=wM_E+OK!l|9Gt~N03*8TKD)>!yF|U!9Vcf+)Y_O< zfQ*>|^nXr*LUldhnv-|k8g{rwYoxl(ezKpF(++Q~`y2O<|CO)9X)4d=l;e3-C`;Yx z=Hm{nLm&uT=A3DrlpUc}fU?=ge?H$0_&{1G^-n@uFjRHVvWSTx1PdD9^PQm00{YD8 ziC2a<=%QQ^vs05?Ki;GFd#p~~DHC=1Yd)aHa4J<&4RW$V1s{Df-K=e5QGZd-K& z!)Au#K}fXg(OalnKt0V`pe8(~&N1zxj2>}KcqF9-i;zu9Mvv@;43Kt!q$<5Klm+A1@56M`@z}+XK zDPSU;=Fueax8wII?9C=Y?L z2O8&;&W-SzV79lgrG!kIDy&CGqdSH-@4M34twJ0JMb7cU!qBe6kV_ zHC;#tu&@UD90*$cB3^^<4nIa9B!}k@@!8~I0DgPHl_W_roGSz11}@{y2_|Z%cz?L> zHTpuEc~R#VA;2A9M*Ej7;ZU-3oRK~+PVK>#DJ&7CvowL4bio!pg(O#8cp23*ufpkg%)iP43_jlc(SHrx=v=$J zb?X&8S2;qhn!tm@Eg;t5_iI z^@MggXcM4fr6~%7t1hnSqFfQQ31A3;X(lNq3Y5KgOn}gXAuyC&8~w22;eQJ&FNmmO z<9#=cjy=4{I;+G#haTg(nU{Fm+D~a)up%dG--WOLTZKO!4tX1nj9lnhKh(wv` z3||DNew}%O1tZD3pM3;CPUy=Wh>ZaC&_(nhZy*)|2qOo;T~}|>&K(N@q&N$JiA7H8 z&ESuP00fdr;gUD?J4o>mpnnaYfCZs9cOV{LjFWY^JsREr)sAtfu# zOk>F+)`~2r%aIZg~{}xv!5na%s SNQM9a002ovPDHLkU;%=37y;b? diff --git a/Resources/Textures/Structures/Windows/uranium_window.rsi/uwindow3.png b/Resources/Textures/Structures/Windows/uranium_window.rsi/uwindow3.png index 9979f28e945787ba4ffab8d70010c70209c7f274..cabe60b557955cba753348a64b5bc1ffb7516eec 100644 GIT binary patch literal 2288 zcmZ`*4LFqP8ve%kolQc!6fupGWPD7-jF~~kU)yN>?ucqIV+`|W=5uBgnQ)SRv{9KX zW_DGalGRFylWh8%wpi`zhh)^rbsTFVDvP%B%_ym>eXr~Nd*1tgp69*a=ew@2kQNqf zidu>S0Khafgc1SIe%fwq2#=>Y>5t(FA&v-M57c$o4#As+EP7}%l?ph+Yh$=;+ug_# zcr+1)#EJpn3rlTB0A=OY0D$CjqUaEvx{;71;JGF+1&J(IDNm?l5v2rp$zwqYXep1& z7Zao;j1ED7*IF}(LF*t;8VN(E($E0{5evP})y>rnLq?&|XrhRjOo*Tay`#fB5+((L zgaisXOPnO)2qBJukJkE4 zNEBp1Bn(CyXs*rX$xNDyBg_zSby1i}AdAc5vG|Y}ba!$>*i^GF+_k+_XGLr}p2ja4H z!p+@Br=UL<`q-+)YbD@vw8|2=34AsQBgHaV$q5-;2t&@0aQIAt#ES^dqCRHNT0eG5 z1V0m>sJ%5IHi9JJlf7_6ofID#KRm!Jf&MwdeB-ACT8aP?!1W~JB!%)JmPjaq zYfBgJeYn3zeCq2%>}Wm*BENU=iFqDt-rErTMUX@wN{iCH!v_)n7V^%`tf2GibGG<( z;=|QXMiIfeFNuuuaQY)201S|!6#pnGVkE9V%^`a6U$_zlwTJH2doS0mo% zYi_T2STJ%Dud3jDhg4l!drYh$^^+un9TL9YC>;k@mX|`ycZ~JkSUKfiDDs6Ge&jt& zc5y!M;}Uem?^3G5IB;ZpjsFc#B}Xr)_?D?Uu^`MWx)UMCnf3NLD)@=}`q~#`n!+;b zpRQmF&AOw%+?IcIWJASX<6Y>(GTOFUvSOPYjAJcMeLFDR-x~g^@=p1c#wX6n#SQgk zU!6LDTku=kiIvl@*|=5aUP0ZB)h88;sfbR5cgyJBW}~bN8K(a2evgGG^@Dv>LpMDJ z*X=aAUcN|O(&b1yG0MiDb<%4aUp<=5G)RlFRM8ii(nAgjT(XK-3v&Ryc3hX-3rcKdb!A?JE!%F^Vi7t$%c>WM5=I6sdGa`=>$!3=9RL?{>Xn@ zBEdoz6NTRHnz3vpQJ-PI;D?+4Owiw>?lrpAZv4O~&q*}U7A%|GqV77~*%`81{o*$J zo0U@$eMoym0C0Tyx%)2*%s{SXdpRl~=wwHSxc%XK?w7 zA|KVA^k)Ih$!xAD#-K~O$fS%_MH#c={AbG&gH2X(M>l0%yzm@x-o~RWF8av1o5#Fl zsAm&bOrwT9e~qohcQjvH>dfyRk02W0?0Za5vOJaNjjBtL!UN}QOC8s3-o3rHiKGdy zxC>c1ogFwn&S&S_AL$ZX-hB4;FA} zK0A-q-Iroi&(|l7mZln@c`M3EK>2i$>EjmH&5Qbx%_#v}UI@JwB$ZBO{cg5MU z<7-y-EO=_wW!PqYrhttMt`7&5&6xnA$vvjM`h-E$ev7+~Bt0z8Ot~zN8mG_bqhM0h z1#5hJmhBx&D}Mchne3{w$RV(2;(?!Q{0c*reHtPgK-bc%8q6xs7gW5S`O|L#;rASI zCcBkho!$D1%=pp$S0muLX3(?)tGbZ7HHN6zGn2FHkJBt$&sAe%6Fa1ugI?cOZd6VU z`Zhgv+|c8{yhdq58uDyKC__jC zt91@cfvxHKtq7U+T)vi}@hhD~0#6L(4vab(9yz!WD)a?}O^8npY4M13L-Z`Tzy^j& z%4qy8rEkfxMoxU0x1PndB`I0>`r-!Z&dz>E!M#+_d&@BQ!9KQn#Lw F`+wtyizWa7 delta 1205 zcmV;m1WNnx5y=UVB!3BTNLh0L01FcU01FcV0GgZ_000DgNkl&HWrgUS7B7#0x#fMTMv@iNrAN&)<7a>@oC4wOMN0_(xpirp@Emn{O zf?%jkXdW6i*f#g1+1q4xX2*xwT)b_hXE|pi`+1o&yXWlpw}0Q6Gkf^`&Wa!i(8=)C z3o|m~?@#{pn#}l^%-~iq|B(|m>H>~l47(HD#(S0>wk;2E!8gIofd5olU%LVQvEGCB zme|7$0{XF82^{F?1Yj%}fDRylo7Pg;t^syNT3@>X-}FsT@hj}scDViEE&vzvZ}X(| zgtO@vs0VebUVjC{G`X|zBj?ESR{jl=BGnRoq5BzdW$uF+fS=tJVnVQL?1gXm;o%)? zfLl8cA=7aqL?H}Qa;#`ReD>Hys0cQ|7KE|d&N)uECA z0R;Wh`q~ZXxlyABIJo5dum7#5dE~eUbce@DIeqO0*nbnf*L3O|I>n{yJ~hh8NfqLt#G1JHyU%PHk^io(W z^KEv5_aA-2Qhk;Dmx-q1R3N<&I_}Fy9i=Nl->&XX{@N~%jBgzcu+JYf5$WCn+r+fkp*i7#+Ri2|NN@UGA_}X{p04k@zwn@?y zOfSxc=W$1wbTiZ$kbcZ^vWVk(6s!^$(SJxsDvZKn%*}B*e`Y?BJAC zT0I&Q@fm4FE+SF}Y&fgDI0}O+LRl@N+mXk$D zKUOELOsN@-+`#4hCC1zwU@4Q1hAsh?4Qv99{|5Vh^ZqR)8U`HA4b%v82a5Ou_vlqc T5^UWA00000NkvXXu0mjfkY6^b diff --git a/Resources/Textures/Structures/Windows/uranium_window.rsi/uwindow4.png b/Resources/Textures/Structures/Windows/uranium_window.rsi/uwindow4.png index 9fa452a61bf19f4082c9fbc34586322836957de0..45ff01e1907310286068d19e4163a6444639c5c9 100644 GIT binary patch literal 2251 zcmZ`*2~<;88h#-N7zYnZTu`E!-~wtE0tFL85-<^hK*Of7&;ua}5XnaJLV~gc5kw2h z0O}N>k#a1IbA&4GPzDYJ0U5284xluZAc~4owpbjNvdl|RM324a+;{K&-}n8?cmH?J zJIxOAwMA?~003ai@?(TRE8R40tf1#rVPYS&z!V|AK0wty$CuDywSdEl4GaW!L3RSgNn3u7Z-3{4W4yvT`gfR0xyc6+HA#dC)3c9R6 z7n|QKKGgkG1O>nJB~cOX&cl%aVA;oFc!#NBBN2}h9K(_GNwMj%p88vo!j0c1xVnQ^ zj;=a!hWYY~iL%$MsIc)UJ4^31>%?0bEd{Jm)<&9u=YuM$@w&(qO!@8=z$zQ&GEHc1Df(G z(v#Os-~LNUPnz$mYyTKjDes|$qlv(cw z{QmZ%IK|i{czW&bmfnjr_g#;e>BlND7W>vVE8Pj5mIwam6364S`I@moV@o@O*Bf+- z+*b|Hg+(Jh5PEAydzf(B6h8zua&#s}V792{%sIvY6xD_44f>nQUnU;rzBc?SDp}@1zoZ3pEpnhSY z{aTJ_VP`eXEz|C^p@ziYTb@p@EV}baihOKE!?!c!3kD)$?A&Fw@kd{NYCb873imm2 zF)^sE?iDcHeDL|q-RVH$6@btacdw&&YqTxB$)yWEAOC<|q5g85FzMM=B%tez@Ov~F zVCkqO(G=;S0Y|K4y1TF2knCgk4P_6WoWYGQNZHPC4T-8qeLj14F3?o~5ZdFaI!d&4 zG(R|@xd^6n)YefIXo-P2|WK%ec1jFP22nMd2|EJLk<#1vB^SxR@nfUbmV)SCVo zOw5ycANbFxMt@c=PJ~jPmL9H(>i{#W`+aJ?G+Em;L1n5tt)Vh50aGUM*uW4D9k{bc78HJ^7hVJ!0 zjizcU_WP7hJd2vsreCShr6hA3M;`0y#y#e&Um!{T}PKm$oy{#_$HletAB=Tb6&w%~;eQm!2(Izq)6^LBpEa z)9I^a!3oBoRrWU*nyN>PO~2Xh`2i^<9bBCwzCLMZJEHq%Y7`lCiQse;Yb}P-R%XM> zgbQ{+pl-85&$ZgoO+=1XVRl@~mu6H!d7;M|bYW&TcE zIb+27XZG5;rZHF=+r2pAtaEYEa0ET`=ozC&$szj*>}blVqj`O}k&8mDMb_l3#md%K ldL3%Zh@n8i-1vt zk;bE2R44HT7c2y+L*yE_lt8;^TDmYPm}JxJ(nWtl>84=XLV_2CLVrZPa~Cb7q!bdG zLb1UVYSP%mix`O}@!gJf8;@o*UCj7GFZSYybEa7DMn}>dy?>t`owqdce9oXJI!6}+9?FEncZW$HcvxT$s0-VqEV1mw+n0=qz%E$ z(p>O7tO4kjIsn;cl+zV#*QI1uAr_51Okorz<4%EV#jC;7>S+Vuc|ooZz-Cwj&@XiW zj9ifG@9Ss{K%=DV0mC=1%*xEyT@R2x7cG1e9)HbS0*=D8y1)tFGp%53x_|?o5v&OB zg{-}_qyhBDdk@B2Vh_jn>BnNlw;|C5z_>pE3BV6)ehGrz!BSWH`Y%ZX_^xk~x>skn zxfAC4Fjjnz=hf$2$i70$Z_#k;#0-P`i$8ObJnt6YCM`13!M8)w$AIheAI$>%>Z}kK zf`8Rm*wqOOyYHI=+}(Ksxy0e5qz8>10Q}b;{=bg_Ggg^(w?!^#-~v4%&vmy2z+L`? z^CsW~=l)C!>M0O_-!E$~EolHfx100;2S54#>;Kr&IP$m$bO(=9vJuEh8o)`nvPE6d zxE|H04glQ&=vD`S?f`VF13-5Gx^?OSNPp)7vU;QR!I;ea-}2v{-v0}Q59y8rmf9(JOuyTw$1@4&340a``RpQ)8kFsQ!0hq6E^EAB4%Ex2bt6&&mnSVVm zXRRH;{j*;lj4v$wh!v0X*3e~=eukG4X8>^h7LQ&$T8R?_GC!> zJ`y%p&jFBkf{sziYhb10WQddXpehc_?niI4d-D1ZQjHbuD*y-@B#sT47A0d78Wxx? zcGJNIHvYExdK>>&s2xD@tFS?WASGy;7z9n0<8G%-9S$WMD}Mn_dR{s7?CW~~0000< KMNUMnLSTYodN{`b diff --git a/Resources/Textures/Structures/Windows/uranium_window.rsi/uwindow5.png b/Resources/Textures/Structures/Windows/uranium_window.rsi/uwindow5.png index bd46092739e6b3d5f5e7e3eb3806b5feaa456145..473bc3ffede9a71bbf8d6191edf3fdbb380bd412 100644 GIT binary patch literal 1872 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|_);T0(|mmy zw18|5AO?X;!IOa`XMsm#F#`j)FbFd;%$g&?z`&f784^(v;p=0SoS&h?X&sHg;q@=(~U%$M(T(8_%FTW^V-_X+1Qs2Nx-^fT8s6w~6 zGOr}DLN~8i8Da>`9GBGM~RsBTId_|A5Z7NlCUU$t=l91qU45Kj08_%qc+?1*r!G zK~5$pWUX=%^U`gVDs)p)(-KQ_N|fwM%QN#*^2^O_^dYKHbwfl^4Ykq7V!sW@*H)21 zsm1v@rJ!)PGdHpU2L*~CA_5>9BCu&d7DU$&kda@K4@^%*naQ4cC8z@95{?t3ZVXlf@Y(-o~ zK0W*zTkPY|`CnG0T+xmH_iR>Y`G?g%gU_iqq_ijA+9;4a*?%e|*l$yNjO84qQU=u! zl~V!y6P_wMP;Io3^#F~b>7A}Un)rJ{uiH&`$v$v-=+bF!KvFpe!et#pK zLAJro{rObY5(X*R*cA*Frf!S-<}ph7Ro(1isJJNEzH8%ohFe_$xrvXrsxE$}^K?oQ z7sKP4pBr<^wro#*aaHJe%ICv6^~;S8NO#Q-Qx;)}eVtjpb^C=Gg3s?>60$2>ZR%IS z5G7RWV}1I*xcRxqY5%OO&Wd@R(mcSNa7a7*fBt6vz%{nVFQ4Ui*t$^gi`?ux+Z}Y9 zPkvJg$mixMtc$8oJHULw#Q44K9KU%}&jp-oJ^1Ilw(Z3WKMpc4csQ4TwhhC%dH-8h zGYaT7M0UQ&Vy-bMiI`qs?RfKdxe3D}RtM*QtA0&R)?<+TBeH$^hm6l{zol%hIx%i< z6OD;K|CG_=gu;oNzuCizUq}4i`)+mP;e8$K2P%Tf+YhO}`6JK8fBP`w`Q;1-(GM!q zjY>AHw|u%!D36h~q44A?=74!TALE+u9Qd_OjPXNnmWzImQGyHe>)X0jY%ly9s&8Ik ze9`}JD&v<~*Z+$~$O~Ly&8=np8?T_T;qgBE5C#*g69J4DUMM)TKG<>j_W93B40Rg4 zpG*VUdWuT^{&0&H++=!ene>Kr3OD6Sjue$L^yMY|U#xl4>h}MPQ)?8B6jm^6JZK10 z2rYc68Niq!u?Fq`P)|*MYOsPOgZ6t?!Z;P6Xyhb zy4p%!>}TtBJCMQZV*DV3-NpHU%@sxqDaMOj5@#D0%NocoT&(&a;Rm;>_m=jl>BqK# OYBNt)KbLh*2~7Z@MaFml delta 771 zcmV+e1N{8Z4x0v$B!3BTNLh0L01FcU01FcV0GgZ_0008bNkl1vl z`_r@qQ%WM8EOjXcIypJ1i!OC?=_0tblPE5QK!-rVMXGL{?ciW1Gr5R3=+a4O=~TK% zF-4lvmh}EQoJd7;tB~@2ft+W$+;Dlny!kliz)QvS3t~!n?1vEfFywMv zIEIn7sJwayyqj9Waa}%aeq?TV1tQs!)D2i|y*3vUog01(jEU*18_;leA#6hsLli>d zf?E>PS2v*g%zpuf|GNJ_Gr&clZh+Jm%|m|{P{tadU4S;$0PO;_=_>;~g>w4JfEc+y zLBHrL12pJ)A#{EB{+(W)@AdzDuMB(#h#R0W(4B{PH5vomdGy!Mp@20&y8vyh0ony< zBlbq9U2E36ez1n>LP*4bcCA_8T+AS8ftvsUgdPM%34i%>k$opvG;e!n!%6S~-Ca3A z(t!8?D1#p}y*I_}>P@mF5tGkDwgdc_HIQlk7n~T}mp()M|O;u~nx`YYp z2Fzw>S%F5dYpx?Xef2S5zVv{F@rO+BO_>{!*U1vdpxy!ZcIr^_p@PW{9Iiktr?1`t zlmn9$I897;;6!$_MBRY-tr!n002ovPDHLkV1gN3 BWk#a1IbA&4GPzDYJ0U5284xluZAc~4owpbjNvdl|RM324a+;{K&-}n8?cmH?J zJIxOAwMA?~003ai@?(TRE8R40tf1#rVPYS&z!V|AK0wty$CuDywSdEl4GaW!L3RSgNn3u7Z-3{4W4yvT`gfR0xyc6+HA#dC)3c9R6 z7n|QKKGgkG1O>nJB~cOX&cl%aVA;oFc!#NBBN2}h9K(_GNwMj%p88vo!j0c1xVnQ^ zj;=a!hWYY~iL%$MsIc)UJ4^31>%?0bEd{Jm)<&9u=YuM$@w&(qO!@8=z$zQ&GEHc1Df(G z(v#Os-~LNUPnz$mYyTKjDes|$qlv(cw z{QmZ%IK|i{czW&bmfnjr_g#;e>BlND7W>vVE8Pj5mIwam6364S`I@moV@o@O*Bf+- z+*b|Hg+(Jh5PEAydzf(B6h8zua&#s}V792{%sIvY6xD_44f>nQUnU;rzBc?SDp}@1zoZ3pEpnhSY z{aTJ_VP`eXEz|C^p@ziYTb@p@EV}baihOKE!?!c!3kD)$?A&Fw@kd{NYCb873imm2 zF)^sE?iDcHeDL|q-RVH$6@btacdw&&YqTxB$)yWEAOC<|q5g85FzMM=B%tez@Ov~F zVCkqO(G=;S0Y|K4y1TF2knCgk4P_6WoWYGQNZHPC4T-8qeLj14F3?o~5ZdFaI!d&4 zG(R|@xd^6n)YefIXo-P2|WK%ec1jFP22nMd2|EJLk<#1vB^SxR@nfUbmV)SCVo zOw5ycANbFxMt@c=PJ~jPmL9H(>i{#W`+aJ?G+Em;L1n5tt)Vh50aGUM*uW4D9k{bc78HJ^7hVJ!0 zjizcU_WP7hJd2vsreCShr6hA3M;`0y#y#e&Um!{T}PKm$oy{#_$HletAB=Tb6&w%~;eQm!2(Izq)6^LBpEa z)9I^a!3oBoRrWU*nyN>PO~2Xh`2i^<9bBCwzCLMZJEHq%Y7`lCiQse;Yb}P-R%XM> zgbQ{+pl-85&$ZgoO+=1XVRl@~mu6H!d7;M|bYW&TcE zIb+27XZG5;rZHF=+r2pAtaEYEa0ET`=ozC&$szj*>}blVqj`O}k&8mDMb_l3#md%K ldL3%Zh@n8i-A#8 zKZf~YhDbj~QfUZQ8ipFHnk)*VYr_z?m(w%hnPdoxdwilIWxKU{@!`!%zwS_`<{D67>4N7$o0|L z`HyxOFka@1b2quRa*IO2#+|HS-|o55XHo<~lRZ%k%Dq}Tf|0+2IP$~Cm1x+ zG(?S=`W&TPLz#6v0HmTXJiGLmgcV|K*~+Zr0l+X=?%HP0^;peR@p5bGtd%)+QY{MO z>c|-5&H#{5W*rXzi6l@4;BI0Cd|#P$JOGH&v#|@9d4F}*vi*R!e!Vt!SXt^$R;KLR zJ(Nl=cLr|p!P+OR1bKz>H+ANvYfNLw~LE~5Q3Tzs%#IHvKg>nPmye>F4a9uO3wkq znH-id*nctgw&L5RB@xn9`~RDi0q8AT3~`=qw@R}fpWHzifKsl(Onr`qs4-}y!BjO}3^#Jrs9RM@Wb63Ci9)Lzk_X9?*kAKd}?612YAYBa2e_W3Sfq-_H$u4l3 z(KwNe#t9E_z&E2A;cv^@OG_F+!8&^|-V#lmFr+|=Qn(9t7Xag7AJ{iOA3e}|;H z*4K+94dBbd6b-*Y)vdH@eR!|xFL^;yk0px5EMq- z(tqcGi6ynuY# z1mJXw=Y|*M`}bIb(>CBl*Zyn(jWh@#EXdkROB%qLsem)U!B4*b`9HR7&;32%RP;J6 z8-bjp0UUNKTig|od{m=O0O$@tw@v`)4u3$mP5|f*K(~%P0O?vlR+m>N#$@*YzJKQU zJ}+<-Isu?N0NpwPpgREFIsu?N0NpzF0JJ|eVQY2j3DCNh^;YW@PiLVvwV z85giH5iAEal18h^+An9V9l*ohPY=cyp5CX+wzx9%Ch0Is-i{ui^1^_H$~-@;E)s?z zH!i-zspQ!g9r8a(dod)QTxu<@_5v`t7cG}92Mv-LgDf`PzMv+aEiJd-X7|(OucQ`M zw9fz_S|D+nkPTQi|AgH%BpjM9G%|tBziqz3(LGnF9YFE3)&j|Mp#*det!-UVa$)5! Xp#Wu4&1DdR00000NkvXXu0mjfD0M=* diff --git a/Resources/Textures/Structures/Windows/uranium_window.rsi/uwindow7.png b/Resources/Textures/Structures/Windows/uranium_window.rsi/uwindow7.png index f75790a41878a5b5e9df599eb3004fc19dc29d2f..1a0ec49fd54851dee62e1f9f1608f84c51c738d6 100644 GIT binary patch literal 1281 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|_);T0(|mmy zw18|5AO?X;!IOa`XMsm#F#`j)FbFd;%$g&?z`&f784^(v;p=0SoS&h?X&sHg;q@=(~U%$M(T(8_%FTW^V-_X+1Qs2Nx-^fT8s6w~6 zGOr}DLN~8i8Da>`9GBGM~RsBTId_|A5Z7NlCUU$t=l91qU45Kj08_%qc+?1*r!G zK~5$pWUX=%^U`gVDs)p)(-KQ_N|fwM%QN#*^2^O_^dYKHbwfl^4Ykq7V!sW@*H)21 zsm1v@rJ!)PGdHpU2L*~CA_5>9BCu&d7DU$&kda@K4@^%*naQ4cC8Fbhj9Tae7ec5(yHA(j#!$KwLuQ=%VU zdTn3(GRETkZ?m7(HGS3_KkTx-?^3V$$T)-d0gvt^S(Sz*6Y}8f2s{?H`d8JIDE77 z=avuvQt<)|TW4J5S5Vl^FgK6E_P0wj^lhkVV3{J`@zxu}WT=yO_&)#dz5~h*(oh}ySuU{L{>sXd z@?TwqWkPLy0MN<_k`89~zb^Ma@JlvT)(g!3&u}(bpl*`8?paXrvd$@?2>@s- Bo)G{5 literal 297 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9GG!XV7ZFl&wkQ1G^= zi(^Q|oVT+#@-`cYuo@=um7Ng!;xlWW>L%vq2R#lSzZQkYDkJCQ+V6G~_nfO; zeWw1}_rRI+wGaPqV9a2YV!ps+!nT0*-Hhn4!XFIb`xm|DmsjXTlF69%is?(`zEh9? zGeFg5@Ce*jsF}B3XuJ3P=c{}ER@Nb#l)>Y`eLz y`@}0OkOX!d{?4>d{6rE%RKqcbEes&rXX%$%%2g+2GNk~$$>8bg=d#Wzp$PyK^Ji!P diff --git a/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/meta.json index 453a3797223..8477687a8c7 100644 --- a/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github)", + "copyright": "Made by brainfood1183 (github), transparency tweaked by Ubaser.", "states": [ { "name": "state0" diff --git a/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/uranium_window_diagonal.rsi/state0.png index 45b3c99189ff93d8928aae08e938c39e47de6c8c..43bfb93bac1f02c89e0b8cc06032494e86211854 100644 GIT binary patch delta 1015 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 Q8k9>tUHx3vIVCg!0G$VuumAu6 literal 15604 zcmeI3Yiu0V6@bTiL5v&_QL$AL7&Z;0rL*(c*~g4_H+H-ZcF2a*b`uAZlG&NN-cfdU zhMlp!c3jCZF%cq4r1A)_@Muw*5Q0=IbrF%$3J6V=N}z;BZ7lQpQ&AM9Dqu)baPREf z*Xt{*Ao1spv^#t5x#ygFzjM#o`7;l1+;CT2?GI}yimGdCjkLo%?R>6X1i!6;fzRP> zvDv!CqNwYZI-eTq>1P`#N`6!C?6SL}>t)qQxfRWb0e3cK!r2rRT%9!)bqBEN80gm1 zA=jl7e{|8h7IJO&M!Bfj3=(?lKn8RSZ0J-6cBqo(S{<$pW@YFg1#E@Rrjlt(&W2n$ zzcT#o46`meH^tr&ay2;t>8|KTy4lD8+Uxc)D(Cale#y;y{eIE^Q(EA7FUxsY561`| zS>$9qeS({34jTaQEm6O9xo?nnkPpy>)Jt9pT*445ilnWzs~Kbm4IbMjI-x5AI6 z%5fu;QtYsvQn~?arn`e|d9Y$;=~T(hM$*W@Wr46K$W|M!Y85fm9_Ls$rBz_TWLOnR zf~m?C?i!_g`e;#+)Wi9K$>pE{F&+>l5NG_H7GQWD07g>1J_dLLnj*ymlF!M7 zQ@qecd0md*-01X(mD|Cs*Et5!sN9yeYz1zoEfR(UZXK>n;T1ms0teUQ_(##JRC24J9gY}SqE*ID6gMxc8#I&9}k zvSN<27Y**k&x@j@`eTfsae(nFVw{mgPmBTnSOAEUPt-h8aW7Te%m~%0J9+O%(%|H# z13WN&w4C=`<299x1)R1LauxeZsZ+zLr7M_gPqLyqEjz3_RSzKUX`|(3p=SEbbj}Sy z-hYMp>@oThAdTx9c~`kvvpcbjxZS5@KvOrYr@1t=yw~YwsQc2eB)u`zfylJHxH7#5IJgwVdp%4ujuCQ_* z4D$b49q<_zgneGG#~WnPVbo%yo(0LShz|d?ET^A%V5FQ4s;FwXWj4bKMZqwis*0!0 zTr1wZ z^1=Gn`!+?Qdp}ux+MIV|=$h-ksO>%XR`kZ zg^w+HcKn?yi|E~dYN*=^)l^_Y`s)`jovaB=GP}+V?78fD*;x2?!W^3T?=AE1n>Ts< z=r7jn`}*bO2M0qn^J*vmv*($AzQ1?V$fmqwy>8Lz(TVK%@{zlj4?Q1zbF$;3_T{f>JI_xYPL4nN zcXnj{kn7m^gG*j{{MDx$t~T!ey8X2qb{)TXe%)qu{2xc3xN~b_==jCnt7qPMWLxW+ zZ$cj&*n95aU1QI$ddl$|`ZRQ4Y}gt*P{)dmS8jjwx7tgu3|$)BKXLEq>B(g)SBx~C zbrw20R)5Qfoqrg=@W%e%ow;`PiQ&-+_xi@;<0FfIWC*`r+2Mo`)*X7c_Uzc1RZneQ xuw?a-J@uzu_y7Lvg23c^3rF{v)K|AsQ@>n$^3rn&uk&7VTg!&Xt82Co{}0}mEfxR( diff --git a/Resources/Textures/Structures/Windows/window.rsi/full.png b/Resources/Textures/Structures/Windows/window.rsi/full.png index 5ed08bac4204e8a98d150333a24925dca8310739..a42b6b77f7f59c32ec34289626d566bc573944c8 100644 GIT binary patch literal 2279 zcmZ`*2{fDO8jh`Yf{V-OG*T^7lSP=6G?dmLwG?CRwA#pGizM>@8L6tBmX77BRu{{3 zR8>hW?bH(EsGU(#Q$y=cQ9|iZbz{HuCb+6So$s7)d%yR2pZ9yd_dn-Pc6G5=R?t;| zKp@Hl2U~a13=?;`U7`_)h!Bb<3BcX{2;_dZ-lS-wLh&I`ot+^EL~A)w7q{N;E{jHa zrh_j4ff(HocL{BrekBAVMGf-s0ezgEa3n@3l1OIwQ;?ic<^~GS!HJfk6p#qxgwp5$ zj$;Ym@W6@IVlxU3+i(FxEa5)RuCSvF76pbyqLFC0l>!U~!?Va#oV%^v7F@Kmga?8k z6Nf^DhleA>O_2;%0LsL|!UBcHpfDJO$O8eKrGrEcf)4E64D$atwiJNG3Sxpm3_464 zm*~%6gO+f(m}t9g=1C@P^Dx;g+6D`mgrd+Wp%gj@piGb^sL$cRAnJz<>A;p8B4JSC z6A=vkSr~x{lFUR(eajK$vvogFqNEL803@S!IG`|Sv^fHeL0~LU+xHWtk0+CGU=T>7 zYzVh~pA7|VXyC_IvAg1 z@H})paIBsc>tB6Bny;98_+Z%blycMypNMyIc`pyAw`7*BkXVeNp$6{YqHt9p2pBnp zRp}d_Kj%PMym<;w!@9kfDi3m)36Zg$9e88lqcpfQgXgMB-X=(99|^?vnkR9Q#`hYA z%7)@E>ry(0k2~qe{ASb4|Ff1qY<{M6;-|Xr(gfA!VbwnZ;XJrk2gLOtk2AXDR@&cB z%pNzt#wYEkUv&C+S7vUsC-j0e*n#bB;^X5-8WMgOXq!{K;1`_}7Bh_Y*gAII8U*mP-V$Qm~7j$-IO&b^y+)KIK2mI6~Jf`oCY{JP}f+F8Vo!aa;8JnX7nYxOY z8?Pw%+S)gDKK60X(YLe$G@OS1&-YAxiG19tk* z#KJhjl|Nr3{9Irsm3R`+r3RERE5}Oto;(|`M{RbMlghWgQkDK!a?%1>p~0@| z(i6Yx5H{=>$!zcrR4|?jS^7&p>i%i>`urNhe6x}w&}IVV7f%aADK5)d!vdn})u@GG zN4n3L+qOf$?;Ur}h|-K~id@X?H%y|g9{5u0#EA&{vGQQ5jGkl;0#73VuzLlGWl*hM6v$1LKNo$FpVm89KAxMVIJR>CaS{xxm%q(F^G( zcGr9{dwkCR?ozu-kM@wi>5YF_K3YK3)kbC@c$f5>kYvbg){9YIHEVKL;#pxUw0>gm zBpcAFyEq_M(+>CPXA3jovfjYCpVTy~RO}wKxp{>Vm|>@4Eeoxu33QEWvw~ZrO|N{*)gYRFv_sDy8xF7c czgZqyZEK8~&QVMg|6~xpb+NsFa8U9U|P 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 It^-0~g5Y*&oB#j- diff --git a/Resources/Textures/Structures/Windows/window.rsi/window6.png b/Resources/Textures/Structures/Windows/window.rsi/window6.png index 13aaa2107eb3d7196a96e5530e1996c6cbe0b650..4a47d0859aee6821af5b92eaf68dd4bc2f432e43 100644 GIT binary patch literal 2213 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 J%Q~loCIB+RX~6&h diff --git a/Resources/Textures/Structures/Windows/window_diagonal.rsi/meta.json b/Resources/Textures/Structures/Windows/window_diagonal.rsi/meta.json index 453a3797223..8477687a8c7 100644 --- a/Resources/Textures/Structures/Windows/window_diagonal.rsi/meta.json +++ b/Resources/Textures/Structures/Windows/window_diagonal.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github)", + "copyright": "Made by brainfood1183 (github), transparency tweaked by Ubaser.", "states": [ { "name": "state0" diff --git a/Resources/Textures/Structures/Windows/window_diagonal.rsi/state0.png b/Resources/Textures/Structures/Windows/window_diagonal.rsi/state0.png index df5805957d6b0d0b891e10d01cb5a46e4c36e95a..428ed238a76e8821f17b447ded574bfe51041254 100644 GIT binary patch delta 743 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 vJ0Y_!yrF*O-kYyF^*tYb2bP0l+XkKxLOJq literal 15966 zcmeI3Z)hAv6u>tIYa3}1L|del^@><&HoJSbdw_V)hlP432M z`$1$DlDju=-g`5@_x8>1huhcNvw3;beN7ZaE${A%_Q6lu{#&{P{x>HlufvaJ*{&gz zqVBxg{%fFKKD3IW!WXoGL2EF!MN;&1i>&H#(2`GQ;cTdD%V%X}6j*c|B(+Sd=j!Q? zJ+!8_dbW!(E|%>CBU;y_0s1F<29(KBC8T=VB2D4E1RbP-CDZwIDq~9dR!_mN1i#zE ztcNa4u|``x9dIR_27C)nK{s0{aweVsfAOxCeFUN~4=VN^w)}d@Z_>Wcg4i#ByHN>t)~!#+=Ala-PYU zYaJ&gKT%*RhL*K7Jww}m<+wg(wR${upz>ARS2|k`lrf9!AVoGWXIZ|5V`~|yO4%km zW~2&BQxz7ZKpJE$6WZ}L?Xn}frJEyqosea9-M}y>u~<2F&Gn|!HA9=$#&L+Ch_t4q zIWUn0Y#%W7F+%|x$Kh7i*4n+LB`V3O@?>l3t{vpHI%c-UF)NgUlc6x&tJG-#+0u;x zT~9@vD(fvFq&qtcRYkAcu4Pm`XFeQeQIkr(E8aj= zUg9{H6K5vkBc`ibVxr=MhXu_KczMa^mBf(ShifM41KvNXY{`rA;-2gBqbgEDH`1~d z(b94fu-Qy9%vJ_nGs{&ab?PbIfXf0AUzn{mT+=G5D`R$9cVrY`!ep4PB*9b_ZrlxW zvU;?nNNEwLZK%4UsZu3qfD8FmKgTfvP7oNL2Y?AFqMrd`P?bZ8UW)U>K#K-9ErbGGkn;D}}@Jdkdt3FXogbHO>ZC=@Q(RC?0bbT`$ch>20wjj_}LxU%UoN~>v z_oBkR03ZS(;RB2ef+EAmVeVw!%P|R2^oA7P58?rTX)iV0EC|)5*(Ehmo#8@B^@Cm2 zqm_~>^z^K3n85B>t)5cLDjxz)l@x2G(D@`;u}_1DVmB0^hS{po%CgFqVP}H2FrAA- zu)w^2jNAyw;2M(SsxYg*6H`xEIoSXmNqDO+rdK*%tIbgNe|H1kL?TRi{N~aSSK&?N zl|_b=#ULZvcU4GL6jnsMe2+I=)NR+t~~a`0k#`+w2Ytwv3U@TP7xYFe>;ETdTw zZ!sD&?6R_-7M(|#e)wVoB7RZyiD4EUMlE`^JV*^jHTWoF+9!bzMk?5#ikgN)^$cB# zqM?&2*DFZj7;{G93l4m@V#_aA3r@K5`Ex73RCaVLy&}Fy5CjNbB)IT=5G}!l0Ktm{ z7oHEICAbhEc#+`3^Fg!(7Xkz?5?pvbh?d|&fZ#=f3(p795?lxnyhw22`5;rKlV8@bd~qjd2w9>o7%02PtZ${`}4}n<%P*>W+2{-TmE=cJkS)_V?#DUvFCiuQ#4P5x%(LnU7YqpM3JlzDKT` zlz;BZy|PcFZ(>F*BO|GjaObE5ENiepxthTfF(`OO5CD zu6gmYu#0*vxOw|oVS1+jn}(kUd&E1YM?;P9I`i%Hh4Vcx+;#Z8v43^@quY+W-?(m{ zxqnT2Y_5BpdWU)F%Z3xj4*inqI&i*ceCfHbjXf(4Z`-zZuHnRf^Yzv3?A+VZ)T=W} zaO(S+BWmZ4qvIbuaB0=SJfNGC!|;maul;zBy`y8pKg?hHY3Jn7SF^LT)GF%T55qUM T+&>K!JMPxP$~!+ZV$;QnZ1 From c978eefedbd0a993e9358ee15687761feb457130 Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 13 Nov 2024 12:31:47 +0000 Subject: [PATCH 067/171] 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 f54421b87ad..3365a943ee6 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: PoorMansDreams - changes: - - message: Throngler Plushie looks like a plushie - type: Tweak - id: 7106 - time: '2024-08-13T20:32:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30969 - author: IProduceWidgets changes: - message: shuttle events have been separated from other midround events and can @@ -3949,3 +3942,10 @@ id: 7605 time: '2024-11-13T02:59:47.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33223 +- author: Ubaser + changes: + - message: Window sprites are now slightly more transparent. + type: Tweak + id: 7606 + time: '2024-11-13T12:30:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33282 From ff25bdced006c0306b3e06eb14ea93a372216507 Mon Sep 17 00:00:00 2001 From: IanComradeBot <96892333+IanComradeBot@users.noreply.github.com> Date: Wed, 13 Nov 2024 12:32:37 +0000 Subject: [PATCH 068/171] Automatic changelog update --- Resources/Changelog/ChangelogSyndie.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/ChangelogSyndie.yml b/Resources/Changelog/ChangelogSyndie.yml index 97f5e0cafdf..b0be45a7c16 100644 --- a/Resources/Changelog/ChangelogSyndie.yml +++ b/Resources/Changelog/ChangelogSyndie.yml @@ -1,12 +1,4 @@ Entries: -- author: lapatison - changes: - - message: "\u041F\u0435\u0440\u0435\u0432\u0435\u0434\u0435\u043D\u044B \u043F\u043E\ - \u0441\u043B\u0435\u0434\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\ - \u0435\u043D\u0438\u044F" - type: Tweak - id: 195 - time: '2022-07-23T10:53:37.0000000+00:00' - author: lapatison changes: - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0440\u0430\u0437\ @@ -4517,3 +4509,11 @@ id: 694 time: '2024-11-12T21:56:38.0000000+00:00' url: https://github.com/space-syndicate/space-station-14/pull/2761 +- author: Resoid + changes: + - message: "\u0423\u0434\u0430\u043B\u0435\u043D\u043E \u0432\u0435\u0441\u0435\u043B\ + \u044C\u0435 \u0441 \u0446\u043A." + type: Tweak + id: 695 + time: '2024-11-13T12:29:30.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2767 From 2914f534405b67c6d55db480f68cccdb9ef9a427 Mon Sep 17 00:00:00 2001 From: lastPechkin Date: Wed, 13 Nov 2024 16:25:32 +0300 Subject: [PATCH 069/171] [Maps] Astra goals (#2768) --- .../station-goal/station-goal-component.ftl | 16 +++++++++++----- Resources/Prototypes/Corvax/Maps/astra.yml | 8 ++++++++ 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/Resources/Locale/ru-RU/corvax/station-goal/station-goal-component.ftl b/Resources/Locale/ru-RU/corvax/station-goal/station-goal-component.ftl index 8caad9e9dce..844226632be 100644 --- a/Resources/Locale/ru-RU/corvax/station-goal/station-goal-component.ftl +++ b/Resources/Locale/ru-RU/corvax/station-goal/station-goal-component.ftl @@ -327,8 +327,14 @@ station-goal-split-secure = { station-goal-end } station-goal-astra-repair = { station-goal-start }[bold] - Цель смены станции { $station } — восстановление заброшенной части космической станции, находящейся в центральной части.[/bold] - - Вам необходимо избавиться от мешающей проведению работ враждебной фауны и восстановить электропитание, атмосферу, привести внешний вид к изначальному состоянию. Также следует выставить на шлюзах необходимые доступы отделов и обеспечить свободное посещение сотрудниками станции зоопарка и музея. По воможности следует сохранить образцы фауны в зоопарке. - - { station-goal-end } + Цель смены станции { $station } — восстановление заброшенной станции Vasilisk, находящейся в центральной части.[/bold] + + Вам необходимо силами утилизаторов и службы безопасности при необходимости (по запросу утилизаторов) избавиться от мешающей проведению работ враждебной фауны. + По воможности следует сохранить образцы фауны в зоопарке. + 1. Восстановить электропитание. + 2. Восстановить атмосферу. + 3. Всё покрытие должно иметь плитки пола. + 4. Стены должны быть целыми и очищенными от ржавчины. + 5. Главе персонала после завершения работ следует выставить на шлюзах необходимые доступы отделов и обеспечить свободное посещение сотрудниками станции зоопарка и музея. + Все инженеры принимающие участие в работах имеют право получить доступ "утилизаторы". + { station-goal-end } \ No newline at end of file diff --git a/Resources/Prototypes/Corvax/Maps/astra.yml b/Resources/Prototypes/Corvax/Maps/astra.yml index 8a5c4d673af..4fe225e5a74 100644 --- a/Resources/Prototypes/Corvax/Maps/astra.yml +++ b/Resources/Prototypes/Corvax/Maps/astra.yml @@ -68,4 +68,12 @@ Borg: [ 2, 2 ] - type: StationGoal goals: + - Singularity + - MiningOutpost + - SecurityTraining + - ShuttleMed + - ShuttleSrv + - ShuttleEmergency + - CellAI + - VirusologyAmbusol - AstraRepair \ No newline at end of file From 885347d50360b5d6dc8d5df17e8b533775eb217a Mon Sep 17 00:00:00 2001 From: IanComradeBot <96892333+IanComradeBot@users.noreply.github.com> Date: Wed, 13 Nov 2024 13:27:38 +0000 Subject: [PATCH 070/171] Automatic changelog update --- Resources/Changelog/ChangelogSyndie.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/ChangelogSyndie.yml b/Resources/Changelog/ChangelogSyndie.yml index b0be45a7c16..3285b7e5c1a 100644 --- a/Resources/Changelog/ChangelogSyndie.yml +++ b/Resources/Changelog/ChangelogSyndie.yml @@ -1,13 +1,4 @@ Entries: -- author: lapatison - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0440\u0430\u0437\ - \u043B\u0438\u0447\u043D\u044B\u0435 \u043F\u0435\u0440\u0435\u0432\u043E\u0434\ - \u044B \u0430\u0434\u043C\u0438\u043D\u0441\u043A\u0438\u0445 \u0438\u043D\u0441\ - \u0442\u0440\u0443\u043C\u0435\u043D\u0442\u043E\u0432" - type: Add - id: 196 - time: '2022-07-23T13:52:45.0000000+00:00' - author: Morty changes: - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0441\u043F\u0440\u0430\ @@ -4517,3 +4508,11 @@ id: 695 time: '2024-11-13T12:29:30.0000000+00:00' url: https://github.com/space-syndicate/space-station-14/pull/2767 +- author: Resoid + changes: + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0434\u0440\u0443\ + \u0433\u0438\u0435 \u0446\u0435\u043B\u0438 \u043D\u0430 Astra." + type: Add + id: 696 + time: '2024-11-13T13:25:32.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2768 From 51d2b51ad09f3b361d80f22c3c2c23d6a5048517 Mon Sep 17 00:00:00 2001 From: dffdff2423 Date: Wed, 13 Nov 2024 18:27:31 -0500 Subject: [PATCH 071/171] tag:with toolshed command (#31751) --- Content.Server/Administration/Toolshed/TagCommand.cs | 10 ++++++++++ Resources/Locale/en-US/commands/toolshed-commands.ftl | 4 +++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Content.Server/Administration/Toolshed/TagCommand.cs b/Content.Server/Administration/Toolshed/TagCommand.cs index e1cf53e1b1a..4c6f790e493 100644 --- a/Content.Server/Administration/Toolshed/TagCommand.cs +++ b/Content.Server/Administration/Toolshed/TagCommand.cs @@ -25,6 +25,16 @@ public IEnumerable> List([PipedArgument] IEnumerable With( + [CommandInvocationContext] IInvocationContext ctx, + [PipedArgument] IEnumerable entities, + [CommandArgument] ValueRef> tag) + { + _tag ??= GetSys(); + return entities.Where(e => _tag.HasTag(e, tag.Evaluate(ctx)!)); + } + [CommandImplementation("add")] public EntityUid Add( [CommandInvocationContext] IInvocationContext ctx, diff --git a/Resources/Locale/en-US/commands/toolshed-commands.ftl b/Resources/Locale/en-US/commands/toolshed-commands.ftl index e2536f6781b..c53c825eb3e 100644 --- a/Resources/Locale/en-US/commands/toolshed-commands.ftl +++ b/Resources/Locale/en-US/commands/toolshed-commands.ftl @@ -1,4 +1,4 @@ -command-description-visualize = +command-description-visualize = Takes the input list of entities and puts them into a UI window for easy browsing. command-description-runverbas = Runs a verb over the input entities with the given user. @@ -58,6 +58,8 @@ command-description-rejuvenate = Rejuvenates the given entities, restoring them to full health, clearing status effects, etc. command-description-tag-list = Lists tags on the given entities. +command-description-tag-with = + Returns only the entities with the given tag from the piped list of entities. command-description-tag-add = Adds a tag to the given entities. command-description-tag-rm = From 9643598c704dc99ae18312b2bac44960c75d7e7c Mon Sep 17 00:00:00 2001 From: PJBot Date: Wed, 13 Nov 2024 23:28:39 +0000 Subject: [PATCH 072/171] Automatic changelog update --- Resources/Changelog/Admin.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 680915d3821..bf1cbddaa18 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -597,5 +597,13 @@ Entries: id: 74 time: '2024-11-12T21:03:13.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/30659 +- author: Aquif + changes: + - message: tag:with toolshed command. It takes in a list of entities via pipe and + returns the entities from the list with the given tag. + type: Add + id: 75 + time: '2024-11-13T23:27:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31751 Name: Admin Order: 1 From fa3a04a5273c77bba4f3545dfedebaa61bd2f5aa Mon Sep 17 00:00:00 2001 From: keronshb <54602815+keronshb@users.noreply.github.com> Date: Wed, 13 Nov 2024 18:36:37 -0500 Subject: [PATCH 073/171] Ethereal Jaunt Spell for Wizard & Jaunt ECS (#33201) * Act * Adds Jaunt ECS and related prototypes * Adds jaunt sounds * Adds enter and exit sound support to polymorphs * Updates jaunt description * Adds jaunt action sprite and changes jaunt polymorph to use it * Adds Jaunt and upgrade to the wizard grimoire * Makes base mob jaunt parent off of incorporeal and basemob, adds blue ghost sprite for ethereal jaunt * Update Resources/Locale/en-US/store/spellbook-catalog.ftl Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Update Resources/Prototypes/Entities/Mobs/Player/jaunt_mobs.yml Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Update Resources/Prototypes/Entities/Mobs/Player/jaunt_mobs.yml Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Update Resources/Prototypes/Entities/Mobs/Player/jaunt_mobs.yml Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Update Content.Shared/Polymorph/PolymorphPrototype.cs Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * Update Content.Shared/Polymorph/PolymorphPrototype.cs Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> * removes meta changes * removes other meta changes * adds context menu and a description to basemobjaunt * comments for jaunt component and adds on component shutdown method * Update Content.Shared/Jaunt/JauntComponent.cs * Update Content.Shared/Jaunt/JauntComponent.cs * Update Content.Shared/Jaunt/JauntComponent.cs * Update Resources/Prototypes/Catalog/spellbook_catalog.yml --------- Co-authored-by: lzk <124214523+lzk228@users.noreply.github.com> Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- .../Polymorph/Systems/PolymorphSystem.cs | 6 +++ Content.Shared/Jaunt/JauntComponent.cs | 26 +++++++++ Content.Shared/Jaunt/JauntSystem.cs | 26 +++++++++ .../Polymorph/PolymorphPrototype.cs | 13 +++++ Resources/Audio/Magic/attributions.yml | 4 +- Resources/Audio/Magic/ethereal_enter.ogg | Bin 0 -> 36619 bytes Resources/Audio/Magic/ethereal_exit.ogg | Bin 0 -> 42980 bytes .../Locale/en-US/store/spellbook-catalog.ftl | 6 +++ Resources/Prototypes/Actions/polymorph.yml | 50 ++++++++++++++++++ .../Prototypes/Catalog/spellbook_catalog.yml | 33 ++++++++++++ .../Entities/Mobs/Player/jaunt_mobs.yml | 40 ++++++++++++++ Resources/Prototypes/Polymorphs/polymorph.yml | 16 ++++++ .../Objects/Magic/magicactions.rsi/jaunt.png | Bin 0 -> 431 bytes .../Objects/Magic/magicactions.rsi/meta.json | 5 +- 14 files changed, 223 insertions(+), 2 deletions(-) create mode 100644 Content.Shared/Jaunt/JauntComponent.cs create mode 100644 Content.Shared/Jaunt/JauntSystem.cs create mode 100644 Resources/Audio/Magic/ethereal_enter.ogg create mode 100644 Resources/Audio/Magic/ethereal_exit.ogg create mode 100644 Resources/Prototypes/Entities/Mobs/Player/jaunt_mobs.yml create mode 100644 Resources/Textures/Objects/Magic/magicactions.rsi/jaunt.png diff --git a/Content.Server/Polymorph/Systems/PolymorphSystem.cs b/Content.Server/Polymorph/Systems/PolymorphSystem.cs index daff200982d..c9a71c53584 100644 --- a/Content.Server/Polymorph/Systems/PolymorphSystem.cs +++ b/Content.Server/Polymorph/Systems/PolymorphSystem.cs @@ -199,6 +199,9 @@ private void OnDestruction(Entity ent, ref Destructi var targetTransformComp = Transform(uid); + if (configuration.PolymorphSound != null) + _audio.PlayPvs(configuration.PolymorphSound, targetTransformComp.Coordinates); + var child = Spawn(configuration.Entity, _transform.GetMapCoordinates(uid, targetTransformComp), rotation: _transform.GetWorldRotation(uid)); MakeSentientCommand.MakeSentient(child, EntityManager); @@ -288,6 +291,9 @@ private void OnDestruction(Entity ent, ref Destructi var uidXform = Transform(uid); var parentXform = Transform(parent); + if (component.Configuration.ExitPolymorphSound != null) + _audio.PlayPvs(component.Configuration.ExitPolymorphSound, uidXform.Coordinates); + _transform.SetParent(parent, parentXform, uidXform.ParentUid); _transform.SetCoordinates(parent, parentXform, uidXform.Coordinates, uidXform.LocalRotation); diff --git a/Content.Shared/Jaunt/JauntComponent.cs b/Content.Shared/Jaunt/JauntComponent.cs new file mode 100644 index 00000000000..6d37ab4b322 --- /dev/null +++ b/Content.Shared/Jaunt/JauntComponent.cs @@ -0,0 +1,26 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Jaunt; + +///

    6Zyh{%U`^=18B*Mo(5S=h(?BgwVnh z^Tq*Q+`|(qxDjOFmwCgJ@yPGwPaI0+jAGNeuDFycZJXAL5bn7BIDOZqcj>3eB<1jo z)*u4OY)QYAk>7kbrPr1$W8n{{aYE9B%*s delta 948 zcmV;l155mj5Z4EgF@FSSK}|sb0I`n?{9y$E000SaNLh0L01m?d01m?e$8V@)000AQ zNklwh`36=J4#bfSCp;x?_n zBdQ*f*ScMKeEdqZa3g8Rt7aDOrwgh%5_{B{4RpSGShn|163w3=n%XBj9|Cp(xbu&m z64kFKJrS)=&BT>zL75)kvv7i~H{o6!7mqQ=9t zu72#5C3963f2`M3p5x^-Snh@ZU z5LFJ~kYK$YuzWjNQO%LC{XTC?bhAKcb_J;O$oR_6p?`2P0?I7GT7d6)+BfzipwgwS z_S>vkMhW&gVD4mgE~^ALIbZ|{Sn~_D?l%l40zeT7{T!J_%U&Lj@>b{OEknPV6`t0YxNep1o|-scMpy z#5!NpMSn(|g}@*Qjn(b?z2#Of=5gmmNMvCULmqIN156SCvi1vEW<)$V<>09VYk6+W&zmc^$I=_6Bg{bww!u9B}tRtB$y@h`)#= zh&%w+Hthcg8@!AFjVT;34PrV(0{riu1WiB!W`6J^g;Ct%y<_7Q0_+A zd##!F_5ol|Kn%$+hyVZyuiAh10iZor0zm(!r%*e=hQU%7$j=Tpms;aj7Z~)!$N`H0 z5Q_vh0U!nmtO8ks2NaQDOY}+5w}ev60>dQOQVIdUmxR&?0IuRb54!*qPFGfo?-Ot>fnC5%-{L5Q zsOCUiN?;d&Isul*(QzC_-xzZxA&ML@dqnOTz;We#@z>^DNQgp!-YbBj$?FekRyrS> z*XFQC03AlT40{Jc!!7{vkD)Jyd~YP=b1j0r;tzHK*dw4jj=cjLVl@2t_4n-H2cqBE Wwu-~W40$*J0000G?W zUP)qwZeFo6#1NP{E~&-IMVSR9nfZANAafIw@=Hr>m6Sjh!2!gbDamkq3QCJ|z_z3$ z>!;?V=BDPA6zd!68R}!xSCW~AaA96CG&q0(qYsh+YBRv9&9k5+*#sC;t`$J{K>Y`F zXfoK|;*u17BnA3L1_l&2TID3>rQ0f1=%%EmC6?xtDA^^KXXd5kmz&$@LsX&ahKQmXYNL{p zmyJF=C)shWbM3v(z`zph>Eakt!T5Ie?))nTGRN!JUXXQCn77n+fsIPkgb5A?3;Ygn z@l1WemDJEUk@bgsLSjNf1LMIeSDpih90Zw#Lj{HUotuJAO)Z}&F-v;gkJ)$pe=LeA z>J|Q9qdTo=<6Mhx-ygfz{IiTzdBax4^|}4q)fZ>o7ws!`Onmmdv!LduYsssMM3r?N z&(~dZd%R9P_O;(G#rLlT?r*m{k^0qZ(ZRJYtHW3xeLg3BK0Zx(@(!DT&lZ02x|iA| z&#(V^YWb5{{ngK$)^%=YF!>$3>Y8HR`*&x#HLKOWcQH3~#j!Hh);+pv@>WAMbHn@> z=bED|gZAi+<%_$lJTwJ>ic=`?JITaK5)M?`!C8Ku%7*q{yfaE7D{;3*YCj zd(NF>XmAkA6>bVV&fI`$kln;!5my!&p&BP}q8;lO`3RfUq5 zM=t+ZKVN^2$K7LS>~?w+-fos)xa}1EG@Yk`eN~v` z4!L|D2Bymn4;uZYCKxiv?Y!(TL9G8zFXIEnxjY9Y7_QeWcQRmW5Szeu=!V6`S&w8U zb?@?FaB#F1IK(|Shhw731jz;!4uSrs`EzdSYtH$6PQ*c*L#HCcemAjk zSQ)wJZus}&Sih^O=reN%8J2zD9(^^*eXsrN*@l_(WwguBozY|9uo2iK)3Wj0`mles zpT!>qeolTo?>_H?`d`!DPqR$7VsqKba^g_N|KI&aO{qWF^R7PsRC=lrgM&p}`*yjii=8^h)2!H9PRp69 zCGa!Ewa*aQX&`Kp$C!BWp@Bkz63cA+oc}kN8MYU`-Op$^=UAFWIfDRmvAM#P*K&Kg zzg+g)D#^mUXv^uX+%Fz6Fh1JI&%pl2n~Nc#W&55)={Z}B<0ktji(g3ZIXqo!@g#vY zrHrvDS8hA*&%3P8#K08WsK9nWlw%P?j@j3+%D?Ovy3Pc3#(&a1P$8FaD`?R(!Cy9w z^Uvq=?mPCd?|)na>#KCJ<;PoFizD`{_ujv$m%!b$nIT~ITL+Ke*Hu!>8E-T^umMI@ zRqnEn4oIu-~E~ZmY#AYle%51OMqL zb}+vPDh{l@@31?*CzbW!sZ|9bx~~eC@@BPnT0KaxRQvR2>6az_%QrPB++$Lh^_}ZL z#;1L+elGj0^3h{@t1vr*wW68-f@d4c4{Q^D&$O@8=O%Zec8h%c#7{FAByI#Pw$9V- z$d*Xz{dZAH^&0oIYw}-z+RS5J%=w1x#~QtJGxN6p=jKPPz0*IJzf1=);T3K F0RS;GDEt5b delta 1041 zcmV+s1n&F55VHu7F@FSSK}|sb0I`n?{9y$E000SaNLh0L01m?d01m?e$8V@)000BX zNkl*=hXJGn^$R<(^o|KOI}SxX*s;}f4lo8U>AU9e@xuC6NchQB@VL6h}J0zl_C7g%>AgZ)&3C;)r91@%o0BlQeLO|u4 zEJ$ohaIOVJ*plFkfT*HzY)EiIK=cyCAwhdSVCsf9BY%tkgn0SMKYYjSqO&cGw18G5M1hYRZ2_z0rQn>^mSCg>WLbiK3>X{^&RLaUCI+-1 z0n=aI-iG{%4f#sgY1x<7dto^wM)2Y-8rRz&6JMN2?31b;XESpR>}LHo-a z%?QPx1Mb`}<>ogU=`p3{{_f%+tT&|Sl`5e>N!F+rCyt4 zji%aU0L}b<0TrszAz5*iq*idY3)qt2bPP~Rkd;<_)(XxC!L%i0Viag3L6=Mj0BK3c zi~wM&-^XDWfW+y{Z1ekrOiN%F(3hATg?|uPtcytr>;jM{z!W(uj-%NfW2PiH5d#Je zglh(HoE>X^+nfmrP6&unYe<@W`059#^S0SGheRnVjC2{+4%mkMZSdMfsv@C^WC>yc zc9Eh*EPf6@N4JQROvK)PpjQWW0jllu07(<%4X~}Q5qit*iGBmus+8*{>AXAu015yA LNkvXXu0mjf*^Sh& diff --git a/Resources/Textures/Structures/Windows/clockwork_window.rsi/cwindow7.png b/Resources/Textures/Structures/Windows/clockwork_window.rsi/cwindow7.png index 6d2c0e0650ea87482405e72dd57986599e1bf6f7..aafe2b5051d6bd0bb148bfeb3de2ee82737b3b94 100644 GIT binary patch literal 2065 zcmZ`)4OCNA9KVmjfFZgFh63go6k=>|%m|rdFa=@hfIw=)5188<>@fDm_K*QO29hEn zsh9_8M-lsWi4+nfgyu{$9ij$hMm8!T!|>q86olRe0($hGbKkx9|9-#!$M62%dE1i` z;@n9-BmjUrKRzZIU!!f)g@`{tm*@843#3VoTLzAp{RZ&EY(&VH2?SsfzIVZ=ZCpyJ z#-FaLc##GN7;F=A-jnhh00f16wGa~uR^vBXxaES2f@TtZH_{z zVQV94b_5&W+srVHYKLIiku;$oiMkwBBh=R!Oa_z2B~htVj#?^XC&#Rqq~oVZS{8<> z*f5-*pU=o&%s|zdaA-tC1k7Z?EEXL{&@}~0Osu6VH31V&9{Y(wG!nI3g~?GR)#g{c z0nNiAX*64)sWFkKR5BGum8VwNqevw%qCj#GC8mKx8KLmAc$i!^ouN`QDF-eLYRplevV>WYJj>@Kk+x`W&f*jma?uVi#_z z9=n1(1@@%XhPO$eklU1HE5ypoNSc-|MP%YU1xDja^5se?njg-ACs0qaC#+98<-pH~ z&#_g_79}GZRFP-Xof{Fxu}krUary!#2*PI(W*VO+BxRu(iuaRRF5xRNM6FWey=9Nb znhf`R#M8c}W2Y+R827P*r_3{0Gwz1XQ)Bt4I(xPK9;QWnE@aZpgrGC}bE5g};^W=V zC2`=XFNsS!61$@Z0LMUn3~#j-8vLLgy~3RP{qKi94SM6%C7-q|P2I##TIBEF*ceJ6 zco?a~xpPJOafq^lIG1ch2(rM9j&4ocOqs2HU+F<`(A|myLKLZA>#-rIVR?42_n9h5 zR8&Xf=H`?Dad>O4bY5)DzO?#o%DNiFtF-SFt!qGXD5$zZJC-)COx~1s?VBdwiYl~n zhf&%nH)It$cbRG^9UgDiWo|C%G~el$9ZI}F?AjNQSNN0LceVeut!#L(YEGxBy2a_l zzxO{&+h!#!PMKHn?>$N`*m-$1dB_}9&>VgI*Sy-^1nh>cxciGM)=#!~I4tZQNsM6@ zwcNTvy>ozFd(Ape!v`jMvSRQK3F7t9Kgr6h6G%W4($Z1{SFeP=D_Ft7ij zrT8>m??eDq8;dfv%$@Zwl&=A9WvV3cMz#_!WO&di)6z0M-xKo z&XJ9fYQg$cmu`@8D|KszyFUBd&&h`K&cFd&*B@x8_E|15cNT{1-jkSSIOe1xib773 z=fBeT4q3O=^vgWp$#r!wNgn!U-dpKX_4k1138qVk_2L+NJ~#f4uB$%uiu1?9fO7P_ zC5{da>on-t`qBQ)p($q{d;!(OCUpLBX>y?rEh(K@9!p^^uJ*c0`DlZ2YFlf*hpf1MA+T;78@uHk9Kz?K+*Aj zj>fU0eaDJ5B12!G*$hROxt4^pE76PD;~xYytx69$QRun%wE$B)6qw%HwJ+9Nm=aO{ zLfc)c3!hUPbd#0!;RBspBVbg>UH!I3f}h>=yj^nwc$w|Mt#UsE5&Vr0B!dfz!1deo`GyokfJ&FFusNcXd|jJ>FHXhol+{fGmx3fb-~K63B@8x=rkB zX!=T7Qe9Xgww&+%!}?d%Puvc1fz%xy^kTYs_AITrjXaD6(RDD{1gs7`&**(0b3+=! zz^Svwy+f%e)ZGWxtlaJ!SJUUHcQ)mw%qJJrEIPg!9=XrUZQl~ypZ>@K zhJG*%08?Al@bNP0Y;e=@?{76NXeN#~5Jwe(u?AV2I`gY& zL4833pa|A)+@c!b2soEoRTgkG4iq^h4gb6}srkk6@bZQ;jmed0c^BpStI0ys=$ak0 y3m#+d7H?@wuKeiB0>nK^7fjyOdvM{8R>Ds2U4FdVX$x(?V}5Kx%#mdorT+r~^bE-W delta 970 zcmV;*12z1S5bXz$F@FSSK}|sb0I`n?{9y$E000SaNLh0L01m?d01m?e$8V@)000Am zNklVupo}kS=9qDjxzSR=PA_0%oL& z6}1dNg2Y<`X?Y1CigZY6@ZV>{DRt85&gaM1^e3I{I+a@g&VPQK^W!TJGgC*$x+v!> z9V(xYP1F@FxHj8F3payW)M{q&LAao*i8!Q6Hj3k8sz!8df@tmx(d2m4c^9w?C>8(6 zyI;K#Q2Auk*4T*d{9bq82J8Yb>@SGB{HJJUbEk=F zkHf0^I8(e3@PF|$(UWJ<_4Iitr+}CenGb)!E?{RTn)7#W&(?6c>^xu>u=QP)8}DVg zv^eXm^MG9dI*dDyx|T3~N<>9Rco74D?zC$O-Ut9361)-sTua~&f~uo&TuSg_1aM05 zW(sgg@G1syNJzaOuzV+2QPo7GeV$K?cdLMF4g{z&F@IS_XIEGm0eO~?TEJHGohAq|;~0F7xnU>U@6D1+jD`+p{A0urziAm@+VKh6MPT1*$!FEEq2 z0DyEi(%!3U;lFbLI1>O7+&B>cAmMfM|2Y8EM@j(bJ@n-2B-kJ_T?P6PUmb2OHAXKl z(C-@~2P^`BFA~@U03Rf<3h;pg0jeBXMqU8xlNd04k1*{l>42#}(?93_eE}1u)uFfJ zCVxpu@OBEglHhd==qsVn-L>1C6z_weQ9_?B_ax+E6&NHTEx8Z?vXYP+0l*|7E$jl2 zI9+)({5b*J64(WldNxNPL{$0h^0y1+`OA-|-a&z*EttxDlz$&bOY>=?Nk^)#sNw%$0gl~X?bAC~(f|;Iyo`I4b zmx6+VO;JjkRgjAtR6CGotCUevQedU8UtV6WS8lAAUzDzIXlZGwZ(yWvWTXpJp<7&; zSCUwvn^&w1F$89gOKNd)QD#9&W`3Rm$lS!F{L&IzB_)tWZ~$>9$H0x+$q?iKRIuN_J_bIXO1^5EZC8A)=@T+UR4k+Xm!gtH_|#;{2Ra zP?+0Un%RJZ0YwlI_z(>d*fbyuqH74q$S=tUrlq3HWY4^k)S`kSV7da^X9Tqlw+eK# z5O#;=WtP~%3_ue`(uEW+R*pp_<@rU~A>cTG1Rzdns1cCBL`s*CL=O&lV5+y{veAd< zAUiID^hu?HH@2 z_bUE^{KEQ$dM?`|S4EdT_FKtO=kj6mGOa9b*4a77D&L*;RP*F^wwlX*^3G1Yk> zAZAPR+tXK1y?lI$!h~=AqNVQ( z@7i*5{=O1t`BC}u?l*sZ)@{A@T+TYhL{r}z5 zpIqW}ee*5a+$-cG{C+#-(X2_YjIHTy8Nk98Zm$$6D&r2zAI__sZ(A)Wpu~BX&M-q;^CPhi>2u7=8a>MXPP4w$)sxWbJ#icx|F7vE*e zoxZq{b2sCT`x+gl=85wJGS=>7-{okgCA5-};TA{7ggtYwSmvJQYC0qRcET2oo0n7; z|8*+4t)^Y(`SP0XrQhr2nwLzeo3-b{KkZ3;5_4=fS0C{_y7EBAm+8}HGX%f=bx@S| zeEfCeR)veM8)|Nd+si4ob)IJ1&iOWCNyd+e)z+s>1P@H8%y8RTR_(v2`?-ip*q<3` z9&?X5pIRE8KijkVQdC!+6o+v$TU5p(*)wxOkE}ehPQ@q0^TN$}3+8#7DW{+D+kEv{ z4qsX3jc2v@TxE8DX})@@SS_N`@7BI~$NbNps@vTBoFQ=DfA%|jQ-kg2{OSeO7oM(u JF6*2UngGrQhnfHY delta 711 zcmV;&0yzD$4c`TjB!3BTNLh0L01m_e01m_fl`9S#0007!Nklw>CVM=hn1jfBZBI06=*8 zvL}_7k#1MGoqv@her2g7TkoqfDBIoH)(~k!kFn*e{q%2(1}rY=LV} zB!@8lNp%5n;vsb93H7f|7Z7cSuxp6w7b%wJdVt*rghrF^67J? zVDr8g|3(9aAkamSgv6hSlCcQ@&m#BICMIM`d6`i!5CpnFAZ`uWX1IpcldDlDOG@w6?Q88~xyk9fut2TN8mFBnZ*jIY7IEgKu1Jx|QZe>~ tf^j>D+XEj+o6tHx$0h^0y1+`OA-|-a&z*EttxDlz$&bOY>=?Nk^)#sNw%$0gl~X?bAC~(f|;Iyo`I4b zmx6+VO;JjkRgjAtR6CGotCUevQedU8UtV6WS8lAAUzDzIXlZGwZ(yWvWTXpJp<7&; zSCUwvn^&w1F$89gOKNd)QD#9&W`3Rm$lS!F{L&IzB_)tWZ~$>9$H0x+$q?iKRIuN_J_bIXO1^5EZC8A)=@T+UR4k+Xm!gtH_|#;{2Ra zP?+0Un%RJZ0YwlI_z(>d*fbyuqH74q$S=tUrlq3HWY4^k)S`kSV7da^X9Tqlw+eK# z5O#;=WtP~%3_ue`(uEW+R*pp_<@rU~A>cTG1Rzdns1cCBL`s*CL=O&lV5+y{veAd< zAUiI7cC`zHxUjfR3UC%|YAUtgTzCEC>33<#j`tPcA3sx*Zj}FQ_xg=nx0Z_id%UCN z{olWT4Q9`MlIXMi@`bFepKQB-thsrI_wmQsSMokx|K{%Q{*dXxJo z(bB-Fz58b3{aZC-7?_FGeJ`FpeA8UE_w`|JPO1n{0o)4lxqovo2=aMY#S zS1+E5kz_b$zqi&_Vy~6$muc1gzq>0r_TH>Wanv~R__@D+_1?MJx0|EC%YSo<;Q6yN zKD>frm}kfHU^D7t3JLv{Cldxh3~8{-WK-t z+IL_7l*zclC~(n)7fhm4c)A&;GQP~{D>XjTtm^YqXJ=E@{Ps;e8WXHOdogU`sy*kk zbvf&IWwu8=GmSR*olia%agFuMKDIT>zFf`#ZEC`PVJKO=G;rEVZQbeM3gDin8VAbq!&Uq!xVAvb|`1*K}sh$%PAw zRx_SIztbd^!$fW7E*}kBL&bB+@!GKus<(AK8D>bNgZ8)6Ji_R($(1 zdDo}Jm4{nc8g(V^74BJA!+)Tl=KSup--KjW^Gf^M7mwn*Xf+tG_d;_BAJ$$Oce__JFx0?U} delta 814 zcmV+}1JV4G4#ftLB!3BTNLh0L01m_e01m_fl`9S#0008_Nkl8S%5Z*`@ z#VHVlvjsvFkx`a9VS9bfe?|;oGwCDJaU6@fp0<=0YZrVjbm5=pj-zBW>AzI0$mi{lO+TQ z{MYq1Ut47YN=QolPm)CBd2Sdd$)UXF`Kb&@6(C!s-*Wh>m^@DlfFlEX7}}l!iTM*! z1?XPaullN(^ndP=6W}|00LHiO-p}rY(G2&a_@P|CoK!o1e*H|T0(BiqyHWgX#{HLe zyUrY)01))Y*U#zrE+2VxDdU06~%b z(ca$ixAXHB1QG!RRbXUEPCkw9>bm~!%waU4O%O;20e^AvfX!AHXA`2ksblG#69_%X zk_Sw{{9eU8lub&x)-<8tcyLvqj~D>dHawMAbTQtw{(hUaE9j^K>+E<;o%SUFzD>Yt z#Aw(;=yn9>PPDzK0_*I=B0e#u0e}dF0^(YhRN_hc>3wDBsq~5my6wtxEUzaguMPi2 z1xzQOD}TvN`~!OLG|{3+?EsqbAQECiUfQrJEw&N@p`*L()Y(DJgQ~h%X!qUc0TLI( z`7$Bd5fdW0wF$ZKJqvEvgF<|mklTGJ-WfdL1kgwN@xYdK)u3X&XSvwu)y0ImEg$jp z3Y=7I6BoC;D&U$OT)fT$=wggiJ&+F*!l&^)Zhv&yZF}{lbOHd2VS8bu>cBjiFylMr2#L>}9NiypWrFtG`6DsA@x~`slx>5mRI9+e^)#d;AGD5TU{kVj< scqhR3>HoIoch2gJicx>pFZUC8alCj^j)X6U`63}+ z6_*_=N`c)81QpRrTh5cqS>X|U_K1- z)WWTtN39?ofheC!vY@N#bGi7{ z;v>~h)24zeZxT&g=URCo0ANO$Ui45oYAoVjk|Euwcv0u*cXlIq?ep0M`I!rSvrO=? zWzK<$EDta>=i;t8{fwONG6;7?7tA85y?t52op`r3dL_~yLPC$KkUN>hwhQ22+BYX&=1>Jn?yS2zNvbpxx z&b(5Kx7}|ja_R)8WS5Dz^_;j>-y__pC$172swyc&D_T4|d$tcWR6j^H4K%-s&DLdX z@u8!9^rMd_u2Zm0E7IEzOn=XAE*kh_>9_jEr%$a7u))tDqYN~rcN%W6>1|G-n1@^F zkWv}YHdoi|yck?7fI97#`?P53*q)(`L0!RE&mPH7Tx!dbvb)LB*>^^>Rh+p+9HsHU zp}xBn z5mD6QzE{5-*B7_xfRl%@y&8a#u0<<=vz*DtAG!j+Z6lkB^^RVwbXb>IhB}nDk*Jq$ z=~lHLdXcVtZd;}&AUe0}fWX8(%n{!|vMMuw$a)aJP0~U)F`LvhK-=y^KCP#}IhxM` zF4Xg|>n1}0`H{_Tr_h(594m3ZXKKC%6NW>R$W>!uv17hvzr8!{VpI-2VA=!a_S1G+ zIeOW-{@;gp3;f{kAS)1ezZXax~LO-Sbj^zF+O_$%5os7SOA3_S&k%=}m0m1k|4V+w~36sk)Y#>vaIK;?bD# z6~E12z2lraA)PR>ww?Ds*O8W1YsApgq~q}N|0Gz;2iIj~DgzInM{(tt1Wp=cEsvJi zM75iccwJV;io7+$Q%&KQx`BV|J__4pL-ug`S4H8?SX{nh;e72d4(&DaX8)!qs94

    oGa?Zd#AhJdOX4eaQz)EdP(vDis(_`yMw52-0# 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

{!PL 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 z%0An)8gUa7`e}JHdgX1quCZSAH?!T05Z@tXAM1;uLm1c=>^%&?UU5yoxv=ea!?nL; zM{B{A_5N6JOS5x6h0&uRnr=66<=y&h#M`acc=ox>X zcsd8vox7DW!M1I^upe$R8joLY zW2=FP7G`5|6>c3gPSOZ5i$Yzym!)n@7*xp}3o!uj#@jhyF5-n1ZbIhR+F#qE@dOkE zJv#i3LBOP#o5e4ecz}SpS=2kXt<+6Zjm>?j^YGV{5KFB1IvI%VPm5BfxvY*K-|wL_ zuNubD;pR4dizK1w%MHbwSI9d~D**XV(wLP~@)R9-Lo6tDwSl~LSpryT(q87biC0j| zx-PD~z@XeL+(6hNlEc*i!sM}cm<&E6C4!7NHb#mBE4Wq{?w4RAk7-R$4Zy+0cd55z zL%14udu87P_x&w)+uLJj-{ZUvyoO#wn$|bByw9y1_SFtkv)xm7ziTJ0cr4pa@Qs0Z zCdIWBQrS?Ew|5d6e%={B7OziWE>_p)7oc8@ZFR^Ah&p?&b5c3-a5`$Ol5 zp)Kyb19+dZG|6#3I#Cj3Pw6vj17~p<{jC_N2XDq5#W$$&8%C0r%b>&z% zpinutH`=XC0k=saEMBTXy4tMmvZNx1OLselT8q4z=d!FpY$T4xP74F2iAx!s$JmJS z*WD373wmC=FaON{oD1SuN$^p9+2#|QZJY>O-O^DHQ`wi_e420CnR$#UpNzZEC;oW& zn@?6z-|?q@zoq{#`hZXR$iZD**!{J84^AKW>t=_?uWjQcUvK?2Exp>d>+W`geRTi+ z>G_lAd1zo0vDFU2wb*n0FV(xBetLTTTmSTQ_n-Wx-Zh~AQJW_-T9R5xy!b!%iLCwF z6IpnhAbb?lTI6!h4}jTk@TK2S^hgL{+Vb8r{3SoYEYnC+-j|Dkk*|G-7 z664_kiT#NVx5=ejMj|zY`xPSqNl)CCBo^!N)v*a?cj|-SsE0YsDPv@gxq=MiSi3@I zBFYA9)p>7i{$eE>OCcZJujJF}5D>FuZb7FOJetqpUEQQP zCy$H%LXbkt3A2N>-Bn zkX8Ga3ToC8Hi_>z(01|Vr z_H>NIf>MCe#J4&{W3eEP8DV~H=HbYJf7%gr%)JvCyI#M0f6VE8XwK^o9>MTE#v-St z6?NX&&`hj9{pyczX29O1*N6fnHh3JrW9$KdWROJwF2>#>rpy?OM54b^GWMk#Rdj4K z72>UVmq;agM?{_?l$7}CYY&CDT(rJm8LOwV0E0n@J-Fi>K71riPuTgXjAo~X#M$al zOBq>Qlp_z)o5IAlI@eTXZ^Ti1l>zFpHsxO5@_l`5*VZ-4;%_M&d%L}8r|n3`(zNo*+Fk3q=caMDUaD!lvy$XlHs$1KG zOpQI?syk|PoLl8{zg?w=ZMj;#b-Vef`*0O|5F2NQv_H$j+_&i9*2%cdV3d-tcUEqb zgr5RNb2N{ii~liqJFVv_Gc_PG+t1yqTUZa9ZQC}Jy*1OUF-TgAEN9?VJ8gbat=`9v z_=nDo?eU~_92aQ!HNp|k&yI}Qcr*E5=QZP(#OLPLELjN-qvaI7iAMM99;G+@t>dLQu4DF1Mt72cP&LD(> zzkRH06xp6BxZ|}N+rH=Me9bVLyT`TX)&pRO?N+thPF%gS51o`59>xsD0^4v8R@Q#y zA~z5c`sPe3UO-qNG;=M_&8a%N>2SpjRr%QrVwptig?Y(MiRAqFg$KzfhQgLXI6h+S zcUNUW#9QBW&|`ENS9;YAp+vsOS3MVBZd{pITPq&x)Wx4~v?b#OCNQw_RfLS&6NMSV zs%cW3V|VgGb}Vzl;qju=U*2sTyzf!X3quI+=+iBJXE|LvO4W-b{;6}&-UfXh+NxjMjU)v}^3pp)rKh65&VBY1IHXjmPy2r7(Fgw8XQH?#-Cw__PsP3~Kl2&bA7@@?K!5Y2Z=e3;>F1}XFLG_U z+On=+=s_W$;C%jn{?Y03AL~=VdI0R>80*qkLt1D3f_NEkmZW6qv+il7us^?$PsiTt zx0Oq6Up#naU(+wU5W54H&f!&!y*nY|6L5F+0JZfwm&6`w*0Fe%@A+^q6#K8 zws5p!)`UeoHx>AKw`d5;K`FC^Wvy z=z!H{h;X_{ow36fzEzFZ9|pqq$&H*|Va@Wl z7$w(pZt#Z2BcWkHu*@l`r}*BPhUbC?MZOv;oO3qTN?1Wb;kl!u;F)%6OCE9*bgV zIj(Us{O}Oo5r*Q;ZS848H+&9hB%O}7K-%q&H1W5z>mB1_$k16D77bW8O3`sZ*D9J# zU;1>XaJDd844d!TdbMs~bD*QW$Etif#t~@SE$D0kgmOm<2={SzJ z&fi2-#^;$nU)e`~-pRfq8PEi7j&EZ*kH+DV=r+;AFxN-*w!#3WE7Q*IY@PdS=EijY z9QkD>+ha%ku&?F*W3o@2jt(7`)Q#(72)b@h>#s^{3H%L&M7El->&oCY?5kD7u#RO* zsCynFOWwD~KCSMZ*-?MYmo5wfZ@cQL0<-bACmNQDrhV3Rd$Q2NM0@?V{0hXm23L*| zaiwCj-!5cXU!AWupic?!tRu~~F{?~SIbY8$u?>ITtk^!V3%}l0%q>c(SJtJUIuJgH#bAKVV6TZ!tA4u*eLxA)ffO z2sfDMdABhyhv;ISj{)d6v0pSF4ku#r>8WSQFKo7CA4K~X|rpLb4r z`1|Uq+SxhabZLwyrR)@=DZI(J3@de;Qm>0Dajx2%+6*R`F@LKM+9p-wfV?t3ob(Hq zgA|RhsSvOL03ZNKL_t)>>ogTrz>uksH}p&pzS^H{=*+T?)6z*%pcUUl)BfkCRe8D1 zc-M@9$Fx_rcMRsCi`HVVMB5$AQA1y+wg+*Uvp2o}G*JTU-g&*ppCb+>b98FWPGT90 zab{_^=bE!3FPlR*Us_1snHNfjIr}X+c9Z=ETmG)cHUp^b1wd;m7dlS1e>8)&)Kd`c ziXKa9AC5@k7n>YiY28%XW#i1>#}f--4LPl~Y-~|-PEbj_rCp5jsXeqRUURerkkdJ? z#lUL%;Tky|V2D)OB(TUf+fuZhYy1{ytp5mR{F)^mIQdhAc_EfijDjN#)!DOQ<2;?O zSQXHANW(jDeSVUhb#R9VTm0Wt@{UaPrLGD7+I@X}uS1tiydT}Yclrf=rLRTMzAHbM z8Q=xrNB7>-Cw=)M=zdXsrh;q6XRn^0Esv(okX<+)yWGtFZC72<8n(4+W``O?g?PEZZBTy4Get3Pbl`Y#?kEk z(ag269>$CJI%F?bUV)WXYxhR217hv6^uX=|nX z^zu@P(0KhI2$)J$>D+Sr-g}RnE62Z#-^Ud`s%n|M`JB_kd>%$UHtt9j|Q6 z0jziuq2vsj9D2^%QZUc64YW}{MbP6TehNND4*L9*U=yPexMW<3AmfxD{E-KUDkgIN z5+42Hf@p|5-V9VP?dUjhRAQZTHJ@d<`6HikK6D zs}V(89Mu&|$a??*hU&=3vNmDF9!?>ryfr7Et!w+PTOJ&}*0d!xYth+Xl#vN<8Jp%> zK$zXC>}{GW#@n7`LogZ!&RF(*9YofD&v{F~Xua}uK90EhxZq>n5#TE#>o_|cpIbDr zu3Ju>|MQ#U^Zr5bzQ4DlKkv(r*W7CJuKhEXf!Zy7tkbU8$G#rLReLA;-lMw)yW+?3 zy{{451_J@xPCa!?NawJu%mCJY+pdgog-zQj zoyVi$H%JfSR?d(DDNV-UD%0n>&0xvT$(JRZX?)xGOpD z?!W6#1qh}6ws+mZ?*Jqh4^h%JPOVJ{R-nAT^znql6~4Cn>|zV~j+0pVd!hf^%^`|M z;*M+Jn1#;e8r{OXYZAjJAAjsm{Oj?(>>=Y%VF0@D{xC}+kp>@)!! zM~xMSx@NMmKvJ07de%shmVHJbPLc!<5t&aoe(Nh}QO`mI@MwzyU;6cXMym@p%Zdj< zW!zB1v1f4!XD%>lnNOJ@n7cf*Zu=UO=T+uIELMrA^EdiIuI?UQjxUEQB z!g}}^d|qTeZ?T?~U#q}r zJoW)kMj96xx5sa+AKz&l8n@$yT6c!ni!b+{!Ps?Y7_5JUSBb6>8Z%ALBau=vhCEo# zeu9Ej1W^nTNW@%0VIn&qlVdb+rz2gBwQ~xkBI;vIy}uxEI5mde_wwLORI+V+Y=f(T z0kHRA602?ED*g->&g%BBj*kmHhxrO_Y;8)8iHJA9@dMV8QjvFRG{}SXby|%Bb?`!( zD-sMnPS%Fy{ z@)QR?xR8!x3hjwfD>lhzG~o${p>0rhZDS(AtnRqo4`<-g?(ENQ-;4{7{oh|rQ55!B^A}qRL z(|)?%!;ct|fj`o%QANK&$!z9m`ig8tR$F*`qU$!j+m6Bt=+F+qUcLtUG$J-41>m{}I=b z>}p?qzjBV?{9V#MN2$xPsO9I!$2MrTwZ9!lBVMmwIacl~SSnfPF$X`!p)PED#?{;K zV30JvZ=iFIT90XAJ;w|_{B|HC0?tian_YL92e)Fm?p0r*5#693+`|;D{$iVJL(bWg zt2H^3gH3UNb}QDLPvfsS!k^fYO@Co(9KBv|;YnQ6Nya(ji)A7USI!mNJT-sn%Sp!# z0cKKIm)i6iLBgz*h|xEAlFxxS-t;l;i$O<{Ai>tXWhTKL3CnNCB1y#{RSB7d+yF&2 z9uk&$c$Y-UE;lFw=whA7;p%r`>-LEBIy!U&LCD4-_rS10M_C@+%2{y8c>#jL$v5r3 zarOTSgBvcp!lyiUZp_0CyG(~4HPyCP*_9a%RMc~5npke08JBJp6QdL_pNboRet|+l zo4VYU_CVT%#B&T&@p0U(<5xkVk})F z?%qAUfA^9zs_=JC@87wn{|T&5vIzICyvx9)Ui|pRgNLWTeB7S`&U#8_SbzMzI6c$< z0>1x0{m-Yn|HXfPdZG0L$`4j_P3LP)NwUP*ziM^$0)@ zayH{Uvy=|z7tf!cp6QRT$b9kqh5p6zrFL8G|Js+iKK2{#FfRPa%^BfVz>8UYzs|?s z{^azp|NPG(8krz4#>t@J14pj-@$6Wcc|t}>T{7Z}*m*eG-s{jF=kt|xs=16G@c_&nxxtx_{F#~bmC`zCC( zW;}ktbivbvhsG#qa))D(fkp;_tsLdedXjrQr7};>W00Du95^+Sl+?cMSn$eTVxd>- zJFInHbccO(8%tt$kWPT_1D(%UI}ZASfF<07L?>L1({S}2sG_X%oYw^p*aA(?gw4HJ z`DojWcoAX^r++2)43sQ)rP@PE$+!&}W8|S8ZUgANW-PD#KsnmXbJi!b4^QH4o9L1R z={(@Va~@V7j;vYk3hDQn4bD2dQ(rYR+4txW-ci0@^(Uy~pyCEe3BO}4|BNd~)}SmP+Ll z5<}Qvi#%;d;Prx>(ik-@VoX+eLk^=r-u%&f>;)!H$0~U85fW2s6YR>X?VdmnZLwP{%m(v@Sw&OE6*9q1B)2+RR+R}5;F6-2w` zwD2CiTT@lJp7@nz=dBp+)GFrV@n=u$>e(~iaIa<-l-u!aArs(nFs2+Ekr%8h^_dIe z<#$~Nn;ZagT#&OF~580+nM;9*6W1#^5}XV6}%H6 zUg6Hjnc%8C)mgOgJ{t@_E6Jgkt4P0qeD&4s1d`qeO5Cmg0&dpa4RiR|Z`UzKHXzj) z$1nBwarL!v@4tpX&YJP{r{&geLP$)ZMB61J zFOSnrs}JkW7Hs3(VB|SLuR;9};JOK7RQ@e+BSerJXqckA(4f38w4||R?}G$)W4$*R zj4c2bfPB)8Lv3p@cmy?3StY*s@D1!TMbLHBu#8}ur|Y6M#9xP%-1`>VG3SPFCaxEW z*d@%ncim8o#I8TZmC#j_2lv3_owY1%^ntoXfP^4ZjYMBjN6-JZM@VZF#&}qa&N;$D zMK+)qbHMl#CLLb?GXBo1&n06#W(1JZwKeIqs74Yl3B7PJSMa1Cs$wg?whZ-td!}{J zpzxH4vvU-y{R|I#x?R6bibcn)u6+zq6EA-YbnuviNu+E5n@;rawl`*= z^9_*fXMbAFj`Oe;F(TbXa)USs%DM8hR4E9+1kHYPG_TUn|wx;`|! zg>Ydmw1|teWAvQtxn$`1S^`*4cEIWPNw2x^*KIJgH-!Q2{121|AB%8Q^i`Q>iO2o2 zF=SE?O3%VL9?4?m+5|Q`GlD6z-LO@o56mGdCeCw$d(QVZl1`YCSA>$W&e03! z7qJ7=*5~=Ve1ecuTNTdzJXHJJkG^qwsPidfr~gn7gn20ZuDr`YXW*B<@vYO3pXq-A zKi9v;VC{`{$ePOoh3ER_l;^+uyQlYl?H`?9KGK6q!SZ#IT9fSGUavX|vb>kFxt6hR z^82fuWtyd*y|a&zK-tanfF*=4^kCDEp4kn&U%6rByjtNamGjAYxZvS01wvXua}daJ zIoF%KSrFMMWmwe^-_+RW0DQR}raVme{PSn0$4?%gKKt~sAO2qI0We5^H4>kQ&1lOy z*PA^x_(&W1jF9Hjr!VvsobR1}^*{O5)A#=Q_w>m%SQ*&Fbr%W$tC2!`9FIjr1n~Kj za^%XOFtu+)6y}Lzj)THT{ZzDLJZz+3$@Khq<~gPb%KZd>+}33*q6}mRInxATE@R~U2$OJ zdoO6PAr>{5dzkX35VaRtPflZnLScvXLP?ninQHS;P9VF( zDPv3rw(_HMqh#aZY~9c2+oltVu{6zMyq{Bq*)Vu9k8VQ+Bd%R=XT}1 zBB?LE7mx{KEvjZYsANBbT`F%Osb29`2*QHnFLBvQGUhpdvBS5=sQw4wN<9eOJ0g?WT>ip_4@0E@R7>5Rih+i?Qlwgw~Eo{Q8V@677sE zt;9MlTN)O&ODQD}Rvth3TnYr(>W6sTYkUa?DtQJqy)|~Vl$}dC>uy6gbt?-i-E6JE z#;r2iE4tRRA$vT!ZArgIQt)9_VESzbvfE~&Bf!8|xj~e2ur6$iU8$QV4BARC*%If_ zEy{@zp8dsMiqwH-)4SXvx}mu;13l;55}fO^?}KWt%3*i61m$6y=fth?kK@AXCq&tg z+7J51v?HzEZVp|X-;|fV9v;{S9gTJuO7Bb6OuI0)E$obkc@u@@jI-vk9Qzt<1vl|e zsrI$T80T)_yO?}_TapvoD{Lg*&V2H+qkPx>I%VLBr7(s#cCrB3_E~6P)M%RMr)HQ> zQMK0NLGOEKptmIGC=-2-^o(;o=50gi!$FP}TitOFADtx-vz>iT+YVz#;KNYqsOGVj z_PJ3Vww7bsj_?h1?R9m%wmmikB^*Odem4haV+P>0Bg^nLQ=SN!@2GO@4sDKwukE5o zu^4U!Yk993<}%tfkd`%tbfu=+vmM8Iz|oe_K~kJ8#@iA9xkr$cCRuCbNBcozShuhE zH+s0Lhmv+nD)J%|lf(EYm@HZQtRn_ErpXdNWZbrZr< z%f5j@q{53Vu(l1(1|&~8LHR~9T#2EtZMbPr=Zba~p@f80s9Rb-o4GF`-qvHZ3r`q?IP-BPSghVPugU;f zOV+oDYv-GJsk!Q`o1^DTx|I`*aRs(+0U%zw+dvL`uVZmFw!%5|aI=u(X`_gK9#gl{ z?%lq2E-LI1edQaL{eGDJN;#LIkA=hN+~=C-L_K$y%9xtpm%jYmS3>{R!$<19EAKL}&A=}_{NVKGKmIFS)#gR~ zd5y$%8gDMp{{#M!J_Y={zjM0t>;Fi{9M&tVudgX%pFSY*Zf*5;ihZZ4W zh(Fi1X7WY`RoF$xAX<3Kn%FBG*F5)ti?6??{NVe4sfV>s^nKm3oUm(Ma-xR?lz6ErFQ8a(&m#wiap zh)t+&oA*yzPvdAB7?cH z_)Tn)#)fa}HOxr}}4RshetBLlCPy-yQ#7zsYJ%vf^F;bxPEmgPXTz&621+`cE5 zNL-9L`v)qR_{IcF)yAyG#6V5M=xGx(^C3R}X_nv<4r@P91dp!pBs)36Pna|Fa3Bkp zb;5=pxr+Kebfl-P$VZV+k42oq&CL{S38$eYf5ojHzAeLt`+`~;X5!3#5INhF*b1t# zU+R1Y?xb&xc&d4HV1&)7%o4MB!;D_a;G zGR8JzOB6$(7_A?y_+tHFPw6>GZ*J{$c5mH!9lOri2u5D6w(pU*RYJq))62Fsb62BZ?6=7D;6INhI=EKbvZY!fga`cLGcS*dNkrI?0mt6U#Nu)==6+G{p$ zlf<`>or5qo$4rIHk&(z7O1+MRC|lN;y?(B#^}L4V+b%tp9%V<|aU}BWN8RpYWMimv zT@pl(mU{B7twwAa3V)=;gXJsBVqG@tKHmF2c74cL+l#fEllgo;SL}+5d>3$cIk(f^ z7;HK#?G5eidB)%?sCwK-ggJhqna0jdg}T~+=%Ga3Yh;U>Op;e8mzi}90bGd>*E#FT zcHWkq4VOsV6i*a8lT9=`9o^>H;&LCi%GNeE-KVVwz$BR_H*`7avjgx#1uq-{>6@}R z%mZU7C=z*+;Lsq_j>;)U=C7=ZEiZt?y|y%%F=6;bu8#JxvKo3e=6u?APO7?X(F|MmRXY%6Z(RWp z^*#>6YPYtx?2R1E=jtK34Q7D9U?Y+Cg~57qjQ4D_`mc78W6im~*sXwR<YE;QFv*pnq#kaR>`?a3F3f&HGW4sb=+8zByxO753eJ`qx{B7X?03ZNK zL_t)ers#Ye(TLh^yEp7w zAj@&SY2Rf5pPLnnM^R3y8gs1kI(c9n`1%2?&-I*eg;Mt}U;SKmc!&C)t||WZqmNXR zM=oM6PM=)9=dXhX^RB$hz?y+i9({0n{OqYd3H;bEvisAYUPS8i_xX!~99=(h`q!?-k=>0(OesH6fe-~Gy>BdgIDibzwHu0*xx$SWPvw6mZ z>@U9eeSPxx)6-x4+aEZO@4x@>^wBpyGNB(nX#b5_g7dKuj!oXyn37BK^IXS+yZV&> zx4-r6!Has|@t&M*3kcCI)1F3Gx;3X^hvx6DgBU5weP(!7sL^YOnafjcSc=3K_Da0OU z)}5o!eH=8_yJkM!OB_y4#*sYS|ym;;yi8KGBmVH!Akjl1S-`lzyz-)fZ{3;|~?w=tZEBaI5vjE}2>aB&X_iJjLsA*fK2cYI6)3O;Z$6jnR1nQLcg(w*9r;2&MKJ81=j21a)aybGE!Apg-1CM^^laQ~=^@ zpEkhAF5Mu!b)49FEW|XD)p!UpSA!qXf^&ClmccKwBWcvF>AHv9o*tm3E-CI;^-Wnd3=29IuQP)sBlFei#oF!V}3*5w`Zh8Aa z(Xs(LXn+T|+5wBLw@o8Rqc(Eji;gbE>(}xoC|T4>{ge+p4V*}2d-_)tU(cc|8pr0% z6$UqmZ}NAgIr|u4h+rOT4$#sQ>a~~yv!A5sD3)Fu{!Yv#Z%nZJQ z5>Jg&^6iP2chiDx1SdITwLnEpN2hk8`=MtvEoV+9TVZe=HZoI(vyQ^c#c={8~v6Ng5c0ixd8IY{}!*g^7fDJ+G zrqyaA7*BE&E&Qrf6O>?gUP)wH`}~p+=Tv0y}YbBY<=G*PH0_dJBo;g93`Da z=U)0~DI0i1ZL(Dw$mplK;mv`T@g!&9w!VyCMYJ()(y9ZgEs5o?)=1`}Jumf`fQoUk z3o3j!UQjNSKhMoMr&rH+=clKy^PEhp*Cazw7W7#pN2TT(m0>GJCTCX7J#;~w;Z~lX zTKg!fb(Gp;mUWykb1Z4g9`1e!y{}z2dfSS>G3!wlK77xMyXm1LTz$6;RQ9-u?^q+* zYYW$813Vg&Xa}WxHR{alT+lvC(_9g+BWlxaR*|+%BUXV&T0U}|;Q)^X=UNr(3Q$!P z*K9FA!uI}C>!sI?<6DDl94-#IN_gf&0`rt&a8_Rx+1bplkI@3w*Rwis#Wzssm5;kR z@m=UEU-NaA86W4qhx)|GH}nZeJ|J~p9PjDxZ`^;ct`iu*yYemr+YEg2{)eZ}f29BS z`%<4Uk}7*z)-<02ey(e%Cx7w1)1&|8e?6Uk{nzS+aF(`S825FPu(c1t+{?U=lD+eJ z6|*nPCJ!<6hCf}aVT)gOGe0Py&jXYCyU@cGK0Rv}z@ZQxn=bSb!pm_3u5GagiDH#- z+4Iyt!)`6VP!CSK%2>EgrT_gO{P6Vs@BiTRV?6{W&j0WK{qE^QJpjIU|DN=P71;j@ z2FFfHXA;5=*5oGTxW)5}AOGm79vGZX5A=}!@BjV(^z=Kw{l6!_4n%f3SY*y%5wOP2 z8&PS)L$2q;GQ{J~B=Je~QgDB&)p!Y1Ix2^&0}&5#9bv^^y?~AH__38%xWPeeT63OD zVpBf+@RtJ|Mcf1IX3uxd##U;LIcuy>Ef}~n+vEY?NO-)AIvS*uJiv5Rg-{z{72Gqp z?J+q@bQ!BS)v@O|iIF`Pk>n%SgD-w<0u!;T0AoO$zeAq}uD|u|Z=LQxxIF#4AO7g{ znH~c3f257Dkrsk#-&+wO#@1px?_H6>l~22d7YXN<#1F!Rs>wT~vWHKGJ~x}8V5+(p z<4*bZ*d%Z*8R9rsjc^FutXU2nIAc`{MiYG=JWJ$wvCj_XnWSqc)GEUCo3pVui^h?C zKwaVe05;8XhhF!*+8?^)`aoI4cC4!ojyEenfL(G(7+EV?%dBDjp!c72exri`e#4m7 zIp2Q8eB_6R#KI2$lB%B=U{0HTBo8YE)&4;$2d>wj!y+ar6-WHn+Gn($1A^5r)GB=ZIri6gn+2?doisou zRSYIc+~!5D0Kz3Z^@k7pZCe`>fJ=Y-o4>I^lD2UTJ?@cn9&MgjR?KL(CDgqwM^2zv z;d87dH@ocZ#G4HnDCa=6Ge-=Yd`$R^q{eP%3EMhtlB?L5YMQ&X8KOKVO7hvQHKLty zp^JU5?2*RLnf6E!pGnS`h^d(&@#$75}diQczzY&P{? z_160x%k_@QfW}<=JNw@4?5=11Nof|7PUAhPs9-Ip{I$fw`K?T4$SnY=l+PGR!SY z>!)reqb=g8IaQAkruBL(pX;Y%DhAmdp9_R*Dneb_>czOWYmSD`8M1Bl0GJz)PQi#4 zYSZ|llUHE9lA_OzqyoWC5t!2(1~G#mfM)EvNL59WAeTY;9jLj%u}*${ORpP&TubAR z7i@I1DP6y_xl8iPJ zZbsca!N9!=%G}%9B7V4Wj4JUny5?1kATbSN@<}@kVwTboDjBpdPS0de4}Z%|54D-X zhS!dRc6xSg@m3c^Zx3_?*(CvYZ|9}Gii5Rcs#-I};dwo9F$gz}jC(9-={#*Ybpcl6q56O_UAe#UD?lqs<~ zU=fPN2-ReX0+EkKba!ENmwKUbyLD2 zd)r6q4W9!O!t0kRYlHkvd~;6AA=#{V8%t@2%N!aoq%DkPrq>jp zTG@3wUQ~9xU`+`gSy#062Uf@Guqg|5UNkO=)+d8__$x%2Q{U4I*5AH&|MWoi_w@qq z1O0t;_ulE7_w;b-O&7tq?);w$#Injy!N7sPdCwP3eFAwflq(@&*3Le zo}KQ$$NwPCgOT2IIYwYhaV-+pEi4UPkgM4Ktlw^sf7#+xh{R*zllp4^*`NLE(|7;u z-{^k;f9^;w^gp^kfA&ne9P>yCSMM3NI_zT-W>-tJc$<3%wJqd&J~<^@#t^-nyzrp(T}8SN0n9`B zelX!6V69^naSDY4ZJ0yp{D)9Q$0pAPGTFp;tquFtU5CELUdn{L9s?auX5RNWS|53c zEi`WQV>@vZg~uowr2W{74m$4fVCv#F_jDG;2)h*Fkz+&N)b#lZB~XtgHlzq|@k*PL zF}~A8bw4MLHeIhjkVWGWsl%rh;iRxnsIsAI1>8KuOQf7l82iW#AQ>?>Y{3w| zD&;V8^`t{cNo^Nw3|1}UWWsl%0961GoNAdRhSUfqWse9O(29;v+>$)mu|E*6?+Wq5 zIg!}x-)LI}m8PR4Hh~zIAJ(bS;o6UMy~gdR{LBQ%(BmQ|{7@7tZ-UnTls6Y6VV%^9 z!T}CP!DlSN@Zb<8zMv}d_`pNvk2llsN8Gs&rtSZqD<0<4Z-{UlIMIVh9fM!#-y7vC zvh~S%?Nh{?k~Qr4b{NR{Hizem1+2d49Y20ht1MA#L0Kl~BYiUj-%jxC>2tqX<;fF$ zla_pX9F8yRu;Yc-ITC8DF-D`D9TZg7SrKDrG_%t(s6 z#uUjdwv%!J!;T`QeG&WO*vgU11z%=WwNY`JMC=`>#mSm4huX@CYW9wRbtXP_Te9`l zy%~E;QnwZLRhXTHpcV2~ab+*O&E9pxI|Ah0Zryo(9qLGjjJ-=`L!Pxo%I8?X9+j)) z=h$&g#LM0@TP?YZ=v|EnswZT$P3-qx>gaw#68$*d@!c;@wWT7 zt>Nu4!Ihv>Oh^MSI%zTwM|x^4u&Iz*yQ8A=K<1&eL8lXhB&h zLu@HH#Lismqo0u(=ZDLZJGi)ZoCCCxU+b5ix0o?bZs6w5MbuSZ zNat5nBJ&n!oj?|AfoqLA7XOb#e?+R8dgtkW@rx=kI1p`GkCgVbTcVOYc5d{hO}oF= zq1v!-)Y7wZGCpb4Kci~_HQ~9WlXcdzecgs7cm5*FCIhZh&lx7mNkBrrJZ9TdfU~eqa0&sf_<%k zY_gZjadV(b9Oa8n86DaVVK-_NbgKy`r4i}XwuMgGMzeI5AQtJ`Y?@Wp?SvwZT|A6A z$2Vd-V5kY?2-qd~>bna2u$Ij{774&PVJMrW>f&#}Tsy133LBB}#2ncXZ7A0m@YNQy zRfb>UONiwqp|;+~*{qB^cP?#bpE|$Ioah0JI4=0#zdF}O&I{W5T#fsggSfIok(hY2s9@-lkufvhh5=tbe@ zdXfC`cfWgj_&dLSy7z0petLF?hYu`KUToJwRHrUUN7yWDU&mU)Iw_Uqdf~kuZc=9- zHetAcdw)pH!^Ri-TIjpH2<~ga$>k^)=XnSqY5N-y&4xml1>7QNGeo{Fy^d(IoVAEQ zpIpxP{`gP+<>}KO{aDws7ye(pca^()+K(PTetddQpW4OOg}&}njWPB*K!|&ds$3D5 z#?5Q?Gby;NN9HWSQ@H%a0DlRp+iGUECkBB7Zp&tIwM~EzOY6}NkD$blplwlwH5HnIgFeN;V6B#_% z^uuY}iW;4{6sx+4+tPHLM{Cf+=SX8`2^<%v&mKQH-FtC)dagHYywKO9bFT$A5vEpz z#-@N4!v_q0n>jl$8*KuUl(oTNOe~Bea(w+* z99xG?9z{w%7==N?x89cOP?K}^oxA!!sZTzCc6$0b4=V9dR?_p6m>IceEUbDsnbKg! zB4RDcd;^=_thhJgAFc{`qF}&0pXgID$#k^)@IerSpU{N*? zA+clAm(Fjp7H5ScWFFSqmo3%e{~8;wN;Pcck$ZRNK>Z6{SF|r4X7k{-$A}+4Fqf12 z_x0@|5AWO0%OCRw9j&R_4`Z+R6<=)egfIQ+hpmeQjFWNrPjcHTCyuG|7rY`Q2jm|d zWL^x-#)H+^Ge+jeY(cmp9<6vFZeL-Yb_t8ke~% zw^gC**z9C=5aV*5wxTcT{{wsKuATNbPh97^}e6xT5n)|lV? z;GQL;b=+vr(ROcMi%zQ^BWtNboBQ8{ZCbtNH^Q%Qr{kqw_y3k3hu+yZ*1k>Y8uLwl z!CpVEn;4Gty;_fS$a;m{guBWf`Oa1cmzM00bJwwa^>t%Z2cfoZuj>5n?yBE{yYlHa1ERD$J+0<>rH2RT79cMPeI^Oc0EmIYdw3-sL;n-j>FBc z-;cX zVO+N!+AsHJ9osgJ$m6UT+x0C2Yq;w8gQxw`&b`9|J8aq;8=0(;WDT^W0L9SjV}Gu& zTETdQ4bJ8`bblz!HE#&|2)E65&mR~HKKhS-wT#)Y93XxtbaG<*-1AnL`Wz!^Gm@N&?FVsi=zQ9kZ^=YT7v4-(mF zB=_v$FR|r+%_U}ANI$I0ci(*5fk4RtH&F1!4-Hr-7bm?yPR^!s*H*XYRV~xFF1*J# zCJOa%5}3CmN^57YAgf?)FAQnU@n(J`#T|dw*;y}Jf(5ENJFZN5G0Y{IYC4O0&KbXQ zy}w{;OBPjg7MZG{EfM_=a&05qW6R`SH8Peg)%-bQowKFx=02s~>14#bQ}ur1{VQ^9 z=llwk;{?*HXQ$mYDk~_x+ibV?wK{5z4tvL_0eMVqfv0Y-@l}3OX*{uuDR|cDV7|67 z*#k32S)A*NREpkZh^q5(?6OCIQSZ${4o59J4-<_!dy?GoW`YUQTxzU(P-}ULU-;MrnS4-L?XFj(h2%oNShzEsiEw?TTzu zH7+5w-@S+J@pI=JzTO|#xQco_U?9d3XWC|xtZV%9wUKxDX@%Ab^!iNC>EFNq zP!E6a=##+u(~GqqT--Z-s84pxnf}OH|MKxxRbhPXV9)UWR1a7lo<8~a zK0bZ$;Uo2B;k;4Hj_+C4KGt!^B|XKQ$_-3-fc`?C6zjqZryuH#AiwxazjXRn|LXtI z7>P!3KfobBYV+^`Vd?A$jLFG=Jp19Mk3rp6Ty8?5`1}{oi2X2M#D4fiA1C7C(E;w_ zN67rjk2F?*B_?9cxCtd~m?_0!&N3=&9tZ^m&bA&y9yVFyP}l?qtMBa;K$zQ4^ghJd zCb@EM%9dy+i#(E4l^!?uYtEg8R@rZ_TgNC9;-sCDx_hOxK5Jf0*?jNMzn_L(f*#pr zK#n2N;2`XvoDMQ-jH#vz$O5%W0wb>37&Q9H!nzmF5Bqt-M>72{K>cdu;7P3{40G5UY|tOaRpqW zh#zchE2l(B&*6CP)mI?7kH<>I1n_`|BYNVU**1#@G3I?7$BKl$?XzC6pdcjS+fMi<;CZp z>kUDAg8}R1@($M#;mBG{ob0oi*YYDVpH|NP2!GG=hSLLStdV6`a_hz6E_^D9f%PLf zD(7)4zoTQEj?lp?*6=I$&dbCaVE(W&!Q_!#lq4M8OStBt3Cbck%1f%wm9%kgo^?a6 zx^xCCg3v|W*g~N?G}$ZvUvK300SzsC-9e>yX#mmI5hIpHHV60ssWeCew zT)j~(TAJn7>v8mF+ylKGNO{9o2=>wM`-5j#u8r1CzpK_G5@h(w!C(t*S2)vKoZo?SX zU^1@e%=pf8+I*XMAU`PVk2waWK7jmGMV;>)Lzhr`kc;T*X0L;*5wEM^gFjp!zE0_} zV6*0({;FH`wBK&I&8m6bh?+CUR$FTkzh3rU*XP^B&+)};_pgd!uU|9KI%KpLow}_Z z%u+9iA%304W+padTXN1)qb$uKqj8nopjLLhT5cRmF{5g~NZgkB5yKbD#MbZGab^wi zOSacT*4ifS?&n@r z@tcvMyNNIUk4M$qXdNOeB%vcIBYg4K{SqVNy7Y=HH|omzj1vC#g%$n%JT@k=%sIf0 z5_#IaJ#%D5=Pj0P-!?0c?s<4|s}tj!c`mZ@tB^?=oh=CzaqZh1wYfoF2NbPcsu_MY z5F2StO}O-YPcnXur8cnqMxI?9&s{1uu!c*gIDL(%jXAC8xU!(~NshjS$5uBkx-ZCA zJVON@LiqY*u5t3cR!CL(MH3p_-&iQSs2#dr@Fo_IDU2BU23yt%#m552Idom+AuUHar3mPByII~=4@^jUV5 z^gO)Z0Y|q3L$J07;9cXI43KZKmdtgpYbkm{;8?_TU6>>0y}ARQNiS(t4Wc`MTgblG zdu8CaG+IgK4m71Z8DTMkHM|LqbgbbegkJX(`+BWoe{htO1ZL9NOq@yk63jrkF*Zia zctx)5$vaFYQ_by)cajib*cmIpdWC<42od zN33+^f6S!`7Edcl`Q29GvutTLW+Uo#XU@#yMlYig$C40Y1?|ven=xXUR{NTDv+ndQ zZaW=}IUYw$gKLgt21}pXhD~r6dayLkufp)sCtvscs~>!Hx-YT^`s!3Z4g9_y1pWW) zz1y=~Np{{>z`><~z5qSV<_tNc6=6yak+d1%uoVi2AM6O54-UQB{}2BjJHpS_lN7dS zg)g#$v`NvTM3L&DJXcQN(Eu8NzTfw)m6>~=s&fvyf$p9jirIy)Fblf2t?! ze(>Jm`v3iZ9d7=;|Mc)E-)AZb<`{2Ob1m4;mNwHwO|JC7$yA0Y4GHt65W8Yt=*-gB zHlaK_eDd*w!_C`o9-jHZ5U_$aHPkAzzDXL45RuRBKlQxtVSmW(8>cyY$?ju2Uj-WA zPv!St{>5J%9_njUZ}_P?B(Liere}xmzWb|(8~V!Tgo1x8u1R07GrjOH8+6*2#s89J zv8MSvseAYC-NSGF*1vyv@4ff5D8|>Y%7ib@X=q_YZ^RkeTDeET3C1s%#*CJiWNm+1 zREw}=m#>_)tn?UN7OY?<&&UZwFK!~9YRqhp5PW=7!-HWkM8k)T0ebqs&Qm}ZfkxKC zWm17h@q3Cg4O|w0P(hx>9sM&smB=j8WDek$trSS3<$eKK7?u!33CSkc)?SnmcYB^d zCX%@w%5gW|7FNMXFtXk;LX1T06!fi0T0_fKj@PigxN6}*h-6(?638qQhCi^2 zA0o<*-_*xx{BkV~4K}U}0O9%=VtnG&S0l?eps+1PPlKE<(amDBO*k;|MXRh>oTo_9 zMjunI6=?c(eikENn=JeGl^h6#_yx`!L4$?Gd>EJb1ZG6)ct?wZb{S9)J-vJ|mA@nz zhY_G&+SWrCy8x98IVC24g|uzjxb48>X<Kj$cm(Bv1NV>@#&^S+_65)VpS2C-=*HER7P%<&}0jtAAknX>-l|ELzDg^M4T3C4O(Pj>$$T-p2N%oR+uDCd9~Q?#E(qo_E_eyGEb(#@LZQa@)c< zZVR(RWo#s%_IbIjmcQNb99F@IeuSlY)KnWAfXuIy(P+ZPk103UM;kpid`!74kfR7+ zJ@I_xU#$;(Fp-}vn58}HF`JxYt#N!lk?-b57tF>#hW3j>>lhS|nxl8Ml>Gt(*%9ID z8q`W(+owWm-L6l`i7vP;qIy!>9{n%SzalF(7Sx?ZjduJF}bas=r};MIB{vaiKkiRF_BggMRZacWlkWlx{m5e)=`J z+tx(b`nQ!*Pe7J!@XZ)Z=|11gD5NLFNuRQ`Vn0#S?qefnXj4z!&JJ~#&{jR>3RppJ z3jj_0);?K}I2(r=TfDYqp360sz9f$ItyK4BKH@WYTlpC;I>?8=rH99sA3Bre>_Bml zJD74*m2c3v%W9H#GHy9S$i+XI&Jb_i@y=g2m6$LKVAeSuO8k=mrVC1CfXXQ=uHu=zGBpOimO zZ03sdJH*3tV3`XJvh@)IW9bJnaT=4n=+7eHpDR0nbNpW(!m;dha>?Potd!^;N3dQC zuOcq3?MmwWD)t4_9+nWKU(YPv9=9?9=uGJ-yb@ z7qQXI9$9&`u(ZmI^E-_XovSq3t}#ks>;1MDXC=MbYZ28njR~K|3cSPj6e-%MjO9&% z4a6bR4Ih51W1G$RqIH?IIt!JKp@UE;IWfjB3B}bY^;n{tvC46qb4ZGCdOi)@Vo_B- zIp2(w?d3X1nH=^S(@-t2;2O;a;&7d(Ou;wn%Vya}XibBoDWA}ZZ#dw$m-WWB;?!bm z>o6u~!utO0I|qGSe+P#IQGIza_g=Wrf1Kd%b zq>n1>^sCE}1m9WMPHfK(AARug;Rk>9{~vz*lb>o~{mJ3x-CLFh_SS3qz3$gulWqOk zRPvXnBxq}qf{WpDe?3xQ%Vg>CJCP%o>a#F=`}Xa_TW{U-wKLz)(>cd@rQbPZ9S;-! z(4d3mnmzXc7_=d~C@N!=E z`B^d;V%%H{=!X6vlb`k8%C5rD%U7hx*q%txC65W)QX5jd0YCiA5A36(jcq4ppBE%2 zNdu8@5S$q=PQeMy3v_DRmTGc}!xmo^#eu6uU3G@|oLN z$0ac1*(qivB^KNiCD$ETz%%ALH2EPs?=2GN!wx>)iEn+}y~b0X$h8q{#%KJ3Y{Uwp z7hVfNs$kN~{$~4S$5{XX3+0O!J;61NH`Zgzb`+m~Mgsq4(omN^dr~rpu5)HN;={ha z(Bt#R8d|>kSw-@r7|U9*3)}wACtUp%$j%vy!^Bd!(&bNt;JOd8@I=dEEIeCv&3i1- zM=ri~-b&N{(}s^P!6$ykH}i9yFoOpFnb@Xy zBN>Ag1>7zk|L&+pbW=R;fGT=&rg`5&*k!a5clm>VwuhCV#lN&Y2g|_lyG2P6jz-iz z(>I*9kFwt>opbD29S$Wb8pM(|<#mNUZy|yf|@+ZEB+cfaQ?ydMR8`8qXrMwC`gFngJBZ^?VN_@A$N0XXaC>(JuF6%c{f$s zz>&Iz${$Ot?IS8DNsZM4`~J>HiLI6_txcrDSvB@(Sb3zMIADy~Z`ZPy9dl$A+9YVN zu@S6!w|WzP#(O^&4CBRkTlBA|=i`=4pY}Cl@Kt*ESl92fbiVhwJVl?Hm$rc1Oo~%B zE=BqV32ev9hrWGS-ymRwcb1Zw z%KOMmQ(GzwG9At(`D`PoF^8$V{Q{ddbpb$T;>6z1h{@>|parNV`h8++iA}8-GVkL| zyR?y6Iz4|uPWY#tp9lHK@Wv{oZ9rYyX6`o)6oU_B|(ul6YWrX?u&xI)8gkwfNDx;I{k9ws%yoh`Dfy1B~-^y)oz~fZ>;4 zH+3HTy*Kacf<;dPYw`D{o@{yZ?8b|K`nPS`t~S)2FVhfsReq5(@TQ&ue(?C=;qk*y zw5w=PJ%6=Pn$fZ){@eEs*Z%ZR4%h#q-}S;u_5JfGyA9o~3@uYRWFxP9GU70Mf)^BkGN=;*jlhvqdDw>(&yz^bDbHFWy!r$cF8*@il_oWx+@q4j|ZZ zA@-~zy;w<)Ec?FB3BY^x$txK8N6PXBrk@uXr^Wr3Eor=R-l{22u8?J%EMFdmlQU@j-0H z&9;%pE(`f?(+e%W$uAQGE(86I0?_8T(k6!ZjNHTyXgKnzL;^ZGWf^wmO_b!R^(WmF z$2jdUUX-~7yYNMfZ^d=r;+D6RlgEtfIHJpzF-U>8crG7^dzf+GnJ^BAU=%zI1EZkq zfB2?gLUY->l>xyOu}lNimNPfgo$?mYW^kpNIe;nVP7V!)RQ4TP*|4uRSaB6(G$uZ| zj9x3knr+8j!RpWuf4Z9zWF$z`QW^DAeSWZg-5Wr z*M77i`g@t?T~aqxt8WGpVl%*L;Y%=II(zkLHP-%}=hv>ZiDuROrD%70s_yf}JVVTL z)W}Ec48r-`dRmCwqDav0dUT3*1i|R1=w@DFGvYANa()=P?cpF?+Sng2H@nA1yRnZ) zvErP@*Z{tuPWyE^+}?9Ec|mU!*V+)zQVTdvQHLE*3k=oi>lMH^j^AOe~L6b!Utlu%**_ zorBmR2fQ+#q4|9mi$}*FJ!haf;m0T~2)f)w2BsJ^nNeBPq$3J9`?+FP#m#@Z<{=>w zV`*yy1EL!`lL$Ppkzm`uwPts1PZ!#%pZdvR4Co)aUeQ#ei|%Qj`3(pVk&{H4IIeb0 zTXZo6kQyNLVu=-P1X{f@R6dGgyRe`6>0xg6rHxzaa|>9OML-DTG;M@7c~b39fBQz1 zD54b|@k$u9e*eKfO6Bs zitS#q1g=!|j+X;=VTWgZ*-K=OXi&Ly^wBn$qrz1se9jyPeGjTRn(lx*AI#u`MMwJ(9S{b3-z&PmJq*oXS!N82#brVB|GVue&jqgx?| z#@2WnNfGz`DLz|Mrcy9j-CBHY(pvkt4ve81Zz^T%XMfd&8vSlbpYs>a3>7e|(>Cnv zpstY8U*xx(7t*sQ{l@D>hzQzWT+;EqI*>R!o@t?nhof9d?$=+tdw5+ueyZV)p2~bp zZ?JwxPygOr7K=*b%U67g`>YJNqx=SN=laWAc!lsaW`L2sfA{snr+U)&i57c%I&!_m z{`ExHSdTyb zdd3r#+W-1^iPWj`_z}MatgA`u0EuS;Z##jm{@@C(8JW9dn}*pr_M@{c$9$W|U#>Jc z_6VYmKhBe$N__a~!^5Bb^Z!r3U-!U(H*eok{`hKVy3Y>3@f*MC#gO*WySw;L{e-_9 z(~i!9uiw}vO7yg8mqFpCh2Q^u^0*HQ$uM8H_xjyChu`^~zkB$@|Mh>%cmRnu0JT?B;S+yB8U7mwm_DH zXxs3@RK}Z8KO=fp4GCm*3cpKYW1JURXpLHi&b3u>599-eFaih)% z1ks4U_Q-i8f4M#&&)IkIR&!{{12Fa#lY&nU7)#l4JQb7eWlVD9mAv99HR(<{doO)x z{=;pxAz>}Jv?=Jp&?^EaL1{!aM-MY#+Me>592z)c#+tT@C=JOt&zPz4v5$>i81^|d z+h>DO$;NMTpn^CwHG(IvtN=5OY{jS1F1C#NCRKkSOWUaCPt~+yBR(Xz#EK8GO5KHp zeESS-p*P$^?%mTph4T2|v(NmqDPI_V4P}5FB@XUa*O>8MZ1WO1 zg~N2bMCxJ_-y&}2ejOJpt~uA6kh*6==g$2mZbjW|IoI7Oxvp9r_6d;|{Q`BJU)zWg zu3}}QaL(>L{E#=!KeKQ+YySSw=KCTGbMCLh{8ar$w$|9zHbHlmT>BUwiZg=nl8ZGs z<{Wd(a}SjP3@A#gH0>gYmwWrpaq>SLS=5sI__L6&(8Sh7dYMxV6g%CUye+-?$Lr(* z-fH)hAIR(zw3luEiZ^pMz3|nB&{Pl6ZloULG?m8u?&Cy`A^Hkv|9%cv%`C9`qTRPJ zzIlt!a?Gocaz@v}G0_Iw>BvCM%_nbyB(auYqUq)N<~Mti4ni>vX+#1Lx2-7CzM_|J z^s_0xbnsb!om(fxdQrBQ+&BRoL$U!?eBpKya@PQUSk!$n>;nVzdPO~*-Wf>hQ{mHx z10KHgd((Nk8VLN7KVAg3q$yDCqDWBvNmtc&6H4J;fBH~Fe)pF*FR(!ThzWs4HmYph z^`HVnN5wIunSQnL4`0v@?jp2nIxnKFSR+@)*z&gOSXs-o2FC178T%!sConP?Hq4}1 zdeG>B)LS#$XES=9U!xcNfxVF&y2l%_6&`rOoIB&Raa{kKL+wcLnD)Njd)o3X`=ug1 zsoYi;r}mC4{S~J7<(dv9RZ%ggfE0Wvi=74Ui!|edwrLomb2P26uMNp7o9P2N3PD(m zh_>MqoLW{5bxaiZx}&+%x3 z6JfR%r4}=(B_MXYWxIcjCz%b-)DC&aEJ%Fa>zUQ(D{{XIl?y&zjzkE;IAz20vfAhh zi!m7E3d{KIV}VL`$drFbL|j|@F>M(%Cl8<81j3+Q4NSE8w{sTJ|pVlmqibZ}Ens zUur!4>)+b7M(8*6#_@mr#yvd|`Ak2}d*g6R3qNnDzN^A+6F{F&n7_7*zxV{(`bIKuJuVGj3g6Se;_*c(KH5*^ zOAELUA3Qw#(f|4X9De@62U*aS0&j#r)xt3M5;tzVR`%?rrw{s1^gG&THzKPaGj;4S zshn~TqT^aVE1GzoO8&7Hf2Hb|f#er*_uqN@@a}iNOHU>K!6#N0pq|JVl+e9*|Nh}u zzo!LY9XCGu@RP&s_dhy3`1CVru?VekwE;Z=Dp`*r`I8Oqh*-dSs;5J*Kf#jnCv4|S zviS{BeP%@a$(erZxPLFzxw389*CI0uTx6aY(Zvov`(Ly(VTL9PHlqzI>GFYl1}`Xc z?*J3N3hnp`iLXUAsM-Fy*|x6;Sp4Oye*JZm$N@vX0f% znto(EQ3FyoD;J2^1>q*JMz81`2U5vHVoIH?rud5fG+~^A~Zo zut#w&-JqivRMt;AS;|4yU zFFmdy@W(~?^2=blj?g64%YsB0k&^QVbu82LDQ65BNFFrL`5?A4hM)BL5DEAEy!6Xj z7{o4vtaxpUwu++gmh*vKZQn)pQ_0RFk|~x(1}NhOA#qF@_a#T|%68z#9=`W}6i>tf z(|#g@XnaNAt-=dba_V^{QG9{j^EJL1rReN09JkAwDqCS}WSHYB1v}p@z9oBrXcz$Mk)Q)Vm8`EOj#`UqLFsu%-jiDwgoFw9G^wgtM@TW zklT(g1Y8^?uJl~B`-!3AMGyo&_(*BpWTX6r*uhMJ;56OZQy*71tW~dMk5w_{k>2PB zi){m;z3sQXXdgpALKB>iQ3KASb;346$Lz=JpznODxe#7&Gaq^!BhubuLhYrCR*%O- z5T(YfY3G!NuLU+-Ph)f^fGw@vqwX&Pm+|ewE|x`I&Gw?}EjPW30HW8q%(0;5FTy-# zN8WfxRVEc!x7FDX$8qIBUG26n&0Kj+d-3%R-AAw=Jg?_3-jf%NctQS(b%Df-cII1* zx1G1^v8Hwr$G*?C`+MSZX6bp=+tcUK<;S&}001BWNklliLQejV9^wsz(|2A%zF z&u?3BXPcz7B**gSOwx0S$Ft{Bc~0S@?%S+3t|d`I%%#o)ai=}6YcSo%^L7J>^JM@w zh(&zXNWnV>ZQHL)Ugfm(O{g<>kjs=(Ro?P>wY*Ax(bZ;-e=|> zS9-I6pK}~OQOZ9LO7~NvWg~AF0AMfu=AXwMiW3VgwWtw(OW|P|%JXNm%oi+w^ zF+@7&7#ENU$3g4J!ER8B$Q7XU($ajgy#_yybrq`d%EA56+k`;6URzheJ|^S%3UJ-G zhwR>o!H}nwhLDy{<#VA7Ei1v0P1~+^VmYp{!5{LSdlB-#*>BLvSZ^_B?so3S2wK(J z>J9c48_%V^3S++es#z?^!HTCuh$#X&rzHoR14jP#aY+sq?PDxiswLKtSV{u zxgaXgj-%l6mSg=Du=9+qoh-2!n-ff&6)ETbcD6@9gU<4W-V)T4dDkDaFLHd3eHMG~ z>8Uw>8~C=~sJ<=CdwOG<-vWMVg+*W&MX`zbrCI!D0yB5L0IWC9`^m*yS}glmA4cQd z>tEpV_MJEM6!4?NHT@RkTDWrjoW+R`-akD1^M8K0cIVdN?00@!^HJB1T*ERKxegsl z%n{{@>BzMfU3hFnW6d0076EcTG@p+1G)>;-@vA=JaD7KA`QQOOBVCB!I;stxAdNAarvpAevYG`f3B>t0IWYs7I=WZcDSpr z^M3p7w-4X{jqe}c`#1l_$JWRtCNJHVO%_~u+8F!(tzIn-Grf6Y*^3&Ct)BA63=29U zV(jol`q%=|Uk|L>J=h}hAzE&>2%o|BhY7&cpS{q=W8j2p4ry-rH$+88CLat?TYQdt zP8zn*7cCUES)4MUm~gRgE?sqGBwmKkIC6hv73JHD*7ypb^q@asj?qOY)g8^K)9EE+Vj}(oU^R3G$@H1Lcfe?3z#j#vYWfP zI0#wtedx9{l3<`z7|7sA21NZHY9;h>Y89*$SsC4*Z4+*5*95BrcXTvnG0xh@9n45K?2PC zB=NFOLckL3yz&7leDT-PI|lh_CsU#G#P5?t7d-EC@(&+p1a>GsX&XD(MBZD= zLa{H{M9R$8jUM}d@uy*+2%9#p=2xC#NZkZ$l>_bB?#{tOss2h6f)1=to-Zk_lB?CDK++V3T<@ z(P>3`(&$slQg@+1TFSyIDgyPMrzwe9M;`S!8La@(4(1-I<)C-lfZFV3n~r~b*~vTB zs%aILU|W5>PkBt~LfUHow4W1Vm7mnKTK~9A@58HBYe0kleEC@IfW&L1f%@W$zcE0t zeSG+$7M?%e%PhUX*bC|fB3|bFFEPLO0v-F*?0tGo$dp*AFTZ`!_+PfSbsU>x*2d+F z_Mk*OC2}6+&tG=^Ty>qth`A@o1KIUmlz-!v__I>=-)1A0}l;uoSN1*We|KRgpO|*>c&Qxp`*XOfd``t z*m~E|#-Hhp8(;fD$_lN(Bkf8KG@qLrTM*k%-`d~o{8l$NzFTrEC@b>*O)uVvDm^#I z3-Mr58!CJ^k7$UAg=Vk^p9qvo0r5w%zH0nq>p$D!2Dcgr!be0K=r;~}qf!gNxuAp| zJX(=+EA2L77XB2^{rGNu`x(!mE{Il$ho!qMwPwl%0Zs6yR>Xb*|x_U zK`Fp(dGsyalK{d61-<_8z#cbhu{|xcrKYdo$7n167r))nJ8vT#=1y~x1IDT;h<%~V zw2`jIez77CC$8MEFFo0IQ0~sn7SlRn?sT?7v)6VI0D(Y$zu&8Tp?pl}OIv-=pC_pO zezNmO4%sJ>a|D=tx7LHl-g@zDGr}WY?^^;M>NSP~U5y-h0G)Ft@_j7Iv8!`7bQeDi zI~Yigj@tWvE1se^e~a?mlek@=RzMyL&a*z%Vw>02J4E}OV5T>rT9T8G${g499d6HQ zOI)%Up~r_yq{FU3EQ_M`$cb_irpDB7BusB#Pf2OCTuRYd>Ih5O*H*d}t%^T?Au|TD1cO4?ys(IR&g-Qx?PxNvg)qg6Ve(ihTJ^Zb| z^_z#k{_7v)iC@dbAN#CW&U9Vxg&X06#Z$#B!0?2y&tG12!6GqYTb2I&wyyGo-Ad)) zIp9Q?0YHuzg`b!-ULL?&OxXbBUdX1n-BMu;D@t{eYv1eCm}Oz8a#i;l@xci+g5xC$ zsn^|B(N%S9;^pXEdJ=X%RiAm0xolfb_TUql?~PbM6BLd&Uk%^+_#RJ^65!9bmW^!{ zQPuaNjOtOksa#>HyWwMb7ISSEsrW#ZJ;M!?(b1_#ZbCyrHC5Y%Oy0$VRpF@4+~OWs z;Yfk8#Hxh6jep}q2w*}N0An9~$!Z`MQ)%PJQsQ3-po3&IDOwl5^p^#BS}EiFNY{dr zm)}_tMn`_YlD+6imqs=;^uP6`(SfrVY#M$!!s-GXZ+vs%1b+o4{sB zt6jyUp3}p7% zj<%0oKE6D!iIehs+b0FTG~?%g^TC(K0Kn%NxqW^-z9@WW*ytC7bh=Qfc9Skve8qiv z8OZpJ`Je&Gn5^5EXZ?ARuR33RY#PV)D{GZIJ*QW_(AMKx=d9}}uR7V^W{i{9$D{Ci zhp4l8n;(j;*L4eYe+V9FtTL^4MC=3!ZF{%EwCoYuHWvs+Xy%P;Tg7QtR)5;kJT`d@ zSCO{6sartD`^6vfyB_P4?-r=*vsPX3+W*F)-))B?Ld&4GY1g@@B8IEijH`2j-nQ%= znSQQvbIvq><H=TS5AUl+3@ZvU{EjG;bP5Gc&NAw<1HMtSy6TX(#hBunH zsjpjN35bYo7I-mgSrK@1Lt3^~0W}8octebvRWNzu$~Sb})5a#Ac1Z?|V4LkfGW|#H zBhhv-q?hbNXMlVojo`B^{vvs@l)0b|@DfkoX`F6hq5VrAMZl?=C#AWpZrEi=2*!OYsqcGg?sg1QyEwyHMj8`UP&>4~#Ic^Vus)le2~ z{(g`boY7oldhGjvYD_i*ue7S) z4k2^d6vN{HgQ8Bef?}dXd4tmu9?I!%K(^bd+0IS*m|Y|=8sIOn9cdKCh!rOxqddgJ5N(BC&=2!+n4F>xrNEu`s|_ zls@|OD%@0mWJ@zWpv?C{5b^d|@2#9}eFE&5tjaenSa)u)FKKl&JS zsg~FFllj78td9G9kkfggn!d&yJdFo$iUE@K68g z|88437G`9a!hE*?$DPmhJKhf;J<`x&Uw!@7@)IpC7g&L#7hPG>alZSqDIZyk<8piy z?g#W|5{rd`^CFQ5c2)SqpQpwF)V%RMi5!!#edV``{U^Tc`J7=uQ9WSLlZ!r7&4g)fYgUgW9$LdQ>%>np5TFo)v^$vN_x%l?)jvE0X;F~|)>{0L7-IbXvEO2w7p z;yjKVPr0Y&1{-!;fB?XQ2p@ywe1aN#su31Hzi%~$=&WUDVW8@g1Y<2vo zs7)bnd`N5KTr?6fF=CX8$vaN)hNsf^Q?Zr< z79A!EAL7Up#Q1@H7HK1>-te_4cwkF75*Ouf@Z`<-WKrgOhBf4R+f^(s_W!pY|csG>ANfj6FDc zwcn}1M|KqXt&iDEn&T4J;>gJoZRKbB6S^l&0d;)#sNkIu#%{$lSp1DD^GgOK6E(H5 zhYqrZh3wKaFBva+@lor-ITyP=R$7tGA~CvZC@25c|=)FNa_bAQd?!Dpd(TIr3u%?BE{d(x^tvn#pA#b zN;igjbO%$7%(TU)P_y03t~}c9f9e@o za*9OzPn$A5>+UjSCS|k6vyk0fF==;yV#jZJrN*STB>O-xyWU&4N`LQnuJHio)jol= zdO-iGrS-r{yD1=y0l?!@oEE;K2jm|GX^2%d~i*CVV!liME~d7g_A1^qk3oU>m*G-c0pD+=hVN zafsQnmR|1-b^h({kz=FHY;4gP3Jd13<|(-i;81MjXsx=(<)e5JZ$K{%;R3y=9m`i= zKQ%AoIhC3|b1`|-*fHAib3@Kg+p*ia3D(SsXN^elqtD09?|OQ&ZLP@Nrf$9VyZiVY zTQd)_+5LIGYhPk<(r3T#yY@UJ_B8zxR|=O+FuM;m7m?wQ8$Aoe@!WLjl1&%uee;iW zP(~9076@qKtBT?i)|vU9q7MSghMgOvoQsMntZ@W~JWz$QuC$wk@<7Fb_5j z-AMV(B-t|$G}*|TaPc!2-10bzxM3M5-W&Oaedq*ZUnHWNpTt>wawlwTJ3>tPrb{Z4 z^w+1+Cnk8>7*jkqaIo9(&9r6NmCsML0F2_fQZ)2|!snq&KQGkQHnNNv1&_NVCTMv< zFR>Oe&gg6!TS+jsln8HW({@8O-##ejOz6nLqn}r65L;@xxZz!{*BG5v*L{$+ zFH3aFn~y0XwR~J$qsX~pjU&f*QKXmstGoroE-I%3kQ|vP*S1l$75J;f+U|HP;ByKX zdKpTR{-5?%yVeEF`h98@!<(z&tC>IV`ZZr*OzPlt3>B1;Gb*JGK(GAV;mwEk6IYM_TZDlv!7{M z>tFu);l_XPceLpJ;PCABUGKL({MEjfBVO{v+@;@{^MWr~)CzKTPjTwplUUi0AfX@4 zho9+pfS(w>=$OoBL>^P#2axply~L`^YHPb#~wk0c~idPxQY?5sXu(i zLgq;^5sIkr5ljF+*3@qu7dyJ3AfiGT3@~3&jgQ$`z>o};fw_M!Opj;BSWn}_!)Cy& z7ZP&|GFZ$Pk1~}}eXQ`;B^N;z47-GVl-c*3cRHSksu(vdL@S>Np+<4+mVu1TEMgJ| z`-ta<qEwmfIR~5^ij~odsDiiG#K>V!z5Kw?Wa@KV#5d;TdwOT0Tv^l^|@- z&DO{G{s?W0_K6l_z@O0til2UOh5Qn?OU;pXK^%WYz2fx3r~1Tb`5}WM9SY|O zhz}32_rPacwPTD=1ejcqyNpKiWWd_sIR%;C8)eNY3J2)McfM@P0(4={vh*jp{E_gW z;iqJ69i1xeO);AsJJrLNm|2Ylx#L7M`62(jB#TJ}=4?4n^x=dCZ`ud1{Kia|B*tUq zrs>HJVpCKt?YCvdQkEBNycfxH7S`0Vpgk<=o)v*?;U(-@!`bV!O!KP0CtI;~o2dYD z&l*NzR-3M6N?{Wy`+ot{u?N$$6t8W-08;%X<(SbLO)aCtcJsHj=Lfmp*ls_Ot+p$S z7QXvzG(xF{KhRoiYi;e7(jXad^kOAAwCDVZ$a(yUce(5^vuOmg;#)Yuvlk2XD$NyZ zZIedwwvE|{Be0b>W4nsgZ=+1-YCG4j8tIzLy-tmbL|SSL!Cv%L|7**@4Sjppy?bxz zdh`0><7=NB9zJ~NeaH^g5OOR#R(kL0@okyo(&1jjYyB@<_dJ`&ms5zBMdqXMIpujs z=bYVTwwm%hb?%Q>jq+^+OQ*A4=Z970NV{{oryE`)lv}6>6oUE;KOZ__Yk!$@63bsXlxC)_4B^FmCbk zRZ|$&%Y7WhacD@WRXp=eA<*!ASBkgDsN()?-aJSdE9SE>3<8B(7_>?^cc<+S7kS_X zH}YI`LF*(-b_@!>fQO89Z2>LttB+sko7Xsnj~%pKt4SM49}z(A5;lOx$4Q1`2 zd90Ml9qW|zPVASon^9m6JTC`$qpp925dG=?k)v4o;8UkvxNUrku&3UXs2IbB8U-ZIPL4WY*Gc8`#QW~)`HOCI9>s9}LuhQ`=@9K%@TiNgU8gk^= zxTdQ1AQeMW`OQKkxPFl>r7qWW>=*Ouj*MbDSkDf(^b~eq*I{j2z>ke-X(yra1K(j; zNE`l(kedF~^R+3++HYB?x}o@Ad+oKu$3Oez@PGWXe|Gp(i@%Sb=&5P_t;Ib#|N7n6 zwa9fQojZC$_jQXHUp9Cn;<}$|&UL!;L9`{1T60feeo|Mz|I1Ur`1C}-2mDA+?sh>I z|8Cv7<*)MotG{|rdF74x#Mjq~$njSf-f%7B`-sttjO`+^e;5k z*hWWmReZ47awzd~g$HXvUZtEfmvIor{kPvb{QCF5cX;RBw-0Z=aaT{JKi2$a;SdXs z1Vz1wRV|u&QKg6oLoa)Ze>kH5C?Ff@h}Ae)BzoW=?qjuZ6sa!wOx5CD3SFN-7hgz;sddz5R;EfHLvgwcUWxni*G6G z`N2Q|DxHa0u{Z{+S_a?Ks~Dx5drfR(Q%j;+sE!?Eu!&dZ+BriMO51IQvqoIjz(>8* ziQSGaIgB4cMxNrlw}FuAT+*1r0LBWjVgy5XOnA{U5jRvBNyT>h5xD!n87* z)=bXUyhVilAh_wPtymHhltv0YG8t#5xU5F3a^(St9wVT^0MfX~(eA#Op-*iW!H}1Qk5^-ajZ?4ONT!b7c=%%swPz|?ksR&7ED(QMw6(^f^#uC zEnpptl_%=kByssTUH~nBv~I&)m(bqd9s4Mhh|XWfT|&F=Pz|KEoA>eP15__dLu&$U z5q-d=k**tJoU#@EW!vDbQqPO`yz;B9W9>P=k8z)$b{db^&&NM4T*jZ0-{cnYU-k8J zLohi=z8LyY?z$^4CWZ=e)8@dO3!}nbeA3o9o@FU+>S+$04GoR|fRY&BbdlYKl zl=5PaS6?==^`vtwL&xz?$4~=QW0K=r)3To(vjXijW^1%BTyHh4_ub|hX)<@Mv7ayE z$Bxgr&S~XExUVWr%5klwX3b2Lfd1$84t}mUwAcRBCJ~mke&}1>MRqhhA=EqEU3c=a z6TgCgPH>>p*tl;ix+XMn>P?wRYu)fBea4jWY~7}J?z#`ojr>lG>?%$tx#Q*f)HhQ$ zCmsTp5Lrff_X?`*H;)^Gc8HrYbR$O#mTBm7ac36tT*gyV;H70goDwycHs&nJmLmP~ z%?pMo_@&A|NCJ{Rp=m7iTgG7ZiBx3W&&4`7pkN!{PH_Xjmh_^cHljS8%%^*4mcFwB zPoKi=-(1eMA2+i{xi4nxB2oKoOPj<*XtiZPO_FZ! zZ;Wq?ZS`jlc))CV!75KIcno7AeD$sP9J|xy)nn2ougz3!1TX~?YlA>nyD~6>X?79~ z_7$@rQS!fLzDyWR^mYZ%9xeWqc+l~wHlaD;a;$=I#F6Fot;lwBniysFsEO4j)- zN@ynXbOwdD<_qYfevIUm@hen|t9H9_+pU>?c_60cJ5bfUIl3*5xJZS*8WD#s$6nsI z_0zw40u8O?=i1?KzxKxAmd@F{&H0)ZdG6>pMc=rtuit%DzPb!B*bMD@O~#XgEW%NL z3kqM6_14YXdJ0%y39Q-IAKi0wJk_YDgP-cFgCGCpUmb4z?Z0z4d*h9R?xOW1y51bW z$t=!M(fdjcqR9&TNAEzQ@U^A9olY^C)auor4EFA1rbT>h^Vug)4zItVB`L0NFg41i zW9qTd;0XIfi>KG^C;O>T6GL6^(c^Fke?*@q?!RKZ^C1kBgt_$JHn`1CIvd0`EaM1-f;q*x|>_=wPp zjGu&thP=taHl%W6sk%X_UVOsMim_AW8D?7fC~dknM_Ynvmv!Ny>s(iU=S~cM>9;K_ zYo1Z-6}wo#p2h19NS#qIP%)WCkfLdU-{F?rc-l}1U{M(No@)p@4H}=!DQReaIVX&n z_&qN1M*gAT`z(#Gjze)DAcWCGQgj0Gy;R~Yt%oM*lf$T@gZ>olfSnjB{ z-;KQ1k)1f(em_0Zvv}fxxs>5B*t6g_bIGO6(i!qg$HFkS7)Wf&Mt8#*nn4Lpr6__T zF-PKnJE2Qx18ddQmz8VgFl^4s9-MAOe)VH*w^V9mr!UbAZ7YXZxTec~=EyF!U@g30 zEP4Z!0GfVbFhk?(XmpI&9@FLPaAf4_Ycc+XjrM-N0`&28rG5SF{T$TX6sf7}Jox&3 z{Wf@TwSAwt^7&(Kif-tfnQQ9{qhH1>ay5c&PQ)CKFGTsum_4sfAD=ICg}}xvy-fH^ z@|PqIq`qbu1Rwv?o7Z>K$ChioW0><;+xclN>X|F>SN+a|rL+lerLNMb_VEdvZlfK4 z8=pGoweZ-^*xH5og|*d6^;)QT5)7Igp8ry!QqPOKv>6XYWgHtfSGp)M0K8cx zuDXa)!!wMU+-6eF+CjB@F`GfoZ-uF*jSRMpD;U7aCKylxC%W;Z<2(`zG&)jI)3>VT zm0wadjjt0!$hPz*qlB~Q+;0=g*JqzefZshjQmhPJMvT<;B0EUrXQ3}zP>KG<77Wh< zJ{C?{*-A^$H+R$v$2ZXnX2k|(zIIN8je$*PDyr3-o{wbURe5($B@-j4+gXz zhOV2p>8Im2BBatHQ+WlaEs2eO`0dA-1Db0swnyl``I5`Nl%r$wzLuKccTS%_5l1Fs z)A#nbkHt9#L~6h)P>-F-$@Jg}fIO_bD426!-#OL>BNWNyptRzwZL2|ud38s_tlqTF z0@*Cp?Mv&@@Alf7DsWqCP>&GSxjp0>+wyGkiaO_&NV-}bhH%cXh^vfMOR#|gSD^5C zX?sl7oR+B0zS`h2&x2<%H8~Y>nhQ#gxVpo4n7nf0vmY?6gis3KDCsxXSxn?xN<~KN zhTahW`)}RXo60#~zos|I-_lcvugX`H0R~LJnVKD3W60CMjEtVf^x`j1|9*?gckaHa zuMgIfc#l8x)t2YC_BmfX>uXw{JbHMze*2bw16QA({_umtwKw0=!mwyJ^c%gJwCo?7 zYs8x3na?an=-N)JK`bbeT3(*$RJ7>?NNocmseR(f{4HQ(7BDJTC<7bs)X8B)M=Ukc z76@%B@YK$NYx>tc?vSJZ@Szr|w6EIzfTNY-IMRHgHyn6sSl`L3YctIm7V=bjfguaM zQOFGz$3*q(8k=ll1e#ych5f_}SBA0=#za;Jitql~cMre+`@etqhyT+*tgm>+pzP}3 zu~}Fx7Vf#e6urN$m<-?za?S=~Mbqd@Pz=S8V;(>ym!_R#yz;fX2#YUaFnIcwk#Aft zOcPAmh-Ea$t8|=$_QptvIuufAOjFbeh_>X{9+;M~6&5~QR$I?Md{iiWwY6${DuTaB zs6MzVfXWS4Rpcueb1@u`#e*#XFfw)_p+dn9^zlTtX%o{rfJmk-!1W?9vR~;pG{UkF!!4SK%9D^`abGFE zHui7&^ZR~ttnyf1kE@bRa&8k><{0~}#{-7v8s?&pJqo*;!?2la`d~-y zxVf*^a-C&tMB-zNg?Hw0C^mV-7tzUKju+r2zeu^I{!=Yv+LYS(z@nhX6bWdO&3=Iv zc%rng){GT+pz?p_eO2#b=)*wkqAl2G*SY?Pf8-#uQ1izN_jnSEYK(&ajbjh+(HQnz za`6dGe6x?G?Rg!y(6E1<4@AIC?h}8729W6Oj|G)|z7CsX1Vt@>(1!RWS9Wa!c8z(m z!??v~kGu0q?05`sXlYEfdjWkFrp-Paa>h+o$g9saVo0Pl?5lg= zM9#W&Rgh!T_qTNIm>IMiiFOJhgF)SG=Z;TTQd+lsY+{fgQUIZ%rlD8s!KRoGIb&y0 z6T{AYL=3?TO5q?ebgWVatIBb)aSGGC#W6Mgfh|Zq2myvr$}LY_ImwA)%8a;6A=onawo?dBy%WXJmR;xp$*5XoXDqpbxe9Q-(t^+e_+St4 z5{$iE4?)uTa-5SJ3!PkB?bU5{57}z2_sliERq(w3*y{Pzxmx{?FW{foU6Hr@$m&n$ zWlFF6<&3p$Y~?0D^r_Rh;a%hNpAjXD2!jo zQVEqeU_uj`ZFN%UI|htW)b($O3A1mw;Y7|7+O)6es_S=UxG7R8(!`9tFo}knOx+Ii zyJvn=fn3IdyOsbbHm~WofAeW!DCHwOfap_W)3u2(cE#Qg+II5PI1cWMXe@pf+$qmm zvia$g-)@C7C?-Q|&7Hp+GM)3XZEI?7lqOlN{SLEXzUq9T4D@X5G2VdehwJpvXk>$s zQI=xMGQsQkRXfTw(K1kKA`Cy&?>Appv8g;;f#>*EAd~ggwtVc~dV9>LRl4^s9t1UdT%x0`g=`__${ADajG+Qi+nysEVnIw=5sa6% zZBBtJw+ta^^c$mT8}DFF#v-kzOKGc`I4F!+R&q)&=`0rQy_ke=|>SwH#7 z;oALshiiHY_^JBW_&R7kozC%!xtbYEUGu#6Au+ig?tLq=5g)sZ`2ALUcK67C_Tclw z>u>36&~t$Z_;VNR^5IBuvtI%suhpUN<1N?OrYVXzU^{(2ArDXVBs7a8>waz_0;-VF zefZ#!7Op=&Jko;k4Sj|6EuIRMee&#u8pMY`QS|YoeChn~zP{2jOz?ZaUa*@%h^KoN z$=tc~+Tpi<=kFf=@SptQ;iC^fHl29#w5Wh}yWv=fO^cl@CST{f=gBLivP~QKWFz-S z_Dyu38}&wt!l1)Oa*Px3y3bI9>vhJOI3ofWexMGBYOA7GeQ*#^*9&dP>(9U4D-isq zk78q>3Dq=Y_=LaumV~Jm$I>ix+Mu7(#5QKR@3T*cs-T;aS;+m5{Zkmo``QR)+XxYT z7u8vGVzJL**du&CYa#2}U2XJD4$C!&?+wd*zQS2?D9PME*6;{NXwEAbjyyKNVV-EQ z1KW1iPW46~uGLth!=D=b%d;%(I|PqI_`H$dK1evS#NZ^5H~C>Dqsa&zy*eH-9SR#K zL(Yi;F8O@?xW4jPJmxZDPxw%UCi_#(OYi4kiPwCVy~`2F+qf}p)A5J~5XUMv(T|+( z!EGo0X7M+%#&;AmYMy)QfyL(muJhz>o1-C|ZL0H(-=ovHlT=zq}?|s5N`O6;%54$0) zeAP4iojx!iOk+8}g^46?aA2x-=4gBqabU&IiH#yXB+(&0$AFRw@}w)dkfiz%5K&_Z zuS?6yQk(n-meXeEI!93?I6eZrX!X2 zP#WE0)=Vq%Rwt--UQA+l+_Xy=-_mi*?R-$aRbv@F{(O8K$toSze=!l35O3okZ((qLljl4J8~JC>BHY(&CC_HEf$JNnL9EPUkbdX+hALs zc*&WObd2$ABn}^M7+19uz;v!bQLzcb$*a-z3r#wj_qoNXYx#A8Ve zv;z=gaG33eY9D^dW6`F~L2|>#3u6a2#|sk_PXngEwcRviq}!s_DO!uT2Dx&KM#s1h zNBxzwLgbuER)pWc0G5=cz4i``bLs_?nJZ;>+=}kH?MnO{`bnFY~X)Zc$m9%N)E6 z=M|p}aP9l((ZzFQ&F?;I9KmMkc?V@Z9&k7e%2s}AepRhLMjbz{t+A{gbp}@c+FoV5 zjm|Nd##-fQACqmF=c$9!@wK(CjkK6rnn#RGt@RjWsy2PfiDG2?4BfcN_vqFB+5OUK zXODQ06KUkmv$u0>@=G2wZjQzjxwJL0x9&B4`n2+)<{DzPIc4WKZ*wr|rySek(Qk~c z&OD!LGjKWrCJiu1y;0UKGwEZkvWW5YGhr~R%k5AfCZ*s)wVouUKF~VaSJgn$niz? z!;cISTx8)pHE$#t6E=6id|i_MVn?<5{%SgCBwiO|TPz%b7%0!rdDir{=y@d! zPxc}@b)DxHRPFf?=0c^pM}<=JZYO!H+dIs5Cp#wjigqdk*-x4A`w7u|*7-3yg|(a9 zTSVZ2+Dw?X&K%jmaV;@iGRhTKU8r?-Y$ZASa^5 zd&4mgb4%DcrZwoo+U%?150NN0Dtx8tdt#qb-2(p+RtfSrdI#pzphH_E5{Kkn_RD2^J2xF0(U?rd&ktYj$yZZGV< zHpvZ*iOuBzi@&bXln_e@|K0g{H9*7%Bu{#%naPq@72El=u<7wu#m)+ zt7ooTUO?ivI{(#Q9M1l|-_)Y`gTvwO-NQ4{uDzz~zlhc@R{Mx)*$Z+kV3*1~ix(;hKs>m(uwHROLyzCz zu$sM2~gx2|5`|M(bJ+F z>nOIxn0U-X^zTFq*FGR4Wv9m)SqyDV)~?+yJjSn~5^LEO9XZG6gyXjXB~Ki+5N1n& z)eChk7Lv4nZB*ee;g%FM_WF>!ANeHQw7X&-GnKAVgf4Q$8>^!hr+sfC3M`m&dAvyu%H zB~Q%y^DI(u`S75k0*g2pYsnf}eI7E_|Ka10KRx{PXYXr2Iy*f0^fMhw9*NFc}i^8s?(72AH;ik*R?B6;>v-J54$ zCC3#r^P~QHA;&*8E-m`Lo*)$C2uY2!MO15kU_(5`nbL^Ln%@(Fiu^2*l^pScm^TrG z5nm&ZZ%eT(*yThsGr1%fyLrEaR3R{g++@!5Si|nQo~Yta&wJCznREgp1^%4?8hW`< zlT-YKiGQh$Z#iiEL*Ev(@thK$+@#kHw{vWTBzm!Y^paAKC-{X_I>>KJ+Zb`;(rU`$ z3&9EthFHl#XzhEed6%SvU$wtG_{DE$f%l3=KJYxb!Q3dcMGlRzpr8GA$e0%0MOf4T zWxQAEt%2?ZL0;J2jH-`wHja>kFYLBLw_RvJOj@2smEtve#~dzmpH^nkoD5NForb6O zXsgjQYnu_u-h2y&D?2riR>AUU7<>TFF^ML2x*Vk(%LQ?XKCslzY;7-LHZACL&bPIy zC6|1lt5Q{(i$`tD@|OJ4n})m?XgYLWe(~=Dkg0by`3s=F)vSE`j?P7Wv2;naoCCjo zWj{ye{3F&mmzKySvXxqRS8QVS%VJ#7)HhCyxI6xR_Ahd_$AV+w_V|BVi(}nYWly7A z&dK@b#C$oYe%Z)(cJ_*UdLPM?#m;5Wy9dU__ByY7YqP&%P3mYZ?4=pDO;7u?750!X z232T9Xo0=rFn+9&YY{k!twBuL?$c#3G+W16goFj%HA;&A{ zZ{{u~+d%i#jC%O$>qL&rCmfH`k!|GnZp3zcIHF|Ixc-d;rk#)JygxS_2Xse@%N1bV zOpQ1tvxFG~rAEMU8VP=*k8CAHzAQ$Ud|3!aAz4Ok-5KZh2qAQRJLsg-Z)_6L=f!aV zsf+R;)(sBEb6YM9+St!i9sYe@NFfW}j_J0j2aKE0NyBeMp|JH}*r!idEmOk0&Z9S{PVl9QVt=T&L+aWtYr}}oDB zbJJ<@bG2iZXuGz-*h3^iBfTqF$Jn%eKXg%Hm??1Qi9UwNouYB`ymlmllI@h4t%W0B z=Z>@Ll}rbGp7n}yg$!(Se*VDevCKecyw4BdQ7c*iLZiF zU9HPX8@^2LtKhG`Ft@SUdGA&yM$8iLRFH%HNyF0YCqnYxr$%V|cna6#0)v_pMFZg)B(p=O$ zeahEEfBf;`*(aYIp54_~KWibB-QbzNp8T5TC`VfNeZ15K9CMfn@9jLMj9o`8AFsr3 zny(rAI1w;kM?U;iPXWKF{ev3Px zmiM-Yvri9izjg2M?!EioFF#d2SQy_I_GL1`laBx5&;I1__S^s2;m+%NQks2U{(Eso z?G7U~3&YZLLfmj}z=!0Q#(>{5PDqJMpyDMj#CTWZ^1HwL+lL?g=YRk3PyUxbl*^2R z{uQ4!D&bz()I~O5t?P?zJk~+c=QvR;izyb?&>`=lvv_R?{338x^~4cb1vz|IU$BsR zG0PA&c4*}3Q|t-fb`VC71vX*xq_aMJ%M*Lxpu>~b{)Q!uqvd#lwRmo@kqwWeu(GhP zxWI*nd&FEmMqEB9Z>()u%7VzI;R<{95ij78D{6%=p7Es3S0Tq&kfQH<6HN#|ZER)i zsEFo!MJtd?d0p^IfKuTol20T& zz^7EJ!1-nZ7Y~Yjw=QELx@e3=g)cE;Ya|J3Ug4MbFZ4xn4q%ZJy^M#O%Ds8e3MFG) zsN(y{^f*vfWDh;r@VzDmDCExgMhr>Yyus~+ONQ~5CFw)S*tt>uk`rRV|M(|ywXvr; zVEwWeDQ$_%XqdM*i5CoX;ujX#$9Z}`cF9G{XfD_$^2{6hZ6ANye}49gK7NYk{Xp{c z%XoWdA1v1qxuZ>RQ-f9Z@KdGrV}^h-zTnvo8e+y?zVR$t@vD9JSLiDaa>G~CXOZ3} zg2AY;)5;fH`5LAJgy?P zn4M7LUJ|d0q)JWUX<%cMXGR^o?Z2E34I$@D0Gs!-)&2yfX;_0zPl<=^-;udHz z#EfHzkNw&{*Z=?^07*naR1(aE1)t)&FlW6rsisM=J2>|q7JWp-lBc;d!9=bboR@w&shkbG-t2p z#U%fdw0iFB!(|Q>PZfL6DAimjgLSI$JhG=Sev#=Nf7dgXHUE2Vc>Up)?2pj4ax21~ zH|@OGR*uLk=GLc`b6GnPbrj%q8_l%OQ_iCz6E9Zjt=xJn+;X~iTDK)GtgSvVvfrdX zt^w-6x)GJ*_B{a%69cInPbJjl;GAX@IlgaWgg#J46PbA~XmdN`BJZ>d>%3eeoUiu? zIU8>gxSqquTodDD$2mM74J^=^2pvCl>$T@I7rFv)r-6b2ZO!EvBh09Df8rqDb|N#k z@u|;0XK&p3^*=CxZLuLRUR;zL-8Tuj$X|Jp(N;HeTu2;o*cuz2#!oi8Ce%D|}t<<*aGhY$)z%GZihA{4Gi}H;OyntL~LD;91NRZawz&Ts2ra`+V4MPMiiS5YCC0?FV4) zoZTD;4LQyj_Mp(+UUfJ0a8GYLK9mUQoU#b`W#7&*Pv9cYKl7=t3EV3;)8;EZuj^^c zGd%(9YYn04OB@gX;p=Z5eoen0${XT$^}DNYYeD!nPY(k6s=Ug;OUwXIsXo>dw~zGG z8|)g{CAet^l+bOoDngIcfp>-%h7* zT(FBqE6wBqETxV-@s+l@mndlAThEv_RU2|B>l`OF@8X3``7Y(fsZMpl{%Rt@C2 zp3Z$qlyz*DeP~%&M8=arN|EC}Zj4)o8Wc@;oWqJVw5s2}_}&mXD6;9(Br#$a**aH< zS`r!|%B$!Lxr_uNZt$y)ss`824&~sEcl-Hu=eZpQx*s%gF z<)Vliz04u?9Boh^t+DaMO!N*cNU{BP>fV_s|~$)r5eHREVaa3 zoDa3cO4iiKfwKhm6|swEeHy&F8Vr*dU+2xemg$b__5qSqXWkc?;@M1@V^jui(+1XP zY(NmB9Os6&ZX@4T)Z@Qi?hFqi8Cvh_(DG`872E9=DM@HXDmvB0zQVNzs#h+VdzXnH z!@bCxz5HdqoyKAgZ1=5Theo?!`xy2(jwj<>ay!7`{+x{sT===Fs_=Viu6`^Tc z8>f58-D&>SVz@|uBH-tYAnn!P9?x(j>9H*hy6D%Y^{hjlc7gbE#H#1#$M#sh^?iG+ z#|j|1hNijY+rSp!L@%!3%Y3zHu6NVh`qr|2&D|PZgW8$sx_Mo5jn{q(53+rj_aH5q zSS>L8oV>IeD>#vD|GPGI*p!ET0V>AXTX(+y2e`o-GrkexMwlCF{o$SIRz{}jFm#C} zx^GH-;VO-BZKFob0pCyyC_`sAb-#x`BEqaZB_dfrr-84F$DTu_M2X zRY5uqWbsduA)_m~RBF3x-L#tlVCyjJ!)>|rPi@QH;IwV)?=&wN4{6&qPHy6oV$n)IC86}7u?I-y~%Dsa`@uXxR zj|Uv;!dsdvAmf?DL$#wT`)IqNx<)9+AETu$D00{o0~I{u9r{stqn+d6=4x;wuxG4R z_q;^8QLm0A7b9-6@v8uaKzYA4u9l;gzOY_wwcPNwc=Y!c`&f#|o@X3f)*pU%4P}(J zYtlj=0&4@D#^a1lCoi|TNKl_IMCA$K>yP;QXN|8ML;Cfz8;Aem-ggdnRNv9U(HmNH zdgtbA#>xCxZM|y0%D{`w01J~hwTSlV<41?j{U*E?D0=>LjIN7~8~5HiT=!GJdLv!e zpVxRo-E!<q%%Tn$@BjR7 z4&VFr?;T#db6fcMAv=yCZSFU6ZQLPe5tg-=$B(sGTfh7JM2o?X9`a2-l=#n<0%pR< zx#BH7sr(N)S z1L3izOrHwWUX5-ss4`irDdislIbrXBmv7?^^C2arQa)+?=VreolnD zui;&Td&G{|zGH72&FrvG%s2d$vNa8Bj_+H{W5K%Q>`dF2Ul!-SLJj9dIdOr}P3&?H zU_H3j5<6po?bhx46>{raHtvBUZb0bHE10%Hq{<=y+WOwH7Z$xRB01)U@60srxz9w0 z1tiqiF&_fL-ah%>DSXq|wJc2)bgUK>zow8!UR#FSve_Q^xYc|lueKLuu_ZI^)zDN_ zV@kkJ4?j_xy zyWs~6xSpB-Grz1CUr@K!b<*um)G`=O|8{XQd2*r<)OU&bo=1V{= zW#1rp{AzNR{!SKWt%t1Ijs+qGtBucjhj_rsafaP4k;I(FUc?N$vy@mYo4#c^AF5od z-x$Ua^hWGy163Xr9d0C`B5$8G`1DIub#WcLr8FM8IvV}>h)VE+*>e{4#0pNviZRUZ zA=e_W`Yj*B)61Us9Dgo`FP}n@3b~}?o%^({TXov4fT(h2m>I9nX+|kpBYK?Bm2pi@ zzWKlht<5D~+Y=zYHC`WwrJ4^?#K(@yKEQVjvdeMB(dK|E9)#dSXD=Rq9!bpwduv*$ zL7`uAK93AO`k617wVgJ@_$+OXm9uYO#dV1qwf%8(9lo z$*~`mtTC?P4jr`nZ#ol7d+GN>hfk~BwjPxBq%8#X*ohI%Y2CB3JH>PLrc`HYQqHrrO6=RGd}9pvQu`jvQ?~a~UxuFN!NtLR8QlB= zd|(WF`vm5dThe=K`vj<8aaG1;mgJT^=lnQ1pKa^x?0D9B;d%Vo#~4lG>()hQvh&ZW z?EyJ^cDa<$vtceF5r59wV@w@s*Ywn8>#JY*uq|RfZLT9r_Y(G7B$w{diyZ))+x1FV z+s(gBoiU2vi3hFt9R0*|#Agmb>(`gAtqsBf16gQPRa+nVE-RjpSI8Doz52G0eZ8N4 z#{^zVa+vi`X?AkDAZp zPmUw(%*_Y#usa$@Gw1h*)6w;mr#Twut4_}4?Z(_$`A`=6(u|$Tul(}4?hJqRrkLc3 zys!B>>W%oPeh-y(7xJzN&Ow*%5q|0%Iq7p&zesCk^D1DixeMEdMGRP-n$)+PMV@=t zbL<%75h(fXb75YEknuV7;O9=ab62Y4I2b;6qp`ccLs>fF`#-hE+yr^(cd>Zw<#kp* z^5m};czElPms5WG_rJRL+V%@~?rgVi-qa%S)$QIj)m~g9t=vT?#g-R zD<7K6lxGR*@x!Ov?YnvkSWL4P{tncgW^(LJuIpT$aSnIQAQGmgJ684UO=#3?R`VGiv4&S^jW zE1DUF>qT?5Iax!e*jM3cDC2YG&I>K^)ZtqPKgGv7L$5zOEi7^vTLETo@5{HoKP6tr zq1d3=cl(ug--~gdHhJ-n@#8hb_gJ!jRr8q=FRO);q#T#L^#^||R%aO}tx&HQ2+pWYoY-=F^>lmt1RgH;f_`in%wFP6%i4})2;DL!;nD)zlIw!$OPQmM~y$gOTV>aia_5o1r;ddKI4K2s1FzeXoJk&lhJ-Y;# zv8-jgBPYc z#lsHcZ~F9Q@X=dfrap`=@dyl`3d#ex_#UIl9eMMyjy-Sig9C~?)yFIwbjPyDnP$J5 zc&M9q#$n0XraE6z}F zm{E_$z_2Zptwg1EcdN#)_;z3%1*QJU3i#^;XnP+Qb=9Z6mScbAeKGAh{tN>-uh-i3 zB=W_$_9e60R&-t+6U&C`05de%?yC_O%0r_FrS92)@Be#=L9Vgzs6K`z&R zjXV1Twi?G=v~Rv17ErFym%LU!8YlX>kGekYv7BcdqLGUsJ3lV8#j}%jA!=`tr@+Xi zxZi$Rk^`De>Eb^(%E%IAvbT=pD)4+LtLBS#Wq=eimiqyG&h%U~-p9G2 znPZz5n`nRfWO|{rr|0T}3|z*@g`f+w&lAd#O_|m9E)mQEwKkLbi}hng^FP9?dbK;h z2+-c=clv8?bSe&laef(l8)#o*)xv=-ThCcZw-L{39yzm5YxTQz{l>XEd95jG3%ffp zMt3ERHVwb11cdGqa)@X5>s*{F<>|;_#XM|HoSxI6NN=?{=Ifrm*O^uq)Y&}QD*u|t z8>+sE%>@VKtGxNhlV*CdkKX_`O(SW zyRS|L7;%mRzM^%$srK2%e_c<(zI^lccI*BJ`psFsa`_}R2^hE$;(94I1T6q2FXAieK_ikEX zy)JFtu6>H21I`38fxJR;epS=qP0%O$p6N%AY7v-&kT*t^`(CX5#xH+k`{BR)8!f6n zknEN1%~xOB{_aQr;6-3wts0m1V_mdg)v?Q0EdTxA{r&d;{Pn-ze&tubyMOQd8$Wu`O01v z*eKlZIcAA@o94gPSRCuDy; zwET5#m$}w(WCO*&!OH7{Z19(bcd#UDkcb++`p%nj7r(?OD*f9#JII^}*;G;_c{`;h za{So_wfJ#QZN#+66A)A+rPy>tyXW5{Ce{Qfw&==L#!@)s$vy~6HS;oxu}Pi=Uva0D z3>_)qSqfIQDTj* z8j~9tis^{z!y#I5j6Msz_{DtDD>mnjUi`!i`u^Q*1E@=EJpHYxfEFfy{Tt6YK9Hd> zdCPcVnIlD>63-lm!k7gIE&GNZn~j9;yd#Zm1j(o4Rx{2dCUwDXMC$stUR+V$Y1Fu* z@A-ir&Zib-@e>U~AfLL&=U8-%K%%efCB9U@dfP~;|utH!flMqRO&BpP@f96fgI#h8jLaov? zyrlSpAofB2`PcZ`#f$n>C`8ICM6YqR;Ma8_E&p?e;E z#a-Lzwhr}*waT5}&e$-XN0}p5_uI}Hg(JXc*6(?D$^hrf^NL?z&SQRM=sk`EOnV*2 zwGIE+hqmhPW#(}XeU`IxYw}*SE}wxlzxz>8&qI~*IyGu-rS*<7EB2I~uL#ec3m`W7 z+G@13^{RnpdYYQU25GpSEzG{nOI>%td$q8Y+J^Skdm+EqZO| z^6}*UcJIgfy51bF(`>N`Sd+PR&NK@za(<3Ks|?qP+|q>xV!!Sn8~OHrJ;%o$wn!N+SDV*1TLYi>7=rEM{GJq#` zN;F@&lu>I2!>MkMt)d%%@;W!p*ug$G6x4Av(4q7j@~Cw?_IPpB%}D)On~PpwPy>`0 z`8_K8fxbYHv!~*ZH!}!Dy1q&Fn-;-A&+_OIqk8$YwQO^PC%^qRh8-43a+Ma{P?a6D zP}R-k6$VYs*fmi-`~vT1+PEp|0)HvCpB&prH3^0sP}+81H{ieN#iPBV!tH(}XCK*5 zS{ifW9IeG?oPfjVpcB8eS3rz_^9SFJ!idm>KBq-aK(tl^mF#+8Lh89$R!izd^+__& za}x|7nl*gSk9o-f_v~RTR|_1Mo(L;(w0qnkoF|w0({rd34K+IM7$QRwrudl?kkc3jtNgA&4FuP&>-+WCfrHdwhzDmgYCM$X87t$S_IbbR9|`gK<^RX9)_9P z{(wXIyc`BQH!KH54*PH@?%Ia*lqX_!UHHNK_qS{MJ>8qP^aeJUzPe^~tlq^-!05V% zA7Im~;~Bco^`^Hpi#AXFTf2PR;+j5?ah2l{Sr+XCa`X1h?X7p;+CKW={`T;}gY6gJ z`o{K?58mHC_~?UL_{r-6i2UcAbY;6Q+3)}P54L;C)thg;E-WoG-n^k}W1W9E7dSb( ziszaeH?{MkFOJd|{qa~F6U~Kdxx9v;j-Nj7alNfLxe|K)$Zz4rRo zw*T>e_}5z0XTgKbhK6k$D%@@dpC0IT6e~)*jBtXIVaF&eGHxFvLB9Ok!X6-Q(8N>B z#EIQryg^@tSoOs^Hn;}>1hRJHdLN9oQ0%ganf)7q*ukFwIac8C69{j`mq>i#DaV`P z+b8^nssDbBC=3>tvq%S~|LqBp@s-_7dEXQ(5B3Xt6c}I$H(zxP5vFLgoF6yHwnXtE zIdP`#7a06cJ^UoDEJ~rM4O!V5W5=9;j$?r11N~7V%UarDGsl>PWJf~S0!X{6ibOB-#5q>i5)x;uu3zDUD5Cj(Rva&eNnSSfoIilZ zZ9cNSNNtl9jK>(JZCOS5IbMum9Qg9riNt7puy+BoZ}xv66(W2Tu%QLP9wR6{cP#1o zN=|C7kY8<{2gZ;>xUOmYgAt3IeUvPJDZ)~IJT*iZ{;{Y`-h7})mIYcX$etHhTR%$n zRTI2bLrByrD&@@gkSRYjt+P z@!Y~Ubc~-SdX|~)N&^{jK-sGmTJO5gwLBWow7hGj+HIg)cz7PO_s@Sw4%D_!dM7)&_h z+t;#FlXvHmSw@B%h3$_eTVEM%fE^8Tgs0f5cLrjLU-W!=@2;Z4~rv{Wk%CE?=BN_Mc3 zUg&#?Vp}wBtsV^S(rEpbTUfj1%BOuwFEXA7&31A|XNP#~^!)OB!UMmKMJ$r*Dzv72 zQ&W3LM7dfelaaad7GnnGc@9DmI!IGU*$?bq)E+d^1wJWj%U;Z`+yI3hg^O{3r@Q@ zrNU!>S=wpIiE}=G^gEZ`}b4f#IGtuX6Vp~q@2fWMJ>KsfPc?}O#W9PMF z#=`X-=&jY)e(gZN_U@1K_NTQ{?_x0kav+|6+_#Q>MW+eYU%TyPZ2P*jWKzjWU0*gY zvF?QY+8KWPu6wk5x4-$l2I*8-sN(D}P;n@WliW;jIWLBHVbz-)zOWRzF4W6)hFZ>6 zubf7kn`lpjfxk~4_PyY$8j*y+1)CK`3;XE!J_~x^tQsBOG9lFU4UlS7?Tm7A^~p~qRc`{6hqw`B8r7o0 zZ}h#3l)2{3zCQ(=uH_RqgnhB@p7im1_*Gs{+|@Ev`os_kb3HHia*fl@^g->uM1#`Y zi|bfopH@q^5A?o;%n}bPCX?Z|MAxF^-Q8k|USsLH z;jB7!n!MH{KP!>8gKOQck3#7`GiR$BP#qp^LofKIt$nrI7xPM|;}w9Vt3O_st)tg@ ziL-8U^^q0{^!3l2>aXj?@3x*G`u(rHzP+KZe#W00dI5b&i%+-K*LCT>C|}JC@OsZh z?PI-Jo=v|Ls5i-Zqn!G&-uz&}(6nl^m^pRC7yZ%D;Z6OyA?Lo*YduZEYnprawODxn z$wQxy(?)t@e=Rv&atygWAy%=IZ9|nj6)0XL z)l+oWZ{%sMI_-u9#a z??>BxeI2wCynS82+5MyUf2yx}&O$k=KF%e3{mS+2x-fEHyRtp}=;3zn_FeU_Zg=%m zF4oC?pLIPB8b>ew>KxIFz>m~^AYF;Z$0agfjmwr8H9C$0XC42)D=qiWzc!i4FsqxaDmDVh0krRYk8bA2xe8lqF=9TutPR2 zJz}keA9TUvPqm+DR87oYyAXZezbGgP8D9bNHI@`8`0JXSgt66E?I&7cDG%zZLtltnYY*b&jE!Sy@(W&o>NI z#K)X;8J<^P6_`X*7(SMLZsr^dFS?p3n&Ww*A7syS>!At)G;sV6Fq9-KEd))67ajD9 zMpfLj5D(9?#fO*7FyB}ILJi(P5IQ+SPI{$iShv~rR_>`!tQ1=O+24M{#~gOVklNsC z8eihp;<(bE^JF=2tmQpVMUP?~lR&V21mQP;NbGr?xtY|G^Pngkar9rqvW7Vm6rPVHUwMnCIbY`U;bhJzo|DOW9zWL+{(OA@bgVpUet#NP$m8?mvTQCXU7F`Q zv>(H^sha<>>1a@A^v^~6sxipdTIhGyX|Mc4U)_;U8sp5f;?ZurBmH^$IhzHk@!B`~ z-3Ig6zu1mlzgXlP?rQTKkrU*LGIbQ+&+Q}k3W*lDx3T%6U-G&j|LW5hz1@rrec!wXI>a{IDQ zg0^if?SQD;C0OD`5-jwsjW8W1ODJk`LjjjhX$R9X5fhyWBL?mQ>AU%Oq@Ie1o=u`5 zhYfbLtsPn0%Sa*MVrb?0qTwl64HF9IxBZUgI)7+eQ%E6{9<)9INTriesq$YBuk#3{?*WVghjP zR4=LlII(YgEA&*H)FW2%20vSlk=Z|C>MKto*E6Ft9b-;3385aCrd?D^KI3t=KH~HU zT?Du1O-IIga4#@=nIoqnjL2Djds6{0bEmoFDoPH_=Yj+Lp=(2PF48?O>teOp0Wum3 zj+-B22iDOx28#^O=Dah0vyORozr@bWl~bM_ank80hb5#CMB)eKQ%3z+XL5q z;nsH-FJ607uYFoH(i@sQ zJM`*R{l2P^8{tL$A_Fr6Ou<=lh2bMpyIfo49P75`o}bi`LN5$wp*ONkL%)w74x>BQ zZfrk#@R1G)E)I=8P4aZ`haYY?Zr|Cief_O%yLCrA9SQp2!Z=O@Vn5k&e3bS9$VhDo9!R}@gHrU`wEM(D|IT*C^eiHv3#Y@)2%Fu?-rnPZ}I4{7R0&L zkztSY02a-Qs$8wchI1SvIH@gmxJR+y-id}ou{k_dhco7e(71acA|o1R5u+e3~&%}WY+UQl+NZ~{#}{oz@@B3Q2x z{3dj4pv&tQbB+Lv!p?=;NKKaD)PhVhTG-Bul_V&f@<*UdL}OUeu?XMO9l69}gUC`O zr9Hu}9{Lj!O(k)iN9hF5rV#(lf7ir$q3FrhN3oRFl4rg`@@F zv$&2F#o}c{+)`6(!~?N5Rrs@>=ZFKE=eh*>;~WDn8*?S|B{35ti();8I5r%iec&+@V9a;EUrb-i6X_BRXHA*vVDH?g)x_T5shqMoOUF z1u7)vlLide!c-Cy|Hx9gi>3U{1hhSS3Q!ZQGdc?=*qB^pW3y4v!;(RUT>7oQVy|su z3?Lf4tx~jYA^af^om|8>Y(Fo|u#N>=u~4JzM&DBs_j{s_RwvNIUkYtd1|8Z;~H!a`Bee zFJ!)~MZV?#TnEpL<3ZlD;Nq!pF80S_l&#BWb?@9h9#ERUAc}-sb3T@zKQ~I}WnrbS z?dJ^~-HWzUcr8D9IXBOKTC3bLzDF_l8=>XUon=37CjH{p9^+!!kH_U)_3=vQX01U= z-}7Hh_o%(){2A(M6}nC(sstQczNK_Cf}q7mtm{v<5_IH=gBH8+-4HOc zxmdLi>Vu6}_6r5;;TaeDB$%q`+_3PbM!_LrN!Z4vhcDvP%}cDILJMn+h0Zdu=;|hs zv@u9mpMEGwe*c#OZpzTcr|wkSZe}-FG%O~1PmJYWv|$gmG^WY5d63(8ZF)~qkI1RK zuRiT*fL?Rew1&kclB_{pH6q`03uRkbL85YcKTS`*b=gg(^HtqRZ51ec`R068>(0^4 zN{+)i8kLqv_*igLJLmmG#?GT7dJ*peK5DD#+D2`bm4lbVhWw2P3~wB!_>tOyr-s6cUvtr zXODg~r^Z15?HxXt7nKz~a<+MvEaoJ(|7R&>ivc?h%A&twLH4*}cqhXv1?3D-$mi{i zb70!h>Ft60`E)%lWvT|SU3ESkzFy1p^|{HzK5pLF(@$M`;rHqTJuRr0)th=H)d5g$J4ea?Z|9#m&$U| z;w|tG^b{;{@P+ns_q6y(Zya(`M~MO@@5#?HU_85BBRgHu~Ir`|j=S)wf>V z-usX5Zx8hK&b+|AaZkUAtOdOX5AW+bov-V@zTMQqD+|9Y8ei3U;pVNI+jZsW^*3JI zUVZ&_*7F=k7J7lHr?_hon1%T#YCrf$i#e(jF+mV{{PzNaeGYwwh_rHJU#@JoWc&85 zTmDMu-~0XVZZE&|^7iL{_I)ohkGKodCnqHve;haGa3^0jRYzV;To67N@Wkr{A4C+G z&UWED24)go7Yv?tK3OR3@oT)6l`cxyOX+){(8eOK_ zM9u{pghMRc$XUKYtM0(CTO_hQWC1V;G3bx`dds$t*kzNLD{CuO782!&7wTmn9||Xx zg!$JPJ68Wd=wymHfmJ)FPrfx zNF6tG$j4=61Rp&YrH@uQmv-$18GP*EJhoIP)*27nCvVjkR7Hn+%{hGyy!~G0DK-UU z+m-|$cpV>H5V<60eA__cEV5NO{%tH6#k;Det@+PE-$r>g2n|!nTD} zOrJ06oSJuBnuq5q6+@bMz&T00nwvQnWzHj$`NaGo&g25E_>`EjZ8>l-BcGD%%tyv5 zGGRAv=4<7k2R2Q`oZ+iIM0Oq*^Wo(OqMLOKvH)LDPakWN|osBpMLjERpPf_u8|GJ7NI8 zA#8tkjbi?k>3P=rZE4hCopG%V45^D7%thHX6z3{S(`y_jW{=UN7Q=7LcRke?iZMFG zJ>c3ygVJ>e80y*m-a@n#4>9$*a;LPH-?4^GsBQn)o*E8&cE8ZpagHSZ~)o5%6<>z?(bFm_POwaKFJtn+5``}KNJ zRg-h@o^pP#uI+}-RP<%z86fymW{=x*Bh2&Alwj8u04HE?dY3OyTC(NtDyt{M&A5Guo-Gu%sczwezB)ifm?53 z($v;E?iQ^z7E^;X8puAgI5~oue^DX&{Ncnnh$T++a7J00O}pim#3JO+r& zv9!zy!$;Adqdw6dv$clTSy^dm!#U*Yl<*3^w$B1y>UJD+X`sH4kShtk^J9|CH$f1$NxQ@bA!zbR{trmJ?d zbcq7=GXbA z$jrc<;=~BO`?+=lB&zmg5LP{x3|Z4?&?Dfn&fq1 z>!W}j@Vt>svyHg-j2(IgnQ~=Tkb0Y2#~)v3>qTGz2YTIOuyr}Fj7}JZ?bC)>&36r+ z;uzOp0)lRuv~OxL_1$m3v%UYL54QWt0T}mgzqGym`deOH`r0e6ZZ~i6o3gsPo*Vz6FWGQ0@3>JD#)5SS!3XdN>-ah*9p%>!?rhlBy&6&E8 z9E)ocU?(ta`Xg=kJKceQ~1&wl+o+joEGx3};An;&fN{q()cQ(uV#X<#pW zah{{ku;w=vg%4Xd1yt|j9DG>Wf7v=%fyM#V?ei}BL+v1MI<#K7aln1atgatu>aC<2}8 zS2F|&_oAcyke0^(nLLD{ac$%A>79AFC*Ez2tj0&Fcbnlom46e<3XL>)$i~T2jlLCID z=|xX`1sNN`hU=K@LuiPUm~AE>idiziIm^VS4Sf@-RqVTjtYZQ@^+W?R^zcIywVqT* z5&+LH0b5q=lBQ99nd!FutR1%T34a`u0qN5B%t#&>3v}9+;$jTCpzGMA7waq-=}&s& z>1q(MrP^bHbKcsA?vXdXyjpE_)9TMb)QB_cAESQUp88@N#L#W)r* z4WE0g;tf7>Rv?z4Vw=%oj|^4e3Dffv8*Ih4jA?1vzIntO|Kk#|F~sI#P(kv#d!MJU85ltTiWr#8S(@?Rbizx&2=!E<>^6Zu{n6B8d68poB1=#5x0@@ zgLWUUM=*E*rRwG?b=oBqp0~t^_lvzFN|3WZ@=o`Uvd4bUi__ZYQ;#`4U-Ef5W3F7F zh|F6}#phtY2Yis*55wv{Q{UXx+ z6{C48P4n*biFz;ev3jTNT?WeDf69L4HU1*&r*al~t_8TJOj+ZqtAz7at-|%eEDUtSqYvb@WX%RsD%aXMbFonS=f5P zp$~@YnpL!~J=Jgj>J!kBPPQcIVj4GpVHz8TV+RL3ONJHsqN}R+9!p}aWGAUuiKA^V z8hG#0kU7&R`BdjC?fGN|*^Gy8EXhs&%Y-BjM`6(0LBwc>O8!@lx#Y@Qi9)2bVDm#g zu}83lPq2RuNkm&29nq~BfY&nAITlulq4w!De2zKTSi5oL+@U(gbFpJ9@RT$aparbY zT~lgpoyJ)uE^e>-Iq$T*&q2)H6XimmTE%aqoKQZH8mo`2nCuzQU|mbu&7}{)uOll> zr1BkVu#?oZLoKkyqay}5*{0B{+wv1Na_TQ*2yJ$|)w+$m^mP(;Z@j}(GK)wMcZ3M( zd^XN$a=y}F-r7DJd(=-LmhsQ9!cUK*Y}iS>;I#?=RgJ9rV54Gvd zW)^yH=}p!D^v+A$FW%5^sEW_;0pHP^&3TSegcs#2nSnkZ><$QJqUXD7cHWwrRE?e* zHB(EE`8j3MWFLC5BI^#?Rdk$wsNapvHA>N%Dc+M0^;^JizOij@eM8?C$+Mq24BD95 z91bkBG$5?QrA&byu)Eu~21FA$*tFoGmu^}y^RbG6$W4%P{3EdYl=pUw+zePmZ8s2Yq^pNiL{!{f53; zTfdopVQUA;Uv0K$kBtC`{*^a7ODq6KZRAjW<^;vRb*(t^I%R3ok)`Lm ztx4XVYD{qulC2>aR&v@6A6(zCv9M%h??K)p=PqqGoX9eR+oLYO44b)^MZ`YN5*zYfL?@RBW6O(=`R!TkCO+nF7AI|w;IW(J z>1*NVd6gKPM}he-PPmN$cZt&t>PKB(}5ZaR4S^VmRW)>^k9el5P`{HXCLzEvD!jc@yX>t9C3hReb#e*!~}R95!ps@EZ|%uXY;Q~b!rZs)7gHjRm$9H^21 zGSQj2$g2{)pu(^C_Q`NAF!5Zho>$MMbP#qtifdOCUT19Ncqi~#b&igFTssq|$86Le z7xIPPiwt}r8DK7-x8cy7>-%;)+x)JZeymUPbG|#ueqR04KDG7f+r@G%zvkz%8dLXF zYn&xD3iYZ4aKAh(M)LaB46xRA3pTC$@_06VnbKaIKKD=IJ)djy#+ovX)%9Mdsj0); z>vBCqiH{2pa&`3t@Vnnb!hPNFS{MN-M;!<*snqkE3$!BV#ZBE9_>+=#p$twwiHSHm zy4Vu2>;a|{d%nM>i!I6e0uml7R*IM@B3kdj(MR_=GXMK$;RSYVTllGyR08fBVKH za*?${2$MeKpgVK9_VysOvG%dY3YG z5Sk&x>N=;fNk8>Lap|@W_1HX4^zm;0x2Rg493!!o^vw_%o+zo(9m1vOs@j8>Mp*3U z7D@IbHN8mBy?sB;I_Mx2!P$b+%5&hl)phh{uW_tOK6w+A(op#8M1)+2h0fg)sPUrq zd?^v+QLmR2tA{c`TXNKvAHC0^Q9jzak&f~Y-gxnbrj38eu^`5mh+NgveAo1~xn%3M z9>se_PyPNOUmYu5UaMI6ef6528vGnWd12y<%fLAQXxwX}yKefqo*}Qo)Em=JZByrN z&Yy_SzFIa3$S9$8H!3Bk`OGnTOTPvD!J`M;BYi+`XBj6@(7b;1w|~3c{Po}1p6CM& zS8CA@p42U4*UNuV7N6*yE`^GQpYp{L!%GXkB(c;E6FHXLsCw;&1t+)OA zyRX0T`u4^*-q>#5xub<2eT^>*r1~mff2FPfSrAqv_OX8l_`&^r{j-hMj(L*8IMJT9 z=_1)<*RZc_H?;VB`wk1h5IOfMUwR7j?%iA4um0M1wtxNyzq@_((ZlVBfBo;hsB}%| zqpMdX@5K-B6|?+xUp#yT%jau*jTzk!aZN64@~D=#t6FUKwYuo|n?Cm>NKi;-7M!o~ zO$f3{9*mC^I>H9O7ntw9q_0KRS0cat&YRn7UwhRu_wV2LZzqFjU;Lqf%nxWCx6ot` z>%o?=^&`Wzgcge!55JoyDDUj>`F*7r{yGlz~X z(2?UUAlw>0VG%T;-$3sOO5G?&Wac+N_bufjd=Kn+c>O z_*#Hkf6lYWkq<`hSgVvPr@b$5-;1r{v3?VJfzc(X|cOo|Qx+PaZt@#Ez~C zu{&?>6+v8l_Qqf#R9ogMc-lN~@>Rg#Wg&9{5le8WbxdjgXO1Hy4V0+xjUpS)5@T;DsGoKMm_#n{3QRA!^!ydrWON6pxX{8woEMI@uD;77M0ZI%@;M!LRP!cpsqhwxJQFR@?B|ttrux zjt7O}<7oV92{TXZrsfG|k;;cu&U?8v+OZ2(Z)#bdKJBI->u6X=x}8hQBkG*ZvFY$u zt>}Kd{eIqjJd96UE4g|;RCF%XQ!d942)gI7Y0qcs3zF`G2lGsfDk86(CV!sw*%|$L zT7O~d^UlCB`#uBHjoz~g6W#6_+Vjl%#ze2nS=twKE;#E)d)PG+M0>t}NND3fRjYoC z8mtt*>dvlwIFYY@! z+S%6&oM=bZxcW*$Y{BU_fZzRI!ok_RXrpFRzNz7I4*>1CkmUwfH8d`E5uEzcWWm>l zLCA(YFZET7aS2k1miHMs!-8oA+wH zC3YizR%v%2ik<$%;6R|4xI$msJL_T(+0|6F6WbvVEf?q=oNsD<1K&c;rf*BCX&?D5 z_w!kk#~JZ#ofmE7pDlNu{<-vz35nXrQH@?}t~r>qppTL1^R(8QF+O@z^b)OT$#$#j z_yA@=nZIze`_I7Gd0mP-RXV*bSlFxgcuHVlR&)3?SW-H5{D80H$FBw2PoL5If<tmaf4k_Ymaj)vVyQ_No_bLk~%I|HxQTA*4%G__<&~N`L zS^Vbj9no0+_1X0@31~Yn>XXOqnY578^YY4Ant#wT9o|A;WmkUVSMB3h?Of-~dObHI=@j?|qW4N0DEYEcrht6{!wgxnW?Fhk7v-a=k@;kh3bi7|}aTJw1 zxsOfcyYzW>#4m=qK7U&cO^fHrX7%iQz5Ym;YhD(D-+K4W?UmPG-R`}vr+~k9Z+l(+ z*T3=Rc2`evvfY09j-Kev!a85?%x}5c_wondvOSgD6aD_Lo)83I2IFVE-uL4VE-oo{ z2d{afpM1aa>Rml8%kL5E&HDNZUKUoasr{OK{_XGn7u#?C#;e%fN*Z87cRgQ8BWI&TQ-!EtZ!`H8>@ilKy=CvjF2Vl#^{*#RFscL@tYj?ev zz)mnW`>4s7R!*C zb0&+ib=@tT{<>b<1`q!XPAxrAD(b3L$-~?q$^yB@X62GaVD95s!>UllD<6Rp9u+<& z=X%;%zZ?CsK1jd^3m)r9{D1uMPyE}{`KF+@Ze{!Dg)A_5q0v9POfP(f5t>|zC$=$%%A3DTEEIAgClmH=lIXy^2M~&n=I>_Ry7fTT;ERP>Z#F0cs&p`NB zxsNGHisD=g&wA`-8=B_}epKF>FJ@-}+a79%nT$epm=BUOB8?ze)eQH=M+UZbj>X3y z`KJJ?%`IyDE*|oxG?#f3J5;ohX6a_I|{bc@JM00s*JI3BG%+oO;>$&T-i-$f^JdR2u2yM|?K*%r1U}ytYl5f!og+dpTS}_}wuCiTzpW zh{Z3s{Wp{?Pv*$*imjKbP%}+Q-K_ z7KdnioW_`uwyAuOevWRZ|2b3;{g`Syy|}M^PA26+2US*VsH}-Krx$X{+7KU&!a2Y4 z>@D$3Th1@Cab8d-pzVj~alJ=JHaTA$ai)_p5jzWMaWv<-GrSY_Lt>Ay5?F1E435Kc zdy!i#ev)QcZR>_=8t+S=E%ZV7gvM>c4uuok(pI4Nfcll6&P_7fC2 zMSCrDp>Yl2>xeajIXiG(zoIvZ`R!iY~6{o>hcY?~yLd6M_qu=CdXC3a6%h(|rD0#RY!EAN|pY zg6H6>TbjpISj|MeJ+8bn4Gh137&i?MMInA8+@5^S8Fg`a0+< zJpHJId2y>x3@DaCnx5yH?`QCKexBd)Q$W&xq~FcGeqA3Se2^#IZr;*UbpHII>{lN8 zYTLQgj+!T%C|-2&qUgLvk9>UN$=4vWfB=o-*s5NZNpAH7zrL2(UrqedZ7uF-kwAWR zAx1W?sJHuilA5;oJOzyXTK^s6N$wx%tDm3njX&bc>aZD1^{aG@36;Hg3lZH%T5Nux z{M@<2Vr1U9=eLuS{Alu2?RS6gx3=&6vtQZ%&7c0o_CNjW|9SiKKmT+2CLe^#q7=Dc zan6~-hTF9+q_K!~;*nMQ;^&D?0jQlt7wCuc9OurCUUFU#aTw@`10Fv3o+tjWfd25B zejizL?~yjnza9&)7+Wn==BsJ3no#)+D+{vtpM}!O0ioEwI3js*Rehc^B@W^ySNH&! zYweXv>zN~>-?SG1bj_CJiNz7CDQ=B<{vw-W09mL=#h-kjNPXFS|NRfQKl{^vhh_Kk z)F=y3>S`wq&ma1pU-pC76A>gO2<*EGF7MkO;(1`>8yWl4HF%Z9`PjLh?C=U{wsqCVUk8af% zMMGNpKbn9B9);njc%c}7#qgpi0#;Om8lEkfVV#pZ@DLe=4w~dVZSvrpna+HLQ|PvX zN@&2O)$#SBI*8193zVx+1gD@fdhP)sIL~UpB%8Sq8tC*hC(yGHN=EAnEEUgz$Tu7R z!)1JBKpSIB6Rg;yjcwTR9i{Z~f%5<;@f`|BDSQf*;oy6W(e0da%t1%DvxOh>Q?fn* zpiL7Q^wjp#_#!n;4gW#%f#zCxj>lBd)wdm>2_VM=x;EkbU`WMP+Q|^@3dnr)i(|3o z5kuP8?$S-XEO6DW!;wL|dC?2EG1ALkqC=M^RBiZwDCEn<^&ZQ9z!uqlmFNn=_%puA z$K;$9ZJ*C_>;vrfWy08Qdj;9<7$P{$OHcbwWD8Rpo4l94Yy9q!K&T6I2$)8O4ndWs zoay4Nx}8H?kX$tJh!*u_O3R(u?CTkY2=zt8inb>Oe<^W;y_J7@cJk=L_hbV~ozr=4dP`hL9IMQar6 zAn^&@JBwsHJNI^-)3zisr6y+Q{j}1Tm5To}n&NpvS}+3Km_uRjn}WXMDQdw? zU;7;#_}0asbg?uBBz=D}Q|!KxvkhJB*#zobe`BB;_yWbAn!(MYDA>`)*GfUK6tZdP znyP57kp(hT-|R>SFP&W5jEn`LbHjiHLMrIz#-IiRhrz=cY*+wEJQZDi+k}K|{)ELk zvPr71__u#~`nQPYpdWcRXonCgSe-1(XNQQj)W{PKp@(Xg36YCM+V-n`Z6@@kZN=JI zCyJur_fb%NDQ6BP$Eae*^3E5ODotK<07S{-2O`;ZWy(HnhFkMk_~f~RIkY2DSS9|V zdcF*J{&=*Wk;fB5^L&<`N7_fO6rSPJ^FWqtBl>(~eCBwa6C^WE?5pio0%Nq(=&89d zKtWPv2&W5WDC9gb7^fPgo?{8!Q;4NFOttj1m2=q;IAKXT&9>`4&@5+N#Sv5-K(K|^ zR<%oH#@Xg#!!a~Wvtp@m8-LnpE6qVX+<0Ym?KaZ*A{Ax-X5X6RpD6)2ve7u7BrO zg{)&i*JwHSl@!-(%iQLT^YjT&B80T@+7d{n&-Myth{O7UW!0j++fPs2d>HJ zNU5JDMA}&w4J@CJef?}P>zOvL=c18mD4mMeIpF$Q=ZOaow3z&;a;&GO@z)r3OmzIw zhRl6E{X4Gf@x=MGVEpnP$KsDUI7+G7ej}ib-~GLz#c^`OZvvD5YtU{eW-Wl@2Tudv zed*Tr&2PQ4{qFC4cl$5D`&)kc^e_MNuMFEer;5Z$CkuXR^CmdC&_9bL;uy2%3vXt# zSnB|zYW>bPiq0MGf?b94DEBQCc^V!0`^u~LHJa*z(02T_0(y|Xy#vimi$9cM!y!kZ%8FWPR*Iw6snk6;v zkF{8>{Hc%c&tx^UekCoojIk4TlA6NDH+iRc3ZJTYBy1u(j;(+jg!!47`aSouRAJ^^&z z8M)+$@tR}SeB!`0*-guSVhjA_#FpYBxo%G9oe!F5iv}pXE@kd{9PK`SAd#HW&KN)} zM9aY`d(0D0QVR?7x{e3tkmjA{7col!1sCU>Zq!qgbIrT!o~v1~TXo#diB58yN63r( z5r*51C901l@nfR$?qdQWQOlL;4LLGqOy$H*bxi8HzjGLpeXW1>E^-NlN8#LJk9=)%~ExPvx; zxLp%_UV~@ON*&C?HH>z_b5sKs+cCjD0eUV~yU`253q{ zK6fOh$el(Fb@JltG}rx>pze0zs+(M#s*|7a%i#i-%ZKzf?p_Xi$R=PKE5F-a7x=D% zH;cz>cHKHfJBWNKx}HNG>(13#w~$FZ7vaK==W<`j&-gN z8?Wn@o0vnSU2tC039nyg*P3gtS*D%P#nwH?zHBzb0*MNRq(LMG(egjxqRzyO+ z<4Bz0;-`X9#f=!{iogDfHbj$hp)w2>&tR645EqI3bCDc9?L(vC&Zyw%qB?<3AA;+? zx-}27wc`qSEWe8(2c3;85I{?Ry5T&6uO`t7hULL5?%IA3T+Yy5|{|+W<$L2 zOUJSdfTdB7yc@_`#r4(4?}?h5AlO}Ub08N=*7N|@4F?o4mlB_X&5ahtHvqV~7d=Hl zd=!VEo>Ks|8~8J%Xq+L0i%{v%#5Z5WR}2<1BSI4%BJvr3+C6!LGGJlZJT9;$uhBPe z-HDm}6yNjx9NE%49&9U|+nuB{jIRcPF(ZR>>^knsb$7eIINdGvDb*PJGz@l>)2&AB zI&&|*%+(X|!)}GHC*)|&DHR1Dzfx>3I6qxt>IQGv@ys7KE^Hiis((2I3G;8Aw1*?^ zRutwhUMzji)Y^Xf!FKake{I`dzNae~y#dK}Sh0M* zsq3<#E+#%n-M;ZcY-kpCA8C8=;9-7Sv2^TP?N}JQfB&Js0va}_1^mpp78fO0Iqi57MrCnv zie|rF@D;*0Zfc=Gi>BALIcLh-^&2`*DOPGP42ySD?K@fse*5h=x8L~Be|`JIKm7ge zmw)LO^gF@#w}1Hi|CoH?n>KRC!iID%86Pwd*&u=%E=VJ0I$Iaew-g_x$^~kM%p%`20M)5n*o#gk6~F;=5tA(kYIn@loj$f^V( zmgTkm@(4>7JJ*Rrws`KB@c=^&{$tMswM~;;9rw%&!U4HNY?HC=MGotr*8(_%2EK`& zW3c=-4?pO$F$NNH7_k+nkbq~mEoW4n`#fLZDkgrDbAN3B03ZNKL_t*Jnb&Q%jaQiB z^DO9N<~Ao#mG&=Ls`HCE@H1Y_jVxv&pZVhRiDQe;K_egOQ|H*MMZM}1L1aA=!xBkp zUE28L97)fMK&mO7znSp!F+(g;sTtQ(f7EU2|y6dk#8Lf{u584q(+W0uJc+FWNMP(tQZV@;z>-&3pn;Q zP>!OSV#Q7*%U@1rF63I{Z+k<-c0C?K%D9m4m5&I)L1#;0uDgiddIyn`O!RwQaC$Bh zZ^NrKO^DhtTcYsN_TB~|tJm#%?`@CM`XyHb8PDJa0*rVQ()oLhftjVd%U9)P@LQ(Q zdOXyJrOh^}v47ZFiyB@=200V@qze;5%~7NxV{G+8QKMRU5({dLgYCu!Na*iNEbnP+ zZr!1vDa8foz_SmhHv(zWxGc9R2y2;yFSX&Pa&tzD(jd$OZJQ6du}WzsAt9X zEdFKUAazdPso`8^+-0ynKN-e*-99_Zo>|_lHqH=M<|W$G_s+lTOKASn6zP01$+~@v zq$gn0&y#EZKk@p!@GeTxCkh#Zr?v(?&ms61@mhba``o|MF57;Vt>ZkoEbeD1cgpAF zAg?>vMrQAOAN$j@=A+v>(oAQHUDy(aUPE@*wFi0dc$sM%@v;3&EZ6O984j47GLZJ% zVC&BmU7XrMkpVTZxfYWK7d%K3TwPd6-?|2bj#m7k#qs(8=)du9zNFM zWpz@G1RB}c@gT88gMIjhh{3W$LcvC&F{o2=A*SdmvG&5yiM^ymZX3aiy=fD!Ww7=5 zeRVo>i>->#Z-$JxVqxqL7tqEnXy>&A*IeOgthBU*rddLAA5#1*kX1%)cNYjt4TT7g zE==oax5grYk$#CxKgmZaNzoJ60DJEjD=}c5Q@fxU(MqMsIGz$;Xcrw|7V7{Oov%`} zGfPb_XFhwLoybNDpI|)~>C?hljCMRT4wy|{1l?>Y@oARW8R;Y8*x$kSIYUQ7y>a5I z+BUNuLp$9=XJ;qlF^{q7FIqeL0j3Al2(rC{EzL$Z7Ebz&(NG86I93kHQrDQ;!C`~o zqw{c%Ypgyl*YjNSPS?}xZjIUoqlJsz?fNv{ky;sGY#P|{(kY|{Z2l4Alk`V!KMBYM zx-0(DCZrCB45Xbveco1+alFD)Xzb}{(47DaRNl^b{UHPDazba3aE%vzo|fge2Bp8Vf`y zgeOPzjAq)xWkK{h%2McKj>~fE4`&S^9ctdx=hy%&a@j-ELc6}!`4Lb4vOsDfX-N(f zetKDI{4Ve#{r)d{UQjGMwlAk0vptZA3RbhDky0a~4$9II+yi|Gg)VXP(t>#wep$5O zk2O6zA_iL5wYzak@oUle)~$E9ci(--zZ3i){`T*-@BiB$Y=8X6f3p4ApM2kos2IqZ zN((E};}>&mj0H9&j1SH_jVx|BKlu=WEn!dcev+8BuG|1VluQ*QT>OEX^L6Nd1BwBrS@aw#Wx%#G={M8@~OY>nXwc) z0ZX3oZdr0c2kTylri&aC#Q$K}aof_)Sn$%4Ud7^hE56-y@{?C=8dI7nvL+UJ!LoDY zR@o7rG_on@ZW}{1pzL#FAy>JqdFgoq6&>N4PmZRfm1pb~Q@oLiH1NU4U3?^{wi`V9 z$(-j>`v8XEtgj%Mcm7a8ELv*GoPDxAaSSMmvtV#q;9*fMfGM81wCzdcwP!I6ifieU zTOVf{%X|<38ijFTj$x7oL}>8pcrr9H4p4ksPajc=byRUI($*Gl%(W-@iC1kEoOqpB zlHcg_Arz#YJ3}<6^lcwLKJ$SPT0*w}HOFLy`Pav?B_!AO;#K>Dj&P7ifF13wttT4J zxQLk~B`ynFLEQKkDCCK_3q08Zia*W4d{sDdid*==GG0-FrZJcR#&Z-9?M~wL{g?ZQ zs3E@d1YY3n1m4K1WP(+2u&F&9?*6WDGSRuq-XByHJ=f)?D^rJMf zE)!*r_ZTC;$!p_%dFnnEF6+^!7Rx#g!*~;WBnIO-8jbNBD$gz2Hp)+Rq3q}0#h{H~ zsa@x&w=&l`c$7Q#FOfq*ujm}Sm(V&I`V#kd(H;D}h<6bEdG3B8X=tNe9~1nnS$Ndr z^(YwYYr&k|7vaG>;;sI`yGVb^whxn%*50Qh_p|8hm6_{txqb8rU#36DxH}ge@8m!G z^{aLF@x)f=aN<>FhVXS9T`zRo1#Vt)q0!2H0o}tEaJ|GzAD(Kxc>7Q9ek1{siI@xu z**AM?apMa<@3zoHtFL0@xqZ-%3+deOA|p)T42+Bf&@CDl6a?)WaWnbsx;5dZ513UIG|> zHB_RrHYbG~%-$-yBjW_c&LAIxTg|fotVyVJw0I<@df`E?d=PKxI}4IEn)9_P##4CC z(1<%Gf+%jgQg!6f2w@_&;MAWMf@Tf@p~Oxq?Q2VzWx=11UGkM!*7j!=UFWZ7!yLfR z$l`9;Pe+JPJF#cDavEi?)N$7AHFMC~*dRog<013*ghvOXbq2{C9o`3U@b)gHr{gSB zyo|Rma0e+w;}rk7Zbmr1$H}EYRXILbZL7`$-OVWYXotkhMG2>3&Y)X}Exr)YIu_v- z&V_lgT3a|`%s#gJ+ydGLwm;;&Z2c+&SRE&RTzr`Phfvld_^e~VY@b3zlsC_RdvZ&0PntjZh?z$uth zv;o?U8q4mk_0T`aoIZB&(&4WVpS-;!Vrib3W94l-UBcZRj+nkf8Z0+ptq1C!dtuM2 z7fO5#<}*M?B=cY#$1~OjUx{!o#s!X;jL$ zw{;)<(I0JhzVn@Jd*d}-?`l41k2@HABHCwN-8WFd}4SuNN4>3lBrtwTPR z7_4YO#UO#cwrcmyFKiZf`R&@r`YPl+p%w?wbM{2XXXH4(Fe4Yr$*M*3BC1`E6*4%5 zswtM~0$>4=uU~%5*Ql~A4o|7#so&&AWTXufG*cAx)oXlR@y+f2)rZ@gZ@sp?_Qt*K z*MIXn+kf*f|8V>1`|oXk`4>Oj{`#+exc%Sj>F$V`004~dA!c_AWeGc-d<&azB2 zFo0v6n3q6607G)VYqf2W%wtcXwzQjWkxTPLDpud0dJ&x)V9hIiFSr)5?YZUcpWr}5 z&aon^T(}fgBtptwu{nmtu63k<|3ftKvv6*|23@Xb4l#Zi&)9Qr$`8kbZz8(gF;-3> zVksD$*J?hL4W5{_C-?(!>EZG84`I+}9B@Oy=aR%Hnu;SZk`j%r&vDE_<~|<;$l_xk zzm>~2YG2Z^U$}rpk-)QYtB8huPZGtzYloR4>v`L^fMleX~+Q*Fl+bz^`%i_9+50vwsz^U_BAA30#FFU7@J8N^MVdb5VdEW8g zK25x|TK-7CxWD=$uh*`_Sp9=Zf70@yKrHChuyo^}m0`?FGG5G`7rh?tWG!~swXF!Y zeCPF9uYvwxzagZV3kWWpb+PLkYH{>$Iv2Ti3hB`82^TC_mCqPMwr`%8DE;D(0Gh}} zxNdlg#0>(tmZ2#*-uRhG3JsP^38vzPEV9%n+YkH0g*&z@sR$tBF7~XTyV4>Sn@{V< zV{RZ6J5^nrB_{eEpW0o78$Eg8++e6ne6TO#UD@tSSYM|lw!K(H?F|zl0Tn=;+YM?d zTOS-mype(PN~Fz4b`e~f1Tsrh(sw(|TzEz_IgSXocF`AAqVAiOj5{^zCs#1q-!f_) zQJrJ65h_SIAbKQAzIp0)4zQbo!*sNnwgxjL()x1masRCMr+scYhb)nJBXZ$8&yxX6K;S*W;*zoer?p*@l+#I62FnhM14H{!@$X1n>?ssBDFH-ZE<1v9w z6%m(SQ>PzMFnwwI7@NXrfj<=&t{5Cw;e#SSQkBrk56OJvNzk(Da6Y9psRQf?P6iT{ zGk$^T9A2mtV~t->(XdnYU>{4{yG$L78Q9eE8%18hD4PAH-8xg&ttLCs&3jgCE%#a1 z!};mGU8_v`IzfZ07jM4$nb!msf3Il4hjDvNi@$GZ@%NiI?|3B8Vj1L?Utoigy~VZL z7kK7t7diQp$+#C>dXZZQr<%{eIHhu$CV%pOn*AA4iIdmWQ{^1;DbbnW)7%TG&t>OA zqyy8yd-S!(taMop;6W3k+pfD)DyJ&2r`WXQ{A!N#d)4=~fX4zyU&|PW3)zPcw<~%I z`0>B}{&xKj|3K$Qe#cf^<{19ze<0eBj**^!)97%^s-t(h!F7_qf>H}TPagAi!vZcN zyz$15aGEJ$?K8-#GoPzw>KooId{W6TL?K zv7Qe84}K-{kAM8L(~ti0gVT>c_{r(R4?j9R{N&TqC;FYx4!n~ z>7BRV@^1})?d$L8w|(C_Q8L+kSFg)|q%pLvk`5iBnBNP4yrqf16(fr(@~BZIArnh<5gWde%W(9Lg@($8u$4y7xyzSwX_d|B^_ zRE$0=pBxht+r&WZFu{oLOu*iJstGUjk!`x%;&+vOvqSvkRfQbM1U>f2b-p0sNg?Uj zS7JhxY$a%5ox3CqJbnY2*kxBA#@4eZIEP^62pBN=v#hxys+3r))VY>u_D5JSJfSNg zWZEabY|Yc`oQAmXu;oPr;qym)j1CsJCFAi@eEh&Wdnmk2xFIaMeG&(|$XnJ>UU|Y# zI*!FEIHC%A&Lv`O^N`|OJW)$IxvBhwTY6-)#tyGAcONE${#i|;|qncjXW#9NE07v zOP9EH|3_aXvNZ{t5gBJnZAipl+nSQcHp+rupT7-fDKiHve)@DW`UN?8= zrJ=|OeU5zlk}S2>pf|2czX`$HPwRC{FQW( zBiF}VDSLmw7-UayNvdWaoQ#*U!>h%%Z^RD3B7R}tJ_#hh69AFQ?;-KNo6Wy1BN0-RQmymjK1Bl<9k6&ldcqpq{<%xa5g zFGvbJHQ{TRaKY_U7GDs+M;{@UI(bjSa#mB@R-!CZu>&rs1yx!|>ZbBHzIJ-^%{O%c zazi&r9-e;klb`tp67ghE;J;4Z%XG&Z0#3>X=XQu8gCnYNf^UK^OhjMxeG&>GpV;BV zR9L=X0w*`UbAqpCOsN7-pC?QJ7pR&S7bj*b*R9Uk(8Xo!G@&cl+b`m+WJLP{VJ~XH zRk$@xixJlDA1jODgknQEfv1mcXg%d3Hn}BK@&x07FXiYok_5aoDtzo9AGFCqXI=K~ zm8ZHC8)L`$(wj4;b64OUEthnTvan*nZ{3x?+GrVQv)PY~Z%|^Q_!BHKx=0W zT31vayRryST|Da~*SOdTej&}pn;xFF+c!2C!t9Uv+^na6xqbGXJ9kgty>m|?Cuk1y ze)<<}$2E$jV(77I+aMT41gi#e$aQ6vZ`xVuTtYntG5(p-o)Aac-k$r)+U??jq0Z~x z)`93=WVS7Qg@)|EsGW9s8hODQ?u`9nbccuZ-LiD6OIWTigjBW8f4Y6;Q@1^d6y1|H zYH(KP-?rx5M48}%$Rgsgt9|xVuYmsa;pxf0``y!>fA9}a&-6R8o?w%#&#!#HQkt5O zWw9yQVn5D3%BHqmw=HDx%PYzFXkr2nWGhQ7%Sbw61w@@*!>_4F@TmS>HVBCy|b z6Gmo+jLpRQ9iAAjS8emO_3b-)rLkU<&BV!@Z@pox@Bg*$SnsF$U0!}u`cHoFpEdEE zN!;Xs>mMc>nXJz%Z13CwE1x?&vF+asme11vRO9L6k00vE;*U-b?%&gI6F<;TOuv1) zr}`iK-XGOdm2(0q*I4$}c#}s75sl*FX}wBhazv}o zD=?!!CLulf=-goq{rKR5l^6O?Jdb(&P#-b@%H@-Bq($GcFyR4==-f=tqVZ>cMX?(F zfyk5qn|Z+=0v!)1#GlJc8PvZX?zS#GuH7=BD=B=`E30|Bx3~RvK?tFtBQY>j#zV&; zWIM2#6w3r8lVL%OT72-j z@f|xh_>YawW@9@%$-(b_j-B|+1fLfP#zSc)5sEAE!ROgmjfOaDNg0&_I`nr^gLnGK zmAEJyg`4wm_(+s3Vl@aT<*{<@oPuLGc`oosSWJBS1tjdtM)ea<&$0A*7UPwPYLJm* z64v>ZG9d!*u5B>MYzAt;BIr7yW#ZTQ#4ldkF8#O)zAX7EYdhje-1f(l@$!j%j<+B3 zrVrcmW^&fCL7TB4r@%U~c;kh*q%Kxvm3qmVhiBrAeu$@*ZwyMC^qNQ@D0lixY>X|I z>KpvP?(U7w2}?1#bQ(2yNL(~ z&1g*ezSjLD`G74^3BkE49rH^_B#)U59K5~%&_dtmXq7$Z0SvY6Y1|to_~!V@SGEV1 zmh0^q32~-75-CXviH9GW*M?}ON{zX25pR6yHgQ%K`>Jl}v=?1fY1I&ixmgy;0b@Tm zQr!@zd|Ca=eiNAuS}QGO^E)7Ww(u`iTkjJ8mz&->`*OYPoG)H@fG=%VuiGbky_apD z`}HDU5*UN_Wz8Szo%=M!uHsFpZLM@v3~iT35+n<%qwhw>L+!=N5l4 z%5`n*eSDtP6}RJgp3axYZx8Xh>v*%a*NFC>t~z_(rj4M0?%uhhxwQv6ReE;%`Az-Y z5Q_~+;JIK|c@n7O^~>n(omtz@!+Rco?`7mU#k;g`HXX4caAZTrYx9@mqQ$IeqfuXD zS$%2Dm7nw3mg;@s^mSq*;|bshi-9#4I!PIra!x0$eZbCnEkgcx06y8R_Jr5Tvw^b) z4h&8XxYp$xmyv~{HY;=Of@!opY0Py2GMwP}{LjLo(RgT_=AOSC#s z)14C(OA|YGRs=f|Um90W{_0tW#KT<-`&I?bUeN7D)p#Ep#%-QTI@=drts>XXmu8|s zeijK>-L5*#q0z$TX(f9t-j&e?cJ+OMhUNT~aPWm?{B^8F!2K?v4K^UVC8xhFg@5VS z7F)b+(s5Z3aVL$=`?10oOHIDc^U;y7-n8sWyQ)5O6wSu$a%*)f11|bASJLvfQQ8w^ z>%xmVxo9_JLv(u)d8O61vj=Uv7x}&IplIP}40&%W-Rd${BHk866B`LA?ynWQw$^!3 z1%@Q`zokLHuq>u5v318JiwwK+;tU^&D7LR|X=T}s=_w02SXr-6vesHe!kYxz z;I&7y3_X0XSW;9Yr0p8{md`p-B03ZNKL_t(4nuXgj1U5ojsN>c(6o#|ckUci? z^3>Jjh#6uX?^Np)F<*3(r+;+<`ThHE=y!kboW6JW{@`;vgx5j`Qu_`nQtrJ-j^DUy zqUhPnbCmGyyOPiGJSa$yrH(=PbHE*9u1LV=2wQ4e!ns;s-25MD|Kha0akuwGxu9`D ztY=H*;f($=1jl)9`_OLTTe^MdZR1648)Vwu+nXE#*Y+`wM{wsT*vPu$=6T0(tAr@P z@zcJ-<&Y@^Amm>DE8`M{-9`1sAZzwVKDtFnnuJ zvr&GaO~*~rl`zoQOGgJ^dO?=0BCl#^3?DX*A=Xx4h`C*c=beNC@rzfv@ zO4!>y7|5_zKH{MXG9>MG-Zxf3vsFi7sV23G*i3Hn3R?1Z_x|mXqhM!kHRGd*5_&;r zB9JK^zHG|Gt$!a`6T(bnk-O*FP_wT9k)~(aMyKm~L;fJTU-h9g!=j88?|L9NL@7w)gjT!j@ z4l5|0giw53)cf_P=BcVbyRE*U<|hH|iB`yK(udNh2%-+3PB#XbVX^}WUnR*F6B+a! zGO>`chZ=TbGuN1iNKW#8noaqn-_=ykWE+-;VU9ByUv|JeuspFyU(}a&IsGJ$8JEav z(UZSSI!oAq&IkUp5WDCq9H(l&NX`T>@i8{VlOt?i?LSWwJ1<}~7V#ns$z|suBJ#jk zX_XQ>LZStqWn$106$UvbF|Ni=%bO@1x;IaDM+LfZC1`6}Va*H5supDYG9Y|a%+GOp zOyrfKb>r(r7)!L0>{#Hb*)gx~(N94O7#5JDE1eG)JvP|KiGcfB zEGt4X+xQ5uh+g(-IVS?`+?XZNe%jrjD=r8OOiF$14-LnPO)Yap3kACtyTlQ)^8rsF z@Q5#xs0f5@Mz~a27?1w4id#iQ7d&!E6^^9ojGK;-?7C->~DhOt*dZG0ubCDRF_}i?`M&r!slAcCAmvcTnqFHp%wSY_7Uv} zZpEQ~S&u{4#dH+I=axC?J2Q5ye{S!18x9<1Hiy}rmF9Jsb6RZZEoeFMpiwAPSsWM# z;(Tk~C&eQ#eWK6liw^l*EnA1fe@@6u7tLm5IVT2^FANG@Gg~0v;>KhMc0tv&rORu9 zz>qJ|mjrd46mg01;K5zp$k98>1;oid*5KQ?Evs&Qhb208vLMX`6~f?igUI?NlEj0B zL&4##V8j`<_`!vgV+59q1HY#t>qFoFrm zJkgtL5jE16(3^w3y`ZJ-SJkQ@w?SszE;Z6db``LWq)bDqFj6dP@~XhBBEIunYYRF! z7*n~cDXlb|n|J_E9k3j^NHIxou~bXJHLl4ADZb}vrV+jPNd0ec`lOet$Q}I4ZQbpMcPWH z)#%UHJ4f1PU?8MT<> z)4!=3_cwF`$?yDr?=DaOGWnZv#YDk)`nP-qDft*9*zI+^TNHc*h2di_r5HYjTL8Y6 z%1xe#D~5{U`Xsq#`%SY@N$zqCmCu>{hR{H-xU`L}p>9!jePea!|AtqMiu8!}e43Q8 zn_jpezWT7%FNhDau#a$$;_P!6bd!tpQp{~N?5}UqOW4P$xsON^B@uNsxsj~f?E=aK zh<-&@uh@L7*ZrauWJ=X^(e(7m=e%q9^y~*eINkW2-#I_KYxfi|irP$U)^lIXYC@1VL6P^Wuswm+IfKij@}ozOJ-Np# zEbrXYcSjWyzag`3e*l5)1z)-<;K%Zb*Dw3L*}P|`58i*@(Z2omJBt1G>GRL@Tcz4x z^!Dm*5k_#>=gUBWW?QdZHn9!khyzeL796|niP#64{AB{$7!pCsuS;kR1^k z4QM71@>*;r6*`BKX(2RqE#OzIig-(}CjQ#j-&QW4oF2S!-+lC0^-nb^4&LXVeI7rQ ztG3-^jn^9Aym9YzSFg~&b@Q<%f%UCyT}!<2<{PKq`mG=8i?1J@KG18XeJ$f0>7rfZ zGtSsq@ie~FcfnR&elp3xZ%1>XkK0_!@q{=KhG9UkjO|2m*5zKA@pgg#EQ|%uo~raH zB5(eKX$zV-=eI<)NR-#VI&*Ty<06LwsLXNh2LW8c~yu>S_ z5n)oUM~5eFb^XP0$jL_En5syZYf$|gmsKW#L}PMF{cP9K;Mk@dxy^u3zjzW0TaFoN zd}+%KEF9+opTJYRlE;VMrw|kAOYf_KJ2>UbQ%MQ}YHXXUHcIx;_}e53U;5F(o`FEv z&w`PI(0 zuQ*iN1L=6o8K}@oM%`?mkaM3phVox=XM2E)m*~33W=%N!F$U20L^9)EqRzWD&}LMW zG0|+7w*Iqyh{$61=r>jH8-o9XZ47(|N{g+l&NhUsHF)||;~^sG<-?e+uLQ+EfRXeL zpRomwwvQWnEqiHOgFJix!nVVHEMtoMAG}H#Uz2M|I}hbI7%?GayorzYS~l}!H^E7d z?TvkxpY|4QRkeNM$vzJ~dIPj9RgxDtBwq{it`WcfeB5?U#d8N$%>F8f6m&dg+xB8C zYG8sw4psLy7?Se}+kDDM+iKCX&AOr76t;Y5AEOn;9xtKErhOy|{sz?*#v8x3r zA3{yEuk90ot`f7Z+Sq?iszKCre(+(SLR3FhpC!T>XX`mvT8;dPVP7hQj8nGpy2u zmb=E=bQm+-XU{RIIsgAIuNrTg?QlsG+u+qbx^lmWzQ*3(PW!N@FM(XE+BhwIWb4Sr zUa$4Pm~!>#q9@I$lH-hzReKi!YuSaz_4>ny52bU%*Z=;~u=w*>djW63IIkWUvd{%5 z&H)xmXQ9hx?XfP|Z27f(5!vM8FsHlmn%wXGM1Q4C+hB&Jqq!=vG5P7R#L2lOvXNV5 z8ar}C*_hyQ3#1~K098?^;hYR{GQh$~g)g8uNj4sI^gxLoAa=qEeHtP;i*n+M3I}`f zsB1yjryRvIkrO9Qwz(K_WY#b%HDL&Vlk(5?YPI`%6&gEzo-*LPYb=~}`^1~e4Q#0` zJlyXkC#!MBx8PL8Loe8Nm6D2lDrGm#6n)%GlgI{~HkOH33}3kkU9SlQsH_Z~#)RJa zDF;Lu(sE_i#fWPrX(clqA-Savi*-umoe2@AvjcLHfY#E4)?P@BIFyAe%=T{%TzSzj z#$0hjhZnbO{=gbFs9Vq2>g$xy|eLENj?=U~pB-R(TMk zAy38ET-(OhQ4NoF){$OgTAgQI#<8(w z%PZj(W7WU9evDq@@eFyj5&u_8`Y9A}=eRGR)fn|fd2Bm~GFE#TavO=-eipz|IhR_n z8gp01+%UAbwcuN4hedPl z&+lkL>aDu@PbSvG^d-+n$opJK!MvjP@djM#&UBa176a4=?n2*GEp#nOV}sY{1&y=X zY}zQR|5~Q~>GqK8N;7tOK(BQzT71(~-|!min&p+cs~@jmEE3+ZH}Dukm!0iCM`Wbu zqIiHJ+tRXG=VKV>H~h{P=uK42+-&D2FKV|vg5gHOYpuw-Zf&0)Km6(G=3i*i?$7`H zbo#B|)NB{$eA8E-kaDjb1nDt}$nMamyu2Vr3!Vl&G9xujZ|1_VefjyRF5K8IxiNA_ zuW~|!oH5w}C{Ocx;)C-ojA>cVdAf^<#*1djo=AYnWzMy|ojs7>;A!#Xg)8Z|(lU>y zUq932ZuSg%noQvT{`dav>CtD8^czE8ligc7hkr8@#AuZ9_!a!vWY04FHF&in)s*A1 zu~Ms+3D!{jA?> zzOC0tKhYNnZtF?nCwe-XiSj3!w9voD1d|${>V-y6WtY4#fpY6kfZu-e*6F=(yqAd- zk6+1Pn~6({u*yEzDXqME(ulhJxT)7o(=Wu6V3?rEljMm-a>jzK*f}}35yq>=f$P|y z?W|bb*E^Pt&z>~VhQsgwt`k(A#^KIYpuQp+R_lV&0qa}=_z@qx5_ z^rV`xh2i`|Fa0)PTznFSvC?bc(x<#?Hr7?rkL9;^5=KCV4<2L^FB5rYveH072fi2A zM=LbA;2;)H(uM}5=y+lj6RqU#wv=)~%<&c+h6p)GpT{D7k})0N*hLl$ztUUD%cQ4> z>hS)#DBn}CZ*(_?3mb$*@A}wLc_Bg{djg~u ze~fJ*pfHv+Sf>WkY&lo$r?KfDaLALCI=5(z@oa`IWFp>~EsLs4ry_~IfU@0boNI~8 ziM_{!8CoR|!pDS{dd;`Ct&ET8mp~v>Fq;eLj*pr>%N>?se?$b<$pQwC|&Rdm=E#dRv{;=hwC|Y+L2e z0D1YC2E?cwSsKjOQhDc{w>(}RKKx9RR-e8W8(%EwRsE6t&TZk`v!iY2TG)WIYSd;wS3gC=vW`w zRao@TKmYvn{`)`P!j`ci%OD($M%w{x5iYb|l@1PqRgPY;_A1Dmu%81M*=>wdKlE<* zc1=6!-Rfbg&s!)t#&Yav8lgK2qWO!5&c}+89C76uw-Ky-QO0miks{EQ)F1JmtpR8m!qxDmoZaFa(N-jCK)1Hf~ibtrOc>vrqQcVy#V?Z?dY?pW6+z zDO+PhTpBCCY~y&5H)-hnm3Bl}qt|_0v5S%u>Wnq3l<3eHWotW3ArVQBTQJxbXcLsXSLt%9(~Inp`KD!<|$)LV3K z@<8-53FQXr^0M^gAiEk~>r-mhrX9Asv0PBwqpvDMcT?&8QH}Y*3w@6_*s84lcr#lG ztKg=dEqwUZm5!%M-?X(}?XQ;oBr4tq!S_zyg0(Ui#&B?&sC~<1Nv^pqPJ5q=^jIXP zybTJ=yJt6kv6U@X{8uBD4=r2AjH%Q77J##_@8X!sskL~Eb$c%-+}_Vz6gks*^@Loo zW`9kWvOl!za>~CY$<2P5{Vh%Iysd-lo7^ndf*!X;c>VLMSo&D&Tx<_GhL4}I)TteI z<;$Kn+DAM#f`et>51aO0XYV6pT z=+nn~vh%Ztr>DRByQiDq`|jzfzNE;>D5flqK2Ekf!t{2*O=K}FBi?!r(&F&w8`>1@8~yU-_aAKOazxf8D{c?o1&RCz&rWSpp>H_Y^*VX zC;3O3q`af2g89PbGbYy9j+sd5SSZK+DkhE5lZ*v!oc`%Q{U^5h;Egv=pX+>`$>_(A zu#TN9K1#@ZrArHe}$13-P;i^^~U*xn_RG@1@N0YV>-ni?D zYI4Km<-m}PM^D79(}0Enicc+>@K;|m=Je$lei_{_3P=ADLOeNlIz9YQlfr60!6A6$ zm0XB<>(;%~um8rcpYHYVs+Vp0lcl#`-!K-huT6L=`I&rY5{5||V)G=AwXnk*m3TrD zV@w=s+>$u?1142u`U|==ldCQy$k^ce&Avnz|1)m2_ZLooX^6b?^d&R2-Uc+Dh{5S% z8?`M@2Vu!M=y7~YziSzbfG;pm z7GddbFaY4Qf3}Kae#`KUuAB5zoC%A1-E0>mtli4587xYPe5g{G~ z0|hTsf@uu-;(laI6QA>|tQt0XjT&DfKu>?QzhaN$iD6@78!k(1IG@Jkiyq;SD_-NA z=p=z5{uxUujU7>;u+7>LF{Zx#_xQ3gW5sf3%p~ht8(>$o(qQzVjX11c#;BK^qMjW5 zPt&wiSuc9tUzlC=#+F?EO&^m&U_#N#9tSi8ODdNt;gUCGELSE|M232gKdS)BQh6&& zLm%AMFGOcoIWZ?u7x&-4G3SR7A(OPp8ldN?FtrHJQTEz7A$q}LqC9s;QHGpOZQ z8k@Bt2OFT#*vP%!#)SZ0&?wuPbM#!jRZe--zU}H|>)*DOj5V#x?&oCl%gE`~5j~IV zbMfa1{nGN6e5<;&E_mD$v-kFb-X4qH+xcFmx23av!(Q+??Q{Lrui9@u2P16sI<{*m zl+erSy@(BD*SK2uh_;Vm-wxIn;dNWKm)+Qfa^8Q5ZJr0@7-Xt|HW8mGZ@2++pB~YR z{Ys0r)8#7#e#$HB8fT+ww`R~^~)va zn@PHW@BuQ)B%rj71rE4>_9uUS`imd_$Uc1bxn5_cn?%@lA}gjcB^fY;D?P^!Lb;7) zzPU>~5m2h8Ga*ifa^Ay5C<{uy{89;D_K-16Hei=g=Rt&9ZtF&eq~bX+2Aq(LxuGb4Kgo19)1hFpdd}(!w?if12HTVH~Uxyh`Xr_+(+haxNB=W)W{> znw?QFbF#sZ`iKQ|sdh?CmwSB!+3w&Q3Rb(2%5qWqVR^An-+y@KGP{XXPeaDADoiXMTh5z9xQuMK}1rd3(O_ znN(>i>WlEsHr70yW%5F9pXb~htLg6{PcBBIcsm+w%aFTTRv(+@4Q4c?Q#kuklbGgS zXi>RXJ+yaG`kZl=$8(WMS#tbBdWCQ;okeJ=Znr}-ip#_je)*$*(2Z_$mOhyQsHS}( z8TOMKg_@o&yp1sD$~qVQ^yjC?fBI*qdw==<>Bg`Bs!p4ku#grT%g9NM0bp>0kIt(# z{}&P1Z34Awx~%&^*$<-2zm&^ee>Jj zj4`m}N1md?FA-#+_w}A+Y8uW-HohwtNa|FX?PBLuazfqQZofBA^c7c>9)Kl`Vr zkAC*?>Fzx}8LhVh+|d(qZ@u}pCZ_MnXYddPm2>gzN8B`76Um%k>x-Vw5%&Ct{BDt} zPH|k8B)QQf2G=V(na3yM=s4AiqsRfp3Y!?h0X`HenV5X=hF%xj{z?RK;&u&Lswzv( z{<;oLAmI3ESJx8-YsV#go>t|{tW1il3-x4hkSrr;1CuVJ%|0}!}| z;>)qPWCN&cf6P;|h7iL~?r{ObwS@lqDO~iWZQbZgBd&3Kg&LUi56jd5KlnPxgR=(Jj}5xVT5D?QCK%NOO0KC z*9hSos7AC3ej#HBV9-O~$%+nj`$?ZUR>?U}$mxR)s;sb~KXUHzEsq=%EXmmo>PVq0 zq9=t_=Zgj`>`(Zeb)I;SX9l(byC$7PU`xTMHEDAHOOyZ24RR^-vrQ;x0+{}gnBwZ! z5tG4=!Lg~8*A}5WiyTD>@{_C3z=N_am(jeqFapSI;j;Yw3Y zY{w6YS{xaCq92nVYyn3GpFZ`sThd>exQ%Z7xv8B6Z<%mRc!>@+jCb2(L=DjynTg$~ zwUILRXj9VH=&P4en}l*3001BWNkl@n3S%B)(VIw}n_;{m zN-FfL*2*UPj79G%>DR|Q$m?q{MozPz@ta)EY~aT=msRvIe{(AWvB%jp(Z5hJ-UQ0A zB``9Eq0KJ z%lbWtDX+>G2-lIhZ0Y)(_Gz!t{_XiqU*-2QEAPeYSlA%8$qjLfJNy1X*n_T=2gY9R z%<9&_=&u1Feq$iI(s!y~Vsqx@`cAY?Z>wE49i*lu2iw@kaa8AUq^R5Ibv^pzukx;f z8cXbi-tzr8j)Zi=?h_9Ql-)jgr3nkZ4*)8;PBgHtY|M*^(8RQkS{y#mDM;Lqe7III zMN+!>L&})w1BwlbT(2nroyzMB&icuLWghDNXrF%isrgf17&eLm7k+%xT?GGIN|rI8 ze`t`(@5sQGE)4N=0Yybk3VqC=5RD7WkW_(SK^>$eNXt4%=r^yJ0yfc7$xUvL}(h7Q5S!$H%iJa$9aQMfcWUDSJc!0Ta2Mln_{VihtK7xNQ8&tX^;>sNZ}OX@@Fc|L>#KVD_lpX7Z)ZK8YS3$bAjSIeBOJBN7ig?jUrE8so3qf#$xX&YcOYh$S?)Iw6 z_;{+PZ=Zeq;px_oessF=y>FkM=rzAAqhFc($XU4et3KUi8`310Cz`eWoOP(3E#CoB zl~59nD(HCMeEW3&-aDFzy>a^ZlMhc1KmFP1!;d~X{qToBJl*)+o2U2Qd++ocf8%dR z{psn=H{X&HOYO6TThPI^IaZv{akE_Wbv)sz^MB-6$U(QD@suTB#(W}~fB7%|)#;D_ z@K23(@1A}KoQX2+58nOyH)Q)A(Fs84+?;hFY5P1IvoKv?p8)HGTYWbAF%om#jul1S zSKAtX>#LrEK?G!XJu7UN9x;|%b-qt@id_u)=g!?cO^q6Hdg)_gxoev0G>I!88v00) zZP$52Mjv39IQQha^7iwO_4F^kBHsSmFA3wPu2J6L=WjG=0B zpz;MDWG8)`ZK0B@zQ3($QcW6(>^w0cTo->gculqNvrX{ibDr?UkJ~)`hd(m!30HEc zSHhA{Pw>e%CWAb|BOA#1ix{{oJ?#7UM2SV2U{afm^G6$;EL?wzLeA_9`T_t?H2!XQ z0+)9B)oaN(UdeIX(@G258Q8uWGzR1NCKL1Uw5HEhsE#K&cAC^V!4C++cZs-oB1f<6 zGLAi|O=2yh{AeOOx_H#qY!QRb3piXila+Vh{o3i{k3aFxEiq;pYmOLu4Qh0FyegYc zG{Ls1VlQR%ojXzaGm0?pF!@{9NVD&tj0}EdAI!LRKX_~@S02xN2_k*&{#1kQoJ@{~ z?L_mK08@VULd`u+(Eis-OJr4Xob;C@ks-J6^%=H=V4}RG~TmSXSw6&EUvn9C-(VJ+?`kOa5b%eqxM?7FSef(IhbY1^s!nkppij!iDPX zr0mKUyk!#Exg~cE^NLy}PlZeQ8I#fM?{E%W@@Yg> z<&(x@{={NoOjr@wpmk3AoUCmS34O=nNt+l{tNUBqJ{u}+@vOI$-bcB^5`WMn@4VZ2 z$3QJs4CC(aaZZln0~LJ=FUf;L-U|RAFQd|gsEt-v+ArGVEQ?Fr#H2}76rDRPx$PXS zdXX*-`5DguDqu3?`*YncmSYmF>`ig7$aqZyW=nQWCPenQ8oG=L#`Df-6O>DfijRo*BZ#)|r8j+)t6^lOjA_!@1J)b-P}bv_I}S1Sx=f`<3nEZCMnU!jjO1lWCgiaKB!&#!KsD?vkGR3IW{m#V2DE) zjj&s05no6J(8V#wh+1vYTSs)O9qCSAhP1?>u2>lZQ=c}8Bgd9j+r1-0rWDy4y|N6r zA_Op2TvydgTb?ayh6pJw>4YZvvI!gQEHzfD)qZv#wbaX$*xh>hVkjMpM|+LcMsQxM z;aDo5h_T(kYy{FcBW{et@<^;{6E4tAKLpwm5na_=b*0U09dp-S+oIEIor$u_U}s9K zoPB-us5D6CMw!MIG5L*dbN9$@i`iYd9eE4nnXN+F&@)nTY>-vyI@FfvF#(E0sjRZoA{_!PFjJgjg9vxrpwr^cj>{Ta{j- zo`k=I;_Fp$_|^BmvCi>MQA6j${kNNX0{Fge(tJykzu&xlKR0p2gn!rT*X!e774+?e z{nqR2jHBFi-0Hn>>z8z#y>J}YQD9#sIlp@My2rA@W%BE>{>V9f!`l13#$4>f^V3dx zg!9So{od)uZ~n&V^zJ)SVsftbs+@oNWH5?B&3>5kK%Ya3g`2*2PFJ7y&rYA~)zos}^h5nN@%!(;f4X~@r*Ut&{O#ZQZQqE-p3g%8 z$DkI&wlTN0kyjj!hByD@UmL&9rXM{%{XhTrzdHTFzyA+h`%5#ek@21Lx2@N zRk8=3Z4(pnw1voT^jfA$w9{7xvJA972gTo<_YwN^i{CV5g;KEEMu>1TOf@Fl9`#y{heTjnvNpIu?6e+Wv<2QV;qK9qy1>cUb z&-ZAxU2oSOfak&2F7a+LT0 zZaja9AYAMEcmX!FKKKF!MQ!VqZ)~IPQ??!W-f-=lS~kMk_3|)2d;bfCT%ajwm6jxb zG|dfP#w*qkja7gNG5vyDRLF|S9NrTqXXa6Ajq7< zLXWXQ;q_c~yD`&e;tSd@72N1Znt<7s79=;PBdIxd>@X&@Xun2YJGr5@b;eAfkzZ8N zEK63dM)Zc9rFw;a$u_AFHd<Da>?RG_@x?c0p-_c<+5w5{mW8cKBxWM=BUSPkKxr%Xz*8F%eP$f z_HxaC)n(foxE0pkujY3QjE${s=c6Srms>sL$YJa2Sku)p{*vRF>FmYM$0v$Nt$1n< zoB<5+H7?WBOGc6d$q{V3|t7rbA zRn4Y~jwqt{`4H#~b>m{5lOFgg<8zQ#Kf$*PF`))lNF;_L@7LMs0^b)Wk&cr1xW?j( z3F6m69EdrQ7RW`8ZwUDeO)@^wm2oi8*M)@rM~~2;Rf&%_BwmxO6sZtx&xEE1z&gp% z(KCvRj%p8uXt(&uX14*Ta2M2nJIl-i=V-m z-X6;~wPT>&`kTC!;Of64mygJIe296xS0=N=f#0YF^t=M`)%jL$T9;ShU{ema>MB|+ zlTxoS6Ur)jv3?YiZ7sgFZI`UXTi6HKtx7L_KDSj?O7)}oOXN94`w&m}!V|aUIvaC* zupe&jUVpSFkVvzU+D?1d92hTBq0cjrrB{#qL*YTTsaytIq z(4+>R@7#T$-~GLHdczYW**9{d^-kRc`T{)u%EVV0*k(Xu_+>XwZk%(QUDI{K3<|F- z9Z!I6Em`u>=bxNz{rE?xyZ`w=pKkoh*R|c|JkX**aK5M~N?Cf7_Xef*4Q>#ZDK6S;4m{=0wl-x~DJojVRQ*9ndL?DVq_KeCngKls4$w7q}+&;HNThd=#D zlbVlCzw++)GkKuNzo)u3;3rTxKjwFTzx$o|$!YcvvZ$O_YAhR##PlN55p!wo+9DO>hK@=UT|$rE#U#}{i+@F0|50CEFeHnEN0 z{**szj>YGP$cx7B4d-UPko?MDCeeA?lWh?JyBI9t;+wuNpcv#MlP&lOI57ArTCP>e zuMm70$#$iMSiz0BWr@p=+6yO7;7PJ3zX|VV`NVkQiFt77`%FRuq-X)e79|ejC-Sal zY{z~$jw>G7SNh#*(!s~Xqi zm$IxjW5>AQ@MlM@W!rWKc_#iGD}KU{OzOB8k3hDMYBFX#!K~6_Ov)~Ncj0*s<;X-YqmWFl+xld8_(ot(HV=NgX zj@iDeT6ug*eB>Qfn30`+I5{xmj%|rHof;}c7isub@hTZbCA~KGLzZDXiOsF`07SQP zS(uGC3{R`FhfoRH`i!ToG{tOI^skADz}oWFA>v&tz!>>lZ4es}8U;EI`6+KC$@ za&VF)OKw(<%fcJ78%;JOjbM}gEGEB}k^Rn_*5n3r@c z^{ccy#;avsHFx^FMV>if|CM9yR^r85v6cRb_O!BX&py1am3 z=k+)6(QklwS$GYD4vW?zd55EVP7p+B-C3~%kd4ru*NIVXz<>t=QrWTD2g&lP7uOA- z75|tKk&PO^pQubS;~VE4o{Yto_{|MIC$(5(?Vy)(Yl;k#BrQA$Q)W}cub`H`M>+bC*3R?N;0K7O)|9m5sugB5V(UDBl9u!^7)zAZ5|Qpxp~H2V}FI zC6DWtJ}Rd+wfM1m)Aj7VK!`?0gt@DuM<$+2Ys8&knf47vvuYGhM@7xH*qZE9=jaG- zc%AR~5A=lD$~6{c_tz@1^3UsyjIKPX7-9|SCY&R#6xXGUv~NT$hTt{ILf%!8D8w2} zTb*rdr+mHUNKSh`_g(bV?1$^Yy|k44Xb%Pk1n9oOmTioqs{eFn<%XVU<2QbPM-xx) z`jv%bi@&d){vA2|s`6JZ1MF{jx#l({BOa`j3Bl zy7@PM^Ylnh+vdiiwh8q08QYiJy0OhUtIu0~E8h3PduJz+hNos-(^TtS2Ifr@uqV*! zoc7z_`mavk{nqzSfAk;z;PlbQA8Eo+Pcv)si}U^`PkG$*box+}yZ`tf{|~bH)W6mH z{qKF}^zH9{TTLb@^-5w*9zTBcNE69FKK=aR&oxQOAi1$+wt?%YcDMe)oJoXW`ZqVx5`Og6@A|1sTIfVu{PH6*inS&&f9JP<`}A-A#UIGO{0i#_`w5_9V#D*2%W=F1nvuRzF!+e6aX^TFd)MclqEO z@z}+DN(!d|-=))W1Ip9Z&nUsuxU@bpSZ-OiMJQ@xi<`gBGco`=Kf=b4bAq(${I3^} zb^^aNzJ!5vNZLJP$u{H*Ulw7(fBeLYUfK`!zR6`y!pN#G$z}hQzI&-eCYCD-uw{==@}}|VFEPj-zG&%wCu(9&zT-Ps&^-q5a^y?BFMaN( zpk^@&g7uPZkP!NbT*{}lpW%%Y-H$|X8~AU1e8Ug6X>WX@Bf+FHmGo&0Thmp`z|%J4 zg}7ajUF#=4NaVXGlyTp_$R@9Khnp{S5JUX1T{tpg-<%T>O!G*BNlPCPD}Kw-vso-+ z>$DSZG>`y02(~-4M2n(r2MM3iX=JMDd%HlhSzUT8;aBV+z}IuKq!*rP-x+TuqrM#& zXyGU&2J-JVecWGoGr_9}XFcO@e%nY~axniRza1C$vD@PUI)C^Oj~mf0E&gIz5{!Gt z*jmAhbi50u#Z@h7a>+rPe#|hC3V7W|I0Y8TEu4mv#VpQL)q!rhG&n!tT&rXaGg=d~ zbKW*EF}TgrBt&mQe5H~UUB$g+t? z85dEAhgr|mwcl2;2KvS`D>k;74_?+bwh~4i8#CX7ysKQ+-w8gyiNA68Om;I?E;_a5 zf^i90#{3!J3lkRXGu;bLpULeBFRQo5`7gaqo|J#}XU-dlcMg^w4s)BhIv+=JN3^R^ zULW_!7h-IB$Gi6+^rJDAu^au=qdRlB$6DLbTXCyDB$WL<(kt$&{mWHvFK0Ae3un8Z zY~C8fiZG?u{q!n*X@9nnaRb~Vd*_myR9~sGXJVuM2Y1guu=NT_ZOtB3xILD8Y+q## znU+T`b@hP(8~rK-c*u1Qx~|?E>RnN(oy~E->Ry0vV3bGC{GOEwYBlev7BHPPFz%3Y;`bz`o)fxViu|Q743cZ5T@WN59c3^l>YTX_vo60&a2V=oUyKN2rzOo9mxi0szOM6u_S$4O}0x}#K6+5=qK;JMD zLy}KcRI)_J91(U1G}%UqgOo|8%+*e7pfqYEw^HQV`$3TzBfZCHsqI*qwhn7{EE;n( zNV35;N`*Z3BVn%E-Yw`0Id*L5ZoxXXQ97Q9wejNu#vos)WZPyNN1!dy==udkk=xsS zd07KaamIMy$!!Tx2l&Eb?jqRnwiTgOWdWttGUsT(2h z+`gkHfAu@0I>|tTg<2ouL-}g`RR;blWk4s*ekCSP!LetoeI~aaed3CLDJ!ymZ6@$_??8 zBToS6n#bC>OP*xY6IPOO)&WML`$|s?-@3t9df;Z_DPsh5Q!JjzC&oZL^TfIQd`e7$ zV=VAAFi-#DOC~{)6^h4zG?fFYYyiRGniE|D(4u@nu#9Ax=mrbEZ@?o)9wqR!XVD!m zei0VFcmuINe)X##A;t%6V>Q==#spV?TpQj{98WcwLLBW5E|CGA9DX94_$nGc!PL?= zc@;E1GC|to0;hU>>c}Z+tYthxM~**9`9m$^tlG+xw;TEH#p6O6BGcE-Ie3U`5ykdV zGbGqz8bIGvc59Jm)02QfNihRQ-zxbCi)}{Mb%Dy)t z9&INEe6@*{GKN6Lpi0Rx7HHy{pNdt92gtO)Qug-7#3^5j=!r`E11gT!;{Jb@iD^*$ zw6m~6mmh>=d-#}owjIVO#^n)TEMUx9Ai(6sIW1e@c@mlZ7=Q-l?ga4=ui(9Zj~!zP zpYg=xtmC$=j|2Y{K$d^~iUBBLOF1;yP!gnLxXYgs(J|s`0qY@>2Xn?-q4k`UEj^hX(IIUL{>n5s<+wjFjz&PYwb=!lO znww&nrG5A9%A@^ZUu;QMg|$!&*m<`c@)?({*0~M7xT-`&d70oM(ulM4L3}MA3oK)6 z@{pf+ZSi_#u%_&`o%~GhQEheph`+}mGt1%~6YU*+5!qKeC!trqoVOtFEh4wo*&<%W z+e*^fqi>=)7r#W=!<5`M|FX6jR}soKvIWj|aV{S^=L@|sZeG%7L;NDT?Za2)q zsb6k;jco4;N93~wlJ?2l(T0>67QeWsmePueoZAOxws}4ju&v?Z>JarSRHC?FuK@5~ z7+?>0WqY;e`a)oAGOpJ#da2$<@Rn?L-Xgz%wxCLm8GN$uU*lZsi$YcVxUg<>*wMLA zO@0FEp^3=p>h5)3DTGX7qE^-& zzAv6dLzSG^4>v;eO%&UWRUt}PbzS7~z1J-8EL0_h+L)}R(~zbN*w^N!Y0{29jDQM^^y+$Ts z`au6}e#$KX&#ji$H9#^lCg+vyhT z7cJI)AKUsb3VN0POt7;t!gd93Lg{EZc5-uyS3mQ`uK)h+Upc*@8~t}Z6OqFkhd4bW za+TGucwc4UmpB8Q)oR2u)HT-oh9uiU_K;_L4#{Y;@Uu@(cl5;Vy&wMh>Ct!e1guZ? zqV3Z@-H05ofmZb1&5FUjUT)I+=}Voev#t65FBSVhg(ce*o2*$T%O}f3!czDw9{#@f z?zi;$=IKWt{P6U{zxYq5hkBZq{R$t>EArcq`h8kWqA@YRD~fMOr^=*uU*xZnw&C&E%EI%kDd z-@ou!QCPAYKK+O~*M$B}XHP0+ThQ9LhKEm{B#Sk(q7{AFiT^MogRj9r2`yrv9!YFl z5;8n3nOH)`&9Y@L?R&%`>pYndVN=Nws@Se=@{^A~IsH%nB?*$1g~RRq2?8%ed;vHS*+p7|M+&e}xT? z2}b(R-bg<84unLX)?z%Nr^Em?Vxd0~r4JY{i;vmLLyQgg94)D&k*1azSV39pF7@uvb&5MH&5$=8(-r=a)z_~8CfEp zxP!vIAsfXad>uR3_S9k@Z>@65`SsXrob2afr`8;d>^;0*pz*;Jc4BGryN0jo*Ye*; z#p3wNzQFNof{NdroM4nS&)r)XJbR(pS*(g%4^2 z2OH$2OYst0juVkhf2NNSkPZNGttv>0P-dx&s#$8;C{(uG*hPu}e?Wl0$Snd@emGi4 zmiJ0!y0qj zpY{YGU~M65=&Nh(!GJ31ati5D-NuBw<(Dz1+)y~HO!+g`hH!+{;~k76egQ13tz_Ho z5_yEX9YsRwIFlRETVz(s*jh}(YksE$AX8@2U#zy~{CS#3vc%T$t@@GO`nT2Zk;1t_ z_r;3vRsH%I*yj2AdV9$|&KRf?TzRuT$ENzT#G!S4Z{e?Yd&W&1mtveb>1aETIzkL) z(^@9w(RQSK9P1=yHJ+FM>7)wjf0UG38?*u9<9_7kiGeubgQ$W5n^!_-&%gy*Y-N%<0NCQMUvC74+o+Wd+tJE5tGGGCNuqFl;|iyI0qjbA zpekk5xgqdWNx(bbKoQkD6+13V9<}nz@{-cQ_l8~>sETOVS)8a7SLiF%4dYl#{%i57 zicwdk>WFyRx0|k#__1R*klPq7LDK@_h^Pq z*?NvabZmP9sR>pqTkuvqlec~>R#aUKZ5ijSt6)l+ao5X?YSQ4f#Vxh9mQsPXY*XD{ z60&jWs8ggcG1}s!tlYNo{8D}aAwL@N`8ty9!Pvr!{_tptp=lj1Eb0+yZiDSh_;|N^ z7@ZYwuVwKoph0Wo7HhnL)r=-sDSm9WdMR@9(pfz3?E+|n)$Ei0_Qm9KBKWZtdS{?$ zDpF%zj;d%MVqyl+-C_8lB58vJsqIi=pIb#>6Iu4j!;(ekY8TjKymYNS>Jp%}e&orF z_Bv)Ioqv@trg4&?vb=xI+q0L8Au z9}b17q|8lxonz|skyBA7*O=g7U&^^K;;h)FvS*DtWLxzroZ2*Dd3yx|{M<9wlezDG z@AR$rzU%YvXY4(CN1-t=!c)x1c0`0UI%=e zc=S7=OhR&wep|uu+D)Er<#&YNdFN}A(G#R{2H87$s_^!moBBObee{%ZCi>);oFcaD zPZWgwbQGMsCo-45$WMBUu6+-a62d1}s+{iWiCAaF$x04+ees=p@>P?ysB_xy^AHMC zQrZW#ttuZPD+%?1X)0OBp{r_srW`@#$y{EGj164D7jmgW^5mU~6zS>XS8!{h_tEE1 zlxO8ylkK1%<|+0`FGxsG#^P#3S*dYB%@HQMoi_C zna*>tJ(+_LvI@?>_bUu0fQgHIaSi9}aBU;Wn~D{Aa=`>y`p=|tT(Ro))LdhE@<@13 z^$KuhN;l;n30FEy>SBjcuCn77igS1KnQX|IZOcxsBQdDp2v~mc^&;wwk8$I_;*8G% z@O2)b$_a%bVB(ck1v zG7g4{{2;#;A~ea2Nowao_;9sKgjTXRG|c)cRHb2%M!_rPvBe3{GT4Wnk7Z zO(M~ezZeYpvsNdJ zOtgYfNXk!MH=Kz`Z|6G4AUE{Y2!wF6;Ym}Au`6abMJ4Pc&FF{$k>9b6PW;0YAVA`i zi1I}R#oZkdOR$$kvbK|bnst@$V2M}tM`@m3fuT2ki z`-%^;?^q?FLFVntXxSIx@R%@{9Qz4g8BhG+`UzaA(ht=6vWK@VF|i4@YifJDwIlRd zmiXCqp3KkK3O;gZ^U?mmUkC{fK_=U_QfL&7Or7}n2vcI+Pw4R%e&tLpPaunI9yuWf zN@3n2SjQkfEXXYE>r`*Kf{jhFp`%I+i9h!6a`*wX@j50fW+8t2Vc;TCXFuY_#*Jmi zTExDyuT?*pR@m|f4>Aef!c_vLs^y7wv6=W3h4-^TL>6h{V@a&lFhzA^Ml$2m46Phl z8m(fnSZxvlMUE`qnZRn5f}M8y7JRi4_x4X!IrG14i2hXjbk3nh-w7dg$&L<=ohgHj z#kQ*KPuN~#4x7jzg$MEm63kW45?Yxj8L5NXYct%QtMGw0szs?adVx8Hco5x4G;;ef zabLVvxh1wz-r75&u2#giQv4fX@B1xNYY$&@VBkoxeICSH+m~r3z6nd!+4VGwmH= zZe`cB?NOUI@#emxd9SBjJ!$LLw$#cf>T^+FaxHot>_gd3=3rj5CKD}mE(6R_UtR6j zibwq%_j>wQOHJ-Eete(4bV{aP*U)ddrp50*mOxD&+E(u$R{9>Jv8-Jaz>?t`LKYR) zIP_B&5xOsc>m&=Ox%l#dNqYHRENe?w7rz^A89D>#jGABwH2c#SqAc1f)<%Fma z9m)74Ewyi8>zeLyPWp zTaH^raxND?SABcmsxuVZZLhkYlAAT+73ukP<46p1j@12K9lZM2{+vNFHsa*EVIYP| zPtXrL7NsAKd|rYD;FT{4f^o22;!Rv5o-OyeEd|$zT@H{2>jWHv9cSZE^eW=wN1wD_ z79XBYkwt&&e`IG`X3b&kV?&&{p-<7Wb6|IRu+$RH(r4)zeI{8nBSpRCK@E`eLY0pL4!wt4dF1^h zyLm9s?%dGM9#O=iPu7AOUeRn|%r~VZjACh`%=8*A1q{2aa7#RHDGX>#imw zdCHfGMY3#t`E&Q~t<#%t-P1#(l7*W8iplDtb7@kzZZYv;QOWh*EWVK%MBPKw_4imd znKXO+DalWkm^Zzp32-LVk>wTCOz1OV_*AbpwGKSdKL6~=>E|EoO9H&Mm1NsTj8N(9 z3lHB!VjpBJT%&%jO4kErj(wO8+062?xtbMOsy0kOdhdb(XLXfRY_?Iv0b6$UaTfa-p zxqK$bliyoR#(FH>PQK(zt}!2Lym|BrFk>-4VI+gXXZ$go_yU5t;jezaVm?YMSjGF=##R+$Z<3AFszu2?)raOm{1<9O>1ue4U z{h&a=KsHE;m$)AzUz3~mMPl>?OMGH%RbPm9lgVp*lR;)aEgspT(dEXfsiy*)rOKEVagxl}!UDQxYd{JLsv>(8%>W?R!g zxdX?q&6ZB$7MAG#@(6LUsKm1Si#Uj1+h!gTpi?9RmZhwqRmQ)HEapqhY#UGhaK(0n z36%Ww{Reiml`r}z`&N7=LJ0y?GRCwObkiE^!IYNp$^-BESw);Y5Fz*(uSgO@1!tah z# zh7>K<{RM{-bWEt}k4;u0-iMV&YZ^~uM4Pc?kY7C+w(VbAbOvl4S??1l_2;GfYwV{( zjYNqI(o(@hBR9EyK`p*PX=+P#DXD?ql}oa13%ScOL2j(Jvy_9SivN$Xh>fwb?dORj z)@E_KXD}OH8pn28aJ946d)tTB_0~Bqr(-M5u`JYyn&@ zV$D^3#IvWCh-eztS$*TIHvO;4qe(#{Q1F zw$KF%+S+dEU*2+YemF^B``p3Y%5LK1++gT;CCN&jQin5h*m75uM}F+(C-$C`_PJ-r za@VJ}#Y5yH=AmHOTjeEpQB-m*dVNoke7@GD{oJL#+VuUQGi|fWi%}hFU!MqmW4A3) zOlo?gO@31-=QfM{xy*`^<43mnZO+#HKx{&VD#2(AzD7i+o*7b7hY+ zI-$#jmzuPN%|)S4K&T_ec|I()9gNTWwX>rAq%O3r$Eiky942%=B>^cO%d9`B4e4k>I zq4>~F0W3@h>YCc{bTdX5g|Zk8`_nrmN)d2HWqU*mBDPqFJu+2T-mF?p0`Rl7%Gg^I za53I&`DZP=CNu+r+)G)oG3xSN1-OTczh_1wDM|@5WyI7*@)+cpBa+zSbk- zD5Sn}2HLjLA}CJft;|7digpd56--TyKU1{2-brB$f!Ii(n`SQaSyAR=&iS<}=o6Ec+9?p%jr^9S(OT9w-TDr;piM5E`| zJ|Fuou~&M-xQuH{_yG*Lm{nNFN*QC`W|g0?dkbq#m6d<|a2P0PsiKk)ni-O+Zc7tv zVAPuXPVe!|hrXsFN=;dD!`ZB#!`{dqHHfKAE&K!0!o5&^DWwZo7s%a97uc_j%(!D) z&iGT()y^@Vex#lLWsETSdsCAb_jNq|hi|;=$=`I7&kXc?6YH_^wYmHi@K+gltr=ij zl0} zI&B&kp^n=q+e)_&A zhB-g!<5DyiFxe*Ndw1`j-u?PFPG8gH?>D~jp068tJ@Wkr_fPlVyr(CE^`vL*e3=A! zAetuxc|cS*>+#Y@BV?FZw!zr>|JZx8r^}A(%J0@(g&80TfRvh|EXsCR9>VRGWIH;- z9e(QN8EJKB!umhF~Ai6SM=AORGHLJeNOwf4@;bMC$0fGQB6g#5mHPUarg z9x~6E_neza0BG!o^xql38kUSxi7_6{XIsWU)A4~^>35T*^Mt1)u zoyWI`ehOPWkUaqpO@HPiN9W3S>{^$#g9T9qJ{pM8c7eT{FX9Z3|tCclFwO?v#cg3 z@r~RtQIp>qmn8PBVGkuMJJxaMm;)LzNMw77LAT*l-ywkg5;RVH*LJEeKahvm!iMlI z$XL)*;D)p|=E7tl8H;QlL=X{JRz^KXnXPpB*rcuEqrc;u4C)5D7v5Ag&}ah zMDg0|uWADLzV{#Ahp@fsHS=;@y4VTcO>Ior?09S7{eHHcP!T83QjzUU2IIFr-Zo&Es|6bP7r)aMP5->P zfQoI%kMt?hV4*Lr*J%Jrn_M?$zK~Qp!g60m+;Z&yj4Pd};V($+Q}GL7eV`%WReW*o zn~n@ITURR96BcCPplBO5n>^?byJEY5m187Ll(ZWBYGb^x(2Rc(cQ-beA<_uUw3i?g z6}uecY27~BLB&~SKynG1s;V6E$O}3ZJF=0_GA*=-k#+2=qB7~NlXYa%my#!E*cli$ zX?NQ$Xl;>t`?>NX5S$^Pruze>wG^0hgN#1poKhKd&22HCmf+Geu*xK0iM?sve@R=6 zWr;+^Pql2iIu;#W6Ub34H|6|#)lI)8x2@5>(q8M~S2vITm@@7CjI%TfhiOVIbpQY$ z07*naR2IBxzp>z?G)A}Q8d(nk>z|jK8kg0kAIFmC@z-2+eKW>(VDOM@*%}dx)H>E7 zpSQgzeF@byU-Ge=s^T%tg;e8yb@Pjg>l|)-wes7;9!v3WI}Rly6>FDx<{glo`ZKag zYn+VJQ}R=G>QA|2{pn}(kZ$~yHt{;%bGD}BZ>QFN^m=dAnO=zP|3X@-r(>QuSwzoN zPx*1N%`MQ@U(l|jy~WzLw#ZxF#>lA^`3pELEbqmMJUIZ1WWd=_Uk>2P7E zdj8eUfrZn1f3wtgC3&S!+%Q^S_zof@U@OF5r)4n zkWlZ=-}BctSOddY?b#}&x_Id`>M=@>pOg-}0B9^y*n`qCvjVVnEX|^2OikM)@xq=S zOc-mMuO84k?S^38l)$&mrmm7zM+A0@&~93ZT(pXXR$mpHqqUODAKSoH%ZhYWohjFL zI;hEco?7So(m2|@jcp@IYa>uDExxWQr$nu>$ahdDNc0TkOMSLX_hSQ{HC`UHTstt= z9m2&3kssUWP?yhwKB8X=wu~~n#zIPVX5m5IU|C>Tk3yQ>A8GuuwQ&<7;otq>@JLTGfBezMn!IEZO%o5g!Om-*A3S*J@YY-3IK1=Dw-0Z;{-!6A znJ~P6U%vtT_AC0G+WUI7w4UVCM5lHW4i{t4vHbAEj}E+Hx^M2|QjWm{FrDWbgf6(D z2}|nm+!hv-*AE`tkw07uz~CQYrK@~l0-AQQ4K4I4>oHG4mnf>cN#Za` z!c}L#$Wf0Dp#SmFHZ}QjTd#R02T%1I$e(`nnJ0iB=?el(%skRW@$e0(LIR3{8#kB) zsx~z0-}(J_+!s%7@LFPMj8i_*F_I?V2+CtoLgva?>`6)BzMjKK8LVNr;4w*)4rBtA zoKyI%W%q-|gMQxGdolbKkQk- z^3P<`s3H?*GEF~7kGv8JSdK8cavsGecE(@|pnOO=j z1r6Jfn`ivpZcQb9s)Q)qA#(*_!qPMFpL($ zS5CS(FK(!Y692$ZSMfxo^-^U5*e^kgVGk{_N}&8QNGc+{u#k!&!gm~h7ydj7%!`PN@@ zt0g|rX$(HbzHP$CUukjAgP0NV=+fGL!&ecnbDA&SlLs@R>lQyHaLZpxLbrd9IyuG$ z`y}DnHY-{g1IXKw7xV2jD4^aUwGMfn_GH`CukCMlAl&pA=Mg?IJjBSPpYI>=K zSs3AeP=`cd&|7qD9o6!w)Z(8-Yq8>mw4t;+j;#zJ;F)jQYQ%K2 z$NiSu(FZB=fxgjY!zZgf)OZ@g$`uR#l^JSh0q zrMcEmwM*q_h2Dz26`0&v+e*yVZ^cC{cR%dCfX?R>y`9rI-?L$fwvtcE6a<^zp1*ImwR7v*dOdpz( z^*Ng}hg*qBpW_mwbNE|pS8lb@7Yu9r!aNBpn{D>Wem;j__aVNt-L;P=baR_>()(tf zT@QOwKeydYWo(|dGkx6qHMOZlE;4PKNTJ*Q6e`8o<2a!?&uYktxT3aCEV-zraIsMb zC12!V5FJi(F~doy{`vv{6$3$6;Y!>UNpcojG~Z+>di!8C$#W_n5LUSy&Gm^C;*{)3 zN`B-zDqaAMFPV_WE*~lQ4A903mpZ=aLIXUVWcobQ+2VvzJkhN#HkeHQ`o>Ph$&DJW zb>NO71+oH+FWv>h36?J$5UaYFYM_j9ikYcadwWV)RuJQJR0_ww9WjTM=Csvr_uAnf z;TM4w0#!_1WUqI!(Tc&FsI%5~#+uF`pIW-lMoVpYb{^@-A!D@Swe|%TP_A6HRJ6?4 zFJN_P@orzTJ{DiWw)Mzn8@mMdn(Vz7tKDlt9f>#Aw2_{pcbZp9EwUj)EP_{BEMqU4 ztyryUT6|IO9xZDVm$4){-|67K&Hz(@zl?XRAaotg zl!+VeX{naJ${HIhY7n=UuViI_jLKEaUti`*&Rie%N*Wm)+CGvW?_WJebzJmX&Xo*q zvae+%G5LE($J+1m3c@8l9Krc~{rcxCW&dlTuXqM{EiHxZgB$C9b@A|d*>JVvWO9_^ ziC}FTPab`8xbyHMpSSX*L2h;TtDrd}^^=u4srB}=?4FSA8;+23_Np4&9*rl`(V83R z(DYvmt=U|=S^VBSvp;b~|e@9>H_|`Yy^@qt0p1|X2Qwmt`{rWvm48Q%Y zw>2TCEgc=bZu!;M9vt5K*2{;NU%h|$OcR@wXPW$ctas`1T4ds6qT==2_l2oR;1Bf6 z%AeIFn(|j(`B?3kyeE-Q%Bv@W$dxde$mj{)`+CZkHvPlz4SQlyGCTqN;HA5Yg(r}) z4Pxb5wJzv^%5@0qkt6y5p*Vu7ab(Ie@gyk3)p;aH`o>RFDrNVS7xHsMPbNS6_=)oN z*dLw%e)cJ20=rl?QZpFaAO=?y=1$g8dIYEu1{K0JNx*w9wL=J%ry zhfnl6T3+G%R8RJPrr&%ffLnf@tfEwMxL)G*(!S2(y~z^biAMT~8C_m$4X(YzN9p*e zq9>+3NhM$0Z)}^+k?@$9c9?nEm-86+39*1tI*ygsTN5Q6(tITthZy?H{9g9gC>Bkk z;e#iQgq<8i$Lr*J-pr2;G2pOLQBN|dN8r+NOpIsMfp9+LBmRQz{RsXurb@uEc!))Y zd@@$7Y#YMT8X9;^9F7T6{16fB_-ut*Fyd3v$MVm9JvltqITXZ^F@XPeT2PKlp{;{J!yc(zJ2~W*oyn`DG30@qnl(_{P5T<7c1d zmGXM>mp2A@OiQNokO^m={!NJw@dZ%Ek$-B-rtN_Ry}if>x#l?I0OOo(hj>I`n`vNU z<;iVck52y?gYj({k0{aaC?}#3fUuZ=P6pLh!C#>YoBjE1Kb_251N@c%`^r%iKpa4$ zVsNHq(VbRfUtI7kYe{M1vkE>scJ$JLre|NnHjy_Lpo={wYBM3Owd&rMq#=%T?(ySR z#in`yiA8n!g=?KVk1@%h&oPVQW0b=}9t!ymRHP(!ujCKNFt%9hwi*oheNGWAmYu_j#Ee{%MrPPY zRyJ}R*y89aHpX+}7ccoOr9S*~F!4prCIGn7D^JbRB1jBfjKv8rUB__IkmY1f^oVh? z!%4LGy7=Z*k_k!#`IploEk)*{m>U&77X;1#Id!6W;CHSXU#OfX=~jZoBnZPrYu$XQ zS&8_f8DQe(f(idoZSQi^0DZ{8;GA@vt`#(L(2(H61%t6@$0^mQYXJbUp+FN!C2iy= zWXrV8#%0NY1zt3Zl2RD!zMcgE_(sdk^_FUrN)t~%e7+L;f9d{(V1 z)d$Fl>75n(CN|Bq`!$q9;cO+~J}50YLEJegz2Sn}Bx59`B(|&gvZbABZE>drbRS~M z3#?ta*tG@uRA*fo>}rDDW5<1YHT`Q#E#aZ-ke&4OTe?z0FhuuA(G9B`npk*QH~Idn z2XAmRw^*;&w`*M6pRX0Z&cIhJ1HP%Q8}_W{1hBW1ji+n{w|%o(HMT2FWIcQDy~Axy zP<-YIJ2oTTT=o{jIjOd>aZbqgrsBmo+f*}qg5DqZ{?KdAk9n+EGThSV|EL(xBHq38 zyQb@FmZy9xv;S9J0ifzQwD4q9oxt*{XPD5KxMLFb)z|MI-u=!Siib%8ep*E_XadO- zcB($pW1>uw@r6rHhhLNYE&V3&!w){qQ?TOYcU?PPnP9R@~QP+SS?Z_Zc_%q8d;Dw zgvc4cQOs}ucE5r8i6+G#J<_D8KI}_vL{!>|gh{lI#g$<(a3dzxDPv4sX2inkU9>||s~?#3;YR#Z#rdh%AAj_zo_7B9@bM@5ebV22 zXum)CRF8eT+$}#UX>!jK)@m}zECAWkamJH+)%miWFGrxmCzDr9YA|LUqa*Bu<<>bE zo-knY%GZ<00~0y^(uTz|Zh@uAWF8ZXj6ZzA8aCQ$8x^v4(!0=GLsPc>2R9 z2D>Cc@HRvrK-aY|m~=lAV)YhY5jcv9$iE%Ynmq6qLlU8n6SAdM@jD